概述
函数
int norflash_open(const char *name, struct device **device, void *arg);
描述
norflash_open函数是初始化flash硬件,在用户使用flash的API接口首先需要打开才能使用flash API(多次打开没有影响)
参数
name、device、arg为NULL即可。
返回值
0:成功 其他:失败
函数
int norflash_origin_read(u8 *buf, u32 offset, u32 len);
描述
norflash_origin_read函数是直接SPI读取flash函数,用户应该使用的API接口。当通过norflash_write函数写,则norflash_origin_read读取与写的相同,需要加解密则应用层用户自行处理。
参数
buf:数据地址,offsetf:flash地址,len:数据长度
返回值
0:成功 其他:失败
函数
int norflash_read(struct device *device, void *buf, u32 len, u32 offset);
描述
norflash_read函数是CPU读取flash,用户应使用该API接口时需要注意:读写地址小于VM区域时会做加解密处理。
参数
device为NULL,buf:数据地址,offsetf:flash地址,len:数据长度
返回值
0:成功 其他:失败
函数
int norflash_write(struct device *device, void *buf, u32 len, u32 offset);
描述
norflash_write函数是直接SPI写flash函数,用户应该使用的API接口。当通过norflash_write函数写,则norflash_origin_read读取与写的相同,需要加解密则应用层用户自行处理。
参数
device为NULL,buf:数据地址,offsetf:flash地址,len:数据长度
返回值
0:成功 其他:失败
最后
以上就是甜甜过客为你收集整理的杰理之flash应用层使用API接口【篇】的全部内容,希望文章能够帮你解决杰理之flash应用层使用API接口【篇】所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复