aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/dts/omap3.dtsi
diff options
context:
space:
mode:
authorSebastian Reichel <sre@kernel.org>2014-05-10 12:37:49 -0400
committerTony Lindgren <tony@atomide.com>2014-05-27 14:59:44 -0400
commit782e25a42b09ae671db4d6057d75aba0e08d235f (patch)
treeebda3dcdcb759305389c00ad746a828f832b4179 /arch/arm/boot/dts/omap3.dtsi
parentdc94fabfc0bb9222543dd9a034f101b4cd76cd45 (diff)
ARM: dts: omap3-n900: Add SSI support
Add SSI device tree data for OMAP3 and Nokia N900. Signed-off-by: Sebastian Reichel <sre@kernel.org> Reviewed-by: Pavel Machek <pavel@ucw.cz> Tested-By: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/dts/omap3.dtsi')
-rw-r--r--arch/arm/boot/dts/omap3.dtsi45
1 files changed, 45 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi
index acb9019dc437..b8cd2d78347b 100644
--- a/arch/arm/boot/dts/omap3.dtsi
+++ b/arch/arm/boot/dts/omap3.dtsi
@@ -757,6 +757,51 @@
757 clock-names = "fck"; 757 clock-names = "fck";
758 }; 758 };
759 }; 759 };
760
761 ssi: ssi-controller@48058000 {
762 compatible = "ti,omap3-ssi";
763 ti,hwmods = "ssi";
764
765 status = "disabled";
766
767 reg = <0x48058000 0x1000>,
768 <0x48059000 0x1000>;
769 reg-names = "sys",
770 "gdd";
771
772 interrupts = <71>;
773 interrupt-names = "gdd_mpu";
774
775 #address-cells = <1>;
776 #size-cells = <1>;
777 ranges;
778
779 ssi_port1: ssi-port@4805a000 {
780 compatible = "ti,omap3-ssi-port";
781
782 reg = <0x4805a000 0x800>,
783 <0x4805a800 0x800>;
784 reg-names = "tx",
785 "rx";
786
787 interrupt-parent = <&intc>;
788 interrupts = <67>,
789 <68>;
790 };
791
792 ssi_port2: ssi-port@4805b000 {
793 compatible = "ti,omap3-ssi-port";
794
795 reg = <0x4805b000 0x800>,
796 <0x4805b800 0x800>;
797 reg-names = "tx",
798 "rx";
799
800 interrupt-parent = <&intc>;
801 interrupts = <69>,
802 <70>;
803 };
804 };
760 }; 805 };
761}; 806};
762 807