[GIT PULL] extcon next for v6.12

From: Chanwoo Choi
Date: Sun Sep 08 2024 - 11:18:21 EST


Dear Greg,

This is extcon-next pull request for v6.12. I add detailed description of
this pull request on below. Please pull extcon with following updates.

Best Regards,
Chanwoo Choi


The following changes since commit 47ac09b91befbb6a235ab620c32af719f8208399:

Linux 6.11-rc4 (2024-08-18 13:17:27 -0700)

are available in the Git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git tags/extcon-next-for-6.12

for you to fetch changes up to 2e01ac83c1c7166e58043ff2bdb0dc7dbfcfd11a:

extcon: lc824206xa: Fix build error of POWER_SUPPLY_PROP_USB_TYPE (2024-09-05 01:44:51 +0900)

----------------------------------------------------------------
Update extcon next for v6.12

Detailed description for this pull request:
- Add missing child node port on exttcon-ptn5150 binding document

- Convert extcon-usb-gpio.txt to yaml format for binding document

- Add new LC824206XA microUSB switch driver
: Add a new driver for the ON Semiconductor LC824206XA microUSB switch and
accessory detector chip. It has been tested on a Lenovo Yoga Tablet 2 Pro
1380. And this driver is only used on x86/ACPI (non devicetree) devices,
Therefor there is no devicetree bindings documentation.

- Apply immutable branch between power_supply and extcon tree for extcon-lc824206xa.c
----------------------------------------------------------------

Chanwoo Choi (1):
Merge tag 'ib-psy-usb-types-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply into extcon-next

Frank Li (2):
dt-bindings: extcon: ptn5150: add child node port
dt-bindings: extcon: convert extcon-usb-gpio.txt to yaml format

Hans de Goede (7):
power: supply: "usb_type" property may be written to
power: supply: ucs1002: Adjust ucs1002_set_usb_type() to accept string values
power: supply: rt9467-charger: Remove "usb_type" property write support
power: supply: sysfs: Add power_supply_show_enum_with_available() helper
power: supply: sysfs: Move power_supply_show_enum_with_available() up
power: supply: Change usb_types from an array into a bitmask
extcon: Add LC824206XA microUSB switch driver

Stephen Rothwell (1):
extcon: lc824206xa: Fix build error of POWER_SUPPLY_PROP_USB_TYPE

Documentation/ABI/testing/sysfs-class-power | 7 +-
.../devicetree/bindings/extcon/extcon-ptn5150.yaml | 11 +
.../devicetree/bindings/extcon/extcon-usb-gpio.txt | 21 -
.../bindings/extcon/linux,extcon-usb-gpio.yaml | 37 ++
drivers/extcon/Kconfig | 11 +
drivers/extcon/Makefile | 1 +
drivers/extcon/extcon-intel-cht-wc.c | 15 +-
drivers/extcon/extcon-lc824206xa.c | 495 +++++++++++++++++++++
drivers/phy/ti/phy-tusb1210.c | 11 +-
drivers/power/supply/axp20x_usb_power.c | 13 +-
drivers/power/supply/bq256xx_charger.c | 15 +-
drivers/power/supply/cros_usbpd-charger.c | 22 +-
drivers/power/supply/lenovo_yoga_c630_battery.c | 7 +-
drivers/power/supply/mp2629_charger.c | 15 +-
drivers/power/supply/mt6360_charger.c | 13 +-
drivers/power/supply/mt6370-charger.c | 13 +-
drivers/power/supply/power_supply_core.c | 4 -
drivers/power/supply/power_supply_sysfs.c | 66 +--
drivers/power/supply/qcom_battmgr.c | 37 +-
drivers/power/supply/qcom_pmi8998_charger.c | 13 +-
drivers/power/supply/rk817_charger.c | 9 +-
drivers/power/supply/rn5t618_power.c | 13 +-
drivers/power/supply/rt9467-charger.c | 16 +-
drivers/power/supply/rt9471.c | 15 +-
drivers/power/supply/ucs1002_power.c | 26 +-
drivers/usb/typec/anx7411.c | 11 +-
drivers/usb/typec/rt1719.c | 11 +-
drivers/usb/typec/tcpm/tcpm.c | 11 +-
drivers/usb/typec/tipd/core.c | 9 +-
drivers/usb/typec/ucsi/psy.c | 11 +-
include/linux/power_supply.h | 3 +-
31 files changed, 687 insertions(+), 275 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/extcon/extcon-usb-gpio.txt
create mode 100644 Documentation/devicetree/bindings/extcon/linux,extcon-usb-gpio.yaml
create mode 100644 drivers/extcon/extcon-lc824206xa.c