
Cubietruck
mrhopehub
这个作者很懒,什么都没留下…
展开
-
Cubietruck开发板SPL阶段加载uboot到SDRAM并启动
接着前几篇博客继续分析,原创 2014-04-12 12:39:13 · 2966 阅读 · 0 评论 -
Cubietruck制作可启动SD卡(只测试uboot)
手上有个128M的sd卡,所以就只测试uboot下载uboot代码原创 2014-04-07 22:25:23 · 2303 阅读 · 0 评论 -
Cubietruck开发板SPL启动分析
由uboot顶层makefile中spl/u-boot-spl: tools prepare$(Q)$(MAKE) obj=spl -f $(srctree)/spl/Makefile all可知,进入spl子目录进行make。是怎么找到spl/u-boot-spl: tools prepare的呢?由cubietruck的可启动SD卡格式可知要用到u-boot-spl原创 2014-04-07 16:14:59 · 1102 阅读 · 0 评论 -
Cubietruck开发板SPL实验
注意:是接着前两篇的博客写的原创 2014-04-07 22:58:50 · 686 阅读 · 0 评论 -
Cubietruck开发板SPL阶段的s_init分析
/* do some early init */void s_init(void){#if !defined CONFIG_SPL_BUILD && defined CONFIG_SUN7I /* Enable SMP mode for CPU0, by setting bit 6 of Auxiliary Ctl reg */ asm volatile( "mrc p15, 0,原创 2014-04-09 10:43:16 · 1899 阅读 · 0 评论 -
Cubietruck开发板SPL阶段的preloader_console_init()分析
>原创 2014-04-10 22:31:47 · 1486 阅读 · 0 评论 -
Cubietruck开发板SPL阶段的printf重定向问题
int printf(const char *fmt, ...){ va_list args; uint i; char printbuffer[CONFIG_SYS_PBSIZE];#if !defined(CONFIG_SANDBOX) && !defined(CONFIG_PRE_CONSOLE_BUFFER) if (!gd->have_console) return 0原创 2014-04-11 11:55:15 · 888 阅读 · 0 评论 -
ns16550串口驱动
之前学习的STM32F103的串口时,没有FIFO,而且原创 2014-04-13 11:44:56 · 11619 阅读 · 0 评论