
uboot
huhuolianmeng
爱好电子,正在进军嵌入式,
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Uboot移植(smart210)
初步移植:在基本的基础之上移植 1.#define IS_SAMSUNG_TYPE(type, id) \ static inline int cpu_is_##type(void) \ { \ return s5p_cpu_id == id ? 1 : 0; \ } IS_SA原创 2017-05-01 21:05:05 · 1017 阅读 · 0 评论 -
移植2013Uboot启动信息如下:有些是自己添加的:仅供参考
移植2013Uboot启动信息如下:有些是自己添加的:仅供参考; 注意自己的串口一定要修改,在配置文件中:s5p_goni_.h 或则smdkv210_single.h Goni # Uart OK DDR OK OKU-Boot 2013.10 (May 01 2017 - 20:06:45)for wdh210CPU: S5PV210@1000MHz(OK!) Board: Wdh原创 2017-05-01 21:08:22 · 354 阅读 · 0 评论 -
uboot中SD 卡驱动移植
uboot中SD 卡驱动移植:2013版本的1.\u-boot-2013.10\drivers\mmc\ mmc.c和C:\u-boot-2013.10\board\samsung\goni\goni.c C:\u-boot-2013.10\arch\arm\include\asm\arch-s5pc1xx\mmc.h C:\u-boot-2013.10\drivers\mmc\s5p_sdhc原创 2017-05-03 17:02:37 · 770 阅读 · 0 评论 -
大小端模式详解
大小端模式的测试:随便找一个裸机代码测试即可:下面以pwm.bin例子1.汇编代码:arm-linux-objdump -S pwm.elf | lessd0020010 <_start>: d0020010: e59f0020 ldr r0, [pc, #32] ; d0020038 <_start+0x28>2.hexdump -C 210.bin(是不是原创 2017-05-03 20:20:42 · 832 阅读 · 0 评论 -
UBOOT SD卡搬运到DDR中
UBOOT SD卡搬运到DDR中去;;;;代码实现::typedef unsigned int u32; typedef unsigned long ulong;typedef unsigned int (*copy_sd_mmc_to_mem) (u32 channel, u32 start_block, unsigned char block_size, u32 *trg原创 2017-05-03 16:53:14 · 1092 阅读 · 0 评论