linux nand flash驱动编写

作者:feixiaoxing 时间:2023-08-05 02:28:02 

很长一段时间,nand flash都是嵌入式的标配产品。nand flash价格便宜,存储量大,适用于很多的场景。现在很普及的ssd,上面的存储模块其实也是由一块一块nand flash构成的。对于linux嵌入式来说,开始uboot的加载是硬件完成的,中期的kernel加载是由uboot中的nand flash驱动完成的,而后期的rootfs加载,这就要靠kernel自己来完成了。当然,这次还是以三星s3c芯片为例进行说明。

1、nand flash驱动在什么地方,可以从drviers/mtd/Makefile来看


obj-y    += chips/ lpddr/ maps/ devices/ nand/ onenand/ tests/

2、nand在mtd下面,是作为一个单独目录保存的,这时应该查看nand下的Kconfig


config MTD_NAND_S3C2410
 tristate "NAND Flash support for Samsung S3C SoCs"
 depends on ARCH_S3C24XX || ARCH_S3C64XX
 help
  This enables the NAND flash controller on the S3C24xx and S3C64xx
  SoCs
No board specific support is done by this driver, each board
  must advertise a platform_device for the driver to attach.
config MTD_NAND_S3C2410_DEBUG
 bool "Samsung S3C NAND driver debug"
 depends on MTD_NAND_S3C2410
 help
  Enable debugging of the S3C NAND driver
config MTD_NAND_S3C2410_CLKSTOP
 bool "Samsung S3C NAND IDLE clock stop"
 depends on MTD_NAND_S3C2410
 default n
 help
  Stop the clock to the NAND controller when there is no chip
  selected to save power. This will mean there is a small delay
  when the is NAND chip selected or released, but will save
  approximately 5mA of power when there is nothing happening.

3、不难发现,MTD_NAND_S3C2410才是那个真正的macro,尝试在Makefile找文件


obj-$(CONFIG_MTD_NAND_S3C2410)   += s3c2410.o

4、查看s3c2410.c文件,看看基本结构构成


static struct platform_driver s3c24xx_nand_driver = {
 .probe   = s3c24xx_nand_probe,
 .remove   = s3c24xx_nand_remove,
 .suspend  = s3c24xx_nand_suspend,
 .resume   = s3c24xx_nand_resume,
 .id_table  = s3c24xx_driver_ids,
 .driver   = {
   .name  = "s3c24xx-nand",
   .of_match_table = s3c24xx_nand_dt_ids,
 },
};
module_platform_driver(s3c24xx_nand_driver);

5、继续分析s3c24xx_nand_probe函数


s3c2410_nand_init_chip(info, nmtd, sets);

6、之所以从中摘出了s3c2410_nand_init_chip这个函数,是因为里面进行了函数注册

类似的函数还有s3c2410_nand_update_chip函数


chip->write_buf  = s3c2410_nand_write_buf;
chip->read_buf   = s3c2410_nand_read_buf;
chip->select_chip = s3c2410_nand_select_chip;
chip->chip_delay  = 50;
nand_set_controller_data(chip, nmtd);
chip->options    = set->options;
chip->controller  = &info->controller;  
switch (info->cpu_type) {
case TYPE_S3C2410:
 chip->IO_ADDR_W = regs + S3C2410_NFDATA;
 info->sel_reg  = regs + S3C2410_NFCONF;
 info->sel_bit  = S3C2410_NFCONF_nFCE;
 chip->cmd_ctrl = s3c2410_nand_hwcontrol;
 chip->dev_ready = s3c2410_nand_devready;
 break;
case TYPE_S3C2440:
 chip->IO_ADDR_W = regs + S3C2440_NFDATA;
 info->sel_reg  = regs + S3C2440_NFCONT;
 info->sel_bit  = S3C2440_NFCONT_nFCE;
 chip->cmd_ctrl = s3c2440_nand_hwcontrol;
 chip->dev_ready = s3c2440_nand_devready;
 chip->read_buf = s3c2440_nand_read_buf;
 chip->write_buf = s3c2440_nand_write_buf;
 break;  
case TYPE_S3C2412:
 chip->IO_ADDR_W = regs + S3C2440_NFDATA;
 info->sel_reg  = regs + S3C2440_NFCONT;
 info->sel_bit  = S3C2412_NFCONT_nFCE0;
 chip->cmd_ctrl = s3c2440_nand_hwcontrol;
 chip->dev_ready = s3c2412_nand_devready;  
 if (readl(regs + S3C2410_NFCONF) & S3C2412_NFCONF_NANDBOOT)
   dev_info(info->device, "System booted from NAND\n");  
 break;
}

7、抓住了函数接口,就找到了基本逻辑。

对于框架来说,它不关心你的代码如何实现。只要你按照它的接口写,就能让上层正常获得数据。platform、usb、pci这都是一种接口形式,具体实现还要按照各个具体功能模块来实现才行。

8、为什么我们都用s3c芯片进行举例

因为它用的场景最多,学习资料最全,对于新手来说,这会少很多麻烦。

9、这个驱动依赖的kernel版本是什么

这里最有的代码都是按照最新4.16的版本进行分析的,大家可以直接查看这里的地址

来源:https://blog.csdn.net/feixiaoxing/article/details/79855970

标签:linux,nand,flash
0
投稿

猜你喜欢

  • 影响网站排名的五大因素

    2008-01-15 12:07:00
  • CentOS 7.2下安装部署邮件服务器(Postfix)的步骤详解

    2022-06-08 07:36:40
  • 十年网建翻天覆地变化 正规化建站已来临

    2009-01-04 09:58:00
  • 什么是Google分析师?

    2008-01-22 12:41:00
  • UCenter Home登陆退出提示错误的排查步骤

    2009-11-17 08:54:00
  • Webmail攻防实战(3)

    2007-10-24 13:49:00
  • Discuz! 7.1:热点话题聚焦社区热点信息

    2009-09-25 12:12:00
  • Google adsense 西联快汇怎么收款

    2007-09-30 13:03:00
  • 详解Windows与Linux共享文件夹互相访问

    2021-04-20 18:21:23
  • 网站统计给了我们什么?

    2007-12-16 19:25:00
  • 最完善方法 优化Windows服务器磁盘性能

    2007-09-06 14:47:00
  • Facebook Twitter等X360新功能将开测

    2009-10-16 08:50:00
  • Google Earth 5.1正式版发布 速度很大提升

    2009-11-20 14:04:00
  • 基于linux配置selenium环境并实现运行

    2021-12-17 02:30:11
  • 美国Blogger分享 20个推广博文的最佳途径

    2009-04-07 22:25:00
  • 一个完美网站的101项指标.第八部分.SEO

    2008-03-01 09:33:00
  • 网站赚钱就靠广告到底行不行?

    2007-12-07 12:53:00
  • 防范黑客来自网上的攻击的几种方法

    2008-11-11 12:14:00
  • Google Safe Browsing 的策略

    2009-12-11 12:43:00
  • 圈里圈外 是个人奋斗还是公司上班

    2008-04-16 13:42:00
  • asp之家 网站运营 m.aspxhome.com