2 Notes for the MIPS architecture port of U-Boot
7 http://www.denx.de/wiki/DULG/ELDK
10 http://www.emdebian.org/crosstools.html
11 Embedded Debian -- Cross-development toolchains
13 http://buildroot.uclibc.org/
19 * Little endian build problem
21 If use non-ELDK toolchains, -EB will be set to CPPFLAGS. Therefore all
22 objects will be generated in big-endian format.
24 * Cache incoherency issue caused by do_bootelf_exec() at cmd_elf.c
26 Cache will be disabled before entering the loaded ELF image without
27 writing back and invalidating cache lines. This leads to cache
28 incoherency in most cases, unless the code gets loaded after U-Boot
29 re-initializes the cache. The more common uImage 'bootm' command does
30 not suffer this problem.
32 [workaround] To avoid this cache incoherency,
33 1) insert flush_cache(all) before calling dcache_disable(), or
34 2) fix dcache_disable() to do both flushing and disabling cache.
36 * Note that Linux users need to kill dcache_disable() in do_bootelf_exec()
37 or override do_bootelf_exec() not to disable I-/D-caches, because most
38 Linux/MIPS ports don't re-enable caches after entering kernel_entry.
43 * Probe CPU types, I-/D-cache and TLB size etc. automatically
45 * Secondary cache support missing
47 * Centralize the link directive files
49 * Initialize TLB entries redardless of their use
51 * R2000/R3000 class parts are not supported
53 * Limited testing across different MIPS variants
55 * Due to cache initialization issues, the DRAM on board must be
56 initialized in board specific assembler language before the cache init
57 code is run -- that is, initialize the DRAM in lowlevel_init().