mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
9e1897cb95
Add a new driver for the ON Semiconductor LC824206XA microUSB switch and accessory detector chip. ON Semiconductor has an "Advance Information" datasheet available (ENA2222-D.PDF), but no full datasheet. So there is no documentation available for the registers. This driver is based on the register info from the extcon-fsa9285.c driver, from the Lollipop Android sources for the Lenovo Yoga Tablet 2 (Pro) 830 / 1050 / 1380 models. Note despite the name this is actually a driver for the LC824206XA not the FSA9285. This has only been tested on a Lenovo Yoga Tablet 2 Pro 1380 and using the driver on other setups may require additional work. So far this driver is only used on x86/ACPI (non devicetree) devs. Therefor there is no devicetree bindings documentation for this driver's "onnn,enable-miclr-for-dcp" property since this is not used in actual devicetree files and the dt bindings maintainers have requested properties with no actual dt users to _not_ be added to the dt bindings. Link: https://lore.kernel.org/lkml/20240512204019.58121-1-hdegoede@redhat.com/ Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
30 lines
1.3 KiB
Makefile
30 lines
1.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# Makefile for external connector class (extcon) devices
|
|
#
|
|
|
|
obj-$(CONFIG_EXTCON) += extcon-core.o
|
|
extcon-core-objs += extcon.o devres.o
|
|
obj-$(CONFIG_EXTCON_ADC_JACK) += extcon-adc-jack.o
|
|
obj-$(CONFIG_EXTCON_AXP288) += extcon-axp288.o
|
|
obj-$(CONFIG_EXTCON_FSA9480) += extcon-fsa9480.o
|
|
obj-$(CONFIG_EXTCON_GPIO) += extcon-gpio.o
|
|
obj-$(CONFIG_EXTCON_INTEL_INT3496) += extcon-intel-int3496.o
|
|
obj-$(CONFIG_EXTCON_INTEL_CHT_WC) += extcon-intel-cht-wc.o
|
|
obj-$(CONFIG_EXTCON_INTEL_MRFLD) += extcon-intel-mrfld.o
|
|
obj-$(CONFIG_EXTCON_LC824206XA) += extcon-lc824206xa.o
|
|
obj-$(CONFIG_EXTCON_MAX14577) += extcon-max14577.o
|
|
obj-$(CONFIG_EXTCON_MAX3355) += extcon-max3355.o
|
|
obj-$(CONFIG_EXTCON_MAX77693) += extcon-max77693.o
|
|
obj-$(CONFIG_EXTCON_MAX77843) += extcon-max77843.o
|
|
obj-$(CONFIG_EXTCON_MAX8997) += extcon-max8997.o
|
|
obj-$(CONFIG_EXTCON_PALMAS) += extcon-palmas.o
|
|
obj-$(CONFIG_EXTCON_PTN5150) += extcon-ptn5150.o
|
|
obj-$(CONFIG_EXTCON_QCOM_SPMI_MISC) += extcon-qcom-spmi-misc.o
|
|
obj-$(CONFIG_EXTCON_RT8973A) += extcon-rt8973a.o
|
|
obj-$(CONFIG_EXTCON_SM5502) += extcon-sm5502.o
|
|
obj-$(CONFIG_EXTCON_USB_GPIO) += extcon-usb-gpio.o
|
|
obj-$(CONFIG_EXTCON_USBC_CROS_EC) += extcon-usbc-cros-ec.o
|
|
obj-$(CONFIG_EXTCON_USBC_TUSB320) += extcon-usbc-tusb320.o
|
|
obj-$(CONFIG_EXTCON_RTK_TYPE_C) += extcon-rtk-type-c.o
|