]> www.infradead.org Git - linux.git/commitdiff
usb: misc: onboard_usb_dev: Add support for TI TUSB8044 hub
authorMike Looijmans <mike.looijmans@topic.nl>
Wed, 7 May 2025 13:11:42 +0000 (15:11 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 May 2025 11:13:58 +0000 (13:13 +0200)
The TUSB8044 is similar to the TUSB8041. This adds the PID/VID values
and allows to specify the reset GPIO signal on the board.

Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl>
Link: https://lore.kernel.org/r/20250507131143.2243079-1-mike.looijmans@topic.nl
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/onboard_usb_dev.c
drivers/usb/misc/onboard_usb_dev.h

index 15fa90f47c70580bce87b990974641a6516fff30..40bc98019e0b933fc3a1447a00696ab12f79185f 100644 (file)
@@ -598,6 +598,8 @@ static const struct usb_device_id onboard_dev_id_table[] = {
        { USB_DEVICE(VENDOR_ID_TI, 0x8027) }, /* TI USB8020B 2.0 HUB */
        { USB_DEVICE(VENDOR_ID_TI, 0x8140) }, /* TI USB8041 3.0 HUB */
        { USB_DEVICE(VENDOR_ID_TI, 0x8142) }, /* TI USB8041 2.0 HUB */
+       { USB_DEVICE(VENDOR_ID_TI, 0x8440) }, /* TI USB8044 3.0 HUB */
+       { USB_DEVICE(VENDOR_ID_TI, 0x8442) }, /* TI USB8044 2.0 HUB */
        { USB_DEVICE(VENDOR_ID_VIA, 0x0817) }, /* VIA VL817 3.1 HUB */
        { USB_DEVICE(VENDOR_ID_VIA, 0x2817) }, /* VIA VL817 2.0 HUB */
        { USB_DEVICE(VENDOR_ID_XMOS, 0x0013) }, /* XMOS XVF3500 Voice Processor */
index a5b18840c3f455ddc3880557e140ddd67d240cb1..e017b8e22f936be66da73789abb4f620e6af4d6a 100644 (file)
@@ -125,6 +125,8 @@ static const struct of_device_id onboard_dev_match[] = {
        { .compatible = "usb451,8027", .data = &ti_tusb8020b_data, },
        { .compatible = "usb451,8140", .data = &ti_tusb8041_data, },
        { .compatible = "usb451,8142", .data = &ti_tusb8041_data, },
+       { .compatible = "usb451,8440", .data = &ti_tusb8041_data, },
+       { .compatible = "usb451,8442", .data = &ti_tusb8041_data, },
        { .compatible = "usb4b4,6504", .data = &cypress_hx3_data, },
        { .compatible = "usb4b4,6506", .data = &cypress_hx3_data, },
        { .compatible = "usb4b4,6570", .data = &cypress_hx2vl_data, },