blob: 7f54a3b00cb436113e83df8934d687a082a3f77c [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}
44
Marek Vasutb7e2ba72023-09-01 11:50:02 +020045int usb_gadget_handle_interrupts(int index)
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010046{
Marek Vasutb7e2ba72023-09-01 11:50:02 +020047 struct udevice *udc;
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010048 int ret;
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010049
Marek Vasutb7e2ba72023-09-01 11:50:02 +020050 ret = udc_device_get_by_index(index, &udc);
51 if (ret)
52 return ret;
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010053
Marek Vasutb7e2ba72023-09-01 11:50:02 +020054 return dm_usb_gadget_handle_interrupts(udc);
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010055}
Marek Vasutb3972032023-09-01 11:49:47 +020056#else
57/* Backwards hardware compatibility -- switch to DM_USB_GADGET */
58static int legacy_index;
59int udc_device_get_by_index(int index, struct udevice **udev)
60{
61 legacy_index = index;
62 return board_usb_init(index, USB_INIT_DEVICE);
63}
64
65int udc_device_put(struct udevice *udev)
66{
67 return board_usb_cleanup(legacy_index, USB_INIT_DEVICE);
68}
Jean-Jacques Hiblotdb994e02018-12-21 09:50:21 +010069#endif
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010070
Marek Vasutb3972032023-09-01 11:49:47 +020071#if CONFIG_IS_ENABLED(DM)
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010072UCLASS_DRIVER(usb_gadget_generic) = {
73 .id = UCLASS_USB_GADGET_GENERIC,
Jean-Jacques Hiblot2934dc12018-12-15 17:43:27 +010074 .name = "usb",
75 .flags = DM_UC_FLAG_SEQ_ALIAS,
Jean-Jacques Hiblot9dc0d5c2018-11-29 10:52:46 +010076};
Marek Vasutb3972032023-09-01 11:49:47 +020077#endif