blob: c30783c0eca03a42c61b93e0d106a20de0ed92fd [file] [log] [blame]
Andrew Lunnb61d1572012-07-22 12:51:35 +02001* Marvell MMP I2C controller
Haojian Zhuang46e446d2012-03-01 13:49:57 +08002
3Required properties :
4
5 - reg : Offset and length of the register set for the device
Haojian Zhuangace12972012-04-27 16:21:08 +08006 - compatible : should be "mrvl,mmp-twsi" where mmp is the name of a
Haojian Zhuang46e446d2012-03-01 13:49:57 +08007 compatible processor, e.g. pxa168, pxa910, mmp2, mmp3.
8 For the pxa2xx/pxa3xx, an additional node "mrvl,pxa-i2c" is required
9 as shown in the example below.
Romain Perierc27090282016-12-01 12:04:40 +010010 For the Armada 3700, the compatible should be "marvell,armada-3700-i2c".
Haojian Zhuang46e446d2012-03-01 13:49:57 +080011
12Recommended properties :
13
Haojian Zhuangace12972012-04-27 16:21:08 +080014 - interrupts : the interrupt number
Haojian Zhuang46e446d2012-03-01 13:49:57 +080015 - mrvl,i2c-polling : Disable interrupt of i2c controller. Polling
16 status register of i2c controller instead.
17 - mrvl,i2c-fast-mode : Enable fast mode of i2c controller.
18
19Examples:
20 twsi1: i2c@d4011000 {
Haojian Zhuangace12972012-04-27 16:21:08 +080021 compatible = "mrvl,mmp-twsi";
Haojian Zhuang46e446d2012-03-01 13:49:57 +080022 reg = <0xd4011000 0x1000>;
23 interrupts = <7>;
24 mrvl,i2c-fast-mode;
25 };
26
27 twsi2: i2c@d4025000 {
Haojian Zhuangace12972012-04-27 16:21:08 +080028 compatible = "mrvl,mmp-twsi";
Haojian Zhuang46e446d2012-03-01 13:49:57 +080029 reg = <0xd4025000 0x1000>;
30 interrupts = <58>;
31 };