diff options
author | AnilKumar Ch <anilkumar@ti.com> | 2012-09-21 21:19:11 +0530 |
---|---|---|
committer | Benoit Cousson <b-cousson@ti.com> | 2012-10-29 16:56:27 +0100 |
commit | cd5cfac26d00b4e00f785ee22dc54fb3ea203f6f (patch) | |
tree | 2394ac9d1830498cb56612e8cc843e57f46c74c2 /arch/arm/boot/dts/am335x-evm.dts | |
parent | bf078553e049b8874d3e26fc36e1e2cc14614187 (diff) | |
download | blackbird-op-linux-cd5cfac26d00b4e00f785ee22dc54fb3ea203f6f.tar.gz blackbird-op-linux-cd5cfac26d00b4e00f785ee22dc54fb3ea203f6f.zip |
ARM: dts: AM33XX: Add tsl2550 ambient light sensor DT data
In AM335x EVM tsl2550 ambient light sensor is connected to I2C2 bus.
Add child node inside i2c2 node with i2c slave address.
TAOS tsl2550 sensor is using a two-wire SMBus serial interface.
Reduce I2C2 clock frequency to 100kHz from 400kHz because the
maximum clock frequency of SMBus is 100kHz.
Signed-off-by: AnilKumar Ch <anilkumar@ti.com>
[b-cousson@ti.com: Clean the changelog]
Signed-off-by: Benoit Cousson <b-cousson@ti.com>
Diffstat (limited to 'arch/arm/boot/dts/am335x-evm.dts')
-rw-r--r-- | arch/arm/boot/dts/am335x-evm.dts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/am335x-evm.dts b/arch/arm/boot/dts/am335x-evm.dts index a5c4c62530a4..513284fc66b9 100644 --- a/arch/arm/boot/dts/am335x-evm.dts +++ b/arch/arm/boot/dts/am335x-evm.dts @@ -40,7 +40,7 @@ i2c2: i2c@4802a000 { status = "okay"; - clock-frequency = <400000>; + clock-frequency = <100000>; lis331dlh: lis331dlh@18 { compatible = "st,lis331dlh", "st,lis3lv02d"; @@ -70,6 +70,11 @@ st,max-limit-z = <750>; }; + tsl2550: tsl2550@39 { + compatible = "taos,tsl2550"; + reg = <0x39>; + }; + tmp275: tmp275@48 { compatible = "ti,tmp275"; reg = <0x48>; |