博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Starting application at 0x81000000 ...
阅读量:3525 次
发布时间:2019-05-20

本文共 1176 字,大约阅读时间需要 3 分钟。

TI814x 移植uboot时遇到的问题。

根据官方的指导手册《TI81XX PSP UBOOT User Guide》或《DM814x AM387x PSP U-Boot》操作

Boot Over UART

Note

The release package does not contain the binary for UART boot. Please follow the steps mentioned [] for compiling u-boot.min.uart

  1. Switch ON EVM with . When “CCCC” characters appear on TeraTerm window, from the File Menu select Transfer --> XMODEM --> Send (1K mode)
  2. Select “u-boot.min.uart” for the transfer
  3. Press "Reset button" to initiate image download
  4. After image is successfully downloaded, the ROM code will boot it.
  5. Hit enter and get to u-boot prompt “TI-MIN#”
TI_MIN# Loading 2nd stage over UART  
From the U-Boot-MIN prompt
TI_MIN# loadb 0x81000000
From TeraTerm Menu click “File -> Transfer -> Kermit -> Send”.
Select the 2nd stage u-boot image “u-boot.bin” built earlier and click “OPEN” button
Wait for download to complete
TI_MIN# go 0x81000000
You should get 2nd Stage u-boot prompt
TI8148_EVM#问题在上面那句 go 0x81000000 之后出现,Starting application at 0x81000000 ... 或者是还是回到第一阶段,问题的原因是我用的u-boot.bin是在编译u-boot.min.uart时得到的而实际上是要用编译u-boot.min.nand 或 u-boot.min.spi时得到的u-boot.bin,文档没读仔细 上文中提到用的是 Select the 2nd stage u-boot image “u-boot.bin”。  

转载地址:http://kvuhj.baihongyu.com/

你可能感兴趣的文章
线段树详解(单点修改+区间修改和查询)
查看>>
线段树 单点修改+区间修改和查询 例题+代码
查看>>
zcmu-新生宝贝们的第五次试水题解
查看>>
fjut 1862 奇怪数列(判断一个数是否为2的整次方)
查看>>
C++ STL 之 set 与 multiset 的基本用法
查看>>
Powers of two(multiset的运用)
查看>>
并查集入门(普通并查集+带删除并查集+关系并查集)
查看>>
吉首大学第八届“新星杯”大学生程序设计大赛 A:组合数(递推组合+求因子数)
查看>>
吉首大学第八届“新星杯”大学生程序设计大赛 I: 夫子云游(简单搜索)
查看>>
吉首大学第八届“新星杯”大学生程序设计大赛 K: WaWa的难题(找规律)
查看>>
Codeforces Round #533 (Div. 2) C. Ayoub and Lost Array(dp)
查看>>
Codeforces Round #533 (Div. 2) D. Kilani and the Game(bfs)
查看>>
牛客寒假算法基础集训营3 D:处女座的训练(贪心)
查看>>
G:处女座和小姐姐(三)(思维)
查看>>
求最短路径的四种方法(Dijkstra,Floyd,Bellman-Ford,SPFA算法)
查看>>
处女座的比赛资格(拓扑排序求最短路)
查看>>
牛客寒假算法基础集训营4 I:Applese 的回文串(思维)
查看>>
牛客寒假算法基础集训营4 E:Applese 涂颜色(费马小定理+快速幂)
查看>>
牛客寒假算法基础集训营4 C:Applese 走迷宫(bfs)
查看>>
牛客寒假算法基础集训营4 F:Applese 的QQ群(拓扑排序判环)
查看>>