diff options
author | Simon Glass <sjg@chromium.org> | 2012-03-06 19:00:22 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-03-29 08:12:50 +0200 |
commit | 34fa833aeeea498033f2c68b33ed8d57bf951e22 (patch) | |
tree | d29ba3b3728fa62a170c81c647b40cb64ce3a062 /doc/device-tree-bindings/i2c | |
parent | 3682cc3d2c3af73dd8e343dd41c5b860a658ac46 (diff) | |
download | u-boot-imx-34fa833aeeea498033f2c68b33ed8d57bf951e22.zip u-boot-imx-34fa833aeeea498033f2c68b33ed8d57bf951e22.tar.gz u-boot-imx-34fa833aeeea498033f2c68b33ed8d57bf951e22.tar.bz2 |
tegra: fdt: i2c: Add extra I2C bindings for U-Boot
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>
Diffstat (limited to 'doc/device-tree-bindings/i2c')
-rw-r--r-- | doc/device-tree-bindings/i2c/tegra20-i2c.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/i2c/tegra20-i2c.txt b/doc/device-tree-bindings/i2c/tegra20-i2c.txt new file mode 100644 index 0000000..d601c17 --- /dev/null +++ b/doc/device-tree-bindings/i2c/tegra20-i2c.txt @@ -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>; + }; |