当前位置:   article > 正文

Linux驱动开发13 SPI驱动_spi_message_add_tail

spi_message_add_tail

与IIC驱动类似,适配器不用我们写,我们只写具体设备驱动

        SPI 驱动框架和 I2C 很类似,都分为主机控制器驱动和设备驱动,主机控制器也就是 SOC的 SPI 控制器接口。比如在裸机篇中的《第二十七章 SPI 实验》,我们编写了 bsp_spi.c bsp_spi.h
这两个文件,这两个文件是 I.MX6U SPI 控制器驱动,我们编写好 SPI 控制器驱动以后就可以直接使用了,不管是什么 SPI 设备, SPI 控制器部分的驱动都是一样,我们的重点就落在了种类繁多的 SPI 设备驱动。  
SPI 设备驱动
        spi 设备驱动也和 i2c 设备驱动也很类似, Linux 内核使用 spi_driver 结构体来表示 spi 设备驱动,我们在编写 SPI 设备驱动的时候需要实现 spi_driver。spi_driver 结构体定义在 include/linux/spi/spi.h 文件中

 SPI 设备和驱动匹配过程

        SPI 设备和驱动的匹配过程是由 SPI 总线来完成的,这点和 platform I2C 等驱动一样, SPI 总线为 spi_bus_type ,定义在 drivers/spi/spi.c 文件中

SPI 设备驱动编写流程

SPI 设备信息描述
1 IO pinctrl 子节点创建与修改
        首先肯定是根据所使用的 IO 来创建或修改 pinctrl 子节点,这个没什么好说的,唯独要注意的就是检查相应的 IO 有没有被其他的设备所使用,如果有的话需要将其删除掉!
2 SPI 设备节点的创建与修改
        采用设备树的情况下,SPI 设备信息描述就通过创建相应的设备子节点来完成,我们可以打开 imx6qdl-sabresd.dtsi 这个设备树头文件
308 & ecspi1 {
309 fsl , spi - num - chipselects = < 1 >;
310 cs - gpios = <& gpio4 9 0 >;
311 pinctrl - names = "default" ;
312 pinctrl - 0 = <& pinctrl_ecspi1 >;
313 status = "okay" ;
314
315 flash : m25p80@0 {
316 #address - cells = < 1 >;
317 #size - cells = < 1 >;
318 compatible = "st,m25p32" ;
319 spi - max - frequency = < 20000000 >;
320 reg = < 0 >;
321 };
322 };

SPI 设备数据收发处理流程 (spi_driver)

        SPI 设备驱动的核心是 spi_driver ,这个我们已经在 62.1.2 小节讲过了。当我们向 Linux 内核注册成功 spi_driver 以后就可以使用 SPI 核心层提供的 API 函数来对设备进行读写操作了。 首先是 spi_transfer 结构体,
603 struct spi_transfer {
604 /* it's ok if tx_buf == rx_buf (right?)
605 * for MicroWire, one buffer must be null
606 * buffers must work with dma_*map_single() calls, unless
607 * spi_message.is_dma_mapped reports a pre-existing mapping
608 */
609 const void * tx_buf ;
610 void * rx_buf ;
611 unsigned len ;
612
613 dma_addr_t tx_dma ;
614 dma_addr_t rx_dma ;
615 struct sg_table tx_sg ;
616 struct sg_table rx_sg ;
617
618 unsigned cs_change : 1 ;
619 unsigned tx_nbits : 3 ;
620 unsigned rx_nbits : 3 ;
621 #define SPI_NBITS_SINGLE 0x01 /* 1bit transfer */
622 #define SPI_NBITS_DUAL 0x02 /* 2bits transfer */
623 #define SPI_NBITS_QUAD 0x04 /* 4bits transfer */
624 u8 bits_per_word ;
625 u16 delay_usecs ;
626 u32 speed_hz ;
627
628 struct list_head transfer_list ;
629 };
spi_transfer 中也就没有发送长度和接收长度之分。
spi_transfer 需要组织成 spi_message spi_message 也是一个结构体
在使用 spi_message 之前需要对其进行初始化, spi_message 初始化函数为 spi_message_init
函数原型如下:
void spi_message_init(struct spi_message *m)
函数参数和返回值含义如下:
m 要初始化的 spi_message
返回值:
spi_message 初始化完成以后需要将 spi_transfer 添加到 spi_message 队列中,这里我们要用到 spi_message_add_tail 函数
spi_message 准备好以后既可以进行数据传输了,数据传输分为同步传输和异步传输,同步
传输会阻塞的等待 SPI 数据传输完成,同步传输函数为 spi_sync
异步传输不会阻塞的等到 SPI 数据传输完成,异步传输需要设置 spi_message 中的 complete成员变量,complete 是一个回调函数,当 SPI 异步传输完成以后此函数就会被调用。 SPI 异步传输函数为 spi_async
注册函数 spi_register_driver , 注销 spi_unregister_driver

  1. pinctrl_ecspi3: icm20608 {
  2. fsl,pins = <
  3. MX6UL_PAD_UART2_TX_DATA__GPIO1_IO20 0x10b0 /* CS */
  4. MX6UL_PAD_UART2_RX_DATA__ECSPI3_SCLK 0x10b1 /* SCLK */
  5. MX6UL_PAD_UART2_RTS_B__ECSPI3_MISO 0x10b1 /* MISO */
  6. MX6UL_PAD_UART2_CTS_B__ECSPI3_MOSI 0x10b1 /* MOSI */
  7. >;
  8. };
  9. &ecspi3 {
  10. fsl,spi-num-chipselects = <1>;
  11. cs-gpios = <&gpio1 20 GPIO_ACTIVE_LOW>; /* cant't use cs-gpios! */
  12. pinctrl-names = "default";
  13. pinctrl-0 = <&pinctrl_ecspi3>;
  14. status = "okay";
  15. spidev: icm20608@0 {
  16. compatible = "alientek,icm20608";
  17. spi-max-frequency = <8000000>;
  18. reg = <0>;
  19. };

C:\Users\Administrator\Desktop\linux-imx-rel_imx_4.1.15_2.1.0_ga\Documentation\devicetree\bindings\spi
NXP官方例程源码中有数据手册

从这节课里我学到了,代码,尤其是linux的驱动源码,官方写的最经典最好用了

  1. #include <linux/types.h>
  2. #include <linux/kernel.h>
  3. #include <linux/delay.h>
  4. #include <linux/ide.h>
  5. #include <linux/init.h>
  6. #include <linux/module.h>
  7. #include <linux/errno.h>
  8. #include <linux/gpio.h>
  9. #include <linux/cdev.h>
  10. #include <linux/device.h>
  11. #include <linux/of_gpio.h>
  12. #include <linux/semaphore.h>
  13. #include <linux/timer.h>
  14. #include <linux/i2c.h>
  15. #include <linux/spi/spi.h>
  16. #include <linux/of.h>
  17. #include <linux/of_address.h>
  18. #include <linux/of_gpio.h>
  19. #include <linux/platform_device.h>
  20. #include <asm/mach/map.h>
  21. #include <asm/uaccess.h>
  22. #include <asm/io.h>
  23. #include "icm20608reg.h"
  24. /***************************************************************
  25. Copyright © ALIENTEK Co., Ltd. 1998-2029. All rights reserved.
  26. 文件名 : icm20608.c
  27. 作者 : 左忠凯
  28. 版本 : V1.0
  29. 描述 : ICM20608 SPI驱动程序
  30. 其他 : 无
  31. 论坛 : www.openedv.com
  32. 日志 : 初版V1.0 2019/9/2 左忠凯创建
  33. ***************************************************************/
  34. #define ICM20608_CNT 1
  35. #define ICM20608_NAME "icm20608"
  36. struct icm20608_dev {
  37. dev_t devid; /* 设备号 */
  38. struct cdev cdev; /* cdev */
  39. struct class *class; /* 类 */
  40. struct device *device; /* 设备 */
  41. struct device_node *nd; /* 设备节点 */
  42. int major; /* 主设备号 */
  43. void *private_data; /* 私有数据 */
  44. signed int gyro_x_adc; /* 陀螺仪X轴原始值 */
  45. signed int gyro_y_adc; /* 陀螺仪Y轴原始值 */
  46. signed int gyro_z_adc; /* 陀螺仪Z轴原始值 */
  47. signed int accel_x_adc; /* 加速度计X轴原始值 */
  48. signed int accel_y_adc; /* 加速度计Y轴原始值 */
  49. signed int accel_z_adc; /* 加速度计Z轴原始值 */
  50. signed int temp_adc; /* 温度原始值 */
  51. };
  52. static struct icm20608_dev icm20608dev;
  53. ///
  54. /*
  55. * @description : 从icm20608读取多个寄存器数据
  56. * @param - dev: icm20608设备
  57. * @param - reg: 要读取的寄存器首地址
  58. * @param - val: 读取到的数据
  59. * @param - len: 要读取的数据长度
  60. * @return : 操作结果
  61. *
  62. * SPI读寄存器
  63. * 内核也提供了spi_read 和 spi_write
  64. */
  65. static int icm20608_read_regs(struct icm20608_dev *dev, u8 reg, void *buf, int len)
  66. {
  67. int ret = -1;
  68. unsigned char txdata[1];
  69. unsigned char * rxdata;
  70. struct spi_message m;
  71. struct spi_transfer *t;
  72. struct spi_device *spi = (struct spi_device *)dev->private_data;
  73. // /* 片选拉低 */
  74. // gpio_set_value(dev->cs_gpio, 0);
  75. /* 构建spi_transfer */
  76. t = kzalloc(sizeof(struct spi_transfer), GFP_KERNEL); /* 申请内存 */
  77. if(!t) {
  78. return -ENOMEM;
  79. }
  80. rxdata = kzalloc(sizeof(char) * len, GFP_KERNEL); /* 申请内存 */
  81. if(!rxdata) {
  82. goto out1;
  83. }
  84. /* 一共发送len+1个字节的数据,第一个字节为
  85. 寄存器首地址,一共要读取len个字节长度的数据,*/
  86. /* 第一步,发送要读取的寄存器的地址 */
  87. txdata[0] = reg | 0x80; /* 写数据的时候首寄存器地址bit8要置1 */
  88. t->tx_buf = txdata; /* 要发送的数据 */
  89. t->rx_buf = rxdata; /* 要读取的数据 */
  90. t->len = len+1; /* t->len=发送的长度+读取的长度 */
  91. spi_message_init(&m); /* 初始化spi_message */
  92. spi_message_add_tail(t, &m);/* 将spi_transfer添加到spi_message队列 */
  93. ret = spi_sync(spi, &m); /* 同步发送 */
  94. if(ret) {
  95. goto out2;
  96. }
  97. memcpy(buf , rxdata+1, len); /* 只需要读取的数据 */
  98. // /* 片选拉高 */
  99. // gpio_set_value(dev->cs_gpio, 1);
  100. out2:
  101. kfree(rxdata); /* 释放内存 */
  102. out1:
  103. kfree(t); /* 释放内存 */
  104. return ret;
  105. }
  106. //============================================================================
  107. // static int icm20608_read_regs(struct icm20608_dev *dev, u8 reg, void *buf, int len)
  108. // {
  109. // u8 data = 0;
  110. // struct spi_device *spi = (struct spi_device *)dev->private_data;
  111. // /* 片选拉低 */
  112. // gpio_set_value(dev->cs_gpio, 0);
  113. // data = reg | 0x80;
  114. // // spi_write 系统自带的写函数
  115. // spi_write(spi,&data, 1);//发送要读取的寄存器地址
  116. // spi_read(spi,buf,len); //读取数据
  117. // /* 片选拉高 */
  118. // gpio_set_value(dev->cs_gpio, 1);
  119. // }
  120. // static s32 icm20608_write_regs(struct icm20608_dev *dev, u8 reg, u8 *buf, u8 len)
  121. // {
  122. // u8 data = 0;
  123. // struct spi_device *spi = (struct spi_device *)dev->private_data;
  124. // /*片选拉低*/
  125. // gpio_set_value(dev->cs_gpio, 0);
  126. // data = reg & ~0x80;
  127. // spi_write(spi, &data, 1);//发送要写的寄存器地址
  128. // spi_write(spi, &data, len);//发送要写的寄存器地址
  129. // /*片选拉高*/
  130. // gpio_set_value(dev->cs_gpio, 1);
  131. // }
  132. //=================================================================================
  133. /*
  134. * @description : 向icm20608多个寄存器写入数据
  135. * @param - dev: icm20608设备
  136. * @param - reg: 要写入的寄存器首地址
  137. * @param - val: 要写入的数据缓冲区
  138. * @param - len: 要写入的数据长度
  139. * @return : 操作结果、
  140. *
  141. * SPI写寄存器
  142. */
  143. static s32 icm20608_write_regs(struct icm20608_dev *dev, u8 reg, u8 *buf, u8 len)
  144. {
  145. int ret = -1;
  146. unsigned char *txdata;
  147. struct spi_message m;
  148. struct spi_transfer *t;
  149. struct spi_device *spi = (struct spi_device *)dev->private_data;
  150. t = kzalloc(sizeof(struct spi_transfer), GFP_KERNEL); /* 申请内存 */
  151. if(!t) {
  152. return -ENOMEM;
  153. }
  154. txdata = kzalloc(sizeof(char)+len, GFP_KERNEL);
  155. if(!txdata) {
  156. goto out1;
  157. }
  158. /* 一共发送len+1个字节的数据,第一个字节为
  159. 寄存器首地址,len为要写入的寄存器的集合,*/
  160. *txdata = reg & ~0x80; /* 写数据的时候首寄存器地址bit8要清零 */
  161. memcpy(txdata+1, buf, len); /* 把len个寄存器拷贝到txdata里,等待发送 */
  162. t->tx_buf = txdata; /* 要发送的数据 */
  163. t->len = len+1; /* t->len=发送的长度+读取的长度 */
  164. spi_message_init(&m); /* 初始化spi_message */
  165. spi_message_add_tail(t, &m);/* 将spi_transfer添加到spi_message队列 */
  166. ret = spi_sync(spi, &m); /* 同步发送 */
  167. if(ret) {
  168. goto out2;
  169. }
  170. // 这一套是左工一开始以为cs-gpios是硬件片选所以没有用
  171. // 最后发现cs-gpio是软件片选,所以用了,很好用
  172. out2:
  173. kfree(txdata); /* 释放内存 */
  174. out1:
  175. kfree(t); /* 释放内存 */
  176. return ret;
  177. }
  178. /*
  179. * @description : 读取icm20608指定寄存器值,读取一个寄存器
  180. * @param - dev: icm20608设备
  181. * @param - reg: 要读取的寄存器
  182. * @return : 读取到的寄存器值
  183. */
  184. static unsigned char icm20608_read_onereg(struct icm20608_dev *dev, u8 reg)
  185. {
  186. u8 data = 0;
  187. icm20608_read_regs(dev, reg, &data, 1);
  188. return data;
  189. }
  190. /*
  191. * @description : 向icm20608指定寄存器写入指定的值,写一个寄存器
  192. * @param - dev: icm20608设备
  193. * @param - reg: 要写的寄存器
  194. * @param - data: 要写入的值
  195. * @return : 无
  196. */
  197. static void icm20608_write_onereg(struct icm20608_dev *dev, u8 reg, u8 value)
  198. {
  199. u8 buf = value;
  200. icm20608_write_regs(dev, reg, &buf, 1);
  201. }
  202. /*
  203. * @description : 读取ICM20608的数据,读取原始数据,包括三轴陀螺仪、
  204. * : 三轴加速度计和内部温度。
  205. * @param - dev : ICM20608设备
  206. * @return : 无。
  207. */
  208. void icm20608_readdata(struct icm20608_dev *dev)
  209. {
  210. unsigned char data[14] = { 0 };
  211. icm20608_read_regs(dev, ICM20_ACCEL_XOUT_H, data, 14);
  212. dev->accel_x_adc = (signed short)((data[0] << 8) | data[1]);
  213. dev->accel_y_adc = (signed short)((data[2] << 8) | data[3]);
  214. dev->accel_z_adc = (signed short)((data[4] << 8) | data[5]);
  215. dev->temp_adc = (signed short)((data[6] << 8) | data[7]);
  216. dev->gyro_x_adc = (signed short)((data[8] << 8) | data[9]);
  217. dev->gyro_y_adc = (signed short)((data[10] << 8) | data[11]);
  218. dev->gyro_z_adc = (signed short)((data[12] << 8) | data[13]);
  219. }
  220. ///
  221. /*
  222. * @description : 打开设备
  223. * @param - inode : 传递给驱动的inode
  224. * @param - filp : 设备文件,file结构体有个叫做pr似有ate_data的成员变量
  225. * 一般在open的时候将private_data似有向设备结构体。
  226. * @return : 0 成功;其他 失败
  227. */
  228. static int icm20608_open(struct inode *inode, struct file *filp)
  229. {
  230. filp->private_data = &icm20608dev; /* 设置私有数据 */
  231. return 0;
  232. }
  233. /*
  234. * @description : 从设备读取数据
  235. * @param - filp : 要打开的设备文件(文件描述符)
  236. * @param - buf : 返回给用户空间的数据缓冲区
  237. * @param - cnt : 要读取的数据长度
  238. * @param - offt : 相对于文件首地址的偏移
  239. * @return : 读取的字节数,如果为负值,表示读取失败
  240. */
  241. static ssize_t icm20608_read(struct file *filp, char __user *buf, size_t cnt, loff_t *off)
  242. {
  243. signed int data[7];
  244. long err = 0;
  245. struct icm20608_dev *dev = (struct icm20608_dev *)filp->private_data;
  246. icm20608_readdata(dev);
  247. data[0] = dev->gyro_x_adc;
  248. data[1] = dev->gyro_y_adc;
  249. data[2] = dev->gyro_z_adc;
  250. data[3] = dev->accel_x_adc;
  251. data[4] = dev->accel_y_adc;
  252. data[5] = dev->accel_z_adc;
  253. data[6] = dev->temp_adc;
  254. err = copy_to_user(buf, data, sizeof(data));
  255. return 0;
  256. }
  257. /*
  258. * @description : 关闭/释放设备
  259. * @param - filp : 要关闭的设备文件(文件描述符)
  260. * @return : 0 成功;其他 失败
  261. */
  262. static int icm20608_release(struct inode *inode, struct file *filp)
  263. {
  264. return 0;
  265. }
  266. /* icm20608操作函数 */
  267. static const struct file_operations icm20608_ops = {
  268. .owner = THIS_MODULE,
  269. .open = icm20608_open,
  270. .read = icm20608_read,
  271. .release = icm20608_release,
  272. };
  273. ///
  274. /*
  275. * ICM20608内部寄存器初始化函数 (初始化芯片)
  276. * @param : 无
  277. * @return : 无
  278. * 需要初始化icm20608芯片,然后从里面读取原始数据!
  279. * 这个过程就要用到如何使用linux内的SPI驱动API来读写 ICM20608
  280. */
  281. void icm20608_reginit(void)
  282. {
  283. u8 value = 0;
  284. icm20608_write_onereg(&icm20608dev, ICM20_PWR_MGMT_1, 0x80); //复位。复位后为0x40,睡眠模式
  285. mdelay(50);
  286. icm20608_write_onereg(&icm20608dev, ICM20_PWR_MGMT_1, 0x01); //关闭睡眠,自动选择时钟
  287. mdelay(50);
  288. value = icm20608_read_onereg(&icm20608dev, ICM20_WHO_AM_I);
  289. printk("ICM20608 ID = %#X\r\n", value);
  290. icm20608_write_onereg(&icm20608dev, ICM20_SMPLRT_DIV, 0x00); /* 输出速率是内部采样率 */
  291. icm20608_write_onereg(&icm20608dev, ICM20_GYRO_CONFIG, 0x18); /* 陀螺仪±2000dps量程 */
  292. icm20608_write_onereg(&icm20608dev, ICM20_ACCEL_CONFIG, 0x18); /* 加速度计±16G量程 */
  293. icm20608_write_onereg(&icm20608dev, ICM20_CONFIG, 0x04); /* 陀螺仪低通滤波BW=20Hz */
  294. icm20608_write_onereg(&icm20608dev, ICM20_ACCEL_CONFIG2, 0x04); /* 加速度计低通滤波BW=21.2Hz */
  295. icm20608_write_onereg(&icm20608dev, ICM20_PWR_MGMT_2, 0x00); /* 打开加速度计和陀螺仪所有轴 */
  296. icm20608_write_onereg(&icm20608dev, ICM20_LP_MODE_CFG, 0x00); /* 关闭低功耗 */
  297. icm20608_write_onereg(&icm20608dev, ICM20_FIFO_EN, 0x00); /* 关闭FIFO */
  298. }
  299. ///
  300. /*
  301. * @description : spi驱动的probe函数,当驱动与
  302. * 设备匹配以后此函数就会执行
  303. * @param - client : i2c设备
  304. * @param - id : i2c设备ID
  305. *
  306. */
  307. static int icm20608_probe(struct spi_device *spi)
  308. {
  309. /* 1、构建设备号 */
  310. if (icm20608dev.major) {
  311. icm20608dev.devid = MKDEV(icm20608dev.major, 0);
  312. register_chrdev_region(icm20608dev.devid, ICM20608_CNT, ICM20608_NAME);
  313. } else {
  314. alloc_chrdev_region(&icm20608dev.devid, 0, ICM20608_CNT, ICM20608_NAME);
  315. icm20608dev.major = MAJOR(icm20608dev.devid);
  316. }
  317. /* 2、注册设备 */
  318. cdev_init(&icm20608dev.cdev, &icm20608_ops);
  319. cdev_add(&icm20608dev.cdev, icm20608dev.devid, ICM20608_CNT);
  320. /* 3、创建类 */
  321. icm20608dev.class = class_create(THIS_MODULE, ICM20608_NAME);
  322. if (IS_ERR(icm20608dev.class)) {
  323. return PTR_ERR(icm20608dev.class);
  324. }
  325. /* 4、创建设备 */
  326. icm20608dev.device = device_create(icm20608dev.class, NULL, icm20608dev.devid, NULL, ICM20608_NAME);
  327. if (IS_ERR(icm20608dev.device)) {
  328. return PTR_ERR(icm20608dev.device);
  329. }
  330. /* 获取片选引脚 */
  331. /*
  332. icm20608dev.nd = of_get_parent(spi->dev.of_node);
  333. icm20608dev.cs_gpio = of_get_named+gpio(icm20608dev.nd,"cs=gpio",0);
  334. if(icm20608dev.cs_gpio < 0){
  335. pritnk("can't get cs-gpio\r\n");
  336. goto fail_gpio;
  337. }
  338. ret = gpio_request(icm20608dev.cs_gpio,"cs");
  339. if(ret < 0)
  340. {
  341. printk("cs_gpio request failed!\r\n");
  342. }
  343. ret = gpio_direction_output(icm20608dev.cs_gpio, 1); //默认高电平
  344. */
  345. /*初始化spi_device */
  346. spi->mode = SPI_MODE_0; /*MODE0,CPOL=0,CPHA=0*/
  347. spi_setup(spi);
  348. /* 设置icm20608dev的私有数据 */
  349. icm20608dev.private_data = spi;
  350. /* 初始化ICM20608内部寄存器“芯片” */
  351. icm20608_reginit();
  352. return 0;
  353. }
  354. /*
  355. * @description : i2c驱动的remove函数,移除i2c驱动的时候此函数会执行
  356. * @param - client : i2c设备
  357. * @return : 0,成功;其他负值,失败
  358. */
  359. static int icm20608_remove(struct spi_device *spi)
  360. {
  361. /* 删除设备 */
  362. cdev_del(&icm20608dev.cdev);
  363. unregister_chrdev_region(icm20608dev.devid, ICM20608_CNT);
  364. /* 注销掉类和设备 */
  365. device_destroy(icm20608dev.class, icm20608dev.devid);
  366. class_destroy(icm20608dev.class);
  367. return 0;
  368. // /* 释放片选 */
  369. // gpio_free(icm20608dev.cs_gpio);
  370. // return ret;
  371. }
  372. /* 传统匹配方式ID列表 */
  373. static const struct spi_device_id icm20608_id[] = {
  374. {"alientek,icm20608", 0},
  375. {}
  376. };
  377. /* 设备树匹配列表 */
  378. static const struct of_device_id icm20608_of_match[] = {
  379. { .compatible = "alientek,icm20608" },
  380. { /* Sentinel */ }
  381. };
  382. /* SPI驱动结构体 */
  383. static struct spi_driver icm20608_driver = {
  384. .probe = icm20608_probe,
  385. .remove = icm20608_remove,
  386. .driver = {
  387. .owner = THIS_MODULE,
  388. .name = "icm20608",
  389. .of_match_table = icm20608_of_match,
  390. },
  391. .id_table = icm20608_id,
  392. };
  393. ///
  394. /*
  395. * @description : 驱动入口函数
  396. * @param : 无
  397. * @return : 无
  398. */
  399. static int __init icm20608_init(void)
  400. {
  401. return spi_register_driver(&icm20608_driver);
  402. }
  403. /*
  404. * @description : 驱动出口函数
  405. * @param : 无
  406. * @return : 无
  407. */
  408. static void __exit icm20608_exit(void)
  409. {
  410. spi_unregister_driver(&icm20608_driver);
  411. }
  412. module_init(icm20608_init);
  413. module_exit(icm20608_exit);
  414. MODULE_LICENSE("GPL");
  415. MODULE_AUTHOR("zuozhongkai");
  1. #ifndef ICM20608_H
  2. #define ICM20608_H
  3. /***************************************************************
  4. Copyright © ALIENTEK Co., Ltd. 1998-2029. All rights reserved.
  5. 文件名 : icm20608reg.h
  6. 作者 : 左忠凯
  7. 版本 : V1.0
  8. 描述 : ICM20608寄存器地址描述头文件
  9. 其他 : 无
  10. 论坛 : www.openedv.com
  11. 日志 : 初版V1.0 2019/9/2 左忠凯创建
  12. ***************************************************************/
  13. #define ICM20608G_ID 0XAF /* ID值 */
  14. #define ICM20608D_ID 0XAE /* ID值 */
  15. /* ICM20608寄存器
  16. *复位后所有寄存器地址都为0,除了
  17. *Register 107(0X6B) Power Management 1 = 0x40
  18. *Register 117(0X75) WHO_AM_I = 0xAF或0xAE
  19. */
  20. /* 陀螺仪和加速度自测(出产时设置,用于与用户的自检输出值比较) */
  21. #define ICM20_SELF_TEST_X_GYRO 0x00
  22. #define ICM20_SELF_TEST_Y_GYRO 0x01
  23. #define ICM20_SELF_TEST_Z_GYRO 0x02
  24. #define ICM20_SELF_TEST_X_ACCEL 0x0D
  25. #define ICM20_SELF_TEST_Y_ACCEL 0x0E
  26. #define ICM20_SELF_TEST_Z_ACCEL 0x0F
  27. /* 陀螺仪静态偏移 */
  28. #define ICM20_XG_OFFS_USRH 0x13
  29. #define ICM20_XG_OFFS_USRL 0x14
  30. #define ICM20_YG_OFFS_USRH 0x15
  31. #define ICM20_YG_OFFS_USRL 0x16
  32. #define ICM20_ZG_OFFS_USRH 0x17
  33. #define ICM20_ZG_OFFS_USRL 0x18
  34. #define ICM20_SMPLRT_DIV 0x19
  35. #define ICM20_CONFIG 0x1A
  36. #define ICM20_GYRO_CONFIG 0x1B
  37. #define ICM20_ACCEL_CONFIG 0x1C
  38. #define ICM20_ACCEL_CONFIG2 0x1D
  39. #define ICM20_LP_MODE_CFG 0x1E
  40. #define ICM20_ACCEL_WOM_THR 0x1F
  41. #define ICM20_FIFO_EN 0x23
  42. #define ICM20_FSYNC_INT 0x36
  43. #define ICM20_INT_PIN_CFG 0x37
  44. #define ICM20_INT_ENABLE 0x38
  45. #define ICM20_INT_STATUS 0x3A
  46. /* 加速度输出 */
  47. #define ICM20_ACCEL_XOUT_H 0x3B
  48. #define ICM20_ACCEL_XOUT_L 0x3C
  49. #define ICM20_ACCEL_YOUT_H 0x3D
  50. #define ICM20_ACCEL_YOUT_L 0x3E
  51. #define ICM20_ACCEL_ZOUT_H 0x3F
  52. #define ICM20_ACCEL_ZOUT_L 0x40
  53. /* 温度输出 */
  54. #define ICM20_TEMP_OUT_H 0x41
  55. #define ICM20_TEMP_OUT_L 0x42
  56. /* 陀螺仪输出 */
  57. #define ICM20_GYRO_XOUT_H 0x43
  58. #define ICM20_GYRO_XOUT_L 0x44
  59. #define ICM20_GYRO_YOUT_H 0x45
  60. #define ICM20_GYRO_YOUT_L 0x46
  61. #define ICM20_GYRO_ZOUT_H 0x47
  62. #define ICM20_GYRO_ZOUT_L 0x48
  63. #define ICM20_SIGNAL_PATH_RESET 0x68
  64. #define ICM20_ACCEL_INTEL_CTRL 0x69
  65. #define ICM20_USER_CTRL 0x6A
  66. #define ICM20_PWR_MGMT_1 0x6B
  67. #define ICM20_PWR_MGMT_2 0x6C
  68. #define ICM20_FIFO_COUNTH 0x72
  69. #define ICM20_FIFO_COUNTL 0x73
  70. #define ICM20_FIFO_R_W 0x74
  71. #define ICM20_WHO_AM_I 0x75
  72. /* 加速度静态偏移 */
  73. #define ICM20_XA_OFFSET_H 0x77
  74. #define ICM20_XA_OFFSET_L 0x78
  75. #define ICM20_YA_OFFSET_H 0x7A
  76. #define ICM20_YA_OFFSET_L 0x7B
  77. #define ICM20_ZA_OFFSET_H 0x7D
  78. #define ICM20_ZA_OFFSET_L 0x7E
  79. #endif
  1. #include "stdio.h"
  2. #include "unistd.h"
  3. #include "sys/types.h"
  4. #include "sys/stat.h"
  5. #include "sys/ioctl.h"
  6. #include "fcntl.h"
  7. #include "stdlib.h"
  8. #include "string.h"
  9. #include <poll.h>
  10. #include <sys/select.h>
  11. #include <sys/time.h>
  12. #include <signal.h>
  13. #include <fcntl.h>
  14. /***************************************************************
  15. Copyright © ALIENTEK Co., Ltd. 1998-2029. All rights reserved.
  16. 文件名 : icm20608App.c
  17. 作者 : 左忠凯
  18. 版本 : V1.0
  19. 描述 : icm20608设备测试APP。
  20. 其他 : 无
  21. 使用方法 :./icm20608App /dev/icm20608
  22. 论坛 : www.openedv.com
  23. 日志 : 初版V1.0 2019/9/20 左忠凯创建
  24. ***************************************************************/
  25. /*
  26. * @description : main主程序
  27. * @param - argc : argv数组元素个数
  28. * @param - argv : 具体参数
  29. * @return : 0 成功;其他 失败
  30. */
  31. int main(int argc, char *argv[])
  32. {
  33. int fd;
  34. char *filename;
  35. signed int databuf[7];
  36. unsigned char data[14];
  37. signed int gyro_x_adc, gyro_y_adc, gyro_z_adc;
  38. signed int accel_x_adc, accel_y_adc, accel_z_adc;
  39. signed int temp_adc;
  40. float gyro_x_act, gyro_y_act, gyro_z_act;
  41. float accel_x_act, accel_y_act, accel_z_act;
  42. float temp_act;
  43. int ret = 0;
  44. if (argc != 2) {
  45. printf("Error Usage!\r\n");
  46. return -1;
  47. }
  48. filename = argv[1];
  49. fd = open(filename, O_RDWR);
  50. if(fd < 0) {
  51. printf("can't open file %s\r\n", filename);
  52. return -1;
  53. }
  54. while (1) {
  55. ret = read(fd, databuf, sizeof(databuf));
  56. if(ret == 0) { /* 数据读取成功 */
  57. gyro_x_adc = databuf[0];
  58. gyro_y_adc = databuf[1];
  59. gyro_z_adc = databuf[2];
  60. accel_x_adc = databuf[3];
  61. accel_y_adc = databuf[4];
  62. accel_z_adc = databuf[5];
  63. temp_adc = databuf[6];
  64. /* 计算实际值 */
  65. gyro_x_act = (float)(gyro_x_adc) / 16.4;
  66. gyro_y_act = (float)(gyro_y_adc) / 16.4;
  67. gyro_z_act = (float)(gyro_z_adc) / 16.4;
  68. accel_x_act = (float)(accel_x_adc) / 2048;
  69. accel_y_act = (float)(accel_y_adc) / 2048;
  70. accel_z_act = (float)(accel_z_adc) / 2048;
  71. temp_act = ((float)(temp_adc) - 25 ) / 326.8 + 25;
  72. printf("\r\n原始值:\r\n");
  73. printf("gx = %d, gy = %d, gz = %d\r\n", gyro_x_adc, gyro_y_adc, gyro_z_adc);
  74. printf("ax = %d, ay = %d, az = %d\r\n", accel_x_adc, accel_y_adc, accel_z_adc);
  75. printf("temp = %d\r\n", temp_adc);
  76. printf("实际值:");
  77. printf("act gx = %.2f°/S, act gy = %.2f°/S, act gz = %.2f°/S\r\n", gyro_x_act, gyro_y_act, gyro_z_act);
  78. printf("act ax = %.2fg, act ay = %.2fg, act az = %.2fg\r\n", accel_x_act, accel_y_act, accel_z_act);
  79. printf("act temp = %.2f°C\r\n", temp_act);
  80. }
  81. usleep(100000); /*100ms */
  82. }
  83. close(fd); /* 关闭文件 */
  84. return 0;
  85. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/205672
推荐阅读
相关标签
  

闽ICP备14008679号