diff options
author | 2012-04-27 09:22:44 -0600 | |
---|---|---|
committer | 2012-05-03 14:49:12 -0600 | |
commit | 081cc0a57c2f976359d4dcefec480bdd2f848513 (patch) | |
tree | 03eee7cc02c45862ce498020b6cd26993ca497f6 | |
parent | ARM: dt: tegra seaboard: add i2c devices (diff) | |
download | linux-dev-081cc0a57c2f976359d4dcefec480bdd2f848513.tar.xz linux-dev-081cc0a57c2f976359d4dcefec480bdd2f848513.zip |
ARM: dt: tegra trimslice: add RTC I2C device
According to the device's datasheet, it can support an interrupt too.
However, the existing board file doesn't specify an interrupt, and I
don't have the schematics, so I can't add an interrupts property. The
current Linux driver doesn't support anyway.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
-rw-r--r-- | arch/arm/boot/dts/tegra-trimslice.dts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/tegra-trimslice.dts b/arch/arm/boot/dts/tegra-trimslice.dts index 98efd5b0d7f9..3fe91a70bc2f 100644 --- a/arch/arm/boot/dts/tegra-trimslice.dts +++ b/arch/arm/boot/dts/tegra-trimslice.dts @@ -250,6 +250,11 @@ i2c@7000c500 { clock-frequency = <400000>; + + rtc@56 { + compatible = "emmicro,em3027"; + reg = <0x56>; + }; }; i2c@7000d000 { |