[PATCH v4 0/4] MediaTek Helio X10 MT6795 - MT6331/6332 Regulators

AngeloGioacchino Del Regno posted 4 patches 1 year, 7 months ago
.../regulator/mediatek,mt6331-regulator.yaml  | 273 ++++++++++
.../regulator/mediatek,mt6332-regulator.yaml  | 112 ++++
drivers/regulator/Kconfig                     |  18 +
drivers/regulator/Makefile                    |   2 +
drivers/regulator/mt6331-regulator.c          | 507 ++++++++++++++++++
drivers/regulator/mt6332-regulator.c          | 422 +++++++++++++++
include/linux/regulator/mt6331-regulator.h    |  46 ++
include/linux/regulator/mt6332-regulator.h    |  27 +
8 files changed, 1407 insertions(+)
create mode 100644 Documentation/devicetree/bindings/regulator/mediatek,mt6331-regulator.yaml
create mode 100644 Documentation/devicetree/bindings/regulator/mediatek,mt6332-regulator.yaml
create mode 100644 drivers/regulator/mt6331-regulator.c
create mode 100644 drivers/regulator/mt6332-regulator.c
create mode 100644 include/linux/regulator/mt6331-regulator.h
create mode 100644 include/linux/regulator/mt6332-regulator.h
[PATCH v4 0/4] MediaTek Helio X10 MT6795 - MT6331/6332 Regulators
Posted by AngeloGioacchino Del Regno 1 year, 7 months ago
In an effort to give some love to the apparently forgotten MT6795 SoC,
I am upstreaming more components that are necessary to support platforms
powered by this one apart from a simple boot to serial console.

This series adds support for the regulators found in MT6331 and MT6332
main/companion PMICs.

Adding support to each driver in each subsystem is done in different
patch series as to avoid spamming uninteresting patches to maintainers.

Tested on a MT6795 Sony Xperia M5 (codename "Holly") smartphone.

Changes in v4:
 - Rebased on next-20220912

Changes in v3:
 - Sorry, one of the commits picked both the pre-rename file and
   the new one... the v3 fixes the mt6332 bindings commit.
 - Changed comment style on top for mt633[12]-regulator.c as
   suggested (missed that in v2)

Changes in v2:
 - Refactored description in dt-bindings
 - Simplified get_status() function and removed callback
   where not needed
 - Simplified set_mode()/get_mode() functions and removed
   callback where not needed
 - Added new regulator_ops for no_qi (no .get_status) and
   for no_ms (no .{get, set}_mode)
 - Fixed vsel mask on some regulators and removed pattern of
   repeated voltage entries present in some voltage tables,
   avoiding to set higher bits for safety
 - Reordered regulators (and some formatting fixes) in
   mt6331-regulator.c in per-type alphabetic order
AngeloGioacchino Del Regno (4):
  dt-bindings: regulator: Add bindings for MT6331 regulator
  regulator: Add driver for MT6331 PMIC regulators
  dt-bindings: regulator: Add bindings for MT6332 regulator
  regulator: Add driver for MT6332 PMIC regulators

 .../regulator/mediatek,mt6331-regulator.yaml  | 273 ++++++++++
 .../regulator/mediatek,mt6332-regulator.yaml  | 112 ++++
 drivers/regulator/Kconfig                     |  18 +
 drivers/regulator/Makefile                    |   2 +
 drivers/regulator/mt6331-regulator.c          | 507 ++++++++++++++++++
 drivers/regulator/mt6332-regulator.c          | 422 +++++++++++++++
 include/linux/regulator/mt6331-regulator.h    |  46 ++
 include/linux/regulator/mt6332-regulator.h    |  27 +
 8 files changed, 1407 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/regulator/mediatek,mt6331-regulator.yaml
 create mode 100644 Documentation/devicetree/bindings/regulator/mediatek,mt6332-regulator.yaml
 create mode 100644 drivers/regulator/mt6331-regulator.c
 create mode 100644 drivers/regulator/mt6332-regulator.c
 create mode 100644 include/linux/regulator/mt6331-regulator.h
 create mode 100644 include/linux/regulator/mt6332-regulator.h

-- 
2.37.2
Re: [PATCH v4 0/4] MediaTek Helio X10 MT6795 - MT6331/6332 Regulators
Posted by Mark Brown 1 year, 7 months ago
On Tue, 13 Sep 2022 14:34:52 +0200, AngeloGioacchino Del Regno wrote:
> In an effort to give some love to the apparently forgotten MT6795 SoC,
> I am upstreaming more components that are necessary to support platforms
> powered by this one apart from a simple boot to serial console.
> 
> This series adds support for the regulators found in MT6331 and MT6332
> main/companion PMICs.
> 
> [...]

Applied to

   broonie/regulator.git for-next

Thanks!

[1/4] dt-bindings: regulator: Add bindings for MT6331 regulator
      commit: 6385e21692bbb0b35eca8120d576b3c1ba1ad9d3
[2/4] regulator: Add driver for MT6331 PMIC regulators
      commit: 6f7a71f804287a7566314ab1a73d8ca2c18ca0d7
[3/4] dt-bindings: regulator: Add bindings for MT6332 regulator
      commit: e22943e32e1fc314b8e2b095ae3495d1bfa9aca5
[4/4] regulator: Add driver for MT6332 PMIC regulators
      commit: 1cc5a52e873a4f9725eafe5aa9cd213b7b58e29e

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark