I changed one line of code in the file with path name: USBDeviceHT/targets/TARGET_Maxim
Fork of USBDeviceHT by
targets/TARGET_STM/USBHAL_STM32F4.cpp@0:a3ea811f80f2, 2018-02-05 (annotated)
- Committer:
- Helmut64
- Date:
- Mon Feb 05 10:22:57 2018 +0000
- Revision:
- 0:a3ea811f80f2
- Child:
- 2:195554780c9b
Inital checkin after copied from mbed.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Helmut64 | 0:a3ea811f80f2 | 1 | /* Copyright (c) 2010-2011 mbed.org, MIT License |
Helmut64 | 0:a3ea811f80f2 | 2 | * |
Helmut64 | 0:a3ea811f80f2 | 3 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software |
Helmut64 | 0:a3ea811f80f2 | 4 | * and associated documentation files (the "Software"), to deal in the Software without |
Helmut64 | 0:a3ea811f80f2 | 5 | * restriction, including without limitation the rights to use, copy, modify, merge, publish, |
Helmut64 | 0:a3ea811f80f2 | 6 | * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the |
Helmut64 | 0:a3ea811f80f2 | 7 | * Software is furnished to do so, subject to the following conditions: |
Helmut64 | 0:a3ea811f80f2 | 8 | * |
Helmut64 | 0:a3ea811f80f2 | 9 | * The above copyright notice and this permission notice shall be included in all copies or |
Helmut64 | 0:a3ea811f80f2 | 10 | * substantial portions of the Software. |
Helmut64 | 0:a3ea811f80f2 | 11 | * |
Helmut64 | 0:a3ea811f80f2 | 12 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING |
Helmut64 | 0:a3ea811f80f2 | 13 | * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
Helmut64 | 0:a3ea811f80f2 | 14 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
Helmut64 | 0:a3ea811f80f2 | 15 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
Helmut64 | 0:a3ea811f80f2 | 16 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
Helmut64 | 0:a3ea811f80f2 | 17 | */ |
Helmut64 | 0:a3ea811f80f2 | 18 | |
Helmut64 | 0:a3ea811f80f2 | 19 | #if defined(TARGET_STM32F4) && !defined(USB_STM_HAL) |
Helmut64 | 0:a3ea811f80f2 | 20 | |
Helmut64 | 0:a3ea811f80f2 | 21 | #include "USBHAL.h" |
Helmut64 | 0:a3ea811f80f2 | 22 | #include "USBRegs_STM32.h" |
Helmut64 | 0:a3ea811f80f2 | 23 | #include "pinmap.h" |
Helmut64 | 0:a3ea811f80f2 | 24 | |
Helmut64 | 0:a3ea811f80f2 | 25 | USBHAL * USBHAL::instance; |
Helmut64 | 0:a3ea811f80f2 | 26 | |
Helmut64 | 0:a3ea811f80f2 | 27 | static volatile int epComplete = 0; |
Helmut64 | 0:a3ea811f80f2 | 28 | |
Helmut64 | 0:a3ea811f80f2 | 29 | static uint32_t bufferEnd = 0; |
Helmut64 | 0:a3ea811f80f2 | 30 | static const uint32_t rxFifoSize = 512; |
Helmut64 | 0:a3ea811f80f2 | 31 | static uint32_t rxFifoCount = 0; |
Helmut64 | 0:a3ea811f80f2 | 32 | |
Helmut64 | 0:a3ea811f80f2 | 33 | static uint32_t setupBuffer[MAX_PACKET_SIZE_EP0 >> 2]; |
Helmut64 | 0:a3ea811f80f2 | 34 | |
Helmut64 | 0:a3ea811f80f2 | 35 | uint32_t USBHAL::endpointReadcore(uint8_t endpoint, uint8_t *buffer) { |
Helmut64 | 0:a3ea811f80f2 | 36 | return 0; |
Helmut64 | 0:a3ea811f80f2 | 37 | } |
Helmut64 | 0:a3ea811f80f2 | 38 | |
Helmut64 | 0:a3ea811f80f2 | 39 | USBHAL::USBHAL(void) { |
Helmut64 | 0:a3ea811f80f2 | 40 | NVIC_DisableIRQ(OTG_FS_IRQn); |
Helmut64 | 0:a3ea811f80f2 | 41 | epCallback[0] = &USBHAL::EP1_OUT_callback; |
Helmut64 | 0:a3ea811f80f2 | 42 | epCallback[1] = &USBHAL::EP1_IN_callback; |
Helmut64 | 0:a3ea811f80f2 | 43 | epCallback[2] = &USBHAL::EP2_OUT_callback; |
Helmut64 | 0:a3ea811f80f2 | 44 | epCallback[3] = &USBHAL::EP2_IN_callback; |
Helmut64 | 0:a3ea811f80f2 | 45 | epCallback[4] = &USBHAL::EP3_OUT_callback; |
Helmut64 | 0:a3ea811f80f2 | 46 | epCallback[5] = &USBHAL::EP3_IN_callback; |
Helmut64 | 0:a3ea811f80f2 | 47 | |
Helmut64 | 0:a3ea811f80f2 | 48 | // Enable power and clocking |
Helmut64 | 0:a3ea811f80f2 | 49 | RCC->AHB1ENR |= RCC_AHB1ENR_GPIOAEN; |
Helmut64 | 0:a3ea811f80f2 | 50 | |
Helmut64 | 0:a3ea811f80f2 | 51 | #if defined(TARGET_STM32F407VG) || defined(TARGET_STM32F401RE) || defined(TARGET_STM32F411RE) || defined(TARGET_STM32F412ZG) || defined(TARGET_STM32F429ZI) |
Helmut64 | 0:a3ea811f80f2 | 52 | pin_function(PA_8, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF10_OTG_FS)); |
Helmut64 | 0:a3ea811f80f2 | 53 | pin_function(PA_9, STM_PIN_DATA(STM_MODE_INPUT, GPIO_PULLDOWN, GPIO_AF10_OTG_FS)); |
Helmut64 | 0:a3ea811f80f2 | 54 | pin_function(PA_10, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_PULLUP, GPIO_AF10_OTG_FS)); |
Helmut64 | 0:a3ea811f80f2 | 55 | pin_function(PA_11, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF10_OTG_FS)); |
Helmut64 | 0:a3ea811f80f2 | 56 | pin_function(PA_12, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF10_OTG_FS)); |
Helmut64 | 0:a3ea811f80f2 | 57 | #else |
Helmut64 | 0:a3ea811f80f2 | 58 | pin_function(PA_8, STM_PIN_DATA(2, 10)); |
Helmut64 | 0:a3ea811f80f2 | 59 | pin_function(PA_9, STM_PIN_DATA(0, 0)); |
Helmut64 | 0:a3ea811f80f2 | 60 | pin_function(PA_10, STM_PIN_DATA(2, 10)); |
Helmut64 | 0:a3ea811f80f2 | 61 | pin_function(PA_11, STM_PIN_DATA(2, 10)); |
Helmut64 | 0:a3ea811f80f2 | 62 | pin_function(PA_12, STM_PIN_DATA(2, 10)); |
Helmut64 | 0:a3ea811f80f2 | 63 | |
Helmut64 | 0:a3ea811f80f2 | 64 | // Set ID pin to open drain with pull-up resistor |
Helmut64 | 0:a3ea811f80f2 | 65 | pin_mode(PA_10, OpenDrain); |
Helmut64 | 0:a3ea811f80f2 | 66 | GPIOA->PUPDR &= ~(0x3 << 20); |
Helmut64 | 0:a3ea811f80f2 | 67 | GPIOA->PUPDR |= 1 << 20; |
Helmut64 | 0:a3ea811f80f2 | 68 | |
Helmut64 | 0:a3ea811f80f2 | 69 | // Set VBUS pin to open drain |
Helmut64 | 0:a3ea811f80f2 | 70 | pin_mode(PA_9, OpenDrain); |
Helmut64 | 0:a3ea811f80f2 | 71 | #endif |
Helmut64 | 0:a3ea811f80f2 | 72 | |
Helmut64 | 0:a3ea811f80f2 | 73 | RCC->AHB2ENR |= RCC_AHB2ENR_OTGFSEN; |
Helmut64 | 0:a3ea811f80f2 | 74 | |
Helmut64 | 0:a3ea811f80f2 | 75 | // Enable interrupts |
Helmut64 | 0:a3ea811f80f2 | 76 | OTG_FS->GREGS.GAHBCFG |= (1 << 0); |
Helmut64 | 0:a3ea811f80f2 | 77 | |
Helmut64 | 0:a3ea811f80f2 | 78 | // Turnaround time to maximum value - too small causes packet loss |
Helmut64 | 0:a3ea811f80f2 | 79 | OTG_FS->GREGS.GUSBCFG |= (0xF << 10); |
Helmut64 | 0:a3ea811f80f2 | 80 | |
Helmut64 | 0:a3ea811f80f2 | 81 | // Unmask global interrupts |
Helmut64 | 0:a3ea811f80f2 | 82 | OTG_FS->GREGS.GINTMSK |= (1 << 3) | // SOF |
Helmut64 | 0:a3ea811f80f2 | 83 | (1 << 4) | // RX FIFO not empty |
Helmut64 | 0:a3ea811f80f2 | 84 | (1 << 12); // USB reset |
Helmut64 | 0:a3ea811f80f2 | 85 | |
Helmut64 | 0:a3ea811f80f2 | 86 | OTG_FS->DREGS.DCFG |= (0x3 << 0) | // Full speed |
Helmut64 | 0:a3ea811f80f2 | 87 | (1 << 2); // Non-zero-length status OUT handshake |
Helmut64 | 0:a3ea811f80f2 | 88 | |
Helmut64 | 0:a3ea811f80f2 | 89 | OTG_FS->GREGS.GCCFG |= (1 << 19) | // Enable VBUS sensing |
Helmut64 | 0:a3ea811f80f2 | 90 | (1 << 16); // Power Up |
Helmut64 | 0:a3ea811f80f2 | 91 | |
Helmut64 | 0:a3ea811f80f2 | 92 | instance = this; |
Helmut64 | 0:a3ea811f80f2 | 93 | NVIC_SetVector(OTG_FS_IRQn, (uint32_t)&_usbisr); |
Helmut64 | 0:a3ea811f80f2 | 94 | NVIC_SetPriority(OTG_FS_IRQn, 1); |
Helmut64 | 0:a3ea811f80f2 | 95 | } |
Helmut64 | 0:a3ea811f80f2 | 96 | |
Helmut64 | 0:a3ea811f80f2 | 97 | USBHAL::~USBHAL(void) { |
Helmut64 | 0:a3ea811f80f2 | 98 | } |
Helmut64 | 0:a3ea811f80f2 | 99 | |
Helmut64 | 0:a3ea811f80f2 | 100 | void USBHAL::connect(void) { |
Helmut64 | 0:a3ea811f80f2 | 101 | NVIC_EnableIRQ(OTG_FS_IRQn); |
Helmut64 | 0:a3ea811f80f2 | 102 | } |
Helmut64 | 0:a3ea811f80f2 | 103 | |
Helmut64 | 0:a3ea811f80f2 | 104 | void USBHAL::disconnect(void) { |
Helmut64 | 0:a3ea811f80f2 | 105 | NVIC_DisableIRQ(OTG_FS_IRQn); |
Helmut64 | 0:a3ea811f80f2 | 106 | } |
Helmut64 | 0:a3ea811f80f2 | 107 | |
Helmut64 | 0:a3ea811f80f2 | 108 | void USBHAL::configureDevice(void) { |
Helmut64 | 0:a3ea811f80f2 | 109 | // Not needed |
Helmut64 | 0:a3ea811f80f2 | 110 | } |
Helmut64 | 0:a3ea811f80f2 | 111 | |
Helmut64 | 0:a3ea811f80f2 | 112 | void USBHAL::unconfigureDevice(void) { |
Helmut64 | 0:a3ea811f80f2 | 113 | // Not needed |
Helmut64 | 0:a3ea811f80f2 | 114 | } |
Helmut64 | 0:a3ea811f80f2 | 115 | |
Helmut64 | 0:a3ea811f80f2 | 116 | void USBHAL::setAddress(uint8_t address) { |
Helmut64 | 0:a3ea811f80f2 | 117 | OTG_FS->DREGS.DCFG |= (address << 4); |
Helmut64 | 0:a3ea811f80f2 | 118 | EP0write(0, 0); |
Helmut64 | 0:a3ea811f80f2 | 119 | } |
Helmut64 | 0:a3ea811f80f2 | 120 | |
Helmut64 | 0:a3ea811f80f2 | 121 | bool USBHAL::realiseEndpoint(uint8_t endpoint, uint32_t maxPacket, |
Helmut64 | 0:a3ea811f80f2 | 122 | uint32_t flags) { |
Helmut64 | 0:a3ea811f80f2 | 123 | uint32_t epIndex = endpoint >> 1; |
Helmut64 | 0:a3ea811f80f2 | 124 | |
Helmut64 | 0:a3ea811f80f2 | 125 | uint32_t type; |
Helmut64 | 0:a3ea811f80f2 | 126 | switch (endpoint) { |
Helmut64 | 0:a3ea811f80f2 | 127 | case EP0IN: |
Helmut64 | 0:a3ea811f80f2 | 128 | case EP0OUT: |
Helmut64 | 0:a3ea811f80f2 | 129 | type = 0; |
Helmut64 | 0:a3ea811f80f2 | 130 | break; |
Helmut64 | 0:a3ea811f80f2 | 131 | case EPISO_IN: |
Helmut64 | 0:a3ea811f80f2 | 132 | case EPISO_OUT: |
Helmut64 | 0:a3ea811f80f2 | 133 | type = 1; |
Helmut64 | 0:a3ea811f80f2 | 134 | case EPBULK_IN: |
Helmut64 | 0:a3ea811f80f2 | 135 | case EPBULK_OUT: |
Helmut64 | 0:a3ea811f80f2 | 136 | type = 2; |
Helmut64 | 0:a3ea811f80f2 | 137 | break; |
Helmut64 | 0:a3ea811f80f2 | 138 | case EPINT_IN: |
Helmut64 | 0:a3ea811f80f2 | 139 | case EPINT_OUT: |
Helmut64 | 0:a3ea811f80f2 | 140 | type = 3; |
Helmut64 | 0:a3ea811f80f2 | 141 | break; |
Helmut64 | 0:a3ea811f80f2 | 142 | } |
Helmut64 | 0:a3ea811f80f2 | 143 | |
Helmut64 | 0:a3ea811f80f2 | 144 | // Generic in or out EP controls |
Helmut64 | 0:a3ea811f80f2 | 145 | uint32_t control = (maxPacket << 0) | // Packet size |
Helmut64 | 0:a3ea811f80f2 | 146 | (1 << 15) | // Active endpoint |
Helmut64 | 0:a3ea811f80f2 | 147 | (type << 18); // Endpoint type |
Helmut64 | 0:a3ea811f80f2 | 148 | |
Helmut64 | 0:a3ea811f80f2 | 149 | if (endpoint & 0x1) { // In Endpoint |
Helmut64 | 0:a3ea811f80f2 | 150 | // Set up the Tx FIFO |
Helmut64 | 0:a3ea811f80f2 | 151 | if (endpoint == EP0IN) { |
Helmut64 | 0:a3ea811f80f2 | 152 | OTG_FS->GREGS.DIEPTXF0_HNPTXFSIZ = ((maxPacket >> 2) << 16) | |
Helmut64 | 0:a3ea811f80f2 | 153 | (bufferEnd << 0); |
Helmut64 | 0:a3ea811f80f2 | 154 | } |
Helmut64 | 0:a3ea811f80f2 | 155 | else { |
Helmut64 | 0:a3ea811f80f2 | 156 | OTG_FS->GREGS.DIEPTXF[epIndex - 1] = ((maxPacket >> 2) << 16) | |
Helmut64 | 0:a3ea811f80f2 | 157 | (bufferEnd << 0); |
Helmut64 | 0:a3ea811f80f2 | 158 | } |
Helmut64 | 0:a3ea811f80f2 | 159 | bufferEnd += maxPacket >> 2; |
Helmut64 | 0:a3ea811f80f2 | 160 | |
Helmut64 | 0:a3ea811f80f2 | 161 | // Set the In EP specific control settings |
Helmut64 | 0:a3ea811f80f2 | 162 | if (endpoint != EP0IN) { |
Helmut64 | 0:a3ea811f80f2 | 163 | control |= (1 << 28); // SD0PID |
Helmut64 | 0:a3ea811f80f2 | 164 | } |
Helmut64 | 0:a3ea811f80f2 | 165 | |
Helmut64 | 0:a3ea811f80f2 | 166 | control |= (epIndex << 22) | // TxFIFO index |
Helmut64 | 0:a3ea811f80f2 | 167 | (1 << 27); // SNAK |
Helmut64 | 0:a3ea811f80f2 | 168 | OTG_FS->INEP_REGS[epIndex].DIEPCTL = control; |
Helmut64 | 0:a3ea811f80f2 | 169 | |
Helmut64 | 0:a3ea811f80f2 | 170 | // Unmask the interrupt |
Helmut64 | 0:a3ea811f80f2 | 171 | OTG_FS->DREGS.DAINTMSK |= (1 << epIndex); |
Helmut64 | 0:a3ea811f80f2 | 172 | } |
Helmut64 | 0:a3ea811f80f2 | 173 | else { // Out endpoint |
Helmut64 | 0:a3ea811f80f2 | 174 | // Set the out EP specific control settings |
Helmut64 | 0:a3ea811f80f2 | 175 | control |= (1 << 26); // CNAK |
Helmut64 | 0:a3ea811f80f2 | 176 | OTG_FS->OUTEP_REGS[epIndex].DOEPCTL = control; |
Helmut64 | 0:a3ea811f80f2 | 177 | |
Helmut64 | 0:a3ea811f80f2 | 178 | // Unmask the interrupt |
Helmut64 | 0:a3ea811f80f2 | 179 | OTG_FS->DREGS.DAINTMSK |= (1 << (epIndex + 16)); |
Helmut64 | 0:a3ea811f80f2 | 180 | } |
Helmut64 | 0:a3ea811f80f2 | 181 | return true; |
Helmut64 | 0:a3ea811f80f2 | 182 | } |
Helmut64 | 0:a3ea811f80f2 | 183 | |
Helmut64 | 0:a3ea811f80f2 | 184 | // read setup packet |
Helmut64 | 0:a3ea811f80f2 | 185 | void USBHAL::EP0setup(uint8_t *buffer) { |
Helmut64 | 0:a3ea811f80f2 | 186 | memcpy(buffer, setupBuffer, MAX_PACKET_SIZE_EP0); |
Helmut64 | 0:a3ea811f80f2 | 187 | } |
Helmut64 | 0:a3ea811f80f2 | 188 | |
Helmut64 | 0:a3ea811f80f2 | 189 | void USBHAL::EP0readStage(void) { |
Helmut64 | 0:a3ea811f80f2 | 190 | } |
Helmut64 | 0:a3ea811f80f2 | 191 | |
Helmut64 | 0:a3ea811f80f2 | 192 | void USBHAL::EP0read(void) { |
Helmut64 | 0:a3ea811f80f2 | 193 | } |
Helmut64 | 0:a3ea811f80f2 | 194 | |
Helmut64 | 0:a3ea811f80f2 | 195 | uint32_t USBHAL::EP0getReadResult(uint8_t *buffer) { |
Helmut64 | 0:a3ea811f80f2 | 196 | uint32_t* buffer32 = (uint32_t *) buffer; |
Helmut64 | 0:a3ea811f80f2 | 197 | uint32_t length = rxFifoCount; |
Helmut64 | 0:a3ea811f80f2 | 198 | for (uint32_t i = 0; i < length; i += 4) { |
Helmut64 | 0:a3ea811f80f2 | 199 | buffer32[i >> 2] = OTG_FS->FIFO[0][0]; |
Helmut64 | 0:a3ea811f80f2 | 200 | } |
Helmut64 | 0:a3ea811f80f2 | 201 | |
Helmut64 | 0:a3ea811f80f2 | 202 | rxFifoCount = 0; |
Helmut64 | 0:a3ea811f80f2 | 203 | return length; |
Helmut64 | 0:a3ea811f80f2 | 204 | } |
Helmut64 | 0:a3ea811f80f2 | 205 | |
Helmut64 | 0:a3ea811f80f2 | 206 | void USBHAL::EP0write(uint8_t *buffer, uint32_t size) { |
Helmut64 | 0:a3ea811f80f2 | 207 | endpointWrite(0, buffer, size); |
Helmut64 | 0:a3ea811f80f2 | 208 | } |
Helmut64 | 0:a3ea811f80f2 | 209 | |
Helmut64 | 0:a3ea811f80f2 | 210 | void USBHAL::EP0getWriteResult(void) { |
Helmut64 | 0:a3ea811f80f2 | 211 | } |
Helmut64 | 0:a3ea811f80f2 | 212 | |
Helmut64 | 0:a3ea811f80f2 | 213 | void USBHAL::EP0stall(void) { |
Helmut64 | 0:a3ea811f80f2 | 214 | // If we stall the out endpoint here then we have problems transferring |
Helmut64 | 0:a3ea811f80f2 | 215 | // and setup requests after the (stalled) get device qualifier requests. |
Helmut64 | 0:a3ea811f80f2 | 216 | // TODO: Find out if this is correct behavior, or whether we are doing |
Helmut64 | 0:a3ea811f80f2 | 217 | // something else wrong |
Helmut64 | 0:a3ea811f80f2 | 218 | stallEndpoint(EP0IN); |
Helmut64 | 0:a3ea811f80f2 | 219 | // stallEndpoint(EP0OUT); |
Helmut64 | 0:a3ea811f80f2 | 220 | } |
Helmut64 | 0:a3ea811f80f2 | 221 | |
Helmut64 | 0:a3ea811f80f2 | 222 | EP_STATUS USBHAL::endpointRead(uint8_t endpoint, uint32_t maximumSize) { |
Helmut64 | 0:a3ea811f80f2 | 223 | uint32_t epIndex = endpoint >> 1; |
Helmut64 | 0:a3ea811f80f2 | 224 | uint32_t size = (1 << 19) | // 1 packet |
Helmut64 | 0:a3ea811f80f2 | 225 | (maximumSize << 0); // Packet size |
Helmut64 | 0:a3ea811f80f2 | 226 | // if (endpoint == EP0OUT) { |
Helmut64 | 0:a3ea811f80f2 | 227 | size |= (1 << 29); // 1 setup packet |
Helmut64 | 0:a3ea811f80f2 | 228 | // } |
Helmut64 | 0:a3ea811f80f2 | 229 | OTG_FS->OUTEP_REGS[epIndex].DOEPTSIZ = size; |
Helmut64 | 0:a3ea811f80f2 | 230 | OTG_FS->OUTEP_REGS[epIndex].DOEPCTL |= (1 << 31) | // Enable endpoint |
Helmut64 | 0:a3ea811f80f2 | 231 | (1 << 26); // Clear NAK |
Helmut64 | 0:a3ea811f80f2 | 232 | |
Helmut64 | 0:a3ea811f80f2 | 233 | epComplete &= ~(1 << endpoint); |
Helmut64 | 0:a3ea811f80f2 | 234 | return EP_PENDING; |
Helmut64 | 0:a3ea811f80f2 | 235 | } |
Helmut64 | 0:a3ea811f80f2 | 236 | |
Helmut64 | 0:a3ea811f80f2 | 237 | EP_STATUS USBHAL::endpointReadResult(uint8_t endpoint, uint8_t * buffer, uint32_t *bytesRead) { |
Helmut64 | 0:a3ea811f80f2 | 238 | if (!(epComplete & (1 << endpoint))) { |
Helmut64 | 0:a3ea811f80f2 | 239 | return EP_PENDING; |
Helmut64 | 0:a3ea811f80f2 | 240 | } |
Helmut64 | 0:a3ea811f80f2 | 241 | |
Helmut64 | 0:a3ea811f80f2 | 242 | uint32_t* buffer32 = (uint32_t *) buffer; |
Helmut64 | 0:a3ea811f80f2 | 243 | uint32_t length = rxFifoCount; |
Helmut64 | 0:a3ea811f80f2 | 244 | for (uint32_t i = 0; i < length; i += 4) { |
Helmut64 | 0:a3ea811f80f2 | 245 | buffer32[i >> 2] = OTG_FS->FIFO[endpoint >> 1][0]; |
Helmut64 | 0:a3ea811f80f2 | 246 | } |
Helmut64 | 0:a3ea811f80f2 | 247 | rxFifoCount = 0; |
Helmut64 | 0:a3ea811f80f2 | 248 | *bytesRead = length; |
Helmut64 | 0:a3ea811f80f2 | 249 | return EP_COMPLETED; |
Helmut64 | 0:a3ea811f80f2 | 250 | } |
Helmut64 | 0:a3ea811f80f2 | 251 | |
Helmut64 | 0:a3ea811f80f2 | 252 | EP_STATUS USBHAL::endpointWrite(uint8_t endpoint, uint8_t *data, uint32_t size) { |
Helmut64 | 0:a3ea811f80f2 | 253 | uint32_t epIndex = endpoint >> 1; |
Helmut64 | 0:a3ea811f80f2 | 254 | OTG_FS->INEP_REGS[epIndex].DIEPTSIZ = (1 << 19) | // 1 packet |
Helmut64 | 0:a3ea811f80f2 | 255 | (size << 0); // Size of packet |
Helmut64 | 0:a3ea811f80f2 | 256 | OTG_FS->INEP_REGS[epIndex].DIEPCTL |= (1 << 31) | // Enable endpoint |
Helmut64 | 0:a3ea811f80f2 | 257 | (1 << 26); // CNAK |
Helmut64 | 0:a3ea811f80f2 | 258 | OTG_FS->DREGS.DIEPEMPMSK = (1 << epIndex); |
Helmut64 | 0:a3ea811f80f2 | 259 | |
Helmut64 | 0:a3ea811f80f2 | 260 | while ((OTG_FS->INEP_REGS[epIndex].DTXFSTS & 0XFFFF) < ((size + 3) >> 2)); |
Helmut64 | 0:a3ea811f80f2 | 261 | |
Helmut64 | 0:a3ea811f80f2 | 262 | for (uint32_t i=0; i<(size + 3) >> 2; i++, data+=4) { |
Helmut64 | 0:a3ea811f80f2 | 263 | OTG_FS->FIFO[epIndex][0] = *(uint32_t *)data; |
Helmut64 | 0:a3ea811f80f2 | 264 | } |
Helmut64 | 0:a3ea811f80f2 | 265 | |
Helmut64 | 0:a3ea811f80f2 | 266 | epComplete &= ~(1 << endpoint); |
Helmut64 | 0:a3ea811f80f2 | 267 | |
Helmut64 | 0:a3ea811f80f2 | 268 | return EP_PENDING; |
Helmut64 | 0:a3ea811f80f2 | 269 | } |
Helmut64 | 0:a3ea811f80f2 | 270 | |
Helmut64 | 0:a3ea811f80f2 | 271 | EP_STATUS USBHAL::endpointWriteResult(uint8_t endpoint) { |
Helmut64 | 0:a3ea811f80f2 | 272 | if (epComplete & (1 << endpoint)) { |
Helmut64 | 0:a3ea811f80f2 | 273 | epComplete &= ~(1 << endpoint); |
Helmut64 | 0:a3ea811f80f2 | 274 | return EP_COMPLETED; |
Helmut64 | 0:a3ea811f80f2 | 275 | } |
Helmut64 | 0:a3ea811f80f2 | 276 | |
Helmut64 | 0:a3ea811f80f2 | 277 | return EP_PENDING; |
Helmut64 | 0:a3ea811f80f2 | 278 | } |
Helmut64 | 0:a3ea811f80f2 | 279 | |
Helmut64 | 0:a3ea811f80f2 | 280 | void USBHAL::stallEndpoint(uint8_t endpoint) { |
Helmut64 | 0:a3ea811f80f2 | 281 | if (endpoint & 0x1) { // In EP |
Helmut64 | 0:a3ea811f80f2 | 282 | OTG_FS->INEP_REGS[endpoint >> 1].DIEPCTL |= (1 << 30) | // Disable |
Helmut64 | 0:a3ea811f80f2 | 283 | (1 << 21); // Stall |
Helmut64 | 0:a3ea811f80f2 | 284 | } |
Helmut64 | 0:a3ea811f80f2 | 285 | else { // Out EP |
Helmut64 | 0:a3ea811f80f2 | 286 | OTG_FS->DREGS.DCTL |= (1 << 9); // Set global out NAK |
Helmut64 | 0:a3ea811f80f2 | 287 | OTG_FS->OUTEP_REGS[endpoint >> 1].DOEPCTL |= (1 << 30) | // Disable |
Helmut64 | 0:a3ea811f80f2 | 288 | (1 << 21); // Stall |
Helmut64 | 0:a3ea811f80f2 | 289 | } |
Helmut64 | 0:a3ea811f80f2 | 290 | } |
Helmut64 | 0:a3ea811f80f2 | 291 | |
Helmut64 | 0:a3ea811f80f2 | 292 | void USBHAL::unstallEndpoint(uint8_t endpoint) { |
Helmut64 | 0:a3ea811f80f2 | 293 | |
Helmut64 | 0:a3ea811f80f2 | 294 | } |
Helmut64 | 0:a3ea811f80f2 | 295 | |
Helmut64 | 0:a3ea811f80f2 | 296 | bool USBHAL::getEndpointStallState(uint8_t endpoint) { |
Helmut64 | 0:a3ea811f80f2 | 297 | return false; |
Helmut64 | 0:a3ea811f80f2 | 298 | } |
Helmut64 | 0:a3ea811f80f2 | 299 | |
Helmut64 | 0:a3ea811f80f2 | 300 | void USBHAL::remoteWakeup(void) { |
Helmut64 | 0:a3ea811f80f2 | 301 | } |
Helmut64 | 0:a3ea811f80f2 | 302 | |
Helmut64 | 0:a3ea811f80f2 | 303 | |
Helmut64 | 0:a3ea811f80f2 | 304 | void USBHAL::_usbisr(void) { |
Helmut64 | 0:a3ea811f80f2 | 305 | instance->usbisr(); |
Helmut64 | 0:a3ea811f80f2 | 306 | } |
Helmut64 | 0:a3ea811f80f2 | 307 | |
Helmut64 | 0:a3ea811f80f2 | 308 | |
Helmut64 | 0:a3ea811f80f2 | 309 | void USBHAL::usbisr(void) { |
Helmut64 | 0:a3ea811f80f2 | 310 | if (OTG_FS->GREGS.GINTSTS & (1 << 11)) { // USB Suspend |
Helmut64 | 0:a3ea811f80f2 | 311 | suspendStateChanged(1); |
Helmut64 | 0:a3ea811f80f2 | 312 | }; |
Helmut64 | 0:a3ea811f80f2 | 313 | |
Helmut64 | 0:a3ea811f80f2 | 314 | if (OTG_FS->GREGS.GINTSTS & (1 << 12)) { // USB Reset |
Helmut64 | 0:a3ea811f80f2 | 315 | suspendStateChanged(0); |
Helmut64 | 0:a3ea811f80f2 | 316 | |
Helmut64 | 0:a3ea811f80f2 | 317 | // Set SNAK bits |
Helmut64 | 0:a3ea811f80f2 | 318 | OTG_FS->OUTEP_REGS[0].DOEPCTL |= (1 << 27); |
Helmut64 | 0:a3ea811f80f2 | 319 | OTG_FS->OUTEP_REGS[1].DOEPCTL |= (1 << 27); |
Helmut64 | 0:a3ea811f80f2 | 320 | OTG_FS->OUTEP_REGS[2].DOEPCTL |= (1 << 27); |
Helmut64 | 0:a3ea811f80f2 | 321 | OTG_FS->OUTEP_REGS[3].DOEPCTL |= (1 << 27); |
Helmut64 | 0:a3ea811f80f2 | 322 | |
Helmut64 | 0:a3ea811f80f2 | 323 | OTG_FS->DREGS.DIEPMSK = (1 << 0); |
Helmut64 | 0:a3ea811f80f2 | 324 | |
Helmut64 | 0:a3ea811f80f2 | 325 | bufferEnd = 0; |
Helmut64 | 0:a3ea811f80f2 | 326 | |
Helmut64 | 0:a3ea811f80f2 | 327 | // Set the receive FIFO size |
Helmut64 | 0:a3ea811f80f2 | 328 | OTG_FS->GREGS.GRXFSIZ = rxFifoSize >> 2; |
Helmut64 | 0:a3ea811f80f2 | 329 | bufferEnd += rxFifoSize >> 2; |
Helmut64 | 0:a3ea811f80f2 | 330 | |
Helmut64 | 0:a3ea811f80f2 | 331 | // Create the endpoints, and wait for setup packets on out EP0 |
Helmut64 | 0:a3ea811f80f2 | 332 | realiseEndpoint(EP0IN, MAX_PACKET_SIZE_EP0, 0); |
Helmut64 | 0:a3ea811f80f2 | 333 | realiseEndpoint(EP0OUT, MAX_PACKET_SIZE_EP0, 0); |
Helmut64 | 0:a3ea811f80f2 | 334 | endpointRead(EP0OUT, MAX_PACKET_SIZE_EP0); |
Helmut64 | 0:a3ea811f80f2 | 335 | |
Helmut64 | 0:a3ea811f80f2 | 336 | OTG_FS->GREGS.GINTSTS = (1 << 12); |
Helmut64 | 0:a3ea811f80f2 | 337 | } |
Helmut64 | 0:a3ea811f80f2 | 338 | |
Helmut64 | 0:a3ea811f80f2 | 339 | if (OTG_FS->GREGS.GINTSTS & (1 << 4)) { // RX FIFO not empty |
Helmut64 | 0:a3ea811f80f2 | 340 | uint32_t status = OTG_FS->GREGS.GRXSTSP; |
Helmut64 | 0:a3ea811f80f2 | 341 | |
Helmut64 | 0:a3ea811f80f2 | 342 | uint32_t endpoint = (status & 0xF) << 1; |
Helmut64 | 0:a3ea811f80f2 | 343 | uint32_t length = (status >> 4) & 0x7FF; |
Helmut64 | 0:a3ea811f80f2 | 344 | uint32_t type = (status >> 17) & 0xF; |
Helmut64 | 0:a3ea811f80f2 | 345 | |
Helmut64 | 0:a3ea811f80f2 | 346 | rxFifoCount = length; |
Helmut64 | 0:a3ea811f80f2 | 347 | |
Helmut64 | 0:a3ea811f80f2 | 348 | if (type == 0x6) { |
Helmut64 | 0:a3ea811f80f2 | 349 | // Setup packet |
Helmut64 | 0:a3ea811f80f2 | 350 | for (uint32_t i=0; i<length; i+=4) { |
Helmut64 | 0:a3ea811f80f2 | 351 | setupBuffer[i >> 2] = OTG_FS->FIFO[0][i >> 2]; |
Helmut64 | 0:a3ea811f80f2 | 352 | } |
Helmut64 | 0:a3ea811f80f2 | 353 | rxFifoCount = 0; |
Helmut64 | 0:a3ea811f80f2 | 354 | } |
Helmut64 | 0:a3ea811f80f2 | 355 | |
Helmut64 | 0:a3ea811f80f2 | 356 | if (type == 0x4) { |
Helmut64 | 0:a3ea811f80f2 | 357 | // Setup complete |
Helmut64 | 0:a3ea811f80f2 | 358 | EP0setupCallback(); |
Helmut64 | 0:a3ea811f80f2 | 359 | endpointRead(EP0OUT, MAX_PACKET_SIZE_EP0); |
Helmut64 | 0:a3ea811f80f2 | 360 | } |
Helmut64 | 0:a3ea811f80f2 | 361 | |
Helmut64 | 0:a3ea811f80f2 | 362 | if (type == 0x2) { |
Helmut64 | 0:a3ea811f80f2 | 363 | // Out packet |
Helmut64 | 0:a3ea811f80f2 | 364 | if (endpoint == EP0OUT) { |
Helmut64 | 0:a3ea811f80f2 | 365 | EP0out(); |
Helmut64 | 0:a3ea811f80f2 | 366 | } |
Helmut64 | 0:a3ea811f80f2 | 367 | else { |
Helmut64 | 0:a3ea811f80f2 | 368 | epComplete |= (1 << endpoint); |
Helmut64 | 0:a3ea811f80f2 | 369 | if ((instance->*(epCallback[endpoint - 2]))()) { |
Helmut64 | 0:a3ea811f80f2 | 370 | epComplete &= ~(1 << endpoint); |
Helmut64 | 0:a3ea811f80f2 | 371 | } |
Helmut64 | 0:a3ea811f80f2 | 372 | } |
Helmut64 | 0:a3ea811f80f2 | 373 | } |
Helmut64 | 0:a3ea811f80f2 | 374 | |
Helmut64 | 0:a3ea811f80f2 | 375 | for (uint32_t i=0; i<rxFifoCount; i+=4) { |
Helmut64 | 0:a3ea811f80f2 | 376 | (void) OTG_FS->FIFO[0][0]; |
Helmut64 | 0:a3ea811f80f2 | 377 | } |
Helmut64 | 0:a3ea811f80f2 | 378 | OTG_FS->GREGS.GINTSTS = (1 << 4); |
Helmut64 | 0:a3ea811f80f2 | 379 | } |
Helmut64 | 0:a3ea811f80f2 | 380 | |
Helmut64 | 0:a3ea811f80f2 | 381 | if (OTG_FS->GREGS.GINTSTS & (1 << 18)) { // In endpoint interrupt |
Helmut64 | 0:a3ea811f80f2 | 382 | // Loop through the in endpoints |
Helmut64 | 0:a3ea811f80f2 | 383 | for (uint32_t i=0; i<4; i++) { |
Helmut64 | 0:a3ea811f80f2 | 384 | if (OTG_FS->DREGS.DAINT & (1 << i)) { // Interrupt is on endpoint |
Helmut64 | 0:a3ea811f80f2 | 385 | |
Helmut64 | 0:a3ea811f80f2 | 386 | if (OTG_FS->INEP_REGS[i].DIEPINT & (1 << 7)) {// Tx FIFO empty |
Helmut64 | 0:a3ea811f80f2 | 387 | // If the Tx FIFO is empty on EP0 we need to send a further |
Helmut64 | 0:a3ea811f80f2 | 388 | // packet, so call EP0in() |
Helmut64 | 0:a3ea811f80f2 | 389 | if (i == 0) { |
Helmut64 | 0:a3ea811f80f2 | 390 | EP0in(); |
Helmut64 | 0:a3ea811f80f2 | 391 | } |
Helmut64 | 0:a3ea811f80f2 | 392 | // Clear the interrupt |
Helmut64 | 0:a3ea811f80f2 | 393 | OTG_FS->INEP_REGS[i].DIEPINT = (1 << 7); |
Helmut64 | 0:a3ea811f80f2 | 394 | // Stop firing Tx empty interrupts |
Helmut64 | 0:a3ea811f80f2 | 395 | // Will get turned on again if another write is called |
Helmut64 | 0:a3ea811f80f2 | 396 | OTG_FS->DREGS.DIEPEMPMSK &= ~(1 << i); |
Helmut64 | 0:a3ea811f80f2 | 397 | } |
Helmut64 | 0:a3ea811f80f2 | 398 | |
Helmut64 | 0:a3ea811f80f2 | 399 | // If the transfer is complete |
Helmut64 | 0:a3ea811f80f2 | 400 | if (OTG_FS->INEP_REGS[i].DIEPINT & (1 << 0)) { // Tx Complete |
Helmut64 | 0:a3ea811f80f2 | 401 | epComplete |= (1 << (1 + (i << 1))); |
Helmut64 | 0:a3ea811f80f2 | 402 | OTG_FS->INEP_REGS[i].DIEPINT = (1 << 0); |
Helmut64 | 0:a3ea811f80f2 | 403 | } |
Helmut64 | 0:a3ea811f80f2 | 404 | } |
Helmut64 | 0:a3ea811f80f2 | 405 | } |
Helmut64 | 0:a3ea811f80f2 | 406 | OTG_FS->GREGS.GINTSTS = (1 << 18); |
Helmut64 | 0:a3ea811f80f2 | 407 | } |
Helmut64 | 0:a3ea811f80f2 | 408 | |
Helmut64 | 0:a3ea811f80f2 | 409 | if (OTG_FS->GREGS.GINTSTS & (1 << 3)) { // Start of frame |
Helmut64 | 0:a3ea811f80f2 | 410 | SOF((OTG_FS->GREGS.GRXSTSR >> 17) & 0xF); |
Helmut64 | 0:a3ea811f80f2 | 411 | OTG_FS->GREGS.GINTSTS = (1 << 3); |
Helmut64 | 0:a3ea811f80f2 | 412 | } |
Helmut64 | 0:a3ea811f80f2 | 413 | } |
Helmut64 | 0:a3ea811f80f2 | 414 | |
Helmut64 | 0:a3ea811f80f2 | 415 | |
Helmut64 | 0:a3ea811f80f2 | 416 | #endif |