3

我已经在 Raspberry PI 上从https://github.com/gonzoua/u-boot-pi/tree/rpi编译并安装了 u-boot。效果很好。它可以正常启动并且运行良好(请参阅http://arrizza.org/wiki/index.php/RPI_U-boot)。我可以使用可执行文件的 s-rec 版本加载示例应用程序。

现在我想创建一个映像,将其放在 sd 卡上(与 u-boot 映像所在的同一 sd 卡),然后加载并执行该映像。这与 s-rec 过程相同:通过 s-rec 加载图像,然后使用“go”执行,但不是通过串行端口加载,而是从 sd 卡中获取图像。

我试过使用:

load mmc 0 0x0100000 hello_world.bin

接着

go 0x0100000

它加载正常:

U-Boot> fatload mmc 0 0x01000000 hello_world.bin
reading hello_world.bin
594 bytes read in 27222 ms (0 Bytes/s)
U-Boot> go 0x01000000
## Starting application at 0x01000000 ...

但 rPI 会自动重启。

  • 我也尝试过 fatload,结果相同

  • 我尝试使用 ./imagetool-uncompressed.py 创建图像,然后使用 load 或 fatload 去,但没有乐趣

  • 我尝试使用 bootm 加载/fatload,但仍然不行

还有什么可以让我尝试的吗?

约翰

更新:@microMolvi 指出我使用了错误的地址。我重新运行它:

U-Boot> load mmc 0 0x01001000 hello_world.bin 
reading hello_world.bin
594 bytes read in 27200 ms (0 Bytes/s)
U-Boot> go 0x01001000
## Starting application at 0x01001000 ...
<snip>about 100 garbage characters<snip>
<I pressed Enter here>
## Application terminated, rc = 0x0
U-Boot> 

这是 printenv 的输出:

U-Boot> printenv
arch=arm
baudrate=115200
board=rpi_b
board_name=rpi_b
bootargs=dma.dmachans=0x7f35 bcm2708_fb.fbwidth=656 bcm2708_fb.fbheight=416 bcm2708.boardrev=0xe bcm2708.serial=0x4e82105a smsc95xx.macaddr=B8:27:EB:82:10:5A sdhci-bcm2708.emmc_clock_freq=100000000 vc_mem.mem_base=0x1ec00000 vc_mem.mem_size=0x20000000  dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait
bootcmd=if mmc rescan ${mmcdev}; then if run loadbootenv; then run importbootenv; fi; if run loadbootscript; then run bootscript; fi; fi
bootenv=uEnv.txt
bootscript=echo Running bootscript from mmc${mmcdev} ...; source ${loadaddr}
cpu=arm1176
filesize=0x252
importbootenv=echo Importing environment from mmc ...; env import -t $loadaddr $filesize
loadaddr=0x00200000
loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}
loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr
mmcdev=0
soc=bcm2835
stderr=serial,lcd
stdin=serial
stdout=serial,lcd
usbethaddr=B8:27:EB:82:10:5A
vendor=raspberrypi

Environment size: 1092/16380 bytes
U-Boot> 
4

2 回答 2

4

好的,看起来你不能在任何地方加载 bin 文件。

这是我所做的:1)我重新加载了 s-rec 版本

U-Boot> loads
## Ready for S-Record download ...

## First Load Addr = 0x0C100000
## Last  Load Addr = 0x0C100251
## Total Size      = 0x00000252 = 594 Bytes
## Start Addr      = 0x0C100000
U-Boot> 

注意“起始地址”,它是 0x0C10-00000

2)我重置了rPI,然后在0x0C10-0000加载了bin

U-Boot> load mmc 0 0x0C100000 hello_world.bin
reading hello_world.bin
594 bytes read in 15644 ms (0 Bytes/s)

3)并从相同的地址运行它:

U-Boot> go 0x0C100000
## Starting application at 0x0C100000 ...
Example expects ABI version 6
Actual U-Boot ABI version 6
Hello World
argc = 1
argv[0] = "0x0C100000"
argv[1] = "<NULL>"
Hit any key to exit ... 

## Application terminated, rc = 0x0
U-Boot> 

我不确定默认地址 0x0C10-0000 来自哪里,所以此时我不知道如何在编译/链接期间更改它,但它记录在这里:

u-boot-pi-rpi/doc/README.standalone

这表示基于 ARM 的板(如 rPI)在 0x0C10-0000 处加载和启动:应用程序的默认加载和启动地址如下:

                    Load address    Start address
    x86             0x00040000      0x00040000
    PowerPC         0x00040000      0x00040004
    ARM             0x0c100000      0x0c100000
    MIPS            0x80200000      0x80200000
    Blackfin        0x00001000      0x00001000
    NDS32           0x00300000      0x00300000
    Nios II         0x02000000      0x02000000
于 2013-06-22T03:29:53.320 回答
2

在 arch/arm/config.mk 中有:

CONFIG_STANDALONE_LOAD_ADDR = 0xc100000

在文件 examples/standalone/.hello_world.cmd

cmd_examples/standalone/hello_world := arm-linux-gnueabi-ld.bfd   -g -Ttext 0xc100000 -o examples/standalone/hello_world -e hello_world examples/standalone/hello_world.o examples/standalone/libstubs.o -L /usr/lib/gcc-cross/arm-linux-gnueabi/4.7 -lgcc

这里 -Ttext 是 0xc100000。这意味着 hello_world 入口地址是 0xc100000。所以 hello.bin 必须加载到内存地址 0xc100000。

于 2014-10-23T07:40:12.453 回答