Skip to content

Commit ab44b92

Browse files
MikeLooijmansgregkh
authored andcommitted
usb: misc: onboard_usb_dev: Add support for TI TUSB8044 hub
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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent b48a2e0 commit ab44b92

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)