mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
625177d27e
This commit implements the ofdata_to_platdata handler for the UniPhier serial driver and adds serial device nodes to the device tree sources. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
34 lines
615 B
Text
34 lines
615 B
Text
/*
|
|
* Device Tree Source for UniPhier PH1-LD4 Reference Board
|
|
*
|
|
* Copyright (C) 2014 Panasonic Corporation
|
|
* Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
/dts-v1/;
|
|
/include/ "uniphier-ph1-ld4.dtsi"
|
|
|
|
/ {
|
|
model = "Panasonic UniPhier PH1-LD4 Reference Board";
|
|
compatible = "panasonic,ph1-ld4-ref", "panasonic,ph1-ld4";
|
|
|
|
memory {
|
|
device_type = "memory";
|
|
reg = <0x80000000 0x20000000>;
|
|
};
|
|
|
|
chosen {
|
|
bootargs = "console=ttyPS0,115200 earlyprintk";
|
|
stdout-path = &uart0;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&uart1 {
|
|
status = "okay";
|
|
};
|