All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] [RESEND] Remove STiH415 and STiH416 SoC platform support
@ 2016-09-14 13:27 ` Peter Griffin
  0 siblings, 0 replies; 174+ messages in thread
From: Peter Griffin @ 2016-09-14 13:27 UTC (permalink / raw)
  To: linux-arm-kernel, linux-kernel, kernel, patrice.chotard, devicetree
  Cc: peter.griffin, lee.jones

Resending due to incorrect Cc tags.

ST have sent patches which remove clock support for these SoCs [1]
which once applied mean the platform will no longer boot.

This series cleans up various STi platform drivers which have
support for these SoC's, by removing code, and updating the DT
documentation accordingly. Some drivers such as miphy365 and
stih41x-usb can be removed completely because the IP is only
found on these legacy SoC's.

Once this series is applied, drm display driver, and ALSA SoC
are the main two remaining references to the legacy SoCs, other
than clocks which already have patches on the ML.

regards,

Peter.

[1] https://patchwork.kernel.org/patch/9157571/

Peter Griffin (19):
  phy: phy-miphy365x: Remove miphy365 driver and dt binding
    documentation.
  phy: stih41x-usb: Remove usb phy driver and dt binding documentation.
  MAINTAINERS: Remove phy-miphy365x.c entry from STi arch
  MAINTAINERS: Remove phy-stih41x-usb.c entry from STi arch
  ARM: multi_v7_defconfig: Remove miphy365 phy.
  ARM: multi_v7_defconfig: Remove stih41x phy Kconfig symbol.
  ahci: st: Remove STiH416 dt example
  thermal: sti: Remove obsolete platforms from the DT doc.
  thermal: sti: Remove obsolete STiH416 platform support.
  watchdog: bindings: Remove obsolete platforms from dt doc.
  watchdog: st_wdt: Remove support for obsolete platforms
  reset: sti: Remove obsolete platforms from dt binding doc.
  pinctrl: st: Remove STiH415/6 SoC pinctrl driver support.
  pinctrl: st: Remove obsolete platforms from pinctrl-st dt doc
  reset: sti: Remove STiH415/6 reset support
  power: reset: st-poweroff: Remove obsolete platforms.
  power: reset: st: Remove obsolete platforms from dt doc
  stmmac: dwmac-sti: Remove obsolete STi platforms
  reset: sti: softreset: Remove obsolete platforms from dt binding doc.

 Documentation/devicetree/bindings/ata/ahci-st.txt  |  15 -
 .../devicetree/bindings/net/sti-dwmac.txt          |   3 +-
 .../devicetree/bindings/phy/phy-miphy365x.txt      |  77 ---
 .../devicetree/bindings/phy/phy-stih41x-usb.txt    |  24 -
 .../devicetree/bindings/pinctrl/pinctrl-st.txt     |  33 +-
 .../devicetree/bindings/power/reset/st-reset.txt   |   7 +-
 .../devicetree/bindings/reset/st,sti-powerdown.txt |  12 +-
 .../devicetree/bindings/reset/st,sti-softreset.txt |   8 +-
 .../devicetree/bindings/thermal/st-thermal.txt     |  28 +-
 .../devicetree/bindings/watchdog/st_lpc_wdt.txt    |   3 +-
 MAINTAINERS                                        |   2 -
 arch/arm/configs/multi_v7_defconfig                |   2 -
 arch/arm/mach-sti/Kconfig                          |   2 -
 drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c    |  37 --
 drivers/phy/Kconfig                                |  18 -
 drivers/phy/Makefile                               |   2 -
 drivers/phy/phy-miphy365x.c                        | 625 ---------------------
 drivers/phy/phy-stih41x-usb.c                      | 188 -------
 drivers/pinctrl/pinctrl-st.c                       |  76 +--
 drivers/power/reset/st-poweroff.c                  |  41 --
 drivers/reset/sti/Kconfig                          |   8 -
 drivers/reset/sti/Makefile                         |   2 -
 drivers/reset/sti/reset-stih415.c                  | 112 ----
 drivers/reset/sti/reset-stih416.c                  | 143 -----
 drivers/thermal/st/st_thermal_memmap.c             |  34 +-
 drivers/watchdog/st_lpc_wdt.c                      |  33 --
 26 files changed, 65 insertions(+), 1470 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/phy/phy-miphy365x.txt
 delete mode 100644 Documentation/devicetree/bindings/phy/phy-stih41x-usb.txt
 delete mode 100644 drivers/phy/phy-miphy365x.c
 delete mode 100644 drivers/phy/phy-stih41x-usb.c
 delete mode 100644 drivers/reset/sti/reset-stih415.c
 delete mode 100644 drivers/reset/sti/reset-stih416.c

-- 
1.9.1

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

end of thread, other threads:[~2016-11-15 13:07 UTC | newest]

Thread overview: 174+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-14 13:27 [PATCH 00/19] [RESEND] Remove STiH415 and STiH416 SoC platform support Peter Griffin
2016-09-14 13:27 ` Peter Griffin
2016-09-14 13:27 ` Peter Griffin
2016-09-14 13:27 ` [PATCH 01/19] phy: phy-miphy365x: Remove miphy365 driver and dt binding documentation Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-23 15:06   ` Rob Herring
2016-09-23 15:06     ` Rob Herring
2016-09-23 15:06     ` Rob Herring
2016-10-18  7:47     ` Patrice Chotard
2016-10-18  7:47       ` Patrice Chotard
2016-10-18  7:47       ` Patrice Chotard
2016-10-18  8:45       ` [STLinux Kernel] " Patrice Chotard
2016-10-18  8:45         ` Patrice Chotard
2016-10-18  8:45         ` Patrice Chotard
2016-10-18  9:18         ` Kishon Vijay Abraham I
2016-10-18  9:18           ` Kishon Vijay Abraham I
2016-10-18  9:18           ` Kishon Vijay Abraham I
2016-09-14 13:27 ` [PATCH 02/19] phy: stih41x-usb: Remove usb phy " Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-23 15:06   ` Rob Herring
2016-09-23 15:06     ` Rob Herring
2016-10-18  7:47     ` Patrice Chotard
2016-10-18  7:47       ` Patrice Chotard
2016-10-18  7:47       ` Patrice Chotard
2016-10-18  8:52       ` [STLinux Kernel] " Patrice Chotard
2016-10-18  8:52         ` Patrice Chotard
2016-10-18  8:52         ` Patrice Chotard
2016-10-18  9:06         ` Kishon Vijay Abraham I
2016-10-18  9:06           ` Kishon Vijay Abraham I
2016-10-18  9:06           ` Kishon Vijay Abraham I
2016-11-15 13:07   ` Kishon Vijay Abraham I
2016-11-15 13:07     ` Kishon Vijay Abraham I
2016-11-15 13:07     ` Kishon Vijay Abraham I
2016-09-14 13:27 ` [PATCH 03/19] MAINTAINERS: Remove phy-miphy365x.c entry from STi arch Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-10-18  7:48   ` Patrice Chotard
2016-10-18  7:48     ` Patrice Chotard
2016-10-18  7:48     ` Patrice Chotard
2016-09-14 13:27 ` [PATCH 04/19] MAINTAINERS: Remove phy-stih41x-usb.c " Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-10-18  7:50   ` Patrice Chotard
2016-10-18  7:50     ` Patrice Chotard
2016-10-18  7:50     ` Patrice Chotard
2016-09-14 13:27 ` [PATCH 05/19] ARM: multi_v7_defconfig: Remove miphy365 phy Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-10-18  7:53   ` Patrice Chotard
2016-10-18  7:53     ` Patrice Chotard
2016-10-18  7:53     ` Patrice Chotard
2016-10-18  9:22   ` Patrice Chotard
2016-10-18  9:22     ` Patrice Chotard
2016-10-18  9:22     ` Patrice Chotard
2016-09-14 13:27 ` [PATCH 06/19] ARM: multi_v7_defconfig: Remove stih41x phy Kconfig symbol Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-10-18  7:53   ` Patrice Chotard
2016-10-18  7:53     ` Patrice Chotard
2016-10-18  7:53     ` Patrice Chotard
2016-09-14 13:27 ` [PATCH 07/19] ahci: st: Remove STiH416 dt example Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
     [not found]   ` <1473859677-9231-8-git-send-email-peter.griffin-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2016-09-16 15:54     ` Tejun Heo
2016-09-16 15:54       ` Tejun Heo
2016-09-16 15:54       ` Tejun Heo
2016-09-19  7:19       ` Patrice Chotard
2016-09-19  7:19         ` Patrice Chotard
2016-09-19  7:19         ` Patrice Chotard
2016-09-23 15:07   ` Rob Herring
2016-09-23 15:07     ` Rob Herring
2016-09-14 13:27 ` [PATCH 08/19] thermal: sti: Remove obsolete platforms from the DT doc Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-23 15:08   ` Rob Herring
2016-09-23 15:08     ` Rob Herring
2016-09-23 15:08     ` Rob Herring
2016-10-18  7:56     ` Patrice Chotard
2016-10-18  7:56       ` Patrice Chotard
2016-10-18  7:56       ` Patrice Chotard
2016-09-14 13:27 ` [PATCH 09/19] thermal: sti: Remove obsolete STiH416 platform support Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27 ` [PATCH 10/19] watchdog: bindings: Remove obsolete platforms from dt doc Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 22:16   ` Guenter Roeck
2016-09-14 22:16     ` Guenter Roeck
2016-09-23 15:08   ` Rob Herring
2016-09-23 15:08     ` Rob Herring
2016-09-23 15:08     ` Rob Herring
2016-10-08 14:04   ` Wim Van Sebroeck
2016-10-08 14:04     ` Wim Van Sebroeck
2016-09-14 13:27 ` [PATCH 11/19] watchdog: st_wdt: Remove support for obsolete platforms Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 22:16   ` Guenter Roeck
2016-09-14 22:16     ` Guenter Roeck
2016-09-14 13:27 ` [PATCH 12/19] reset: sti: Remove obsolete platforms from dt binding doc Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-23 15:10   ` Rob Herring
2016-09-23 15:10     ` Rob Herring
2016-10-18  8:02     ` Patrice Chotard
2016-10-18  8:02       ` Patrice Chotard
2016-10-18  8:02       ` Patrice Chotard
     [not found] ` <1473859677-9231-1-git-send-email-peter.griffin-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2016-09-14 13:27   ` [PATCH 13/19] pinctrl: st: Remove STiH415/6 SoC pinctrl driver support Peter Griffin
2016-09-14 13:27     ` Peter Griffin
2016-09-14 13:27     ` Peter Griffin
     [not found]     ` <1473859677-9231-14-git-send-email-peter.griffin-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2016-09-15 12:33       ` Linus Walleij
2016-09-15 12:33         ` Linus Walleij
2016-09-15 12:33         ` Linus Walleij
2016-09-14 13:27 ` [PATCH 14/19] pinctrl: st: Remove obsolete platforms from pinctrl-st dt doc Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
     [not found]   ` <1473859677-9231-15-git-send-email-peter.griffin-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2016-09-15 12:37     ` Linus Walleij
2016-09-15 12:37       ` Linus Walleij
2016-09-15 12:37       ` Linus Walleij
2016-09-14 13:27 ` [PATCH 15/19] reset: sti: Remove STiH415/6 reset support Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-27  8:02   ` Philipp Zabel
2016-09-27  8:02     ` Philipp Zabel
2016-09-27  8:02     ` Philipp Zabel
2016-10-11  7:05     ` Patrice Chotard
2016-10-11  7:05       ` Patrice Chotard
2016-10-11  7:05       ` Patrice Chotard
2016-10-20 10:36       ` Philipp Zabel
2016-10-20 10:36         ` Philipp Zabel
2016-09-14 13:27 ` [PATCH 16/19] power: reset: st-poweroff: Remove obsolete platforms Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-19 19:34   ` Sebastian Reichel
2016-09-19 19:34     ` Sebastian Reichel
2016-09-14 13:27 ` [PATCH 17/19] power: reset: st: Remove obsolete platforms from dt doc Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-19 19:34   ` Sebastian Reichel
2016-09-19 19:34     ` Sebastian Reichel
2016-09-19 19:34     ` Sebastian Reichel
2016-09-14 13:27 ` [PATCH 18/19] stmmac: dwmac-sti: Remove obsolete STi platforms Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-23 15:11   ` Rob Herring
2016-09-23 15:11     ` Rob Herring
2016-10-18  8:05     ` Patrice Chotard
2016-10-18  8:05       ` Patrice Chotard
2016-10-18  8:05       ` Patrice Chotard
2016-10-18  8:59       ` [STLinux Kernel] " Patrice Chotard
2016-10-18  8:59         ` Patrice Chotard
2016-10-18  8:59         ` Patrice Chotard
2016-10-18  8:59         ` Patrice Chotard
2016-09-14 13:27 ` [PATCH 19/19] reset: sti: softreset: Remove obsolete platforms from dt binding doc Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-14 13:27   ` Peter Griffin
2016-09-23 15:12   ` Rob Herring
2016-09-23 15:12     ` Rob Herring
2016-09-23 15:12     ` Rob Herring
2016-09-14 13:38 ` [PATCH 00/19] [RESEND] Remove STiH415 and STiH416 SoC platform support Arnd Bergmann
2016-09-14 13:38   ` Arnd Bergmann
2016-09-14 13:38   ` Arnd Bergmann
2016-09-14 14:04   ` Patrice Chotard
2016-09-14 14:04     ` Patrice Chotard
2016-09-14 14:04     ` Patrice Chotard
2016-09-15  7:01   ` Peter Griffin
2016-09-15  7:01     ` Peter Griffin
2016-09-15  7:01     ` Peter Griffin
2016-09-15 12:00     ` Arnd Bergmann
2016-09-15 12:00       ` Arnd Bergmann
2016-09-19  8:56       ` Peter Griffin
2016-09-19  8:56         ` Peter Griffin
2016-09-19  8:56         ` Peter Griffin

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.