All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/13 v2] IXP4xx spring cleaning
@ 2022-02-11 22:32 Linus Walleij
  2022-02-11 22:32 ` [PATCH 01/13 v2] ARM: ixp4xx: Delete Gateway 7001 boardfiles Linus Walleij
                   ` (12 more replies)
  0 siblings, 13 replies; 21+ messages in thread
From: Linus Walleij @ 2022-02-11 22:32 UTC (permalink / raw)
  To: linux-arm-kernel, Imre Kaloz, Krzysztof Halasa; +Cc: Linus Walleij

ChangeLog v1->v2:

Minor updates on some patches, after running this through the
build servers I will send a pull request to ARM SoC.

Linus Walleij (12):
  ARM: ixp4xx: Delete the Goramo MLR boardfile
  ARM: ixp4xx: Delete old PCI driver
  ARM: ixp4xx: Drop stale Kconfig entry
  ARM: ixp4xx: Drop UDC info setting function
  soc: ixp4xx: Add features from regmap helper
  soc: ixp4xx-npe: Access syscon regs using regmap
  net: ixp4xx_eth: Drop platform data support
  net: ixp4xx_hss: Check features using syscon
  ARM: ixp4xx: Remove feature bit accessors
  ARM: ixp4xx: Drop custom DMA coherency and bouncing
  ARM: ixp4xx: Drop all common code
  ARM: ixp4xx: Convert to SPARSE_IRQ and P2V

Zoltan HERPAI (1):
  ARM: ixp4xx: Delete Gateway 7001 boardfiles

 arch/arm/Kconfig                              |  11 +-
 arch/arm/mach-ixp4xx/Kconfig                  |  57 --
 arch/arm/mach-ixp4xx/Makefile                 |  19 +-
 arch/arm/mach-ixp4xx/common-pci.c             | 451 ---------------
 arch/arm/mach-ixp4xx/common.c                 | 448 --------------
 arch/arm/mach-ixp4xx/gateway7001-pci.c        |  61 --
 arch/arm/mach-ixp4xx/gateway7001-setup.c      | 113 ----
 arch/arm/mach-ixp4xx/goramo_mlr.c             | 532 -----------------
 arch/arm/mach-ixp4xx/include/mach/hardware.h  |  32 -
 arch/arm/mach-ixp4xx/include/mach/io.h        | 545 ------------------
 .../mach-ixp4xx/include/mach/ixp4xx-regs.h    | 303 ----------
 arch/arm/mach-ixp4xx/include/mach/platform.h  | 102 ----
 arch/arm/mach-ixp4xx/include/mach/udc.h       |   8 -
 .../arm/mach-ixp4xx/include/mach/uncompress.h |   4 +-
 arch/arm/mach-ixp4xx/irqs.h                   |  64 --
 drivers/crypto/ixp4xx_crypto.c                |   1 -
 drivers/net/ethernet/xscale/Kconfig           |   4 +-
 drivers/net/ethernet/xscale/ixp4xx_eth.c      |  85 +--
 drivers/net/ethernet/xscale/ptp_ixp46x.c      |   1 -
 drivers/net/wan/Kconfig                       |   3 +-
 drivers/net/wan/ixp4xx_hss.c                  |  39 +-
 drivers/soc/ixp4xx/Kconfig                    |   1 +
 drivers/soc/ixp4xx/ixp4xx-npe.c               |  33 +-
 include/linux/platform_data/eth_ixp4xx.h      |  21 -
 include/linux/platform_data/wan_ixp4xx_hss.h  |  17 -
 include/linux/soc/ixp4xx/cpu.h                |  26 +-
 include/linux/soc/ixp4xx/npe.h                |   2 +
 kernel/dma/mapping.c                          |   2 -
 28 files changed, 99 insertions(+), 2886 deletions(-)
 delete mode 100644 arch/arm/mach-ixp4xx/common-pci.c
 delete mode 100644 arch/arm/mach-ixp4xx/common.c
 delete mode 100644 arch/arm/mach-ixp4xx/gateway7001-pci.c
 delete mode 100644 arch/arm/mach-ixp4xx/gateway7001-setup.c
 delete mode 100644 arch/arm/mach-ixp4xx/goramo_mlr.c
 delete mode 100644 arch/arm/mach-ixp4xx/include/mach/hardware.h
 delete mode 100644 arch/arm/mach-ixp4xx/include/mach/io.h
 delete mode 100644 arch/arm/mach-ixp4xx/include/mach/ixp4xx-regs.h
 delete mode 100644 arch/arm/mach-ixp4xx/include/mach/platform.h
 delete mode 100644 arch/arm/mach-ixp4xx/include/mach/udc.h
 delete mode 100644 arch/arm/mach-ixp4xx/irqs.h
 delete mode 100644 include/linux/platform_data/eth_ixp4xx.h
 delete mode 100644 include/linux/platform_data/wan_ixp4xx_hss.h

-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2022-02-12  0:39 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-11 22:32 [PATCH 00/13 v2] IXP4xx spring cleaning Linus Walleij
2022-02-11 22:32 ` [PATCH 01/13 v2] ARM: ixp4xx: Delete Gateway 7001 boardfiles Linus Walleij
2022-02-11 22:32 ` [PATCH 02/13 v2] ARM: ixp4xx: Delete the Goramo MLR boardfile Linus Walleij
2022-02-11 22:32 ` [PATCH 03/13 v2] ARM: ixp4xx: Delete old PCI driver Linus Walleij
2022-02-11 22:32 ` [PATCH 04/13 v2] ARM: ixp4xx: Drop stale Kconfig entry Linus Walleij
2022-02-11 22:32 ` [PATCH 05/13 v2] ARM: ixp4xx: Drop UDC info setting function Linus Walleij
2022-02-11 22:32 ` [PATCH 06/13 v2] soc: ixp4xx: Add features from regmap helper Linus Walleij
2022-02-11 22:32 ` [PATCH 07/13 v2] soc: ixp4xx-npe: Access syscon regs using regmap Linus Walleij
2022-02-11 22:32 ` [PATCH 08/13 v2] net: ixp4xx_eth: Drop platform data support Linus Walleij
2022-02-11 22:32   ` Linus Walleij
2022-02-12  0:37   ` Jakub Kicinski
2022-02-12  0:37     ` Jakub Kicinski
2022-02-11 22:32 ` [PATCH 09/13 v2] net: ixp4xx_hss: Check features using syscon Linus Walleij
2022-02-11 22:32   ` Linus Walleij
2022-02-12  0:38   ` Jakub Kicinski
2022-02-12  0:38     ` Jakub Kicinski
2022-02-11 22:32 ` [PATCH 10/13 v2] ARM: ixp4xx: Remove feature bit accessors Linus Walleij
2022-02-11 22:32 ` [PATCH 11/13 v2] ARM: ixp4xx: Drop custom DMA coherency and bouncing Linus Walleij
2022-02-11 22:32   ` Linus Walleij
2022-02-11 22:32 ` [PATCH 12/13 v2] ARM: ixp4xx: Drop all common code Linus Walleij
2022-02-11 22:32 ` [PATCH 13/13 v2] ARM: ixp4xx: Convert to SPARSE_IRQ and P2V Linus Walleij

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.