发布时间:2013-10-10 13:43:04
** 擦除内核nand erase kernelNAND erase: device 0 offset 0x300000, size 0x400000Erasing at 0x6e0000 -- 100% complete.OK** 下载内核TQ2416 # tftp zImage.bin** 烧写内核TQ2416 # nand write 0x30000000 0x300000 0x400000NAND write: device 0 offset 0x300000, size 0x400000 4194304 bytes written.........【阅读全文】
发布时间:2013-05-27 22:20:07
来自:http://blog.csdn.net/woshixingaaa/article/details/6574224这篇文档主要介绍spi数据传输过程。当应用层要向设备传输数据的时候,会通过ioctl向设备驱动发送传输数据的命令。如图,向SPI从设备发送读写命令,实际的读写操作还是调用了主机控制器驱动的数据传输函数。transfer函数用于spi的IO传输。.........【阅读全文】
发布时间:2013-05-23 14:42:49
用arm-none-linux-gnueabi-gcc 编译uboot是抱怨 add __aeabi_unwind_cpp_pr0() 解决补丁,以前一直认为是编译器不匹配针对u-boot-2009.08diff --git a/lib_arm/eabi_compat.c b/lib_arm/eabi_compat.cindex 86eacf1..eb3e26d 100755--- a/lib_arm/eabi_compat.c+++ b/lib_arm/eabi_compat.c@@ -16,3 +16,8 @@ int .........【阅读全文】
发布时间:2013-05-19 19:00:49
编写Nor map驱动-rwxr-xr-x 1enzo enzo 253K 5月 18 16:32 u-boot.binNor flash前256K存放uboot,所以驱动中定义的mtd_partition 要把uboot的空间留出来,不要破坏uboot /* * mini2440 nor flash mappings of chips in physical memory.........【阅读全文】