Zephyr API Documentation 4.1.99
A Scalable Open Source RTOS
 4.1.99
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
usbd.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2022 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
14#ifndef ZEPHYR_INCLUDE_USBD_H_
15#define ZEPHYR_INCLUDE_USBD_H_
16
17#include <zephyr/device.h>
18#include <zephyr/usb/bos.h>
19#include <zephyr/usb/usb_ch9.h>
20#include <zephyr/usb/usbd_msg.h>
23#include <zephyr/sys/slist.h>
24#include <zephyr/logging/log.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
40/* 1 if USB device stack is compiled with High-Speed support */
41#define USBD_SUPPORTS_HIGH_SPEED IS_EQ(CONFIG_USBD_MAX_SPEED, 1)
42
43/* Maximum bulk max packet size the stack supports */
44#define USBD_MAX_BULK_MPS COND_CODE_1(USBD_SUPPORTS_HIGH_SPEED, (512), (64))
45
46/*
47 * The USB Unicode bString is encoded in UTF16LE, which means it takes up
48 * twice the amount of bytes than the same string encoded in ASCII7.
49 * Use this macro to determine the length of the bString array.
50 *
51 * bString length without null character:
52 * bString_length = (sizeof(initializer_string) - 1) * 2
53 * or:
54 * bString_length = sizeof(initializer_string) * 2 - 2
55 */
56#define USB_BSTRING_LENGTH(s) (sizeof(s) * 2 - 2)
57
58/*
59 * The length of the string descriptor (bLength) is calculated from the
60 * size of the two octets bLength and bDescriptorType plus the
61 * length of the UTF16LE string:
62 *
63 * bLength = 2 + bString_length
64 * bLength = 2 + sizeof(initializer_string) * 2 - 2
65 * bLength = sizeof(initializer_string) * 2
66 * Use this macro to determine the bLength of the string descriptor.
67 */
68#define USB_STRING_DESCRIPTOR_LENGTH(s) (sizeof(s) * 2)
69
70struct usbd_context;
71
75enum usbd_str_desc_utype {
76 USBD_DUT_STRING_LANG,
77 USBD_DUT_STRING_MANUFACTURER,
78 USBD_DUT_STRING_PRODUCT,
79 USBD_DUT_STRING_SERIAL_NUMBER,
80 USBD_DUT_STRING_CONFIG,
81 USBD_DUT_STRING_INTERFACE,
82};
83
84enum usbd_bos_desc_utype {
85 USBD_DUT_BOS_NONE,
86 USBD_DUT_BOS_VREQ,
87};
97 enum usbd_str_desc_utype utype : 8;
99 unsigned int ascii7 : 1;
101 unsigned int use_hwinfo : 1;
102};
103
143 int (*to_host)(const struct usbd_context *const ctx,
144 const struct usb_setup_packet *const setup,
145 struct net_buf *const buf);
147 int (*to_dev)(const struct usbd_context *const ctx,
148 const struct usb_setup_packet *const setup,
149 const struct net_buf *const buf);
150};
151
157 enum usbd_bos_desc_utype utype : 8;
158 union {
159 struct usbd_vreq_node *const vreq_nd;
160 };
161};
162
183
202
203/* TODO: Kconfig option USBD_NUMOF_INTERFACES_MAX? */
204#define USBD_NUMOF_INTERFACES_MAX 16U
205
217
218
238
250
256 unsigned int initialized : 1;
258 unsigned int enabled : 1;
260 unsigned int suspended : 1;
262 unsigned int rwup : 1;
264 unsigned int self_powered : 1;
267};
268
280typedef void (*usbd_msg_cb_t)(struct usbd_context *const ctx,
281 const struct usbd_msg *const msg);
282
315
325
327#define USBD_CCTX_REGISTERED 0
328
329struct usbd_class_data;
330
336 void (*feature_halt)(struct usbd_class_data *const c_data,
337 uint8_t ep, bool halted);
338
340 void (*update)(struct usbd_class_data *const c_data,
341 uint8_t iface, uint8_t alternate);
342
344 int (*control_to_dev)(struct usbd_class_data *const c_data,
345 const struct usb_setup_packet *const setup,
346 const struct net_buf *const buf);
347
349 int (*control_to_host)(struct usbd_class_data *const c_data,
350 const struct usb_setup_packet *const setup,
351 struct net_buf *const buf);
352
354 int (*request)(struct usbd_class_data *const c_data,
355 struct net_buf *buf, int err);
356
358 void (*suspended)(struct usbd_class_data *const c_data);
359
361 void (*resumed)(struct usbd_class_data *const c_data);
362
364 void (*sof)(struct usbd_class_data *const c_data);
365
367 void (*enable)(struct usbd_class_data *const c_data);
368
370 void (*disable)(struct usbd_class_data *const c_data);
371
373 int (*init)(struct usbd_class_data *const c_data);
374
376 void (*shutdown)(struct usbd_class_data *const c_data);
377
379 void *(*get_desc)(struct usbd_class_data *const c_data,
380 const enum usbd_speed speed);
381};
382
388 const char *name;
392 const struct usbd_class_api *api;
396 void *priv;
397};
398
407struct usbd_class_node {
409 sys_snode_t node;
411 struct usbd_class_data *const c_data;
415 uint32_t ep_assigned;
419 uint32_t ep_active;
421 uint32_t iface_bm;
424};
425
438static inline struct usbd_context *usbd_class_get_ctx(const struct usbd_class_data *const c_data)
439{
440 return c_data->uds_ctx;
441}
442
453static inline void *usbd_class_get_private(const struct usbd_class_data *const c_data)
454{
455 return c_data->priv;
456}
457
478#define USBD_DEVICE_DEFINE(device_name, udc_dev, vid, pid) \
479 static struct usb_device_descriptor \
480 fs_desc_##device_name = { \
481 .bLength = sizeof(struct usb_device_descriptor), \
482 .bDescriptorType = USB_DESC_DEVICE, \
483 .bcdUSB = sys_cpu_to_le16(USB_SRN_2_0), \
484 .bDeviceClass = USB_BCC_MISCELLANEOUS, \
485 .bDeviceSubClass = 2, \
486 .bDeviceProtocol = 1, \
487 .bMaxPacketSize0 = USB_CONTROL_EP_MPS, \
488 .idVendor = vid, \
489 .idProduct = pid, \
490 .bcdDevice = sys_cpu_to_le16(USB_BCD_DRN), \
491 .iManufacturer = 0, \
492 .iProduct = 0, \
493 .iSerialNumber = 0, \
494 .bNumConfigurations = 0, \
495 }; \
496 static struct usb_device_descriptor \
497 hs_desc_##device_name = { \
498 .bLength = sizeof(struct usb_device_descriptor), \
499 .bDescriptorType = USB_DESC_DEVICE, \
500 .bcdUSB = sys_cpu_to_le16(USB_SRN_2_0), \
501 .bDeviceClass = USB_BCC_MISCELLANEOUS, \
502 .bDeviceSubClass = 2, \
503 .bDeviceProtocol = 1, \
504 .bMaxPacketSize0 = 64, \
505 .idVendor = vid, \
506 .idProduct = pid, \
507 .bcdDevice = sys_cpu_to_le16(USB_BCD_DRN), \
508 .iManufacturer = 0, \
509 .iProduct = 0, \
510 .iSerialNumber = 0, \
511 .bNumConfigurations = 0, \
512 }; \
513 static STRUCT_SECTION_ITERABLE(usbd_context, device_name) = { \
514 .name = STRINGIFY(device_name), \
515 .dev = udc_dev, \
516 .fs_desc = &fs_desc_##device_name, \
517 .hs_desc = &hs_desc_##device_name, \
518 }
519
537#define USBD_CONFIGURATION_DEFINE(name, attrib, power, desc_nd) \
538 static struct usb_cfg_descriptor \
539 cfg_desc_##name = { \
540 .bLength = sizeof(struct usb_cfg_descriptor), \
541 .bDescriptorType = USB_DESC_CONFIGURATION, \
542 .wTotalLength = 0, \
543 .bNumInterfaces = 0, \
544 .bConfigurationValue = 1, \
545 .iConfiguration = 0, \
546 .bmAttributes = USB_SCD_RESERVED | (attrib), \
547 .bMaxPower = (power), \
548 }; \
549 BUILD_ASSERT((power) < 256, "Too much power"); \
550 static struct usbd_config_node name = { \
551 .desc = &cfg_desc_##name, \
552 .str_desc_nd = desc_nd, \
553 }
554
568#define USBD_DESC_LANG_DEFINE(name) \
569 static uint16_t langid_##name = sys_cpu_to_le16(0x0409); \
570 static struct usbd_desc_node name = { \
571 .str = { \
572 .idx = 0, \
573 .utype = USBD_DUT_STRING_LANG, \
574 }, \
575 .ptr = &langid_##name, \
576 .bLength = sizeof(struct usb_string_descriptor), \
577 .bDescriptorType = USB_DESC_STRING, \
578 }
579
591#define USBD_DESC_STRING_DEFINE(d_name, d_string, d_utype) \
592 static uint8_t ascii_##d_name[USB_BSTRING_LENGTH(d_string)] = d_string; \
593 static struct usbd_desc_node d_name = { \
594 .str = { \
595 .utype = d_utype, \
596 .ascii7 = true, \
597 }, \
598 .ptr = &ascii_##d_name, \
599 .bLength = USB_STRING_DESCRIPTOR_LENGTH(d_string), \
600 .bDescriptorType = USB_DESC_STRING, \
601 }
602
614#define USBD_DESC_MANUFACTURER_DEFINE(d_name, d_string) \
615 USBD_DESC_STRING_DEFINE(d_name, d_string, USBD_DUT_STRING_MANUFACTURER)
616
628#define USBD_DESC_PRODUCT_DEFINE(d_name, d_string) \
629 USBD_DESC_STRING_DEFINE(d_name, d_string, USBD_DUT_STRING_PRODUCT)
630
641#define USBD_DESC_SERIAL_NUMBER_DEFINE(d_name) \
642 BUILD_ASSERT(IS_ENABLED(CONFIG_HWINFO), "HWINFO not enabled"); \
643 static struct usbd_desc_node d_name = { \
644 .str = { \
645 .utype = USBD_DUT_STRING_SERIAL_NUMBER, \
646 .ascii7 = true, \
647 .use_hwinfo = true, \
648 }, \
649 .bDescriptorType = USB_DESC_STRING, \
650 }
651
661#define USBD_DESC_CONFIG_DEFINE(d_name, d_string) \
662 USBD_DESC_STRING_DEFINE(d_name, d_string, USBD_DUT_STRING_CONFIG)
663
674#define USBD_DESC_BOS_DEFINE(name, len, subset) \
675 static struct usbd_desc_node name = { \
676 .bos = { \
677 .utype = USBD_DUT_BOS_NONE, \
678 }, \
679 .ptr = subset, \
680 .bLength = len, \
681 .bDescriptorType = USB_DESC_BOS, \
682 }
683
692#define USBD_VREQUEST_DEFINE(name, vcode, vto_host, vto_dev) \
693 static struct usbd_vreq_node name = { \
694 .code = vcode, \
695 .to_host = vto_host, \
696 .to_dev = vto_dev, \
697 }
698
715#define USBD_DESC_BOS_VREQ_DEFINE(name, len, subset, vcode, vto_host, vto_dev) \
716 USBD_VREQUEST_DEFINE(vreq_nd_##name, vcode, vto_host, vto_dev); \
717 static struct usbd_desc_node name = { \
718 .bos = { \
719 .utype = USBD_DUT_BOS_VREQ, \
720 .vreq_nd = &vreq_nd_##name, \
721 }, \
722 .ptr = subset, \
723 .bLength = len, \
724 .bDescriptorType = USB_DESC_BOS, \
725 }
726
738#define USBD_DEFINE_CLASS(class_name, class_api, class_priv, class_v_reqs) \
739 static struct usbd_class_data class_name = { \
740 .name = STRINGIFY(class_name), \
741 .api = class_api, \
742 .v_reqs = class_v_reqs, \
743 .priv = class_priv, \
744 }; \
745 static STRUCT_SECTION_ITERABLE_ALTERNATE( \
746 usbd_class_fs, usbd_class_node, class_name##_fs) = { \
747 .c_data = &class_name, \
748 }; \
749 static STRUCT_SECTION_ITERABLE_ALTERNATE( \
750 usbd_class_hs, usbd_class_node, class_name##_hs) = { \
751 .c_data = &class_name, \
752 }
753
759#define VENDOR_REQ_DEFINE(_reqs, _len) \
760 { \
761 .reqs = (const uint8_t *)(_reqs), \
762 .len = (_len), \
763 }
764
769#define USBD_VENDOR_REQ(_reqs...) \
770 VENDOR_REQ_DEFINE(((uint8_t []) { _reqs }), \
771 sizeof((uint8_t []) { _reqs }))
772
773
785 struct usbd_desc_node *dn);
786
794uint8_t usbd_str_desc_get_idx(const struct usbd_desc_node *const desc_nd);
795
803void usbd_remove_descriptor(struct usbd_desc_node *const desc_nd);
804
815 const enum usbd_speed speed,
816 struct usbd_config_node *cd);
817
840 const char *name,
841 const enum usbd_speed speed, uint8_t cfg);
842
875 const enum usbd_speed speed, uint8_t cfg,
876 const char *const blocklist[]);
877
893 const char *name,
894 const enum usbd_speed speed, uint8_t cfg);
895
909 const enum usbd_speed speed, uint8_t cfg);
910
919int usbd_msg_register_cb(struct usbd_context *const uds_ctx,
920 const usbd_msg_cb_t cb);
921
935int usbd_init(struct usbd_context *uds_ctx);
936
946int usbd_enable(struct usbd_context *uds_ctx);
947
957int usbd_disable(struct usbd_context *uds_ctx);
958
968int usbd_shutdown(struct usbd_context *const uds_ctx);
969
978int usbd_ep_set_halt(struct usbd_context *uds_ctx, uint8_t ep);
979
988int usbd_ep_clear_halt(struct usbd_context *uds_ctx, uint8_t ep);
989
998bool usbd_ep_is_halted(struct usbd_context *uds_ctx, uint8_t ep);
999
1011struct net_buf *usbd_ep_buf_alloc(const struct usbd_class_data *const c_data,
1012 const uint8_t ep, const size_t size);
1013
1024int usbd_ep_ctrl_enqueue(struct usbd_context *const uds_ctx,
1025 struct net_buf *const buf);
1026
1037int usbd_ep_enqueue(const struct usbd_class_data *const c_data,
1038 struct net_buf *const buf);
1039
1048int usbd_ep_dequeue(struct usbd_context *uds_ctx, const uint8_t ep);
1049
1060int usbd_ep_buf_free(struct usbd_context *uds_ctx, struct net_buf *buf);
1061
1069bool usbd_is_suspended(struct usbd_context *uds_ctx);
1070
1077
1087void usbd_self_powered(struct usbd_context *uds_ctx, const bool status);
1088
1096enum usbd_speed usbd_bus_speed(const struct usbd_context *const uds_ctx);
1097
1105enum usbd_speed usbd_caps_speed(const struct usbd_context *const uds_ctx);
1106
1116int usbd_device_set_bcd_usb(struct usbd_context *const uds_ctx,
1117 const enum usbd_speed speed, const uint16_t bcd);
1118
1127int usbd_device_set_vid(struct usbd_context *const uds_ctx,
1128 const uint16_t vid);
1129
1138int usbd_device_set_pid(struct usbd_context *const uds_ctx,
1139 const uint16_t pid);
1140
1150 const uint16_t bcd);
1151
1164 const enum usbd_speed speed,
1165 const uint8_t base_class,
1166 const uint8_t subclass, const uint8_t protocol);
1167
1178int usbd_config_attrib_rwup(struct usbd_context *const uds_ctx,
1179 const enum usbd_speed speed,
1180 const uint8_t cfg, const bool enable);
1181
1192int usbd_config_attrib_self(struct usbd_context *const uds_ctx,
1193 const enum usbd_speed speed,
1194 const uint8_t cfg, const bool enable);
1195
1206int usbd_config_maxpower(struct usbd_context *const uds_ctx,
1207 const enum usbd_speed speed,
1208 const uint8_t cfg, const uint8_t power);
1209
1222bool usbd_can_detect_vbus(struct usbd_context *const uds_ctx);
1223
1235int usbd_device_register_vreq(struct usbd_context *const uds_ctx,
1236 struct usbd_vreq_node *const vreq_nd);
1237
1242#ifdef __cplusplus
1243}
1244#endif
1245
1246#endif /* ZEPHYR_INCLUDE_USBD_H_ */
long atomic_t
Definition atomic_types.h:15
struct _dnode sys_dnode_t
Doubly-linked list node structure.
Definition dlist.h:54
struct _dnode sys_dlist_t
Doubly-linked list structure.
Definition dlist.h:50
struct _slist sys_slist_t
Single-linked list structure.
Definition slist.h:49
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:39
int usbd_ep_clear_halt(struct usbd_context *uds_ctx, uint8_t ep)
Clear endpoint halt.
int usbd_register_all_classes(struct usbd_context *uds_ctx, const enum usbd_speed speed, uint8_t cfg, const char *const blocklist[])
Register all available USB class instances.
int usbd_device_set_vid(struct usbd_context *const uds_ctx, const uint16_t vid)
Set USB device descriptor value idVendor.
int usbd_ep_dequeue(struct usbd_context *uds_ctx, const uint8_t ep)
Remove all USB device controller requests from endpoint queue.
int usbd_ep_set_halt(struct usbd_context *uds_ctx, uint8_t ep)
Halt endpoint.
int usbd_enable(struct usbd_context *uds_ctx)
Enable the USB device support and registered class instances.
int usbd_unregister_class(struct usbd_context *uds_ctx, const char *name, const enum usbd_speed speed, uint8_t cfg)
Unregister an USB class instance.
int usbd_unregister_all_classes(struct usbd_context *uds_ctx, const enum usbd_speed speed, uint8_t cfg)
Unregister all available USB class instances.
int usbd_config_attrib_rwup(struct usbd_context *const uds_ctx, const enum usbd_speed speed, const uint8_t cfg, const bool enable)
Setup USB device configuration attribute Remote Wakeup.
void(* usbd_msg_cb_t)(struct usbd_context *const ctx, const struct usbd_msg *const msg)
Callback type definition for USB device message delivery.
Definition usbd.h:280
static void * usbd_class_get_private(const struct usbd_class_data *const c_data)
Get class implementation private data.
Definition usbd.h:453
int usbd_msg_register_cb(struct usbd_context *const uds_ctx, const usbd_msg_cb_t cb)
Register USB notification message callback.
usbd_speed
USB device speed.
Definition usbd.h:242
void usbd_remove_descriptor(struct usbd_desc_node *const desc_nd)
Remove USB string descriptor.
int usbd_add_descriptor(struct usbd_context *uds_ctx, struct usbd_desc_node *dn)
Add common USB descriptor.
int usbd_wakeup_request(struct usbd_context *uds_ctx)
Initiate the USB remote wakeup (TBD)
int usbd_shutdown(struct usbd_context *const uds_ctx)
Shutdown the USB device support.
int usbd_device_set_pid(struct usbd_context *const uds_ctx, const uint16_t pid)
Set USB device descriptor value idProduct.
int usbd_register_class(struct usbd_context *uds_ctx, const char *name, const enum usbd_speed speed, uint8_t cfg)
Register an USB class instance.
int usbd_config_maxpower(struct usbd_context *const uds_ctx, const enum usbd_speed speed, const uint8_t cfg, const uint8_t power)
Setup USB device configuration power consumption.
bool usbd_can_detect_vbus(struct usbd_context *const uds_ctx)
Check that the controller can detect the VBUS state change.
int usbd_add_configuration(struct usbd_context *uds_ctx, const enum usbd_speed speed, struct usbd_config_node *cd)
Add a USB device configuration.
bool usbd_is_suspended(struct usbd_context *uds_ctx)
Checks whether the USB device controller is suspended.
struct net_buf * usbd_ep_buf_alloc(const struct usbd_class_data *const c_data, const uint8_t ep, const size_t size)
Allocate buffer for USB device request.
int usbd_init(struct usbd_context *uds_ctx)
Initialize USB device.
int usbd_device_set_code_triple(struct usbd_context *const uds_ctx, const enum usbd_speed speed, const uint8_t base_class, const uint8_t subclass, const uint8_t protocol)
Set USB device descriptor code triple Base Class, SubClass, and Protocol.
int usbd_ep_buf_free(struct usbd_context *uds_ctx, struct net_buf *buf)
Free USB device request buffer.
int usbd_config_attrib_self(struct usbd_context *const uds_ctx, const enum usbd_speed speed, const uint8_t cfg, const bool enable)
Setup USB device configuration attribute Self-powered.
void usbd_self_powered(struct usbd_context *uds_ctx, const bool status)
Set the self-powered status of the USB device.
bool usbd_ep_is_halted(struct usbd_context *uds_ctx, uint8_t ep)
Checks whether the endpoint is halted.
usbd_ch9_state
USB device support middle layer runtime state.
Definition usbd.h:212
int usbd_ep_ctrl_enqueue(struct usbd_context *const uds_ctx, struct net_buf *const buf)
Queue USB device control request.
int usbd_disable(struct usbd_context *uds_ctx)
Disable the USB device support.
enum usbd_speed usbd_caps_speed(const struct usbd_context *const uds_ctx)
Get highest speed supported by the controller.
int usbd_ep_enqueue(const struct usbd_class_data *const c_data, struct net_buf *const buf)
Queue USB device request.
int usbd_device_register_vreq(struct usbd_context *const uds_ctx, struct usbd_vreq_node *const vreq_nd)
Register an USB vendor request with recipient device.
uint8_t usbd_str_desc_get_idx(const struct usbd_desc_node *const desc_nd)
Get USB string descriptor index from descriptor node.
enum usbd_speed usbd_bus_speed(const struct usbd_context *const uds_ctx)
Get actual device speed.
int usbd_device_set_bcd_usb(struct usbd_context *const uds_ctx, const enum usbd_speed speed, const uint16_t bcd)
Set USB device descriptor value bcdUSB.
#define USBD_NUMOF_INTERFACES_MAX
Definition usbd.h:204
static struct usbd_context * usbd_class_get_ctx(const struct usbd_class_data *const c_data)
Get the USB device runtime context under which the class is registered.
Definition usbd.h:438
int usbd_device_set_bcd_device(struct usbd_context *const uds_ctx, const uint16_t bcd)
Set USB device descriptor value bcdDevice.
@ USBD_SPEED_SS
Device supports or is connected to a super speed bus.
Definition usbd.h:248
@ USBD_SPEED_FS
Device supports or is connected to a full speed bus.
Definition usbd.h:244
@ USBD_SPEED_HS
Device supports or is connected to a high speed bus
Definition usbd.h:246
@ USBD_STATE_CONFIGURED
Definition usbd.h:215
@ USBD_STATE_DEFAULT
Definition usbd.h:213
@ USBD_STATE_ADDRESS
Definition usbd.h:214
state
Definition parser_state.h:29
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
Runtime device structure (in ROM) per driver instance.
Definition device.h:504
Mutex Structure.
Definition kernel.h:3070
Network buffer representation.
Definition net_buf.h:1006
uint16_t size
Amount of data that this buffer can store.
Definition net_buf.h:1038
USB Setup Data packet defined in spec.
Definition usb_ch9.h:40
USBD BOS Device Capability descriptor data.
Definition usbd.h:155
enum usbd_bos_desc_utype utype
Descriptor usage type (not bDescriptorType)
Definition usbd.h:157
struct usbd_vreq_node *const vreq_nd
Definition usbd.h:159
Vendor Requests Table.
Definition usbd.h:319
const uint8_t * reqs
Array of vendor requests supported by the class.
Definition usbd.h:321
uint8_t len
Length of the array.
Definition usbd.h:323
USB device support middle layer runtime data.
Definition usbd.h:222
int ctrl_type
Control type, internally used for stage verification.
Definition usbd.h:226
uint8_t configuration
USB device stack selected configuration.
Definition usbd.h:232
uint32_t ep_halt
Halted endpoints bitmap.
Definition usbd.h:230
bool post_status
Post status stage work required, e.g.
Definition usbd.h:234
enum usbd_ch9_state state
Protocol state of the USB device stack.
Definition usbd.h:228
struct usb_setup_packet setup
Setup packet, up-to-date for the respective control request.
Definition usbd.h:224
uint8_t alternate[16U]
Array to track interfaces alternate settings.
Definition usbd.h:236
USB device support class instance API.
Definition usbd.h:334
void(* feature_halt)(struct usbd_class_data *const c_data, uint8_t ep, bool halted)
Feature halt state update handler.
Definition usbd.h:336
void(* update)(struct usbd_class_data *const c_data, uint8_t iface, uint8_t alternate)
Configuration update handler.
Definition usbd.h:340
void(* sof)(struct usbd_class_data *const c_data)
Start of Frame.
Definition usbd.h:364
void(* suspended)(struct usbd_class_data *const c_data)
USB power management handler suspended.
Definition usbd.h:358
void(* shutdown)(struct usbd_class_data *const c_data)
Shutdown of the class implementation.
Definition usbd.h:376
int(* request)(struct usbd_class_data *const c_data, struct net_buf *buf, int err)
Endpoint request completion event handler.
Definition usbd.h:354
int(* init)(struct usbd_class_data *const c_data)
Initialization of the class implementation.
Definition usbd.h:373
int(* control_to_dev)(struct usbd_class_data *const c_data, const struct usb_setup_packet *const setup, const struct net_buf *const buf)
USB control request handler to device.
Definition usbd.h:344
void(* enable)(struct usbd_class_data *const c_data)
Class associated configuration is selected.
Definition usbd.h:367
int(* control_to_host)(struct usbd_class_data *const c_data, const struct usb_setup_packet *const setup, struct net_buf *const buf)
USB control request handler to host.
Definition usbd.h:349
void(* resumed)(struct usbd_class_data *const c_data)
USB power management handler resumed.
Definition usbd.h:361
void(* disable)(struct usbd_class_data *const c_data)
Class associated configuration is disabled.
Definition usbd.h:370
USB device support class data.
Definition usbd.h:386
void * priv
Pointer to private data.
Definition usbd.h:396
struct usbd_context * uds_ctx
Pointer to USB device stack context structure.
Definition usbd.h:390
const struct usbd_cctx_vendor_req * v_reqs
Supported vendor request table, can be NULL.
Definition usbd.h:394
const struct usbd_class_api * api
Pointer to device support class API.
Definition usbd.h:392
const char * name
Name of the USB device class instance.
Definition usbd.h:388
Device configuration node.
Definition usbd.h:192
sys_snode_t node
slist node struct
Definition usbd.h:194
sys_slist_t class_list
List of registered classes (functions)
Definition usbd.h:200
struct usbd_desc_node * str_desc_nd
Optional pointer to string descriptor node.
Definition usbd.h:198
void * desc
Pointer to configuration descriptor.
Definition usbd.h:196
USB device support runtime context.
Definition usbd.h:289
void * fs_desc
Pointer to Full-Speed device descriptor.
Definition usbd.h:311
void * hs_desc
Pointer to High-Speed device descriptor.
Definition usbd.h:313
usbd_msg_cb_t msg_cb
Notification message recipient callback.
Definition usbd.h:297
struct usbd_status status
Status of the USB device support.
Definition usbd.h:309
sys_slist_t hs_configs
slist to manage High-Speed device configurations
Definition usbd.h:305
struct usbd_ch9_data ch9_data
Middle layer runtime data.
Definition usbd.h:299
const struct device * dev
Pointer to UDC device.
Definition usbd.h:295
sys_dlist_t vreqs
dlist to manage vendor requests with recipient device
Definition usbd.h:307
sys_slist_t fs_configs
slist to manage Full-Speed device configurations
Definition usbd.h:303
struct k_mutex mutex
Access mutex.
Definition usbd.h:293
const char * name
Name of the USB device.
Definition usbd.h:291
sys_dlist_t descriptors
slist to manage descriptors like string, BOS
Definition usbd.h:301
Descriptor node.
Definition usbd.h:169
uint8_t bDescriptorType
Descriptor type.
Definition usbd.h:181
sys_dnode_t node
slist node struct
Definition usbd.h:171
const void *const ptr
Opaque pointer to a descriptor payload.
Definition usbd.h:177
uint8_t bLength
Descriptor size in bytes.
Definition usbd.h:179
struct usbd_str_desc_data str
Definition usbd.h:173
struct usbd_bos_desc_data bos
Definition usbd.h:174
USB device message.
Definition usbd_msg.h:88
USB device support status.
Definition usbd.h:254
unsigned int rwup
USB remote wake-up feature is enabled.
Definition usbd.h:262
unsigned int enabled
USB device support is enabled.
Definition usbd.h:258
enum usbd_speed speed
USB device speed.
Definition usbd.h:266
unsigned int initialized
USB device support is initialized.
Definition usbd.h:256
unsigned int self_powered
USB device is self-powered.
Definition usbd.h:264
unsigned int suspended
USB device is suspended.
Definition usbd.h:260
Used internally to keep descriptors in order.
Definition usbd.h:93
uint8_t idx
Descriptor index, required for string descriptors.
Definition usbd.h:95
enum usbd_str_desc_utype utype
Descriptor usage type (not bDescriptorType)
Definition usbd.h:97
unsigned int use_hwinfo
Device stack obtains SerialNumber using the HWINFO API.
Definition usbd.h:101
unsigned int ascii7
The string descriptor is in ASCII7 format.
Definition usbd.h:99
USBD vendor request node.
Definition usbd.h:137
sys_dnode_t node
Node information for the dlist.
Definition usbd.h:139
const uint8_t code
Vendor code (bRequest value)
Definition usbd.h:141
int(* to_host)(const struct usbd_context *const ctx, const struct usb_setup_packet *const setup, struct net_buf *const buf)
Vendor request callback for device-to-host direction.
Definition usbd.h:143
int(* to_dev)(const struct usbd_context *const ctx, const struct usb_setup_packet *const setup, const struct net_buf *const buf)
Vendor request callback for host-to-device direction.
Definition usbd.h:147
Byte order helpers.
Buffers for USB device support.
USB Chapter 9 structures and definitions.
USB support message types and structure.