public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/8] ST-Ericsson Ux500 support
@ 2010-03-18  4:20 Rabin Vincent
  2010-03-18  4:20 ` [U-Boot] [PATCH 1/8] Nomadik: move timer code to drivers/misc Rabin Vincent
                   ` (9 more replies)
  0 siblings, 10 replies; 26+ messages in thread
From: Rabin Vincent @ 2010-03-18  4:20 UTC (permalink / raw)
  To: u-boot

This series adds base support for ST-Ericsson's Ux500 series of Cortex-A9 based
SoCs.  Several peripherals are shared with the Nomadik family, for which
support already exists in U-Boot.

Note: The series must be applied on top of the patch "[PATCH V4] Nomadik: fix
reset_timer()" posted by Alessandro Rubini on 2009-11-25:
http://lists.denx.de/pipermail/u-boot/2009-November/064800.html
Cc: Alessandro Rubini <rubini@unipv.it>

Rabin Vincent (8):
  Nomadik: move timer code to drivers/misc
  Nomadik: move gpio driver to drivers/gpio
  nomadik_gpio: get base address from platform code
  nomadik_mtu: support configurable clock rates
  ARM Cortex A8: ifdef code calling lowlevel init
  ux500: add SoC-specific code
  pl01x: add support for Ux500 variant of pl011
  mop500: add board-specific files

 MAINTAINERS                                        |    4 +
 MAKEALL                                            |    1 +
 Makefile                                           |    3 +
 board/st/nhk8815/nhk8815.c                         |    9 ++-
 board/stericsson/mop500/Makefile                   |   54 ++++++++++
 board/stericsson/mop500/config.mk                  |   23 ++++
 board/stericsson/mop500/mop500.c                   |   72 +++++++++++++
 cpu/arm926ejs/nomadik/Makefile                     |    1 -
 cpu/arm_cortexa8/start.S                           |    4 +-
 cpu/arm_cortexa8/ux500/Makefile                    |   45 ++++++++
 .../gpio.h => cpu/arm_cortexa8/ux500/clock.c       |   48 ++++++---
 .../gpio.h => cpu/arm_cortexa8/ux500/cpu.c         |   41 +++++---
 drivers/gpio/Makefile                              |    1 +
 .../nomadik/gpio.c => drivers/gpio/nomadik_gpio.c  |   11 +--
 drivers/misc/Makefile                              |    1 +
 .../nomadik/timer.c => drivers/misc/nomadik_mtu.c  |   24 +++--
 drivers/serial/serial_pl01x.c                      |    8 ++
 drivers/serial/serial_pl01x.h                      |    1 +
 include/asm-arm/arch-ux500/clock.h                 |   72 +++++++++++++
 include/asm-arm/arch-ux500/hardware.h              |   78 ++++++++++++++
 include/configs/mop500.h                           |  107 ++++++++++++++++++++
 include/configs/nhk8815.h                          |   11 ++-
 .../arch-nomadik/gpio.h => nomadik_gpio.h}         |    2 +
 .../{asm-arm/arch-nomadik/mtu.h => nomadik_mtu.h}  |    0
 24 files changed, 563 insertions(+), 58 deletions(-)
 create mode 100644 board/stericsson/mop500/Makefile
 create mode 100644 board/stericsson/mop500/config.mk
 create mode 100644 board/stericsson/mop500/mop500.c
 create mode 100644 cpu/arm_cortexa8/ux500/Makefile
 copy include/asm-arm/arch-nomadik/gpio.h => cpu/arm_cortexa8/ux500/clock.c (52%)
 copy include/asm-arm/arch-nomadik/gpio.h => cpu/arm_cortexa8/ux500/cpu.c (58%)
 rename cpu/arm926ejs/nomadik/gpio.c => drivers/gpio/nomadik_gpio.c (92%)
 rename cpu/arm926ejs/nomadik/timer.c => drivers/misc/nomadik_mtu.c (81%)
 create mode 100644 include/asm-arm/arch-ux500/clock.h
 create mode 100644 include/asm-arm/arch-ux500/hardware.h
 create mode 100644 include/configs/mop500.h
 rename include/{asm-arm/arch-nomadik/gpio.h => nomadik_gpio.h} (97%)
 rename include/{asm-arm/arch-nomadik/mtu.h => nomadik_mtu.h} (100%)

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

end of thread, other threads:[~2010-04-17 21:46 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-18  4:20 [U-Boot] [PATCH 0/8] ST-Ericsson Ux500 support Rabin Vincent
2010-03-18  4:20 ` [U-Boot] [PATCH 1/8] Nomadik: move timer code to drivers/misc Rabin Vincent
2010-03-28 17:30   ` Tom
2010-04-06 11:16     ` Rabin VINCENT
2010-04-06 11:30       ` Alessandro Rubini
2010-03-18  4:28 ` [U-Boot] [PATCH 2/8] Nomadik: move gpio driver to drivers/gpio Rabin Vincent
2010-03-28 17:32   ` Tom
2010-04-06 11:25     ` Rabin VINCENT
2010-03-18  5:02 ` [U-Boot] [PATCH 3/8] nomadik_gpio: get base address from platform code Rabin Vincent
2010-03-28 17:35   ` Tom
2010-03-18  5:08 ` [U-Boot] [PATCH 4/8] nomadik_mtu: support configurable clock rates Rabin Vincent
2010-03-28 17:36   ` Tom
2010-03-18  5:10 ` [U-Boot] [PATCH 5/8] ARM Cortex A8: ifdef code calling lowlevel init Rabin Vincent
2010-03-28 17:38   ` Tom
2010-03-18  5:10 ` [U-Boot] [PATCH 6/8] ux500: add SoC-specific code Rabin Vincent
2010-03-28 17:42   ` Tom
2010-04-07  6:15     ` Rabin VINCENT
2010-03-18  5:10 ` [U-Boot] [PATCH 7/8] pl01x: add support for Ux500 variant of pl011 Rabin Vincent
2010-03-28 17:45   ` Tom
2010-03-18  5:33 ` [U-Boot] [PATCH 8/8] mop500: add board-specific files Rabin Vincent
2010-03-28 17:49   ` Tom
2010-04-08 13:41     ` Rabin VINCENT
2010-04-09 22:28       ` Wolfgang Denk
2010-04-17 21:46       ` Tom Rix
2010-03-21 19:42 ` [U-Boot] [PATCH 0/8] ST-Ericsson Ux500 support Wolfgang Denk
2010-03-28 17:27 ` Tom

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