]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
tegra: fdt: i2c: Add extra I2C bindings for U-Boot
authorSimon Glass <sjg@chromium.org>
Tue, 6 Mar 2012 19:00:22 +0000 (19:00 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Thu, 29 Mar 2012 06:12:50 +0000 (08:12 +0200)
Add U-Boot's peripheral clock information to the Tegra20 device tree file.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
arch/arm/dts/tegra20.dtsi
doc/device-tree-bindings/i2c/tegra20-i2c.txt [new file with mode: 0644]

index d6bc9f18db782869cb75295fbcfcf0dd7b639e13..d5ca02c5f522c4dc62b3ebc41bff6ee1f1d43cb1 100644 (file)
@@ -34,6 +34,8 @@
                compatible = "nvidia,tegra20-i2c";
                reg = <0x7000C000 0x100>;
                interrupts = < 70 >;
+               /* PERIPH_ID_I2C1, PLL_P_OUT3 */
+               clocks = <&tegra_car 12>, <&tegra_car 124>;
        };
 
        i2c@7000c400 {
@@ -42,6 +44,8 @@
                compatible = "nvidia,tegra20-i2c";
                reg = <0x7000C400 0x100>;
                interrupts = < 116 >;
+               /* PERIPH_ID_I2C2, PLL_P_OUT3 */
+               clocks = <&tegra_car 54>, <&tegra_car 124>;
        };
 
        i2c@7000c500 {
                compatible = "nvidia,tegra20-i2c";
                reg = <0x7000C500 0x100>;
                interrupts = < 124 >;
+               /* PERIPH_ID_I2C3, PLL_P_OUT3 */
+               clocks = <&tegra_car 67>, <&tegra_car 124>;
        };
 
        i2c@7000d000 {
                #address-cells = <1>;
                #size-cells = <0>;
-               compatible = "nvidia,tegra20-i2c";
+               compatible = "nvidia,tegra20-i2c-dvc";
                reg = <0x7000D000 0x200>;
                interrupts = < 85 >;
+               /* PERIPH_ID_DVC_I2C, PLL_P_OUT3 */
+               clocks = <&tegra_car 47>, <&tegra_car 124>;
        };
 
        i2s@70002800 {
diff --git a/doc/device-tree-bindings/i2c/tegra20-i2c.txt b/doc/device-tree-bindings/i2c/tegra20-i2c.txt
new file mode 100644 (file)
index 0000000..d601c17
--- /dev/null
@@ -0,0 +1,23 @@
+(Placeholder note while we locate the kernel Tegra20 bindings)
+
+Added in U-Boot:
+
+Required properties:
+ - clocks : Two clocks must be given, each as a phandle to the Tegra's
+            CAR node and the clock number as a parameter:
+     - the I2C clock to use for the peripheral
+     - the pll_p_out3 clock, which can be used for fast operation. This
+          does not change and is the same for all I2C nodes.
+
+Example:
+(TODO: merge with existing example):
+
+       i2c@7000c400 {
+               #address-cells = <1>;
+               #size-cells = <0>;
+               compatible = "nvidia,tegra20-i2c";
+               reg = <0x7000C400 0x100>;
+               interrupts = < 116 >;
+               /* PERIPH_ID_I2C2, PLL_P_OUT3 */
+               clocks = <&tegra_car 54>, <&tegra_car 124>;
+       };