新闻中心

EEPW首页>嵌入式系统>设计应用> ARM-Linux驱动--MTD驱动分析(二)

ARM-Linux驱动--MTD驱动分析(二)

作者: 时间:2016-11-20 来源:网络 收藏
主机:Gentoo Linux 11.2 with linux kernel 3.0.6

硬件平台:FL2440(S3C2440)with linux kernel 2.6.35

本文引用地址://m.amcfsurvey.com/article/201611/319013.htm

1、mtd_notifier结构体

  1. //MTD设备通知结构体
  2. structmtd_notifier{
  3. void(*add)(structmtd_info*mtd);//加入MTD原始/字符/块设备时执行
  4. void(*remove)(structmtd_info*mtd);//移除MTD原始/字符/块设备时执行
  5. structlist_headlist;//list是双向链表,定义在include/linux/list.h
  6. };
而struct list_head定义在/include/linux/list.h中,内核中其宏定义和函数如下

INIT_LIST_HEAD(ptr) 初始化ptr节点为表头,将前趋与后继都指向自己。
LIST_HEAD(name) 声明并初始化双向循环链表name。

static inline void __list_add(struct list_head *new, struct list_head *prev, struct list_head *next)
向链表中在prev与next之间插入元素new
static inline void list_add(struct list_head *new, struct list_head *head)
在链表中头节点后插入元素new,调用__list_add()实现。
static inline void list_add_tail(struct list_head *new, struct list_head *head)
在链表末尾插入元素new,调用__list_add()实现。

static inline void __list_del(struct list_head * prev, struct list_head * next)
删除链表中prev与next之间的元素。
static inline void list_del(struct list_head *entry)
删除链表中的元素entry。

static inline void list_del_init(struct list_head *entry)
从链表中删除元素entry,并将其初始化为新的链表。
static inline void list_move(struct list_head *list, struct list_head *head)
从链表中删除list元素,并将其加入head链表。
static inline void list_move_tail(struct list_head *list, struct list_head *head)
把list移动到链表末尾。

static inline int list_empty(const struct list_head *head)
测试链表是否为空。

static inline void __list_splice(struct list_head *list, struct list_head *head)
将链表list与head合并。
static inline void list_splice(struct list_head *list, struct list_head *head)
在list不为空的情况下,调用__list_splice()实现list与head的合并。
static inline void list_splice_init(struct list_head *list, struct list_head *head)
将两链表合并,并将list初始化。

list_entry(ptr, type, member)
list_entry的定义是怎么回事?
a. list_entry的定义在内核源文件include/linux/list.h中:
#define list_entry(ptr, type, member)
((type *)((char *)(ptr)-(unsigned long)(&((type *)0)->member)))
b. 其功能是根据list_head型指针ptr换算成其宿主结构的起始地址,该宿主结构是type型的,而ptr在其宿主结构中定义为member成员。

2、add_mtd_device函数

  1. /**
  2. *add_mtd_device-registeranMTDdevice
  3. *@mtd:pointertonewMTDdeviceinfostructure
  4. *
  5. *AddadevicetothelistofMTDdevicespresentinthesystem,and
  6. *notifyeachcurrentlyactiveMTDuserofitsarrival.Returns
  7. *zeroonsuccessor1onfailure,whichcurrentlywillonlyhappen
  8. *ifthereisinsufficientmemoryorasysfserror.
  9. */
  10. //添加MTD设备函数,将MTD设备加入MTD设备链表,并通知所有的MTDuser该MTD设备。返回0表示成功,返回1表示出错(内存不足或文件系统错误)
  11. intadd_mtd_device(structmtd_info*mtd)
  12. {
  13. structmtd_notifier*not;//定义一个MTD设备通知器
  14. inti,error;
  15. //下面是设置mtd_info结构体信息
  16. if(!mtd->backing_dev_info){
  17. switch(mtd->type){
  18. caseMTD_RAM://MTD_RAM定义在include/mtd/mtd-abi.h
  19. mtd->backing_dev_info=&mtd_bdi_rw_mappable;
  20. break;
  21. caseMTD_ROM:
  22. mtd->backing_dev_info=&mtd_bdi_ro_mappable;
  23. break;
  24. default:
  25. mtd->backing_dev_info=&mtd_bdi_unmappable;
  26. break;
  27. }
  28. }
  29. BUG_ON(mtd->writesize==0);
  30. mutex_lock(&mtd_table_mutex);//给操作mtd_table加锁
  31. do{
  32. if(!idr_pre_get(&mtd_idr,GFP_KERNEL))//为mtd_idr分配内存
  33. gotofail_locked;
  34. error=idr_get_new(&mtd_idr,mtd,&i);//将id号和mtd_idr关联
  35. }while(error==-EAGAIN);
  36. if(error)
  37. gotofail_locked;
  38. mtd->index=i;
  39. mtd->usecount=0;
  40. if(is_power_of_2(mtd->erasesize))
  41. mtd->erasesize_shift=ffs(mtd->erasesize)-1;
  42. else
  43. mtd->erasesize_shift=0;
  44. if(is_power_of_2(mtd->writesize))
  45. mtd->writesize_shift=ffs(mtd->writesize)-1;
  46. else
  47. mtd->writesize_shift=0;
  48. mtd->erasesize_mask=(1< erasesize_shift)-1;
  49. mtd->writesize_mask=(1< writesize_shift)-1;
  50. /*Somechipsalwayspoweruplocked.Unlockthemnow*/
  51. if((mtd->flags&MTD_WRITEABLE)
  52. &&(mtd->flags&MTD_POWERUP_LOCK)&&mtd->unlock){
  53. if(mtd->unlock(mtd,0,mtd->size))
  54. printk(KERN_WARNING
  55. "%s:unlockfailed,writesmaynotworkn",
  56. mtd->name);
  57. }
  58. /*Callershouldhavesetdev.parenttomatchthe
  59. *physicaldevice.
  60. */
  61. mtd->dev.type=&mtd_devtype;
  62. mtd->dev.class=&mtd_class;
  63. mtd->dev.devt=MTD_DEVT(i);
  64. //设置mtd设备名
  65. dev_set_name(&mtd->dev,"mtd%d",i);
  66. //设置mtd设备信息mtd_info
  67. dev_set_drvdata(&mtd->dev,mtd);
  68. //注册设备
  69. if(device_register(&mtd->dev)!=0)
  70. gotofail_added;
  71. //创建设备
  72. if(MTD_DEVT(i))
  73. device_create(&mtd_class,mtd->dev.parent,
  74. MTD_DEVT(i)+1,
  75. NULL,"mtd%dro",i);
  76. DEBUG(0,"mtd:Givingoutdevice%dto%sn",i,mtd->name);
  77. /*Noneedtogetarefcountonthemodulecontaining
  78. thenotifier,sinceweholdthemtd_table_mutex*/
  79. //遍历list链表将每个mtd_notifier执行add()函数,对新加入的mtd设备操作,通知所有的MTDuser新的MTD设备的到来
  80. list_for_each_entry(not,&mtd_notifiers,list)
  81. not->add(mtd);
  82. //解锁信号量
  83. mutex_unlock(&mtd_table_mutex);
  84. /*We_know_wearentbeingremoved,because
  85. ourcallerisstillholdingushere.Sonone
  86. ofthistry_nonsense,andnobitchingaboutit
  87. either.:)*/
  88. __module_get(THIS_MODULE);
  89. return0;
  90. fail_added:
  91. idr_remove(&mtd_idr,i);
  92. fail_locked:
  93. mutex_unlock(&mtd_table_mutex);
  94. return1;
  95. }

其中用到的IDR机制如下:

(1)获得idr
要在代码中使用idr,首先要包括 。接下来,我们要在代码中分配idr结构体,并初始化:
void idr_init(struct idr *idp);
其中idr定义如下:
struct idr {
struct idr_layer *top;
struct idr_layer *id_free;
int layers;
int id_free_cnt;
spinlock_t lock;
};
/* idr是idr机制的核心结构体 */
(2)为idr分配内存
int idr_pre_get(struct idr *idp, unsigned int gfp_mask);
每次通过idr获得ID号之前,需要先分配内存。
返回0表示错误,非零值代表正常
(3)分配ID号并将ID号和指针关联
int idr_get_new(struct idr *idp, void *ptr, int *id);
int idr_get_new_above(struct idr *idp, void *ptr, int start_id, int *id);
idp: 之前通过idr_init初始化的idr指针
id: 由内核自动分配的ID号
ptr: 和ID号相关联的指针
start_id: 起始ID号。内核在分配ID号时,会从start_id开始。如果为I2C节点分配ID号,可以将设备地址作为start_id
函数调用正常返回0,如果没有ID可以分配,则返回-ENOSPC
在实际中,上述函数常常采用如下方式使用:
again:
if (idr_pre_get(&my_idr, GFP_KERNEL) == 0) {
/* No memory, give up entirely */
}
spin_lock(&my_lock);
result = idr_get_new(&my_idr, &target, &id);
if (result == -EAGAIN) {
sigh();
spin_unlock(&my_lock);
goto again;
}
(4)通过ID号搜索对应的指针
void *idr_find(struct idr *idp, int id);
返回值是和给定id相关联的指针,如果没有,则返回NULL
(5)删除ID
要删除一个ID,使用:
void idr_remove(struct idr *idp, int id);
通过上面这些方法,内核代码可以为子设备,inode生成对应的ID号。这些函数都定义在lib/idr.c中

3、del_mtd_device函数

  1. /**
  2. *del_mtd_device-unregisteranMTDdevice
  3. *@mtd:pointertoMTDdeviceinfostructure
  4. *
  5. *RemoveadevicefromthelistofMTDdevicespresentinthesystem,
  6. *andnotifyeachcurrentlyactiveMTDuserofitsdeparture.
  7. *Returnszeroonsuccessor1onfailure,whichcurrentlywillhappen
  8. *iftherequesteddevicedoesnotappeartobepresentinthelist.
  9. */
  10. //删除mtd设备函数。
  11. //从MTD设备的链表中移除该MTD设备信息,并通知系统中所有的MTDuser该MTD设备的移除。
  12. //返回0表示成功,返回1表示出错(该设备信息不存在设备链表中)
  13. intdel_mtd_device(structmtd_info*mtd)
  14. {
  15. intret;
  16. structmtd_notifier*not;//定义一个mtd_notifier指针
  17. mutex_lock(&mtd_table_mutex);
  18. if(idr_find(&mtd_idr,mtd->index)!=mtd){
  19. ret=-ENODEV;
  20. gotoout_error;
  21. }
  22. /*Noneedtogetarefcountonthemodulecontaining
  23. thenotifier,sinceweholdthemtd_table_mutex*/
  24. //遍历list链表,并使每个mtd_notifier执行remove函数,通知每个MTDuser该设备的移除
  25. list_for_each_entry(not,&mtd_notifiers,list)
  26. not->remove(mtd);
  27. if(mtd->usecount){
  28. printk(KERN_NOTICE"RemovingMTDdevice#%d(%s)withusecount%dn",
  29. mtd->index,mtd->name,mtd->usecount);
  30. ret=-EBUSY;
  31. }else{
  32. device_unregister(&mtd->dev);//移除MTD设备
  33. idr_remove(&mtd_idr,mtd->index);//移除mtd的id号并释放已分配的内存
  34. module_put(THIS_MODULE);
  35. ret=0;
  36. }
  37. out_error:
  38. mutex_unlock(&mtd_table_mutex);
  39. returnret;
  40. }

4、register_mtd_user函数

  1. /**
  2. *register_mtd_user-registerauserofMTDdevices.
  3. *@new:pointertonotifierinfostructure
  4. *
  5. *Registersapairofcallbacksfunctiontobecalleduponaddition
  6. *orremovalofMTDdevices.Causestheaddcallbacktobeimmediately
  7. *invokedforeachMTDdevicecurrentlypresentinthesystem.
  8. */
  9. //MTD原始设备使用者注册MTD设备(具体的字符设备或块设备)
  10. //参数是新的mtd通知器,将其加入mtd_notifiers队列,然后
  11. voidregister_mtd_user(structmtd_notifier*new)
  12. {
  13. structmtd_info*mtd;
  14. mutex_lock(&mtd_table_mutex);
  15. //将new->list头插mtd_notifiers入链表
  16. list_add(&new->list,&mtd_notifiers);
  17. __module_get(THIS_MODULE);
  18. //对每个MTD原始设备执行add函数
  19. mtd_for_each_device(mtd)
  20. new->add(mtd);
  21. mutex_unlock(&mtd_table_mutex);
  22. }

5、unregister_mtd_user函数

  1. /**
  2. *unregister_mtd_user-unregisterauserofMTDdevices.
  3. *@old:pointertonotifierinfostructure
  4. *
  5. *Removesacallbackfunctionpairfromthelistofuserstobe
  6. *notifieduponadditionorremovalofMTDdevices.Causesthe
  7. *removecallbacktobeimmediatelyinvokedforeachMTDdevice
  8. *currentlypresentinthesystem.
  9. */
  10. //删除MTD设备。
  11. //通知所有该MTD原始设备的MTD设备执行remove()函数,将被删除的MTD设备的通知器从mtd_notifier队列中删除
  12. intunregister_mtd_user(structmtd_notifier*old)
  13. {
  14. structmtd_info*mtd;
  15. mutex_lock(&mtd_table_mutex);
  16. module_put(THIS_MODULE);
  17. //通知所有该MTD原始设备的MTD设备执行remove()函数
  18. mtd_for_each_device(mtd)
  19. old->remove(mtd);
  20. //将被删除的MTD设备的通知器从mtd_notifier队列中删除
  21. list_del(&old->list);
  22. mutex_unlock(&mtd_table_mutex);
  23. return0;
  24. }

6、获取MTD设备的操作指针,只是参数不同,一个是按照设备地址,另一个是安装设备的名称来获取MTD设备的操作地址

struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num)

struct mtd_info *get_mtd_device_nm(const char *name)

下面现分析第一个函数

  1. /**
  2. *get_mtd_device-obtainavalidatedhandleforanMTDdevice
  3. *@mtd:lastknownaddressoftherequiredMTDdevice
  4. *@num:internaldevicenumberoftherequiredMTDdevice
  5. *
  6. *GivenanumberandNULLaddress,returnthenumthentryinthedevice
  7. *table,ifany.Givenanaddressandnum==-1,searchthedevicetable
  8. *foradevicewiththataddressandreturnifitsstillpresent.Given
  9. *both,returnthenumthdriveronlyifitsaddressmatches.Return
  10. *errorcodeifnot.
  11. */
  12. //根据设备地址来获取MTD设备的操作地址
  13. structmtd_info*get_mtd_device(structmtd_info*mtd,intnum)
  14. {
  15. structmtd_info*ret=NULL,*other;
  16. interr=-ENODEV;
  17. //给mtd_table加锁,以便互斥访问
  18. mutex_lock(&mtd_table_mutex);
  19. if(num==-1){//num=-1&&链表不空,则返回mtd的地址
  20. mtd_for_each_device(other){
  21. if(other==mtd){
  22. ret=mtd;
  23. break;
  24. }
  25. }
  26. }elseif(num>=0){//num>=0,查找第num个设备,若不空,返回地址,若为空,返回NULL
  27. ret=idr_find(&mtd_idr,num);
  28. if(mtd&&mtd!=ret)
  29. ret=NULL;
  30. }
  31. if(!ret){
  32. ret=ERR_PTR(err);
  33. gotoout;
  34. }
  35. err=__get_mtd_device(ret);
  36. //错误处理
  37. if(err)
  38. ret=ERR_PTR(err);
  39. out:
  40. mutex_unlock(&mtd_table_mutex);//解锁互斥信号量
  41. returnret;
  42. }
  43. int__get_mtd_device(structmtd_info*mtd)
  44. {
  45. interr;
  46. if(!try_module_get(mtd->owner))
  47. return-ENODEV;
  48. if(mtd->get_device){
  49. err=mtd->get_device(mtd);
  50. if(err){
  51. module_put(mtd->owner);
  52. returnerr;
  53. }
  54. }
  55. mtd->usecount++;//增加该MTD原始设备的使用者计数器
  56. return0;
  57. }

第二个函数
  1. /**
  2. *get_mtd_device_nm-obtainavalidatedhandleforanMTDdeviceby
  3. *devicename
  4. *@name:MTDdevicenametoopen
  5. *
  6. *ThisfunctionreturnsMTDdevicedescriptionstructureincaseof
  7. *successandanerrorcodeincaseoffailure.
  8. */
  9. //通过设备名来获得相应的MTD原始设备的操作地址
  10. //该函数和上面的函数类似,不过就是通过循环比较MTD设备的name字段来返回
  11. structmtd_info*get_mtd_device_nm(constchar*name)
  12. {
  13. interr=-ENODEV;
  14. structmtd_info*mtd=NULL,*other;
  15. mutex_lock(&mtd_table_mutex);
  16. mtd_for_each_device(other){
  17. if(!strcmp(name,other->name)){
  18. mtd=other;
  19. break;
  20. }
  21. }
  22. if(!mtd)
  23. gotoout_unlock;
  24. if(!try_module_get(mtd->owner))
  25. gotoout_unlock;
  26. if(mtd->get_device){
  27. err=mtd->get_device(mtd);
  28. if(err)
  29. gotoout_put;
  30. }
  31. mtd->usecount++;
  32. mutex_unlock(&mtd_table_mutex);
  33. returnmtd;
  34. out_put:
  35. module_put(mtd->owner);
  36. out_unlock:
  37. mutex_unlock(&mtd_table_mutex);
  38. returnERR_PTR(err);
  39. }



评论


相关推荐

技术专区

关闭