xref: /third_party/FreeBSD/sys/dev/usb/usbdi_util.h (revision f9f848fa)
1f9f848faSopenharmony_ci/*-
2f9f848faSopenharmony_ci * SPDX-License-Identifier: BSD-2-Clause
3f9f848faSopenharmony_ci *
4f9f848faSopenharmony_ci * Copyright (c) 2009 Andrew Thompson
5f9f848faSopenharmony_ci *
6f9f848faSopenharmony_ci * Redistribution and use in source and binary forms, with or without
7f9f848faSopenharmony_ci * modification, are permitted provided that the following conditions
8f9f848faSopenharmony_ci * are met:
9f9f848faSopenharmony_ci * 1. Redistributions of source code must retain the above copyright
10f9f848faSopenharmony_ci *    notice, this list of conditions and the following disclaimer.
11f9f848faSopenharmony_ci * 2. Redistributions in binary form must reproduce the above copyright
12f9f848faSopenharmony_ci *    notice, this list of conditions and the following disclaimer in the
13f9f848faSopenharmony_ci *    documentation and/or other materials provided with the distribution.
14f9f848faSopenharmony_ci *
15f9f848faSopenharmony_ci * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16f9f848faSopenharmony_ci * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17f9f848faSopenharmony_ci * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18f9f848faSopenharmony_ci * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19f9f848faSopenharmony_ci * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20f9f848faSopenharmony_ci * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21f9f848faSopenharmony_ci * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22f9f848faSopenharmony_ci * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23f9f848faSopenharmony_ci * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24f9f848faSopenharmony_ci * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25f9f848faSopenharmony_ci */
26f9f848faSopenharmony_ci#ifndef _USB_USBDI_UTIL_H_
27f9f848faSopenharmony_ci#define _USB_USBDI_UTIL_H_
28f9f848faSopenharmony_ci
29f9f848faSopenharmony_ci/* structures */
30f9f848faSopenharmony_ci
31f9f848faSopenharmony_cistruct usb_idesc_parse_state {
32f9f848faSopenharmony_ci	struct usb_descriptor *desc;
33f9f848faSopenharmony_ci	uint8_t iface_index;		/* current interface index */
34f9f848faSopenharmony_ci	uint8_t iface_no_last;
35f9f848faSopenharmony_ci	uint8_t iface_index_alt;	/* current alternate setting */
36f9f848faSopenharmony_ci};
37f9f848faSopenharmony_ci
38f9f848faSopenharmony_ci/* prototypes */
39f9f848faSopenharmony_ci
40f9f848faSopenharmony_ciusb_error_t usbd_do_request_proc(struct usb_device *udev, struct usb_process *pproc,
41f9f848faSopenharmony_ci		    struct usb_device_request *req, void *data, uint16_t flags,
42f9f848faSopenharmony_ci		    uint16_t *actlen, usb_timeout_t timeout);
43f9f848faSopenharmony_ci
44f9f848faSopenharmony_cistruct usb_descriptor *usb_desc_foreach(struct usb_config_descriptor *cd,
45f9f848faSopenharmony_ci	    struct usb_descriptor *desc);
46f9f848faSopenharmony_cistruct usb_interface_descriptor *usb_idesc_foreach(
47f9f848faSopenharmony_ci	    struct usb_config_descriptor *cd,
48f9f848faSopenharmony_ci	    struct usb_idesc_parse_state *ps);
49f9f848faSopenharmony_cistruct usb_endpoint_descriptor *usb_edesc_foreach(
50f9f848faSopenharmony_ci	    struct usb_config_descriptor *cd,
51f9f848faSopenharmony_ci	    struct usb_endpoint_descriptor *ped);
52f9f848faSopenharmony_cistruct usb_endpoint_ss_comp_descriptor *usb_ed_comp_foreach(
53f9f848faSopenharmony_ci	    struct usb_config_descriptor *cd,
54f9f848faSopenharmony_ci	    struct usb_endpoint_ss_comp_descriptor *ped);
55f9f848faSopenharmony_ciuint8_t usbd_get_no_descriptors(struct usb_config_descriptor *cd,
56f9f848faSopenharmony_ci	    uint8_t type);
57f9f848faSopenharmony_ciuint8_t usbd_get_no_alts(struct usb_config_descriptor *cd,
58f9f848faSopenharmony_ci	    struct usb_interface_descriptor *id);
59f9f848faSopenharmony_ci
60f9f848faSopenharmony_ciusb_error_t usbd_req_get_report(struct usb_device *udev, struct mtx *mtx,
61f9f848faSopenharmony_ci		    void *data, uint16_t len, uint8_t iface_index, uint8_t type,
62f9f848faSopenharmony_ci		    uint8_t id);
63f9f848faSopenharmony_ciusb_error_t usbd_req_get_report_descriptor(struct usb_device *udev,
64f9f848faSopenharmony_ci		    struct mtx *mtx, void *d, uint16_t size,
65f9f848faSopenharmony_ci		    uint8_t iface_index);
66f9f848faSopenharmony_ciusb_error_t usbd_req_get_string_any(struct usb_device *udev, struct mtx *mtx,
67f9f848faSopenharmony_ci		    char *buf, uint16_t len, uint8_t string_index);
68f9f848faSopenharmony_ciusb_error_t usbd_req_get_string_desc(struct usb_device *udev, struct mtx *mtx,
69f9f848faSopenharmony_ci		    void *sdesc, uint16_t max_len, uint16_t lang_id,
70f9f848faSopenharmony_ci		    uint8_t string_index);
71f9f848faSopenharmony_ciusb_error_t usbd_req_set_config(struct usb_device *udev, struct mtx *mtx,
72f9f848faSopenharmony_ci		    uint8_t conf);
73f9f848faSopenharmony_ciusb_error_t usbd_req_set_alt_interface_no(struct usb_device *udev,
74f9f848faSopenharmony_ci		    struct mtx *mtx, uint8_t iface_index, uint8_t alt_no);
75f9f848faSopenharmony_ciusb_error_t usbd_req_set_idle(struct usb_device *udev, struct mtx *mtx,
76f9f848faSopenharmony_ci		    uint8_t iface_index, uint8_t duration, uint8_t id);
77f9f848faSopenharmony_ciusb_error_t usbd_req_set_protocol(struct usb_device *udev, struct mtx *mtx,
78f9f848faSopenharmony_ci		    uint8_t iface_index, uint16_t report);
79f9f848faSopenharmony_ciusb_error_t usbd_req_set_report(struct usb_device *udev, struct mtx *mtx,
80f9f848faSopenharmony_ci		    void *data, uint16_t len, uint8_t iface_index,
81f9f848faSopenharmony_ci		    uint8_t type, uint8_t id);
82f9f848faSopenharmony_ci
83f9f848faSopenharmony_ci/* The following functions will not return NULL strings. */
84f9f848faSopenharmony_ci
85f9f848faSopenharmony_ciconst char *usb_get_manufacturer(struct usb_device *);
86f9f848faSopenharmony_ciconst char *usb_get_product(struct usb_device *);
87f9f848faSopenharmony_ciconst char *usb_get_serial(struct usb_device *);
88f9f848faSopenharmony_ci
89f9f848faSopenharmony_ci#endif /* _USB_USBDI_UTIL_H_ */
90