mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
usb: misc: onboard_usb_dev: Add Terminus FE1.1s USB2.0 Hub (1a40:0101)
Terminus FE1.1s is USB2.0 protocol compliant 4-port USB HUB, It support MTT (Multiple Transaction Translator) mode, the upstream port supports high-speed 480MHz and full-speed 12MHz modes, also it has integrated 5V to 3.3V/1.8V regulator and Power-On-Reset circuit. Link: https://terminus-usa.com/wp-content/uploads/2024/06/FE1.1s-Product-Brief-Rev.-2.0-2023.pdf [1] Signed-off-by: Yixun Lan <dlan@kernel.org> Link: https://patch.msgid.link/20260319-03-usb-hub-fe1-v2-2-e4e26809dd7d@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e972256f25
commit
00b4fe5be0
|
|
@ -571,6 +571,7 @@ static struct platform_driver onboard_dev_driver = {
|
|||
#define VENDOR_ID_MICROCHIP 0x0424
|
||||
#define VENDOR_ID_PARADE 0x1da0
|
||||
#define VENDOR_ID_REALTEK 0x0bda
|
||||
#define VENDOR_ID_TERMINUS 0x1a40
|
||||
#define VENDOR_ID_TI 0x0451
|
||||
#define VENDOR_ID_VIA 0x2109
|
||||
#define VENDOR_ID_XMOS 0x20B1
|
||||
|
|
@ -676,6 +677,7 @@ static const struct usb_device_id onboard_dev_id_table[] = {
|
|||
{ USB_DEVICE(VENDOR_ID_REALTEK, 0x0414) }, /* RTS5414 USB 3.2 HUB */
|
||||
{ USB_DEVICE(VENDOR_ID_REALTEK, 0x5414) }, /* RTS5414 USB 2.1 HUB */
|
||||
{ USB_DEVICE(VENDOR_ID_REALTEK, 0x0179) }, /* RTL8188ETV 2.4GHz WiFi */
|
||||
{ USB_DEVICE(VENDOR_ID_TERMINUS, 0x0101) }, /* Terminus FE1.1s 2.0 HUB */
|
||||
{ USB_DEVICE(VENDOR_ID_TI, 0x8025) }, /* TI USB8020B 3.0 HUB */
|
||||
{ USB_DEVICE(VENDOR_ID_TI, 0x8027) }, /* TI USB8020B 2.0 HUB */
|
||||
{ USB_DEVICE(VENDOR_ID_TI, 0x8140) }, /* TI USB8041 3.0 HUB */
|
||||
|
|
|
|||
|
|
@ -152,6 +152,7 @@ static const struct of_device_id onboard_dev_match[] = {
|
|||
{ .compatible = "usbbda,5411", .data = &realtek_rts5411_data, },
|
||||
{ .compatible = "usbbda,414", .data = &realtek_rts5411_data, },
|
||||
{ .compatible = "usbbda,5414", .data = &realtek_rts5411_data, },
|
||||
{ .compatible = "usb1a40,0101", .data = &vialab_vl817_data, },
|
||||
{ .compatible = "usb1a86,8091", .data = &wch_ch334_data, },
|
||||
{ .compatible = "usb1da0,5511", .data = ¶de_ps5511_data, },
|
||||
{ .compatible = "usb1da0,55a1", .data = ¶de_ps5511_data, },
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user