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