Commit 31866927 authored by Arnd Bergmann's avatar Arnd Bergmann

Merge tag 'davinci-for-v4.10/dt-3' of...

Merge tag 'davinci-for-v4.10/dt-3' of git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci into next/dt

Pull "DaVinci DT updates for v4.10 (part 3)" from Sekhar Nori:

Some fixes for device-tree patches already queued.
- Fix SD card detect polarity
- Prevent Ethernet from picking a random mac address
- Fix error messages on platforms which dont use
  bus master and emif priority settings.

* tag 'davinci-for-v4.10/dt-3' of git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci:
  ARM: dts: da850: enable memctrl and mstpri nodes per board
  ARM: dts: da850-lcdk: Add ethernet0 alias to DT
  ARM: dts: da850-lcdk: fix mmc card detect polarity
parents aea09e58 878e908a
...@@ -13,6 +13,7 @@ / { ...@@ -13,6 +13,7 @@ / {
aliases { aliases {
serial2 = &serial2; serial2 = &serial2;
ethernet0 = &eth0;
}; };
chosen { chosen {
...@@ -122,7 +123,7 @@ &mmc0 { ...@@ -122,7 +123,7 @@ &mmc0 {
bus-width = <4>; bus-width = <4>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&mmc0_pins>; pinctrl-0 = <&mmc0_pins>;
cd-gpios = <&gpio 64 GPIO_ACTIVE_HIGH>; cd-gpios = <&gpio 64 GPIO_ACTIVE_LOW>;
status = "okay"; status = "okay";
}; };
...@@ -227,3 +228,11 @@ partition@0x0a0000 { ...@@ -227,3 +228,11 @@ partition@0x0a0000 {
}; };
}; };
}; };
&prictrl {
status = "okay";
};
&memctrl {
status = "okay";
};
...@@ -213,6 +213,7 @@ lcd_pins: pinmux_lcd_pins { ...@@ -213,6 +213,7 @@ lcd_pins: pinmux_lcd_pins {
prictrl: priority-controller@14110 { prictrl: priority-controller@14110 {
compatible = "ti,da850-mstpri"; compatible = "ti,da850-mstpri";
reg = <0x14110 0x0c>; reg = <0x14110 0x0c>;
status = "disabled";
}; };
cfgchip: chip-controller@1417c { cfgchip: chip-controller@1417c {
compatible = "ti,da830-cfgchip", "syscon", "simple-mfd"; compatible = "ti,da830-cfgchip", "syscon", "simple-mfd";
...@@ -468,5 +469,6 @@ aemif: aemif@68000000 { ...@@ -468,5 +469,6 @@ aemif: aemif@68000000 {
memctrl: memory-controller@b0000000 { memctrl: memory-controller@b0000000 {
compatible = "ti,da850-ddr-controller"; compatible = "ti,da850-ddr-controller";
reg = <0xb0000000 0xe8>; reg = <0xb0000000 0xe8>;
status = "disabled";
}; };
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment