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 | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 18 | * OpenPandora Ltd. Pandora [5] |
| 19 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 20 | * TI/Logic PD Zoom MDK [6] |
| 21 | |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 22 | Toolchain |
| 23 | ========= |
| 24 | |
| 25 | While ARM Cortex-A8 support ARM v7 instruction set (-march=armv7a) we compile |
| 26 | with -march=armv5 to allow more compilers to work. For U-Boot code this has |
| 27 | no performance impact. |
| 28 | |
| 29 | Build |
| 30 | ===== |
| 31 | |
| 32 | * BeagleBoard: |
| 33 | |
| 34 | make omap3_beagle_config |
| 35 | make |
| 36 | |
Dirk Behme | 9d0fc81 | 2009-01-28 21:39:57 +0100 | [diff] [blame] | 37 | * Gumstix Overo: |
| 38 | |
| 39 | make omap3_overo_config |
| 40 | make |
| 41 | |
Dirk Behme | ad9bc8e | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 42 | * TI EVM: |
| 43 | |
| 44 | make omap3_evm_config |
| 45 | make |
| 46 | |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 47 | * Pandora: |
| 48 | |
| 49 | make omap3_pandora_config |
| 50 | make |
| 51 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 52 | * Zoom MDK: |
| 53 | |
| 54 | make omap3_zoom1_config |
| 55 | make |
| 56 | |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 57 | Custom commands |
| 58 | =============== |
| 59 | |
| 60 | To make U-Boot for OMAP3 support NAND device SW or HW ECC calculation, U-Boot |
| 61 | for OMAP3 supports custom user command |
| 62 | |
| 63 | nandecc hw/sw |
| 64 | |
| 65 | To be compatible with NAND drivers using SW ECC (e.g. kernel code) |
| 66 | |
| 67 | nandecc sw |
| 68 | |
| 69 | enables SW ECC calculation. HW ECC enabled with |
| 70 | |
| 71 | nandecc hw |
| 72 | |
| 73 | is typically used to write 2nd stage bootloader (known as 'x-loader') which is |
| 74 | executed by OMAP3's boot rom and therefore has to be written with HW ECC. |
| 75 | |
| 76 | For all other commands see |
| 77 | |
| 78 | help |
| 79 | |
| 80 | Acknowledgements |
| 81 | ================ |
| 82 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 83 | OMAP3 U-Boot is based on U-Boot tar ball [7] for BeagleBoard and EVM done by |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 84 | several TI employees. |
| 85 | |
| 86 | Links |
| 87 | ===== |
| 88 | |
| 89 | [1] OMAP3: |
| 90 | |
| 91 | http://www.ti.com/omap3 (high volume) and |
| 92 | http://www.ti.com/omap35x (broad market) |
| 93 | |
| 94 | [2] OMAP3530 BeagleBoard: |
| 95 | |
| 96 | http://beagleboard.org/ |
| 97 | |
Dirk Behme | 9d0fc81 | 2009-01-28 21:39:57 +0100 | [diff] [blame] | 98 | [3] Gumstix Overo: |
| 99 | |
| 100 | http://www.gumstix.net/Overo/ |
| 101 | |
Dirk Behme | ad9bc8e | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 102 | [4] TI EVM: |
| 103 | |
| 104 | http://focus.ti.com/docs/toolsw/folders/print/tmdxevm3503.html |
| 105 | |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 106 | [5] OpenPandora Ltd. Pandora: |
| 107 | |
| 108 | http://openpandora.org/ |
| 109 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 110 | [6] TI/Logic PD Zoom MDK: |
| 111 | |
| 112 | http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit |
| 113 | |
| 114 | [7] TI OMAP3 U-Boot: |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 115 | |
| 116 | http://beagleboard.googlecode.com/files/u-boot_beagle_revb.tar.gz |