Thursday 24 May 2012

Schottky diode

Consider, a case where you want to isolate a battery supply with mains supply or incase you want to isolate two supplies, schottky diode is suitable for this application.

Schottky diode or surface barrier diode or hot carrier diode is a majority carrier, metal-semiconductor junction diode with very less reverse recovery time. The reverse recovery time is in picosec as compared to normal diodes that have reverse recovery in nanosec. Schottky conduts when forward biased. In many applications, we see schottky diode used in series with supply. Another advantage of schottky is less EMI noise. For normal diodes due to some reverse current flowing, in high-power applications EMI noise is a problem.

Advantages:
1. Less reverse recovery time and hence fast switching
2. Low EMI noise and hence preferred for high frequency applications
3. Smaller device area
4. Low forward drop (0.15 to 0.45V)
5. Low junction capacitance
6. High current density
7. Less power dissipation and hence small size heat sinks in high power applications

Disadvantages:
1. Low reverse voltage rating
2. Reverse current variation with temperature

Applications:
1. RF detector
2. Switching regulators
3. Diode mixer
4. Solar cell

Monday 7 May 2012

SMBus versus I2C


Did you hear about Smart Battery system (SBS)? Or did you at least see a system in which you get a display of battery manufacturer, type, model number, discharge rate, remaining capacity? If your answer is yes, then you must have listened about SMBus too.  SMBus is the underlying bus used for communication with power sources like battery. The modern smart batteries have an integrated circuit which communicates with the processor over SMBus sending the required battery data.

SMBus defined by INTEL is a 2-wire protocol like I2C. It can be said like a low speed bus and operates over a range of 10-100 KHz. In other words, SMBus is used for Low-Bandwidth applications. The latest PMBus extends the speed to 400 KHz. Like I2C, SMBus also has open collector configuration and all the hardware design considerations are similar. The pull-up requirements are not that stringent compared to I2C. The data transfer formats of SMBus are a subset of I2C data transfer formats. Modern embedded systems which use PMICs for power sequencing and handling also use SMBus for communication.
Let us assume, a slave is busy with some real-time processing and master sends a request for communication. The slave keeps the clock low until it completes its routines and takes up the request later. This is the case with I2C. That is why I2C bus is also sometimes called “DC bus”. In this case, the I2C bus may be held up until slave is serviced. Where as in the case of SMBus, there is a time up after which the master recognizes that there is a problem on the other end and stops the communication. It may also send the reset signal to slave.

Electrical levels over SMBus:
The fixed low/high voltage levels of SMBus are 0.8V/2.1V (1.5/3V for I2C).
Sink current: 100-300uA (3mA for I2C)
From the sink current specifications, it is clear that SMBus uses weak pull-up resistors.

Are SMBus and I2C compatible?
SMBus and I2C can work together on same bus but with some constraints:
Ø  Due to time out constraint, SMBus cannot operate under 10 KHz. Whereas I2C can be called a DC bus and can operate from 0 Hz.
Ø  For I2C and SMBus, the sink current requirements vary and if both are to compatible, the pull-up resistors need to be selected carefully.
Ø  Although, voltage swings as per electrical specifications vary, interchangeability can be done.

SMBALERT#:
SMBus in some application also has special alert signal which indicates the interrupt condition to the host. This signal is mainly used in PCI application. Some of the PCI add-in cards use SMBus for their communication and it is common to see SMBus signals defined in standard PCI connectors. The following pin out of PCIe x1 slot shows SMBus signals.


The below table shows a comparison of I2C and SMBus:
I2C
SMBus
Speed : 0-100 KHz
0-400 KHz
0-1 MHz
0-3.4 MHz
Speed: 10-100KHz
No time-out
Time-out of 35ms
Rise and Fall time not defined
Rise and Fall time defined
The time for which Slave and Master can hold clock low are not defined.
The time for which Slave and Master can hold clock low (SEXT, MEXT) are defined.
Hot plugging doesn’t work
Hot plugging works
For 7-bit addressing, 128 devices can be connected.
For 7-bit addressing, 128 devices can be connected.
Dynamic address allocation not possible.
Includes Address resolution protocol that can make dynamic address allocations.
Packet Error checking not included.
Packet Error checking included.
Error recovery impossible if Slave holds Data or Clock line low forever.
Error recovery possible after time out

What happens if data or Clock line is held low forever by slave?
This is an error condition in I2C, where master can’t handle. Slaves doesn’t generally doesn’t hold clock low and it is data line which can be held low for some time. The master has to keep sending clock signals over a time until slave pulls it high. Where as in SMBus, after a specific time, slave will be reset.

Applications of SMBus:
ü  Smart Batteries
ü  Power Management (PMICs)
ü  Communication with add-in cards of PCI
ü  Temperature, Voltage Sensors.

Saturday 5 May 2012

Understanding I2C - Part 3

Beginners need to know that I2C is a simple synchronous serial communication protocol.


I2C routing/external cable distance:
If you are routing I2C lines on PCB or using external cables, we have to keep in mind the maximum distance to which it can be done. Generally, without considering any factors, the length can be 9-12 feet. But length depends on following factors:
1.    Speed
2.    Load (capacitance)
3.    Source for pull-up

The distance can be increased by using a active current source instead of simple pull-up resistor. This is what is used in current amplifiers used as I2C repeater. For the same capacitance, I2C lines with repeater can be routed over longer distance than I2C lines with no repeater.

General Call in I2C:

In some cases, it is required that master need to communicate with all slaves at a time. In that case, Master has an option of sending “0000 0000” as address. This is called general call to which all the slaves will respond.


Multi Master Configuration:
Consider an application which demands two microcontrollers and ‘N’ number of sensors. This is a multi master application and clock need to be controlled carefully by either of the master. In this case, masters need to deal with Arbitration and Clock synchronization. Arbitration is like masters fighting for bus and one of them getting control at a specific time. Clock synchronization is like different masters may use different clocks and this can be differentiating factor in the case of slaves deciding which master has initiated the transaction. In case, a master doesn’t want to lose control of the bus, it may send repeated start bit in place of stop bit. This helps the master keep control of the bus. We need to remember that when a “START” signal is sent from Master to slave, the internal logic of slave is set to specific state. SCL need not ne bi-directional but in multi-master mode, the SCL needs to be bi-directional.
Genuine I2C routine:
DATA = 1;
CLK = 1; // initially CLK and DATA are high
Delay(n);
DATA = 0; // data made low from high to indicate START
Delay(n);
CLK = 0; // clock made low and in this state data bit can be put on the bus
Delay(n);
DATA = 0 or 1; // as, clock is made low, we are sending data byte
Delay(n);
CLK = 1; // Now clock is high and bit is freezed

Note: ‘n’ in delay function depends on clock cycle.

Monday 30 April 2012

Understanding I2C - Part 2

I2C is a powerful serial communication used in data intensive applications. It replaces a complex parallel interface with a straight forward two-wire interface. Being a Master-Slave interface, each salve in I2C is addressable by a unique address. So, for a 7-bit address from master there can be 2^7 slaves on the line.  The addresses ranging from 0 to 127. The maximum slave count is sometimes limited by the capacitance over the bus. Designers need to keep in mind that for a capacitance of less than 200pf, pull-up is used and capacitance over 200pf requires a current source. The maximum capacitance over I2C as per the standard is 400pf.
How a START/STOP bit differs from other data bits transmission and how come slave differentiates between data and START/STOP bits?
During an I2C data transfer, when the CLK is HIGH, no transition must occur on SDA line. If such transition happens, then it is an indication of either a START/STOP condition.
1.       START condition is indicated by a HIGH to LOW transition when SCK is HIGH.
2.       STOP condition is indicated by a LOW to HIGH transition when SCK is HIGH.


UFm mode:
In Ultra-Fast mode, which can operate at a speed of up to 5Mbps, only unidirectional transfer is possible. There is no ACK from slave as in normal modes. It is a push-pull bus. PCx966x family (I2C bus controller) from NXP supports this ultra high speed I2C transfer.
Applications of I2C:
1.       LED controller/driver
2.       Touch interfaces for display
3.       GPIO Expanders
4.       Memory (EEPROM)
5.       RTC
6.       Gaming industry
7.       Sensors
8.       ADC/DAC
9.       Multiplexer/Switches
10.   Communication modules (BT, Wi-Fi, NFC, .. )
11.   Other control, portable and consumable applications
Advantages of I2C interface:
1.       Simple 2-wire serial interface
2.       Easily programmable
3.       I2C compared to other parallel interfaces reduces the PCB footprint and results in lower system costs.

What if you don’t have a I2C interface on your device?
An I2C bus controller can be used, to convert any of the parallel interfaces to I2C. MAX166x and PCx966x are some of the examples.
How do you simulate I2C data?
If you are working with a microcontroller, the debugging tools provided by that vendor help to trace the I2C data in registers. But if you have a standalone slave device evaluation board without any master and wanted to debug, TOTAL PAHSE provides some debugging tools which helps to simulate your I2C interface. Aardvark I2C/SPI Host Adapter from TOTAL PHASE acts as master and can pump in data to slave. Beagle I2C/SPI Protocol Analyzer helps to analyze the data transitions between them.

Saturday 28 April 2012

Understanding I2C - Part 1


I2C is a serial communication protocol. I2C uses SDA, SCL lines for communication. I2C was initially developed by Philips and is a famous protocol in embedded systems. Whether it may be microcontroller, processor, SoC or an FPGA, I2C interface is a must. I2C uses a 7-bit addressing scheme; also it uses 10-bit address. The data is transferred in bytes over SDA.



I2C uses a Master-Slave configuration with single master and multiple slaves. Also, there can be multiple masters over a link. At any time, only master can initiate a transfer and slave can only respond.  As I2C uses a 7-bit addressing scheme there can be 128 slaves connected over a I2C interface. As I2C transfers can take place only byte at a time, when master transfers a address an 8th bit will be included which tells the slave whether it is a read or write cycle. A 8th bit of ‘0’ indicates master writing to slave and ‘1’ indicates master reading from slave.

Depending on speed, three modes are defined in I2C communications:
Low speed mode – 10KHz
Standard mode – 100KHz
Fast Mode – 400KHz
High Speed Mode – 3.4MHz
Ultra Speed Mode – 5MHz (USDA, USCL)

The genuine doubt in the mind of embedded programmer comes in the case of data transfer to slave. For example, if a master wants to transmit 0x79 to slave, the master starts off the transmission from MSB of the byte. So, for 0x79 (01111001) , master transmits ‘0’, ‘1’, ‘1’, ‘1’, ‘1’, ‘0’… in sequence. But during data transfer there will be an extra bit from slave end indicating the status of data transfer, we call it ACK. If ACK from slave is ‘0’, it indicates that data is transferred successfully and ready to accept more. If ACK is ‘1’, data is transferred successfully and no more data to be transferred.

Why do I2C lines require pull-ups?

SDA, SCL are open drain drivers. So, master can drive low but to drive high an external pull-up is required on both SCL and SDA lines.

What is an open drain driver?

This open drain drivers discussion leads to a question of what is open drain driver, why can’t it drive high on it’s own. Going into the details, the I/O buffers on the master can be either open drain or push-pull. In a push-pull configuration, there will be two transistors where one drives the output low and the the other drives high. In a push-pull configuration, the lower transistor drives the output low and the upper transistor drives the output high. In an open drain configuration, there will be only one transistor which can drive the output low and when output must be high it can’t drive on it’s own and needs an external resistor. In TTL world, we call the same open driver as open collector.

What is clock stretching and arbitration in I2C?

Consider, a case in which two controllers are communicating with each other over a I2C line. When a master among it initiates a transfer, there might be case in which the other controller might be busy and it sees initiation from master and holds the SCL low until it finishes off it’s routines. This case of holding the SCL low is called clock stretching. During this time of SCL low, no communication can take place over I2C lines. Arbitration is another case in which SDA is held low.

How to choose a pull-up value for I2C lines?

Choosing I2C pull-ups is a challenge for any designer. Mostly, we go by the recommendations of the manufactures. For low frequency applications in the case of microcontrollers, we can by these recommendations. But in the case of high frequency applications, pull-ups need to be chosen after some study. The pull-up value depends on,

1.    Capacitance of the line.
2.    Length of the line
3.    Speed of transfer.

As the number of slaves over I2C line increases, the capacitance also increases. This capacitance includes capacitance at master, slave end and parasitic capacitance. As capacitance increases, time constant (RC) also increases. This increases the rise time and hence, speed reduces. This can be clearly seen when we probe the I2C lines. The signal tends to rise exponentially. This is not affordable and we have to bring back the square signal. For this as number of slaves increases, we tend to reduce the pull-up resistor value over the line. But there is a disadvantage in reducing pull-up because it causes more current to flow and hence unnecessary leakage and more power dissipation which is not acceptable for low power and battery powered applications. In such cases, only simulations will help to come to a correct solution before freezing off the design.

In case where I2C need to driven over a long distance, the parasitic capacitance will be high and hence we use lower pull-up values. Also, as the speed increases in the case of high speed and ultra high speed mode of I2C, the time constant must be low and hence we tend to use lower pull-up values.

The smallest value of I2C pull-up can be calculated using the formula,

              R(pull-up) = [V(pull-up) – (level over I2C lines)]/current from pull-up

The largest value depends on capacitance and speed of bus and can be calculated using,
              R(pull-up) = [1/Fmax]/Cbus

Cbus = Cmaster + Cslave + Cparasitic