public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH v4 0/3] Add support for Cix Sky1 resets
@ 2026-01-28  9:36 Gary Yang
  2026-01-28  9:36 ` [PATCH v4 1/3] dt-bindings: reset: add sky1 reset controller Gary Yang
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Gary Yang @ 2026-01-28  9:36 UTC (permalink / raw)
  To: lee, robh, krzk+dt, conor+dt, p.zabel, peter.chen
  Cc: devicetree, linux-kernel, linux-arm-kernel, cix-kernel-upstream,
	Gary Yang

Patch 1: Add yaml file for Cix Sky1 resets
Patch 2: Add driver codes for Cix Sky1 resets
Patch 3: Add dts nodes for Cix Sky1 resets

v4 changes:
- Pass dts build check with below commands:
make O=$OUTKNL dt_binding_check
make O=$OUTKNL dt_binding_check DT_SCHEMA_FILES=cix,sky1-rst.yaml
scripts/checkpatch.pl 000*.patch
make O=$OUTKNL CHECK_DTBS=y W=1 cix/sky1-orion-o6.dtb
- add syscon
- refine reset driver
- fix dt-bindings style

v3 changes:
- Pass dts build check with below commands:
make O=$OUTKNL dt_binding_check
make O=$OUTKNL dt_binding_check DT_SCHEMA_FILES=cix,sky1-rst.yaml
scripts/checkpatch.pl 000*.patch
make O=$OUTKNL CHECK_DTBS=y W=1 cix/sky1-orion-o6.dtb
- remove syscon

v2 changes:
- Pass dts build check with below commands:
make O=$OUTKNL dt_binding_check
make O=$OUTKNL dt_binding_check DT_SCHEMA_FILES=cix,sky1-rst.yaml
scripts/checkpatch.pl 000*.patch
make O=$OUTKNL CHECK_DTBS=y W=1 cix/sky1-orion-o6.dtb
- fix dt-bindings style
- refine reset driver

Gary Yang (3):
  dt-bindings: reset: add sky1 reset controller
  reset: cix: add support for cix sky1 resets
  arm64: dts: cix: add support for cix sky1 resets

 .../devicetree/bindings/mfd/syscon.yaml       |   7 +
 .../bindings/reset/cix,sky1-rst.yaml          |  46 +++
 .../soc/cix/cix,sky1-system-controller.yaml   |  48 +++
 arch/arm64/boot/dts/cix/sky1.dtsi             |  22 +
 drivers/reset/Kconfig                         |   7 +
 drivers/reset/Makefile                        |   1 +
 drivers/reset/reset-sky1.c                    | 376 ++++++++++++++++++
 include/dt-bindings/reset/cix,sky1-rst-fch.h  |  42 ++
 include/dt-bindings/reset/cix,sky1-rst.h      | 164 ++++++++
 9 files changed, 713 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/reset/cix,sky1-rst.yaml
 create mode 100644 Documentation/devicetree/bindings/soc/cix/cix,sky1-system-controller.yaml
 create mode 100644 drivers/reset/reset-sky1.c
 create mode 100644 include/dt-bindings/reset/cix,sky1-rst-fch.h
 create mode 100644 include/dt-bindings/reset/cix,sky1-rst.h

-- 
2.49.0



^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH v4 0/3] reset: cix: add support for cix sky1 resets
@ 2026-03-01  7:09 Xueyuan Chen
  2026-03-01  7:09 ` [PATCH v4 2/3] " Xueyuan Chen
  0 siblings, 1 reply; 14+ messages in thread
From: Xueyuan Chen @ 2026-03-01  7:09 UTC (permalink / raw)
  To: Philipp Zabel, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Peter Chen, Fugang Duan
  Cc: Gary Yang, CIX Linux Kernel Upstream Group, devicetree,
	linux-arm-kernel, linux-kernel, Xueyuan Chen

This patch series adds support for the System Reset Controller (SRC)
found on the CIX Sky1 SoC. The SRC provides reset capabilities to various
peripherals across the S0 and S5 domains.

Changes in v4:
- Restored the 'syscon' architecture to properly describe the SRC as a 
  unified memory region, addressing DT review feedback from Conor Dooley on v3.
- Replaced the fragmented 'reg' items in the YAML bindings and DTS with 
  unified contiguous memory regions (e.g., 0x16000000 and 0x04160000).
- Refactored the driver to drop independent ioremap logic. It now cleanly 
  fetches the regmap via syscon_node_to_regmap to prevent resource conflicts.
- Xueyuan Chen took over the patchset for architectural refactoring.

Changes in v3:
- Passed dts build checks (dt_binding_check, CHECK_DTBS).
- Removed initial syscon attempt (reverted in v4 for the correct architecture).

Gary Yang (1):
  dt-bindings: reset: add sky1 reset controller

Xueyuan Chen (2):
  reset: cix: add support for cix sky1 resets
  arm64: dts: cix: add src syscon nodes for sky1 resets

 .../bindings/reset/cix,sky1-rst.yaml          |  51 +++
 arch/arm64/boot/dts/cix/sky1.dtsi             |  12 +
 drivers/reset/Kconfig                         |   7 +
 drivers/reset/Makefile                        |   1 +
 drivers/reset/reset-sky1.c                    | 372 ++++++++++++++++++
 include/dt-bindings/reset/cix,sky1-rst-fch.h  |  42 ++
 include/dt-bindings/reset/cix,sky1-rst.h      | 164 ++++++++
 7 files changed, 649 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/reset/cix,sky1-rst.yaml
 create mode 100644 drivers/reset/reset-sky1.c
 create mode 100644 include/dt-bindings/reset/cix,sky1-rst-fch.h
 create mode 100644 include/dt-bindings/reset/cix,sky1-rst.h

-- 
2.43.0



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

end of thread, other threads:[~2026-03-01  7:09 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-28  9:36 [PATCH v4 0/3] Add support for Cix Sky1 resets Gary Yang
2026-01-28  9:36 ` [PATCH v4 1/3] dt-bindings: reset: add sky1 reset controller Gary Yang
2026-01-28 10:01   ` Krzysztof Kozlowski
2026-01-28 10:14     ` Conor Dooley
2026-01-29  1:58     ` 回复: " Gary Yang
2026-01-28 11:22   ` Rob Herring (Arm)
2026-01-29  1:39     ` 回复: " Gary Yang
2026-01-28  9:36 ` [PATCH v4 2/3] reset: cix: add support for cix sky1 resets Gary Yang
2026-01-28 11:27   ` Philipp Zabel
2026-01-29  1:26     ` 回复: " Gary Yang
2026-01-28 17:43   ` kernel test robot
2026-01-29  0:17   ` kernel test robot
2026-01-28  9:36 ` [PATCH v4 3/3] arm64: dts: " Gary Yang
  -- strict thread matches above, loose matches on Subject: below --
2026-03-01  7:09 [PATCH v4 0/3] reset: " Xueyuan Chen
2026-03-01  7:09 ` [PATCH v4 2/3] " Xueyuan Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox