write()到i2c设备:不允许操作

时间:2011-03-04 15:46:34

标签: c linux i2c

所以我有2个PCA9555(16通道数字I / O)芯片连接到运行Linux over i2c的小型嵌入式设备。 PCA9555器件具有7位地址0100000和0100001。

当我打开电路板时,我会跑:

# modprobe i2c-i801
# modprobe i2c-dev
# i2cdetect -l
i2c-0  smbus    SMBus I801 adapter at 0500    SMBus adapter
# i2cdump -y -r 0
     0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
00:          -- -- -- -- -- -- -- -- -- -- -- -- --
... (Same for every line)
70: -- -- -- -- -- -- --
# dmesg|tail
i801_smbus 0000:00:1f.3 Transaction timeout
... (For every '--' in i2cdump, one of these errors outputted)
i801_smbus 0000:00:1f.3 Transaction timeout

然后我尝试编写一个简单的程序来设置第一个PCA9555芯片上的所有引脚输出高电平:

char *file;
unsigned char buf[3];
int addr, fd;

file = "/dev/i2c-0";
addr = 0x20; /* 0100000 */

if((fd = open(file, O_RDWR)) < 0){
  err(1, "open()");
}

if(ioctl(fd, I2C_SLAVE, addr) < 0){ /* also tried I2C_SLAVE_FORCE */
  err(1, "ioctl()");
}

/* Set all digital I/Os to output */
buf[0] = 6;
buf[1] = 0x00;
buf[2] = 0x00;

if(write(fd, buf, 3) != 3){
  err(1, "write() 1");
}

/* Set all outputs high */
buf[0] = 2;
buf[1] = 0xFF;
buf[2] = 0xFF;

if(write(fd, buf, 3) != 3){
  err(1, "write() 2");
}

return 0;

运行此命令返回:

# ./i2c
./i2c: write() 1: Operation not supported

所以我真的不明白我做错了什么。假设硬件接线正确,我从哪里开始?

1 个答案:

答案 0 :(得分:2)

i801适配器仅支持SMBUS传输,Linux i2c核心不支持SMBUS适配器上的任意写入调用。您需要使用i2c_smbus_write_word_datakernel documentation没有详细说明,但这就是它建议使用SMBUS命令的原因。