Zephyr Project API 4.1.0
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
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/*
41 * The USB Unicode bString is encoded in UTF16LE, which means it takes up
42 * twice the amount of bytes than the same string encoded in ASCII7.
43 * Use this macro to determine the length of the bString array.
44 *
45 * bString length without null character:
46 * bString_length = (sizeof(initializer_string) - 1) * 2
47 * or:
48 * bString_length = sizeof(initializer_string) * 2 - 2
49 */
50#define USB_BSTRING_LENGTH(s) (sizeof(s) * 2 - 2)
51
52/*
53 * The length of the string descriptor (bLength) is calculated from the
54 * size of the two octets bLength and bDescriptorType plus the
55 * length of the UTF16LE string:
56 *
57 * bLength = 2 + bString_length
58 * bLength = 2 + sizeof(initializer_string) * 2 - 2
59 * bLength = sizeof(initializer_string) * 2
60 * Use this macro to determine the bLength of the string descriptor.
61 */
62#define USB_STRING_DESCRIPTOR_LENGTH(s) (sizeof(s) * 2)
63
64struct usbd_context;
65
69enum usbd_str_desc_utype {
70 USBD_DUT_STRING_LANG,
71 USBD_DUT_STRING_MANUFACTURER,
72 USBD_DUT_STRING_PRODUCT,
73 USBD_DUT_STRING_SERIAL_NUMBER,
74 USBD_DUT_STRING_CONFIG,
75 USBD_DUT_STRING_INTERFACE,
76};
77
78enum usbd_bos_desc_utype {
79 USBD_DUT_BOS_NONE,
80 USBD_DUT_BOS_VREQ,
81};
91 enum usbd_str_desc_utype utype : 8;
93 unsigned int ascii7 : 1;
95 unsigned int use_hwinfo : 1;
96};
97
137 int (*to_host)(const struct usbd_context *const ctx,
138 const struct usb_setup_packet *const setup,
139 struct net_buf *const buf);
141 int (*to_dev)(const struct usbd_context *const ctx,
142 const struct usb_setup_packet *const setup,
143 const struct net_buf *const buf);
144};
145
151 enum usbd_bos_desc_utype utype : 8;
152 union {
153 struct usbd_vreq_node *const vreq_nd;
154 };
155};
156
177
196
197/* TODO: Kconfig option USBD_NUMOF_INTERFACES_MAX? */
198#define USBD_NUMOF_INTERFACES_MAX 16U
199
211
212
232
244
250 unsigned int initialized : 1;
252 unsigned int enabled : 1;
254 unsigned int suspended : 1;
256 unsigned int rwup : 1;
258 unsigned int self_powered : 1;
261};
262
274typedef void (*usbd_msg_cb_t)(struct usbd_context *const ctx,
275 const struct usbd_msg *const msg);
276
309
319
321#define USBD_CCTX_REGISTERED 0
322
323struct usbd_class_data;
324
330 void (*feature_halt)(struct usbd_class_data *const c_data,
331 uint8_t ep, bool halted);
332
334 void (*update)(struct usbd_class_data *const c_data,
335 uint8_t iface, uint8_t alternate);
336
338 int (*control_to_dev)(struct usbd_class_data *const c_data,
339 const struct usb_setup_packet *const setup,
340 const struct net_buf *const buf);
341
343 int (*control_to_host)(struct usbd_class_data *const c_data,
344 const struct usb_setup_packet *const setup,
345 struct net_buf *const buf);
346
348 int (*request)(struct usbd_class_data *const c_data,
349 struct net_buf *buf, int err);
350
352 void (*suspended)(struct usbd_class_data *const c_data);
353
355 void (*resumed)(struct usbd_class_data *const c_data);
356
358 void (*sof)(struct usbd_class_data *const c_data);
359
361 void (*enable)(struct usbd_class_data *const c_data);
362
364 void (*disable)(struct usbd_class_data *const c_data);
365
367 int (*init)(struct usbd_class_data *const c_data);
368
370 void (*shutdown)(struct usbd_class_data *const c_data);
371
373 void *(*get_desc)(struct usbd_class_data *const c_data,
374 const enum usbd_speed speed);
375};
376
382 const char *name;
386 const struct usbd_class_api *api;
390 void *priv;
391};
392
401struct usbd_class_node {
403 sys_snode_t node;
405 struct usbd_class_data *const c_data;
409 uint32_t ep_assigned;
413 uint32_t ep_active;
415 uint32_t iface_bm;
418};
419
432static inline struct usbd_context *usbd_class_get_ctx(const struct usbd_class_data *const c_data)
433{
434 return c_data->uds_ctx;
435}
436
447static inline void *usbd_class_get_private(const struct usbd_class_data *const c_data)
448{
449 return c_data->priv;
450}
451
472#define USBD_DEVICE_DEFINE(device_name, udc_dev, vid, pid) \
473 static struct usb_device_descriptor \
474 fs_desc_##device_name = { \
475 .bLength = sizeof(struct usb_device_descriptor), \
476 .bDescriptorType = USB_DESC_DEVICE, \
477 .bcdUSB = sys_cpu_to_le16(USB_SRN_2_0), \
478 .bDeviceClass = USB_BCC_MISCELLANEOUS, \
479 .bDeviceSubClass = 2, \
480 .bDeviceProtocol = 1, \
481 .bMaxPacketSize0 = USB_CONTROL_EP_MPS, \
482 .idVendor = vid, \
483 .idProduct = pid, \
484 .bcdDevice = sys_cpu_to_le16(USB_BCD_DRN), \
485 .iManufacturer = 0, \
486 .iProduct = 0, \
487 .iSerialNumber = 0, \
488 .bNumConfigurations = 0, \
489 }; \
490 static struct usb_device_descriptor \
491 hs_desc_##device_name = { \
492 .bLength = sizeof(struct usb_device_descriptor), \
493 .bDescriptorType = USB_DESC_DEVICE, \
494 .bcdUSB = sys_cpu_to_le16(USB_SRN_2_0), \
495 .bDeviceClass = USB_BCC_MISCELLANEOUS, \
496 .bDeviceSubClass = 2, \
497 .bDeviceProtocol = 1, \
498 .bMaxPacketSize0 = 64, \
499 .idVendor = vid, \
500 .idProduct = pid, \
501 .bcdDevice = sys_cpu_to_le16(USB_BCD_DRN), \
502 .iManufacturer = 0, \
503 .iProduct = 0, \
504 .iSerialNumber = 0, \
505 .bNumConfigurations = 0, \
506 }; \
507 static STRUCT_SECTION_ITERABLE(usbd_context, device_name) = { \
508 .name = STRINGIFY(device_name), \
509 .dev = udc_dev, \
510 .fs_desc = &fs_desc_##device_name, \
511 .hs_desc = &hs_desc_##device_name, \
512 }
513
531#define USBD_CONFIGURATION_DEFINE(name, attrib, power, desc_nd) \
532 static struct usb_cfg_descriptor \
533 cfg_desc_##name = { \
534 .bLength = sizeof(struct usb_cfg_descriptor), \
535 .bDescriptorType = USB_DESC_CONFIGURATION, \
536 .wTotalLength = 0, \
537 .bNumInterfaces = 0, \
538 .bConfigurationValue = 1, \
539 .iConfiguration = 0, \
540 .bmAttributes = USB_SCD_RESERVED | (attrib), \
541 .bMaxPower = (power), \
542 }; \
543 BUILD_ASSERT((power) < 256, "Too much power"); \
544 static struct usbd_config_node name = { \
545 .desc = &cfg_desc_##name, \
546 .str_desc_nd = desc_nd, \
547 }
548
562#define USBD_DESC_LANG_DEFINE(name) \
563 static uint16_t langid_##name = sys_cpu_to_le16(0x0409); \
564 static struct usbd_desc_node name = { \
565 .str = { \
566 .idx = 0, \
567 .utype = USBD_DUT_STRING_LANG, \
568 }, \
569 .ptr = &langid_##name, \
570 .bLength = sizeof(struct usb_string_descriptor), \
571 .bDescriptorType = USB_DESC_STRING, \
572 }
573
585#define USBD_DESC_STRING_DEFINE(d_name, d_string, d_utype) \
586 static uint8_t ascii_##d_name[USB_BSTRING_LENGTH(d_string)] = d_string; \
587 static struct usbd_desc_node d_name = { \
588 .str = { \
589 .utype = d_utype, \
590 .ascii7 = true, \
591 }, \
592 .ptr = &ascii_##d_name, \
593 .bLength = USB_STRING_DESCRIPTOR_LENGTH(d_string), \
594 .bDescriptorType = USB_DESC_STRING, \
595 }
596
608#define USBD_DESC_MANUFACTURER_DEFINE(d_name, d_string) \
609 USBD_DESC_STRING_DEFINE(d_name, d_string, USBD_DUT_STRING_MANUFACTURER)
610
622#define USBD_DESC_PRODUCT_DEFINE(d_name, d_string) \
623 USBD_DESC_STRING_DEFINE(d_name, d_string, USBD_DUT_STRING_PRODUCT)
624
635#define USBD_DESC_SERIAL_NUMBER_DEFINE(d_name) \
636 static struct usbd_desc_node d_name = { \
637 .str = { \
638 .utype = USBD_DUT_STRING_SERIAL_NUMBER, \
639 .ascii7 = true, \
640 .use_hwinfo = true, \
641 }, \
642 .bDescriptorType = USB_DESC_STRING, \
643 }
644
654#define USBD_DESC_CONFIG_DEFINE(d_name, d_string) \
655 USBD_DESC_STRING_DEFINE(d_name, d_string, USBD_DUT_STRING_CONFIG)
656
667#define USBD_DESC_BOS_DEFINE(name, len, subset) \
668 static struct usbd_desc_node name = { \
669 .bos = { \
670 .utype = USBD_DUT_BOS_NONE, \
671 }, \
672 .ptr = subset, \
673 .bLength = len, \
674 .bDescriptorType = USB_DESC_BOS, \
675 }
676
685#define USBD_VREQUEST_DEFINE(name, vcode, vto_host, vto_dev) \
686 static struct usbd_vreq_node name = { \
687 .code = vcode, \
688 .to_host = vto_host, \
689 .to_dev = vto_dev, \
690 }
691
708#define USBD_DESC_BOS_VREQ_DEFINE(name, len, subset, vcode, vto_host, vto_dev) \
709 USBD_VREQUEST_DEFINE(vreq_nd_##name, vcode, vto_host, vto_dev); \
710 static struct usbd_desc_node name = { \
711 .bos = { \
712 .utype = USBD_DUT_BOS_VREQ, \
713 .vreq_nd = &vreq_nd_##name, \
714 }, \
715 .ptr = subset, \
716 .bLength = len, \
717 .bDescriptorType = USB_DESC_BOS, \
718 }
719
731#define USBD_DEFINE_CLASS(class_name, class_api, class_priv, class_v_reqs) \
732 static struct usbd_class_data class_name = { \
733 .name = STRINGIFY(class_name), \
734 .api = class_api, \
735 .v_reqs = class_v_reqs, \
736 .priv = class_priv, \
737 }; \
738 static STRUCT_SECTION_ITERABLE_ALTERNATE( \
739 usbd_class_fs, usbd_class_node, class_name##_fs) = { \
740 .c_data = &class_name, \
741 }; \
742 static STRUCT_SECTION_ITERABLE_ALTERNATE( \
743 usbd_class_hs, usbd_class_node, class_name##_hs) = { \
744 .c_data = &class_name, \
745 }
746
752#define VENDOR_REQ_DEFINE(_reqs, _len) \
753 { \
754 .reqs = (const uint8_t *)(_reqs), \
755 .len = (_len), \
756 }
757
762#define USBD_VENDOR_REQ(_reqs...) \
763 VENDOR_REQ_DEFINE(((uint8_t []) { _reqs }), \
764 sizeof((uint8_t []) { _reqs }))
765
766
778 struct usbd_desc_node *dn);
779
787uint8_t usbd_str_desc_get_idx(const struct usbd_desc_node *const desc_nd);
788
796void usbd_remove_descriptor(struct usbd_desc_node *const desc_nd);
797
808 const enum usbd_speed speed,
809 struct usbd_config_node *cd);
810
833 const char *name,
834 const enum usbd_speed speed, uint8_t cfg);
835
868 const enum usbd_speed speed, uint8_t cfg,
869 const char *const blocklist[]);
870
886 const char *name,
887 const enum usbd_speed speed, uint8_t cfg);
888
902 const enum usbd_speed speed, uint8_t cfg);
903
912int usbd_msg_register_cb(struct usbd_context *const uds_ctx,
913 const usbd_msg_cb_t cb);
914
928int usbd_init(struct usbd_context *uds_ctx);
929
939int usbd_enable(struct usbd_context *uds_ctx);
940
950int usbd_disable(struct usbd_context *uds_ctx);
951
961int usbd_shutdown(struct usbd_context *const uds_ctx);
962
971int usbd_ep_set_halt(struct usbd_context *uds_ctx, uint8_t ep);
972
981int usbd_ep_clear_halt(struct usbd_context *uds_ctx, uint8_t ep);
982
991bool usbd_ep_is_halted(struct usbd_context *uds_ctx, uint8_t ep);
992
1004struct net_buf *usbd_ep_buf_alloc(const struct usbd_class_data *const c_data,
1005 const uint8_t ep, const size_t size);
1006
1017int usbd_ep_ctrl_enqueue(struct usbd_context *const uds_ctx,
1018 struct net_buf *const buf);
1019
1030int usbd_ep_enqueue(const struct usbd_class_data *const c_data,
1031 struct net_buf *const buf);
1032
1041int usbd_ep_dequeue(struct usbd_context *uds_ctx, const uint8_t ep);
1042
1053int usbd_ep_buf_free(struct usbd_context *uds_ctx, struct net_buf *buf);
1054
1062bool usbd_is_suspended(struct usbd_context *uds_ctx);
1063
1070
1080void usbd_self_powered(struct usbd_context *uds_ctx, const bool status);
1081
1089enum usbd_speed usbd_bus_speed(const struct usbd_context *const uds_ctx);
1090
1098enum usbd_speed usbd_caps_speed(const struct usbd_context *const uds_ctx);
1099
1109int usbd_device_set_bcd_usb(struct usbd_context *const uds_ctx,
1110 const enum usbd_speed speed, const uint16_t bcd);
1111
1120int usbd_device_set_vid(struct usbd_context *const uds_ctx,
1121 const uint16_t vid);
1122
1131int usbd_device_set_pid(struct usbd_context *const uds_ctx,
1132 const uint16_t pid);
1133
1143 const uint16_t bcd);
1144
1157 const enum usbd_speed speed,
1158 const uint8_t base_class,
1159 const uint8_t subclass, const uint8_t protocol);
1160
1171int usbd_config_attrib_rwup(struct usbd_context *const uds_ctx,
1172 const enum usbd_speed speed,
1173 const uint8_t cfg, const bool enable);
1174
1185int usbd_config_attrib_self(struct usbd_context *const uds_ctx,
1186 const enum usbd_speed speed,
1187 const uint8_t cfg, const bool enable);
1188
1199int usbd_config_maxpower(struct usbd_context *const uds_ctx,
1200 const enum usbd_speed speed,
1201 const uint8_t cfg, const uint8_t power);
1202
1215bool usbd_can_detect_vbus(struct usbd_context *const uds_ctx);
1216
1228int usbd_device_register_vreq(struct usbd_context *const uds_ctx,
1229 struct usbd_vreq_node *const vreq_nd);
1230
1235#ifdef __cplusplus
1236}
1237#endif
1238
1239#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:274
static void * usbd_class_get_private(const struct usbd_class_data *const c_data)
Get class implementation private data.
Definition usbd.h:447
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:236
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:206
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:198
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:432
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:242
@ USBD_SPEED_FS
Device supports or is connected to a full speed bus.
Definition usbd.h:238
@ USBD_SPEED_HS
Device supports or is connected to a high speed bus
Definition usbd.h:240
@ USBD_STATE_CONFIGURED
Definition usbd.h:209
@ USBD_STATE_DEFAULT
Definition usbd.h:207
@ USBD_STATE_ADDRESS
Definition usbd.h:208
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:453
Mutex Structure.
Definition kernel.h:3025
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:149
enum usbd_bos_desc_utype utype
Descriptor usage type (not bDescriptorType)
Definition usbd.h:151
struct usbd_vreq_node *const vreq_nd
Definition usbd.h:153
Vendor Requests Table.
Definition usbd.h:313
const uint8_t * reqs
Array of vendor requests supported by the class.
Definition usbd.h:315
uint8_t len
Length of the array.
Definition usbd.h:317
USB device support middle layer runtime data.
Definition usbd.h:216
int ctrl_type
Control type, internally used for stage verification.
Definition usbd.h:220
uint8_t configuration
USB device stack selected configuration.
Definition usbd.h:226
uint32_t ep_halt
Halted endpoints bitmap.
Definition usbd.h:224
bool post_status
Post status stage work required, e.g.
Definition usbd.h:228
enum usbd_ch9_state state
Protocol state of the USB device stack.
Definition usbd.h:222
struct usb_setup_packet setup
Setup packet, up-to-date for the respective control request.
Definition usbd.h:218
uint8_t alternate[16U]
Array to track interfaces alternate settings.
Definition usbd.h:230
USB device support class instance API.
Definition usbd.h:328
void(* feature_halt)(struct usbd_class_data *const c_data, uint8_t ep, bool halted)
Feature halt state update handler.
Definition usbd.h:330
void(* update)(struct usbd_class_data *const c_data, uint8_t iface, uint8_t alternate)
Configuration update handler.
Definition usbd.h:334
void(* sof)(struct usbd_class_data *const c_data)
Start of Frame.
Definition usbd.h:358
void(* suspended)(struct usbd_class_data *const c_data)
USB power management handler suspended.
Definition usbd.h:352
void(* shutdown)(struct usbd_class_data *const c_data)
Shutdown of the class implementation.
Definition usbd.h:370
int(* request)(struct usbd_class_data *const c_data, struct net_buf *buf, int err)
Endpoint request completion event handler.
Definition usbd.h:348
int(* init)(struct usbd_class_data *const c_data)
Initialization of the class implementation.
Definition usbd.h:367
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:338
void(* enable)(struct usbd_class_data *const c_data)
Class associated configuration is selected.
Definition usbd.h:361
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:343
void(* resumed)(struct usbd_class_data *const c_data)
USB power management handler resumed.
Definition usbd.h:355
void(* disable)(struct usbd_class_data *const c_data)
Class associated configuration is disabled.
Definition usbd.h:364
USB device support class data.
Definition usbd.h:380
void * priv
Pointer to private data.
Definition usbd.h:390
struct usbd_context * uds_ctx
Pointer to USB device stack context structure.
Definition usbd.h:384
const struct usbd_cctx_vendor_req * v_reqs
Supported vendor request table, can be NULL.
Definition usbd.h:388
const struct usbd_class_api * api
Pointer to device support class API.
Definition usbd.h:386
const char * name
Name of the USB device class instance.
Definition usbd.h:382
Device configuration node.
Definition usbd.h:186
sys_snode_t node
slist node struct
Definition usbd.h:188
sys_slist_t class_list
List of registered classes (functions)
Definition usbd.h:194
struct usbd_desc_node * str_desc_nd
Optional pointer to string descriptor node.
Definition usbd.h:192
void * desc
Pointer to configuration descriptor.
Definition usbd.h:190
USB device support runtime context.
Definition usbd.h:283
void * fs_desc
Pointer to Full-Speed device descriptor.
Definition usbd.h:305
void * hs_desc
Pointer to High-Speed device descriptor.
Definition usbd.h:307
usbd_msg_cb_t msg_cb
Notification message recipient callback.
Definition usbd.h:291
struct usbd_status status
Status of the USB device support.
Definition usbd.h:303
sys_slist_t hs_configs
slist to manage High-Speed device configurations
Definition usbd.h:299
struct usbd_ch9_data ch9_data
Middle layer runtime data.
Definition usbd.h:293
const struct device * dev
Pointer to UDC device.
Definition usbd.h:289
sys_dlist_t vreqs
dlist to manage vendor requests with recipient device
Definition usbd.h:301
sys_slist_t fs_configs
slist to manage Full-Speed device configurations
Definition usbd.h:297
struct k_mutex mutex
Access mutex.
Definition usbd.h:287
const char * name
Name of the USB device.
Definition usbd.h:285
sys_dlist_t descriptors
slist to manage descriptors like string, BOS
Definition usbd.h:295
Descriptor node.
Definition usbd.h:163
uint8_t bDescriptorType
Descriptor type.
Definition usbd.h:175
sys_dnode_t node
slist node struct
Definition usbd.h:165
const void *const ptr
Opaque pointer to a descriptor payload.
Definition usbd.h:171
uint8_t bLength
Descriptor size in bytes.
Definition usbd.h:173
struct usbd_str_desc_data str
Definition usbd.h:167
struct usbd_bos_desc_data bos
Definition usbd.h:168
USB device message.
Definition usbd_msg.h:88
USB device support status.
Definition usbd.h:248
unsigned int rwup
USB remote wake-up feature is enabled.
Definition usbd.h:256
unsigned int enabled
USB device support is enabled.
Definition usbd.h:252
enum usbd_speed speed
USB device speed.
Definition usbd.h:260
unsigned int initialized
USB device support is initialized.
Definition usbd.h:250
unsigned int self_powered
USB device is self-powered.
Definition usbd.h:258
unsigned int suspended
USB device is suspended.
Definition usbd.h:254
Used internally to keep descriptors in order.
Definition usbd.h:87
uint8_t idx
Descriptor index, required for string descriptors.
Definition usbd.h:89
enum usbd_str_desc_utype utype
Descriptor usage type (not bDescriptorType)
Definition usbd.h:91
unsigned int use_hwinfo
Device stack obtains SerialNumber using the HWINFO API.
Definition usbd.h:95
unsigned int ascii7
The string descriptor is in ASCII7 format.
Definition usbd.h:93
USBD vendor request node.
Definition usbd.h:131
sys_dnode_t node
Node information for the dlist.
Definition usbd.h:133
const uint8_t code
Vendor code (bRequest value)
Definition usbd.h:135
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:137
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:141
Byte order helpers.
Buffers for USB device support.
USB Chapter 9 structures and definitions.
USB support message types and structure.