Jean-Jacques Hiblot | 9dc0d5c | 2018-11-29 10:52:46 +0100 | [diff] [blame] | 1 | // 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 Delaunay | 8131335 | 2021-04-27 11:02:19 +0200 | [diff] [blame] | 7 | #define LOG_CATEGORY UCLASS_USB_GADGET_GENERIC |
| 8 | |
Jean-Jacques Hiblot | 9dc0d5c | 2018-11-29 10:52:46 +0100 | [diff] [blame] | 9 | #include <common.h> |
| 10 | #include <dm.h> |
| 11 | #include <dm/device-internal.h> |
| 12 | #include <linux/usb/gadget.h> |
| 13 | |
Jean-Jacques Hiblot | db994e0 | 2018-12-21 09:50:21 +0100 | [diff] [blame] | 14 | #if CONFIG_IS_ENABLED(DM_USB_GADGET) |
Marek Vasut | b397203 | 2023-09-01 11:49:47 +0200 | [diff] [blame] | 15 | int 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 | |
| 36 | int 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 Vasut | b397203 | 2023-09-01 11:49:47 +0200 | [diff] [blame] | 44 | #else |
| 45 | /* Backwards hardware compatibility -- switch to DM_USB_GADGET */ |
| 46 | static int legacy_index; |
| 47 | int 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 | |
| 53 | int udc_device_put(struct udevice *udev) |
| 54 | { |
| 55 | return board_usb_cleanup(legacy_index, USB_INIT_DEVICE); |
| 56 | } |
Jean-Jacques Hiblot | db994e0 | 2018-12-21 09:50:21 +0100 | [diff] [blame] | 57 | #endif |
Jean-Jacques Hiblot | 9dc0d5c | 2018-11-29 10:52:46 +0100 | [diff] [blame] | 58 | |
Marek Vasut | b397203 | 2023-09-01 11:49:47 +0200 | [diff] [blame] | 59 | #if CONFIG_IS_ENABLED(DM) |
Jean-Jacques Hiblot | 9dc0d5c | 2018-11-29 10:52:46 +0100 | [diff] [blame] | 60 | UCLASS_DRIVER(usb_gadget_generic) = { |
| 61 | .id = UCLASS_USB_GADGET_GENERIC, |
Jean-Jacques Hiblot | 2934dc1 | 2018-12-15 17:43:27 +0100 | [diff] [blame] | 62 | .name = "usb", |
| 63 | .flags = DM_UC_FLAG_SEQ_ALIAS, |
Jean-Jacques Hiblot | 9dc0d5c | 2018-11-29 10:52:46 +0100 | [diff] [blame] | 64 | }; |
Marek Vasut | b397203 | 2023-09-01 11:49:47 +0200 | [diff] [blame] | 65 | #endif |