9
0
Fork 0

ARM: dts: i.MX53: tqma53: Add barebox specifics

- add chosen node with
  - environment
  - linux,stdout-path
- add dsr value to eMMC
- add provide-mac-address property to iim node
- set memory size in memory node to 0 since we have two different
  memory sizes which have to be handled.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2014-01-20 12:40:06 +01:00
parent 92cfd4dc8e
commit e0316b4dd7
2 changed files with 31 additions and 1 deletions

View File

@ -17,6 +17,16 @@
model = "TQ MBa53 starter kit";
compatible = "tq,mba53", "tq,tqma53", "fsl,imx53";
chosen {
linux,stdout-path = &uart2;
environment-sd {
compatible = "barebox,environment";
device-path = &esdhc2, "partname:environment";
status = "disabled";
};
};
reg_backlight: fixed@0 {
compatible = "regulator-fixed";
regulator-name = "lcd-supply";
@ -181,6 +191,13 @@
&esdhc2 {
status = "okay";
#address-cells = <1>;
#size-cells = <1>;
partition@0 {
label = "environment";
reg = <0x80000 0x80000>;
};
};
&uart3 {

View File

@ -16,8 +16,16 @@
model = "TQ TQMa53";
compatible = "tq,tqma53", "fsl,imx53";
chosen {
environment-emmc {
compatible = "barebox,environment";
device-path = &esdhc3, "partname:boot1";
status = "disabled";
};
};
memory {
reg = <0x70000000 0x40000000>; /* Up to 1GiB */
reg = <0x70000000 0x0>; /* Up to 1GiB */
};
regulators {
@ -64,9 +72,14 @@
vmmc-supply = <&reg_3p3v>;
non-removable;
bus-width = <8>;
dsr = <0x100>;
status = "okay";
};
&iim {
barebox,provide-mac-address = <&fec 1 9>;
};
&iomuxc {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_hog>;