* [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms
@ 2015-11-19 2:34 Jaedon Shin
2015-11-19 2:34 ` [PATCH 1/7] MIPS: BMIPS: remove unused aliases in device tree Jaedon Shin
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Jaedon Shin @ 2015-11-19 2:34 UTC (permalink / raw)
To: Ralf Baechle, Florian Fainelli, Linux-MIPS
Cc: Kevin Cernekee, Dragan Stancevic, Jaedon Shin
Hi all,
This patch series is including device tree entries that clean up existing
entries and adds missing entries for BCM7xxx platforms.
Jaedon Shin (7):
MIPS: BMIPS: remove unused aliases in device tree
MIPS: BMIPS: remove wrong sata properties
MIPS: BMIPS: fix phy name in device tree
MIPS: BMIPS: fix interrupt number in bcm7425.dtsi
MIPS: BMIPS: add device tree entry for BCM7xxx UART
MIPS: BMIPS: add device tree entry for BCM7xxx I2C
MIPS: BMIPS: add device tree entry for BCM7xxx SATA
arch/mips/boot/dts/brcm/bcm7125.dtsi | 69 +++++++++++++++-
arch/mips/boot/dts/brcm/bcm7346.dtsi | 6 +-
arch/mips/boot/dts/brcm/bcm7358.dtsi | 2 -
arch/mips/boot/dts/brcm/bcm7360.dtsi | 42 +++++++++-
arch/mips/boot/dts/brcm/bcm7362.dtsi | 6 +-
arch/mips/boot/dts/brcm/bcm7420.dtsi | 77 +++++++++++++++++-
arch/mips/boot/dts/brcm/bcm7425.dtsi | 100 +++++++++++++++++++++--
arch/mips/boot/dts/brcm/bcm7435.dtsi | 134 ++++++++++++++++++++++++++++++-
arch/mips/boot/dts/brcm/bcm97125cbmb.dts | 24 ++++++
arch/mips/boot/dts/brcm/bcm97360svmb.dts | 8 ++
arch/mips/boot/dts/brcm/bcm97420c.dts | 28 +++++++
arch/mips/boot/dts/brcm/bcm97425svmb.dts | 28 +++++++
arch/mips/boot/dts/brcm/bcm97435svmb.dts | 36 +++++++++
13 files changed, 534 insertions(+), 26 deletions(-)
--
2.6.3
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 1/7] MIPS: BMIPS: remove unused aliases in device tree
2015-11-19 2:34 [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Jaedon Shin
@ 2015-11-19 2:34 ` Jaedon Shin
2015-11-19 2:34 ` [PATCH 2/7] MIPS: BMIPS: remove wrong sata properties Jaedon Shin
` (6 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Jaedon Shin @ 2015-11-19 2:34 UTC (permalink / raw)
To: Ralf Baechle, Florian Fainelli, Linux-MIPS
Cc: Kevin Cernekee, Dragan Stancevic, Jaedon Shin
Remove unused aliases in bcm7xxx device tree. The uart{1,2} aliases are
not used from device tree files.
Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com>
---
arch/mips/boot/dts/brcm/bcm7346.dtsi | 2 --
arch/mips/boot/dts/brcm/bcm7358.dtsi | 2 --
arch/mips/boot/dts/brcm/bcm7360.dtsi | 2 --
arch/mips/boot/dts/brcm/bcm7362.dtsi | 2 --
4 files changed, 8 deletions(-)
diff --git a/arch/mips/boot/dts/brcm/bcm7346.dtsi b/arch/mips/boot/dts/brcm/bcm7346.dtsi
index d4bf52cfcf17..36d88e621b15 100644
--- a/arch/mips/boot/dts/brcm/bcm7346.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7346.dtsi
@@ -24,8 +24,6 @@
aliases {
uart0 = &uart0;
- uart1 = &uart1;
- uart2 = &uart2;
};
cpu_intc: cpu_intc {
diff --git a/arch/mips/boot/dts/brcm/bcm7358.dtsi b/arch/mips/boot/dts/brcm/bcm7358.dtsi
index 8e2501694d03..2cdb53719797 100644
--- a/arch/mips/boot/dts/brcm/bcm7358.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7358.dtsi
@@ -18,8 +18,6 @@
aliases {
uart0 = &uart0;
- uart1 = &uart1;
- uart2 = &uart2;
};
cpu_intc: cpu_intc {
diff --git a/arch/mips/boot/dts/brcm/bcm7360.dtsi b/arch/mips/boot/dts/brcm/bcm7360.dtsi
index 7e5f76040fb8..90b1b038a41a 100644
--- a/arch/mips/boot/dts/brcm/bcm7360.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7360.dtsi
@@ -18,8 +18,6 @@
aliases {
uart0 = &uart0;
- uart1 = &uart1;
- uart2 = &uart2;
};
cpu_intc: cpu_intc {
diff --git a/arch/mips/boot/dts/brcm/bcm7362.dtsi b/arch/mips/boot/dts/brcm/bcm7362.dtsi
index c739ea77acb0..82d4fac58228 100644
--- a/arch/mips/boot/dts/brcm/bcm7362.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7362.dtsi
@@ -24,8 +24,6 @@
aliases {
uart0 = &uart0;
- uart1 = &uart1;
- uart2 = &uart2;
};
cpu_intc: cpu_intc {
--
2.6.3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/7] MIPS: BMIPS: remove wrong sata properties
2015-11-19 2:34 [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Jaedon Shin
2015-11-19 2:34 ` [PATCH 1/7] MIPS: BMIPS: remove unused aliases in device tree Jaedon Shin
@ 2015-11-19 2:34 ` Jaedon Shin
2015-11-19 11:23 ` Sergei Shtylyov
2015-11-19 2:34 ` [PATCH 3/7] MIPS: BMIPS: fix phy name in device tree Jaedon Shin
` (5 subsequent siblings)
7 siblings, 1 reply; 11+ messages in thread
From: Jaedon Shin @ 2015-11-19 2:34 UTC (permalink / raw)
To: Ralf Baechle, Florian Fainelli, Linux-MIPS
Cc: Kevin Cernekee, Dragan Stancevic, Jaedon Shin
The brcm,broken-{ncq,phy} properties are not used anywhere in device
tree, and the sata driver for BMIPS_GENERIC is not used it too.
Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com>
---
arch/mips/boot/dts/brcm/bcm7346.dtsi | 2 --
arch/mips/boot/dts/brcm/bcm7362.dtsi | 2 --
arch/mips/boot/dts/brcm/bcm7425.dtsi | 2 --
3 files changed, 6 deletions(-)
diff --git a/arch/mips/boot/dts/brcm/bcm7346.dtsi b/arch/mips/boot/dts/brcm/bcm7346.dtsi
index 36d88e621b15..60018860878a 100644
--- a/arch/mips/boot/dts/brcm/bcm7346.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7346.dtsi
@@ -321,8 +321,6 @@
interrupts = <40>;
#address-cells = <1>;
#size-cells = <0>;
- brcm,broken-ncq;
- brcm,broken-phy;
status = "disabled";
sata0: sata-port@0 {
diff --git a/arch/mips/boot/dts/brcm/bcm7362.dtsi b/arch/mips/boot/dts/brcm/bcm7362.dtsi
index 82d4fac58228..e176dd50192e 100644
--- a/arch/mips/boot/dts/brcm/bcm7362.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7362.dtsi
@@ -244,8 +244,6 @@
interrupts = <86>;
#address-cells = <1>;
#size-cells = <0>;
- brcm,broken-ncq;
- brcm,broken-phy;
status = "disabled";
sata0: sata-port@0 {
diff --git a/arch/mips/boot/dts/brcm/bcm7425.dtsi b/arch/mips/boot/dts/brcm/bcm7425.dtsi
index e24d41ab4e30..47d7bbb20dfd 100644
--- a/arch/mips/boot/dts/brcm/bcm7425.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7425.dtsi
@@ -230,8 +230,6 @@
interrupts = <40>;
#address-cells = <1>;
#size-cells = <0>;
- brcm,broken-ncq;
- brcm,broken-phy;
status = "disabled";
sata0: sata-port@0 {
--
2.6.3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/7] MIPS: BMIPS: fix phy name in device tree
2015-11-19 2:34 [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Jaedon Shin
2015-11-19 2:34 ` [PATCH 1/7] MIPS: BMIPS: remove unused aliases in device tree Jaedon Shin
2015-11-19 2:34 ` [PATCH 2/7] MIPS: BMIPS: remove wrong sata properties Jaedon Shin
@ 2015-11-19 2:34 ` Jaedon Shin
2015-11-19 2:34 ` [PATCH 4/7] MIPS: BMIPS: fix interrupt number in bcm7425.dtsi Jaedon Shin
` (4 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Jaedon Shin @ 2015-11-19 2:34 UTC (permalink / raw)
To: Ralf Baechle, Florian Fainelli, Linux-MIPS
Cc: Kevin Cernekee, Dragan Stancevic, Jaedon Shin
Fixes phy names with register properties in device tree files.
Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com>
---
arch/mips/boot/dts/brcm/bcm7346.dtsi | 2 +-
arch/mips/boot/dts/brcm/bcm7362.dtsi | 2 +-
arch/mips/boot/dts/brcm/bcm7425.dtsi | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/mips/boot/dts/brcm/bcm7346.dtsi b/arch/mips/boot/dts/brcm/bcm7346.dtsi
index 60018860878a..8836a096a920 100644
--- a/arch/mips/boot/dts/brcm/bcm7346.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7346.dtsi
@@ -334,7 +334,7 @@
};
};
- sata_phy: sata-phy@1800000 {
+ sata_phy: sata-phy@180100 {
compatible = "brcm,bcm7425-sata-phy", "brcm,phy-sata3";
reg = <0x180100 0x0eff>;
reg-names = "phy";
diff --git a/arch/mips/boot/dts/brcm/bcm7362.dtsi b/arch/mips/boot/dts/brcm/bcm7362.dtsi
index e176dd50192e..6aede98a8185 100644
--- a/arch/mips/boot/dts/brcm/bcm7362.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7362.dtsi
@@ -257,7 +257,7 @@
};
};
- sata_phy: sata-phy@1800000 {
+ sata_phy: sata-phy@180100 {
compatible = "brcm,bcm7425-sata-phy", "brcm,phy-sata3";
reg = <0x180100 0x0eff>;
reg-names = "phy";
diff --git a/arch/mips/boot/dts/brcm/bcm7425.dtsi b/arch/mips/boot/dts/brcm/bcm7425.dtsi
index 47d7bbb20dfd..dfeb112da954 100644
--- a/arch/mips/boot/dts/brcm/bcm7425.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7425.dtsi
@@ -243,7 +243,7 @@
};
};
- sata_phy: sata-phy@1800000 {
+ sata_phy: sata-phy@180100 {
compatible = "brcm,bcm7425-sata-phy", "brcm,phy-sata3";
reg = <0x180100 0x0eff>;
reg-names = "phy";
--
2.6.3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 4/7] MIPS: BMIPS: fix interrupt number in bcm7425.dtsi
2015-11-19 2:34 [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Jaedon Shin
` (2 preceding siblings ...)
2015-11-19 2:34 ` [PATCH 3/7] MIPS: BMIPS: fix phy name in device tree Jaedon Shin
@ 2015-11-19 2:34 ` Jaedon Shin
2015-11-19 2:34 ` [PATCH 5/7] MIPS: BMIPS: add device tree entry for BCM7xxx UART Jaedon Shin
` (3 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Jaedon Shin @ 2015-11-19 2:34 UTC (permalink / raw)
To: Ralf Baechle, Florian Fainelli, Linux-MIPS
Cc: Kevin Cernekee, Dragan Stancevic, Jaedon Shin
Fixes interrupt number property in bcm7425.dtsi. The SATA AHCI hardware
interrupt number with periph_intc is 41.
Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com>
---
arch/mips/boot/dts/brcm/bcm7425.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/mips/boot/dts/brcm/bcm7425.dtsi b/arch/mips/boot/dts/brcm/bcm7425.dtsi
index dfeb112da954..dfadd04d56d1 100644
--- a/arch/mips/boot/dts/brcm/bcm7425.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7425.dtsi
@@ -227,7 +227,7 @@
reg-names = "ahci", "top-ctrl";
reg = <0x181000 0xa9c>, <0x180020 0x1c>;
interrupt-parent = <&periph_intc>;
- interrupts = <40>;
+ interrupts = <41>;
#address-cells = <1>;
#size-cells = <0>;
status = "disabled";
--
2.6.3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 5/7] MIPS: BMIPS: add device tree entry for BCM7xxx UART
2015-11-19 2:34 [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Jaedon Shin
` (3 preceding siblings ...)
2015-11-19 2:34 ` [PATCH 4/7] MIPS: BMIPS: fix interrupt number in bcm7425.dtsi Jaedon Shin
@ 2015-11-19 2:34 ` Jaedon Shin
2015-11-19 2:34 ` [PATCH 6/7] MIPS: BMIPS: add device tree entry for BCM7xxx I2C Jaedon Shin
` (2 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Jaedon Shin @ 2015-11-19 2:34 UTC (permalink / raw)
To: Ralf Baechle, Florian Fainelli, Linux-MIPS
Cc: Kevin Cernekee, Dragan Stancevic, Jaedon Shin
Add UART device tree entries for bcm7215, bcm7420, bcm7425 and bcm7435
MIPS-based set-top box platforms. The bcm7346, bcm7358, bcm7360 and
bcm7362 device tree files are already added.
Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com>
---
arch/mips/boot/dts/brcm/bcm7125.dtsi | 24 ++++++++++++++++++++++++
arch/mips/boot/dts/brcm/bcm7420.dtsi | 22 ++++++++++++++++++++++
arch/mips/boot/dts/brcm/bcm7425.dtsi | 22 ++++++++++++++++++++++
arch/mips/boot/dts/brcm/bcm7435.dtsi | 22 ++++++++++++++++++++++
arch/mips/boot/dts/brcm/bcm97125cbmb.dts | 8 ++++++++
arch/mips/boot/dts/brcm/bcm97420c.dts | 8 ++++++++
arch/mips/boot/dts/brcm/bcm97425svmb.dts | 8 ++++++++
arch/mips/boot/dts/brcm/bcm97435svmb.dts | 8 ++++++++
8 files changed, 122 insertions(+)
diff --git a/arch/mips/boot/dts/brcm/bcm7125.dtsi b/arch/mips/boot/dts/brcm/bcm7125.dtsi
index 1a7efa883c5e..50c7f95b0f56 100644
--- a/arch/mips/boot/dts/brcm/bcm7125.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7125.dtsi
@@ -118,6 +118,30 @@
status = "disabled";
};
+ uart1: serial@406b40 {
+ compatible = "ns16550a";
+ reg = <0x406b40 0x20>;
+ reg-io-width = <0x4>;
+ reg-shift = <0x2>;
+ native-endian;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <64>;
+ clocks = <&uart_clk>;
+ status = "disabled";
+ };
+
+ uart2: serial@406b80 {
+ compatible = "ns16550a";
+ reg = <0x406b80 0x20>;
+ reg-io-width = <0x4>;
+ reg-shift = <0x2>;
+ native-endian;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <65>;
+ clocks = <&uart_clk>;
+ status = "disabled";
+ };
+
ehci0: usb@488300 {
compatible = "brcm,bcm7125-ehci", "generic-ehci";
reg = <0x488300 0x100>;
diff --git a/arch/mips/boot/dts/brcm/bcm7420.dtsi b/arch/mips/boot/dts/brcm/bcm7420.dtsi
index 5f55d0a50a28..34f827b6bb7f 100644
--- a/arch/mips/boot/dts/brcm/bcm7420.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7420.dtsi
@@ -118,6 +118,28 @@
status = "disabled";
};
+ uart1: serial@406b40 {
+ compatible = "ns16550a";
+ reg = <0x406b40 0x20>;
+ reg-io-width = <0x4>;
+ reg-shift = <0x2>;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <64>;
+ clocks = <&uart_clk>;
+ status = "disabled";
+ };
+
+ uart2: serial@406b80 {
+ compatible = "ns16550a";
+ reg = <0x406b80 0x20>;
+ reg-io-width = <0x4>;
+ reg-shift = <0x2>;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <65>;
+ clocks = <&uart_clk>;
+ status = "disabled";
+ };
+
enet0: ethernet@468000 {
phy-mode = "internal";
phy-handle = <&phy1>;
diff --git a/arch/mips/boot/dts/brcm/bcm7425.dtsi b/arch/mips/boot/dts/brcm/bcm7425.dtsi
index dfadd04d56d1..11bc37c9a2dc 100644
--- a/arch/mips/boot/dts/brcm/bcm7425.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7425.dtsi
@@ -119,6 +119,28 @@
status = "disabled";
};
+ uart1: serial@406b40 {
+ compatible = "ns16550a";
+ reg = <0x406b40 0x20>;
+ reg-io-width = <0x4>;
+ reg-shift = <0x2>;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <62>;
+ clocks = <&uart_clk>;
+ status = "disabled";
+ };
+
+ uart2: serial@406b80 {
+ compatible = "ns16550a";
+ reg = <0x406b80 0x20>;
+ reg-io-width = <0x4>;
+ reg-shift = <0x2>;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <63>;
+ clocks = <&uart_clk>;
+ status = "disabled";
+ };
+
enet0: ethernet@b80000 {
phy-mode = "internal";
phy-handle = <&phy1>;
diff --git a/arch/mips/boot/dts/brcm/bcm7435.dtsi b/arch/mips/boot/dts/brcm/bcm7435.dtsi
index 8b9432cc062b..9c4f8a75435f 100644
--- a/arch/mips/boot/dts/brcm/bcm7435.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7435.dtsi
@@ -133,6 +133,28 @@
status = "disabled";
};
+ uart1: serial@406b40 {
+ compatible = "ns16550a";
+ reg = <0x406b40 0x20>;
+ reg-io-width = <0x4>;
+ reg-shift = <0x2>;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <67>;
+ clocks = <&uart_clk>;
+ status = "disabled";
+ };
+
+ uart2: serial@406b80 {
+ compatible = "ns16550a";
+ reg = <0x406b80 0x20>;
+ reg-io-width = <0x4>;
+ reg-shift = <0x2>;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <68>;
+ clocks = <&uart_clk>;
+ status = "disabled";
+ };
+
enet0: ethernet@b80000 {
phy-mode = "internal";
phy-handle = <&phy1>;
diff --git a/arch/mips/boot/dts/brcm/bcm97125cbmb.dts b/arch/mips/boot/dts/brcm/bcm97125cbmb.dts
index e046b1109eab..4d0a306ad41e 100644
--- a/arch/mips/boot/dts/brcm/bcm97125cbmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97125cbmb.dts
@@ -21,6 +21,14 @@
status = "okay";
};
+&uart1 {
+ status = "okay";
+};
+
+&uart2 {
+ status = "okay";
+};
+
/* FIXME: USB is wonky; disable it for now */
&ehci0 {
status = "disabled";
diff --git a/arch/mips/boot/dts/brcm/bcm97420c.dts b/arch/mips/boot/dts/brcm/bcm97420c.dts
index 67fe1f3a3891..6e9fa319d140 100644
--- a/arch/mips/boot/dts/brcm/bcm97420c.dts
+++ b/arch/mips/boot/dts/brcm/bcm97420c.dts
@@ -23,6 +23,14 @@
status = "okay";
};
+&uart1 {
+ status = "okay";
+};
+
+&uart2 {
+ status = "okay";
+};
+
/* FIXME: MAC driver comes up but cannot attach to PHY */
&enet0 {
status = "disabled";
diff --git a/arch/mips/boot/dts/brcm/bcm97425svmb.dts b/arch/mips/boot/dts/brcm/bcm97425svmb.dts
index 689c68a4f9c8..4c47364eece9 100644
--- a/arch/mips/boot/dts/brcm/bcm97425svmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97425svmb.dts
@@ -23,6 +23,14 @@
status = "okay";
};
+&uart1 {
+ status = "okay";
+};
+
+&uart2 {
+ status = "okay";
+};
+
&enet0 {
status = "okay";
};
diff --git a/arch/mips/boot/dts/brcm/bcm97435svmb.dts b/arch/mips/boot/dts/brcm/bcm97435svmb.dts
index 1df088183523..7b5c364bdbd1 100644
--- a/arch/mips/boot/dts/brcm/bcm97435svmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97435svmb.dts
@@ -23,6 +23,14 @@
status = "okay";
};
+&uart1 {
+ status = "okay";
+};
+
+&uart2 {
+ status = "okay";
+};
+
&enet0 {
status = "okay";
};
--
2.6.3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 6/7] MIPS: BMIPS: add device tree entry for BCM7xxx I2C
2015-11-19 2:34 [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Jaedon Shin
` (4 preceding siblings ...)
2015-11-19 2:34 ` [PATCH 5/7] MIPS: BMIPS: add device tree entry for BCM7xxx UART Jaedon Shin
@ 2015-11-19 2:34 ` Jaedon Shin
2015-11-19 2:34 ` [PATCH 7/7] MIPS: BMIPS: add device tree entry for BCM7xxx SATA Jaedon Shin
2015-12-21 23:20 ` [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Florian Fainelli
7 siblings, 0 replies; 11+ messages in thread
From: Jaedon Shin @ 2015-11-19 2:34 UTC (permalink / raw)
To: Ralf Baechle, Florian Fainelli, Linux-MIPS
Cc: Kevin Cernekee, Dragan Stancevic, Jaedon Shin
Add I2C device tree entries for bcm7215, bcm7420, bcm7425 and bcm7435
MIPS-based set-top box platforms. The bcm7346, bcm7358, bcm7360 and
bcm7362 device tree files are already added.
Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com>
---
arch/mips/boot/dts/brcm/bcm7125.dtsi | 45 +++++++++++++++++++-
arch/mips/boot/dts/brcm/bcm7420.dtsi | 55 +++++++++++++++++++++++-
arch/mips/boot/dts/brcm/bcm7425.dtsi | 72 +++++++++++++++++++++++++++++++-
arch/mips/boot/dts/brcm/bcm7435.dtsi | 72 +++++++++++++++++++++++++++++++-
arch/mips/boot/dts/brcm/bcm97125cbmb.dts | 16 +++++++
arch/mips/boot/dts/brcm/bcm97420c.dts | 20 +++++++++
arch/mips/boot/dts/brcm/bcm97425svmb.dts | 20 +++++++++
arch/mips/boot/dts/brcm/bcm97435svmb.dts | 20 +++++++++
8 files changed, 312 insertions(+), 8 deletions(-)
diff --git a/arch/mips/boot/dts/brcm/bcm7125.dtsi b/arch/mips/boot/dts/brcm/bcm7125.dtsi
index 50c7f95b0f56..1f07a927a728 100644
--- a/arch/mips/boot/dts/brcm/bcm7125.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7125.dtsi
@@ -85,14 +85,15 @@
compatible = "brcm,bcm7120-l2-intc";
reg = <0x406780 0x8>;
- brcm,int-map-mask = <0x44>;
+ brcm,int-map-mask = <0x44>, <0xf000000>;
brcm,int-fwd-mask = <0x70000>;
interrupt-controller;
#interrupt-cells = <1>;
interrupt-parent = <&periph_intc>;
- interrupts = <18>;
+ interrupts = <18>, <19>;
+ interrupt-names = "upg_main", "upg_bsc";
};
sun_top_ctrl: syscon@404000 {
@@ -142,6 +143,46 @@
status = "disabled";
};
+ bsca: i2c@406200 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406200 0x58>;
+ interrupts = <24>;
+ interrupt-names = "upg_bsca";
+ status = "disabled";
+ };
+
+ bscb: i2c@406280 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406280 0x58>;
+ interrupts = <25>;
+ interrupt-names = "upg_bscb";
+ status = "disabled";
+ };
+
+ bscc: i2c@406300 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406300 0x58>;
+ interrupts = <26>;
+ interrupt-names = "upg_bscc";
+ status = "disabled";
+ };
+
+ bscd: i2c@406380 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406380 0x58>;
+ interrupts = <27>;
+ interrupt-names = "upg_bscd";
+ status = "disabled";
+ };
+
ehci0: usb@488300 {
compatible = "brcm,bcm7125-ehci", "generic-ehci";
reg = <0x488300 0x100>;
diff --git a/arch/mips/boot/dts/brcm/bcm7420.dtsi b/arch/mips/boot/dts/brcm/bcm7420.dtsi
index 34f827b6bb7f..3a05e340c1ee 100644
--- a/arch/mips/boot/dts/brcm/bcm7420.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7420.dtsi
@@ -86,14 +86,15 @@
compatible = "brcm,bcm7120-l2-intc";
reg = <0x406780 0x8>;
- brcm,int-map-mask = <0x44>;
+ brcm,int-map-mask = <0x44>, <0x1f000000>;
brcm,int-fwd-mask = <0x70000>;
interrupt-controller;
#interrupt-cells = <1>;
interrupt-parent = <&periph_intc>;
- interrupts = <18>;
+ interrupts = <18>, <19>;
+ interrupt-names = "upg_main", "upg_bsc";
};
sun_top_ctrl: syscon@404000 {
@@ -140,6 +141,56 @@
status = "disabled";
};
+ bsca: i2c@406200 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406200 0x58>;
+ interrupts = <24>;
+ interrupt-names = "upg_bsca";
+ status = "disabled";
+ };
+
+ bscb: i2c@406280 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406280 0x58>;
+ interrupts = <25>;
+ interrupt-names = "upg_bscb";
+ status = "disabled";
+ };
+
+ bscc: i2c@406300 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406300 0x58>;
+ interrupts = <26>;
+ interrupt-names = "upg_bscc";
+ status = "disabled";
+ };
+
+ bscd: i2c@406380 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406380 0x58>;
+ interrupts = <27>;
+ interrupt-names = "upg_bscd";
+ status = "disabled";
+ };
+
+ bsce: i2c@406800 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406800 0x58>;
+ interrupts = <28>;
+ interrupt-names = "upg_bsce";
+ status = "disabled";
+ };
+
enet0: ethernet@468000 {
phy-mode = "internal";
phy-handle = <&phy1>;
diff --git a/arch/mips/boot/dts/brcm/bcm7425.dtsi b/arch/mips/boot/dts/brcm/bcm7425.dtsi
index 11bc37c9a2dc..13a706214ee8 100644
--- a/arch/mips/boot/dts/brcm/bcm7425.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7425.dtsi
@@ -87,14 +87,32 @@
compatible = "brcm,bcm7120-l2-intc";
reg = <0x406780 0x8>;
- brcm,int-map-mask = <0x44>;
+ brcm,int-map-mask = <0x44>, <0x7000000>;
brcm,int-fwd-mask = <0x70000>;
interrupt-controller;
#interrupt-cells = <1>;
interrupt-parent = <&periph_intc>;
- interrupts = <55>;
+ interrupts = <55>, <53>;
+ interrupt-names = "upg_main", "upg_bsc";
+ };
+
+ upg_aon_irq0_intc: upg_aon_irq0_intc@409480 {
+ compatible = "brcm,bcm7120-l2-intc";
+ reg = <0x409480 0x8>;
+
+ brcm,int-map-mask = <0x40>, <0x18000000>, <0x100000>;
+ brcm,int-fwd-mask = <0>;
+ brcm,irq-can-wake;
+
+ interrupt-controller;
+ #interrupt-cells = <1>;
+
+ interrupt-parent = <&periph_intc>;
+ interrupts = <56>, <54>, <59>;
+ interrupt-names = "upg_main_aon", "upg_bsc_aon",
+ "upg_spi";
};
sun_top_ctrl: syscon@404000 {
@@ -141,6 +159,56 @@
status = "disabled";
};
+ bsca: i2c@409180 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_aon_irq0_intc>;
+ reg = <0x409180 0x58>;
+ interrupts = <27>;
+ interrupt-names = "upg_bsca";
+ status = "disabled";
+ };
+
+ bscb: i2c@409400 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_aon_irq0_intc>;
+ reg = <0x409400 0x58>;
+ interrupts = <28>;
+ interrupt-names = "upg_bscb";
+ status = "disabled";
+ };
+
+ bscc: i2c@406200 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406200 0x58>;
+ interrupts = <24>;
+ interrupt-names = "upg_bscc";
+ status = "disabled";
+ };
+
+ bscd: i2c@406280 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406280 0x58>;
+ interrupts = <25>;
+ interrupt-names = "upg_bscd";
+ status = "disabled";
+ };
+
+ bsce: i2c@406300 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406300 0x58>;
+ interrupts = <26>;
+ interrupt-names = "upg_bsce";
+ status = "disabled";
+ };
+
enet0: ethernet@b80000 {
phy-mode = "internal";
phy-handle = <&phy1>;
diff --git a/arch/mips/boot/dts/brcm/bcm7435.dtsi b/arch/mips/boot/dts/brcm/bcm7435.dtsi
index 9c4f8a75435f..bca3989c560b 100644
--- a/arch/mips/boot/dts/brcm/bcm7435.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7435.dtsi
@@ -101,14 +101,32 @@
compatible = "brcm,bcm7120-l2-intc";
reg = <0x406780 0x8>;
- brcm,int-map-mask = <0x44>;
+ brcm,int-map-mask = <0x44>, <0x7000000>;
brcm,int-fwd-mask = <0x70000>;
interrupt-controller;
#interrupt-cells = <1>;
interrupt-parent = <&periph_intc>;
- interrupts = <60>;
+ interrupts = <60>, <58>;
+ interrupt-names = "upg_main", "upg_bsc";
+ };
+
+ upg_aon_irq0_intc: upg_aon_irq0_intc@409480 {
+ compatible = "brcm,bcm7120-l2-intc";
+ reg = <0x409480 0x8>;
+
+ brcm,int-map-mask = <0x40>, <0x18000000>, <0x100000>;
+ brcm,int-fwd-mask = <0>;
+ brcm,irq-can-wake;
+
+ interrupt-controller;
+ #interrupt-cells = <1>;
+
+ interrupt-parent = <&periph_intc>;
+ interrupts = <61>, <59>, <64>;
+ interrupt-names = "upg_main_aon", "upg_bsc_aon",
+ "upg_spi";
};
sun_top_ctrl: syscon@404000 {
@@ -155,6 +173,56 @@
status = "disabled";
};
+ bsca: i2c@406300 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406300 0x58>;
+ interrupts = <26>;
+ interrupt-names = "upg_bsca";
+ status = "disabled";
+ };
+
+ bscb: i2c@409400 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_aon_irq0_intc>;
+ reg = <0x409400 0x58>;
+ interrupts = <28>;
+ interrupt-names = "upg_bscb";
+ status = "disabled";
+ };
+
+ bscc: i2c@406200 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406200 0x58>;
+ interrupts = <24>;
+ interrupt-names = "upg_bscc";
+ status = "disabled";
+ };
+
+ bscd: i2c@406280 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_irq0_intc>;
+ reg = <0x406280 0x58>;
+ interrupts = <25>;
+ interrupt-names = "upg_bscd";
+ status = "disabled";
+ };
+
+ bsce: i2c@409180 {
+ clock-frequency = <390000>;
+ compatible = "brcm,brcmstb-i2c";
+ interrupt-parent = <&upg_aon_irq0_intc>;
+ reg = <0x409180 0x58>;
+ interrupts = <27>;
+ interrupt-names = "upg_bsce";
+ status = "disabled";
+ };
+
enet0: ethernet@b80000 {
phy-mode = "internal";
phy-handle = <&phy1>;
diff --git a/arch/mips/boot/dts/brcm/bcm97125cbmb.dts b/arch/mips/boot/dts/brcm/bcm97125cbmb.dts
index 4d0a306ad41e..f2449d147c6d 100644
--- a/arch/mips/boot/dts/brcm/bcm97125cbmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97125cbmb.dts
@@ -29,6 +29,22 @@
status = "okay";
};
+&bsca {
+ status = "okay";
+};
+
+&bscb {
+ status = "okay";
+};
+
+&bscc {
+ status = "okay";
+};
+
+&bscd {
+ status = "okay";
+};
+
/* FIXME: USB is wonky; disable it for now */
&ehci0 {
status = "disabled";
diff --git a/arch/mips/boot/dts/brcm/bcm97420c.dts b/arch/mips/boot/dts/brcm/bcm97420c.dts
index 6e9fa319d140..600d57abee05 100644
--- a/arch/mips/boot/dts/brcm/bcm97420c.dts
+++ b/arch/mips/boot/dts/brcm/bcm97420c.dts
@@ -31,6 +31,26 @@
status = "okay";
};
+&bsca {
+ status = "okay";
+};
+
+&bscb {
+ status = "okay";
+};
+
+&bscc {
+ status = "okay";
+};
+
+&bscd {
+ status = "okay";
+};
+
+&bsce {
+ status = "okay";
+};
+
/* FIXME: MAC driver comes up but cannot attach to PHY */
&enet0 {
status = "disabled";
diff --git a/arch/mips/boot/dts/brcm/bcm97425svmb.dts b/arch/mips/boot/dts/brcm/bcm97425svmb.dts
index 4c47364eece9..119c714805cb 100644
--- a/arch/mips/boot/dts/brcm/bcm97425svmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97425svmb.dts
@@ -31,6 +31,26 @@
status = "okay";
};
+&bsca {
+ status = "okay";
+};
+
+&bscb {
+ status = "okay";
+};
+
+&bscc {
+ status = "okay";
+};
+
+&bscd {
+ status = "okay";
+};
+
+&bsce {
+ status = "okay";
+};
+
&enet0 {
status = "okay";
};
diff --git a/arch/mips/boot/dts/brcm/bcm97435svmb.dts b/arch/mips/boot/dts/brcm/bcm97435svmb.dts
index 7b5c364bdbd1..743d796ec70f 100644
--- a/arch/mips/boot/dts/brcm/bcm97435svmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97435svmb.dts
@@ -31,6 +31,26 @@
status = "okay";
};
+&bsca {
+ status = "okay";
+};
+
+&bscb {
+ status = "okay";
+};
+
+&bscc {
+ status = "okay";
+};
+
+&bscd {
+ status = "okay";
+};
+
+&bsce {
+ status = "okay";
+};
+
&enet0 {
status = "okay";
};
--
2.6.3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 7/7] MIPS: BMIPS: add device tree entry for BCM7xxx SATA
2015-11-19 2:34 [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Jaedon Shin
` (5 preceding siblings ...)
2015-11-19 2:34 ` [PATCH 6/7] MIPS: BMIPS: add device tree entry for BCM7xxx I2C Jaedon Shin
@ 2015-11-19 2:34 ` Jaedon Shin
2015-12-21 23:20 ` [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Florian Fainelli
7 siblings, 0 replies; 11+ messages in thread
From: Jaedon Shin @ 2015-11-19 2:34 UTC (permalink / raw)
To: Ralf Baechle, Florian Fainelli, Linux-MIPS
Cc: Kevin Cernekee, Dragan Stancevic, Jaedon Shin
Add SATA device tree entries for bcm7360 and bcm7435 MIPS-baed set-top
box platforms. The bcm7346, bcm7362 and bcm7425 device tree files are
already added.
Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com>
---
arch/mips/boot/dts/brcm/bcm7360.dtsi | 40 ++++++++++++++++++++++++++++++++
arch/mips/boot/dts/brcm/bcm7435.dtsi | 40 ++++++++++++++++++++++++++++++++
arch/mips/boot/dts/brcm/bcm97360svmb.dts | 8 +++++++
arch/mips/boot/dts/brcm/bcm97435svmb.dts | 8 +++++++
4 files changed, 96 insertions(+)
diff --git a/arch/mips/boot/dts/brcm/bcm7360.dtsi b/arch/mips/boot/dts/brcm/bcm7360.dtsi
index 90b1b038a41a..ba52ab10ad3a 100644
--- a/arch/mips/boot/dts/brcm/bcm7360.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7360.dtsi
@@ -239,5 +239,45 @@
interrupts = <66>;
status = "disabled";
};
+
+ sata: sata@181000 {
+ compatible = "brcm,bcm7425-ahci", "brcm,sata3-ahci";
+ reg-names = "ahci", "top-ctrl";
+ reg = <0x181000 0xa9c>, <0x180020 0x1c>;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <86>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "disabled";
+
+ sata0: sata-port@0 {
+ reg = <0>;
+ phys = <&sata_phy0>;
+ };
+
+ sata1: sata-port@1 {
+ reg = <1>;
+ phys = <&sata_phy1>;
+ };
+ };
+
+ sata_phy: sata-phy@180100 {
+ compatible = "brcm,bcm7425-sata-phy", "brcm,phy-sata3";
+ reg = <0x180100 0x0eff>;
+ reg-names = "phy";
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "disabled";
+
+ sata_phy0: sata-phy@0 {
+ reg = <0>;
+ #phy-cells = <0>;
+ };
+
+ sata_phy1: sata-phy@1 {
+ reg = <1>;
+ #phy-cells = <0>;
+ };
+ };
};
};
diff --git a/arch/mips/boot/dts/brcm/bcm7435.dtsi b/arch/mips/boot/dts/brcm/bcm7435.dtsi
index bca3989c560b..eb7325546d70 100644
--- a/arch/mips/boot/dts/brcm/bcm7435.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7435.dtsi
@@ -325,5 +325,45 @@
interrupts = <78>;
status = "disabled";
};
+
+ sata: sata@181000 {
+ compatible = "brcm,bcm7425-ahci", "brcm,sata3-ahci";
+ reg-names = "ahci", "top-ctrl";
+ reg = <0x181000 0xa9c>, <0x180020 0x1c>;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <45>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "disabled";
+
+ sata0: sata-port@0 {
+ reg = <0>;
+ phys = <&sata_phy0>;
+ };
+
+ sata1: sata-port@1 {
+ reg = <1>;
+ phys = <&sata_phy1>;
+ };
+ };
+
+ sata_phy: sata-phy@180100 {
+ compatible = "brcm,bcm7425-sata-phy", "brcm,phy-sata3";
+ reg = <0x180100 0x0eff>;
+ reg-names = "phy";
+ #address-cells = <1>;
+ #size-cells = <0>;
+ status = "disabled";
+
+ sata_phy0: sata-phy@0 {
+ reg = <0>;
+ #phy-cells = <0>;
+ };
+
+ sata_phy1: sata-phy@1 {
+ reg = <1>;
+ #phy-cells = <0>;
+ };
+ };
};
};
diff --git a/arch/mips/boot/dts/brcm/bcm97360svmb.dts b/arch/mips/boot/dts/brcm/bcm97360svmb.dts
index d48462e091f1..73124be9548a 100644
--- a/arch/mips/boot/dts/brcm/bcm97360svmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97360svmb.dts
@@ -56,3 +56,11 @@
&ohci0 {
status = "okay";
};
+
+&sata {
+ status = "okay";
+};
+
+&sata_phy {
+ status = "okay";
+};
diff --git a/arch/mips/boot/dts/brcm/bcm97435svmb.dts b/arch/mips/boot/dts/brcm/bcm97435svmb.dts
index 743d796ec70f..13553ab2d0fd 100644
--- a/arch/mips/boot/dts/brcm/bcm97435svmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97435svmb.dts
@@ -86,3 +86,11 @@
&ohci3 {
status = "okay";
};
+
+&sata {
+ status = "okay";
+};
+
+&sata_phy {
+ status = "okay";
+};
--
2.6.3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 2/7] MIPS: BMIPS: remove wrong sata properties
2015-11-19 2:34 ` [PATCH 2/7] MIPS: BMIPS: remove wrong sata properties Jaedon Shin
@ 2015-11-19 11:23 ` Sergei Shtylyov
0 siblings, 0 replies; 11+ messages in thread
From: Sergei Shtylyov @ 2015-11-19 11:23 UTC (permalink / raw)
To: Jaedon Shin, Ralf Baechle, Florian Fainelli, Linux-MIPS
Cc: Kevin Cernekee, Dragan Stancevic
Hello.
On 11/19/2015 5:34 AM, Jaedon Shin wrote:
> The brcm,broken-{ncq,phy} properties are not used anywhere in device
> tree, and the sata driver for BMIPS_GENERIC is not used it too.
SATA. Using.
> Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com>
[...]
MBR, Sergei
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms
2015-11-19 2:34 [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Jaedon Shin
` (6 preceding siblings ...)
2015-11-19 2:34 ` [PATCH 7/7] MIPS: BMIPS: add device tree entry for BCM7xxx SATA Jaedon Shin
@ 2015-12-21 23:20 ` Florian Fainelli
2016-02-15 4:31 ` Jaedon Shin
7 siblings, 1 reply; 11+ messages in thread
From: Florian Fainelli @ 2015-12-21 23:20 UTC (permalink / raw)
To: Jaedon Shin, Ralf Baechle, Linux-MIPS; +Cc: Kevin Cernekee, Dragan Stancevic
On 18/11/15 18:34, Jaedon Shin wrote:
> Hi all,
>
> This patch series is including device tree entries that clean up existing
> entries and adds missing entries for BCM7xxx platforms.
>
> Jaedon Shin (7):
> MIPS: BMIPS: remove unused aliases in device tree
> MIPS: BMIPS: remove wrong sata properties
> MIPS: BMIPS: fix phy name in device tree
> MIPS: BMIPS: fix interrupt number in bcm7425.dtsi
> MIPS: BMIPS: add device tree entry for BCM7xxx UART
> MIPS: BMIPS: add device tree entry for BCM7xxx I2C
> MIPS: BMIPS: add device tree entry for BCM7xxx SATA
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Thanks!
Ralf, since 19e88101c78f MIPS: BMIPS: Add SATA/PHY nodes for bcm7346 and
other changes got into 4.4-rc1, could you queue at least
MIPS: BMIPS: remove wrong sata properties
and
MIPS: BMIPS: fix interrupt number in bcm7425.dtsi
for an upcoming 4.4 pull request so we have correct device trees from
there on?
Thank you!
--
Florian
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms
2015-12-21 23:20 ` [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Florian Fainelli
@ 2016-02-15 4:31 ` Jaedon Shin
0 siblings, 0 replies; 11+ messages in thread
From: Jaedon Shin @ 2016-02-15 4:31 UTC (permalink / raw)
To: Ralf Baechle
Cc: Florian Fainelli, Linux-MIPS, Kevin Cernekee, Dragan Stancevic
Hi Ralf,
> On Dec 22, 2015, at 8:20 AM, Florian Fainelli <f.fainelli@gmail.com> wrote:
>
> On 18/11/15 18:34, Jaedon Shin wrote:
>> Hi all,
>>
>> This patch series is including device tree entries that clean up existing
>> entries and adds missing entries for BCM7xxx platforms.
>>
>> Jaedon Shin (7):
>> MIPS: BMIPS: remove unused aliases in device tree
>> MIPS: BMIPS: remove wrong sata properties
>> MIPS: BMIPS: fix phy name in device tree
>> MIPS: BMIPS: fix interrupt number in bcm7425.dtsi
>> MIPS: BMIPS: add device tree entry for BCM7xxx UART
>> MIPS: BMIPS: add device tree entry for BCM7xxx I2C
>> MIPS: BMIPS: add device tree entry for BCM7xxx SATA
>
> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
>
> Thanks!
>
> Ralf, since 19e88101c78f MIPS: BMIPS: Add SATA/PHY nodes for bcm7346 and
> other changes got into 4.4-rc1, could you queue at least
>
> MIPS: BMIPS: remove wrong sata properties
> and
> MIPS: BMIPS: fix interrupt number in bcm7425.dtsi
>
> for an upcoming 4.4 pull request so we have correct device trees from
> there on?
>
> Thank you!
> --
> Florian
Would you consider applying a patchset or the two fixes?
Thanks,
Jaedon
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2016-02-15 4:31 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-19 2:34 [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Jaedon Shin
2015-11-19 2:34 ` [PATCH 1/7] MIPS: BMIPS: remove unused aliases in device tree Jaedon Shin
2015-11-19 2:34 ` [PATCH 2/7] MIPS: BMIPS: remove wrong sata properties Jaedon Shin
2015-11-19 11:23 ` Sergei Shtylyov
2015-11-19 2:34 ` [PATCH 3/7] MIPS: BMIPS: fix phy name in device tree Jaedon Shin
2015-11-19 2:34 ` [PATCH 4/7] MIPS: BMIPS: fix interrupt number in bcm7425.dtsi Jaedon Shin
2015-11-19 2:34 ` [PATCH 5/7] MIPS: BMIPS: add device tree entry for BCM7xxx UART Jaedon Shin
2015-11-19 2:34 ` [PATCH 6/7] MIPS: BMIPS: add device tree entry for BCM7xxx I2C Jaedon Shin
2015-11-19 2:34 ` [PATCH 7/7] MIPS: BMIPS: add device tree entry for BCM7xxx SATA Jaedon Shin
2015-12-21 23:20 ` [PATCH 0/7] cleanup and add device tree for BCM7xxx platforms Florian Fainelli
2016-02-15 4:31 ` Jaedon Shin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox