blob: 72649dffa38b32e5b347179ebf6973fb584b0be0 [file] [log] [blame]
Simon Glass34fa8332012-03-06 19:00:22 +00001(Placeholder note while we locate the kernel Tegra20 bindings)
2
3Added in U-Boot:
4
5Required properties:
6 - clocks : Two clocks must be given, each as a phandle to the Tegra's
Wolfgang Denkf5cdc112012-04-16 23:13:51 +02007 CAR node and the clock number as a parameter:
Simon Glass34fa8332012-03-06 19:00:22 +00008 - the I2C clock to use for the peripheral
9 - the pll_p_out3 clock, which can be used for fast operation. This
Wolfgang Denkf5cdc112012-04-16 23:13:51 +020010 does not change and is the same for all I2C nodes.
Simon Glass34fa8332012-03-06 19:00:22 +000011
12Example:
13(TODO: merge with existing example):
14
15 i2c@7000c400 {
16 #address-cells = <1>;
17 #size-cells = <0>;
18 compatible = "nvidia,tegra20-i2c";
19 reg = <0x7000C400 0x100>;
20 interrupts = < 116 >;
21 /* PERIPH_ID_I2C2, PLL_P_OUT3 */
22 clocks = <&tegra_car 54>, <&tegra_car 124>;
23 };