mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 07:24:39 +08:00
ed92f4353e
This is a 4-port 3.0 USB hub. Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> Link: https://lore.kernel.org/r/20220727141117.909361-2-alexander.stein@ew.tq-group.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
37 lines
1.0 KiB
C
37 lines
1.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 */
|
|
};
|
|
|
|
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 of_device_id onboard_hub_match[] = {
|
|
{ .compatible = "usb424,2514", .data = µchip_usb424_data, },
|
|
{ .compatible = "usb451,8140", .data = &ti_tusb8041_data, },
|
|
{ .compatible = "usb451,8142", .data = &ti_tusb8041_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, },
|
|
{}
|
|
};
|
|
|
|
#endif /* _USB_MISC_ONBOARD_USB_HUB_H */
|