#include #include #include #include #include #include #include "util.h" #include "usart1.h" #include "usb.h" #include "gamepads.h" #include "bootloader.h" #include "gcn64_protocol.h" #include "n64.h" #include "gamecube.h" #include "usbpad.h" #include "eeprom.h" #include "hiddata.h" #include "usbstrings.h" #include "intervaltimer.h" /* Those .c files are included rather than linked for we * want the sizeof() operator to work on the arrays */ #include "reportdesc.c" #include "dataHidReport.c" struct cfg0 { struct usb_configuration_descriptor configdesc; struct usb_interface_descriptor interface; struct usb_hid_descriptor hid; struct usb_endpoint_descriptor ep1_in; struct usb_interface_descriptor interface_admin; struct usb_hid_descriptor hid_data; struct usb_endpoint_descriptor ep2_in; }; static const struct cfg0 cfg0 PROGMEM = { .configdesc = { .bLength = sizeof(struct usb_configuration_descriptor), .bDescriptorType = CONFIGURATION_DESCRIPTOR, .wTotalLength = sizeof(cfg0), // includes all descriptors returned together .bNumInterfaces = 2, .bConfigurationValue = 1, .bmAttributes = CFG_DESC_ATTR_RESERVED, // set Self-powred and remote-wakeup here if needed. .bMaxPower = 25, // for 50mA }, // Main interface, HID .interface = { .bLength = sizeof(struct usb_interface_descriptor), .bDescriptorType = INTERFACE_DESCRIPTOR, .bInterfaceNumber = 0, .bAlternateSetting = 0, .bNumEndpoints = 1, .bInterfaceClass = USB_DEVICE_CLASS_HID, .bInterfaceSubClass = HID_SUBCLASS_NONE, .bInterfaceProtocol = HID_PROTOCOL_NONE, }, .hid = { .bLength = sizeof(struct usb_hid_descriptor), .bDescriptorType = HID_DESCRIPTOR, .bcdHid = 0x0101, .bCountryCode = HID_COUNTRY_NOT_SUPPORTED, .bNumDescriptors = 1, // Only a report descriptor .bClassDescriptorType = REPORT_DESCRIPTOR, .wClassDescriptorLength = sizeof(gcn64_usbHidReportDescriptor), }, .ep1_in = { .bLength = sizeof(struct usb_endpoint_descriptor), .bDescriptorType = ENDPOINT_DESCRIPTOR, .bEndpointAddress = USB_RQT_DEVICE_TO_HOST | 1, // 0x81 .bmAttributes = TRANSFER_TYPE_INT, .wMaxPacketsize = 64, .bInterval = LS_FS_INTERVAL_MS(1), }, // Second HID interface for config and update .interface_admin = { .bLength = sizeof(struct usb_interface_descriptor), .bDescriptorType = INTERFACE_DESCRIPTOR, .bInterfaceNumber = 1, .bAlternateSetting = 0, .bNumEndpoints = 1, .bInterfaceClass = USB_DEVICE_CLASS_HID, .bInterfaceSubClass = HID_SUBCLASS_NONE, .bInterfaceProtocol = HID_PROTOCOL_NONE, }, .hid_data = { .bLength = sizeof(struct usb_hid_descriptor), .bDescriptorType = HID_DESCRIPTOR, .bcdHid = 0x0101, .bCountryCode = HID_COUNTRY_NOT_SUPPORTED, .bNumDescriptors = 1, // Only a report descriptor .bClassDescriptorType = REPORT_DESCRIPTOR, .wClassDescriptorLength = sizeof(dataHidReport), }, .ep2_in = { .bLength = sizeof(struct usb_endpoint_descriptor), .bDescriptorType = ENDPOINT_DESCRIPTOR, .bEndpointAddress = USB_RQT_DEVICE_TO_HOST | 2, // 0x82 .bmAttributes = TRANSFER_TYPE_INT, .wMaxPacketsize = 64, .bInterval = LS_FS_INTERVAL_MS(1), }, }; const struct usb_device_descriptor device_descriptor PROGMEM = { .bLength = sizeof(struct usb_device_descriptor), .bDescriptorType = DEVICE_DESCRIPTOR, .bcdUSB = 0x0101, .bDeviceClass = 0, // set at interface .bDeviceSubClass = 0, // set at interface .bDeviceProtocol = 0, .bMaxPacketSize = 64, .idVendor = 0x289B, .idProduct = 0x0017, .bcdDevice = 0x0300, // 1.0.0 .bNumConfigurations = 1, .iManufacturer = 1, .iProduct = 2, .iSerialNumber = 3, }; /** **/ static struct usb_parameters usb_params = { .flags = USB_PARAM_FLAG_CONFDESC_PROGMEM | USB_PARAM_FLAG_DEVDESC_PROGMEM | USB_PARAM_FLAG_REPORTDESC_PROGMEM, .devdesc = (PGM_VOID_P)&device_descriptor, .configdesc = (PGM_VOID_P)&cfg0, .configdesc_ttllen = sizeof(cfg0), .num_strings = NUM_USB_STRINGS, .strings = g_usb_strings, .n_hid_interfaces = 2, .hid_params = { [0] = { .reportdesc = gcn64_usbHidReportDescriptor, .reportdesc_len = sizeof(gcn64_usbHidReportDescriptor), .getReport = usbpad_hid_get_report, .setReport = usbpad_hid_set_report, }, [1] = { .reportdesc = dataHidReport, .reportdesc_len = sizeof(dataHidReport), .getReport = hiddata_get_report, .setReport = hiddata_set_report, }, }, }; void hwinit(void) { /* PORTB * * 7: NC Output low * 6: NC Output low * 5: NC Output low * 4: NC Output low * 3: MISO Output low * 2: MOSI Output low * 1: SCK Output low * 0: NC Output low */ PORTB = 0x00; DDRB = 0xFF; /* PORTC * * 7: NC Output low * 6: NC Output low * 5: NC Output low * 4: NC Output low * 3: (no such pin) * 2: NC Output low * 1: RESET (N/A: Reset input per fuses) * 0: XTAL2 (N/A: Crystal oscillator) */ PORTB = 0x00; DDRB = 0xff; /* PORTD * * 7: HWB Input (external pull-up) * 6: NC Output low * 5: NC Output low * 4: NC Output low * 3: IO3_MCU Input * 2: IO2_MCU Input * 1: IO1_MCU Input * 0: IO0_MCU Input */ PORTD = 0x00; DDRD = 0x70; // System clock. External crystal is 16 Mhz and we want // to run at max. speed. CLKPR = 0x80; CLKPR = 0x0; // Division factor of 1 PRR0 = 0; PRR1 = 0; } #define NUM_PAD_TYPES 2 Gamepad *detectPad(void) { char type; type = gcn64_detectController(); switch (type) { case CONTROLLER_IS_ABSENT: case CONTROLLER_IS_UNKNOWN: return NULL; case CONTROLLER_IS_N64: return n64GetGamepad(); break; case CONTROLLER_IS_GC: return gamecubeGetGamepad(); } return NULL; } /* Called after eeprom content is loaded. */ void eeprom_app_ready(void) { static wchar_t serial_from_eeprom[SERIAL_NUM_LEN+1]; int i; for (i=0; iupdate(); if (pad->changed()) { pad->getReport(&pad_data); usbpad_update(&pad_data); state = STATE_WAIT_INTERRUPT_READY; } } else { /* Just make sure the gamepad state holds valid data * to appear inactive (no buttons and axes in neutral) */ usbpad_update(NULL); } break; case STATE_WAIT_INTERRUPT_READY: if (usb_interruptReady()) { state = STATE_TRANSMIT; } break; case STATE_TRANSMIT: usb_interruptSend(usbpad_getReportBuffer(), usbpad_getReportSize()); state = STATE_WAIT_POLLTIME; break; } gamepad_vibrate = usbpad_mustVibrate(); if (last_v != gamepad_vibrate) { if (pad && pad->setVibration) { pad->setVibration(gamepad_vibrate); } last_v = gamepad_vibrate; } } return 0; }