发布时间:2017-05-25 15:01:12
对于spi接口的NOR串行Flash来说,理论上24bit的地址模式只能支持最大到16MBytes空间。但是我们单板使用的MX25L25635是32MBytes,但使用的却是是24bit地址模式。仔细看datasheet,发现它使用了两个新命令RDEAR(read extended address register)和WREAR(write entended address register)。这样类似DDR的Bank的模式,通过扩展.........【阅读全文】
发布时间:2017-05-25 15:00:44
单板linux内核添加spi flash驱动后,在shell下敲reboot命令挂死。在内核中的reboot的系统调用中添加打印后,发现最后代码走到了对CPU的寄存器写,让CPU复位。好像看不出有任何问题。联想起之前的文章 "32M的spi接口Flash和24bit地址模式 " (http://blog.chinaunix.net/uid-26598889-id-4304874.html)。CPU启动时是按.........【阅读全文】
发布时间:2017-05-08 18:08:34
OverviewThis How-To is meant to be a starting point for people to learn how access to the uboot environment from userspace.This is my first wiki page so please be benevolent with the formatting :-)Tools neededIn order to modify the uboot environment variables from userspace w.........【阅读全文】
发布时间:2017-05-08 18:07:30
uboot下可以通过命令访问和修改环境变量,但是如果需要在Linux系统下访问这些数据该怎么办呢?其实uboot早就帮我们想好了。 1、编译fw_printenv工具 在你使用的uboot代码中用以下编译指令: make env 这样就可以编译tools/env下.........【阅读全文】