Commit 1864f527 authored by Olof Johansson's avatar Olof Johansson

Merge tag 'arm-soc/for-4.15/devicetree-fixes-1' of http://github.com/Broadcom/stblinux into fixes

This pull request contains Broadcom ARM-based SoCs Device Tree fixes for 4.15,
please pull the following:

- Stefan provides a fix for the BCM2835 (Raspberry Pi) to fix warnings about
  missing "#phy-cells" properties

- Florian provides two fixes for Nortsthar Plus, one that uses the correct
  interrupt specifiers for the timer/watchdog and one that disables SATA
  on BCM9582**HR boards since that leads to unidentified hangs right now

* tag 'arm-soc/for-4.15/devicetree-fixes-1' of http://github.com/Broadcom/stblinux:
  ARM: dts: NSP: Fix PPI interrupt types
  ARM: dts: NSP: Disable AHCI controller for HR NSP boards
  ARM: dts: bcm283x: Fix DTC warnings about missing phy-cells
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parents 615af08e babd8a3e
...@@ -85,7 +85,7 @@ a9pll: arm_clk@0 { ...@@ -85,7 +85,7 @@ a9pll: arm_clk@0 {
timer@20200 { timer@20200 {
compatible = "arm,cortex-a9-global-timer"; compatible = "arm,cortex-a9-global-timer";
reg = <0x20200 0x100>; reg = <0x20200 0x100>;
interrupts = <GIC_PPI 11 IRQ_TYPE_LEVEL_HIGH>; interrupts = <GIC_PPI 11 IRQ_TYPE_EDGE_RISING>;
clocks = <&periph_clk>; clocks = <&periph_clk>;
}; };
...@@ -93,7 +93,7 @@ twd-timer@20600 { ...@@ -93,7 +93,7 @@ twd-timer@20600 {
compatible = "arm,cortex-a9-twd-timer"; compatible = "arm,cortex-a9-twd-timer";
reg = <0x20600 0x20>; reg = <0x20600 0x20>;
interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) |
IRQ_TYPE_LEVEL_HIGH)>; IRQ_TYPE_EDGE_RISING)>;
clocks = <&periph_clk>; clocks = <&periph_clk>;
}; };
......
...@@ -639,5 +639,6 @@ clk_usb: clock@4 { ...@@ -639,5 +639,6 @@ clk_usb: clock@4 {
usbphy: phy { usbphy: phy {
compatible = "usb-nop-xceiv"; compatible = "usb-nop-xceiv";
#phy-cells = <0>;
}; };
}; };
...@@ -141,10 +141,6 @@ &sata_phy0 { ...@@ -141,10 +141,6 @@ &sata_phy0 {
status = "okay"; status = "okay";
}; };
&sata {
status = "okay";
};
&qspi { &qspi {
bspi-sel = <0>; bspi-sel = <0>;
flash: m25p80@0 { flash: m25p80@0 {
......
...@@ -177,10 +177,6 @@ &sata_phy1 { ...@@ -177,10 +177,6 @@ &sata_phy1 {
status = "okay"; status = "okay";
}; };
&sata {
status = "okay";
};
&srab { &srab {
compatible = "brcm,bcm58625-srab", "brcm,nsp-srab"; compatible = "brcm,bcm58625-srab", "brcm,nsp-srab";
status = "okay"; status = "okay";
......
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