README.omap3 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. Summary
  2. =======
  3. This README is about U-Boot support for TI's ARM Cortex-A8 based OMAP3 [1]
  4. family of SoCs. TI's OMAP3 SoC family contains an ARM Cortex-A8. Additionally,
  5. some family members contain a TMS320C64x+ DSP and/or an Imagination SGX 2D/3D
  6. graphics processor and various other standard peripherals.
  7. Currently the following boards are supported:
  8. * OMAP3530 BeagleBoard [2]
  9. * Gumstix Overo [3]
  10. * TI EVM [4]
  11. * OpenPandora Ltd. Pandora [5]
  12. Toolchain
  13. =========
  14. While ARM Cortex-A8 support ARM v7 instruction set (-march=armv7a) we compile
  15. with -march=armv5 to allow more compilers to work. For U-Boot code this has
  16. no performance impact.
  17. Build
  18. =====
  19. * BeagleBoard:
  20. make omap3_beagle_config
  21. make
  22. * Gumstix Overo:
  23. make omap3_overo_config
  24. make
  25. * TI EVM:
  26. make omap3_evm_config
  27. make
  28. * Pandora:
  29. make omap3_pandora_config
  30. make
  31. Custom commands
  32. ===============
  33. To make U-Boot for OMAP3 support NAND device SW or HW ECC calculation, U-Boot
  34. for OMAP3 supports custom user command
  35. nandecc hw/sw
  36. To be compatible with NAND drivers using SW ECC (e.g. kernel code)
  37. nandecc sw
  38. enables SW ECC calculation. HW ECC enabled with
  39. nandecc hw
  40. is typically used to write 2nd stage bootloader (known as 'x-loader') which is
  41. executed by OMAP3's boot rom and therefore has to be written with HW ECC.
  42. For all other commands see
  43. help
  44. Acknowledgements
  45. ================
  46. OMAP3 U-Boot is based on U-Boot tar ball [6] for BeagleBoard and EVM done by
  47. several TI employees.
  48. Links
  49. =====
  50. [1] OMAP3:
  51. http://www.ti.com/omap3 (high volume) and
  52. http://www.ti.com/omap35x (broad market)
  53. [2] OMAP3530 BeagleBoard:
  54. http://beagleboard.org/
  55. [3] Gumstix Overo:
  56. http://www.gumstix.net/Overo/
  57. [4] TI EVM:
  58. http://focus.ti.com/docs/toolsw/folders/print/tmdxevm3503.html
  59. [5] OpenPandora Ltd. Pandora:
  60. http://openpandora.org/
  61. [6] TI OMAP3 U-Boot:
  62. http://beagleboard.googlecode.com/files/u-boot_beagle_revb.tar.gz