mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
![]() - New Support & Features * Add extensive support for the Analog Devices ADP5589 I/O expander, including core MFD, GPIO, PWM, and a new keypad matrix input driver. This also adds support for handling various events including GPI, keypad, reset and unlock ev ents. * Add support for the TI TPS652G1 PMIC, a stripped-down version of the TPS65224, including core MFD, PFSM, pinctrl, and GPIO support. * Add support for the Apple Silicon System Management Controller (SMC), including the core MFD driver which handles the RTKit-based protocol, a new GPIO driver for PMU GPIOs, and a new reboot/power-off driver. - Improvements & Fixes * Dynamically add ADP5585 sub-devices based on device tree properties. * Move ADP5585 oscillator control from the child PWM driver to the main MFD driver to better handle shared resources. * Add support for a hardware reset pin and VDD regulator to the ADP5585 driver. * Update the TPS65219 MFD cell's GPIO compatible string for the TPS65214 to reflect hardware capabilities correctly. * Separate the ChromeOS EC charge-control probing from the USB-PD subsystem, allowing it to probe independently based on the dedicated EC_FEATURE_CHARGER. * Fix an interrupt naming typo in the MT6370 driver. * Fix RK806 PMIC reset behavior by allowing the reset mode to be customized via a new device tree property. * Fix AXP20X regulator cell ID conflicts for secondary PMICs on boards without an IRQ line connected. * Fix MT6397 keypad sub-device creation to use specific names instead of a generic one, ensuring correct driver binding. * Fix a build warning in the stm32-timers driver by adding a missing include for export.h. - Cleanups & Refactoring * Refactor the ADP5585 driver to simplify how regmap defaults are handled, making it easier to add new chip variants. * Introduce per-chip register map structures for the ADP5585/ADP5589 family to handle differences between the devices. * Convert several drivers to use dev_fwnode() instead of of_fwnode_handle(). * Make various static structures const in the cs40l50, rohm-bd71828, tps65219, and twl6040 drivers. * Remove redundant pm_runtime_mark_last_busy() calls from several drivers. * Alphabetize Kconfig entries for Cirrus Logic and Maxim drivers. * Remove unused fields from the 'tps65219' struct. * Update several MFD-related headers to follow the 'Include What You Use' (IWYU) principle. - Removals * Remove the old, platform-data-based adp5589-keys input driver, which is now superseded by the new MFD-based adp5585-keys driver. * Remove the unused twl6030_mmc_card_detect() functions and associated header declarations. * Remove the now unused pcf50633/core.h header file. * Remove the fsl,imx8qxp-csr device tree binding, which was being used incorrectly. - Device Tree Bindings Updates * Add support for the Analog Devices ADP5589 I/O expander to the adi,adp5585.yaml binding. * Add new properties to the adi,adp5585.yaml binding for input events, including keypad pins, unlock events, and reset events. * Add a reset-gpios property to the adi,adp5585.yaml binding. * Add the TI TPS652G1 PMIC to the ti,tps6594.yaml binding. * Add new bindings for the Apple Mac System Management Controller (SMC) and its sub-devices: apple,smc.yaml, apple,smc-gpio.yaml, and apple,smc-reboot.yaml. * Convert the Freescale MXS LRADC binding (mxs-lradc) to YAML schema format. * Convert and combine the NXP LPC1850 CREG, DMAMUX, and USB OTG PHY bindings into a single YAML schema file. * Convert the TI TPS65910 binding to YAML schema format. * Add a comment to the samsung,s2mps11.yaml binding to clarify the use of 'oneOf' for interrupt properties. * Add the rockchip,reset-mode property to the rockchip,rk806.yaml binding to allow customization of the PMIC's reset behavior. -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEdrbJNaO+IJqU8IdIUa+KL4f8d2EFAmiKNQgACgkQUa+KL4f8 d2HXOw//bquorwKRgOmi85ZMFNVowywRiUfEYUmKKkjlaK/mfUwmiPxlzREWmR0p paAvlL2bKHYsEt/3gh8l8Q8cIo3ELlhSHmECG22Pz8+msq06n7vZ/fpzXhjqdHLR PIyA7oJv2kBE+glmRiDL2yRGQU42i/Mmq5vo9eJD49aOL8nOzNk17N7fFp9aDGQ6 C+MDrvaFV4jYjMH8/A/pBh9KaPwzvuIvNvMFeC4F5Zjpym6X1gClDEVgQvSHsyz0 NyT2qpHG6KkUVNhm8dBcYUxdAbpZLjWiPpqfe4KzWflZ9kUjAow5z2NhiwtDxZuG DVICs64O1YvoqZXIazptYEIHLmDks1URdADd/efJDbBKm12G2DgRJtbLVFW/hWUz g7itYgJk3cpRoFUVjiniLvy+Nlp67XfN5qADNiHnRJpk4DCW5sNqPp5AHFhhD8hC 5t6EyOYaO7U1I+0ZgWvsSaCv+D/r4pjcUBalUB1Wh7QcEWOXVJgFmkggbXEPEzob FtM6GCFcIr+yrrqGL3o6DNgQmuiAenuIjGs9jk6on+0zUmDvgvwbERpktweEofki anW4jtm0tDKSP9qBFEhGC8dOygFU/jnXqaHGsXeEHOv5zb5mSk/dL+W/QHqmG2QO 08UEh02sfWiUE8hwL3vZ/cXvR7SfgK00nBC3g8QfEWF1AHplGE0= =YYgL -----END PGP SIGNATURE----- Merge tag 'mfd-next-6.17' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd Pull MFD updates from Lee Jones: "New Support & Features: - Add extensive support for the Analog Devices ADP5589 I/O expander, including core MFD, GPIO, PWM, and a new keypad matrix input driver. This also adds support for handling various events including GPI, keypad, reset and unlock ev ents - Add support for the TI TPS652G1 PMIC, a stripped-down version of the TPS65224, including core MFD, PFSM, pinctrl, and GPIO support - Add support for the Apple Silicon System Management Controller (SMC), including the core MFD driver which handles the RTKit-based protocol, a new GPIO driver for PMU GPIOs, and a new reboot/power-off driver. Improvements & Fixes: - Dynamically add ADP5585 sub-devices based on device tree properties - Move ADP5585 oscillator control from the child PWM driver to the main MFD driver to better handle shared resources - Add support for a hardware reset pin and VDD regulator to the ADP5585 driver - Update the TPS65219 MFD cell's GPIO compatible string for the TPS65214 to reflect hardware capabilities correctly - Separate the ChromeOS EC charge-control probing from the USB-PD subsystem, allowing it to probe independently based on the dedicated EC_FEATURE_CHARGER - Fix an interrupt naming typo in the MT6370 driver - Fix RK806 PMIC reset behavior by allowing the reset mode to be customized via a new device tree property - Fix AXP20X regulator cell ID conflicts for secondary PMICs on boards without an IRQ line connected - Fix MT6397 keypad sub-device creation to use specific names instead of a generic one, ensuring correct driver binding - Fix a build warning in the stm32-timers driver by adding a missing include for export.h. Cleanups & Refactoring: - Refactor the ADP5585 driver to simplify how regmap defaults are handled, making it easier to add new chip variants - Introduce per-chip register map structures for the ADP5585/ADP5589 family to handle differences between the devices - Convert several drivers to use dev_fwnode() instead of of_fwnode_handle() - Make various static structures const in the cs40l50, rohm-bd71828, tps65219, and twl6040 drivers - Remove redundant pm_runtime_mark_last_busy() calls from several drivers - Alphabetize Kconfig entries for Cirrus Logic and Maxim drivers - Remove unused fields from the 'tps65219' struct - Update several MFD-related headers to follow the 'Include What You Use' (IWYU) principle. Removals: - Remove the old, platform-data-based adp5589-keys input driver, which is now superseded by the new MFD-based adp5585-keys driver - Remove the unused twl6030_mmc_card_detect() functions and associated header declarations - Remove the now unused pcf50633/core.h header file - Remove the fsl,imx8qxp-csr device tree binding, which was being used incorrectly. Device Tree Bindings Updates: - Add support for the Analog Devices ADP5589 I/O expander to the adi,adp5585.yaml binding - Add new properties to the adi,adp5585.yaml binding for input events, including keypad pins, unlock events, and reset events - Add a reset-gpios property to the adi,adp5585.yaml binding - Add the TI TPS652G1 PMIC to the ti,tps6594.yaml binding - Add new bindings for the Apple Mac System Management Controller (SMC) and its sub-devices: apple,smc.yaml, apple,smc-gpio.yaml, and apple,smc-reboot.yaml - Convert the Freescale MXS LRADC binding (mxs-lradc) to YAML schema format - Convert and combine the NXP LPC1850 CREG, DMAMUX, and USB OTG PHY bindings into a single YAML schema file - Convert the TI TPS65910 binding to YAML schema format - Add a comment to the samsung,s2mps11.yaml binding to clarify the use of 'oneOf' for interrupt properties - Add the rockchip,reset-mode property to the rockchip,rk806.yaml binding to allow customization of the PMIC's reset behavior" * tag 'mfd-next-6.17' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd: (28 commits) mfd: dt-bindings: Convert TPS65910 to DT schema mfd: Minor Cirrus/Maxim Kconfig order fixes mfd: Remove redundant pm_runtime_mark_last_busy() calls mfd: mt6397: Do not use generic name for keypad sub-devices mfd: axp20x: Set explicit ID for regulator cell if no IRQ line is present mfd: mt6370: Fix the interrupt naming typo mfd: rk8xx-core: Allow to customize RK806 reset mode dt-bindings: mfd: rk806: Allow to customize PMIC reset mode mfd: syscon: atmel-smc: Don't use "proxy" headers mfd: madera: Don't use "proxy" headers mfd: wm8350-core: Don't use "proxy" headers dt-bindings: mfd: samsung,s2mps11: Add comment about interrupts properties mfd: davinci_voicecodec: Don't use "proxy" headers mfd: pcf50633: Remove the header file core.h mfd: tps65219: Remove another unused field from 'struct tps65219' mfd: tps65219: Remove an unused field from 'struct tps65219' mfd: tps65219: Constify struct regmap_irq_sub_irq_map and tps65219_chip_data mfd: rohm-bd71828: Constify some structures dt-bindings: mfd: fsl,imx8qxp-csr: Remove binding documentation mfd: axp20x: Set explicit ID for AXP313 regulator ... |
||
---|---|---|
.. | ||
88pm80x.c | ||
88pm800.c | ||
88pm805.c | ||
88pm860x-core.c | ||
88pm860x-i2c.c | ||
88pm886.c | ||
aat2870-core.c | ||
ab8500-core.c | ||
ab8500-sysctrl.c | ||
abx500-core.c | ||
ac100.c | ||
acer-ec-a500.c | ||
act8945a.c | ||
adp5520.c | ||
adp5585.c | ||
altera-a10sr.c | ||
altera-sysmgr.c | ||
arizona-core.c | ||
arizona-i2c.c | ||
arizona-irq.c | ||
arizona-spi.c | ||
arizona.h | ||
as3711.c | ||
as3722.c | ||
at91-usart.c | ||
atc260x-core.c | ||
atc260x-i2c.c | ||
atmel-flexcom.c | ||
atmel-hlcdc.c | ||
atmel-smc.c | ||
axp20x-i2c.c | ||
axp20x-rsb.c | ||
axp20x.c | ||
bcm590xx.c | ||
bcm2835-pm.c | ||
bd9571mwv.c | ||
cgbc-core.c | ||
cros_ec_dev.c | ||
cs40l50-core.c | ||
cs40l50-i2c.c | ||
cs40l50-spi.c | ||
cs42l43-i2c.c | ||
cs42l43-sdw.c | ||
cs42l43.c | ||
cs42l43.h | ||
cs47l15-tables.c | ||
cs47l24-tables.c | ||
cs47l35-tables.c | ||
cs47l85-tables.c | ||
cs47l90-tables.c | ||
cs47l92-tables.c | ||
cs5535-mfd.c | ||
da903x.c | ||
da9052-core.c | ||
da9052-i2c.c | ||
da9052-irq.c | ||
da9052-spi.c | ||
da9055-core.c | ||
da9055-i2c.c | ||
da9062-core.c | ||
da9063-core.c | ||
da9063-i2c.c | ||
da9063-irq.c | ||
da9150-core.c | ||
db8500-prcmu-regs.h | ||
db8500-prcmu.c | ||
dln2.c | ||
ene-kb3930.c | ||
exynos-lpass.c | ||
ezx-pcap.c | ||
fsl-imx25-tsadc.c | ||
gateworks-gsc.c | ||
hi655x-pmic.c | ||
hi6421-pmic-core.c | ||
hi6421-spmi-pmic.c | ||
intel-lpss-acpi.c | ||
intel-lpss-pci.c | ||
intel-lpss.c | ||
intel-lpss.h | ||
intel-m10-bmc-core.c | ||
intel-m10-bmc-pmci.c | ||
intel-m10-bmc-spi.c | ||
intel_pmc_bxt.c | ||
intel_quark_i2c_gpio.c | ||
intel_soc_pmic_bxtwc.c | ||
intel_soc_pmic_chtdc_ti.c | ||
intel_soc_pmic_chtwc.c | ||
intel_soc_pmic_crc.c | ||
intel_soc_pmic_mrfld.c | ||
ioc3.c | ||
ipaq-micro.c | ||
iqs62x.c | ||
janz-cmodio.c | ||
Kconfig | ||
kempld-core.c | ||
khadas-mcu.c | ||
lm3533-core.c | ||
lm3533-ctrlbank.c | ||
lochnagar-i2c.c | ||
lp873x.c | ||
lp3943.c | ||
lp8788-irq.c | ||
lp8788.c | ||
lp87565.c | ||
lpc_ich.c | ||
lpc_sch.c | ||
macsmc.c | ||
madera-core.c | ||
madera-i2c.c | ||
madera-spi.c | ||
madera.h | ||
Makefile | ||
max8907.c | ||
max8925-core.c | ||
max8925-i2c.c | ||
max8997-irq.c | ||
max8997.c | ||
max8998-irq.c | ||
max8998.c | ||
max14577.c | ||
max77541.c | ||
max77620.c | ||
max77650.c | ||
max77686.c | ||
max77693.c | ||
max77705.c | ||
max77714.c | ||
max77759.c | ||
max77843.c | ||
mc13xxx-core.c | ||
mc13xxx-i2c.c | ||
mc13xxx-spi.c | ||
mc13xxx.h | ||
mcp-core.c | ||
mcp-sa11x0.c | ||
menelaus.c | ||
menf21bmc.c | ||
mfd-core.c | ||
motorola-cpcap.c | ||
mp2629.c | ||
mt6358-irq.c | ||
mt6360-core.c | ||
mt6370.c | ||
mt6370.h | ||
mt6397-core.c | ||
mt6397-irq.c | ||
mxs-lradc.c | ||
ntxec.c | ||
ocelot-core.c | ||
ocelot-spi.c | ||
ocelot.h | ||
omap-usb-host.c | ||
omap-usb-tll.c | ||
omap-usb.h | ||
palmas.c | ||
qcom-pm8xxx.c | ||
qcom-pm8008.c | ||
qcom-spmi-pmic.c | ||
qcom_rpm.c | ||
qnap-mcu.c | ||
rave-sp.c | ||
rc5t583-irq.c | ||
rc5t583.c | ||
rdc321x-southbridge.c | ||
retu-mfd.c | ||
rk8xx-core.c | ||
rk8xx-i2c.c | ||
rk8xx-spi.c | ||
rn5t618.c | ||
rohm-bd718x7.c | ||
rohm-bd9576.c | ||
rohm-bd71828.c | ||
rohm-bd96801.c | ||
rsmu.h | ||
rsmu_core.c | ||
rsmu_i2c.c | ||
rsmu_spi.c | ||
rt4831.c | ||
rt5033.c | ||
rt5120.c | ||
rz-mtu3.c | ||
rz-mtu3.h | ||
sec-acpm.c | ||
sec-common.c | ||
sec-core.h | ||
sec-i2c.c | ||
sec-irq.c | ||
si476x-cmd.c | ||
si476x-i2c.c | ||
si476x-prop.c | ||
simple-mfd-i2c.c | ||
simple-mfd-i2c.h | ||
sky81452.c | ||
sm501.c | ||
smpro-core.c | ||
sprd-sc27xx-spi.c | ||
ssbi.c | ||
stm32-lptimer.c | ||
stm32-timers.c | ||
stmfx.c | ||
stmpe-i2c.c | ||
stmpe-spi.c | ||
stmpe.c | ||
stmpe.h | ||
stpmic1.c | ||
stw481x.c | ||
sun4i-gpadc.c | ||
sun6i-prcm.c | ||
syscon.c | ||
tc3589x.c | ||
ti-lmu.c | ||
ti_am335x_tscadc.c | ||
timberdale.c | ||
timberdale.h | ||
tps6105x.c | ||
tps6507x.c | ||
tps6586x.c | ||
tps6594-core.c | ||
tps6594-i2c.c | ||
tps6594-spi.c | ||
tps65010.c | ||
tps65086.c | ||
tps65090.c | ||
tps65217.c | ||
tps65218.c | ||
tps65219.c | ||
tps65910.c | ||
tps65911-comparator.c | ||
tps65912-core.c | ||
tps65912-i2c.c | ||
tps65912-spi.c | ||
tqmx86.c | ||
twl-core.c | ||
twl-core.h | ||
twl4030-audio.c | ||
twl4030-irq.c | ||
twl4030-power.c | ||
twl6030-irq.c | ||
twl6040.c | ||
ucb1x00-assabet.c | ||
ucb1x00-core.c | ||
ucb1x00-ts.c | ||
upboard-fpga.c | ||
vexpress-sysreg.c | ||
viperboard.c | ||
vx855.c | ||
wcd934x.c | ||
wl1273-core.c | ||
wm97xx-core.c | ||
wm831x-auxadc.c | ||
wm831x-core.c | ||
wm831x-i2c.c | ||
wm831x-irq.c | ||
wm831x-otp.c | ||
wm831x-spi.c | ||
wm5102-tables.c | ||
wm5110-tables.c | ||
wm8350-core.c | ||
wm8350-gpio.c | ||
wm8350-i2c.c | ||
wm8350-irq.c | ||
wm8350-regmap.c | ||
wm8400-core.c | ||
wm8994-core.c | ||
wm8994-irq.c | ||
wm8994-regmap.c | ||
wm8994.h | ||
wm8997-tables.c | ||
wm8998-tables.c |