进入一个uboot目录,执行make distcleanmake at91sam9260ek_configmake ARCH=arm CROSS_COMPILE=arm-linux-cp tools/mkimage /usr/bin然后再进入linux-2.6.32中,make uImageARCH...
分类:
其他好文 时间:
2015-07-09 00:39:26
阅读次数:
114
18. Shutdown Controller (SHDWC)
18.1 Description
The Shutdown Controller controls the power supplies VDDIO and VDDCORE and the wake-up detection on debounced input lines.
Shutdown控制电源供给,VDDIO和VDDCO...
分类:
其他好文 时间:
2015-06-25 15:41:08
阅读次数:
121
话不多说,先上代码。
//code path:arch/arm/mach-at91/board-sam9260ek.cMACHINE_START(AT91SAM9260EK, "Atmel AT91SAM9260-EK")
/* Maintainer: Atmel */
.phys_io = AT91_BASE_SYS,
.io_pg_offst = (AT91_VA_BASE_SYS >...
分类:
其他好文 时间:
2015-06-09 17:30:04
阅读次数:
280
linux2.6.30外设等设备,会在上电的时候,整体初始化;然后,设备驱动初始化;再然后,系统运行的时候,设备的热插拔才会被系统识别。。。。
那么,系统上电时的设备初始化,如何进行。如何管理。
为了一探究竟,先从平台设备注册函数看起platform_device_register()
//base_platform.c/**
* platform_device_register - ...
分类:
其他好文 时间:
2015-06-09 17:25:16
阅读次数:
172
二、AT91SAM9260EK
2.1 下载
介绍页:
http://www.at91.com/linux4sam/bin/view/Linux4SAM/LegacyLinuxKernel
下载页:
a)ftp://www.at91.com/pub/linux/2.6.30-at91/
b)http://maxim.org.za...
分类:
系统相关 时间:
2015-03-19 00:58:00
阅读次数:
240
生成u-boot.bin
首先,修改Makefile中的交叉编译器;
然后,执行make.
1.Makefile
ifeq ($(ARCH),arm)
CROSS_COMPILE =
endif
修改为
ifeq ($(ARCH),arm)
CROSS_COMPILE = /opt/crosstool/gcc-3.4.5-glibc-2...
分类:
其他好文 时间:
2015-01-23 18:20:00
阅读次数:
205
at91sam9260ek的移植
— U-boot(V1.3.4)
关于移植在U-boot文档中这样介绍:
README
If the system board that you have is not listed, then you will need
to port U-Boot to your hardware platform. To do this, ...
分类:
其他好文 时间:
2015-01-13 06:48:26
阅读次数:
184