summaryrefslogtreecommitdiffstats
path: root/board/armltd
diff options
context:
space:
mode:
authorDavid Feng <fenghua@phytium.com.cn>2015-01-31 11:55:29 +0800
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2015-03-27 16:33:51 +0100
commitd8bafe1310487ba0e0785997726b4792072178d3 (patch)
treed0dcbb0cf5b122fc09efdb7b9cfe3f98de888e71 /board/armltd
parentb263302aa588464cec3bbdde09e2b52765dbae9e (diff)
downloadblackbird-obmc-uboot-d8bafe1310487ba0e0785997726b4792072178d3.tar.gz
blackbird-obmc-uboot-d8bafe1310487ba0e0785997726b4792072178d3.zip
ARMv8: enable DM in vexpress64 board
Signed-off-by: David Feng <fenghua@phytium.com.cn>
Diffstat (limited to 'board/armltd')
-rw-r--r--board/armltd/vexpress64/vexpress64.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/board/armltd/vexpress64/vexpress64.c b/board/armltd/vexpress64/vexpress64.c
index de6286435d..071d88c07d 100644
--- a/board/armltd/vexpress64/vexpress64.c
+++ b/board/armltd/vexpress64/vexpress64.c
@@ -12,9 +12,22 @@
#include <asm/io.h>
#include <linux/compiler.h>
#include <asm/semihosting.h>
+#include <dm/platdata.h>
+#include <dm/platform_data/serial_pl01x.h>
DECLARE_GLOBAL_DATA_PTR;
+static const struct pl01x_serial_platdata serial_platdata = {
+ .base = V2M_UART0,
+ .type = TYPE_PL011,
+ .clock = 2400 * 1000,
+};
+
+U_BOOT_DEVICE(vexpress_serials) = {
+ .name = "serial_pl01x",
+ .platdata = &serial_platdata,
+};
+
int board_init(void)
{
return 0;
OpenPOWER on IntegriCloud