Skip to content

Commit 7f561bd

Browse files
author
Desnes Nunes
committed
usb: misc: onboard_usb_dev: Add support for TI TUSB8044 hub
JIRA: https://issues.redhat.com/browse/RHEL-116016 commit ab44b92 Author: Mike Looijmans <mike.looijmans@topic.nl> Date: Wed, 7 May 2025 15:11:42 +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> Signed-off-by: Desnes Nunes <desnesn@redhat.com>
1 parent 8dae4ba commit 7f561bd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

drivers/usb/misc/onboard_usb_dev.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,8 @@ static const struct usb_device_id onboard_dev_id_table[] = {
598598
{ USB_DEVICE(VENDOR_ID_TI, 0x8027) }, /* TI USB8020B 2.0 HUB */
599599
{ USB_DEVICE(VENDOR_ID_TI, 0x8140) }, /* TI USB8041 3.0 HUB */
600600
{ USB_DEVICE(VENDOR_ID_TI, 0x8142) }, /* TI USB8041 2.0 HUB */
601+
{ USB_DEVICE(VENDOR_ID_TI, 0x8440) }, /* TI USB8044 3.0 HUB */
602+
{ USB_DEVICE(VENDOR_ID_TI, 0x8442) }, /* TI USB8044 2.0 HUB */
601603
{ USB_DEVICE(VENDOR_ID_VIA, 0x0817) }, /* VIA VL817 3.1 HUB */
602604
{ USB_DEVICE(VENDOR_ID_VIA, 0x2817) }, /* VIA VL817 2.0 HUB */
603605
{ USB_DEVICE(VENDOR_ID_XMOS, 0x0013) }, /* XMOS XVF3500 Voice Processor */

drivers/usb/misc/onboard_usb_dev.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ static const struct of_device_id onboard_dev_match[] = {
125125
{ .compatible = "usb451,8027", .data = &ti_tusb8020b_data, },
126126
{ .compatible = "usb451,8140", .data = &ti_tusb8041_data, },
127127
{ .compatible = "usb451,8142", .data = &ti_tusb8041_data, },
128+
{ .compatible = "usb451,8440", .data = &ti_tusb8041_data, },
129+
{ .compatible = "usb451,8442", .data = &ti_tusb8041_data, },
128130
{ .compatible = "usb4b4,6504", .data = &cypress_hx3_data, },
129131
{ .compatible = "usb4b4,6506", .data = &cypress_hx3_data, },
130132
{ .compatible = "usb4b4,6570", .data = &cypress_hx2vl_data, },

0 commit comments

Comments
 (0)