Linux下spi驱动开发

转载至:http://www.embedu.org/Column/Column367.htm

作者:刘洪涛,华清远见嵌入式学院讲师。

一、概述

基于子系统去开发驱动程序已经是linux内核中普遍的做法了。前面写过基于I2C子系 统的驱动开发。本文介绍另外一种常用总线SPI的开发方法。SPI子系统的开发和I2C有很多的相似性,大家可以对比学习。本主题分为两个部分叙述,第一 部分介绍基于SPI子系统开发的理论框架;第二部分以华清远见教学平台FS_S5PC100上的M25P10芯片为例(内核版本2.6.29),编写一个 SPI驱动程序实例。

二、SPI总线协议简介

介绍驱动开发前,需要先熟悉下SPI通讯协议中的几个关键的地方,后面在编写驱动时,需要考虑相关因素。

SPI总线由MISO(串行数据输入)、MOSI(串行数据输出)、SCK(串行移位时钟)、CS(使能信号)4个信号线组成。如FS_S5PC100上的M25P10芯片接线为:

上图中M25P10的D脚为它的数据输入脚,Q为数据输出脚,C为时钟脚。

SPI常用四种数据传输模式,主要差别在于:输出串行同步时钟极性(CPOL)和相位 (CPHA)可以进行配置。如果CPOL= 0,串行同步时钟的空闲状态为低电平;如果CPOL= 1,串行同步时钟的空闲状态为高电平。如果CPHA= 0,在串行同步时钟的前沿(上升或下降)数据被采样;如果CPHA = 1,在串行同步时钟的后沿(上升或下降)数据被采样。

这四种模式中究竟选择哪种模式取决于设备。如M25P10的手册中明确它可以支持的两种模式为:CPOL=0 CPHA=0  和 CPOL=1 CPHA=1

三、linux下SPI驱动开发

首先明确SPI驱动层次,如下图:

我们以上面的这个图为思路

1、 Platform bus

Platform bus对应的结构是platform_bus_type,这个内核开始就定义好的。我们不需要定义。

2、Platform_device

SPI控制器对应platform_device的定义方式,同样以S5PC100中的SPI控制器为例,参看arch/arm/plat-s5pc1xx/dev-spi.c文件

点击(此处)折叠或打开

  1. struct platform_device s3c_device_spi0 = {
  2. .name = "s3c64xx-spi", //名称,要和Platform_driver匹配
  3. .id = 0, //第0个控制器,S5PC100中有3个控制器
  4. .num_resources = ARRAY_SIZE(s5pc1xx_spi0_resource), //占用资源的种类
  5. .resource = s5pc1xx_spi0_resource, //指向资源结构数组的指针
  6. .dev = {
  7. .dma_mask = &spi_dmamask, //dma寻址范围
  8. .coherent_dma_mask = DMA_BIT_MASK(32), //可以通过关闭cache等措施保证一致性的dma寻址范围
  9. .platform_data = &s5pc1xx_spi0_pdata, //特殊的平台数据,参看后文
  10. },
  11. };
  12. static struct s3c64xx_spi_cntrlr_info s5pc1xx_spi0_pdata = {
  13. .cfg_gpio = s5pc1xx_spi_cfg_gpio, //用于控制器管脚的IO配置
  14. .fifo_lvl_mask = 0x7f,
  15. .rx_lvl_offset = 13,
  16. };
  17. static int s5pc1xx_spi_cfg_gpio(struct platform_device *pdev)
  18. {
  19. switch (pdev->id) {
  20. case 0:
  21. s3c_gpio_cfgpin(S5PC1XX_GPB(0), S5PC1XX_GPB0_SPI_MISO0);
  22. s3c_gpio_cfgpin(S5PC1XX_GPB(1), S5PC1XX_GPB1_SPI_CLK0);
  23. s3c_gpio_cfgpin(S5PC1XX_GPB(2), S5PC1XX_GPB2_SPI_MOSI0);
  24. s3c_gpio_setpull(S5PC1XX_GPB(0), S3C_GPIO_PULL_UP);
  25. s3c_gpio_setpull(S5PC1XX_GPB(1), S3C_GPIO_PULL_UP);
  26. s3c_gpio_setpull(S5PC1XX_GPB(2), S3C_GPIO_PULL_UP);
  27. break;
  28. case 1:
  29. s3c_gpio_cfgpin(S5PC1XX_GPB(4), S5PC1XX_GPB4_SPI_MISO1);
  30. s3c_gpio_cfgpin(S5PC1XX_GPB(5), S5PC1XX_GPB5_SPI_CLK1);
  31. s3c_gpio_cfgpin(S5PC1XX_GPB(6), S5PC1XX_GPB6_SPI_MOSI1);
  32. s3c_gpio_setpull(S5PC1XX_GPB(4), S3C_GPIO_PULL_UP);
  33. s3c_gpio_setpull(S5PC1XX_GPB(5), S3C_GPIO_PULL_UP);
  34. s3c_gpio_setpull(S5PC1XX_GPB(6), S3C_GPIO_PULL_UP);
  35. break;
  36. case 2:
  37. s3c_gpio_cfgpin(S5PC1XX_GPG3(0), S5PC1XX_GPG3_0_SPI_CLK2);
  38. s3c_gpio_cfgpin(S5PC1XX_GPG3(2), S5PC1XX_GPG3_2_SPI_MISO2);
  39. s3c_gpio_cfgpin(S5PC1XX_GPG3(3), S5PC1XX_GPG3_3_SPI_MOSI2);
  40. s3c_gpio_setpull(S5PC1XX_GPG3(0), S3C_GPIO_PULL_UP);
  41. s3c_gpio_setpull(S5PC1XX_GPG3(2), S3C_GPIO_PULL_UP);
  42. s3c_gpio_setpull(S5PC1XX_GPG3(3), S3C_GPIO_PULL_UP);
  43. break;
  44. default:
  45. dev_err(&pdev->dev, "Invalid SPI Controller number!");
  46. return -EINVAL;
  47. }

3、Platform_driver

再看platform_driver,参看drivers/spi/spi_s3c64xx.c文件

点击(此处)折叠或打开

  1. static struct platform_driver s3c64xx_spi_driver = {
  2. .driver = {
  3. .name = "s3c64xx-spi", //名称,和platform_device对应
  4. .owner = THIS_MODULE,
  5. },
  6. .remove = s3c64xx_spi_remove,
  7. .suspend = s3c64xx_spi_suspend,
  8. .resume = s3c64xx_spi_resume,
  9. };
  10. platform_driver_probe(&s3c64xx_spi_driver, s3c64xx_spi_probe);//注册s3c64xx_spi_driver

和平台中注册的platform_device匹配后,调用
s3c64xx_spi_probe。然后根据传入的platform_device参数,构建一个用于描述SPI控制器的结构体spi_master,
并注册。spi_register_master(master)。后续注册的spi_device需要选定自己的spi_master,并利用
spi_master提供的传输功能传输spi数据。

和I2C类似,SPI也有一个描述控制器的对象叫spi_master。其主要成员是主机控制器的序号(系统中可能存在多个SPI主机控制器)、片选数量、SPI模式和时钟设置用到的函数、数据传输用到的函数等。

点击(此处)折叠或打开

  1. struct spi_master {
  2. struct device dev;
  3. s16 bus_num; //表示是SPI主机控制器的编号。由平台代码决定
  4. u16 num_chipselect; //控制器支持的片选数量,即能支持多少个spi设备
  5. int (*setup)(struct spi_device *spi); //针对设备设置SPI的工作时钟及数据传输模式等。在spi_add_device函数中调用。
  6. int (*transfer)(struct spi_device *spi,
  7. struct spi_message *mesg); //实现数据的双向传输,可能会睡眠
  8. void (*cleanup)(struct spi_device *spi); //注销时调用
  9. };

4、Spi bus

Spi总线对应的总线类型为spi_bus_type,在内核的drivers/spi/spi.c中定义

点击(此处)折叠或打开

  1. struct bus_type spi_bus_type = {
  2. .name = "spi",
  3. .dev_attrs = spi_dev_attrs,
  4. .match = spi_match_device,
  5. .uevent = spi_uevent,
  6. .suspend = spi_suspend,
  7. .resume = spi_resume,
  8. };

对应的匹配规则是(高版本中的匹配规则会稍有变化,引入了id_table,可以匹配多个spi设备名称):

点击(此处)折叠或打开

  1. static int spi_match_device(struct device *dev, struct device_driver *drv)
  2. {
  3. const struct spi_device *spi = to_spi_device(dev);
  4. return strcmp(spi->modalias, drv->name) == 0;
  5. }

5、spi_device

下面该讲到spi_device的构建与注册了。spi_device对应的含义是挂接在spi总线上的一个设备,所以描述它的时候应该明确它自身的设备特性、传输要求、及挂接在哪个总线上。

点击(此处)折叠或打开

  1. static struct spi_board_info s3c_spi_devs[] __initdata = {
  2. {
  3. .modalias = "m25p10",
  4. .mode = SPI_MODE_0, //CPOL=0, CPHA=0 此处选择具体数据传输模式
  5. .max_speed_hz = 10000000, //最大的spi时钟频率
  6. /* Connected to SPI-0 as 1st Slave */
  7. .bus_num = 0, //设备连接在spi控制器0上
  8. .chip_select = 0, //片选线号,在S5PC100的控制器驱动中没有使用它作为片选的依据,而是选择了下文controller_data里的方法。
  9. .controller_data = &smdk_spi0_csi[0],
  10. },
  11. };
  12. static struct s3c64xx_spi_csinfo smdk_spi0_csi[] = {
  13. [0] = {
  14. .set_level = smdk_m25p10_cs_set_level,
  15. .fb_delay = 0x3,
  16. },
  17. };
  18. static void smdk_m25p10_cs_set_level(int high) //spi控制器会用这个方法设置cs
  19. {
  20. u32 val;
  21. val = readl(S5PC1XX_GPBDAT);
  22. if (high)
  23. val |= (1<<3);
  24. else
  25. val &= ~(1<<3);
  26. writel(val, S5PC1XX_GPBDAT);
  27. }
  28. spi_register_board_info(s3c_spi_devs, ARRAY_SIZE(s3c_spi_devs));//注册spi_board_info。这个代码会把spi_board_info注册要链表board_list上。

事实上上文提到的spi_master的注册会在spi_register_board_info之后,spi_master注册的过程中会调用scan_boardinfo扫描board_list,找到挂接在它上面的spi设备,然后创建并注册spi_device。

点击(此处)折叠或打开

  1. static void scan_boardinfo(struct spi_master *master)
  2. {
  3. struct boardinfo *bi;
  4. mutex_lock(&board_lock);
  5. list_for_each_entry(bi, &board_list, list) {
  6. struct spi_board_info *chip = bi->board_info;
  7. unsigned n;
  8. for (n = bi->n_board_info; n > 0; n--, chip++) {
  9. if (chip->bus_num != master->bus_num)
  10. continue;
  11. /* NOTE: this relies on spi_new_device to
  12. * issue diagnostics when given bogus inputs
  13. */
  14. (void) spi_new_device(master, chip); //创建并注册了spi_device
  15. }
  16. }
  17. mutex_unlock(&board_lock);
  18. }

6、spi_driver

本文先以linux内核中的/driver/mtd/devices/m25p80.c驱动为参考。

点击(此处)折叠或打开

  1. static struct spi_driver m25p80_driver = { //spi_driver的构建
  2. .driver = {
  3. .name = "m25p80",
  4. .bus = &spi_bus_type,
  5. .owner = THIS_MODULE,
  6. },
  7. .probe = m25p_probe,
  8. .remove = __devexit_p(m25p_remove),
  9. */
  10. };
  11. spi_register_driver(&m25p80_driver);//spi driver的注册
  12. 在有匹配的spi device时,会调用m25p_probe
  13. static int __devinit m25p_probe(struct spi_device *spi)
  14. {
  15. ……
  16. }

根据传入的spi_device参数,可以找到对应的spi_master。接下来就可
以利用spi子系统为我们完成数据交互了。可以参看m25p80_read函数。要完成传输,先理解下面几个结构的含义:(这两个结构的定义及详细注释参
见include/linux/spi/spi.h)

spi_message:描述一次完整的传输,即cs信号从高->底->高的传输
        spi_transfer:多个spi_transfer够成一个spi_message
                举例说明:m25p80的读过程如下图

可以分解为两个spi_ transfer一个是写命令,另一个是读数据。具体实现参见m25p80.c中的m25p80_read函数。下面内容摘取之此函数。

点击(此处)折叠或打开

  1. struct spi_transfer t[2]; //定义了两个spi_transfer
  2. struct spi_message m; //定义了两个spi_message
  3. spi_message_init(&m); //初始化其transfers链表
  4. t[0].tx_buf = flash->command;
  5. t[0].len = CMD_SIZE + FAST_READ_DUMMY_BYTE; //定义第一个transfer的写指针和长度
  6. spi_message_add_tail(&t[0], &m); //添加到spi_message
  7. t[1].rx_buf = buf;
  8. t[1].len = len; //定义第二个transfer的读指针和长度
  9. spi_message_add_tail(&t[1], &m); //添加到spi_message
  10. flash->command[0] = OPCODE_READ;
  11. flash->command[1] = from >> 16;
  12. flash->command[2] = from >> 8;
  13. flash->command[3] = from; //初始化前面写buf的内容
  14. spi_sync(flash->spi, &m); //调用spi_master发送spi_message
  15. // spi_sync为同步方式发送,还可以用spi_async异步方式,那样的话,需要设置回调完成函数。
  16. 另外你也可以选择一些封装好的更容易使用的函数,这些函数可以在include/linux/spi/spi.h文件中找到,如:
  17. extern int spi_write_then_read(struct spi_device *spi,
  18. const u8 *txbuf, unsigned n_tx,
  19. u8 *rxbuf, unsigned n_rx);

这篇博文就到这了,下篇给出一个针对m25p10完整的驱动程序。

Linux下spi驱动开发之m25p10驱动测试

目标:在华清远见的FS_S5PC100平台
编写一个简单的spi驱动模块,在probe阶段实现对m25p10的ID号探测、flash擦除、flash状态读取、flash写入、flash读取
等操作。代码已经经过测试,运行于2.6.35内核。理解下面代码需要参照m25p10的芯片手册。其实下面的代码和处理器没有太大关系,这也是spi子
系统的分层特点。

点击(此处)折叠或打开

  1. #include <linux/platform_device.h>
  2. #include <linux/spi/spi.h>
  3. #include <linux/init.h>
  4. #include <linux/module.h>
  5. #include <linux/device.h>
  6. #include <linux/interrupt.h>
  7. #include <linux/mutex.h>
  8. #include <linux/slab.h> // kzalloc
  9. #include <linux/delay.h>
  10. #define FLASH_PAGE_SIZE 256
  11. /* Flash Operating Commands */
  12. #define CMD_READ_ID 0x9f
  13. #define CMD_WRITE_ENABLE 0x06
  14. #define CMD_BULK_ERASE 0xc7
  15. #define CMD_READ_BYTES 0x03
  16. #define CMD_PAGE_PROGRAM 0x02
  17. #define CMD_RDSR 0x05
  18. /* Status Register bits. */
  19. #define SR_WIP 1 /* Write in progress */
  20. #define SR_WEL 2 /* Write enable latch */
  21. /* ID Numbers */
  22. #define MANUFACTURER_ID 0x20
  23. #define DEVICE_ID 0x1120
  24. /* Define max times to check status register before we give up. */
  25. #define MAX_READY_WAIT_COUNT 100000
  26. #define CMD_SZ 4
  27. struct m25p10a {
  28. struct spi_device *spi;
  29. struct mutex lock;
  30. char erase_opcode;
  31. char cmd[ CMD_SZ ];
  32. };
  33. /*
  34. * Internal Helper functions
  35. */
  36. /*
  37. * Read the status register, returning its value in the location
  38. * Return the status register value.
  39. * Returns negative if error occurred.
  40. */
  41. static int read_sr(struct m25p10a *flash)
  42. {
  43. ssize_t retval;
  44. u8 code = CMD_RDSR;
  45. u8 val;
  46. retval = spi_write_then_read(flash->spi, &code, 1, &val, 1);
  47. if (retval < 0) {
  48. dev_err(&flash->spi->dev, "error %d reading SR\n", (int) retval);
  49. return retval;
  50. }
  51. return val;
  52. }
  53. /*
  54. * Service routine to read status register until ready, or timeout occurs.
  55. * Returns non-zero if error.
  56. */
  57. static int wait_till_ready(struct m25p10a *flash)
  58. {
  59. int count;
  60. int sr;
  61. /* one chip guarantees max 5 msec wait here after page writes,
  62. * but potentially three seconds (!) after page erase.
  63. */
  64. for (count = 0; count < MAX_READY_WAIT_COUNT; count++) {
  65. if ((sr = read_sr(flash)) < 0)
  66. break;
  67. else if (!(sr & SR_WIP))
  68. return 0;
  69. /* REVISIT sometimes sleeping would be best */
  70. }
  71. printk( "in (%s): count = %d\n", count );
  72. return 1;
  73. }
  74. /*
  75. * Set write enable latch with Write Enable command.
  76. * Returns negative if error occurred.
  77. */
  78. static inline int write_enable( struct m25p10a *flash )
  79. {
  80. flash->cmd[0] = CMD_WRITE_ENABLE;
  81. return spi_write( flash->spi, flash->cmd, 1 );
  82. }
  83. /*
  84. * Erase the whole flash memory
  85. *
  86. * Returns 0 if successful, non-zero otherwise.
  87. */
  88. static int erase_chip( struct m25p10a *flash )
  89. {
  90. /* Wait until finished previous write command. */
  91. if (wait_till_ready(flash))
  92. return -1;
  93. /* Send write enable, then erase commands. */
  94. write_enable( flash );
  95. flash->cmd[0] = CMD_BULK_ERASE;
  96. return spi_write( flash->spi, flash->cmd, 1 );
  97. }
  98. /*
  99. * Read an address range from the flash chip. The address range
  100. * may be any size provided it is within the physical boundaries.
  101. */
  102. static int m25p10a_read( struct m25p10a *flash, loff_t from, size_t len, char *buf )
  103. {
  104. int r_count = 0, i;
  105. flash->cmd[0] = CMD_READ_BYTES;
  106. flash->cmd[1] = from >> 16;
  107. flash->cmd[2] = from >> 8;
  108. flash->cmd[3] = from;
  109. #if 1
  110. struct spi_transfer st[2];
  111. struct spi_message msg;
  112. spi_message_init( &msg );
  113. memset( st, 0, sizeof(st) );
  114. flash->cmd[0] = CMD_READ_BYTES;
  115. flash->cmd[1] = from >> 16;
  116. flash->cmd[2] = from >> 8;
  117. flash->cmd[3] = from;
  118. st[ 0 ].tx_buf = flash->cmd;
  119. st[ 0 ].len = CMD_SZ;
  120. spi_message_add_tail( &st[0], &msg );
  121. st[ 1 ].rx_buf = buf;
  122. st[ 1 ].len = len;
  123. spi_message_add_tail( &st[1], &msg );
  124. mutex_lock( &flash->lock );
  125. /* Wait until finished previous write command. */
  126. if (wait_till_ready(flash)) {
  127. mutex_unlock( &flash->lock );
  128. return -1;
  129. }
  130. spi_sync( flash->spi, &msg );
  131. r_count = msg.actual_length - CMD_SZ;
  132. printk( "in (%s): read %d bytes\n", __func__, r_count );
  133. for( i = 0; i < r_count; i++ ) {
  134. printk( "0x%02x\n", buf[ i ] );
  135. }
  136. mutex_unlock( &flash->lock );
  137. #endif
  138. return 0;
  139. }
  140. /*
  141. * Write an address range to the flash chip. Data must be written in
  142. * FLASH_PAGE_SIZE chunks. The address range may be any size provided
  143. * it is within the physical boundaries.
  144. */
  145. static int m25p10a_write( struct m25p10a *flash, loff_t to, size_t len, const char *buf )
  146. {
  147. int w_count = 0, i, page_offset;
  148. struct spi_transfer st[2];
  149. struct spi_message msg;
  150. #if 1
  151. if (wait_till_ready(flash)) { //读状态,等待ready
  152. mutex_unlock( &flash->lock );
  153. return -1;
  154. }
  155. #endif
  156. write_enable( flash ); //写使能
  157. spi_message_init( &msg );
  158. memset( st, 0, sizeof(st) );
  159. flash->cmd[0] = CMD_PAGE_PROGRAM;
  160. flash->cmd[1] = to >> 16;
  161. flash->cmd[2] = to >> 8;
  162. flash->cmd[3] = to;
  163. st[ 0 ].tx_buf = flash->cmd;
  164. st[ 0 ].len = CMD_SZ;
  165. spi_message_add_tail( &st[0], &msg );
  166. st[ 1 ].tx_buf = buf;
  167. st[ 1 ].len = len;
  168. spi_message_add_tail( &st[1], &msg );
  169. mutex_lock( &flash->lock );
  170. /* get offset address inside a page */
  171. page_offset = to % FLASH_PAGE_SIZE;
  172. /* do all the bytes fit onto one page? */
  173. if( page_offset + len <= FLASH_PAGE_SIZE ) { // yes
  174. st[ 1 ].len = len;
  175. printk("%d, cmd = %d\n", st[ 1 ].len, *(char *)st[0].tx_buf);
  176. //while(1)
  177. {
  178. spi_sync( flash->spi, &msg );
  179. }
  180. w_count = msg.actual_length - CMD_SZ;
  181. }
  182. else { // no
  183. }
  184. printk( "in (%s): write %d bytes to flash in total\n", __func__, w_count );
  185. mutex_unlock( &flash->lock );
  186. return 0;
  187. }
  188. static int check_id( struct m25p10a *flash )
  189. {
  190. char buf[10] = {0};
  191. flash->cmd[0] = CMD_READ_ID;
  192. spi_write_then_read( flash->spi, flash->cmd, 1, buf, 3 );
  193. printk( "Manufacture ID: 0x%x\n", buf[0] );
  194. printk( "Device ID: 0x%x\n", buf[1] | buf[2] << 8 );
  195. return buf[2] << 16 | buf[1] << 8 | buf[0];
  196. }
  197. static int m25p10a_probe(struct spi_device *spi)
  198. {
  199. int ret = 0;
  200. struct m25p10a *flash;
  201. char buf[ 256 ];
  202. printk( "%s was called\n", __func__ );
  203. flash = kzalloc( sizeof(struct m25p10a), GFP_KERNEL );
  204. if( !flash ) {
  205. return -ENOMEM;
  206. }
  207. flash->spi = spi;
  208. mutex_init( &flash->lock );
  209. /* save flash as driver‘s private data */
  210. spi_set_drvdata( spi, flash );
  211. check_id( flash ); //读取ID
  212. #if 1
  213. ret = erase_chip( flash ); //擦除
  214. if( ret < 0 ) {
  215. printk( "erase the entirely chip failed\n" );
  216. }
  217. printk( "erase the whole chip done\n" );
  218. memset( buf, 0x7, 256 );
  219. m25p10a_write( flash, 0, 20, buf); //0地址写入20个7
  220. memset( buf, 0, 256 );
  221. m25p10a_read( flash, 0, 25, buf ); //0地址读出25个数
  222. #endif
  223. return 0;
  224. }
  225. static int m25p10a_remove(struct spi_device *spi)
  226. {
  227. return 0;
  228. }
  229. static struct spi_driver m25p10a_driver = {
  230. .probe = m25p10a_probe,
  231. .remove = m25p10a_remove,
  232. .driver = {
  233. .name = "m25p10a",
  234. },
  235. };
  236. static int __init m25p10a_init(void)
  237. {
  238. return spi_register_driver(&m25p10a_driver);
  239. }
  240. static void __exit m25p10a_exit(void)
  241. {
  242. spi_unregister_driver(&m25p10a_driver);
  243. }
  244. module_init(m25p10a_init);
  245. module_exit(m25p10a_exit);
  246. MODULE_DESCRIPTION("m25p10a driver for FS_S5PC100");
  247. MODULE_LICENSE("GPL");

===========================

感谢作者的奉献, 要是能早一点看到这篇文章, 我也不用在茫茫的网页中四处寻迷, 搞得焦头烂额也不得其中真谛.

看到这样的文章, 如同拔得云雾见清天,柳岸花明又一村; 其实I2C原来是搞懂了的, SPI跟I2C简直

一模一样, 但就是最初的不了解, 让网上那些分析SPI如何实现的文章带到了迷宫一样. 要说的话那些文章就

完全是在装B, 只是展示了自己理解得怎样怎样, 完全没有阅读的价值. 我要是读了这篇文章, 网上那些东西

还不是多跟踪一下代码就可以搞明白的.只能说怎一个艹字了得.最后再次感谢文章作者的无私奉献, 希望能看到更多

像这样的文章.

时间: 2024-10-15 23:23:00

Linux下spi驱动开发的相关文章

Linux 下wifi 驱动开发(三)—— SDIO接口WiFi驱动浅析

SDIO-Wifi模块是基于SDIO接口的符合wifi无线网络标准的嵌入式模块,内置无线网络协议IEEE802.11协议栈以及TCP/IP协议栈.可以实现用户主平台数据通过SDIO口到无线网络之间的转换.SDIO具有数据传输快,兼容SD.MMC接口等特点. 对于SDIO接口的wifi,首先,它是一个sdio的卡的设备.然后具备了wifi的功能.所以.注冊的时候还是先以sdio的卡的设备去注冊的. 然后检測到卡之后就要驱动他的wifi功能了.显然,他是用sdio的协议,通过发命令和数据来控制的.以

转: 嵌入式linux下usb驱动开发方法--看完少走弯路【转】

转自:http://blog.csdn.net/jimmy_1986/article/details/5838297 嵌入式linux下的usb属于所有驱动中相当复杂的一个子系统,要想将她彻底征服,至少需要个把月的时间,不信?那是你没做过. 本人做过2年的嵌入式驱动开发,usb占了一大半的时间.期间走了不少弯路,下面将我的血的经验教训总结下,为要从事和正在从事的战友们做一点点贡献吧:) 首先,扫盲: 要做的是阅读usb Spec(英文的哦,其实很多文章.书籍和资料真有水平的还是原创的好,就像食品

Linux 下wifi 驱动开发(四)—— USB接口WiFi驱动浅析

转: http://blog.csdn.net/zqixiao_09/article/details/51146149 前面学习了SDIO接口的WiFi驱动,现在我们来学习一下USB接口的WiFi驱动,二者的区别在于接口不同.而USB接口的设备驱动,我们前面也有学习,比如USB摄像头驱动.USB鼠标驱动,同样都符合LinuxUSB驱动结构: USB设备驱动(字符设备.块设备.网络设备) | USB 核心 | USB主机控制器驱动 不同之处只是在于USB摄像头驱动是字符设备,而我们今天要学习的Wi

Linux 下wifi 驱动开发(一)—— WiFi基础知识解析

 一.WiFi相关基础概念 1.什么是wifi  我们看一下百度百科是如何定义的: Wi-Fi是一种可以将个人电脑.手持设备(如pad.手机)等终端以无线方式互相连接的技术,事实上它是一个高频无线电信号.[1]  无线保真是一个无线网络通信技术的品牌,由Wi-Fi联盟所持有.目的是改善基于IEEE 802.11标准的无线网路产品之间的互通性.有人把使用IEEE 802.11系列协议的局域网就称为无线保真.甚至把无线保真等同于无线网际网路(Wi-Fi是WLAN的重要组成部分). wifi 英文全称

Linux GPIO键盘驱动开发记录_OMAPL138

Linux GPIO键盘驱动开发记录_OMAPL138 Linux基本配置完毕了,这几天开始着手Linux驱动的开发,从一个最简单的键盘驱动开始,逐步的了解开发驱动的过程有哪些.看了一下Linux3.3内核文件下的driver目录,点开里面的C文件,感觉底层的Linux驱动机制还是很复杂的,还需要一段漫长时间的学习.现在开发的也不能说是叫做驱动,也只能说是驱动的应用,我们学习驱动也从应用逐步开始,往里面深入吧. 0.开发准备 内核源文件(当时我们编译内核时候的目录,很重要,编译驱动的时候需要依赖

基于335X平台Linux交换芯片驱动开发

基于335X平台Linux交换芯片驱动开发   一.软硬件平台资料 1.开发板:创龙AM3359核心板,网口采用RMII形式. 2.Kernel版本:4.4.12,采用FDT 3.交换芯片MARVELL的88E6321. 二.移植准备工作 1.熟悉88E6321的datasheet及Functional_Specification_Rev.0.05 2.熟悉设备树相关理论和用法 3.熟悉Linux网络驱动MDIO.PHY部分的软件流程 三.DTS文件修改 本工程的DTS文件以am335x-ice

arch linux下nvidia 驱动死机问题

好长一段时间了,自从某次arch滚动升级nvidia驱动后,就频繁的Xorg死掉.一直没能解决,只好换用nouveau.nouveau一般使用问题到不大,但是前几天nouveau升级后,也开始抽筋. 于是又尝试换回nvidia的专有驱动,死机情况依然未解.偶然在死机后,用ssh连接上后用dmesg抓到一个错误: NVRM: GPU at 0000:01:00.0 Has Fallen Off The Bus 一番搜索,找到这篇文章: http://www.cyberciti.biz/faq/de

linux下配置LAMP开发环境,以及常用小细节

本来安装没什么可说到.但是在linux当中容易会出现各种各样到问题.我安装以后导致各种问题 比如php无法正常解析,数据库无法关闭,Apache无法开启等等........ 所以搞得我比较郁闷,现在把过程分享下,大家不要在走弯路 最后按照这个顺序来装,避免出问题 [plain] view plaincopy sudo apt-get install mysql-server-5.0 sudo apt-get install apache2 sudo apt-get install php5 li

linux内核中驱动开发常见的类似多态

题意:求一个无向图的,去掉两个不同的点后最多有几个连通分量. 思路:枚举每个点,假设去掉该点,然后对图求割点后连通分量数,更新最大的即可.算法相对简单,但是注意几个细节: 1:原图可能不连通. 2:有的连通分量只有一个点,当舍去该点时候,连通分量-1: 复习求割点的好题! #include<iostream> #include<cstdio> #include<vector> using namespace std; int n,m; vector<vector&