diff options
author | Lee Jones <lee.jones@linaro.org> | 2012-09-18 17:17:38 +0200 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2012-09-20 12:32:44 +0200 |
commit | 71e8118fe722827365376a4d80faa40d939973c1 (patch) | |
tree | 6ba7e75f48b006316e59a81f2dd4561d67d525b9 | |
parent | 65392b8253cbf10da5fcf45d855f27715fc30873 (diff) | |
download | linux-71e8118fe722827365376a4d80faa40d939973c1.tar.bz2 |
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.dts | 29 |
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 @@ uart@80007000 { status = "okay"; }; + + i2c@80004000 { + tc3589x@42 { + compatible = "tc3589x"; + reg = <0x42>; + }; + + tps61052@33 { + compatible = "tps61052"; + reg = <0x33>; + }; + }; + + i2c@80128000 { + lp5521@0x33 { + compatible = "lp5521"; + reg = <0x33>; + }; + + lp5521@0x34 { + compatible = "lp5521"; + reg = <0x34>; + }; + + bh1780@0x29 { + compatible = "rohm,bh1780gli"; + reg = <0x33>; + }; + }; }; }; |