I am looking to expose Type-C charging ports using a power_supply class. In this patch series I have done this by creating a config option to enable this by adding support directly into the typec driver. I would like some feedback on this general approach. I have been testing on a system that uses an ACPI implementation of UCSI and things are working as expected. Mathew King (2): typec: Move typec class structs into a header file typec: Add Type-C charger drivers/usb/typec/Kconfig | 11 ++ drivers/usb/typec/Makefile | 1 + drivers/usb/typec/charger.c | 204 ++++++++++++++++++++++++++++++++++++ drivers/usb/typec/charger.h | 33 ++++++ drivers/usb/typec/class.c | 108 ++++++++----------- drivers/usb/typec/class.h | 63 +++++++++++ 6 files changed, 356 insertions(+), 64 deletions(-) create mode 100644 drivers/usb/typec/charger.c create mode 100644 drivers/usb/typec/charger.h create mode 100644 drivers/usb/typec/class.h -- 2.26.1.301.g55bc3eb7cb9-goog