public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/11] mfd: cpcap: convert documentation to schema and add Mot board support
@ 2026-02-06 17:28 Svyatoslav Ryhel
  2026-02-06 17:28 ` [PATCH v2 01/11] dt-bindings: regulator: cpcap-regulator: convert to DT schema Svyatoslav Ryhel
                   ` (10 more replies)
  0 siblings, 11 replies; 40+ messages in thread
From: Svyatoslav Ryhel @ 2026-02-06 17:28 UTC (permalink / raw)
  To: Jonathan Cameron, David Lechner, Nuno Sá, Andy Shevchenko,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Dmitry Torokhov,
	Lee Jones, Pavel Machek, Liam Girdwood, Mark Brown,
	Svyatoslav Ryhel, Dixit Parmar, Tony Lindgren
  Cc: linux-iio, devicetree, linux-kernel, linux-input, linux-leds

The initial goal was only to add support for the CPCAP used in the Mot
Tegra20 board; however, since the documentation was already partially
converted, I decided to complete the conversion to schema too.

The CPCAP regulator, leds, rtc, pwrbutton and core files were converted
from TXT to YAML while preserving the original structure. Mot board
compatibility was added to the regulator and core schema. Since these
were one-line patches, they were not separated into dedicated commits;
however, the commit message notes this for both cases.

Finally, the CPCAP MFD was slightly refactored to improve support for
multiple subcell compositions.

---
Changes in v2:
- fixed code style
- rtc conversion was picked, so patch dropped
- added audio ports description into mfd schema
- splitted schema conversion and compatible addition
- minor style improvements and typo fixes
---

Svyatoslav Ryhel (11):
  dt-bindings: regulator: cpcap-regulator: convert to DT schema
  dt-bindings: regulator: cpcap-regulator: document Mot regulator
  regulator: cpcap-regulator: add support for Mot regulators
  dt-bindings: iio: adc: cpcap-adc: document Mot ADC
  iio: adc: cpcap-adc: add support for Mot ADC
  dt-bindings: leds: leds-cpcap: convert to DT schema
  dt-bindings: input: cpcap-pwrbutton: convert to DT schema
  dt-bindings: mfd: motorola-cpcap: convert to DT schema
  dt-bindings: mfd: motorola-cpcap: document Mapphone and Mot CPCAP
  mfd: motorola-cpcap: diverge configuration per-board
  mfd: motorola-cpcap: add support for Mot CPCAP composition

 .../bindings/iio/adc/motorola,cpcap-adc.yaml  |   1 +
 .../bindings/input/cpcap-pwrbutton.txt        |  20 -
 .../input/motorola,cpcap-pwrbutton.yaml       |  32 ++
 .../devicetree/bindings/leds/leds-cpcap.txt   |  29 --
 .../bindings/leds/motorola,cpcap-leds.yaml    |  42 ++
 .../bindings/mfd/motorola,cpcap.yaml          | 413 ++++++++++++++++++
 .../bindings/mfd/motorola-cpcap.txt           |  78 ----
 .../bindings/regulator/cpcap-regulator.txt    |  35 --
 .../regulator/motorola,cpcap-regulator.yaml   |  51 +++
 drivers/iio/adc/cpcap-adc.c                   |  15 +
 drivers/mfd/motorola-cpcap.c                  | 139 +++++-
 drivers/regulator/cpcap-regulator.c           | 105 +++++
 12 files changed, 787 insertions(+), 173 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/input/cpcap-pwrbutton.txt
 create mode 100644 Documentation/devicetree/bindings/input/motorola,cpcap-pwrbutton.yaml
 delete mode 100644 Documentation/devicetree/bindings/leds/leds-cpcap.txt
 create mode 100644 Documentation/devicetree/bindings/leds/motorola,cpcap-leds.yaml
 create mode 100644 Documentation/devicetree/bindings/mfd/motorola,cpcap.yaml
 delete mode 100644 Documentation/devicetree/bindings/mfd/motorola-cpcap.txt
 delete mode 100644 Documentation/devicetree/bindings/regulator/cpcap-regulator.txt
 create mode 100644 Documentation/devicetree/bindings/regulator/motorola,cpcap-regulator.yaml

-- 
2.51.0


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

end of thread, other threads:[~2026-03-03 21:27 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-06 17:28 [PATCH v2 00/11] mfd: cpcap: convert documentation to schema and add Mot board support Svyatoslav Ryhel
2026-02-06 17:28 ` [PATCH v2 01/11] dt-bindings: regulator: cpcap-regulator: convert to DT schema Svyatoslav Ryhel
2026-02-06 22:58   ` Rob Herring (Arm)
2026-02-06 23:09   ` Rob Herring
2026-02-07  9:20     ` Svyatoslav Ryhel
2026-02-07 17:19       ` David Lechner
2026-02-07 17:25         ` Svyatoslav Ryhel
2026-02-07 17:32           ` David Lechner
2026-02-08 22:37             ` Rob Herring
2026-02-09  7:13               ` Svyatoslav Ryhel
2026-02-06 17:28 ` [PATCH v2 02/11] dt-bindings: regulator: cpcap-regulator: document Mot regulator Svyatoslav Ryhel
2026-02-11 21:13   ` Rob Herring (Arm)
2026-02-06 17:28 ` [PATCH v2 03/11] regulator: cpcap-regulator: add support for Mot regulators Svyatoslav Ryhel
2026-02-06 17:28 ` [PATCH v2 04/11] dt-bindings: iio: adc: cpcap-adc: document Mot ADC Svyatoslav Ryhel
2026-02-07 13:55   ` Jonathan Cameron
2026-02-06 17:28 ` [PATCH v2 05/11] iio: adc: cpcap-adc: add support for " Svyatoslav Ryhel
2026-02-07 13:55   ` Jonathan Cameron
2026-03-03 21:27     ` Jonathan Cameron
2026-02-06 17:28 ` [PATCH v2 06/11] dt-bindings: leds: leds-cpcap: convert to DT schema Svyatoslav Ryhel
2026-02-06 22:58   ` Rob Herring (Arm)
2026-02-06 17:28 ` [PATCH v2 07/11] dt-bindings: input: cpcap-pwrbutton: " Svyatoslav Ryhel
2026-02-06 22:58   ` Rob Herring (Arm)
2026-02-06 17:28 ` [PATCH v2 08/11] dt-bindings: mfd: motorola-cpcap: " Svyatoslav Ryhel
2026-02-11 21:20   ` Rob Herring
2026-02-12  5:30     ` Svyatoslav Ryhel
2026-02-12 20:19       ` Rob Herring
2026-02-13  7:23         ` Svyatoslav Ryhel
2026-02-06 17:28 ` [PATCH v2 09/11] dt-bindings: mfd: motorola-cpcap: document Mapphone and Mot CPCAP Svyatoslav Ryhel
2026-02-06 17:28 ` [PATCH v2 10/11] mfd: motorola-cpcap: diverge configuration per-board Svyatoslav Ryhel
2026-02-08 12:54   ` Andy Shevchenko
2026-02-08 15:19     ` Svyatoslav Ryhel
2026-02-09  8:18       ` Andy Shevchenko
2026-02-09  8:42         ` Svyatoslav Ryhel
2026-02-09  8:55           ` Andy Shevchenko
2026-02-09  9:06             ` Svyatoslav Ryhel
2026-02-09 10:27               ` Andy Shevchenko
2026-02-06 17:28 ` [PATCH v2 11/11] mfd: motorola-cpcap: add support for Mot CPCAP composition Svyatoslav Ryhel
2026-02-08 12:56   ` Andy Shevchenko
2026-02-08 14:41     ` Svyatoslav Ryhel
2026-02-08 14:48       ` Andy Shevchenko

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