本文主要是介绍需要仔细研究的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#ifdef CONFIG_USE_IRQ /*如果定义了CONFIG_USE_IRQ*/
/* IRQ stack memory (calculated at run-time) */
.globl IRQ_STACK_START /*预处理标号 目的:让IRQ_STACK_START指向地址0x0badc0de(这个需要根据硬件更改)*/
IRQ_STACK_START:
.word 0x0badc0de
/* IRQ stack memory (calculated at run-time) */
/*预处理标号 目的:让FIQ_STACK_START指向地址0x0badc0de(这个需要根据硬件更改)*/
.globl FIQ_STACK_START
FIQ_STACK_START:
.word 0x0badc0de
#endif
嵌入式Linux应用开发完全手册读书笔记(内存管理单元MMU) 要细细研究
U
+#if defined(CONFIG_S3C2440)
+ /* FCLK:HCLK:PCLK = 1:4:8 */
+ ldr r0, =CLKDIVN
+ mov r1, #5
+ str r1, [r0]
+
+ mrc p15, 0, r1, c1, c0, 0
+ orr r1, r1, #0xc0000000
+ mcr p15, 0, r1, c1, c0, 0
+
+
+ mov r1, #CLK_CTL_BASE
+ mov r2, #MDIV_405
+ add r2, r2, #PSDIV_405
+ str r2, [r1, #0x04] /* MPLLCON tekkaman */
u-boot-2009.08在mini2440上的移植
本篇文章来源于 Linux公社网站(www.linuxidc.com) 原文链接:http://www.linuxidc.com/Linux/2011-05/35982p7.htm
u-boot-2010.12移植到2440
本篇文章来源于 Linux公社网站(www.linuxidc.com) 原文链接:http://www.linuxidc.com/Linux/2011-02/32772p3.htm
ARM+LINUX移植攻略 基于TE2440II开发板
http://blog.csdn.net/woshixingaaa/article/details/6190896
S3C2440-LCD基础
http://www.eechina.com/thread-59916-1-1.html
http://www.linuxidc.com/Linux/2011-03/33600p3.htm
http://jarson.xtreemhost.com/2011/04/uboot%e5%90%af%e5%8a%a8logo/
嵌入式Linux之我行 http://blog.chinaunix.net/space.php?do=serial&uid=22174347&page=2
U-boot给kernel传参数和kernel读取参数—struct tag (以及补充)
http://blog.csdn.net/lanmanck/article/details/4294685
关于u-boot引导内核出现“Error: unrecognized/unsupported machine ID (r1 = 0x33f4fee8)”的问题
http://www.latelee.org/porting-uboot/145-u-boot-porting-machine-id.html
内核组件初始化体系结构
http://www.cnitblog.com/zouzheng/archive/2008/08/04/47576.html
http://download.csdn.net/tag/ALSA%E5%A3%B0%E5%8D%A1%E9%A9%B1%E5%8A%A8%E5%8E%9F%E7%90%86%E5%88%86%E6%9E%90-/orderbypubdate
FLASH驱动分析.rar 0
http://blog.chinaunix.net/space.php?uid=20602659&do=blog&frmd=0&classid=135239&view=me
http://blog.csdn.net/zhangqingsup/article/details/6335550 新的博客
FileZilla是一个免费开源且跨平台的FTP解决方案,分为客户端版本和服务器版本,具备所有的FTP软件功能。在Windows, Linux, MacOS X下的均有对应的版本。软件许可证为GPL。可控性、有条理的界面和管理多站点的简化方式使得Filezilla客户端版成为一个方便高效的FTP客户端工具,而FileZilla Server则是一个小巧并且可靠的支持FTP&SFTP的FTP服务器软件
这篇关于需要仔细研究的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!