linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/17] SoC and defconfig support for SAM9X60
@ 2019-11-26 13:12 Claudiu Beznea
  2019-11-26 13:12 ` [PATCH v2 01/17] ARM: at91: Kconfig: add sam9x60 pll config flag Claudiu Beznea
                   ` (17 more replies)
  0 siblings, 18 replies; 25+ messages in thread
From: Claudiu Beznea @ 2019-11-26 13:12 UTC (permalink / raw)
  To: linux, nicolas.ferre, alexandre.belloni, ludovic.desroches, sre
  Cc: linux-arm-kernel, linux-kernel, linux-pm, Claudiu Beznea

Hi,

This series enables proper support for SAM9X60 in Kconfig and
defconfig.

Thank you,
Claudiu Beznea

Changes in v2:
- cahnged cover letter title; previously it was:
  "add defconfig support for SAM9X60"
- have new entry in arch/arm/mach-at91/Kconfig for SOC_SAM9X60
  independent of SOC_AT91SAM9 to be able to select only necessary
  config flags for SAM9X60 (patches 02/17, 03/17)
- select POWER_RESET_AT91_RESET and POWER_RESET_AT91_SAMA5D2_SHDWC
  as for SAMA5D2 (patches 04/17, 05/17)
- select DEBUG_AT91_RM9200_DBGU (patch 06/17)
- shaped a bit the patches titles and commit desciptions for defconfig
  patches (patches 09-17/17)

Claudiu Beznea (12):
  ARM: at91: Kconfig: add sam9x60 pll config flag
  ARM: at91: pm: move SAM9X60's PM under its own SoC config flag
  drivers: soc: atmel: move sam9x60 under its own config flag
  power: reset: Kconfig: select POWER_RESET_AT91_RESET for sam9x60
  drivers: soc: atmel: select POWER_RESET_AT91_SAMA5D2_SHDWC for sam9x60
  ARM: debug-ll: select DEBUG_AT91_RM9200_DBGU for sam9x60
  ARM: at91: Kconfig: add config flag for SAM9X60 SoC
  ARM: at91/defconfig: use savedefconfig
  ARM: at91/defconfig: enable config flag for sam9x60 SoC
  ARM: at91/defconfig: enable config flag for atmel maxtouch
  ARM: at91/defconfig: enable config flag for flexcom
  ARM: at91/defconfig: enable config flag for XDMAC

Codrin Ciubotariu (3):
  ARM: at91/defconfig: enable config flag for I2S Multi-channel
  ARM: at91/defconfig: enable config flag for audio PROTO board
  ARM: at91/defconfig: enable config flag for CLASSD

Tudor Ambarus (2):
  ARM: at91/defconfig: enable config flag for SAMA5D2's ADC
  ARM: at91/defconfig: enable config flag for ATMEL QUADSPI

 arch/arm/Kconfig.debug             |  6 ++---
 arch/arm/configs/at91_dt_defconfig | 55 ++++++++++++++++++--------------------
 arch/arm/mach-at91/Kconfig         | 24 +++++++++++++++--
 arch/arm/mach-at91/Makefile        |  1 +
 arch/arm/mach-at91/at91sam9.c      | 18 -------------
 arch/arm/mach-at91/pm.c            |  2 +-
 arch/arm/mach-at91/sam9x60.c       | 34 +++++++++++++++++++++++
 drivers/power/reset/Kconfig        |  4 +--
 drivers/soc/atmel/soc.c            |  5 ++--
 9 files changed, 92 insertions(+), 57 deletions(-)
 create mode 100644 arch/arm/mach-at91/sam9x60.c

-- 
2.7.4


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

end of thread, other threads:[~2019-11-29 19:10 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-26 13:12 [PATCH v2 00/17] SoC and defconfig support for SAM9X60 Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 01/17] ARM: at91: Kconfig: add sam9x60 pll config flag Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 02/17] ARM: at91: pm: move SAM9X60's PM under its own SoC " Claudiu Beznea
2019-11-26 21:28   ` Alexandre Belloni
2019-11-27  8:06     ` Claudiu.Beznea
2019-11-27 10:07       ` Alexandre Belloni
2019-11-27 10:59         ` Nicolas.Ferre
2019-11-27 11:00         ` Claudiu.Beznea
2019-11-26 13:12 ` [PATCH v2 03/17] drivers: soc: atmel: move sam9x60 under its own " Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 04/17] power: reset: Kconfig: select POWER_RESET_AT91_RESET for sam9x60 Claudiu Beznea
2019-11-29 14:06   ` Sebastian Reichel
2019-11-26 13:12 ` [PATCH v2 05/17] drivers: soc: atmel: select POWER_RESET_AT91_SAMA5D2_SHDWC " Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 06/17] ARM: debug-ll: select DEBUG_AT91_RM9200_DBGU " Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 07/17] ARM: at91: Kconfig: add config flag for SAM9X60 SoC Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 08/17] ARM: at91/defconfig: use savedefconfig Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 09/17] ARM: at91/defconfig: enable config flag for sam9x60 SoC Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 10/17] ARM: at91/defconfig: enable config flag for atmel maxtouch Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 11/17] ARM: at91/defconfig: enable config flag for flexcom Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 12/17] ARM: at91/defconfig: enable config flag for XDMAC Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 13/17] ARM: at91/defconfig: enable config flag for I2S Multi-channel Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 14/17] ARM: at91/defconfig: enable config flag for audio PROTO board Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 15/17] ARM: at91/defconfig: enable config flag for SAMA5D2's ADC Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 16/17] ARM: at91/defconfig: enable config flag for ATMEL QUADSPI Claudiu Beznea
2019-11-26 13:12 ` [PATCH v2 17/17] ARM: at91/defconfig: enable config flag for CLASSD Claudiu Beznea
2019-11-26 21:24 ` [PATCH v2 00/17] SoC and defconfig support for SAM9X60 Alexandre Belloni

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).