aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaedon Shin <jaedon.shin@gmail.com>2016-08-18 22:52:28 -0400
committerRalf Baechle <ralf@linux-mips.org>2016-10-06 11:31:02 -0400
commitb2420e2762e36ec3aab0c0b6b9ee277f7b1b48e2 (patch)
tree3f7251432bbbcac80c6bb0c9653c44a35fab4a4b
parentc707844d4b876f74f2adf036f98f6787d76d2905 (diff)
MIPS: BMIPS: Add support SDHCI device nodes
Adds SDHCI device nodes to BCM7xxx MIPS based SoCs. Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Cc: Jonas Gorski <jonas.gorski@gmail.com> Cc: Kevin Cernekee <cernekee@gmail.com> Cc: Rob Herring <robh+dt@kernel.org> Cc: MIPS Mailing List <linux-mips@linux-mips.org> Cc: devicetree@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/14002/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r--arch/mips/boot/dts/brcm/bcm7346.dtsi8
-rw-r--r--arch/mips/boot/dts/brcm/bcm7360.dtsi8
-rw-r--r--arch/mips/boot/dts/brcm/bcm7362.dtsi8
-rw-r--r--arch/mips/boot/dts/brcm/bcm7425.dtsi20
-rw-r--r--arch/mips/boot/dts/brcm/bcm7435.dtsi20
-rw-r--r--arch/mips/boot/dts/brcm/bcm97346dbsmb.dts4
-rw-r--r--arch/mips/boot/dts/brcm/bcm97360svmb.dts4
-rw-r--r--arch/mips/boot/dts/brcm/bcm97362svmb.dts4
-rw-r--r--arch/mips/boot/dts/brcm/bcm97425svmb.dts8
-rw-r--r--arch/mips/boot/dts/brcm/bcm97435svmb.dts8
10 files changed, 92 insertions, 0 deletions
diff --git a/arch/mips/boot/dts/brcm/bcm7346.dtsi b/arch/mips/boot/dts/brcm/bcm7346.dtsi
index 0105e4e5130b..0da4f8a3744b 100644
--- a/arch/mips/boot/dts/brcm/bcm7346.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7346.dtsi
@@ -411,5 +411,13 @@
411 #phy-cells = <0>; 411 #phy-cells = <0>;
412 }; 412 };
413 }; 413 };
414
415 sdhci0: sdhci@413500 {
416 compatible = "brcm,bcm7425-sdhci";
417 reg = <0x413500 0x100>;
418 interrupt-parent = <&periph_intc>;
419 interrupts = <85>;
420 status = "disabled";
421 };
414 }; 422 };
415}; 423};
diff --git a/arch/mips/boot/dts/brcm/bcm7360.dtsi b/arch/mips/boot/dts/brcm/bcm7360.dtsi
index f0f63cb2bd2b..9f72d3490427 100644
--- a/arch/mips/boot/dts/brcm/bcm7360.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7360.dtsi
@@ -330,5 +330,13 @@
330 #phy-cells = <0>; 330 #phy-cells = <0>;
331 }; 331 };
332 }; 332 };
333
334 sdhci0: sdhci@410000 {
335 compatible = "brcm,bcm7425-sdhci";
336 reg = <0x410000 0x100>;
337 interrupt-parent = <&periph_intc>;
338 interrupts = <82>;
339 status = "disabled";
340 };
333 }; 341 };
334}; 342};
diff --git a/arch/mips/boot/dts/brcm/bcm7362.dtsi b/arch/mips/boot/dts/brcm/bcm7362.dtsi
index ac42b98e31bb..ff734f45df92 100644
--- a/arch/mips/boot/dts/brcm/bcm7362.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7362.dtsi
@@ -326,5 +326,13 @@
326 #phy-cells = <0>; 326 #phy-cells = <0>;
327 }; 327 };
328 }; 328 };
329
330 sdhci0: sdhci@410000 {
331 compatible = "brcm,bcm7425-sdhci";
332 reg = <0x410000 0x100>;
333 interrupt-parent = <&periph_intc>;
334 interrupts = <82>;
335 status = "disabled";
336 };
329 }; 337 };
330}; 338};
diff --git a/arch/mips/boot/dts/brcm/bcm7425.dtsi b/arch/mips/boot/dts/brcm/bcm7425.dtsi
index 8b05b98f2a9c..1c8d3b4033a0 100644
--- a/arch/mips/boot/dts/brcm/bcm7425.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7425.dtsi
@@ -410,5 +410,25 @@
410 #phy-cells = <0>; 410 #phy-cells = <0>;
411 }; 411 };
412 }; 412 };
413
414 sdhci0: sdhci@419000 {
415 compatible = "brcm,bcm7425-sdhci";
416 reg = <0x419000 0x100>;
417 interrupt-parent = <&periph_intc>;
418 interrupts = <43>;
419 sd-uhs-sdr50;
420 mmc-hs200-1_8v;
421 status = "disabled";
422 };
423
424 sdhci1: sdhci@419200 {
425 compatible = "brcm,bcm7425-sdhci";
426 reg = <0x419200 0x100>;
427 interrupt-parent = <&periph_intc>;
428 interrupts = <44>;
429 sd-uhs-sdr50;
430 mmc-hs200-1_8v;
431 status = "disabled";
432 };
413 }; 433 };
414}; 434};
diff --git a/arch/mips/boot/dts/brcm/bcm7435.dtsi b/arch/mips/boot/dts/brcm/bcm7435.dtsi
index b7bb1024089c..2b28d91762ef 100644
--- a/arch/mips/boot/dts/brcm/bcm7435.dtsi
+++ b/arch/mips/boot/dts/brcm/bcm7435.dtsi
@@ -425,5 +425,25 @@
425 #phy-cells = <0>; 425 #phy-cells = <0>;
426 }; 426 };
427 }; 427 };
428
429 sdhci0: sdhci@41a000 {
430 compatible = "brcm,bcm7425-sdhci";
431 reg = <0x41a000 0x100>;
432 interrupt-parent = <&periph_intc>;
433 interrupts = <47>;
434 sd-uhs-sdr50;
435 mmc-hs200-1_8v;
436 status = "disabled";
437 };
438
439 sdhci1: sdhci@41a200 {
440 compatible = "brcm,bcm7425-sdhci";
441 reg = <0x41a200 0x100>;
442 interrupt-parent = <&periph_intc>;
443 interrupts = <48>;
444 sd-uhs-sdr50;
445 mmc-hs200-1_8v;
446 status = "disabled";
447 };
428 }; 448 };
429}; 449};
diff --git a/arch/mips/boot/dts/brcm/bcm97346dbsmb.dts b/arch/mips/boot/dts/brcm/bcm97346dbsmb.dts
index 2c55ab094a29..27c9f127a7ca 100644
--- a/arch/mips/boot/dts/brcm/bcm97346dbsmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97346dbsmb.dts
@@ -100,3 +100,7 @@
100&sata_phy { 100&sata_phy {
101 status = "okay"; 101 status = "okay";
102}; 102};
103
104&sdhci0 {
105 status = "okay";
106};
diff --git a/arch/mips/boot/dts/brcm/bcm97360svmb.dts b/arch/mips/boot/dts/brcm/bcm97360svmb.dts
index 496e6ed9fae3..bed821b03013 100644
--- a/arch/mips/boot/dts/brcm/bcm97360svmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97360svmb.dts
@@ -68,3 +68,7 @@
68&sata_phy { 68&sata_phy {
69 status = "okay"; 69 status = "okay";
70}; 70};
71
72&sdhci0 {
73 status = "okay";
74};
diff --git a/arch/mips/boot/dts/brcm/bcm97362svmb.dts b/arch/mips/boot/dts/brcm/bcm97362svmb.dts
index b880c018f3d8..1b9bc4b2d9ae 100644
--- a/arch/mips/boot/dts/brcm/bcm97362svmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97362svmb.dts
@@ -64,3 +64,7 @@
64&sata_phy { 64&sata_phy {
65 status = "okay"; 65 status = "okay";
66}; 66};
67
68&sdhci0 {
69 status = "okay";
70};
diff --git a/arch/mips/boot/dts/brcm/bcm97425svmb.dts b/arch/mips/boot/dts/brcm/bcm97425svmb.dts
index f091e91b11c5..1c6b74daef56 100644
--- a/arch/mips/boot/dts/brcm/bcm97425svmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97425svmb.dts
@@ -94,3 +94,11 @@
94&ohci3 { 94&ohci3 {
95 status = "okay"; 95 status = "okay";
96}; 96};
97
98&sdhci0 {
99 status = "okay";
100};
101
102&sdhci1 {
103 status = "okay";
104};
diff --git a/arch/mips/boot/dts/brcm/bcm97435svmb.dts b/arch/mips/boot/dts/brcm/bcm97435svmb.dts
index 9db84f2a6664..64bb1988dbc8 100644
--- a/arch/mips/boot/dts/brcm/bcm97435svmb.dts
+++ b/arch/mips/boot/dts/brcm/bcm97435svmb.dts
@@ -102,3 +102,11 @@
102&sata_phy { 102&sata_phy {
103 status = "okay"; 103 status = "okay";
104}; 104};
105
106&sdhci0 {
107 status = "okay";
108};
109
110&sdhci1 {
111 status = "okay";
112};