2024-05-13 09:39:19

by Mark Brown

[permalink] [raw]
Subject: [GIT PULL] regulator updates for v6.10

The following changes since commit fec50db7033ea478773b159e0e2efb135270e3b7:

Linux 6.9-rc3 (2024-04-07 13:22:46 -0700)

are available in the Git repository at:

https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git tags/regulator-v6.10

for you to fetch changes up to 4e70b26c873dfff317039458a6ea66314bbdce99:

regulator: sun20i: Add Allwinner D1 LDOs driver (2024-05-09 17:44:01 +0200)

----------------------------------------------------------------
regulator: Updates for v6.10

There's one API update here, a new API factoring out a common pattern
for reference voltage supplies. These are supplies uses as a reference
by analogue circuits where the consumer requests and enables the supply,
reads the voltage to calibrate the user and then never touches it again.
This is factored out into a single operation which just returns the
voltage and uses devm_ to manage the request and enable portion.

Otherwise this has been a very quiet release, we've got some new device
support, some small fixes, housekeeping and cleanup work but nothing
substantial.

There's also some non-regulator changes in here, a number of users for
the new reference voltage API were merged along with it and some MFD
changes were pulled in as dependencies for new driver work.

Highlights:

- Add a new API for single operation handling of reference voltages.
- Support for Allwinner AXP717 and D1, and NXP PCA9561A.

----------------------------------------------------------------
Alina Yu (1):
regulator: rtq2208: Fix LDO discharge register and add vsel setting

Andre Przywara (4):
regulator: axp20x: fix typo-ed identifier
dt-bindings: mfd: x-powers,axp152: Document AXP717
mfd: axp20x: Add support for AXP717 PMIC
regulator: axp20x: add support for the AXP717

Bo Liu (13):
regulator: da9121: convert to use maple tree register cache
regulator: da9211: convert to use maple tree register cache
regulator: isl9305: convert to use maple tree register cache
regulator: max8973: convert to use maple tree register cache
regulator: mt6311: convert to use maple tree register cache
regulator: pca9450: convert to use maple tree register cache
regulator: pf8x00: convert to use maple tree register cache
regulator: pfuze100: convert to use maple tree register cache
regulator: rtmv20: convert to use maple tree register cache
regulator: rtq6752: convert to use maple tree register cache
regulator: tps51632: convert to use maple tree register cache
regulator: tps62360: convert to use maple tree register cache
regulator: rpi-panel-attiny: convert to use maple tree register cache

David Lechner (8):
regulator: devres: add API for reference voltage supplies
hwmon: (adc128d818) Use devm_regulator_get_enable_read_voltage()
hwmon: (da9052) Use devm_regulator_get_enable_read_voltage()
regulator: devres: fix devm_regulator_get_enable_read_voltage() return
hwmon: (adc128d818) simplify final return in probe
iio: addac: ad74115: Use devm_regulator_get_enable_read_voltage()
iio: frequency: admv1013: Use devm_regulator_get_enable_read_voltage()
staging: iio: impedance-analyzer: ad5933: Use devm_regulator_get_enable_read_voltage()

Joy Zou (2):
regulator: dt-bindings: pca9450: add pca9451a support
regulator: pca9450: add pca9451a support

Luca Weiss (1):
dt-bindings: regulator: qcom,usb-vbus-regulator: Add PM7250B compatible

Mark Brown (4):
add pmic pca9451a support
regulator: convert to use maple tree register
regulator: Merge axp20x changes
regulator: new API for voltage reference supplies

Rob Herring (Arm) (1):
regulator: dt-bindings: fixed-regulator: Add a preferred node name

Samuel Holland (2):
regulator: dt-bindings: Add Allwinner D1 system LDOs
regulator: sun20i: Add Allwinner D1 LDOs driver

Uwe Kleine-König (1):
regulator: Mention regulator id in error message about dummy supplies

.../devicetree/bindings/mfd/x-powers,axp152.yaml | 2 +
.../regulator/allwinner,sun20i-d1-system-ldos.yaml | 37 ++++
.../bindings/regulator/fixed-regulator.yaml | 7 +
.../bindings/regulator/nxp,pca9450-regulator.yaml | 1 +
.../regulator/qcom,usb-vbus-regulator.yaml | 1 +
Documentation/driver-api/driver-model/devres.rst | 1 +
drivers/hwmon/adc128d818.c | 57 ++----
drivers/hwmon/da9052-hwmon.c | 38 ++--
drivers/iio/addac/ad74115.c | 40 ++---
drivers/iio/frequency/admv1013.c | 40 ++---
drivers/mfd/axp20x-i2c.c | 2 +
drivers/mfd/axp20x-rsb.c | 1 +
drivers/mfd/axp20x.c | 90 ++++++++++
drivers/regulator/Kconfig | 8 +
drivers/regulator/Makefile | 1 +
drivers/regulator/axp20x-regulator.c | 94 +++++++++-
drivers/regulator/core.c | 4 +-
drivers/regulator/da9121-regulator.c | 4 +-
drivers/regulator/da9211-regulator.c | 2 +-
drivers/regulator/devres.c | 59 +++++++
drivers/regulator/isl9305.c | 2 +-
drivers/regulator/max8973-regulator.c | 2 +-
drivers/regulator/mt6311-regulator.c | 2 +-
drivers/regulator/pca9450-regulator.c | 196 ++++++++++++++++++++-
drivers/regulator/pf8x00-regulator.c | 2 +-
drivers/regulator/pfuze100-regulator.c | 2 +-
drivers/regulator/rpi-panel-attiny-regulator.c | 2 +-
drivers/regulator/rtmv20-regulator.c | 2 +-
drivers/regulator/rtq2208-regulator.c | 100 +++++++----
drivers/regulator/rtq6752-regulator.c | 2 +-
drivers/regulator/sun20i-regulator.c | 157 +++++++++++++++++
drivers/regulator/tps51632-regulator.c | 2 +-
drivers/regulator/tps62360-regulator.c | 2 +-
drivers/staging/iio/impedance-analyzer/ad5933.c | 26 +--
include/linux/mfd/axp20x.h | 98 ++++++++++-
include/linux/regulator/consumer.h | 7 +
include/linux/regulator/pca9450.h | 1 +
37 files changed, 879 insertions(+), 215 deletions(-)
create mode 100644 Documentation/devicetree/bindings/regulator/allwinner,sun20i-d1-system-ldos.yaml
create mode 100644 drivers/regulator/sun20i-regulator.c


2024-05-14 21:44:59

by pr-tracker-bot

[permalink] [raw]
Subject: Re: [GIT PULL] regulator updates for v6.10

The pull request you sent on Mon, 13 May 2024 10:38:55 +0100:

> https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git tags/regulator-v6.10

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/07bbfc6aba1efe332d9994b2995c9bea0cd3b25f

Thank you!

--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html