boston: Setup memory ranges in FDT provided to LinuxThe boston memory map isn't suited to the simple "all memory startingfrom 0" approach that the MIPS arch_fixup_fdt() implementation takes.Inste
boston: Setup memory ranges in FDT provided to LinuxThe boston memory map isn't suited to the simple "all memory startingfrom 0" approach that the MIPS arch_fixup_fdt() implementation takes.Instead we need to indicate the first 256MiB of DDR from 0 and the restfrom 0x90000000. Implement ft_board_setup to do that.Signed-off-by: Paul Burton <paul.burton@imgtec.com>Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>Reviewed-by: Simon Glass <sjg@chromium.org>
show more ...
board_f: Rename initdram() to dram_init()This allows us to use the same DRAM init function on all archs. Add adummy function for arc, which does not use DRAM init here.Signed-off-by: Simon Glass
board_f: Rename initdram() to dram_init()This allows us to use the same DRAM init function on all archs. Add adummy function for arc, which does not use DRAM init here.Signed-off-by: Simon Glass <sjg@chromium.org>[trini: Dummy function on nios2]Signed-off-by: Tom Rini <trini@konsulko.com>
board_f: Drop return value from initdram()At present we cannot use this function as an init sequence call without awrapper, since it returns the RAM size. Adjust it to set the RAM size inglobal_d
board_f: Drop return value from initdram()At present we cannot use this function as an init sequence call without awrapper, since it returns the RAM size. Adjust it to set the RAM size inglobal_data instead, and return 0 on success.Signed-off-by: Simon Glass <sjg@chromium.org>Reviewed-by: Stefan Roese <sr@denx.de>
board_f: Drop board_type parameter from initdram()It looks like only cm5200 and tqm8xx use this feature, so we don't reallyneed it in generic code. Drop it and have the users access gd->board_type
board_f: Drop board_type parameter from initdram()It looks like only cm5200 and tqm8xx use this feature, so we don't reallyneed it in generic code. Drop it and have the users access gd->board_typedirectly.Signed-off-by: Simon Glass <sjg@chromium.org>Reviewed-by: Stefan Roese <sr@denx.de>
imgtec: Update MAINTAINERS for more config filesCover all of the boston and malta variations.Signed-off-by: Tom Rini <trini@konsulko.com>
boston: Introduce support for the MIPS Boston development boardThis patch introduces support for building U-Boot to run on the MIPSBoston development board. This is a board built around an FPGA &
boston: Introduce support for the MIPS Boston development boardThis patch introduces support for building U-Boot to run on the MIPSBoston development board. This is a board built around an FPGA & anIntel EG20T Platform Controller Hub, used largely as part of thedevelopment of new CPUs and their software support. It is essentiallythe successor to the older MIPS Malta board.Signed-off-by: Paul Burton <paul.burton@imgtec.com>