发布时间:2015-09-28 00:59:49
u-boot-2014.07是没有使用kconfig 系统的最后一个uboot版本。从2014.10 开始启动kbuild进行代码配置,并加入了DM(驱动模型)支持。
本文只分析gpio的相关代码的演变。
在uboot的git网页中点击u-boot 2014.07分支,搜索gpio,在搜索结果中看到:
......【阅读全文】
发布时间:2015-09-27 20:35:22
参考另一块板子s5p_goni很容易就能添加MMC功能,
首先复制goni.c中的int board_mmc_init(bd_t *bis)函数到smdkv210.c中,
在smdkv210.h中添加MMC的相关宏:
/* MMC */
#define CONFIG_GENERIC_MMC
#define CONFIG_MMC
#define CONFIG_SDHCI
#define CONFIG_S5P_SDHCI
......【阅读全文】
发布时间:2015-09-27 16:50:19
<br /><br /><br /><div><div class="codeheads"><p>点击(<span style="cursor:pointer;color:red;" onclick="code_hide('code835')">此处</span>)折叠或打开</p></div><div id="code835" class="codeText"><ol style="margin:0 1px 0 0px;padding-left:40px;" start="1" class="dp-css"><li>.........【阅读全文】
发布时间:2015-09-25 04:15:50
修改ethernet结点:
关键是修改reg属性,第一个cell是INDEX端口地址,第3个cell是DATA端口地址。具体含义可以在内核源码中搜索......【阅读全文】