All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [IXP42x PATCH series v4 00/17] Overview
@ 2011-04-06 21:49 Michael Schwingen
  2011-04-06 21:49 ` [U-Boot] [IXP42x PATCH series v4 01/17] add XScale sub architecture (IXP/PXA) to maintainer list Michael Schwingen
                   ` (16 more replies)
  0 siblings, 17 replies; 34+ messages in thread
From: Michael Schwingen @ 2011-04-06 21:49 UTC (permalink / raw)
  To: u-boot

Hi,

here is the fourth incarnation of the IXP patch series. This is rebased
against master (basically pulling in the __bss_end change), and it adds
separate changelogs per patch.

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                        |    6 +
 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                     |  111 +++---
 board/actux1/config.mk                    |    6 -
 board/actux1/u-boot.lds                   |   41 ++-
 board/actux2/actux2.c                     |   99 +++---
 board/actux2/config.mk                    |    6 -
 board/actux2/u-boot.lds                   |   46 ++-
 board/actux3/actux3.c                     |  126 +++---
 board/actux3/config.mk                    |    6 -
 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                  |   63 ++--
 include/configs/actux2.h                  |   36 ++-
 include/configs/actux3.h                  |   38 ++-
 include/configs/actux4.h                  |   40 ++-
 include/configs/dvlhost.h                 |  248 ++++++++++++
 include/configs/ixdp425.h                 |  196 +++++++---
 include/configs/ixdpg425.h                |   11 +-
 include/configs/pdnb3.h                   |   10 +-
 46 files changed, 1697 insertions(+), 1603 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] 34+ messages in thread

end of thread, other threads:[~2011-05-23  0:38 UTC | newest]

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.