-
Notifications
You must be signed in to change notification settings - Fork 270
/
usb-internal.h
101 lines (84 loc) · 2.31 KB
/
usb-internal.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* Copyright (c) 2011,2012 Simon Schubert <[email protected]>.
* Modifications by Jacob Alexander 2014-2015 <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
/**
* Internal driver structures
*/
/**
* USB state machine
* =================
*
* Device configuration states:
*
* Attached <-> Powered
* Powered -(reset)-> Default
* Default -(SET_ADDRESS)-> Address
* Address -(SET_CONFIGURATION)-> Configured
* Configured -(SET_CONFIGURATION 0)-> Address
* Address -(SET_ADDRESS 0)-> Default
* [Default, Configured, Address] -(reset)-> Default
*/
// ----- Defines -----
#ifndef USB_MAX_EP
#define USB_MAX_EP 16
#endif
// ----- Structs -----
struct usbd_ep_pipe_state_t {
enum usb_ep_pingpong pingpong; /* next desc to use */
enum usb_data01 data01;
size_t transfer_size;
size_t pos;
uint8_t *data_buf;
const uint8_t *copy_source;
int short_transfer;
ep_callback_t callback;
void *callback_data;
size_t ep_maxsize;
/* constant */
int ep_num;
enum usb_ep_dir ep_dir;
};
struct usbd_ep_state_t {
union {
struct usbd_ep_pipe_state_t pipe[2];
struct {
struct usbd_ep_pipe_state_t rx;
struct usbd_ep_pipe_state_t tx;
};
};
};
struct usbd_t {
struct usbd_function_ctx_header functions;
struct usbd_function control_function;
const struct usbd_device *identity;
int address;
int config;
enum usbd_dev_state {
USBD_STATE_DISABLED = 0,
USBD_STATE_DEFAULT,
USBD_STATE_SETTING_ADDRESS,
USBD_STATE_ADDRESS,
USBD_STATE_CONFIGURED
} state;
enum usb_ctrl_req_dir ctrl_dir;
struct usbd_ep_state_t ep_state[USB_MAX_EP];
};
extern struct usbd_t usb;
// ----- Functions -----
void usb_restart(void);
void usb_enable(void);
const struct usbd_config *usb_get_config_data(int config);