mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-10 11:59:48 +00:00
Genesys Logic GL3523 is a 4-port USB 3.1 hub that has a reset pin to toggle and a 5.0V core supply exported though an integrated LDO is available for powering it. Add the support for this hub, for controlling the reset pin and the core power supply. Signed-off-by: Anand Moon <linux.amoon@gmail.com> [m.felsch@pengutronix.de: include review feedback & port to 6.4] Signed-off-by: Marco Felsch <m.felsch@pengutronix.de> Link: https://lore.kernel.org/r/20230623142228.4069084-2-m.felsch@pengutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
55 lines
1.6 KiB
C
55 lines
1.6 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 */
|
|
};
|
|
|
|
static const struct onboard_hub_pdata microchip_usb424_data = {
|
|
.reset_us = 1,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata realtek_rts5411_data = {
|
|
.reset_us = 0,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata ti_tusb8041_data = {
|
|
.reset_us = 3000,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata genesys_gl850g_data = {
|
|
.reset_us = 3,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata genesys_gl852g_data = {
|
|
.reset_us = 50,
|
|
};
|
|
|
|
static const struct onboard_hub_pdata vialab_vl817_data = {
|
|
.reset_us = 10,
|
|
};
|
|
|
|
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 = "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 */
|