blob: 9dfae08313b7bb5f00662eb0df34d694597a78f0 [file] [log] [blame]
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com
4 * Written by Jean-Jacques Hiblot <jjhiblot@ti.com>
5 */
6
Patrick Delaunay81313352021-04-27 11:02:19 +02007#define LOG_CATEGORY UCLASS_USB_GADGET_GENERIC
8
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +01009#include <common.h>
10#include <dm.h>
11#include <dm/device-internal.h>
12#include <linux/usb/gadget.h>
13
Jean-Jacques Hiblotdb994e02018-12-21 09:50:21 +010014#if CONFIG_IS_ENABLED(DM_USB_GADGET)
Marek Vasutb3972032023-09-01 11:49:47 +020015int udc_device_get_by_index(int index, struct udevice **udev)
16{
17 struct udevice *dev = NULL;
18 int ret;
19
20 ret = uclass_get_device_by_seq(UCLASS_USB_GADGET_GENERIC, index, &dev);
21 if (!ret && dev) {
22 *udev = dev;
23 return 0;
24 }
25
26 ret = uclass_get_device(UCLASS_USB_GADGET_GENERIC, index, &dev);
27 if (!ret && dev) {
28 *udev = dev;
29 return 0;
30 }
31
32 pr_err("No USB device found\n");
33 return -ENODEV;
34}
35
36int udc_device_put(struct udevice *udev)
37{
38#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
39 return device_remove(udev, DM_REMOVE_NORMAL);
40#else
41 return -ENOSYS;
42#endif
43}
Marek Vasutb3972032023-09-01 11:49:47 +020044#else
45/* Backwards hardware compatibility -- switch to DM_USB_GADGET */
46static int legacy_index;
47int udc_device_get_by_index(int index, struct udevice **udev)
48{
49 legacy_index = index;
50 return board_usb_init(index, USB_INIT_DEVICE);
51}
52
53int udc_device_put(struct udevice *udev)
54{
55 return board_usb_cleanup(legacy_index, USB_INIT_DEVICE);
56}
Jean-Jacques Hiblotdb994e02018-12-21 09:50:21 +010057#endif
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010058
Marek Vasutb3972032023-09-01 11:49:47 +020059#if CONFIG_IS_ENABLED(DM)
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010060UCLASS_DRIVER(usb_gadget_generic) = {
61 .id = UCLASS_USB_GADGET_GENERIC,
Jean-Jacques Hiblot2934dc12018-12-15 17:43:27 +010062 .name = "usb",
63 .flags = DM_UC_FLAG_SEQ_ALIAS,
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010064};
Marek Vasutb3972032023-09-01 11:49:47 +020065#endif