aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2012-09-18 11:17:38 -0400
committerLee Jones <lee.jones@linaro.org>2012-09-20 06:32:44 -0400
commit71e8118fe722827365376a4d80faa40d939973c1 (patch)
tree6ba7e75f48b006316e59a81f2dd4561d67d525b9
parent65392b8253cbf10da5fcf45d855f27715fc30873 (diff)
ARM: ux500: Add all known I2C sub-device nodes to the HREF DT
Here we add the skeleton nodes for each of the known I2C sub-devices currently registered on ST-Ericsson's HREF Development Platform. We will fill these nodes in turn as the drivers are enabled for Device Tree. Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r--arch/arm/boot/dts/hrefv60plus.dts29
1 files changed, 29 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/hrefv60plus.dts b/arch/arm/boot/dts/hrefv60plus.dts
index 32cd7a03817d..1d2c642fece0 100644
--- a/arch/arm/boot/dts/hrefv60plus.dts
+++ b/arch/arm/boot/dts/hrefv60plus.dts
@@ -32,5 +32,34 @@
32 uart@80007000 { 32 uart@80007000 {
33 status = "okay"; 33 status = "okay";
34 }; 34 };
35
36 i2c@80004000 {
37 tc3589x@42 {
38 compatible = "tc3589x";
39 reg = <0x42>;
40 };
41
42 tps61052@33 {
43 compatible = "tps61052";
44 reg = <0x33>;
45 };
46 };
47
48 i2c@80128000 {
49 lp5521@0x33 {
50 compatible = "lp5521";
51 reg = <0x33>;
52 };
53
54 lp5521@0x34 {
55 compatible = "lp5521";
56 reg = <0x34>;
57 };
58
59 bh1780@0x29 {
60 compatible = "rohm,bh1780gli";
61 reg = <0x33>;
62 };
63 };
35 }; 64 };
36}; 65};