-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.c
781 lines (715 loc) · 23.7 KB
/
main.c
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
/* main.c
* by Alex Chadwick
*
* Copyright (C) 2017, Alex Chadwick
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/* This module adds support for the USB GCN Adapter (WUP-028). It achieves this
* by simply replacing the Wii's PADRead and PADControlMotor calls. When PADRead
* is called for the first time, the module initialises. Thereafter, the reading
* of the actual USB proceeds asynchronously and continuously and the PADRead
* method just returns the result of the most recent message from the USB. The
* outbound rumble control messages get inserted between inbound controller data
* messages, as it seems like having both inbound and outbound messages
* travelling independently can cause lock ups. */
/* Interfacing with the USB is done by the IOS on behalf of the game. The
* interface that the IOS exposes differs by IOS version. This module uses the
* /dev/usb/hid interface. I've not tested exhaustively but IOS36 doesn't
* support /dev/usb/hid at all, so this module won't work there. IOS37
* introduces /dev/usb/hid at version 4. Later, IOS58 changes /dev/usb/hid
* completely to version 5. This module supports both version 4 and version 5 of
* /dev/usb/hid which it detects dynamically. I don't know if any later IOSs
* change /dev/usb/hid in a non-suported way, or if earlier IOSs may be
* compatible. */
#include <bslug.h>
#include <rvl/cache.h>
#include <rvl/ipc.h>
#include <rvl/Pad.h>
BSLUG_MODULE_GAME("????");
BSLUG_MODULE_NAME("USB GCN Adapter Support");
BSLUG_MODULE_VERSION("v1.0");
BSLUG_MODULE_AUTHOR("Chadderz");
BSLUG_MODULE_LICENSE("BSD");
/*============================================================================*/
/* Macros */
/*============================================================================*/
/* If you don't want to support both interfaces, remove one of these two
* defines. */
#define SUPPORT_DEV_USB_HID4
#define SUPPORT_DEV_USB_HID5
#define IOS_ALIGN __attribute__((aligned(32)))
/* You can't really change this! */
#define GCN_CONTROLLER_COUNT 4
/* L and R slider's "pressed" state. */
#define GCN_TRIGGER_THRESHOLD 170
/* How long (in time base units) to go without inputs before reporting a disconnect. */
#define ms * (243000/4)
#define GCN_TIMEOUT (1500 ms)
/* Commands that the adapter supports. */
#define WUP_028_CMD_RUMBLE 0x11
#define WUP_028_CMD_INIT 0x13
/* VendorID and ProductID of the adatper. */
#define WUP_028_ID 0x057e0337
/* Size of the controller data returned by the adapter. */
#define WUP_028_POLL_SIZE 0x25
/* Size of the rumble message circular buffer. */
#define RUMBLE_BUFFER 16
/* Number of polls to wait before giving up on outstanding rumble command. */
#define RUMBLE_DELAY 3
/* Path to the USB device interface. */
#define DEV_USB_HID_PATH "/dev/usb/hid"
/*============================================================================*/
/* Globals */
/*============================================================================*/
static ios_fd_t dev_usb_hid_fd = -1;
static int8_t started = 0;
static PADData_t gcn_data[GCN_CONTROLLER_COUNT];
static uint32_t gcn_data_written;
static uint32_t gcn_adapter_id = -1;
#if defined(SUPPORT_DEV_USB_HID5) && defined(SUPPORT_DEV_USB_HID4)
#define HAVE_VERSION
static int8_t version;
#endif
int8_t error;
int8_t errorMethod;
/* Circular buffer of rumble outputs. */
static uint8_t rumble_sent = 0;
static uint8_t rumble_recv = 0;
static uint8_t rumble_buffer[RUMBLE_BUFFER][GCN_CONTROLLER_COUNT];
/* Don't send next rumble until old one returns or timeout passes. */
static uint8_t rumble_delay;
static uint8_t rumble_token;
/* Messages for device. */
static uint8_t init_msg_buffer[1] IOS_ALIGN = { WUP_028_CMD_INIT };
/* Pad buffer size to cache line size of IOS core. Otherwise IOS will write ver
* later data, or we could read a stale value. */
static uint8_t poll_msg_buffer[-(-WUP_028_POLL_SIZE & ~0x1f)] IOS_ALIGN;
static uint8_t rumble_msg_buffer[1 + GCN_CONTROLLER_COUNT] IOS_ALIGN =
{ WUP_028_CMD_RUMBLE };
/*============================================================================*/
/* Top level interface to game */
/*============================================================================*/
static uint32_t mftb(void);
static uint32_t cpu_isr_disable(void);
static void cpu_isr_restore(uint32_t isr);
static void onDevOpen(ios_fd_t fd, usr_t unused);
static void myPADInit(void) {
/* FIXME: Until we've killed all PAD methods, better init still. */
PADInit();
}
static void myPADRead(PADData_t result[GCN_CONTROLLER_COUNT]) {
uint32_t isr = cpu_isr_disable();
if (!started) {
/* On first call only, initialise USB and globals. */
started = 1;
for (int i = 0; i < GCN_CONTROLLER_COUNT; i++)
gcn_data[i].error = PADData_ERROR_NO_CONNECTION;
gcn_data_written = mftb();
IOS_OpenAsync(DEV_USB_HID_PATH, 0, onDevOpen, NULL);
}
if (errorMethod > 0) {
/* On a USB error, disconnect all controllers. */
errorMethod = -errorMethod;
for (int i = 0; i < GCN_CONTROLLER_COUNT; i++)
gcn_data[i].error = PADData_ERROR_NO_CONNECTION;
} else if (mftb() - gcn_data_written > GCN_TIMEOUT) {
for (int i = 0; i < GCN_CONTROLLER_COUNT; i++)
gcn_data[i].error = PADData_ERROR_NO_CONNECTION;
}
for (int i = 0; i < GCN_CONTROLLER_COUNT; i++) {
/* Copy last seen controller inputs. */
result[i] = gcn_data[i];
if (gcn_data[i].error == 0)
gcn_data[i].error = PADData_ERROR_2;
}
cpu_isr_restore(isr);
}
static void myPADControlMotor(int pad, int control) {
/* Check for valid pad. */
if ((unsigned int)pad >= GCN_CONTROLLER_COUNT) return;
uint32_t isr = cpu_isr_disable();
unsigned int prev = (unsigned int)(rumble_sent - 1) % RUMBLE_BUFFER;
/* Check if this command is redundant. */
if (rumble_buffer[prev][pad] == (uint8_t)control) goto exit;
/* Put this rumble command into a queue. */
for (int i = 0; i < GCN_CONTROLLER_COUNT; i++)
if (i == pad)
rumble_buffer[rumble_sent][i] = control;
else
rumble_buffer[rumble_sent][i] = rumble_buffer[prev][i];
rumble_sent = (rumble_sent + 1) % RUMBLE_BUFFER;
exit:
cpu_isr_restore(isr);
}
BSLUG_MUST_REPLACE(PADInit, myPADInit);
BSLUG_MUST_REPLACE(PADRead, myPADRead);
BSLUG_REPLACE(PADControlMotor, myPADControlMotor);
/*============================================================================*/
/* USB support */
/*============================================================================*/
static uint32_t mftb(void) {
uint32_t result;
asm volatile ("mftb %0" : "=r"(result));
return result;
}
static uint32_t cpu_isr_disable(void) {
uint32_t isr, tmp;
asm volatile("mfmsr %0; rlwinm %1, %0, 0, 0xFFFF7FFF; mtmsr %1" : "=r"(isr), "=r"(tmp));
return isr;
}
static void cpu_isr_restore(uint32_t isr) {
uint32_t tmp;
asm volatile ("mfmsr %0; rlwimi %0, %1, 0, 0x8000; mtmsr %0" : "=&r"(tmp) : "r" (isr));
}
static void callbackIgnore(ios_ret_t ret, usr_t unused);
static void onDevUsbInit(ios_ret_t ret, usr_t unused);
static void onDevUsbPoll(ios_ret_t ret, usr_t unused);
#ifdef SUPPORT_DEV_USB_HID4
/* The basic flow for version 4:
* 1) ioctl GET_VERSION
* Check the return value is 0x00040001.
* 2) ioctl GET_DEVICE_CHANGE
* Returns immediately + every time a device is added or removed. Output
* describes what is connected.
* 3) Find an interesting device.
* 4) ioctl INTERRUPT_OUT
* USB interrupt packet to send initialise command to WUP-028.
* 5) ioctl INTERRUPT_IN
* USB interrupt packet to poll device for inputs.
*/
/* Size of the adapter's description. */
# define WUP_028_DESCRIPTOR_SIZE 0x44
/* Endpoint numbering for the device. */
# define WUP_028_ENDPOINT_OUT 0x2
# define WUP_028_ENDPOINT_IN 0x81
/* Size of the DeviceChange ioctl's return (in words). */
# define DEV_USB_HID4_DEVICE_CHANGE_SIZE 0x180
/* IOCTL numbering for the device. */
# define DEV_USB_HID4_IOCTL_GET_DEVICE_CHANGE 0
# define DEV_USB_HID4_IOCTL_INTERRUPT_IN 3
# define DEV_USB_HID4_IOCTL_INTERRUPT_OUT 4
# define DEV_USB_HID4_IOCTL_GET_VERSION 6
/* Version id. */
# define DEV_USB_HID4_VERSION 0x00040001
static uint32_t dev_usb_hid4_devices[DEV_USB_HID4_DEVICE_CHANGE_SIZE] IOS_ALIGN;
struct interrupt_msg4 {
uint8_t padding[16];
uint32_t device;
uint32_t endpoint;
uint32_t length;
void *ptr;
};
static struct interrupt_msg4 init_msg4 IOS_ALIGN = {
.device = -1,
.endpoint = WUP_028_ENDPOINT_OUT,
.length = sizeof(init_msg_buffer),
.ptr = init_msg_buffer
};
static struct interrupt_msg4 poll_msg4 IOS_ALIGN = {
.device = -1,
.endpoint = WUP_028_ENDPOINT_IN,
.length = WUP_028_POLL_SIZE,
.ptr = poll_msg_buffer
};
static struct interrupt_msg4 rumble_msg4 IOS_ALIGN = {
.device = -1,
.endpoint = WUP_028_ENDPOINT_OUT,
.length = sizeof(rumble_msg_buffer),
.ptr = rumble_msg_buffer
};
static void onDevGetVersion4(ios_ret_t ret, usr_t unused);
static void onDevUsbChange4(ios_ret_t ret, usr_t unused);
static int checkVersion4(ios_cb_t cb, usr_t data) {
return IOS_IoctlAsync(
dev_usb_hid_fd, DEV_USB_HID4_IOCTL_GET_VERSION,
NULL, 0,
NULL, 0,
cb, data
);
}
static int getDeviceChange4(ios_cb_t cb, usr_t data) {
return IOS_IoctlAsync(
dev_usb_hid_fd, DEV_USB_HID4_IOCTL_GET_DEVICE_CHANGE,
NULL, 0,
dev_usb_hid4_devices, sizeof(dev_usb_hid4_devices),
cb, data
);
}
static int sendInit4(ios_cb_t cb, usr_t data) {
init_msg4.device = gcn_adapter_id;
return IOS_IoctlAsync(
dev_usb_hid_fd, DEV_USB_HID4_IOCTL_INTERRUPT_OUT,
&init_msg4, sizeof(init_msg4),
NULL, 0,
cb, data
);
}
static int sendPoll4(ios_cb_t cb, usr_t data) {
poll_msg4.device = gcn_adapter_id;
DCFlushRange(poll_msg_buffer, sizeof(poll_msg_buffer));
return IOS_IoctlAsync(
dev_usb_hid_fd, DEV_USB_HID4_IOCTL_INTERRUPT_IN,
&poll_msg4, sizeof(poll_msg4),
NULL, 0,
cb, data
);
}
static int sendRumble4(ios_cb_t cb, usr_t data) {
DCFlushRange(rumble_msg_buffer, 0x20);
rumble_msg4.device = gcn_adapter_id;
return IOS_IoctlAsync(
dev_usb_hid_fd, DEV_USB_HID4_IOCTL_INTERRUPT_OUT,
&rumble_msg4, sizeof(rumble_msg4),
NULL, 0,
cb, data
);
}
#endif
#ifdef SUPPORT_DEV_USB_HID5
/* The basic flow for version 5:
* 1) ioctl GET_VERSION
* Check the return value is 0x00050001.
* 2) ioctl GET_DEVICE_CHANGE
* Returns immediately + every time a device is added or removed. Output
* describes what is connected.
* 3) ioctl ATTACH_FINISH
* Don't know why, but you have to do this!
* 4) Find an interesting device.
* 5) ioctl SET_RESUME
* Turn the device on.
* 5) ioctl GET_DEVICE_PARAMETERS
* You have to do this, even if you don't care about the result.
* 6) ioctl INTERRUPT
* USB interrupt packet to send initialise command to WUP-028.
* 7) ioctl INTERRUPT
* USB interrupt packet to poll device for inputs.
*/
/* Size of the DeviceChange ioctl's return (in strctures). */
# define DEV_USB_HID5_DEVICE_CHANGE_SIZE 0x20
/* Total size of all IOS buffers (in words). */
# define DEV_USB_HID5_TMP_BUFFER_SIZE 0x20
/* IOCTL numbering for the device. */
# define DEV_USB_HID5_IOCTL_GET_VERSION 0
# define DEV_USB_HID5_IOCTL_GET_DEVICE_CHANGE 1
# define DEV_USB_HID5_IOCTL_GET_DEVICE_PARAMETERS 3
# define DEV_USB_HID5_IOCTL_ATTACH_FINISH 6
# define DEV_USB_HID5_IOCTL_SET_RESUME 16
# define DEV_USB_HID5_IOCTL_INTERRUPT 19
/* Version id. */
# define DEV_USB_HID5_VERSION 0x00050001
# define OS_IPC_HEAP_HIGH ((void **)0x80003134)
static struct {
uint32_t id;
uint32_t vid_pid;
uint32_t _unknown8;
} *dev_usb_hid5_devices;
/* This buffer gets managed pretty carefully. During init it's split 0x20 bytes
* to 0x60 bytes to store the descriptor. The rest of the time it's split
* evenly, one half for rumble messages and one half for polls. Be careful! */
static uint32_t *dev_usb_hid5_buffer;
static ioctlv dev_usb_hid5_argv[2] IOS_ALIGN;
/* Polls may be sent at the same time as rumbles, so need two ioctlv arrays. */
static ioctlv dev_usb_hid5_poll_argv[2] IOS_ALIGN;
/* Annoyingly some of the buffers for v5 MUST be in MEM2, so we wrap _start to
* allocate these before the application boots. */
void _start(void);
static void my_start(void) {
/* Allocate some area in MEM2. */
dev_usb_hid5_devices = *OS_IPC_HEAP_HIGH;
dev_usb_hid5_devices -= DEV_USB_HID5_DEVICE_CHANGE_SIZE;
*OS_IPC_HEAP_HIGH = dev_usb_hid5_devices;
dev_usb_hid5_buffer = *OS_IPC_HEAP_HIGH;
dev_usb_hid5_buffer -= DEV_USB_HID5_TMP_BUFFER_SIZE;
*OS_IPC_HEAP_HIGH = dev_usb_hid5_buffer;
_start();
}
BSLUG_MUST_REPLACE(_start, my_start);
static void onDevGetVersion5(ios_ret_t ret, usr_t unused);
static void onDevUsbAttach5(ios_ret_t ret, usr_t vcount);
static void onDevUsbChange5(ios_ret_t ret, usr_t unused);
static void onDevUsbResume5(ios_ret_t ret, usr_t unused);
static void onDevUsbParams5(ios_ret_t ret, usr_t unused);
static int checkVersion5(ios_cb_t cb, usr_t data) {
return IOS_IoctlAsync(
dev_usb_hid_fd, DEV_USB_HID5_IOCTL_GET_VERSION,
NULL, 0,
dev_usb_hid5_buffer, 0x20,
cb, data
);
}
static int getDeviceChange5(ios_cb_t cb, usr_t data) {
return IOS_IoctlAsync(
dev_usb_hid_fd, DEV_USB_HID5_IOCTL_GET_DEVICE_CHANGE,
NULL, 0,
dev_usb_hid5_devices, sizeof(dev_usb_hid5_devices[0]) * DEV_USB_HID5_DEVICE_CHANGE_SIZE,
cb, data
);
}
static int sendAttach5(ios_cb_t cb, usr_t data) {
return IOS_IoctlAsync(
dev_usb_hid_fd, DEV_USB_HID5_IOCTL_ATTACH_FINISH,
NULL, 0,
NULL, 0,
cb, data
);
}
static int sendResume5(ios_cb_t cb, usr_t data) {
dev_usb_hid5_buffer[0] = gcn_adapter_id;
dev_usb_hid5_buffer[1] = 0;
dev_usb_hid5_buffer[2] = 1;
dev_usb_hid5_buffer[3] = 0;
dev_usb_hid5_buffer[4] = 0;
dev_usb_hid5_buffer[5] = 0;
dev_usb_hid5_buffer[6] = 0;
dev_usb_hid5_buffer[7] = 0;
return IOS_IoctlAsync(
dev_usb_hid_fd, DEV_USB_HID5_IOCTL_SET_RESUME,
dev_usb_hid5_buffer, 0x20,
NULL, 0,
cb, data
);
}
static int sendParams5(ios_cb_t cb, usr_t data) {
/* Assumes buffer still in state from sendResume5 */
return IOS_IoctlAsync(
dev_usb_hid_fd, DEV_USB_HID5_IOCTL_GET_DEVICE_PARAMETERS,
dev_usb_hid5_buffer, 0x20,
dev_usb_hid5_buffer + 8, 0x60,
cb, data
);
}
static int sendInit5(ios_cb_t cb, usr_t data) {
/* Assumes buffer already set up */
dev_usb_hid5_argv[0] = (ioctlv){dev_usb_hid5_buffer, 0x40};
dev_usb_hid5_argv[1] = (ioctlv){init_msg_buffer, sizeof(init_msg_buffer)};
return IOS_IoctlvAsync(
dev_usb_hid_fd, DEV_USB_HID5_IOCTL_INTERRUPT,
2, 0, dev_usb_hid5_argv,
cb, data
);
}
static int sendPoll5(ios_cb_t cb, usr_t data) {
/* Assumes buffer already set up */
dev_usb_hid5_poll_argv[0] = (ioctlv){dev_usb_hid5_buffer+0x10, 0x40};
dev_usb_hid5_poll_argv[1] = (ioctlv){poll_msg_buffer, WUP_028_POLL_SIZE};
return IOS_IoctlvAsync(
dev_usb_hid_fd, DEV_USB_HID5_IOCTL_INTERRUPT,
1, 1, dev_usb_hid5_poll_argv,
cb, data
);
}
static int sendRumble5(ios_cb_t cb, usr_t data) {
/* Assumes buffer already set up */
dev_usb_hid5_argv[0] = (ioctlv){dev_usb_hid5_buffer, 0x40};
dev_usb_hid5_argv[1] = (ioctlv){rumble_msg_buffer, sizeof(rumble_msg_buffer)};
return IOS_IoctlvAsync(
dev_usb_hid_fd, DEV_USB_HID5_IOCTL_INTERRUPT,
2, 0, dev_usb_hid5_argv,
cb, data
);
}
#endif
static void onError(void) {
dev_usb_hid_fd = -1;
IOS_CloseAsync(dev_usb_hid_fd, callbackIgnore, NULL);
}
/*============================================================================*/
/* Start of USB callback chain. Each method calls another as a callback after an
* IOS command. */
/*============================================================================*/
static void onDevOpen(ios_fd_t fd, usr_t unused) {
int ret;
(void)unused;
dev_usb_hid_fd = fd;
if (fd >= 0)
ret =
#if defined(SUPPORT_DEV_USB_HID4)
checkVersion4(onDevGetVersion4, NULL);
#elif defined(SUPPORT_DEV_USB_HID5)
checkVersion5(onDevGetVersion5, NULL);
#else
-1;
#endif
else
ret = fd;
if (ret) {
error = ret;
errorMethod = 1;
}
}
static void callbackIgnore(ios_ret_t ret, usr_t unused) {
(void)unused;
(void)ret;
}
#ifdef SUPPORT_DEV_USB_HID4
static void onDevGetVersion4(ios_ret_t ret, usr_t unused) {
(void)unused;
if (ret == DEV_USB_HID4_VERSION) {
#ifdef HAVE_VERSION
version = 4;
#endif
ret = getDeviceChange4(onDevUsbChange4, NULL);
} else
ret =
#ifdef SUPPORT_DEV_USB_HID5
checkVersion5(onDevGetVersion5, NULL);
#else
ret;
#endif
if (ret) {
error = ret;
errorMethod = 2;
onError();
}
}
#endif
#ifdef SUPPORT_DEV_USB_HID5
static void onDevGetVersion5(ios_ret_t ret, usr_t unused) {
(void)unused;
if (ret == 0 && dev_usb_hid5_buffer[0] == DEV_USB_HID5_VERSION) {
#ifdef HAVE_VERSION
version = 5;
#endif
ret = getDeviceChange5(onDevUsbChange5, NULL);
} else if (ret == 0)
ret = dev_usb_hid5_buffer[0];
if (ret) {
error = ret;
errorMethod = 3;
onError();
}
}
#endif
#ifdef SUPPORT_DEV_USB_HID4
static void onDevUsbChange4(ios_ret_t ret, usr_t unused) {
if (ret >= 0) {
int found = 0;
for (int i = 0; i < DEV_USB_HID4_DEVICE_CHANGE_SIZE && dev_usb_hid4_devices[i] < sizeof(dev_usb_hid4_devices); i += dev_usb_hid4_devices[i] / 4) {
uint32_t device_id = dev_usb_hid4_devices[i + 1];
if (
dev_usb_hid4_devices[i] == WUP_028_DESCRIPTOR_SIZE
&& dev_usb_hid4_devices[i + 4] == WUP_028_ID
) {
found = 1;
if (gcn_adapter_id != device_id) {
gcn_adapter_id = device_id;
sendInit4(onDevUsbInit, NULL);
}
break;
}
}
if (!found) gcn_adapter_id = (uint32_t)-1;
ret = getDeviceChange4(onDevUsbChange4, NULL);
}
if (ret) {
error = ret;
errorMethod = 5;
onError();
}
}
#endif
#ifdef SUPPORT_DEV_USB_HID5
static void onDevUsbChange5(ios_ret_t ret, usr_t unused) {
if (ret >= 0) {
ret = sendAttach5(onDevUsbAttach5, (usr_t)ret);
}
if (ret) {
error = ret;
errorMethod = 4;
onError();
}
}
#endif
#ifdef SUPPORT_DEV_USB_HID5
static void onDevUsbAttach5(ios_ret_t ret, usr_t vcount) {
if (ret == 0) {
int found = 0;
int count = (int)vcount;
for (int i = 0; i < DEV_USB_HID5_DEVICE_CHANGE_SIZE && i < count; i++) {
uint32_t device_id = dev_usb_hid5_devices[i].id;
if (dev_usb_hid5_devices[i].vid_pid == WUP_028_ID) {
found = 1;
if (gcn_adapter_id != device_id) {
gcn_adapter_id = device_id;
if (sendResume5(onDevUsbResume5, NULL))
found = 0;
}
break;
}
}
if (!found) gcn_adapter_id = (uint32_t)-1;
ret = getDeviceChange5(onDevUsbChange5, NULL);
}
if (ret) {
error = ret;
errorMethod = 5;
onError();
}
}
#endif
#ifdef SUPPORT_DEV_USB_HID5
static void onDevUsbResume5(ios_ret_t ret, usr_t unused) {
if (ret == 0) {
ret = sendParams5(onDevUsbParams5, NULL);
}
if (ret) {
error = ret;
errorMethod = 6;
gcn_adapter_id = -1;
}
}
#endif
#ifdef SUPPORT_DEV_USB_HID5
static void onDevUsbParams5(ios_ret_t ret, usr_t unused) {
if (ret == 0) {
/* 0-7 are already correct :) */
dev_usb_hid5_buffer[8] = 0;
dev_usb_hid5_buffer[9] = 0;
dev_usb_hid5_buffer[10] = 0;
dev_usb_hid5_buffer[11] = 0;
dev_usb_hid5_buffer[12] = 0;
dev_usb_hid5_buffer[13] = 0;
dev_usb_hid5_buffer[14] = 0;
dev_usb_hid5_buffer[15] = 0;
dev_usb_hid5_buffer[16] = gcn_adapter_id;
dev_usb_hid5_buffer[17] = 0;
dev_usb_hid5_buffer[18] = 0;
dev_usb_hid5_buffer[19] = 0;
dev_usb_hid5_buffer[20] = 0;
dev_usb_hid5_buffer[21] = 0;
dev_usb_hid5_buffer[22] = 0;
dev_usb_hid5_buffer[23] = 0;
dev_usb_hid5_buffer[24] = 0;
dev_usb_hid5_buffer[25] = 0;
dev_usb_hid5_buffer[26] = 0;
dev_usb_hid5_buffer[27] = 0;
dev_usb_hid5_buffer[28] = 0;
dev_usb_hid5_buffer[29] = 0;
dev_usb_hid5_buffer[30] = 0;
dev_usb_hid5_buffer[31] = 0;
ret = sendInit5(onDevUsbInit, NULL);
}
if (ret) {
error = ret;
errorMethod = 7;
gcn_adapter_id = -1;
}
}
#endif
static void onRumble(ios_ret_t ret, usr_t token) {
(void)ret;
uint32_t isr = cpu_isr_disable();
if ((usr_t)(uint32_t)rumble_token == token)
rumble_delay = 0;
cpu_isr_restore(isr);
}
static int sendPoll(void) {
if (rumble_sent != rumble_recv) {
uint32_t isr = cpu_isr_disable();
if (rumble_delay == 0) {
for (int i = 0; i < GCN_CONTROLLER_COUNT; i++)
rumble_msg_buffer[i + 1] = rumble_buffer[rumble_recv][i];
rumble_recv = (rumble_recv + 1) % RUMBLE_BUFFER;
rumble_delay = RUMBLE_DELAY;
rumble_token++;
} else
rumble_delay--;
cpu_isr_restore(isr);
#ifdef SUPPORT_DEV_USB_HID5
#ifdef HAVE_VERSION
if (version == 5)
#endif
sendRumble5(onRumble, (usr_t)(uint32_t)rumble_token);
#endif
#ifdef SUPPORT_DEV_USB_HID4
#ifdef HAVE_VERSION
if (version == 4)
#endif
sendRumble4(onRumble, (usr_t)(uint32_t)rumble_token);
#endif
}
#ifdef SUPPORT_DEV_USB_HID5
#ifdef HAVE_VERSION
if (version == 5)
#endif
return sendPoll5(onDevUsbPoll, NULL);
#endif
#ifdef SUPPORT_DEV_USB_HID4
#ifdef HAVE_VERSION
if (version == 4)
#endif
return sendPoll4(onDevUsbPoll, NULL);
#endif
return -1;
}
static void onDevUsbInit(ios_ret_t ret, usr_t unused) {
if (ret >= 0) {
ret = sendPoll();
}
if (ret) {
error = ret;
errorMethod = 8;
gcn_adapter_id = -1;
}
}
static void onDevUsbPoll(ios_ret_t ret, usr_t unused) {
if (ret >= 0) {
if (poll_msg_buffer[0] == 0x21) {
uint32_t isr = cpu_isr_disable();
for (int i = 0; i < GCN_CONTROLLER_COUNT; i++) {
uint8_t *data = poll_msg_buffer + (i * 9 + 1);
if ((data[0] >> 4) != 1 && (data[0] >> 4) != 2) {
gcn_data[i].error = PADData_ERROR_NO_CONNECTION;
continue;
}
gcn_data[i].buttons =
((data[1] >> 0) & 1 ? PADData_BUTTON_A : 0) |
((data[1] >> 1) & 1 ? PADData_BUTTON_B : 0) |
((data[1] >> 2) & 1 ? PADData_BUTTON_X : 0) |
((data[1] >> 3) & 1 ? PADData_BUTTON_Y : 0) |
((data[1] >> 4) & 1 ? PADData_BUTTON_DL : 0) |
((data[1] >> 5) & 1 ? PADData_BUTTON_DR : 0) |
((data[1] >> 6) & 1 ? PADData_BUTTON_DD : 0) |
((data[1] >> 7) & 1 ? PADData_BUTTON_DU : 0) |
((data[2] >> 0) & 1 ? PADData_BUTTON_S : 0) |
((data[2] >> 1) & 1 ? PADData_BUTTON_Z : 0) |
(data[7] >= GCN_TRIGGER_THRESHOLD ? PADData_BUTTON_L : 0) |
(data[8] >= GCN_TRIGGER_THRESHOLD ? PADData_BUTTON_R : 0);
gcn_data[i].aStickX = data[3] - 128;
gcn_data[i].aStickY = data[4] - 128;
gcn_data[i].cStickX = data[5] - 128;
gcn_data[i].cStickY = data[6] - 128;
gcn_data[i].sliderL = data[7];
gcn_data[i].sliderR = data[8];
gcn_data[i]._unknown8 = 0;
gcn_data[i]._unknown9 = 0;
gcn_data[i].error = 0;
}
gcn_data_written = mftb();
cpu_isr_restore(isr);
}
ret = sendPoll();
}
if (ret) {
error = ret;
errorMethod = 9;
gcn_adapter_id = -1;
}
}