linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/16] Enable Power Modes Support for SAMA7D65 SoC
@ 2025-01-30 17:33 Ryan.Wanner
  2025-01-30 17:33 ` [PATCH 01/16] dt-bindings: mfd: syscon: add microchip,sama7d65-ddr3phy Ryan.Wanner
                   ` (15 more replies)
  0 siblings, 16 replies; 25+ messages in thread
From: Ryan.Wanner @ 2025-01-30 17:33 UTC (permalink / raw)
  To: lee, robh, krzk+dt, conor+dt, claudiu.beznea, sre, nicolas.ferre,
	alexandre.belloni, p.zabel, linux
  Cc: devicetree, linux-kernel, linux-pm, linux-arm-kernel, linux-rtc,
	Ryan Wanner

From: Ryan Wanner <Ryan.Wanner@microchip.com>

This patch set adds support for low power modes for the SAMA7D65 SoC and
the required components and changes for low power modes.

The series includes changes in the asm code to account for the addtional
clocks that are in this SoC.

The Device tree additions are to enable all the components needed to
keep the SoC in low power mode.

There are some DTB check warnings but that is due to the dt-binding not
in the correct .yaml file format.


Li Bin (1):
  ARM: at91: pm: fix at91_suspend_finish for ZQ calibration

Ryan Wanner (15):
  dt-bindings: mfd: syscon: add microchip,sama7d65-ddr3phy
  dt-bindings: mfd: syscon: add microchip,sama7d65-sfrbu
  dt-bindings: sram: Add microchip,sama7d65-sram
  dt-bindings: power: reset: atmel,sama5d2-shdwc: Add
    microchip,sama7d65-shdwc
  dt-bindings: reset: atmel,at91sam9260-reset: add
    microchip,sama7d65-rstc
  dt-bindings: rtc: at91rm9200: Reorganize compatible items
  dt-bindings: rtc: at91rm9200: add microchip,sama7d65-rtc
  dt-bindings: at91rm9260-rtt: add microchip,sama7d65-rtt
  ARM: at91: Add PM support to sama7d65
  ARM: at91: pm: add DT compatible support for sama7d65
  ARM: at91: PM: Add Backup mode for SAMA7D65
  ARM: at91: pm: Enable ULP0 for SAMA7D65
  power: reset: at91-sama5d2_shdwc: Add sama7d65 PMC
  ARM: dts: microchip: sama7d65: Add Reset and Shutdown and PM support
  ARM: dts: microchip: add shutdown controller and rtt timer

 .../devicetree/bindings/mfd/syscon.yaml       |  3 +
 .../power/reset/atmel,sama5d2-shdwc.yaml      |  5 +
 .../reset/atmel,at91sam9260-reset.yaml        |  5 +
 .../bindings/rtc/atmel,at91rm9200-rtc.yaml    |  6 +-
 .../bindings/rtc/atmel,at91sam9260-rtt.yaml   |  5 +
 .../devicetree/bindings/sram/sram.yaml        |  1 +
 .../dts/microchip/at91-sama7d65_curiosity.dts | 14 +++
 arch/arm/boot/dts/microchip/sama7d65.dtsi     | 77 +++++++++++++++
 arch/arm/mach-at91/Kconfig                    |  1 +
 arch/arm/mach-at91/pm.c                       | 53 +++++++---
 arch/arm/mach-at91/pm.h                       |  1 +
 arch/arm/mach-at91/pm_data-offsets.c          |  2 +
 arch/arm/mach-at91/pm_suspend.S               | 97 +++++++++++++++++--
 drivers/power/reset/at91-sama5d2_shdwc.c      |  1 +
 14 files changed, 247 insertions(+), 24 deletions(-)

-- 
2.43.0


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

end of thread, other threads:[~2025-01-30 23:51 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-30 17:33 [PATCH 00/16] Enable Power Modes Support for SAMA7D65 SoC Ryan.Wanner
2025-01-30 17:33 ` [PATCH 01/16] dt-bindings: mfd: syscon: add microchip,sama7d65-ddr3phy Ryan.Wanner
2025-01-30 23:31   ` Rob Herring (Arm)
2025-01-30 23:33   ` Rob Herring
2025-01-30 17:33 ` [PATCH 02/16] dt-bindings: mfd: syscon: add microchip,sama7d65-sfrbu Ryan.Wanner
2025-01-30 23:34   ` Rob Herring
2025-01-30 17:33 ` [PATCH 03/16] dt-bindings: sram: Add microchip,sama7d65-sram Ryan.Wanner
2025-01-30 23:34   ` Rob Herring (Arm)
2025-01-30 17:33 ` [PATCH 04/16] dt-bindings: power: reset: atmel,sama5d2-shdwc: Add microchip,sama7d65-shdwc Ryan.Wanner
2025-01-30 23:35   ` Rob Herring (Arm)
2025-01-30 17:33 ` [PATCH 05/16] dt-bindings: reset: atmel,at91sam9260-reset: add microchip,sama7d65-rstc Ryan.Wanner
2025-01-30 23:41   ` Rob Herring
2025-01-30 17:33 ` [PATCH 06/16] dt-bindings: rtc: at91rm9200: Reorganize compatible items Ryan.Wanner
2025-01-30 23:43   ` Rob Herring
2025-01-30 17:33 ` [PATCH 07/16] dt-bindings: rtc: at91rm9200: add microchip,sama7d65-rtc Ryan.Wanner
2025-01-30 17:33 ` [PATCH 08/16] dt-bindings: at91rm9260-rtt: add microchip,sama7d65-rtt Ryan.Wanner
2025-01-30 23:51   ` Rob Herring
2025-01-30 17:33 ` [PATCH 09/16] ARM: at91: Add PM support to sama7d65 Ryan.Wanner
2025-01-30 17:33 ` [PATCH 10/16] ARM: at91: pm: fix at91_suspend_finish for ZQ calibration Ryan.Wanner
2025-01-30 17:33 ` [PATCH 11/16] ARM: at91: pm: add DT compatible support for sama7d65 Ryan.Wanner
2025-01-30 17:33 ` [PATCH 12/16] ARM: at91: PM: Add Backup mode for SAMA7D65 Ryan.Wanner
2025-01-30 17:33 ` [PATCH 13/16] ARM: at91: pm: Enable ULP0 " Ryan.Wanner
2025-01-30 17:33 ` [PATCH 14/16] power: reset: at91-sama5d2_shdwc: Add sama7d65 PMC Ryan.Wanner
2025-01-30 17:33 ` [PATCH 15/16] ARM: dts: microchip: sama7d65: Add Reset and Shutdown and PM support Ryan.Wanner
2025-01-30 17:33 ` [PATCH 16/16] ARM: dts: microchip: add shutdown controller and rtt timer Ryan.Wanner

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