blob: d30f0b11d8538e6b72a813ba7eae6f89f38b0eba [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 - interrupt-parent : the phandle for the interrupt controller that
Haojian Zhuangace12972012-04-27 16:21:08 +080016 services interrupts for this device. If the parent is the default
17 interrupt controller in device tree, it could be ignored.
Haojian Zhuang46e446d2012-03-01 13:49:57 +080018 - mrvl,i2c-polling : Disable interrupt of i2c controller. Polling
19 status register of i2c controller instead.
20 - mrvl,i2c-fast-mode : Enable fast mode of i2c controller.
21
22Examples:
23 twsi1: i2c@d4011000 {
Haojian Zhuangace12972012-04-27 16:21:08 +080024 compatible = "mrvl,mmp-twsi";
Haojian Zhuang46e446d2012-03-01 13:49:57 +080025 reg = <0xd4011000 0x1000>;
26 interrupts = <7>;
27 mrvl,i2c-fast-mode;
28 };
29
30 twsi2: i2c@d4025000 {
Haojian Zhuangace12972012-04-27 16:21:08 +080031 compatible = "mrvl,mmp-twsi";
Haojian Zhuang46e446d2012-03-01 13:49:57 +080032 reg = <0xd4025000 0x1000>;
33 interrupts = <58>;
34 };