public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [IXP42x PATCH series v5 00/17] Overview
@ 2011-05-22 21:59 Michael Schwingen
  2011-05-22 21:59 ` [U-Boot] [IXP42x PATCH series v5 01/17] add XScale sub architecture (IXP/PXA) to maintainer list Michael Schwingen
                   ` (17 more replies)
  0 siblings, 18 replies; 23+ messages in thread
From: Michael Schwingen @ 2011-05-22 21:59 UTC (permalink / raw)
  To: u-boot

Hi,

this is V5 of the IXP42x patch series - it is now based on Marek's
u-boot-pxa.git, with one additional fix:
 - fix one missing I/O accessor in get_ticks() in Patch #0004

cu
Michael

Michael Schwingen (17):
  add XScale sub architecture (IXP/PXA) to maintainer list
  add support for IXP42x Rev. B1 and newer
  trigger hardware watchdog in IXP42x serial driver
  Fix IXP code to work after relocation was added
  fix "depend" target in npe directory
  support CONFIG_SYS_LDSCRIPT on ARM
  use -ffunction-sections / --gc-sections on IXP42x
  update/fix AcTux1 board
  update/fix AcTux2 board
  update/fix AcTux3 board
  update/fix AcTux4 board
  IXP NPE: add support for fixed-speed MII ports
  add dvlhost (dLAN 200 AV Wireless G) board
  update/fix IXDP425 / IXDPG425 boards
  update/fix PDNB3 board
  IXP42x PCI rewrite
  run arm_pci_init after relocation

 MAINTAINERS                               |   45 ++-
 arch/arm/config.mk                        |    7 +
 arch/arm/cpu/ixp/config.mk                |    5 +
 arch/arm/cpu/ixp/cpu.c                    |    5 -
 arch/arm/cpu/ixp/npe/Makefile             |    1 +
 arch/arm/cpu/ixp/npe/npe.c                |   74 +++--
 arch/arm/cpu/ixp/start.S                  |   59 +---
 arch/arm/cpu/ixp/timer.c                  |  124 +++---
 arch/arm/cpu/ixp/u-boot.lds               |    8 +-
 arch/arm/include/asm/arch-ixp/ixp425.h    |    5 +-
 arch/arm/include/asm/arch-ixp/ixp425pci.h |  130 +------
 arch/arm/include/asm/global_data.h        |    3 +
 arch/arm/lib/board.c                      |    6 +-
 board/actux1/actux1.c                     |  105 +++---
 board/actux1/config.mk                    |    4 -
 board/actux1/u-boot.lds                   |   41 ++-
 board/actux2/actux2.c                     |   93 +++---
 board/actux2/config.mk                    |    4 -
 board/actux2/u-boot.lds                   |   46 ++-
 board/actux3/actux3.c                     |  120 +++---
 board/actux3/config.mk                    |    4 -
 board/actux3/u-boot.lds                   |   52 ++-
 board/actux4/actux4.c                     |  103 +++--
 board/actux4/config.mk                    |    4 -
 board/dvlhost/Makefile                    |   50 +++
 board/dvlhost/dvlhost.c                   |  130 ++++++
 board/dvlhost/dvlhost_hw.h                |   47 +++
 board/dvlhost/u-boot.lds                  |   87 ++++
 board/dvlhost/watchdog.c                  |   43 ++
 board/ixdp425/config.mk                   |    2 -
 board/ixdp425/flash.c                     |  427 --------------------
 board/ixdp425/ixdp425.c                   |  155 +++++++-
 board/prodrive/pdnb3/config.mk            |    2 -
 boards.cfg                                |    8 +-
 drivers/pci/pci.c                         |    4 -
 drivers/pci/pci_indirect.c                |   13 +-
 drivers/pci/pci_ixp.c                     |  612 ++++++++++-------------------
 drivers/serial/serial_ixp.c               |    7 +-
 include/configs/actux1.h                  |   62 ++--
 include/configs/actux2.h                  |   35 ++-
 include/configs/actux3.h                  |   37 ++-
 include/configs/actux4.h                  |   39 ++-
 include/configs/dvlhost.h                 |  248 ++++++++++++
 include/configs/ixdp425.h                 |  196 +++++++---
 include/configs/ixdpg425.h                |   11 +-
 include/configs/pdnb3.h                   |   10 +-
 46 files changed, 1689 insertions(+), 1584 deletions(-)
 delete mode 100644 board/actux1/config.mk
 delete mode 100644 board/actux2/config.mk
 delete mode 100644 board/actux3/config.mk
 delete mode 100644 board/actux4/config.mk
 create mode 100644 board/dvlhost/Makefile
 create mode 100644 board/dvlhost/dvlhost.c
 create mode 100644 board/dvlhost/dvlhost_hw.h
 create mode 100644 board/dvlhost/u-boot.lds
 create mode 100644 board/dvlhost/watchdog.c
 delete mode 100644 board/ixdp425/config.mk
 delete mode 100644 board/ixdp425/flash.c
 delete mode 100644 board/prodrive/pdnb3/config.mk
 create mode 100644 include/configs/dvlhost.h

-- 
1.7.2.5

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

end of thread, other threads:[~2011-05-31 20:21 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-22 21:59 [U-Boot] [IXP42x PATCH series v5 00/17] Overview Michael Schwingen
2011-05-22 21:59 ` [U-Boot] [IXP42x PATCH series v5 01/17] add XScale sub architecture (IXP/PXA) to maintainer list Michael Schwingen
2011-05-22 21:59 ` [U-Boot] [IXP42x PATCH series v5 02/17] add support for IXP42x Rev. B1 and newer Michael Schwingen
2011-05-22 21:59 ` [U-Boot] [IXP42x PATCH series v5 03/17] trigger hardware watchdog in IXP42x serial driver Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 04/17] Fix IXP code to work after relocation was added Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 05/17] fix "depend" target in npe directory Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 06/17] support CONFIG_SYS_LDSCRIPT on ARM Michael Schwingen
2011-05-23  0:42   ` Marek Vasut
2011-05-23  6:42     ` Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 07/17] use -ffunction-sections / --gc-sections on IXP42x Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 08/17] update/fix AcTux1 board Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 09/17] update/fix AcTux2 board Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 10/17] update/fix AcTux3 board Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 11/17] update/fix AcTux4 board Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 12/17] IXP NPE: add support for fixed-speed MII ports Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 13/17] add dvlhost (dLAN 200 AV Wireless G) board Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 14/17] update/fix IXDP425 / IXDPG425 boards Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 15/17] update/fix PDNB3 board Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 16/17] IXP42x PCI rewrite Michael Schwingen
2011-05-22 22:00 ` [U-Boot] [IXP42x PATCH series v5 17/17] run arm_pci_init after relocation Michael Schwingen
2011-05-31 18:02 ` [U-Boot] [IXP42x PATCH series v5 00/17] Overview Albert ARIBAUD
2011-05-31 18:51   ` Marek Vasut
2011-05-31 20:21     ` Albert ARIBAUD

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