4
\$\begingroup\$

I am fine with I2C basic communication and implementation? Need info on Multimaster mode of I2C How does multi master I2C work? Advantages over I2C single Master? In what circumstances this multi master is preferred? Is it possible that a single slave can have multiple masters?

\$\endgroup\$
1
  • 1
    \$\begingroup\$ This question really sounds like homework. \$\endgroup\$
    – JimmyB
    Commented Jun 16, 2014 at 13:24

3 Answers 3

8
\$\begingroup\$

I2C Master is decided by who owns the bus meaning who provides the clock, in the give figure below you can see that 2 i2c masters try to access the slave device for information. Typical lythe slave could be an eeprom.

When Master1 needs the bus it polls the bus whether it is free or not (if the line is low than the I2C bus is taken by someone) if the line is high it pulls down and sends across the address (7 bit and 8 bit being R/W) each of the I2C device connected to the bus samples the same and responds with an ack if it is being addressed by pulling it low. once after the required communication the master releases the bus. An App note from renesas Microcontroller explaining multi master mode I2C

enter image description here

\$\endgroup\$
1
  • \$\begingroup\$ Thanks Hari, So what i understand is. on single bus multiple master and multiple clients can be implemented using the above concept. What is the use of multi master i2c? Generally when this multi master is chosen any example would flush all my doubts? \$\endgroup\$
    – srujan
    Commented Jun 13, 2014 at 11:41
1
\$\begingroup\$

That basically depends on the application, In our application we use INA219 CSM in Power Module for monitoring the power consumed, The Soc Device at regular interval polls the csm to observe the power consumed. Also we have TPS Switching Regulator whose output can be varied via I2c interface(FTDI I2C Master

A Simple Multi Master/Slave Setup

\$\endgroup\$
1
\$\begingroup\$

In what circumstances this multi master is preferred?

Well thats easy to answer, mission critical applications, such as if one microcontroller fails the other microcontroller will take over. This is going to be heavily coding based.

One cool reason to use multi master is that you have more flexibility in your projects. You can call functions VIA the I2C bus for a particular micro controller and that micro controller can also call functions back or to other devices in the I2C bus.

\$\endgroup\$