blob: fcbe2146f7d562a88a78bf7f2396ce902022ba9f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk012771d2002-03-08 21:31:05 +00002/*
3 * (C) Copyright 2001
4 * Denis Peter, MPL AG Switzerland
5 *
Simon Glassde312132015-03-25 12:21:59 -06006 * Adapted for U-Boot driver model
7 * (C) Copyright 2015 Google, Inc
wdenk012771d2002-03-08 21:31:05 +00008 * Note: Part of this code has been derived from linux
9 *
10 */
11#ifndef _USB_H_
12#define _USB_H_
13
Simon Glass9fea3a72023-05-05 20:03:03 -060014#include <stdbool.h>
Simon Glassde312132015-03-25 12:21:59 -060015#include <fdtdec.h>
wdenk012771d2002-03-08 21:31:05 +000016#include <usb_defs.h>
Ilya Yanokc60795f2012-11-06 13:48:20 +000017#include <linux/usb/ch9.h>
Masahiro Yamadaa8c2ebc2014-11-07 18:34:55 +090018#include <asm/cache.h>
19#include <part.h>
wdenk012771d2002-03-08 21:31:05 +000020
Simon Glass9fea3a72023-05-05 20:03:03 -060021extern bool usb_started; /* flag for the started/stopped USB status */
22
Tom Rini71c5de42012-07-15 22:14:24 +000023/*
24 * The EHCI spec says that we must align to at least 32 bytes. However,
25 * some platforms require larger alignment.
26 */
27#if ARCH_DMA_MINALIGN > 32
28#define USB_DMA_MINALIGN ARCH_DMA_MINALIGN
29#else
30#define USB_DMA_MINALIGN 32
31#endif
32
wdenk012771d2002-03-08 21:31:05 +000033/* Everything is aribtrary */
wdenk5cf91d62004-04-23 20:32:05 +000034#define USB_ALTSETTINGALLOC 4
35#define USB_MAXALTSETTING 128 /* Hard limit */
wdenk012771d2002-03-08 21:31:05 +000036
wdenk5cf91d62004-04-23 20:32:05 +000037#define USB_MAX_DEVICE 32
38#define USB_MAXCONFIG 8
39#define USB_MAXINTERFACES 8
40#define USB_MAXENDPOINTS 16
41#define USB_MAXCHILDREN 8 /* This is arbitrary */
42#define USB_MAX_HUB 16
wdenk012771d2002-03-08 21:31:05 +000043
44#define USB_CNTL_TIMEOUT 100 /* 100ms timeout */
45
Simon Glass96820a32011-02-07 14:42:16 -080046/*
47 * This is the timeout to allow for submitting an urb in ms. We allow more
48 * time for a BULK device to react - some are slow.
49 */
Jason Cooper80b350a2011-07-31 20:09:58 +000050#define USB_TIMEOUT_MS(pipe) (usb_pipebulk(pipe) ? 5000 : 1000)
Simon Glass96820a32011-02-07 14:42:16 -080051
Janne Grunau086e4612024-04-04 08:25:50 +020052/*
53 * The xhcd hcd driver prepares only a limited number interfaces / endpoints.
54 * Define this limit so that drivers do not exceed it.
55 */
56#define USB_MAX_ACTIVE_INTERFACES 2
57
wdenk012771d2002-03-08 21:31:05 +000058/* device request (setup) */
59struct devrequest {
Sergey Temerkhanovb12242a2015-04-01 17:18:44 +030060 __u8 requesttype;
61 __u8 request;
62 __le16 value;
63 __le16 index;
64 __le16 length;
wdenk012771d2002-03-08 21:31:05 +000065} __attribute__ ((packed));
66
Tom Rix8f8bd562009-10-31 12:37:38 -050067/* Interface */
68struct usb_interface {
69 struct usb_interface_descriptor desc;
wdenk012771d2002-03-08 21:31:05 +000070
Sergey Temerkhanovb12242a2015-04-01 17:18:44 +030071 __u8 no_of_ep;
72 __u8 num_altsetting;
73 __u8 act_altsetting;
Michael Trimarchide39f8c2008-11-26 17:41:34 +010074
wdenk012771d2002-03-08 21:31:05 +000075 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
Vivek Gautam6497c662013-04-12 16:34:38 +053076 /*
77 * Super Speed Device will have Super Speed Endpoint
78 * Companion Descriptor (section 9.6.7 of usb 3.0 spec)
79 * Revision 1.0 June 6th 2011
80 */
81 struct usb_ss_ep_comp_descriptor ss_ep_comp_desc[USB_MAXENDPOINTS];
wdenk012771d2002-03-08 21:31:05 +000082} __attribute__ ((packed));
83
Tom Rix8f8bd562009-10-31 12:37:38 -050084/* Configuration information.. */
85struct usb_config {
Ilya Yanokc60795f2012-11-06 13:48:20 +000086 struct usb_config_descriptor desc;
wdenk012771d2002-03-08 21:31:05 +000087
Sergey Temerkhanovb12242a2015-04-01 17:18:44 +030088 __u8 no_of_if; /* number of interfaces */
Tom Rix8f8bd562009-10-31 12:37:38 -050089 struct usb_interface if_desc[USB_MAXINTERFACES];
wdenk012771d2002-03-08 21:31:05 +000090} __attribute__ ((packed));
91
Remy Bohmer48867202008-10-10 10:23:21 +020092enum {
93 /* Maximum packet size; encoded as 0,1,2,3 = 8,16,32,64 */
94 PACKET_SIZE_8 = 0,
95 PACKET_SIZE_16 = 1,
96 PACKET_SIZE_32 = 2,
97 PACKET_SIZE_64 = 3,
98};
wdenk012771d2002-03-08 21:31:05 +000099
Simon Glassde312132015-03-25 12:21:59 -0600100/**
101 * struct usb_device - information about a USB device
102 *
103 * With driver model both UCLASS_USB (the USB controllers) and UCLASS_USB_HUB
104 * (the hubs) have this as parent data. Hubs are children of controllers or
105 * other hubs and there is always a single root hub for each controller.
106 * Therefore struct usb_device can always be accessed with
Simon Glassbcbe3d12015-09-28 23:32:01 -0600107 * dev_get_parent_priv(dev), where dev is a USB device.
Simon Glassde312132015-03-25 12:21:59 -0600108 *
109 * Pointers exist for obtaining both the device (could be any uclass) and
110 * controller (UCLASS_USB) from this structure. The controller does not have
111 * a struct usb_device since it is not a device.
112 */
wdenk012771d2002-03-08 21:31:05 +0000113struct usb_device {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100114 int devnum; /* Device number on USB bus */
Simon Glass25a83812020-05-10 10:26:53 -0600115 enum usb_device_speed speed; /* full/low/high */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100116 char mf[32]; /* manufacturer */
117 char prod[32]; /* product */
118 char serial[32]; /* serial number */
wdenk012771d2002-03-08 21:31:05 +0000119
Remy Bohmer48867202008-10-10 10:23:21 +0200120 /* Maximum packet size; one of: PACKET_SIZE_* */
121 int maxpacketsize;
122 /* one bit for each endpoint ([0] = IN, [1] = OUT) */
123 unsigned int toggle[2];
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100124 /* endpoint halts; one bit per endpoint # & direction;
125 * [0] = IN, [1] = OUT
126 */
Remy Bohmer48867202008-10-10 10:23:21 +0200127 unsigned int halted[2];
wdenk012771d2002-03-08 21:31:05 +0000128 int epmaxpacketin[16]; /* INput endpoint specific maximums */
129 int epmaxpacketout[16]; /* OUTput endpoint specific maximums */
130
131 int configno; /* selected config number */
Puneet Saxenaf5766132012-04-03 14:56:06 +0530132 /* Device Descriptor */
133 struct usb_device_descriptor descriptor
134 __attribute__((aligned(ARCH_DMA_MINALIGN)));
Tom Rix8f8bd562009-10-31 12:37:38 -0500135 struct usb_config config; /* config descriptor */
wdenk012771d2002-03-08 21:31:05 +0000136
137 int have_langid; /* whether string_langid is valid yet */
138 int string_langid; /* language ID for strings */
139 int (*irq_handle)(struct usb_device *dev);
140 unsigned long irq_status;
Vagrant Cascadiana6f70a32016-03-15 12:16:39 -0700141 int irq_act_len; /* transferred bytes */
wdenk012771d2002-03-08 21:31:05 +0000142 void *privptr;
143 /*
144 * Child devices - if this is a hub device
145 * Each instance needs its own set of data structures.
146 */
147 unsigned long status;
Hans de Goede904f2a82015-01-11 20:34:54 +0100148 unsigned long int_pending; /* 1 bit per ep, used by int_queue */
Vagrant Cascadiana6f70a32016-03-15 12:16:39 -0700149 int act_len; /* transferred bytes */
wdenk012771d2002-03-08 21:31:05 +0000150 int maxchild; /* Number of ports if hub */
Simon Glassde312132015-03-25 12:21:59 -0600151 int portnr; /* Port number, 1=first */
Sven Schwermerfd09c202018-11-21 08:43:56 +0100152#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glassde312132015-03-25 12:21:59 -0600153 /* parent hub, or NULL if this is the root hub */
wdenk012771d2002-03-08 21:31:05 +0000154 struct usb_device *parent;
155 struct usb_device *children[USB_MAXCHILDREN];
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200156 void *controller; /* hardware controller private data */
Simon Glassde312132015-03-25 12:21:59 -0600157#endif
Vivek Gautam5853e132013-09-14 14:02:45 +0530158 /* slot_id - for xHCI enabled devices */
159 unsigned int slot_id;
Sven Schwermerfd09c202018-11-21 08:43:56 +0100160#if CONFIG_IS_ENABLED(DM_USB)
Simon Glassde312132015-03-25 12:21:59 -0600161 struct udevice *dev; /* Pointer to associated device */
162 struct udevice *controller_dev; /* Pointer to associated controller */
163#endif
wdenk012771d2002-03-08 21:31:05 +0000164};
165
Hans de Goede8460b892014-09-24 14:06:06 +0200166struct int_queue;
167
Troy Kiskybba67912013-10-10 15:27:55 -0700168/*
169 * You can initialize platform's USB host or device
170 * ports by passing this enum as an argument to
171 * board_usb_init().
172 */
173enum usb_init_type {
174 USB_INIT_HOST,
Adam Ford078dfef2022-02-03 15:20:11 -0600175 USB_INIT_DEVICE,
176 USB_INIT_UNKNOWN,
Troy Kiskybba67912013-10-10 15:27:55 -0700177};
178
wdenk012771d2002-03-08 21:31:05 +0000179/**********************************************************************
180 * this is how the lowlevel part communicate with the outer world
181 */
182
Troy Kisky06d513e2013-10-10 15:27:56 -0700183int usb_lowlevel_init(int index, enum usb_init_type init, void **controller);
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200184int usb_lowlevel_stop(int index);
Simon Glassde312132015-03-25 12:21:59 -0600185
Sven Schwermerfd09c202018-11-21 08:43:56 +0100186#if defined(CONFIG_USB_MUSB_HOST) || CONFIG_IS_ENABLED(DM_USB)
Hans de Goede8802f562015-06-17 21:33:48 +0200187int usb_reset_root_port(struct usb_device *dev);
Hans de Goede90cdc102015-01-11 20:34:51 +0100188#else
Hans de Goede8802f562015-06-17 21:33:48 +0200189#define usb_reset_root_port(dev)
Hans de Goede90cdc102015-01-11 20:34:51 +0100190#endif
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200191
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100192int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
193 void *buffer, int transfer_len);
wdenk012771d2002-03-08 21:31:05 +0000194int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100195 int transfer_len, struct devrequest *setup);
wdenk012771d2002-03-08 21:31:05 +0000196int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
Michal Suchanek34371212019-08-18 10:55:27 +0200197 int transfer_len, int interval, bool nonblock);
wdenk012771d2002-03-08 21:31:05 +0000198
Tom Rini8850c5d2017-05-12 22:33:27 -0400199#if defined CONFIG_USB_EHCI_HCD || defined CONFIG_USB_MUSB_HOST \
Sven Schwermerfd09c202018-11-21 08:43:56 +0100200 || CONFIG_IS_ENABLED(DM_USB)
Hans de Goede8460b892014-09-24 14:06:06 +0200201struct int_queue *create_int_queue(struct usb_device *dev, unsigned long pipe,
Hans de Goede8bb6c1d2015-01-11 20:38:28 +0100202 int queuesize, int elementsize, void *buffer, int interval);
Hans de Goede8460b892014-09-24 14:06:06 +0200203int destroy_int_queue(struct usb_device *dev, struct int_queue *queue);
204void *poll_int_queue(struct usb_device *dev, struct int_queue *queue);
205#endif
206
wdenk012771d2002-03-08 21:31:05 +0000207/* Defines */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100208#define USB_UHCI_VEND_ID 0x8086
209#define USB_UHCI_DEV_ID 0x7112
wdenk012771d2002-03-08 21:31:05 +0000210
Lukasz Daleke5f24752012-10-02 17:04:33 +0200211/*
212 * PXA25x can only act as USB device. There are drivers
213 * which works with USB CDC gadgets implementations.
214 * Some of them have common routines which can be used
215 * in boards init functions e.g. udc_disconnect() used for
216 * forced device disconnection from host.
217 */
Lukasz Daleke5f24752012-10-02 17:04:33 +0200218extern void udc_disconnect(void);
219
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200220/*
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200221 * board-specific hardware initialization, called by
222 * usb drivers and u-boot commands
223 *
224 * @param index USB controller number
225 * @param init initializes controller as USB host or device
226 */
Troy Kiskybba67912013-10-10 15:27:55 -0700227int board_usb_init(int index, enum usb_init_type init);
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200228
229/*
230 * can be used to clean up after failed USB initialization attempt
231 * vide: board_usb_init()
232 *
233 * @param index USB controller number for selective cleanup
Troy Kiskybba67912013-10-10 15:27:55 -0700234 * @param init usb_init_type passed to board_usb_init()
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200235 */
Troy Kiskybba67912013-10-10 15:27:55 -0700236int board_usb_cleanup(int index, enum usb_init_type init);
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200237
wdenk012771d2002-03-08 21:31:05 +0000238#ifdef CONFIG_USB_STORAGE
239
Simon Glass70caa972016-01-03 13:50:30 -0700240#define USB_MAX_STOR_DEV 7
wdenk012771d2002-03-08 21:31:05 +0000241int usb_stor_scan(int mode);
Anatolij Gustschine813eae2008-03-26 17:47:44 +0100242int usb_stor_info(void);
wdenk012771d2002-03-08 21:31:05 +0000243
244#endif
245
Simon Glass89d48362011-02-16 11:14:33 -0800246#ifdef CONFIG_USB_HOST_ETHER
247
248#define USB_MAX_ETH_DEV 5
249int usb_host_eth_scan(int mode);
250
251#endif
252
wdenk012771d2002-03-08 21:31:05 +0000253#ifdef CONFIG_USB_KEYBOARD
254
Heinrich Schuchardte91a4112019-11-23 18:15:22 +0100255/*
256 * USB Keyboard reports are 8 bytes in boot protocol.
257 * Appendix B of HID Device Class Definition 1.11
258 */
259#define USB_KBD_BOOT_REPORT_SIZE 8
260
wdenk012771d2002-03-08 21:31:05 +0000261int drv_usb_kbd_init(void);
Hans de Goede8a8a2252014-09-20 16:54:38 +0200262int usb_kbd_deregister(int force);
wdenk012771d2002-03-08 21:31:05 +0000263
264#endif
265/* routines */
Simon Glass4c4ccc52023-07-30 11:15:12 -0600266
267/*
268 * usb_init() - initialize the USB Controllers
269 *
270 * Returns: 0 if OK, -ENOENT if there are no USB devices
271 */
272int usb_init(void);
273
wdenk012771d2002-03-08 21:31:05 +0000274int usb_stop(void); /* stop the USB Controller */
Vincent Palatin08f3bb02015-05-04 11:30:54 -0600275int usb_detect_change(void); /* detect if a USB device has been (un)plugged */
wdenk012771d2002-03-08 21:31:05 +0000276
wdenk012771d2002-03-08 21:31:05 +0000277int usb_set_protocol(struct usb_device *dev, int ifnum, int protocol);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100278int usb_set_idle(struct usb_device *dev, int ifnum, int duration,
279 int report_id);
wdenk012771d2002-03-08 21:31:05 +0000280int usb_control_msg(struct usb_device *dev, unsigned int pipe,
281 unsigned char request, unsigned char requesttype,
282 unsigned short value, unsigned short index,
283 void *data, unsigned short size, int timeout);
284int usb_bulk_msg(struct usb_device *dev, unsigned int pipe,
285 void *data, int len, int *actual_length, int timeout);
Michal Suchanekfdd135b2019-08-18 10:55:25 +0200286int usb_int_msg(struct usb_device *dev, unsigned long pipe,
Michal Suchanek34371212019-08-18 10:55:27 +0200287 void *buffer, int transfer_len, int interval, bool nonblock);
Marek Vasut31232de2020-04-06 14:29:44 +0200288int usb_lock_async(struct usb_device *dev, int lock);
Simon Glass89d48362011-02-16 11:14:33 -0800289int usb_disable_asynch(int disable);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100290int usb_maxpacket(struct usb_device *dev, unsigned long pipe);
Stefan Brünsc75f57f2015-12-22 01:18:13 +0100291int usb_get_configuration_no(struct usb_device *dev, int cfgno,
292 unsigned char *buffer, int length);
293int usb_get_configuration_len(struct usb_device *dev, int cfgno);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100294int usb_get_report(struct usb_device *dev, int ifnum, unsigned char type,
295 unsigned char id, void *buf, int size);
wdenk012771d2002-03-08 21:31:05 +0000296int usb_get_class_descriptor(struct usb_device *dev, int ifnum,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100297 unsigned char type, unsigned char id, void *buf,
298 int size);
wdenk012771d2002-03-08 21:31:05 +0000299int usb_clear_halt(struct usb_device *dev, int pipe);
300int usb_string(struct usb_device *dev, int index, char *buf, size_t size);
301int usb_set_interface(struct usb_device *dev, int interface, int alternate);
Vincent Palatin08f3bb02015-05-04 11:30:54 -0600302int usb_get_port_status(struct usb_device *dev, int port, void *data);
wdenk012771d2002-03-08 21:31:05 +0000303
304/* big endian -> little endian conversion */
wdenk149dded2003-09-10 18:20:28 +0000305/* some CPUs are already little endian e.g. the ARM920T */
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100306#define __swap_16(x) \
wdenk3f85ce22004-02-23 16:11:30 +0000307 ({ unsigned short x_ = (unsigned short)x; \
308 (unsigned short)( \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100309 ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \
wdenk3f85ce22004-02-23 16:11:30 +0000310 })
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100311#define __swap_32(x) \
wdenk3f85ce22004-02-23 16:11:30 +0000312 ({ unsigned long x_ = (unsigned long)x; \
313 (unsigned long)( \
314 ((x_ & 0x000000FFUL) << 24) | \
wdenk5cf91d62004-04-23 20:32:05 +0000315 ((x_ & 0x0000FF00UL) << 8) | \
316 ((x_ & 0x00FF0000UL) >> 8) | \
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100317 ((x_ & 0xFF000000UL) >> 24)); \
wdenk3f85ce22004-02-23 16:11:30 +0000318 })
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100319
Mike Frysingerc7d703f2009-01-01 18:27:27 -0500320#ifdef __LITTLE_ENDIAN
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100321# define swap_16(x) (x)
322# define swap_32(x) (x)
323#else
324# define swap_16(x) __swap_16(x)
325# define swap_32(x) __swap_32(x)
Mike Frysingerc7d703f2009-01-01 18:27:27 -0500326#endif
wdenk012771d2002-03-08 21:31:05 +0000327
328/*
329 * Calling this entity a "pipe" is glorifying it. A USB pipe
330 * is something embarrassingly simple: it basically consists
331 * of the following information:
332 * - device number (7 bits)
333 * - endpoint number (4 bits)
334 * - current Data0/1 state (1 bit)
335 * - direction (1 bit)
Michael Trimarchi3e126482008-11-28 13:19:19 +0100336 * - speed (2 bits)
wdenk012771d2002-03-08 21:31:05 +0000337 * - max packet size (2 bits: 8, 16, 32 or 64)
338 * - pipe type (2 bits: control, interrupt, bulk, isochronous)
339 *
340 * That's 18 bits. Really. Nothing more. And the USB people have
341 * documented these eighteen bits as some kind of glorious
342 * virtual data structure.
343 *
344 * Let's not fall in that trap. We'll just encode it as a simple
345 * unsigned int. The encoding is:
346 *
347 * - max size: bits 0-1 (00 = 8, 01 = 16, 10 = 32, 11 = 64)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100348 * - direction: bit 7 (0 = Host-to-Device [Out],
349 * (1 = Device-to-Host [In])
wdenk012771d2002-03-08 21:31:05 +0000350 * - device: bits 8-14
351 * - endpoint: bits 15-18
352 * - Data0/1: bit 19
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100353 * - pipe type: bits 30-31 (00 = isochronous, 01 = interrupt,
354 * 10 = control, 11 = bulk)
wdenk012771d2002-03-08 21:31:05 +0000355 *
356 * Why? Because it's arbitrary, and whatever encoding we select is really
357 * up to us. This one happens to share a lot of bit positions with the UHCI
358 * specification, so that much of the uhci driver can just mask the bits
359 * appropriately.
360 */
361/* Create various pipes... */
362#define create_pipe(dev,endpoint) \
Sergei Shtylyovd0fe1122010-05-26 21:26:43 +0400363 (((dev)->devnum << 8) | ((endpoint) << 15) | \
Ilya Yanokc60795f2012-11-06 13:48:20 +0000364 (dev)->maxpacketsize)
Michael Trimarchi3e126482008-11-28 13:19:19 +0100365#define default_pipe(dev) ((dev)->speed << 26)
wdenk012771d2002-03-08 21:31:05 +0000366
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100367#define usb_sndctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \
368 create_pipe(dev, endpoint))
369#define usb_rcvctrlpipe(dev, endpoint) ((PIPE_CONTROL << 30) | \
370 create_pipe(dev, endpoint) | \
371 USB_DIR_IN)
372#define usb_sndisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \
373 create_pipe(dev, endpoint))
374#define usb_rcvisocpipe(dev, endpoint) ((PIPE_ISOCHRONOUS << 30) | \
375 create_pipe(dev, endpoint) | \
376 USB_DIR_IN)
377#define usb_sndbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \
378 create_pipe(dev, endpoint))
379#define usb_rcvbulkpipe(dev, endpoint) ((PIPE_BULK << 30) | \
380 create_pipe(dev, endpoint) | \
381 USB_DIR_IN)
382#define usb_sndintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \
383 create_pipe(dev, endpoint))
384#define usb_rcvintpipe(dev, endpoint) ((PIPE_INTERRUPT << 30) | \
385 create_pipe(dev, endpoint) | \
386 USB_DIR_IN)
387#define usb_snddefctrl(dev) ((PIPE_CONTROL << 30) | \
388 default_pipe(dev))
389#define usb_rcvdefctrl(dev) ((PIPE_CONTROL << 30) | \
390 default_pipe(dev) | \
391 USB_DIR_IN)
wdenk012771d2002-03-08 21:31:05 +0000392
393/* The D0/D1 toggle bits */
394#define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> ep) & 1)
wdenk5cf91d62004-04-23 20:32:05 +0000395#define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << ep))
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100396#define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = \
397 ((dev)->toggle[out] & \
398 ~(1 << ep)) | ((bit) << ep))
wdenk012771d2002-03-08 21:31:05 +0000399
400/* Endpoint halt control/status */
401#define usb_endpoint_out(ep_dir) (((ep_dir >> 7) & 1) ^ 1)
402#define usb_endpoint_halt(dev, ep, out) ((dev)->halted[out] |= (1 << (ep)))
403#define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep)))
404#define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep)))
405
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100406#define usb_packetid(pipe) (((pipe) & USB_DIR_IN) ? USB_PID_IN : \
407 USB_PID_OUT)
wdenk012771d2002-03-08 21:31:05 +0000408
409#define usb_pipeout(pipe) ((((pipe) >> 7) & 1) ^ 1)
410#define usb_pipein(pipe) (((pipe) >> 7) & 1)
411#define usb_pipedevice(pipe) (((pipe) >> 8) & 0x7f)
412#define usb_pipe_endpdev(pipe) (((pipe) >> 8) & 0x7ff)
413#define usb_pipeendpoint(pipe) (((pipe) >> 15) & 0xf)
414#define usb_pipedata(pipe) (((pipe) >> 19) & 1)
wdenk012771d2002-03-08 21:31:05 +0000415#define usb_pipetype(pipe) (((pipe) >> 30) & 3)
416#define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS)
417#define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT)
418#define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL)
419#define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK)
420
Vivek Gautam5853e132013-09-14 14:02:45 +0530421#define usb_pipe_ep_index(pipe) \
422 usb_pipecontrol(pipe) ? (usb_pipeendpoint(pipe) * 2) : \
423 ((usb_pipeendpoint(pipe) * 2) - \
424 (usb_pipein(pipe) ? 0 : 1))
wdenk012771d2002-03-08 21:31:05 +0000425
Simon Glass0566e242015-03-25 12:22:30 -0600426/**
427 * struct usb_device_id - identifies USB devices for probing and hotplugging
428 * @match_flags: Bit mask controlling which of the other fields are used to
429 * match against new devices. Any field except for driver_info may be
430 * used, although some only make sense in conjunction with other fields.
431 * This is usually set by a USB_DEVICE_*() macro, which sets all
432 * other fields in this structure except for driver_info.
433 * @idVendor: USB vendor ID for a device; numbers are assigned
434 * by the USB forum to its members.
435 * @idProduct: Vendor-assigned product ID.
436 * @bcdDevice_lo: Low end of range of vendor-assigned product version numbers.
437 * This is also used to identify individual product versions, for
438 * a range consisting of a single device.
439 * @bcdDevice_hi: High end of version number range. The range of product
440 * versions is inclusive.
441 * @bDeviceClass: Class of device; numbers are assigned
442 * by the USB forum. Products may choose to implement classes,
443 * or be vendor-specific. Device classes specify behavior of all
444 * the interfaces on a device.
445 * @bDeviceSubClass: Subclass of device; associated with bDeviceClass.
446 * @bDeviceProtocol: Protocol of device; associated with bDeviceClass.
447 * @bInterfaceClass: Class of interface; numbers are assigned
448 * by the USB forum. Products may choose to implement classes,
449 * or be vendor-specific. Interface classes specify behavior only
450 * of a given interface; other interfaces may support other classes.
451 * @bInterfaceSubClass: Subclass of interface; associated with bInterfaceClass.
452 * @bInterfaceProtocol: Protocol of interface; associated with bInterfaceClass.
453 * @bInterfaceNumber: Number of interface; composite devices may use
454 * fixed interface numbers to differentiate between vendor-specific
455 * interfaces.
456 * @driver_info: Holds information used by the driver. Usually it holds
457 * a pointer to a descriptor understood by the driver, or perhaps
458 * device flags.
459 *
460 * In most cases, drivers will create a table of device IDs by using
461 * USB_DEVICE(), or similar macros designed for that purpose.
462 * They will then export it to userspace using MODULE_DEVICE_TABLE(),
463 * and provide it to the USB core through their usb_driver structure.
464 *
465 * See the usb_match_id() function for information about how matches are
466 * performed. Briefly, you will normally use one of several macros to help
467 * construct these entries. Each entry you provide will either identify
468 * one or more specific products, or will identify a class of products
469 * which have agreed to behave the same. You should put the more specific
470 * matches towards the beginning of your table, so that driver_info can
471 * record quirks of specific products.
472 */
473struct usb_device_id {
474 /* which fields to match against? */
475 u16 match_flags;
476
477 /* Used for product specific matches; range is inclusive */
478 u16 idVendor;
479 u16 idProduct;
480 u16 bcdDevice_lo;
481 u16 bcdDevice_hi;
482
483 /* Used for device class matches */
484 u8 bDeviceClass;
485 u8 bDeviceSubClass;
486 u8 bDeviceProtocol;
487
488 /* Used for interface class matches */
489 u8 bInterfaceClass;
490 u8 bInterfaceSubClass;
491 u8 bInterfaceProtocol;
492
493 /* Used for vendor-specific interface matches */
494 u8 bInterfaceNumber;
495
496 /* not matched against */
497 ulong driver_info;
498};
499
500/* Some useful macros to use to create struct usb_device_id */
501#define USB_DEVICE_ID_MATCH_VENDOR 0x0001
502#define USB_DEVICE_ID_MATCH_PRODUCT 0x0002
503#define USB_DEVICE_ID_MATCH_DEV_LO 0x0004
504#define USB_DEVICE_ID_MATCH_DEV_HI 0x0008
505#define USB_DEVICE_ID_MATCH_DEV_CLASS 0x0010
506#define USB_DEVICE_ID_MATCH_DEV_SUBCLASS 0x0020
507#define USB_DEVICE_ID_MATCH_DEV_PROTOCOL 0x0040
508#define USB_DEVICE_ID_MATCH_INT_CLASS 0x0080
509#define USB_DEVICE_ID_MATCH_INT_SUBCLASS 0x0100
510#define USB_DEVICE_ID_MATCH_INT_PROTOCOL 0x0200
511#define USB_DEVICE_ID_MATCH_INT_NUMBER 0x0400
512
513/* Match anything, indicates this is a valid entry even if everything is 0 */
514#define USB_DEVICE_ID_MATCH_NONE 0x0800
515#define USB_DEVICE_ID_MATCH_ALL 0x07ff
516
517/**
518 * struct usb_driver_entry - Matches a driver to its usb_device_ids
Simon Glassb4839152015-07-06 16:47:47 -0600519 * @driver: Driver to use
520 * @match: List of match records for this driver, terminated by {}
Simon Glass0566e242015-03-25 12:22:30 -0600521 */
522struct usb_driver_entry {
523 struct driver *driver;
524 const struct usb_device_id *match;
525};
526
Simon Glassabb59cf2015-07-06 16:47:51 -0600527#define USB_DEVICE_ID_MATCH_DEVICE \
528 (USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_PRODUCT)
529
530/**
531 * USB_DEVICE - macro used to describe a specific usb device
532 * @vend: the 16 bit USB Vendor ID
533 * @prod: the 16 bit USB Product ID
534 *
535 * This macro is used to create a struct usb_device_id that matches a
536 * specific device.
537 */
538#define USB_DEVICE(vend, prod) \
539 .match_flags = USB_DEVICE_ID_MATCH_DEVICE, \
540 .idVendor = (vend), \
541 .idProduct = (prod)
542
543#define U_BOOT_USB_DEVICE(__name, __match) \
Simon Glass0566e242015-03-25 12:22:30 -0600544 ll_entry_declare(struct usb_driver_entry, __name, usb_driver_entry) = {\
545 .driver = llsym(struct driver, __name, driver), \
546 .match = __match, \
547 }
548
wdenk012771d2002-03-08 21:31:05 +0000549/*************************************************************************
550 * Hub Stuff
551 */
552struct usb_port_status {
553 unsigned short wPortStatus;
554 unsigned short wPortChange;
555} __attribute__ ((packed));
556
557struct usb_hub_status {
558 unsigned short wHubStatus;
559 unsigned short wHubChange;
560} __attribute__ ((packed));
561
Bin Meng5624dfd2017-07-19 21:51:16 +0800562/*
563 * Hub Device descriptor
564 * USB Hub class device protocols
565 */
566#define USB_HUB_PR_FS 0 /* Full speed hub */
567#define USB_HUB_PR_HS_NO_TT 0 /* Hi-speed hub without TT */
568#define USB_HUB_PR_HS_SINGLE_TT 1 /* Hi-speed hub with single TT */
569#define USB_HUB_PR_HS_MULTI_TT 2 /* Hi-speed hub with multiple TT */
570#define USB_HUB_PR_SS 3 /* Super speed hub */
571
572/* Transaction Translator Think Times, in bits */
573#define HUB_TTTT_8_BITS 0x00
574#define HUB_TTTT_16_BITS 0x20
575#define HUB_TTTT_24_BITS 0x40
576#define HUB_TTTT_32_BITS 0x60
wdenk012771d2002-03-08 21:31:05 +0000577
578/* Hub descriptor */
579struct usb_hub_descriptor {
580 unsigned char bLength;
581 unsigned char bDescriptorType;
582 unsigned char bNbrPorts;
583 unsigned short wHubCharacteristics;
584 unsigned char bPwrOn2PwrGood;
585 unsigned char bHubContrCurrent;
Bin Meng337fc7e2017-07-19 21:50:00 +0800586 /* 2.0 and 3.0 hubs differ here */
587 union {
588 struct {
589 /* add 1 bit for hub status change; round to bytes */
590 __u8 DeviceRemovable[(USB_MAXCHILDREN + 1 + 7) / 8];
591 __u8 PortPowerCtrlMask[(USB_MAXCHILDREN + 1 + 7) / 8];
592 } __attribute__ ((packed)) hs;
593
594 struct {
595 __u8 bHubHdrDecLat;
596 __le16 wHubDelay;
597 __le16 DeviceRemovable;
598 } __attribute__ ((packed)) ss;
599 } u;
wdenk012771d2002-03-08 21:31:05 +0000600} __attribute__ ((packed));
601
wdenk012771d2002-03-08 21:31:05 +0000602struct usb_hub_device {
603 struct usb_device *pusb_dev;
604 struct usb_hub_descriptor desc;
Stefan Roesec998da02016-03-15 13:59:15 +0100605
606 ulong connect_timeout; /* Device connection timeout in ms */
607 ulong query_delay; /* Device query delay in ms */
608 int overcurrent_count[USB_MAXCHILDREN]; /* Over-current counter */
Bin Mengbbc6f062017-07-19 21:51:13 +0800609 int hub_depth; /* USB 3.0 hub depth */
Bin Meng5624dfd2017-07-19 21:51:16 +0800610 struct usb_tt tt; /* Transaction Translator */
wdenk012771d2002-03-08 21:31:05 +0000611};
612
Sven Schwermerfd09c202018-11-21 08:43:56 +0100613#if CONFIG_IS_ENABLED(DM_USB)
Simon Glassde312132015-03-25 12:21:59 -0600614/**
Simon Glass8a8d24b2020-12-03 16:55:23 -0700615 * struct usb_plat - Platform data about a USB controller
Simon Glassde312132015-03-25 12:21:59 -0600616 *
Simon Glassc69cda22020-12-03 16:55:20 -0700617 * Given a USB controller (UCLASS_USB) dev this is dev_get_plat(dev)
Simon Glassde312132015-03-25 12:21:59 -0600618 */
Simon Glass8a8d24b2020-12-03 16:55:23 -0700619struct usb_plat {
Simon Glassde312132015-03-25 12:21:59 -0600620 enum usb_init_type init_type;
621};
622
623/**
Simon Glass8a8d24b2020-12-03 16:55:23 -0700624 * struct usb_dev_plat - Platform data about a USB device
Simon Glassde312132015-03-25 12:21:59 -0600625 *
Simon Glasscaa4daa2020-12-03 16:55:18 -0700626 * Given a USB device dev this structure is dev_get_parent_plat(dev).
Simon Glassde312132015-03-25 12:21:59 -0600627 * This is used by sandbox to provide emulation data also.
628 *
629 * @id: ID used to match this device
Simon Glassde312132015-03-25 12:21:59 -0600630 * @devnum: Device address on the USB bus
Hans de Goede7f1a0752015-05-05 11:54:32 +0200631 * @udev: usb-uclass internal use only do NOT use
Simon Glassde312132015-03-25 12:21:59 -0600632 * @strings: List of descriptor strings (for sandbox emulation purposes)
633 * @desc_list: List of descriptors (for sandbox emulation purposes)
634 */
Simon Glass8a8d24b2020-12-03 16:55:23 -0700635struct usb_dev_plat {
Simon Glassde312132015-03-25 12:21:59 -0600636 struct usb_device_id id;
Simon Glassde312132015-03-25 12:21:59 -0600637 int devnum;
Hans de Goede7f1a0752015-05-05 11:54:32 +0200638 /*
639 * This pointer is used to pass the usb_device used in usb_scan_device,
640 * to get the usb descriptors before the driver is known, to the
641 * actual udevice once the driver is known and the udevice is created.
642 * This will be NULL except during probe, do NOT use.
643 *
644 * This should eventually go away.
645 */
646 struct usb_device *udev;
Simon Glassde312132015-03-25 12:21:59 -0600647#ifdef CONFIG_SANDBOX
648 struct usb_string *strings;
649 /* NULL-terminated list of descriptor pointers */
650 struct usb_generic_descriptor **desc_list;
651#endif
652 int configno;
653};
654
655/**
656 * struct usb_bus_priv - information about the USB controller
657 *
658 * Given a USB controller (UCLASS_USB) 'dev', this is
659 * dev_get_uclass_priv(dev).
660 *
661 * @next_addr: Next device address to allocate minus 1. Incremented by 1
662 * each time a new device address is set, so this holds the
663 * number of devices on the bus
664 * @desc_before_addr: true if we can read a device descriptor before it
665 * has been assigned an address. For XHCI this is not possible
666 * so this will be false.
Hans de Goedeb6de4d12015-05-10 14:10:20 +0200667 * @companion: True if this is a companion controller to another USB
668 * controller
Simon Glassde312132015-03-25 12:21:59 -0600669 */
670struct usb_bus_priv {
671 int next_addr;
672 bool desc_before_addr;
Hans de Goedeb6de4d12015-05-10 14:10:20 +0200673 bool companion;
Simon Glassde312132015-03-25 12:21:59 -0600674};
675
676/**
Simon Glass8a8d24b2020-12-03 16:55:23 -0700677 * struct usb_emul_plat - platform data about the USB emulator
Bin Meng84aa8532017-10-01 06:19:39 -0700678 *
679 * Given a USB emulator (UCLASS_USB_EMUL) 'dev', this is
Simon Glasscaa4daa2020-12-03 16:55:18 -0700680 * dev_get_uclass_plat(dev).
Bin Meng84aa8532017-10-01 06:19:39 -0700681 *
682 * @port1: USB emulator device port number on the parent hub
683 */
Simon Glass8a8d24b2020-12-03 16:55:23 -0700684struct usb_emul_plat {
Bin Meng84aa8532017-10-01 06:19:39 -0700685 int port1; /* Port number (numbered from 1) */
686};
687
688/**
Simon Glassde312132015-03-25 12:21:59 -0600689 * struct dm_usb_ops - USB controller operations
690 *
691 * This defines the operations supoorted on a USB controller. Common
692 * arguments are:
693 *
694 * @bus: USB bus (i.e. controller), which is in UCLASS_USB.
695 * @udev: USB device parent data. Controllers are not expected to need
696 * this, since the device address on the bus is encoded in @pipe.
697 * It is used for sandbox, and can be handy for debugging and
698 * logging.
699 * @pipe: An assortment of bitfields which provide address and packet
700 * type information. See create_pipe() above for encoding
701 * details
702 * @buffer: A buffer to use for sending/receiving. This should be
703 * DMA-aligned.
704 * @length: Buffer length in bytes
705 */
706struct dm_usb_ops {
707 /**
708 * control() - Send a control message
709 *
710 * Most parameters are as above.
711 *
712 * @setup: Additional setup information required by the message
713 */
714 int (*control)(struct udevice *bus, struct usb_device *udev,
715 unsigned long pipe, void *buffer, int length,
716 struct devrequest *setup);
717 /**
718 * bulk() - Send a bulk message
719 *
720 * Parameters are as above.
721 */
722 int (*bulk)(struct udevice *bus, struct usb_device *udev,
723 unsigned long pipe, void *buffer, int length);
724 /**
725 * interrupt() - Send an interrupt message
726 *
727 * Most parameters are as above.
728 *
729 * @interval: Interrupt interval
730 */
731 int (*interrupt)(struct udevice *bus, struct usb_device *udev,
732 unsigned long pipe, void *buffer, int length,
Michal Suchanek34371212019-08-18 10:55:27 +0200733 int interval, bool nonblock);
Hans de Goede8a5f0662015-05-10 14:10:18 +0200734
735 /**
736 * create_int_queue() - Create and queue interrupt packets
737 *
738 * Create and queue @queuesize number of interrupt usb packets of
739 * @elementsize bytes each. @buffer must be atleast @queuesize *
740 * @elementsize bytes.
741 *
742 * Note some controllers only support a queuesize of 1.
743 *
744 * @interval: Interrupt interval
745 *
746 * @return A pointer to the created interrupt queue or NULL on error
747 */
748 struct int_queue * (*create_int_queue)(struct udevice *bus,
749 struct usb_device *udev, unsigned long pipe,
750 int queuesize, int elementsize, void *buffer,
751 int interval);
752
753 /**
754 * poll_int_queue() - Poll an interrupt queue for completed packets
755 *
756 * Poll an interrupt queue for completed packets. The return value
757 * points to the part of the buffer passed to create_int_queue()
758 * corresponding to the completed packet.
759 *
760 * @queue: queue to poll
761 *
762 * @return Pointer to the data of the first completed packet, or
763 * NULL if no packets are ready
764 */
765 void * (*poll_int_queue)(struct udevice *bus, struct usb_device *udev,
766 struct int_queue *queue);
767
768 /**
769 * destroy_int_queue() - Destroy an interrupt queue
770 *
771 * Destroy an interrupt queue created by create_int_queue().
772 *
773 * @queue: queue to poll
774 *
775 * @return 0 if OK, -ve on error
776 */
777 int (*destroy_int_queue)(struct udevice *bus, struct usb_device *udev,
778 struct int_queue *queue);
779
Simon Glassde312132015-03-25 12:21:59 -0600780 /**
781 * alloc_device() - Allocate a new device context (XHCI)
782 *
783 * Before sending packets to a new device on an XHCI bus, a device
784 * context must be created. If this method is not NULL it will be
785 * called before the device is enumerated (even before its descriptor
786 * is read). This should be NULL for EHCI, which does not need this.
787 */
788 int (*alloc_device)(struct udevice *bus, struct usb_device *udev);
Hans de Goedeb2f219b2015-06-17 21:33:52 +0200789
790 /**
791 * reset_root_port() - Reset usb root port
792 */
793 int (*reset_root_port)(struct udevice *bus, struct usb_device *udev);
Bin Meng9ca1b4b2017-07-19 21:51:17 +0800794
795 /**
796 * update_hub_device() - Update HCD's internal representation of hub
797 *
798 * After a hub descriptor is fetched, notify HCD so that its internal
799 * representation of this hub can be updated (xHCI)
800 */
801 int (*update_hub_device)(struct udevice *bus, struct usb_device *udev);
Bin Meng3e59f592017-09-07 06:13:17 -0700802
803 /**
804 * get_max_xfer_size() - Get HCD's maximum transfer bytes
805 *
806 * The HCD may have limitation on the maximum bytes to be transferred
807 * in a USB transfer. USB class driver needs to be aware of this.
808 */
809 int (*get_max_xfer_size)(struct udevice *bus, size_t *size);
Marek Vasut31232de2020-04-06 14:29:44 +0200810
811 /**
812 * lock_async() - Keep async schedule after a transfer
813 *
814 * It may be desired to keep the asynchronous schedule running even
815 * after a transfer finishes, usually when doing multiple transfers
816 * back-to-back. This callback allows signalling the USB controller
817 * driver to do just that.
818 */
819 int (*lock_async)(struct udevice *udev, int lock);
Simon Glassde312132015-03-25 12:21:59 -0600820};
821
822#define usb_get_ops(dev) ((struct dm_usb_ops *)(dev)->driver->ops)
823#define usb_get_emul_ops(dev) ((struct dm_usb_ops *)(dev)->driver->ops)
824
Simon Glassde312132015-03-25 12:21:59 -0600825/**
Simon Glassde312132015-03-25 12:21:59 -0600826 * usb_setup_device() - set up a device ready for use
827 *
828 * @dev: USB device pointer. This need not be a real device - it is
829 * common for it to just be a local variable with its ->dev
Hans de Goede9eb72dd2015-06-17 21:33:46 +0200830 * member (i.e. @dev->dev) set to the parent device and
831 * dev->portnr set to the port number on the hub (1=first)
Simon Glassde312132015-03-25 12:21:59 -0600832 * @do_read: true to read the device descriptor before an address is set
833 * (should be false for XHCI buses, true otherwise)
834 * @parent: Parent device (either UCLASS_USB or UCLASS_USB_HUB)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100835 * Return: 0 if OK, -ve on error */
Simon Glassde312132015-03-25 12:21:59 -0600836int usb_setup_device(struct usb_device *dev, bool do_read,
Hans de Goede9eb72dd2015-06-17 21:33:46 +0200837 struct usb_device *parent);
Simon Glassde312132015-03-25 12:21:59 -0600838
839/**
Bin Meng46c1d492017-07-19 21:51:11 +0800840 * usb_hub_is_root_hub() - Test whether a hub device is root hub or not
841 *
842 * @hub: USB hub device to test
843 * @return: true if the hub device is root hub, false otherwise.
844 */
845bool usb_hub_is_root_hub(struct udevice *hub);
846
847/**
Simon Glassde312132015-03-25 12:21:59 -0600848 * usb_hub_scan() - Scan a hub and find its devices
849 *
850 * @hub: Hub device to scan
851 */
852int usb_hub_scan(struct udevice *hub);
853
854/**
855 * usb_scan_device() - Scan a device on a bus
856 *
857 * Scan a device on a bus. It has already been detected and is ready to
858 * be enumerated. This may be either the root hub (@parent is a bus) or a
859 * normal device (@parent is a hub)
860 *
861 * @parent: Parent device
862 * @port: Hub port number (numbered from 1)
863 * @speed: USB speed to use for this device
864 * @devp: Returns pointer to device if all is well
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100865 * Return: 0 if OK, -ve on error
Simon Glassde312132015-03-25 12:21:59 -0600866 */
867int usb_scan_device(struct udevice *parent, int port,
868 enum usb_device_speed speed, struct udevice **devp);
869
870/**
871 * usb_get_bus() - Find the bus for a device
872 *
873 * Search up through parents to find the bus this device is connected to. This
874 * will be a device with uclass UCLASS_USB.
875 *
876 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100877 * Return: The bus, or NULL if not found (this indicates a critical error in
Hans de Goedef78a5c02015-05-05 11:54:31 +0200878 * the USB stack
Simon Glassde312132015-03-25 12:21:59 -0600879 */
Hans de Goedef78a5c02015-05-05 11:54:31 +0200880struct udevice *usb_get_bus(struct udevice *dev);
Simon Glassde312132015-03-25 12:21:59 -0600881
882/**
883 * usb_select_config() - Set up a device ready for use
884 *
885 * This function assumes that the device already has an address and a driver
886 * bound, and is ready to be set up.
887 *
888 * This re-reads the device and configuration descriptors and sets the
889 * configuration
890 *
891 * @dev: Device to set up
892 */
893int usb_select_config(struct usb_device *dev);
894
895/**
896 * usb_child_pre_probe() - Pre-probe function for USB devices
897 *
898 * This is called on all children of hubs and USB controllers (i.e. UCLASS_USB
899 * and UCLASS_USB_HUB) when a new device is about to be probed. It sets up the
900 * device from the saved platform data and calls usb_select_config() to
901 * finish set up.
902 *
903 * Once this is done, the device's normal driver can take over, knowing the
904 * device is accessible on the USB bus.
905 *
906 * This function is for use only by the internal USB stack.
907 *
908 * @dev: Device to set up
909 */
910int usb_child_pre_probe(struct udevice *dev);
911
912struct ehci_ctrl;
913
914/**
915 * usb_setup_ehci_gadget() - Set up a USB device as a gadget
916 *
917 * TODO(sjg@chromium.org): Tidy this up when USB gadgets can use driver model
918 *
919 * This provides a way to tell a controller to start up as a USB device
920 * instead of as a host. It is untested.
921 */
922int usb_setup_ehci_gadget(struct ehci_ctrl **ctlrp);
923
924/**
Ye Li1468a1c2020-06-29 10:12:59 +0800925 * usb_remove_ehci_gadget() - Remove a gadget USB device
926 *
927 * TODO(sjg@chromium.org): Tidy this up when USB gadgets can use driver model
928 *
929 * This provides a way to tell a controller to remove a USB device
930 */
931int usb_remove_ehci_gadget(struct ehci_ctrl **ctlrp);
932
933/**
Simon Glassde312132015-03-25 12:21:59 -0600934 * usb_stor_reset() - Prepare to scan USB storage devices
935 *
936 * Empty the list of USB storage devices in preparation for scanning them.
937 * This must be called before a USB scan.
938 */
939void usb_stor_reset(void);
940
Sven Schwermerfd09c202018-11-21 08:43:56 +0100941#else /* !CONFIG_IS_ENABLED(DM_USB) */
Simon Glassde312132015-03-25 12:21:59 -0600942
943struct usb_device *usb_get_dev_index(int index);
944
945#endif
946
947bool usb_device_has_child_on_port(struct usb_device *parent, int port);
948
Marek Vasut23faf2b2012-02-13 18:58:17 +0000949int usb_hub_probe(struct usb_device *dev, int ifnum);
950void usb_hub_reset(void);
Simon Glass862e75c2015-03-25 12:22:04 -0600951
Stefan Brünsfaa7db22015-12-22 01:21:03 +0100952/*
953 * usb_find_usb2_hub_address_port() - Get hub address and port for TT setting
954 *
955 * Searches for the first HS hub above the given device. If a
956 * HS hub is found, the hub address and the port the device is
957 * connected to is return, as required for SPLIT transactions
958 *
959 * @param: udev full speed or low speed device
960 */
961void usb_find_usb2_hub_address_port(struct usb_device *udev,
962 uint8_t *hub_address, uint8_t *hub_port);
963
Simon Glass79b58882015-03-25 12:22:01 -0600964/**
965 * usb_alloc_new_device() - Allocate a new device
966 *
967 * @devp: returns a pointer of a new device structure. With driver model this
968 * is a device pointer, but with legacy USB this pointer is
969 * driver-specific.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100970 * Return: 0 if OK, -ENOSPC if we have found out of room for new devices
Simon Glass79b58882015-03-25 12:22:01 -0600971 */
972int usb_alloc_new_device(struct udevice *controller, struct usb_device **devp);
973
974/**
975 * usb_free_device() - Free a partially-inited device
976 *
977 * This is an internal function. It is used to reverse the action of
978 * usb_alloc_new_device() when we hit a problem during init.
979 */
980void usb_free_device(struct udevice *controller);
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200981
Marek Vasut23faf2b2012-02-13 18:58:17 +0000982int usb_new_device(struct usb_device *dev);
Simon Glass79b58882015-03-25 12:22:01 -0600983
Vivek Gautam5853e132013-09-14 14:02:45 +0530984int usb_alloc_device(struct usb_device *dev);
Marek Vasut23faf2b2012-02-13 18:58:17 +0000985
Simon Glass019808f2015-03-25 12:22:37 -0600986/**
Bin Meng3e59f592017-09-07 06:13:17 -0700987 * usb_update_hub_device() - Update HCD's internal representation of hub
Bin Meng9ca1b4b2017-07-19 21:51:17 +0800988 *
989 * After a hub descriptor is fetched, notify HCD so that its internal
990 * representation of this hub can be updated.
991 *
992 * @dev: Hub device
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100993 * Return: 0 if OK, -ve on error
Bin Meng9ca1b4b2017-07-19 21:51:17 +0800994 */
995int usb_update_hub_device(struct usb_device *dev);
996
997/**
Bin Meng3e59f592017-09-07 06:13:17 -0700998 * usb_get_max_xfer_size() - Get HCD's maximum transfer bytes
999 *
1000 * The HCD may have limitation on the maximum bytes to be transferred
1001 * in a USB transfer. USB class driver needs to be aware of this.
1002 *
1003 * @dev: USB device
1004 * @size: maximum transfer bytes
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001005 * Return: 0 if OK, -ve on error
Bin Meng3e59f592017-09-07 06:13:17 -07001006 */
1007int usb_get_max_xfer_size(struct usb_device *dev, size_t *size);
1008
1009/**
Simon Glass019808f2015-03-25 12:22:37 -06001010 * usb_emul_setup_device() - Set up a new USB device emulation
1011 *
1012 * This is normally called when a new emulation device is bound. It tells
1013 * the USB emulation uclass about the features of the emulator.
1014 *
1015 * @dev: Emulation device
Simon Glass019808f2015-03-25 12:22:37 -06001016 * @strings: List of USB string descriptors, terminated by a NULL
1017 * entry
1018 * @desc_list: List of points or USB descriptors, terminated by NULL.
1019 * The first entry must be struct usb_device_descriptor,
1020 * and others follow on after that.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001021 * Return: 0 if OK, -ENOSYS if not implemented, other -ve on error
Simon Glass019808f2015-03-25 12:22:37 -06001022 */
Bin Meng98b639f2017-10-01 06:19:36 -07001023int usb_emul_setup_device(struct udevice *dev, struct usb_string *strings,
1024 void **desc_list);
Simon Glass019808f2015-03-25 12:22:37 -06001025
1026/**
1027 * usb_emul_control() - Send a control packet to an emulator
1028 *
1029 * @emul: Emulator device
1030 * @udev: USB device (which the emulator is causing to appear)
1031 * See struct dm_usb_ops for details on other parameters
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001032 * Return: 0 if OK, -ve on error
Simon Glass019808f2015-03-25 12:22:37 -06001033 */
1034int usb_emul_control(struct udevice *emul, struct usb_device *udev,
1035 unsigned long pipe, void *buffer, int length,
1036 struct devrequest *setup);
1037
1038/**
1039 * usb_emul_bulk() - Send a bulk packet to an emulator
1040 *
1041 * @emul: Emulator device
1042 * @udev: USB device (which the emulator is causing to appear)
1043 * See struct dm_usb_ops for details on other parameters
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001044 * Return: 0 if OK, -ve on error
Simon Glass019808f2015-03-25 12:22:37 -06001045 */
1046int usb_emul_bulk(struct udevice *emul, struct usb_device *udev,
1047 unsigned long pipe, void *buffer, int length);
1048
1049/**
Simon Glassb70a3fe2015-11-08 23:48:05 -07001050 * usb_emul_int() - Send an interrupt packet to an emulator
1051 *
1052 * @emul: Emulator device
1053 * @udev: USB device (which the emulator is causing to appear)
1054 * See struct dm_usb_ops for details on other parameters
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001055 * Return: 0 if OK, -ve on error
Simon Glassb70a3fe2015-11-08 23:48:05 -07001056 */
1057int usb_emul_int(struct udevice *emul, struct usb_device *udev,
Michal Suchanek34371212019-08-18 10:55:27 +02001058 unsigned long pipe, void *buffer, int length, int interval,
1059 bool nonblock);
Simon Glassb70a3fe2015-11-08 23:48:05 -07001060
1061/**
Simon Glass019808f2015-03-25 12:22:37 -06001062 * usb_emul_find() - Find an emulator for a particular device
1063 *
Bin Meng84aa8532017-10-01 06:19:39 -07001064 * Check @pipe and @port1 to find a device number on bus @bus and return it.
Simon Glass019808f2015-03-25 12:22:37 -06001065 *
1066 * @bus: USB bus (controller)
1067 * @pipe: Describes pipe being used, and includes the device number
Bin Meng84aa8532017-10-01 06:19:39 -07001068 * @port1: Describes port number on the parent hub
Simon Glass019808f2015-03-25 12:22:37 -06001069 * @emulp: Returns pointer to emulator, or NULL if not found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001070 * Return: 0 if found, -ve on error
Simon Glass019808f2015-03-25 12:22:37 -06001071 */
Bin Meng84aa8532017-10-01 06:19:39 -07001072int usb_emul_find(struct udevice *bus, ulong pipe, int port1,
1073 struct udevice **emulp);
Simon Glass019808f2015-03-25 12:22:37 -06001074
1075/**
Simon Glassaf9c7c12015-11-08 23:47:55 -07001076 * usb_emul_find_for_dev() - Find an emulator for a particular device
1077 *
Simon Glassaf9c7c12015-11-08 23:47:55 -07001078 * @dev: USB device to check
1079 * @emulp: Returns pointer to emulator, or NULL if not found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001080 * Return: 0 if found, -ve on error
Simon Glassaf9c7c12015-11-08 23:47:55 -07001081 */
1082int usb_emul_find_for_dev(struct udevice *dev, struct udevice **emulp);
1083
1084/**
Bin Meng848436a2017-10-01 06:19:40 -07001085 * usb_emul_find_descriptor() - Find a USB descriptor of a particular device
1086 *
1087 * @ptr: a pointer to a list of USB descriptor pointers
1088 * @type: type of USB descriptor to find
1089 * @index: if @type is USB_DT_CONFIG, this is the configuration value
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001090 * Return: a pointer to the USB descriptor found, NULL if not found
Bin Meng848436a2017-10-01 06:19:40 -07001091 */
1092struct usb_generic_descriptor **usb_emul_find_descriptor(
1093 struct usb_generic_descriptor **ptr, int type, int index);
1094
1095/**
Simon Glass45bfa472015-11-08 23:47:51 -07001096 * usb_show_tree() - show the USB device tree
1097 *
1098 * This shows a list of active USB devices along with basic information about
1099 * each.
1100 */
1101void usb_show_tree(void);
1102
wdenk012771d2002-03-08 21:31:05 +00001103#endif /*_USB_H_ */