public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards
@ 2008-09-14  9:46 dirk.behme at googlemail.com
  2008-09-14 10:30 ` Wolfgang Denk
  0 siblings, 1 reply; 4+ messages in thread
From: dirk.behme at googlemail.com @ 2008-09-14  9:46 UTC (permalink / raw)
  To: u-boot

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

[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(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards
  2008-09-14  9:46 [U-Boot] [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards dirk.behme at googlemail.com
@ 2008-09-14 10:30 ` Wolfgang Denk
  2008-09-14 11:11   ` Dirk Behme
  0 siblings, 1 reply; 4+ messages in thread
From: Wolfgang Denk @ 2008-09-14 10:30 UTC (permalink / raw)
  To: u-boot

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

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Virtue is a relative term.
	-- Spock, "Friday's Child", stardate 3499.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards
  2008-09-14 10:30 ` Wolfgang Denk
@ 2008-09-14 11:11   ` Dirk Behme
  2008-09-14 12:52     ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 1 reply; 4+ messages in thread
From: Dirk Behme @ 2008-09-14 11:11 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards
  2008-09-14 11:11   ` Dirk Behme
@ 2008-09-14 12:52     ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-09-14 12:52 UTC (permalink / raw)
  To: u-boot

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.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-09-14 12:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-14  9:46 [U-Boot] [PATCH 00/11 v1] ARM: OMAP3: Add support for some of TIs ARM-Cortex A8 OMAP3 boards dirk.behme at googlemail.com
2008-09-14 10:30 ` Wolfgang Denk
2008-09-14 11:11   ` Dirk Behme
2008-09-14 12:52     ` Jean-Christophe PLAGNIOL-VILLARD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox