[U-Boot] [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards
dirk.behme at googlemail.com
dirk.behme at googlemail.com
Sun Sep 14 11:46:52 CEST 2008
Subject: [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards
This patch series adds U-Boot v1 support for some of TI's ARM-Cortex A8 based OMAP3 boards. These are BeagleBoard [1][2], EVM [3] and Overo [4].
The patch series is based on U-Boot tar ball [5] for BeagleBoard and EVM done by several TI employees.
To be able to easily add new boards, most of the code is common for all boards. After the header files (patches 1-3) and the common code (patches 4-6), support and drivers for NAND, MMC and I2C is added (patches 4-8). Patches 9-11 then introduce the individual board support for Beagle, EVM and Overo.
As discussed earlier on this list, we compile for armv5 to be compatible with existing toolchains.
This patch adds ~300k of new code, for changed files, see below.
Thanks to
Steve Sakoman <sakoman at gmail.com>
Pillai, Manikandan <mani.pillai at ti.com>
Syed Mohammed, Khasim <khasim at ti.com>
and all others who helped with this.
This patch series is against commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7 "Coding style cleanup, update CHANGELOG"
Dirk
[1] http://beagleboard.org/
[2] http://elinux.org/BeagleBoard
[3] http://focus.ti.com/docs/toolsw/folders/print/tmdxevm3503.html
[4] http://www.bizjournals.com/sanjose/prnewswire/press_releases/national/California/2008/07/28/LAM036
[5] http://beagleboard.googlecode.com/files/u-boot_beagle_revb.tar.gz
Makefile | 14 +-
board/omap3/beagle/Makefile | 46 ++
board/omap3/beagle/beagle.c | 113 +++
board/omap3/beagle/config.mk | 17 +
board/omap3/beagle/u-boot.lds | 63 ++
board/omap3/evm/Makefile | 46 ++
board/omap3/evm/config.mk | 17 +
board/omap3/evm/evm.c | 199 ++++++
board/omap3/evm/u-boot.lds | 63 ++
board/omap3/overo/Makefile | 46 ++
board/omap3/overo/config.mk | 12 +
board/omap3/overo/overo.c | 119 ++++
board/omap3/overo/u-boot.lds | 63 ++
common/cmd_nand.c | 28 +-
cpu/omap3/Makefile | 45 ++
cpu/omap3/board.c | 294 ++++++++
cpu/omap3/clock.c | 305 ++++++++
cpu/omap3/config.mk | 36 +
cpu/omap3/cpu.c | 221 ++++++
cpu/omap3/interrupts.c | 304 ++++++++
cpu/omap3/lowlevel_init.S | 360 ++++++++++
cpu/omap3/mem.c | 301 ++++++++
cpu/omap3/mmc.c | 557 +++++++++++++++
cpu/omap3/nand.c | 399 +++++++++++
cpu/omap3/start.S | 522 ++++++++++++++
cpu/omap3/sys_info.c | 314 +++++++++
cpu/omap3/syslib.c | 72 ++
drivers/i2c/Makefile | 1 +
drivers/i2c/omap24xx_i2c.c | 132 ++--
drivers/mtd/nand/nand_base.c | 143 ++++-
drivers/net/Makefile | 1 +
examples/Makefile | 6 +-
include/asm-arm/arch-omap3/bits.h | 48 ++
include/asm-arm/arch-omap3/clocks.h | 62 ++
include/asm-arm/arch-omap3/clocks_omap3.h | 101 +++
include/asm-arm/arch-omap3/cpu.h | 250 +++++++
include/asm-arm/arch-omap3/i2c.h | 128 ++++
include/asm-arm/arch-omap3/mem.h | 220 ++++++
include/asm-arm/arch-omap3/mmc.h | 235 ++++++
include/asm-arm/arch-omap3/mmc_host_def.h | 166 +++++
include/asm-arm/arch-omap3/mux.h | 1094 +++++++++++++++++++++++++++++
include/asm-arm/arch-omap3/omap3.h | 135 ++++
include/asm-arm/arch-omap3/sys_proto.h | 71 ++
include/configs/omap3_beagle.h | 292 ++++++++
include/configs/omap3_evm.h | 327 +++++++++
include/configs/omap3_overo.h | 283 ++++++++
net/eth.c | 5 +-
47 files changed, 8216 insertions(+), 60 deletions(-)
More information about the U-Boot
mailing list