Difference between revisions of "I2C"

From ArmadeusWiki
Jump to: navigation, search
m (APF9328 I2C bus logic 5v level adaptation (if necessary))
(Tested I2C chips)
Line 25: Line 25:
 
* RTC: DS1327
 
* RTC: DS1327
 
* DAC: [[Max5821]]
 
* DAC: [[Max5821]]
* Misc: [[TV_Output | CH7024]]
+
* Video: [[TV_Output | CH7024]] [[DVI_/_HDMI|AD9889 & TFP410]]
 +
* Misc: [[APF51 PMIC|WM8311]]
 
* EEPROM:
 
* EEPROM:
  

Revision as of 16:17, 26 May 2011

This page will summarize the informations to use the I2C bus on our boards.

Overview

The I2C bus is a simple & widely used two wires synchronous bus. It has been developped by Philips (now NXP).
The standard frequency is 100kHz but 400kHz devices can be found (for example on the i.MX). Single and multi masters are supported. Only the single master configuration will be discussed here.

The bus is based on two signals: SDA and SCL.

  • SDA: bidirectional line for data
  • SCL: unidirectional line for the clock (provided by the master)

Details can be found in the specification here.

Linux configuration

By default the I2C bus is activated in the Armadeus distrib. If you need to deactivate it, take a look at the linux menuconfig (make linux26-menuconfig)

Linux user space C code

Kernel source has a good documentation on using i2c bus through /dev with C program, it can be found in kernel source directory Documentation/i2c/dev-interface.

You can find a sample code under target/packages/ch7024ctrl/ of the Armadeus distribution ( or here through SF's SVN browsing )

Tested I2C chips

I2C bus logic 5v level adaptation (if necessary)

if you want to use I2C devices which can not work with the I2C voltage of the APF board, a level translator has to be used, for example a PCA9306 from NXP:

  • Connect pin 1 to the local GND
  • Connect pin 2 to the local I2C iMX supply voltage
  • Connect pin 3 to the SCL output of the APF
  • Connect pin 4 to the SDA input/ouput of the APF
  • Connect pin 7 and 8 together and the add a 200K resistor in parallel to a 100nF capacitor to GND
  • Connect a pullup of 1.7K between your I2C device supply and the SCL line (pin 6)
  • Connect a pullup of 1.7K between your I2C device supply and and the SDA line (pin 5)

For more details, take a look at the PCA9306 datasheet. This chip is the one that can be mounted by users on the APF9328DevFull board.

As a low-cost alternative, a level shifter can be built with a pair of N-channel mosfets (such as a BS170). See the Application Note 97055.

Links