发布时间:2013-10-17 16:58:07
l3总线地址模式是用于选择设备和定义目标寄存器,在这种模式下,8位数据高6位是设备地址(uda1341的地址固定为000101),低两位是数据模式下选择的寄存器(00:data0,01:data1,10:status)。只要没有再改变地址模式下的数据,则数据模式下的数据始终是传输到上一个地址模式所定义的寄存器内。地址模.........
发布时间: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.........