uboot 的i2c读写,i2c_read(u_int8_t chip, u_int32_t addr, int alen, u_int8_t *buf, int len),u-boot,i2c_write

【转帖请注明出处:blog.csdn.net/lanmanck】

看格式,介绍参数好了:

int i2c_read(u_int8_t chip, //芯片的i2c地址,不包含读写位

u_int32_t addr, //芯片内的读写地址,比如寄存器地址

int alen, //这个要看代码才知道是地址的长度。比如有的flash比较大就有16位地址。

              //uboot支持32位地址,不过要看驱动支不支持。0=8bit,1=16bit,2=32bit地址长度

u_int8_t *buf, //数据

int len)            //数据长度

 

通过代码可以看到,addr是在alen!=0的情况下采用的,所以如果只是读写8位地址的芯片,addr是没有用的。因此在读取之前可能需要用i2c_write先写一个寄存器地址,然后再调用i2c_read进行读取。

你可能感兴趣的:(c,Flash)