mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:44:45 +01:00
usb: misc: onboard_dev: add vdda support for Microchip USB2514
This hub is powered by digital and analog 3V3 power rails, so provide the possibility to use different regulators for digital (vdd) and analog (vdda) power rails. Signed-off-by: Catalin Popescu <catalin.popescu@leica-geosystems.com> Link: https://lore.kernel.org/r/20250213094338.1611389-3-catalin.popescu@leica-geosystems.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
233840bbdf
commit
673655f794
1 changed files with 8 additions and 1 deletions
|
|
@ -23,6 +23,13 @@ static const struct onboard_dev_pdata microchip_usb424_data = {
|
|||
.is_hub = true,
|
||||
};
|
||||
|
||||
static const struct onboard_dev_pdata microchip_usb2514_data = {
|
||||
.reset_us = 1,
|
||||
.num_supplies = 2,
|
||||
.supply_names = { "vdd", "vdda" },
|
||||
.is_hub = true,
|
||||
};
|
||||
|
||||
static const struct onboard_dev_pdata microchip_usb5744_data = {
|
||||
.reset_us = 0,
|
||||
.power_on_delay_us = 10000,
|
||||
|
|
@ -96,7 +103,7 @@ static const struct onboard_dev_pdata xmos_xvf3500_data = {
|
|||
|
||||
static const struct of_device_id onboard_dev_match[] = {
|
||||
{ .compatible = "usb424,2412", .data = µchip_usb424_data, },
|
||||
{ .compatible = "usb424,2514", .data = µchip_usb424_data, },
|
||||
{ .compatible = "usb424,2514", .data = µchip_usb2514_data, },
|
||||
{ .compatible = "usb424,2517", .data = µchip_usb424_data, },
|
||||
{ .compatible = "usb424,2744", .data = µchip_usb5744_data, },
|
||||
{ .compatible = "usb424,5744", .data = µchip_usb5744_data, },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue