Skip to content

Commit 3d13716

Browse files
author
Charles Mirabile
committed
usb: misc: onboard_usb_hub: Add support for Cypress CY7C6563x
JIRA: https://issues.redhat.com/browse/RHEL-21064 commit 24af68a Author: Frieder Schrempf <frieder.schrempf@kontron.de> Date: Mon, 27 Nov 2023 12:22:26 +0100 The Cypress CY7C6563x is a 2/4-port USB 2.0 hub. Add support for this hub in the driver in order to bring up reset, supply or clock dependencies. There is no reset pulse width given in the datasheet so we expect a minimal value of 1us to be enough. This hasn't been tested though due to lack of hardware which has the reset connected to a GPIO. Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de> Link: https://lore.kernel.org/r/20231127112234.109073-3-frieder@fris.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Charles Mirabile <cmirabil@redhat.com>
1 parent 9fa23fc commit 3d13716

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

drivers/usb/misc/onboard_usb_hub.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ static void onboard_hub_usbdev_disconnect(struct usb_device *udev)
446446
static const struct usb_device_id onboard_hub_id_table[] = {
447447
{ USB_DEVICE(VENDOR_ID_CYPRESS, 0x6504) }, /* CYUSB33{0,1,2}x/CYUSB230x 3.0 */
448448
{ USB_DEVICE(VENDOR_ID_CYPRESS, 0x6506) }, /* CYUSB33{0,1,2}x/CYUSB230x 2.0 */
449+
{ USB_DEVICE(VENDOR_ID_CYPRESS, 0x6570) }, /* CY7C6563x 2.0 */
449450
{ USB_DEVICE(VENDOR_ID_GENESYS, 0x0608) }, /* Genesys Logic GL850G USB 2.0 */
450451
{ USB_DEVICE(VENDOR_ID_GENESYS, 0x0610) }, /* Genesys Logic GL852G USB 2.0 */
451452
{ USB_DEVICE(VENDOR_ID_GENESYS, 0x0620) }, /* Genesys Logic GL3523 USB 3.1 */

drivers/usb/misc/onboard_usb_hub.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ static const struct onboard_hub_pdata cypress_hx3_data = {
3636
.num_supplies = 2,
3737
};
3838

39+
static const struct onboard_hub_pdata cypress_hx2vl_data = {
40+
.reset_us = 1,
41+
.num_supplies = 1,
42+
};
43+
3944
static const struct onboard_hub_pdata genesys_gl850g_data = {
4045
.reset_us = 3,
4146
.num_supplies = 1,
@@ -61,6 +66,7 @@ static const struct of_device_id onboard_hub_match[] = {
6166
{ .compatible = "usb451,8142", .data = &ti_tusb8041_data, },
6267
{ .compatible = "usb4b4,6504", .data = &cypress_hx3_data, },
6368
{ .compatible = "usb4b4,6506", .data = &cypress_hx3_data, },
69+
{ .compatible = "usb4b4,6570", .data = &cypress_hx2vl_data, },
6470
{ .compatible = "usb5e3,608", .data = &genesys_gl850g_data, },
6571
{ .compatible = "usb5e3,610", .data = &genesys_gl852g_data, },
6672
{ .compatible = "usb5e3,620", .data = &genesys_gl852g_data, },

0 commit comments

Comments
 (0)