[U-Boot] [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards

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@gmail.com Pillai, Manikandan mani.pillai@ti.com Syed Mohammed, Khasim khasim@ti.com
and all others who helped with this.
This patch series is against commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7 "Coding style cleanup, update CHANGELOG"
Dirk
[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/Califo...
[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(-)

Dear Dirk,
In message 48ccdd8f.0a4d5e0a.19f3.0311@mx.google.com you wrote:
Subject: [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards
Please negotiate timing of patch submissions with Jean-Christophe to avoid unneeded respins of the patches when he submits his CFG_ changes - I intend to pull these in first on the -next branch.
Best regards,
Wolfgang Denk

Wolfgang Denk wrote:
Dear Dirk,
In message 48ccdd8f.0a4d5e0a.19f3.0311@mx.google.com you wrote:
Subject: [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards
Please negotiate timing of patch submissions with Jean-Christophe to avoid unneeded respins of the patches when he submits his CFG_ changes - I intend to pull these in first on the -next branch.
Wolfgang: Okay, thanks for the hint.
Jean-Christophe: Any proposals how to go on?
All: Any other review comments are welcome independent of patch timing, though.
Regards
Dirk

On 13:11 Sun 14 Sep , Dirk Behme wrote:
Wolfgang Denk wrote:
Dear Dirk,
In message 48ccdd8f.0a4d5e0a.19f3.0311@mx.google.com you wrote:
Subject: [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards
Please negotiate timing of patch submissions with Jean-Christophe to avoid unneeded respins of the patches when he submits his CFG_ changes - I intend to pull these in first on the -next branch.
Wolfgang: Okay, thanks for the hint.
Jean-Christophe: Any proposals how to go on?
I'm preparing the patch series for tomorow normaly.
I'll create a next branch on arm as do Wolfgang to simplify rebase and patch apply.
I'll send an Announce when it's ready.
Best Regards, J.
participants (4)
-
Dirk Behme
-
dirk.behmeï¼ googlemail.com
-
Jean-Christophe PLAGNIOL-VILLARD
-
Wolfgang Denk