devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] ARM: removal of STiH415/STiH416 remainings bits
@ 2023-02-09  9:16 Alain Volmat
  2023-02-09  9:16 ` [PATCH 01/11] Documentation: arm: remove stih415/stih416 related entries Alain Volmat
                   ` (11 more replies)
  0 siblings, 12 replies; 26+ messages in thread
From: Alain Volmat @ 2023-02-09  9:16 UTC (permalink / raw)
  To: Jonathan Corbet, Rob Herring, Krzysztof Kozlowski,
	Thomas Gleixner, Marc Zyngier, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Russell King, Patrice Chotard,
	Giuseppe Cavallaro, Alexandre Torgue, Jose Abreu, Maxime Coquelin,
	Rafael J . Wysocki, Daniel Lezcano, Amit Kucheria, Zhang Rui,
	Michael Turquette, Stephen Boyd, Philipp Zabel
  Cc: linux-doc, linux-kernel, devicetree, netdev, linux-arm-kernel,
	linux-stm32, linux-pm, linux-clk, Alain Volmat

Most of code in order to support STiH415 and STiH416 have already
been removed from the kernel in 2016, however few bits are still
remainings.
This serie removes the last pieces of support for STiH415, STiH416
and STiD127.

Alain Volmat (11):
  Documentation: arm: remove stih415/stih416 related entries
  ARM: sti: removal of stih415/stih416 related entries
  irqchip/st: remove stih415/stih416 and stid127 platforms support
  dt-bindings: irqchip: sti: remove stih415/stih416 and stid127
  dt-bindings: arm: sti: remove bindings for stih415 and stih416
  thermal/drivers/st: remove syscfg based driver
  net: ethernet: stmmac: dwmac-sti: remove stih415/stih416/stid127
  dt-bindings: net: dwmac: sti: remove stih415/sti416/stid127
  dt-bindings: reset: remove stih415/stih416 reset bindings
  dt-bindings: clock: remove stih416 bindings
  ARM: debug: removal of STiH415/STiH416 related debug uart

 Documentation/arm/index.rst                   |   2 -
 Documentation/arm/sti/overview.rst            |  10 +-
 Documentation/arm/sti/stih415-overview.rst    |  14 --
 Documentation/arm/sti/stih416-overview.rst    |  13 --
 .../devicetree/bindings/arm/sti.yaml          |   2 -
 .../st,sti-irq-syscfg.txt                     |   9 +-
 .../devicetree/bindings/net/sti-dwmac.txt     |   3 +-
 arch/arm/Kconfig.debug                        |  28 ---
 arch/arm/mach-sti/Kconfig                     |  20 +-
 arch/arm/mach-sti/board-dt.c                  |   2 -
 drivers/irqchip/irq-st.c                      |  15 --
 .../net/ethernet/stmicro/stmmac/dwmac-sti.c   |  60 +-----
 drivers/thermal/st/Kconfig                    |   4 -
 drivers/thermal/st/Makefile                   |   1 -
 drivers/thermal/st/st_thermal_syscfg.c        | 174 ------------------
 include/dt-bindings/clock/stih416-clks.h      |  17 --
 include/dt-bindings/reset/stih415-resets.h    |  28 ---
 include/dt-bindings/reset/stih416-resets.h    |  52 ------
 18 files changed, 8 insertions(+), 446 deletions(-)
 delete mode 100644 Documentation/arm/sti/stih415-overview.rst
 delete mode 100644 Documentation/arm/sti/stih416-overview.rst
 delete mode 100644 drivers/thermal/st/st_thermal_syscfg.c
 delete mode 100644 include/dt-bindings/clock/stih416-clks.h
 delete mode 100644 include/dt-bindings/reset/stih415-resets.h
 delete mode 100644 include/dt-bindings/reset/stih416-resets.h

-- 
2.34.1


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

end of thread, other threads:[~2023-02-16 20:04 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-09  9:16 [PATCH 00/11] ARM: removal of STiH415/STiH416 remainings bits Alain Volmat
2023-02-09  9:16 ` [PATCH 01/11] Documentation: arm: remove stih415/stih416 related entries Alain Volmat
2023-02-09  9:16 ` [PATCH 02/11] ARM: sti: removal of " Alain Volmat
2023-02-09  9:38   ` Patrice CHOTARD
2023-02-09  9:16 ` [PATCH 03/11] irqchip/st: remove stih415/stih416 and stid127 platforms support Alain Volmat
2023-02-09  9:16 ` [PATCH 04/11] dt-bindings: irqchip: sti: remove stih415/stih416 and stid127 Alain Volmat
2023-02-09  9:29   ` Krzysztof Kozlowski
2023-02-09  9:16 ` [PATCH 05/11] dt-bindings: arm: sti: remove bindings for stih415 and stih416 Alain Volmat
2023-02-09  9:30   ` Krzysztof Kozlowski
2023-02-16 19:55     ` Alain Volmat
2023-02-09  9:16 ` [PATCH 06/11] thermal/drivers/st: remove syscfg based driver Alain Volmat
2023-02-10 18:34   ` Daniel Lezcano
2023-02-09  9:16 ` [PATCH 07/11] net: ethernet: stmmac: dwmac-sti: remove stih415/stih416/stid127 Alain Volmat
2023-02-10  6:54   ` Jakub Kicinski
2023-02-09  9:16 ` [PATCH 08/11] dt-bindings: net: dwmac: sti: remove stih415/sti416/stid127 Alain Volmat
2023-02-09  9:30   ` Krzysztof Kozlowski
2023-02-09  9:16 ` [PATCH 09/11] dt-bindings: reset: remove stih415/stih416 reset bindings Alain Volmat
2023-02-09  9:32   ` Krzysztof Kozlowski
2023-02-09 16:59     ` Alain Volmat
2023-02-09  9:16 ` [PATCH 10/11] dt-bindings: clock: remove stih416 bindings Alain Volmat
2023-02-09  9:32   ` Krzysztof Kozlowski
2023-02-09  9:16 ` [PATCH 11/11] ARM: debug: removal of STiH415/STiH416 related debug uart Alain Volmat
2023-02-10  9:04 ` [PATCH 00/11] ARM: removal of STiH415/STiH416 remainings bits Daniel Lezcano
2023-02-10  9:12   ` Alain Volmat
2023-02-10 18:13     ` Jakub Kicinski
2023-02-16 19:59       ` Alain Volmat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).