u-boot/drivers/usb/gadget/udc/udc-uclass.c
Zixun LI 73f5b54a58 usb: gadget: udc: Fix duplicate uclass name
Currently both USB host uclass and USB gadget uclass are using the same
name "usb" which break uclass functions like uclass_get_by_name().

Rename the uclass to "usb_gadget" to fix, also makes bind/unbind by class
index (or sequence) working.

This breaks the capacity of using "usb" as DT alias sequence numbering
which needs a fix afterwards.

Signed-off-by: Zixun LI <admin@hifiphile.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Link: https://lore.kernel.org/all/20240802092820.917450-1-admin@hifiphile.com
Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
2024-08-20 09:36:36 +02:00

90 lines
1.9 KiB
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com
* Written by Jean-Jacques Hiblot <jjhiblot@ti.com>
*/
#define LOG_CATEGORY UCLASS_USB_GADGET_GENERIC
#include <dm.h>
#include <dm/device-internal.h>
#include <linux/printk.h>
#include <linux/usb/gadget.h>
#if CONFIG_IS_ENABLED(DM_USB_GADGET)
static inline const struct usb_gadget_generic_ops *
usb_gadget_generic_dev_ops(struct udevice *dev)
{
return (const struct usb_gadget_generic_ops *)dev->driver->ops;
}
int dm_usb_gadget_handle_interrupts(struct udevice *dev)
{
const struct usb_gadget_generic_ops *ops;
ops = usb_gadget_generic_dev_ops(dev);
if (!ops)
return -EFAULT;
if (!ops->handle_interrupts)
return -ENOSYS;
return ops->handle_interrupts(dev);
}
int udc_device_get_by_index(int index, struct udevice **udev)
{
struct udevice *dev = NULL;
int ret;
ret = uclass_get_device_by_seq(UCLASS_USB_GADGET_GENERIC, index, &dev);
if (!ret && dev) {
*udev = dev;
return 0;
}
ret = uclass_get_device(UCLASS_USB_GADGET_GENERIC, index, &dev);
if (!ret && dev) {
*udev = dev;
return 0;
}
pr_err("No USB device found\n");
return -ENODEV;
}
int udc_device_put(struct udevice *udev)
{
#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
return device_remove(udev, DM_REMOVE_NORMAL);
#else
return -ENOSYS;
#endif
}
#else
/* Backwards hardware compatibility -- switch to DM_USB_GADGET */
static int legacy_index;
int udc_device_get_by_index(int index, struct udevice **udev)
{
legacy_index = index;
return board_usb_init(index, USB_INIT_DEVICE);
}
int udc_device_put(struct udevice *udev)
{
return board_usb_cleanup(legacy_index, USB_INIT_DEVICE);
}
__weak int dm_usb_gadget_handle_interrupts(struct udevice *dev)
{
return 0;
}
#endif
#if CONFIG_IS_ENABLED(DM)
UCLASS_DRIVER(usb_gadget_generic) = {
.id = UCLASS_USB_GADGET_GENERIC,
.name = "usb_gadget",
.flags = DM_UC_FLAG_SEQ_ALIAS,
};
#endif