I'm trying to port u-boot to run on a custom board. The CPU is AMD au1550. I'm a newbie on this and I'd like to get some help.
When I look at the map file after compilation, I noticed the addresses
has extra 0's in front of it. I haven't been able to successfully run
the u-boot and believe this is one of the problems. Where do I specify
the size so that the start address will be 0xbfc0 0000 and not 0x0000
0000 bfc0 0000?
Memory Configuration
Name
Origin
Length
Attributes
*default* 0x0000000000000000 0xffffffffffffffff
Linker script and memory map
0x0000000000000000
. = 0x0
0x0000000000000000
. = ALIGN (0x4)
.text 0x00000000bfc00000 0x1b210
*(.text)
.text
0x00000000bfc00000 0x550 cpu/mips/start.o
0x00000000bfc00488
relocate_code
0x00000000bfc00000
_start
Thanks in advance!