-
Notifications
You must be signed in to change notification settings - Fork 379
/
Copy pathusbhostmanager.cpp
199 lines (168 loc) · 7.24 KB
/
usbhostmanager.cpp
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
#include "usbhostmanager.h"
#include "storagemanager.h"
#include "peripheralmanager.h"
#include "eventmanager.h"
#include "pio_usb.h"
#include "tusb.h"
#include "host/usbh.h"
#include "host/usbh_pvt.h"
#include "drivers/shared/xinput_host.h"
void USBHostManager::start() {
// This will happen after Gamepad has initialized
if (PeripheralManager::getInstance().isUSBEnabled(0) && listeners.size() > 0) {
pio_usb_configuration_t* pio_cfg = PeripheralManager::getInstance().getUSB(0)->getController();
tuh_configure(1, TUH_CFGID_RPI_PIO_USB_CONFIGURATION, pio_cfg);
tuh_init(BOARD_TUH_RHPORT);
sleep_us(10); // ensure we are ready
tuh_ready = true;
} else {
tuh_ready = false;
}
}
// Shut down the USB bus if we are running USB right now
void USBHostManager::shutdown() {
if ( tuh_ready ) {
tuh_deinit(BOARD_TUH_RHPORT);
}
}
void USBHostManager::pushListener(USBListener * usbListener) { // If anything needs to update in the gpconfig driver
listeners.push_back(usbListener);
}
// Host manager should call tuh_task as fast as possible
void USBHostManager::process() {
if ( tuh_ready ){
tuh_task();
}
}
void USBHostManager::hid_mount_cb(uint8_t dev_addr, uint8_t instance, uint8_t const* desc_report, uint16_t desc_len) {
if ( listeners.size() == 0 ) return;
for( std::vector<USBListener*>::iterator it = listeners.begin(); it != listeners.end(); it++ ){
(*it)->mount(dev_addr, instance, desc_report, desc_len);
}
}
void USBHostManager::hid_umount_cb(uint8_t dev_addr, uint8_t instance) {
if ( listeners.size() == 0 ) return;
for( std::vector<USBListener*>::iterator it = listeners.begin(); it != listeners.end(); it++ ){
(*it)->unmount(dev_addr);
}
}
void USBHostManager::hid_report_received_cb(uint8_t dev_addr, uint8_t instance, uint8_t const* report, uint16_t len) {
if ( listeners.size() == 0 ) return;
for( std::vector<USBListener*>::iterator it = listeners.begin(); it != listeners.end(); it++ ){
(*it)->report_received(dev_addr, instance, report, len);
}
}
void USBHostManager::hid_set_report_complete_cb(uint8_t dev_addr, uint8_t instance, uint8_t report_id, uint8_t report_type, uint16_t len) {
if ( listeners.size() == 0 ) return;
for( std::vector<USBListener*>::iterator it = listeners.begin(); it != listeners.end(); it++ ){
(*it)->set_report_complete(dev_addr, instance, report_id, report_type, len);
}
}
void USBHostManager::hid_get_report_complete_cb(uint8_t dev_addr, uint8_t instance, uint8_t report_id, uint8_t report_type, uint16_t len) {
if ( listeners.size() == 0 ) return;
for( std::vector<USBListener*>::iterator it = listeners.begin(); it != listeners.end(); it++ ){
(*it)->get_report_complete(dev_addr, instance, report_id, report_type, len);
}
}
void USBHostManager::xinput_mount_cb(uint8_t dev_addr, uint8_t instance, uint8_t controllerType, uint8_t subtype) {
if ( listeners.size() == 0 ) return;
for( std::vector<USBListener*>::iterator it = listeners.begin(); it != listeners.end(); it++ ){
(*it)->xmount(dev_addr, instance, controllerType, subtype);
}
}
void USBHostManager::xinput_umount_cb(uint8_t dev_addr) {
if ( listeners.size() == 0 ) return;
for( std::vector<USBListener*>::iterator it = listeners.begin(); it != listeners.end(); it++ ){
(*it)->unmount(dev_addr);
}
}
void USBHostManager::xinput_report_received_cb(uint8_t dev_addr, uint8_t instance, uint8_t const* report, uint16_t len) {
if ( listeners.size() == 0 ) return;
for( std::vector<USBListener*>::iterator it = listeners.begin(); it != listeners.end(); it++ ){
(*it)->report_received(dev_addr, instance, report, len);
}
}
void USBHostManager::xinput_report_sent_cb(uint8_t dev_addr, uint8_t instance, uint8_t const* report, uint16_t len) {
if ( listeners.size() == 0 ) return;
for( std::vector<USBListener*>::iterator it = listeners.begin(); it != listeners.end(); it++ ){
(*it)->report_sent(dev_addr, instance, report, len);
}
}
void tuh_hid_mount_cb(uint8_t dev_addr, uint8_t instance, uint8_t const* desc_report, uint16_t desc_len)
{
USBHostManager::getInstance().hid_mount_cb(dev_addr, instance, desc_report, desc_len);
if ( !tuh_hid_receive_report(dev_addr, instance) ) {
// Error: cannot request report
}
}
void tuh_mount_cb(uint8_t dev_addr) {
uint16_t vid, pid;
if (!tuh_vid_pid_get(dev_addr, &vid, &pid)) {
vid = 0xFFFF;
pid = 0xFFFF;
}
EventManager::getInstance().triggerEvent(new GPUSBHostMountEvent(dev_addr, vid, pid));
}
void tuh_umount_cb(uint8_t dev_addr) {
uint16_t vid, pid;
if (!tuh_vid_pid_get(dev_addr, &vid, &pid)) {
vid = 0xFFFF;
pid = 0xFFFF;
}
EventManager::getInstance().triggerEvent(new GPUSBHostUnmountEvent(dev_addr, vid, pid));
}
/// Invoked when device is unmounted (bus reset/unplugged)
void tuh_hid_umount_cb(uint8_t daddr, uint8_t instance)
{
USBHostManager::getInstance().hid_umount_cb(daddr, instance);
}
// Invoked when received report from device via interrupt endpoint
void tuh_hid_report_received_cb(uint8_t dev_addr, uint8_t instance, uint8_t const* report, uint16_t len)
{
USBHostManager::getInstance().hid_report_received_cb(dev_addr, instance, report, len);
if ( !tuh_hid_receive_report(dev_addr, instance) ) {
//Error: cannot request report
}
}
// On IN/OUT/FEATURE set report callback
void tuh_hid_set_report_complete_cb(uint8_t dev_addr, uint8_t instance, uint8_t report_id, uint8_t report_type, uint16_t len) {
if ( len != 0 )
USBHostManager::getInstance().hid_set_report_complete_cb(dev_addr, instance, report_id, report_type, len);
}
// GET REPORT FEATURE
void tuh_hid_get_report_complete_cb(uint8_t dev_addr, uint8_t instance, uint8_t report_id, uint8_t report_type, uint16_t len) {
if ( len != 0 )
USBHostManager::getInstance().hid_get_report_complete_cb(dev_addr, instance, report_id, report_type, len);
}
// USB Host: X-Input
// Add X-Input Driver
void tuh_xinput_mount_cb(uint8_t dev_addr, uint8_t instance, uint8_t controllerType, uint8_t subtype) {
USBHostManager::getInstance().xinput_mount_cb(dev_addr, instance, controllerType, subtype);
}
void tuh_xinput_umount_cb(uint8_t dev_addr, uint8_t instance) {
// send to xinput_unmount_cb in usb host manager
USBHostManager::getInstance().xinput_umount_cb(dev_addr);
}
void tuh_xinput_report_received_cb(uint8_t dev_addr, uint8_t instance, uint8_t const *report, uint16_t len) {
// report received from xinput device
USBHostManager::getInstance().xinput_report_received_cb(dev_addr, instance, report, len);
}
void tuh_xinput_report_sent_cb(uint8_t dev_addr, uint8_t instance, uint8_t const *report, uint16_t len) {
// report sent to xinput device
USBHostManager::getInstance().xinput_report_sent_cb(dev_addr, instance, report, len);
}
usbh_class_driver_t driver_host[] = {
{
#if CFG_TUSB_DEBUG >= 2
.name = "XInput_Host_HID",
#endif
.init = xinputh_init,
.open = xinputh_open,
.set_config = xinputh_set_config,
.xfer_cb = xinputh_xfer_cb,
.close = xinputh_close}
};
usbh_class_driver_t const *usbh_app_driver_get_cb(uint8_t *driver_count) {
*driver_count = 1;
return driver_host;
}