README.omap3 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. * TI/Logic PD Zoom MDK [6]
  13. Toolchain
  14. =========
  15. While ARM Cortex-A8 support ARM v7 instruction set (-march=armv7a) we compile
  16. with -march=armv5 to allow more compilers to work. For U-Boot code this has
  17. no performance impact.
  18. Build
  19. =====
  20. * BeagleBoard:
  21. make omap3_beagle_config
  22. make
  23. * Gumstix Overo:
  24. make omap3_overo_config
  25. make
  26. * TI EVM:
  27. make omap3_evm_config
  28. make
  29. * Pandora:
  30. make omap3_pandora_config
  31. make
  32. * Zoom MDK:
  33. make omap3_zoom1_config
  34. make
  35. Custom commands
  36. ===============
  37. To make U-Boot for OMAP3 support NAND device SW or HW ECC calculation, U-Boot
  38. for OMAP3 supports custom user command
  39. nandecc hw/sw
  40. To be compatible with NAND drivers using SW ECC (e.g. kernel code)
  41. nandecc sw
  42. enables SW ECC calculation. HW ECC enabled with
  43. nandecc hw
  44. is typically used to write 2nd stage bootloader (known as 'x-loader') which is
  45. executed by OMAP3's boot rom and therefore has to be written with HW ECC.
  46. For all other commands see
  47. help
  48. Acknowledgements
  49. ================
  50. OMAP3 U-Boot is based on U-Boot tar ball [7] for BeagleBoard and EVM done by
  51. several TI employees.
  52. Links
  53. =====
  54. [1] OMAP3:
  55. http://www.ti.com/omap3 (high volume) and
  56. http://www.ti.com/omap35x (broad market)
  57. [2] OMAP3530 BeagleBoard:
  58. http://beagleboard.org/
  59. [3] Gumstix Overo:
  60. http://www.gumstix.net/Overo/
  61. [4] TI EVM:
  62. http://focus.ti.com/docs/toolsw/folders/print/tmdxevm3503.html
  63. [5] OpenPandora Ltd. Pandora:
  64. http://openpandora.org/
  65. [6] TI/Logic PD Zoom MDK:
  66. http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
  67. [7] TI OMAP3 U-Boot:
  68. http://beagleboard.googlecode.com/files/u-boot_beagle_revb.tar.gz