I2C

The Inter-Integrated Circuit (I2C) interface is a two-wire, bidirectional serial bus that provides a simple and efficient method for data exchange among devices. The phyCORE-AM64x SOM provides six independent multimaster fast-mode I2C modules. Aside from I2C0, which has pullups on the SOM, all the I2C signals require pullups in your custom carrier board design. This guide will show you how to test the I2C interface on the phyCORE-AM64x development kit. To learn more information about the phyCORE-AM64x Inter-Integrated Circuit (I2C) interface, please see section 7.4 in the Hardware Manual.

Note

The AM64x processor supports up to 6x I2C interfaces. Only two of these are supported on the phyCORE-AM64x development kit by default but others can be enabled via pin multiplexing.

I2C Settings

Hardware Interface

sysfs Path

I2C0

/dev/i2c-0

I2C1

/dev/i2c-1

Requirements

  • M/M Jumper Wire

    Note

    The expansion header was designed for 2mm pins. It is acceptable to use 2.54mm jumper pins during the development and verification of interfaces. The only issue arises when you switch back to plugging in a 2mm male header for an expansion board you created.

  • I2C device (Accelerometer)

Connecting Your I2C Device

Connecting I2C Pin Names

I2C Device Pin

Carrier Board Signal

Carrier Board Connector - Pin

VCC

VCC_5V0_SW

X27 - Pin 2

GND

GND

X27 - Pin 9

SDA

X_I2C1_SDA

X27 - Pin 11

SCL

X_I2C1_SCL

X27 - Pin 13

phyCORE-AM64x I2C x27 Pins Location

Using I2C1

  • Power on the development kit and boot into Linux.

  • List the available I2C devices. There will be a few devices that appear in /dev/ and each is a different I2C interface.

Target (Linux)
ls /dev/i2c*
Expected Output
root@phyboard-electra-am64xx-2:~# ls /dev/i2c*
/dev/i2c-0  /dev/i2c-1
  • List all the I2C busses in the system.

    The i2c-tools package contains a heterogeneous set of I2C tools to interact with I2C slave devices from userspace. BSP images have i2c-tools packaged by default

Target (Linux)
i2cdetect -l
Expected Output
root@phyboard-electra-am64xx-2:~# i2cdetect -l
i2c-0   i2c             OMAP I2C adapter                        I2C adapter
i2c-1   i2c             OMAP I2C adapter                        I2C adapter
  • Use the “i2cdetect” command to scan the I2C1 bus for devices. This command outputs the address of all devices on the I2C1 bus.

Target (Linux)
i2cdetect -y -r 1
Expected Output
root@phyboard-electra-am64xx-2:~# i2cdetect -y -r 1
    0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
00:          -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- UU -- -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- UU -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --

Note

UU indicates that the device with that particular address is tied to a kernel driver and you will be unable to communicate with the device via i2c commands (i2cset and i2cget).

The detected interfaces should match with the devices connected to I2C1 on the development kit.

Devices Connected to I2C1

Interface

Address (7-bit)

EEPROM

0x51

PCA9533D RGB LED Driver

0x62

Connecting the Accelerometer

  • Now ‘poweroff’ the development kit and connect up the accelerometer before booting the kit back into Linux.

Target (Linux)
poweroff
Connecting I2C Pin Names

I2C Device Pin

Carrier Board Signal

Carrier Board Connector - Pin

VCC

VCC_5V0_SW

X27 - Pin 2

GND

GND

X27 - Pin 9

SDA

X_I2C1_SDA

X27 - Pin 11

SCL

X_I2C1_SCL

X27 - Pin 13

phyCORE-AM64x I2C x27 Pins Location
  • If you run the same i2cdetect command you should be able to confirm that a new device has appeared on the I2C1 bus:

Target (Linux)
i2cdetect -y -r 1
Expected Output
root@phyboard-electra-am64xx-2:~# i2cdetect -y -r 1
    0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
00:          -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- -- -- -- -- -- 1d -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- UU -- -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- UU -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --

Since the accelerometer was simply attached to the bus without any knowledge of it having been provisioned into the Linux device tree the device address comes up as its true address 0x1d as opposed to ‘UU’. This means we can interact with it directly in userspace using the i2cget and i2cset utilities, check out the following userspace driver for bump detection!

Bump Detect Userspace Driver

  • Open a text editor to write a script:

Target (Linux)
cd ~
vi ./bumpDetect.sh

Note

The vi text editor begins in “Command Mode” and you must first hit the ‘i’ key in order to enter “Insert Mode”. Using the arrow keys to navigate, make the necessary changes and then hit ESC to go back to “Command mode”. Now enter “:wq” to write the file and quit.

Pro Tip: Use the right click on your mouse to paste! This will only work if you are in “Insert Mode” first.

  • Enter the following into the text editor and save the file:

bumpDetect.sh
#!/bin/bash

echo Input Sparkfun RedBot-Accelerometer bus:
read -r bus
echo Input Sparkfun RedBot-Accelerometer address:
read -r addy

                                        #This stuff all comes from the MMA8452Q accelerometer datasheet
i2cset -y "$bus" "$addy" 0x2B 0x40      #Reset the accelerometer
i2cset -y "$bus" "$addy" 0x0E 0x02      #Set dynamic range to 8g from default 2g
i2cset -y "$bus" "$addy" 0x2A 0x05      #Enable the device

#Constantly check if there is any change in acceleration in the Z axis
state=$(i2cget -y "$bus" "$addy" 0x05)

while true; do
        temp=$(i2cget -y "$bus" "$addy" 0x05)
        if [ "$state" != "$temp" ];
        then
                echo Bump!
                usleep 200000
                state=$(i2cget -y "$bus" "$addy" 0x05)
        fi
done
  • Change the permissions such that you can execute the script:

Target (Linux)
chmod +x ./bumpDetect.sh
  • Now run the script:

Target (Linux)
./bumpDetect.sh
  • When prompted, enter the bus you connected the device to (which was I2C1) and the address found earlier (the kernel represented this bus as /dev/i2c-1). Both must be given in hexidecimal form!

Example
root@phyboard-electra-am64xx-2:~# ./bumpDetect.sh
Input Sparkfun RedBot-Accelerometer bus:
0x01
Input Sparkfun RedBot-Accelerometer address:
0x1D
  • With the accelerometer resting on the table surface, try tapping the table surface!

    The accelerometer is pretty sensitive so you should be able to tap the table anywhere, and very lightly, to get a bump to register (Note that the example is only polling the Z axis, so tapping the sides of the table will probably not register a bump).

Example Output
root@phyboard-electra-am64xx-2:~# ./bumpDetect.sh
Input Sparkfun RedBot-Accelerometer bus:
0x01
Input Sparkfun RedBot-Accelerometer address:
0x1D
Bump!
Bump!
Bump!
Bump!
Bump!