当前位置: 技术问答>linux和unix
有没有做过linux nor flash驱动,128MB的nor flash就要映射128MB的虚拟空间么?nand flash就可以映射4k。。
来源: 互联网 发布时间:2016-08-16
本文导语: nand flash是必须始终保存虚拟映射,nor呢?内核怎么支持的啊? | 你说ioremap 128M的内存不算大么?系统就1G内存 --------------------------- 确实挺大的,内...
nand flash是必须始终保存虚拟映射,nor呢?内核怎么支持的啊?
|
你说ioremap 128M的内存不算大么?系统就1G内存
---------------------------
确实挺大的,内核空间的虚拟地址空间就1G
不过嵌入式设备里一般也没有超过1G的物理设备需要映射
至于超过了1G怎么办就不知道了,据说malloc可以申请到1G,我很郁闷
好像在驱动加载前后/proc/meminfo里面的mapped值没有变化,这个可以解释下么?
--------------------
挂载文件系统之后增加了,访问其中的文件又增加了,大概是不用就不真的绑定
---------------------------
确实挺大的,内核空间的虚拟地址空间就1G
不过嵌入式设备里一般也没有超过1G的物理设备需要映射
至于超过了1G怎么办就不知道了,据说malloc可以申请到1G,我很郁闷
好像在驱动加载前后/proc/meminfo里面的mapped值没有变化,这个可以解释下么?
--------------------
挂载文件系统之后增加了,访问其中的文件又增加了,大概是不用就不真的绑定
|
物理地址都舍得给128m
虚拟地址倒舍不得了?
这是一个s3c2410 上的nor 驱动,nor物理地址 0x0 开始,2m大
#include
#include
#include
#include
#include
#include
#include
#include
#include
#ifdef CONFIG_MTD_PARTITIONS
#include
#endif
#define WINDOW_ADDR 0x0000000 /* NOR FLASH物理地址 */
#define WINDOW_SIZE 0x0200000 /* NOR FLASH大小 */
#define BUSWIDTH 2
/* 探测的接口类型,可以是"cfi_probe", "jedec_probe", "map_rom", NULL }; */
#define PROBETYPES { "jedec_probe","amd_flash", NULL }
#define MSG_PREFIX "S3C2410-NOR:" /* prefix for our printk()'s */
#define MTDID "s3c2410-nor" /* for mtdparts= partitioning */
static struct mtd_info *mymtd;
struct map_info s3c2410nor_map = // map_info
{
.name = "NOR flash on S3C2410",
.size = WINDOW_SIZE,
.bankwidth = BUSWIDTH,
.phys = WINDOW_ADDR,
};
#ifdef CONFIG_MTD_PARTITIONS
/* MTD分区信息 */
static struct mtd_partition static_partitions[] =
{
{
.name = "BootLoader", .size = 0x040000, .offset = 0x0 //bootloader存放的区域
} ,
{
.name = "jffs2", .size = 0x0100000, .offset = 0x40000 //内核映像存放的区域
},
};
#endif
static int mtd_parts_nb = 0;
static struct mtd_partition *mtd_parts = 0;
int __init init_s3c2410nor(void)
{
static const char *rom_probe_types[] = PROBETYPES;
const char **type;
const char *part_type = 0;
printk("add by lht.............n");
printk(KERN_NOTICE MSG_PREFIX "0x%08x at 0x%08xn", WINDOW_SIZE, WINDOW_ADDR);
s3c2410nor_map.virt = (unsigned long)ioremap(WINDOW_ADDR, WINDOW_SIZE);//物理->虚拟地址
if (!s3c2410nor_map.virt)
{
printk(MSG_PREFIX "failed to ioremapn");
return - EIO;
}
simple_map_init(&s3c2410nor_map);
mymtd = 0;
type = rom_probe_types;
for (; !mymtd && *type; type++)
{
mymtd = do_map_probe(*type, &s3c2410nor_map);//探测NOR FLASH
}
if (mymtd)
{
mymtd->owner = THIS_MODULE;
mtd_parts = static_partitions;
mtd_parts_nb = ARRAY_SIZE(static_partitions);
part_type = "static";
add_mtd_device(mymtd);
if (mtd_parts_nb == 0)
printk(KERN_NOTICE MSG_PREFIX "no partition info availablen");
else
{
printk(KERN_NOTICE MSG_PREFIX "using %s partition definitionn",
part_type);
add_mtd_partitions(mymtd, mtd_parts, mtd_parts_nb);//添加分区信息
}
return 0;
}
iounmap((void*)s3c2410nor_map.virt);
return - ENXIO;
}
static void __exit cleanup_s3c2410nor(void)
{
if (mymtd)
{
del_mtd_partitions(mymtd); //删除分区
del_mtd_device(mymtd); //删除设备
map_destroy(mymtd);
}
if (s3c2410nor_map.virt)
{
iounmap((void*)s3c2410nor_map.virt);
s3c2410nor_map.virt = 0;
}
}
module_init(init_s3c2410nor);
module_exit(cleanup_s3c2410nor);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("farsihgt lht");
MODULE_DESCRIPTION("Generic configurable MTD map driver");
虚拟地址倒舍不得了?
这是一个s3c2410 上的nor 驱动,nor物理地址 0x0 开始,2m大
#include
#include
#include
#include
#include
#include
#include
#include
#include
#ifdef CONFIG_MTD_PARTITIONS
#include
#endif
#define WINDOW_ADDR 0x0000000 /* NOR FLASH物理地址 */
#define WINDOW_SIZE 0x0200000 /* NOR FLASH大小 */
#define BUSWIDTH 2
/* 探测的接口类型,可以是"cfi_probe", "jedec_probe", "map_rom", NULL }; */
#define PROBETYPES { "jedec_probe","amd_flash", NULL }
#define MSG_PREFIX "S3C2410-NOR:" /* prefix for our printk()'s */
#define MTDID "s3c2410-nor" /* for mtdparts= partitioning */
static struct mtd_info *mymtd;
struct map_info s3c2410nor_map = // map_info
{
.name = "NOR flash on S3C2410",
.size = WINDOW_SIZE,
.bankwidth = BUSWIDTH,
.phys = WINDOW_ADDR,
};
#ifdef CONFIG_MTD_PARTITIONS
/* MTD分区信息 */
static struct mtd_partition static_partitions[] =
{
{
.name = "BootLoader", .size = 0x040000, .offset = 0x0 //bootloader存放的区域
} ,
{
.name = "jffs2", .size = 0x0100000, .offset = 0x40000 //内核映像存放的区域
},
};
#endif
static int mtd_parts_nb = 0;
static struct mtd_partition *mtd_parts = 0;
int __init init_s3c2410nor(void)
{
static const char *rom_probe_types[] = PROBETYPES;
const char **type;
const char *part_type = 0;
printk("add by lht.............n");
printk(KERN_NOTICE MSG_PREFIX "0x%08x at 0x%08xn", WINDOW_SIZE, WINDOW_ADDR);
s3c2410nor_map.virt = (unsigned long)ioremap(WINDOW_ADDR, WINDOW_SIZE);//物理->虚拟地址
if (!s3c2410nor_map.virt)
{
printk(MSG_PREFIX "failed to ioremapn");
return - EIO;
}
simple_map_init(&s3c2410nor_map);
mymtd = 0;
type = rom_probe_types;
for (; !mymtd && *type; type++)
{
mymtd = do_map_probe(*type, &s3c2410nor_map);//探测NOR FLASH
}
if (mymtd)
{
mymtd->owner = THIS_MODULE;
mtd_parts = static_partitions;
mtd_parts_nb = ARRAY_SIZE(static_partitions);
part_type = "static";
add_mtd_device(mymtd);
if (mtd_parts_nb == 0)
printk(KERN_NOTICE MSG_PREFIX "no partition info availablen");
else
{
printk(KERN_NOTICE MSG_PREFIX "using %s partition definitionn",
part_type);
add_mtd_partitions(mymtd, mtd_parts, mtd_parts_nb);//添加分区信息
}
return 0;
}
iounmap((void*)s3c2410nor_map.virt);
return - ENXIO;
}
static void __exit cleanup_s3c2410nor(void)
{
if (mymtd)
{
del_mtd_partitions(mymtd); //删除分区
del_mtd_device(mymtd); //删除设备
map_destroy(mymtd);
}
if (s3c2410nor_map.virt)
{
iounmap((void*)s3c2410nor_map.virt);
s3c2410nor_map.virt = 0;
}
}
module_init(init_s3c2410nor);
module_exit(cleanup_s3c2410nor);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("farsihgt lht");
MODULE_DESCRIPTION("Generic configurable MTD map driver");
|
nor flash本来就有地址线,本来就占有128M的空间,映射128M的虚拟空间很正常阿