mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
b43cd82a1a
The HX3 comes in different variants (up to 4 USB 3.0 ports; multi-TT), e.g. CYUSB330x/CYUSB331x/CYUSB332x/CYUSB230x. It operates with two different power supplies: 1V2 and 3V3. Add the support for this hub, for controlling the reset pin and the power supplies. Reset time is extracted from data sheet, page 24: "The RESETN pin can be tied to VDD_IO through an external resistor and to ground (GND) through an external capacitor (minimum 5 ms time constant)." V_IH min is given at 0.7 * 3V3 (page 34), therefore use 10ms. Also add USB PIDs for the USB 2.0 and USB 3.0 root hub. Acked-by: Matthias Kaehlcke <mka@chromium.org> Signed-off-by: Benjamin Bara <benjamin.bara@skidata.com> Link: https://lore.kernel.org/r/20230620-hx3-v7-2-f79b4b22a1bf@skidata.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
69 lines
2.0 KiB
C
69 lines
2.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2022, Google LLC
|
|
*/
|
|
|
|
#ifndef _USB_MISC_ONBOARD_USB_HUB_H
|
|
#define _USB_MISC_ONBOARD_USB_HUB_H
|
|
|
|
struct onboard_hub_pdata {
|
|
unsigned long reset_us; /* reset pulse width in us */
|
|
unsigned int num_supplies; /* number of supplies */
|
|
};
|
|
|
|
static const struct onboard_hub_pdata microchip_usb424_data = {
|
|
.reset_us = 1,
|
|
.num_supplies = 1,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata realtek_rts5411_data = {
|
|
.reset_us = 0,
|
|
.num_supplies = 1,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata ti_tusb8041_data = {
|
|
.reset_us = 3000,
|
|
.num_supplies = 1,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata cypress_hx3_data = {
|
|
.reset_us = 10000,
|
|
.num_supplies = 2,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata genesys_gl850g_data = {
|
|
.reset_us = 3,
|
|
.num_supplies = 1,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata genesys_gl852g_data = {
|
|
.reset_us = 50,
|
|
.num_supplies = 1,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata vialab_vl817_data = {
|
|
.reset_us = 10,
|
|
.num_supplies = 1,
|
|
};
|
|
|
|
static const struct of_device_id onboard_hub_match[] = {
|
|
{ .compatible = "usb424,2514", .data = µchip_usb424_data, },
|
|
{ .compatible = "usb424,2517", .data = µchip_usb424_data, },
|
|
{ .compatible = "usb451,8140", .data = &ti_tusb8041_data, },
|
|
{ .compatible = "usb451,8142", .data = &ti_tusb8041_data, },
|
|
{ .compatible = "usb4b4,6504", .data = &cypress_hx3_data, },
|
|
{ .compatible = "usb4b4,6506", .data = &cypress_hx3_data, },
|
|
{ .compatible = "usb5e3,608", .data = &genesys_gl850g_data, },
|
|
{ .compatible = "usb5e3,610", .data = &genesys_gl852g_data, },
|
|
{ .compatible = "usb5e3,620", .data = &genesys_gl852g_data, },
|
|
{ .compatible = "usbbda,411", .data = &realtek_rts5411_data, },
|
|
{ .compatible = "usbbda,5411", .data = &realtek_rts5411_data, },
|
|
{ .compatible = "usbbda,414", .data = &realtek_rts5411_data, },
|
|
{ .compatible = "usbbda,5414", .data = &realtek_rts5411_data, },
|
|
{ .compatible = "usb2109,817", .data = &vialab_vl817_data, },
|
|
{ .compatible = "usb2109,2817", .data = &vialab_vl817_data, },
|
|
{}
|
|
};
|
|
|
|
#endif /* _USB_MISC_ONBOARD_USB_HUB_H */
|