mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
28b00324be
Initial U-Boot support for the DaVinci DM355 EVM. This is a board from Spectrum Digital. Board docs include schematic and firmware for its microcontroller: http://c6000.spectrumdigital.com/evmdm355/revd/ Most of the DM355 chip is fully documented by TI, the most notable exception being the MPEG/JPEG coprocessor (programmable using codecs available at no cost from TI), which is omitted from its DM335 sibling: http://focus.ti.com/docs/prod/folders/print/tms320dm355.html This version can boot from the on-board DM9000 Ethernet chip, after being loaded (from NAND, MMC/SD, or UART). In the near future, NAND and USB support could be added ... NAND support is being held back until the support for the 4-bit ECC hardware is ready. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
11 lines
310 B
Makefile
11 lines
310 B
Makefile
#
|
|
# Spectrum Digital DM355 EVM board
|
|
# dm355evm board has 1 bank of 128 MB DDR RAM
|
|
# Physical Address: 8000'0000 to 8800'0000
|
|
#
|
|
# Linux Kernel is expected to be at 8000'8000, entry 8000'8000
|
|
# (mem base + reserved)
|
|
#
|
|
|
|
#Provide at least 16MB spacing between us and the Linux Kernel image
|
|
TEXT_BASE = 0x81080000
|