Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Yixun Lan and committed by
Greg Kroah-Hartman
00b4fe5b e972256f

+3
+2
drivers/usb/misc/onboard_usb_dev.c
··· 571 571 #define VENDOR_ID_MICROCHIP 0x0424 572 572 #define VENDOR_ID_PARADE 0x1da0 573 573 #define VENDOR_ID_REALTEK 0x0bda 574 + #define VENDOR_ID_TERMINUS 0x1a40 574 575 #define VENDOR_ID_TI 0x0451 575 576 #define VENDOR_ID_VIA 0x2109 576 577 #define VENDOR_ID_XMOS 0x20B1 ··· 677 676 { USB_DEVICE(VENDOR_ID_REALTEK, 0x0414) }, /* RTS5414 USB 3.2 HUB */ 678 677 { USB_DEVICE(VENDOR_ID_REALTEK, 0x5414) }, /* RTS5414 USB 2.1 HUB */ 679 678 { USB_DEVICE(VENDOR_ID_REALTEK, 0x0179) }, /* RTL8188ETV 2.4GHz WiFi */ 679 + { USB_DEVICE(VENDOR_ID_TERMINUS, 0x0101) }, /* Terminus FE1.1s 2.0 HUB */ 680 680 { USB_DEVICE(VENDOR_ID_TI, 0x8025) }, /* TI USB8020B 3.0 HUB */ 681 681 { USB_DEVICE(VENDOR_ID_TI, 0x8027) }, /* TI USB8020B 2.0 HUB */ 682 682 { USB_DEVICE(VENDOR_ID_TI, 0x8140) }, /* TI USB8041 3.0 HUB */
+1
drivers/usb/misc/onboard_usb_dev.h
··· 152 152 { .compatible = "usbbda,5411", .data = &realtek_rts5411_data, }, 153 153 { .compatible = "usbbda,414", .data = &realtek_rts5411_data, }, 154 154 { .compatible = "usbbda,5414", .data = &realtek_rts5411_data, }, 155 + { .compatible = "usb1a40,0101", .data = &vialab_vl817_data, }, 155 156 { .compatible = "usb1a86,8091", .data = &wch_ch334_data, }, 156 157 { .compatible = "usb1da0,5511", .data = &parade_ps5511_data, }, 157 158 { .compatible = "usb1da0,55a1", .data = &parade_ps5511_data, },