mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 07:00:48 +00:00
acd6199f19
Implements the USB part of Intel USB-I2C/GPIO/SPI adapter device named "La Jolla Cove Adapter" (LJCA). The communication between the various LJCA module drivers and the hardware will be muxed/demuxed by this driver. Three modules ( I2C, GPIO, and SPI) are supported currently. Each sub-module of LJCA device is identified by type field within the LJCA message header. The sub-modules of LJCA can use ljca_transfer() to issue a transfer between host and hardware. And ljca_register_event_cb is exported to LJCA sub-module drivers for hardware event subscription. The minimum code in ASL that covers this board is Scope (\_SB.PCI0.DWC3.RHUB.HS01) { Device (GPIO) { Name (_ADR, Zero) Name (_STA, 0x0F) } Device (I2C) { Name (_ADR, One) Name (_STA, 0x0F) } Device (SPI) { Name (_ADR, 0x02) Name (_STA, 0x0F) } } Signed-off-by: Wentong Wu <wentong.wu@intel.com> Reviewed-by: Sakari Ailus <sakari.ailus@linux.intel.com> Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> Tested-by: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Oliver Neukum <oneukum@suse.com> Link: https://lore.kernel.org/r/1696833205-16716-2-git-send-email-wentong.wu@intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
37 lines
1.4 KiB
Makefile
37 lines
1.4 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the rest of the USB drivers
|
|
# (the ones that don't fit into any other categories)
|
|
#
|
|
obj-$(CONFIG_USB_ADUTUX) += adutux.o
|
|
obj-$(CONFIG_USB_APPLEDISPLAY) += appledisplay.o
|
|
obj-$(CONFIG_USB_CYPRESS_CY7C63) += cypress_cy7c63.o
|
|
obj-$(CONFIG_USB_CYTHERM) += cytherm.o
|
|
obj-$(CONFIG_USB_EMI26) += emi26.o
|
|
obj-$(CONFIG_USB_EMI62) += emi62.o
|
|
obj-$(CONFIG_USB_EZUSB_FX2) += ezusb.o
|
|
obj-$(CONFIG_APPLE_MFI_FASTCHARGE) += apple-mfi-fastcharge.o
|
|
obj-$(CONFIG_USB_LJCA) += usb-ljca.o
|
|
obj-$(CONFIG_USB_IDMOUSE) += idmouse.o
|
|
obj-$(CONFIG_USB_IOWARRIOR) += iowarrior.o
|
|
obj-$(CONFIG_USB_ISIGHTFW) += isight_firmware.o
|
|
obj-$(CONFIG_USB_LCD) += usblcd.o
|
|
obj-$(CONFIG_USB_LD) += ldusb.o
|
|
obj-$(CONFIG_USB_LEGOTOWER) += legousbtower.o
|
|
obj-$(CONFIG_USB_QCOM_EUD) += qcom_eud.o
|
|
obj-$(CONFIG_USB_TEST) += usbtest.o
|
|
obj-$(CONFIG_USB_EHSET_TEST_FIXTURE) += ehset.o
|
|
obj-$(CONFIG_USB_TRANCEVIBRATOR) += trancevibrator.o
|
|
obj-$(CONFIG_USB_USS720) += uss720.o
|
|
obj-$(CONFIG_USB_SEVSEG) += usbsevseg.o
|
|
obj-$(CONFIG_USB_YUREX) += yurex.o
|
|
obj-$(CONFIG_USB_HUB_USB251XB) += usb251xb.o
|
|
obj-$(CONFIG_USB_HSIC_USB3503) += usb3503.o
|
|
obj-$(CONFIG_USB_HSIC_USB4604) += usb4604.o
|
|
obj-$(CONFIG_USB_CHAOSKEY) += chaoskey.o
|
|
|
|
obj-$(CONFIG_USB_SISUSBVGA) += sisusbvga/
|
|
obj-$(CONFIG_USB_LINK_LAYER_TEST) += lvstest.o
|
|
obj-$(CONFIG_BRCM_USB_PINMAP) += brcmstb-usb-pinmap.o
|
|
obj-$(CONFIG_USB_ONBOARD_HUB) += onboard_usb_hub.o
|