STM32: USB: compact code and silent a buggy doxygen warning
[bertos.git] / bertos / cpu / cortex-m3 / drv / usb_stm32.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief STM32 USB driver
34  *
35  * \author Andrea Righi <arighi@develer.com>
36  */
37
38 #include "cfg/cfg_usb.h"
39
40 #define LOG_LEVEL  USB_LOG_LEVEL
41 #define LOG_FORMAT USB_LOG_FORMAT
42
43 #include <cfg/log.h>
44 #include <cfg/debug.h>
45 #include <cfg/macros.h>
46 #include <cfg/module.h>
47
48 #include <cpu/irq.h>
49 #include <cpu/power.h>
50
51 #include <drv/irq_cm3.h>
52 #include <drv/gpio_stm32.h>
53 #include <drv/clock_stm32.h>
54 #include <drv/timer.h>
55 #include <drv/usb.h>
56
57 #include <string.h> /* memcpy() */
58
59 #include "usb_stm32.h"
60
61 #define ALIGNED(x)      __attribute__ ((__aligned__(x)))
62 #define ALIGN_UP(value, align)  (((value) & ((align) - 1)) ? \
63                                 (((value) + ((align) - 1)) & ~((align) - 1)) : \
64                                 (value))
65
66 /* XXX: redefine this to make it usable within C expression */
67 #define _MIN(a,b)       (((a) < (b)) ? (a) : (b))
68
69 /* STM32 USB registers */
70 struct stm32_usb
71 {
72         reg32_t EP0R;
73         reg32_t EP1R;
74         reg32_t EP2R;
75         reg32_t EP3R;
76         reg32_t EP4R;
77         reg32_t EP5R;
78         reg32_t EP6R;
79         reg32_t EP7R;
80         reg32_t __reserved[8];
81         reg32_t CNTR;
82         reg32_t ISTR;
83         reg32_t FNR;
84         reg32_t DADDR;
85         reg32_t BTABLE;
86 };
87
88 /* Hardware registers */
89 static struct stm32_usb *usb = (struct stm32_usb *)USB_BASE_ADDR;
90
91 /* Endpoint descriptors: used for handling requests to use with endpoints */
92 static stm32_UsbEp ep_cnfg[ENP_MAX_NUMB];
93
94 /* USB EP0 control descriptor */
95 static const UsbEndpointDesc USB_CtrlEpDescr0 =
96 {
97         .bLength = sizeof(USB_CtrlEpDescr0),
98         .bDescriptorType = USB_DT_ENDPOINT,
99         .bEndpointAddress = USB_DIR_OUT | 0,
100         .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
101         .wMaxPacketSize = USB_EP0_MAX_SIZE,
102         .bInterval = 0,
103 };
104
105 /* USB EP1 control descriptor */
106 static const UsbEndpointDesc USB_CtrlEpDescr1 =
107 {
108         .bLength = sizeof(USB_CtrlEpDescr1),
109         .bDescriptorType = USB_DT_ENDPOINT,
110         .bEndpointAddress = USB_DIR_IN | 0,
111         .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
112         .wMaxPacketSize = USB_EP0_MAX_SIZE,
113         .bInterval = 0,
114 };
115
116 /* USB setup packet */
117 static UsbCtrlRequest setup_packet;
118
119 /* USB device controller: max supported interfaces */
120 #define USB_MAX_INTERFACE       1
121
122 /* USB device controller features */
123 #define STM32_UDC_FEATURE_SELFPOWERED   BV(0)
124 #define STM32_UDC_FEATURE_REMOTE_WAKEUP BV(1)
125
126 /* Hardware-specific USB device controller structure */
127 typedef struct stm32_udc
128 {
129         uint8_t state;
130         uint32_t cfg_id;
131         const UsbConfigDesc *cfg;
132         uint32_t interfaces;
133         uint32_t alt[USB_MAX_INTERFACE];
134         uint32_t address;
135         uint8_t feature;
136 } PACKED stm32_udc_t;
137
138 /* Hardware-specific USB Device Controller */
139 static stm32_udc_t udc;
140
141 /* Generic USB Device Controller structure */
142 static UsbDevice *usb_dev;
143
144 /* USB packet memory management: list of allocated chunks */
145 static stm32_UsbMemSlot *mem_use;
146
147 /* USB packet memory management: memory buffer metadata */
148 #define EP_MAX_SLOTS    16
149 static stm32_UsbMemSlot memory_buffer[EP_MAX_SLOTS];
150
151 /* Endpoint TX and RX buffers */
152 /// \cond
153 /* XXX: use the empty cond section to silent a buggy doxygen warning */
154 static bool rx_done, tx_done;
155 static size_t rx_size, tx_size;
156 static uint8_t rx_buffer[_MIN(CONFIG_USB_RXBUFSIZE, USB_RX_MAX_SIZE)] ALIGNED(4);
157 static uint8_t tx_buffer[_MIN(CONFIG_USB_TXBUFSIZE, USB_TX_MAX_SIZE)] ALIGNED(4);
158 /// \endcond
159
160 /* Allocate a free block of the packet memory */
161 static stm32_UsbMemSlot *usb_malloc(void)
162 {
163         unsigned int i;
164
165         for (i = 0; i < countof(memory_buffer); i++)
166                 if (memory_buffer[i].Size == 0)
167                         return &memory_buffer[i];
168         return NULL;
169 }
170
171 /* Release a block of the packet memory */
172 static void usb_free(stm32_UsbMemSlot *pPntr)
173 {
174         pPntr->Size = 0;
175 }
176
177 /* Allocate a free chunk of the packet memory (inside a block) */
178 static bool usb_alloc_buffer(uint16_t *pOffset, uint32_t *size,
179                             int EndPoint)
180 {
181         stm32_UsbMemSlot *mem = mem_use,
182                         *memNext, *mem_useNew;
183         uint32_t max_size = *size;
184
185         /*
186          * Packet size alignment:
187          *  - fine-granularity allocation: size alignment by 2;
188          *  - coarse-granularity allocation: size alignment by 32.
189          */
190         if (max_size < 62)
191                 max_size = ALIGN_UP(max_size, 2);
192         else
193                 max_size = ALIGN_UP(max_size, 32);
194         /*
195          * Finding free memory chunks from the allocated blocks of the USB
196          * packet memory.
197          */
198         *pOffset = 0;
199         while (mem != NULL)
200         {
201                 /* Offset alignment by 4 */
202                 *pOffset = ALIGN_UP(mem->Start + mem->Size, 4);
203                 memNext = mem->next;
204                 if ((mem->next == NULL) ||
205                                 (memNext->Start >=
206                                         *pOffset + max_size))
207                         break;
208                 mem = mem->next;
209         }
210         /* Check for out-of-memory condition */
211         if ((*pOffset + max_size) >= USB_BDT_OFFSET)
212                 return false;
213         /*
214          * Allocate a new memory block, next to the last allocated block.
215          */
216         mem_useNew = usb_malloc();
217         if (mem_useNew == NULL)
218                 return false;
219         /* Insert the block to the list of allocated blocks */
220         if (mem_use == NULL)
221         {
222                 mem_use = mem_useNew;
223                 mem_use->next = NULL;
224         }
225         else
226         {
227                 mem_useNew->next = mem->next;
228                 mem->next = mem_useNew;
229         }
230         /* Update block's metadata */
231         mem_useNew->ep_addr = EndPoint;
232         mem_useNew->Start = *pOffset;
233         mem_useNew->Size = max_size;
234
235         *size = max_size;
236
237         return true;
238 }
239
240 /* Release a chunk of the packet memory (inside a block) */
241 static void usb_free_buffer(int EndPoint)
242 {
243         stm32_UsbMemSlot *mem, *memPrev = NULL;
244         mem = mem_use;
245
246         while (mem != NULL)
247         {
248                 if (mem->ep_addr == EndPoint)
249                 {
250                         if (UNLIKELY(memPrev == NULL))
251                         {
252                                 /* Free the first element of the list */
253                                 mem_use = mem_use->next;
254                                 usb_free(mem);
255                                 mem = mem_use;
256                                 continue;
257                         }
258                         memPrev->next = mem->next;
259                         usb_free(mem);
260                 }
261                 else
262                         memPrev = mem;
263                 mem = memPrev->next;
264         }
265 }
266
267 /*-------------------------------------------------------------------------*/
268
269 /* Connect USB controller */
270 static void usb_connect(void)
271 {
272         stm32_gpioPinWrite((struct stm32_gpio *)GPIOC_BASE, 1 << 11, 0);
273 }
274
275 /* Set USB device address */
276 static void usb_set_address(uint32_t addr)
277 {
278         usb->DADDR = addr | 0x80;
279 }
280
281 /* Suspend USB controller */
282 static void usb_suspend(void)
283 {
284         usb->CNTR |= bmFSUSP | bmLPMODE;
285 }
286
287 /* Resume USB controller */
288 static void usb_resume(void)
289 {
290         uint32_t line_status;
291
292         line_status = usb->FNR & 0xc000;
293         if (!line_status)
294                 return;
295         /* check for noise and eventually return to sleep */
296         if (line_status == 0xc000)
297                 usb_suspend();
298         else
299                 usb->CNTR &= ~(bmFSUSP | bmLPMODE);
300 }
301
302 /* Convert logical EP address to physical EP address */
303 static int usb_ep_logical_to_hw(uint8_t ep_addr)
304 {
305         int addr = (ep_addr & 0x0f) << 1;
306         return (ep_addr & 0x80) ? addr + 1 : addr;
307 }
308
309 /* Set EP address */
310 static void ep_ctrl_set_ea(reg32_t *reg, uint32_t val)
311 {
312         val &= 0x0f;
313         val |= *reg & 0x0700;
314         val |= USB_CTRL_CLEAR_ONLY_MASK;
315         *reg = val;
316 }
317
318 /* Get EP IN status */
319 static uint32_t ep_ctrl_get_stat_tx(reg32_t *reg)
320 {
321         return (*reg & (0x3UL << 4)) >> 4;
322 }
323
324 /* Set EP IN state */
325 static void ep_ctrl_set_stat_tx(reg32_t *reg, stm32_UsbEpState val)
326 {
327         uint32_t state;
328         int i;
329
330         /*
331          * The EP can change state between read and write operations from VALID
332          * to NAK and result of set operation will be invalid.
333          */
334         for (i = 0; i < 2; i++)
335         {
336                 if (ep_ctrl_get_stat_tx(reg) == val)
337                         return;
338                 state = val;
339                 state <<= 4;
340                 state ^= *reg;
341                 state |= USB_CTRL_CLEAR_ONLY_MASK;
342                 /* Clear the toggle bits without STAT_TX (4,5) */
343                 state &= ~0x7040;
344                 *reg = state;
345         }
346 }
347
348 /* Set EP DTOG_TX bit (IN) */
349 static void ep_ctrl_set_dtog_tx(reg32_t *reg, uint32_t val)
350 {
351         val = val ? (*reg ^ (1UL << 6)) : *reg;
352         /* Clear the toggle bits without DTOG_TX (6) */
353         val &= ~0x7030;
354         val |= USB_CTRL_CLEAR_ONLY_MASK;
355         *reg = val;
356 }
357
358 /* Clear EP CTR_TX bit (IN) */
359 static void ep_ctrl_clr_ctr_tx(reg32_t *reg)
360 {
361         uint32_t val = *reg;
362
363         val &= ~(USB_CTRL_TOGGLE_MASK | 1UL << 7);
364         /* Set RX_CTR */
365         val |= 1UL << 15;
366         *reg = val;
367 }
368
369 /* Clear EP CTR_RX bit (OUT) */
370 static void ep_ctrl_clr_ctr_rx(reg32_t *reg)
371 {
372         uint32_t val = *reg;
373         val &= ~(USB_CTRL_TOGGLE_MASK | 1UL << 15);
374         /* Set TX_CTR */
375         val |= 1UL << 7;
376         *reg = val;
377 }
378
379 /* Set EP KIND bit */
380 static void ep_ctrl_set_ep_kind(reg32_t *reg, uint32_t val)
381 {
382         val = val ? (1UL << 8) : 0;
383         val |= *reg & ~(USB_CTRL_TOGGLE_MASK | (1UL << 8));
384         val |= USB_CTRL_CLEAR_ONLY_MASK;
385         *reg = val;
386 }
387
388 /* Set EP type */
389 static int ep_ctrl_set_ep_type(reg32_t *reg, uint8_t val)
390 {
391         uint32_t type;
392
393         if (UNLIKELY(val >= EP_TYPE_MAX))
394         {
395                 ASSERT(0);
396                 return USB_INVAL_ERROR;
397         }
398         type = val;
399         type <<= 9;
400         type |= *reg & ~(USB_CTRL_TOGGLE_MASK | (0x3UL << 9));
401         type |= USB_CTRL_CLEAR_ONLY_MASK;
402         *reg = type;
403
404         return USB_OK;
405 }
406
407 /* Get EP STAT_RX (OUT) */
408 static uint32_t ep_ctrl_get_stat_rx(reg32_t *reg)
409 {
410         uint32_t val = *reg & (0x3UL << 12);
411         return val >> 12;
412 }
413
414 /* Set EP STAT_RX (OUT) */
415 static void ep_ctrl_set_stat_rx(reg32_t *reg, stm32_UsbEpState val)
416 {
417         uint32_t state;
418         int i;
419
420         /*
421          * The EP can change state between read and write operations from VALID
422          * to NAK and result of set operation will be invalid.
423          */
424         for (i = 0; i < 2; i++)
425         {
426                 if (ep_ctrl_get_stat_rx(reg) == val)
427                         return;
428                 state = val;
429                 state <<= 12;
430                 state ^= *reg;
431                 state |= USB_CTRL_CLEAR_ONLY_MASK;
432                 /* Clear the toggle bits without STAT_RX (12,13) */
433                 state &= ~0x4070;
434                 *reg = state;
435         }
436 }
437
438 /* Set DTOG_RX bit */
439 static void ep_ctrl_set_dtog_rx(reg32_t *reg, uint32_t val)
440 {
441         val = val ? (*reg ^ (1UL << 14)) : *reg;
442         /* Clear the toggle bits without DTOG_RX (14) */
443         val &= ~0x3070;
444         val |= USB_CTRL_CLEAR_ONLY_MASK;
445         *reg = val;
446 }
447
448 /* Get EP SETUP bit */
449 static uint32_t ep_ctrl_get_setup(reg32_t *reg)
450 {
451         uint32_t val = *reg & (1UL << 11);
452         return val ? 1 : 0;
453 }
454
455 /* Core endpoint I/O function */
456 static void __usb_ep_io(int EP)
457 {
458         ssize_t Count, CountHold, Offset;
459         uint32_t *pDst, *pSrc, Data;
460         stm32_UsbEp *epd = &ep_cnfg[EP];
461
462         if (UNLIKELY(epd->hw == NULL))
463         {
464                 LOG_ERR("%s: invalid endpoint (EP%d-%s)\n",
465                                 __func__,
466                                 EP >> 1,
467                                 (EP & 0x01) ? "IN" : "OUT");
468                 ASSERT(0);
469                 return;
470         }
471         if (epd->status != BEGIN_SERVICED && epd->status != NO_SERVICED)
472                 return;
473
474         if (EP & 0x01)
475         {
476                 /* EP IN */
477                 Count = epd->size - epd->offset;
478                 while (epd->avail_data)
479                 {
480                         if (!Count && !(epd->flags & STM32_USB_EP_ZERO_PACKET))
481                                 break;
482
483                         /* Set Status */
484                         epd->status = BEGIN_SERVICED;
485                         /* Get data size */
486                         if ((epd->flags & STM32_USB_EP_ZERO_PACKET) &&
487                                         (Count == epd->max_size))
488                                 epd->flags |= STM32_USB_EP_ZERO_PACKET |
489                                                 STM32_USB_EP_ZERO_POSSIBLE;
490
491                         CountHold = Count = MIN(Count, epd->max_size);
492                         if (!Count)
493                                 epd->flags |= STM32_USB_EP_ZERO_PACKET;
494                         Offset = epd->offset;
495                         epd->offset += Count;
496                         switch (epd->type)
497                         {
498                         case USB_ENDPOINT_XFER_CONTROL:
499                         case USB_ENDPOINT_XFER_INT:
500                                 pDst = (uint32_t *)USB_MEM_ADDR(EP_DTB_READ(EP >> 1, ADDR_TX_OFFSET));
501                                 break;
502                         case USB_ENDPOINT_XFER_BULK:
503                                 pDst = (uint32_t *)USB_MEM_ADDR(EP_DTB_READ(EP >> 1, ADDR_TX_OFFSET));
504                                 break;
505                         case USB_ENDPOINT_XFER_ISOC:
506                                 LOG_ERR("%s: isochronous transfer not supported\n",
507                                         __func__);
508                                 /* Fallback to default */
509                         default:
510                                 ASSERT(0);
511                                 return;
512                         }
513
514                         /* Write data to packet memory buffer */
515                         while (Count)
516                         {
517                                 Data = *(epd->write_buffer + Offset++);
518                                 if (--Count)
519                                 {
520                                         Data |= (uint32_t)(*(epd->write_buffer + Offset++)) << 8;
521                                         --Count;
522                                 }
523                                 *pDst++ = Data;
524                         }
525
526                         EP_DTB_WRITE(EP >> 1, COUNT_TX_OFFSET, CountHold);
527                         ep_ctrl_set_stat_tx(epd->hw, EP_VALID);
528
529                         --ep_cnfg[EP].avail_data;
530                         Count = epd->size - epd->offset;
531                 }
532                 if (!Count && !(epd->flags & STM32_USB_EP_ZERO_PACKET))
533                 {
534                         epd->status = COMPLETE;
535                         /* call callback function */
536                         if (epd->complete)
537                                 epd->complete(EP);
538                 }
539         }
540         else
541         {
542                 /* EP OUT */
543                 while (epd->avail_data)
544                 {
545                         /* Get data size and buffer pointer */
546                         switch (epd->type)
547                         {
548                         case USB_ENDPOINT_XFER_CONTROL:
549                         case USB_ENDPOINT_XFER_INT:
550                                 /* Get received bytes number */
551                                 Count = EP_DTB_READ(EP >> 1, COUNT_RX_OFFSET) & 0x3FF;
552                                 /* Get address of the USB packet buffer for corresponding EP */
553                                 pSrc = (uint32_t *)USB_MEM_ADDR(EP_DTB_READ(EP >> 1, ADDR_RX_OFFSET));
554                                 break;
555                         case USB_ENDPOINT_XFER_BULK:
556                                 /* Get received bytes number */
557                                 Count = EP_DTB_READ(EP >> 1, COUNT_RX_OFFSET) & 0x3FF;
558                                 /* Get address of the USB packet buffer for corresponding EP */
559                                 pSrc = (uint32_t *)USB_MEM_ADDR(EP_DTB_READ(EP >> 1, ADDR_RX_OFFSET));
560                                 break;
561                         case USB_ENDPOINT_XFER_ISOC:
562                                 LOG_ERR("%s: isochronous transfer not supported\n",
563                                         __func__);
564                                 /* Fallback to default */
565                         default:
566                                 ASSERT(0);
567                                 return;
568                         }
569
570                         if (Count > (epd->size - epd->offset))
571                         {
572                                 epd->status = BUFFER_OVERRUN;
573                                 epd->size = ep_cnfg[EP].offset;
574                                 break;
575                         }
576                         else if (Count < ep_cnfg[EP].max_size)
577                         {
578                                 epd->status = BUFFER_UNDERRUN;
579                                 epd->size = ep_cnfg[EP].offset + Count;
580                         }
581                         else
582                                 epd->status = BEGIN_SERVICED;
583
584                         Offset = epd->offset;
585                         epd->offset += Count;
586
587                         /* Read data from packet memory buffer */
588                         while (Count)
589                         {
590                                 Data = *pSrc++;
591                                 *(epd->read_buffer + Offset++) = Data;
592                                 if (--Count)
593                                 {
594                                         Data >>= 8;
595                                         *(epd->read_buffer + Offset++) = Data;
596                                         --Count;
597                                 }
598                         }
599
600                         ep_ctrl_set_stat_rx(epd->hw, EP_VALID);
601
602                         --ep_cnfg[EP].avail_data;
603
604                         if (*epd->hw & (1UL << 11))
605                         {
606                                 ep_cnfg[EP].status = SETUP_OVERWRITE;
607                                 return;
608                         }
609                         if (!(Count = (epd->size - epd->offset)))
610                         {
611                                 epd->status = COMPLETE;
612                                 break;
613                         }
614                 }
615                 if (epd->status != BEGIN_SERVICED && epd->status != NO_SERVICED)
616                 {
617                         /* call callback function */
618                         if (epd->complete)
619                                 epd->complete(EP);
620                 }
621         }
622 }
623
624 /*
625  * Return the lower value from Host expected size and size and set a flag
626  * STM32_USB_EP_ZERO_POSSIBLE when size is lower that host expected size.
627  */
628 static size_t usb_size(size_t size, size_t host_size)
629 {
630         if (size < host_size)
631         {
632                 ep_cnfg[CTRL_ENP_IN].flags |= STM32_USB_EP_ZERO_POSSIBLE;
633                 return size;
634         }
635         return host_size;
636 }
637
638 /* Configure an EP descriptor before performing a I/O operation */
639 #define USB_EP_IO(__EP, __op, __buf, __size, __complete)                \
640 ({                                                                      \
641         cpu_flags_t flags;                                              \
642         stm32_UsbIoStatus ret;                                  \
643                                                                         \
644         /* Fill EP descriptor */                                        \
645         IRQ_SAVE_DISABLE(flags);                                        \
646         if (__size < 0)                                                 \
647         {                                                               \
648                 ep_cnfg[__EP].status = NOT_READY;                       \
649                 ep_cnfg[__EP].complete = NULL;                          \
650                 ret = NOT_READY;                                        \
651                 goto out;                                               \
652         }                                                               \
653         if (ep_cnfg[__EP].status == BEGIN_SERVICED)                     \
654         {                                                               \
655                 ret = NOT_READY;                                        \
656                 goto out;                                               \
657         }                                                               \
658         /*                                                              \
659          * NOTE: the write_buffer and read_buffer are actually the      \
660          * same location in memory (it's a union).                      \
661          *                                                              \
662          * We have to do this trick to silent a build warning by        \
663          * casting the I/O buffer to (void *) or (const void *).        \
664          */                                                             \
665         ep_cnfg[__EP].__op ## _buffer = __buf;                          \
666         ep_cnfg[__EP].offset = 0;                                       \
667         ep_cnfg[__EP].size = __size;                                    \
668         ep_cnfg[__EP].complete = __complete;                            \
669         if (!size)                                                      \
670                 ep_cnfg[__EP].flags = STM32_USB_EP_ZERO_PACKET;         \
671         else                                                            \
672                 ep_cnfg[__EP].flags = 0;                                \
673         ep_cnfg[__EP].status = NO_SERVICED;                             \
674                                                                         \
675         /* Perform the I/O operation */                                 \
676         __usb_ep_io(__EP);                                              \
677                                                                         \
678         ret = ep_cnfg[__EP].status;                                     \
679 out:                                                                    \
680         IRQ_RESTORE(flags);                                             \
681         ret;                                                            \
682 })
683
684 /* Configure and endponint and perform a read operation */
685 static stm32_UsbIoStatus
686 __usb_ep_read(int ep, void *buffer, ssize_t size, void (*complete)(int))
687 {
688         if (UNLIKELY((ep >= ENP_MAX_NUMB) || (ep & 0x01)))
689         {
690                 LOG_ERR("%s: invalid EP number %d\n", __func__, ep);
691                 ASSERT(0);
692                 return STALLED;
693         }
694         if (UNLIKELY((size_t)buffer & 0x03))
695         {
696                 LOG_ERR("%s: unaligned buffer @ %p\n", __func__, buffer);
697                 ASSERT(0);
698                 return STALLED;
699         }
700         return USB_EP_IO(ep, read, buffer, size, complete);
701 }
702
703 /* Configure and endponint and perform a write operation */
704 static stm32_UsbIoStatus
705 __usb_ep_write(int ep, const void *buffer, ssize_t size, void (*complete)(int))
706 {
707         if (UNLIKELY((ep >= ENP_MAX_NUMB) || !(ep & 0x01)))
708         {
709                 LOG_ERR("%s: invalid EP number %d\n", __func__, ep);
710                 ASSERT(0);
711                 return STALLED;
712         }
713         if (UNLIKELY((size_t)buffer & 0x03))
714         {
715                 LOG_ERR("%s: unaligned buffer @ %p\n", __func__, buffer);
716                 ASSERT(0);
717                 return STALLED;
718         }
719         return USB_EP_IO(ep, write, buffer, size, complete);
720 }
721
722 static void usb_ep_low_level_config(int ep, uint16_t offset, uint16_t size)
723 {
724         stm32_UsbEp *epc = &ep_cnfg[ep];
725
726         /* IN EP */
727         if (ep & 0x01)
728         {
729                 /* Disable EP */
730                 ep_ctrl_set_stat_tx(epc->hw, EP_DISABLED);
731                 /* Clear Tx toggle */
732                 ep_ctrl_set_dtog_tx(epc->hw, 0);
733                 /* Clear Correct Transfer for transmission flag */
734                 ep_ctrl_clr_ctr_tx(epc->hw);
735
736                 /* Update EP description table */
737                 EP_DTB_WRITE(ep >> 1, ADDR_TX_OFFSET, offset);
738                 EP_DTB_WRITE(ep >> 1, COUNT_TX_OFFSET, 0);
739         }
740         /* OUT EP */
741         else
742         {
743                 uint16_t rx_count = 0;
744
745                 /* Disable EP */
746                 ep_ctrl_set_stat_rx(epc->hw, EP_DISABLED);
747                 /* Clear Rx toggle */
748                 ep_ctrl_set_dtog_rx(epc->hw, 0);
749                 /* Clear Correct Transfer for reception flag */
750                 ep_ctrl_clr_ctr_rx(epc->hw);
751                 /* Descriptor block size field */
752                 rx_count |= (size > 62) << 15;
753                 /* Descriptor number of blocks field */
754                 rx_count |= (((size > 62) ?  (size >> 5) - 1 : size >> 1) &
755                                 0x1f) << 10;
756                 /* Update EP description table */
757                 EP_DTB_WRITE(ep >> 1, ADDR_RX_OFFSET, offset);
758                 EP_DTB_WRITE(ep >> 1, COUNT_RX_OFFSET, rx_count);
759         }
760 }
761
762 /* Enable/Disable an endpoint */
763 static int usb_ep_configure(const UsbEndpointDesc *epd, bool enable)
764 {
765         int EP;
766         stm32_UsbEp *ep_hw;
767         reg32_t *hw;
768         uint16_t Offset;
769         uint32_t size;
770
771         EP = usb_ep_logical_to_hw(epd->bEndpointAddress);
772         ep_hw = &ep_cnfg[EP];
773
774         if (enable)
775         {
776                 /*
777                  * Allocate packet memory for EP buffer/s calculate actual size
778                  * only for the OUT EPs.
779                  */
780                 size = epd->wMaxPacketSize;
781                 if (!usb_alloc_buffer(&Offset, &size, EP))
782                         return -USB_MEMORY_FULL;
783
784                 /* Set EP status */
785                 ep_hw->status  = NOT_READY;
786                 /* Init EP flags */
787                 ep_hw->flags = 0;
788
789                 /* Set endpoint type */
790                 ep_hw->type = usb_endpointType(epd);
791                 /* Init EP max packet size */
792                 ep_hw->max_size = epd->wMaxPacketSize;
793
794                 if (EP & 0x01)
795                         ep_hw->avail_data = 1;
796                 else
797                         ep_hw->avail_data = 0;
798                 hw = (reg32_t *)&usb->EP0R;
799                 hw += EP >> 1;
800
801                 /* Set Ep Address */
802                 ep_ctrl_set_ea(hw, EP >> 1);
803                 ep_hw->hw = hw;
804                 LOG_INFO("%s: EP%d-%s configured\n",
805                                 __func__, EP >> 1, EP & 1 ? "IN" : "OUT");
806
807                 /* Low-level endpoint configuration */
808                 usb_ep_low_level_config(EP, Offset, size);
809
810                 /* Set EP Kind & enable */
811                 switch (ep_hw->type)
812                 {
813                 case USB_ENDPOINT_XFER_CONTROL:
814                         LOG_INFO("EP%d: CONTROL IN\n", EP >> 1);
815                         ep_ctrl_set_ep_type(hw, EP_CTRL);
816                         ep_ctrl_set_ep_kind(hw, 0);
817                         break;
818                 case USB_ENDPOINT_XFER_INT:
819                         LOG_INFO("EP%d: INTERRUPT IN\n", EP >> 1);
820                         ep_ctrl_set_ep_type(hw, EP_INTERRUPT);
821                         ep_ctrl_set_ep_kind(hw, 0);
822                         break;
823                 case USB_ENDPOINT_XFER_BULK:
824                         LOG_INFO("EP%d: BULK IN\n", EP >> 1);
825                         ep_ctrl_set_ep_type(hw, EP_BULK);
826                         ep_ctrl_set_ep_kind(hw, 0);
827                         break;
828                 case USB_ENDPOINT_XFER_ISOC:
829                         LOG_ERR("EP%d: ISOCHRONOUS IN: not supported\n", EP >> 1);
830                         /* Fallback to default */
831                 default:
832                         ASSERT(0);
833                         return -USB_NODEV_ERROR;
834                 }
835                 if (EP & 0x01)
836                 {
837                         /* Enable EP */
838                         ep_ctrl_set_stat_tx(hw, EP_NAK);
839                         /* Clear Correct Transfer for transmission flag */
840                         ep_ctrl_clr_ctr_tx(hw);
841                 }
842                 else
843                 {
844                         /* Enable EP */
845                         ep_ctrl_set_stat_rx(hw, EP_VALID);
846                 }
847         }
848         else if (ep_cnfg[EP].hw)
849         {
850                 hw = (reg32_t *)&usb->EP0R;
851                 hw += EP >> 1;
852
853                 /* IN EP */
854                 if (EP & 0x01)
855                 {
856                         /* Disable IN EP */
857                         ep_ctrl_set_stat_tx(hw, EP_DISABLED);
858                         /* Clear Correct Transfer for reception flag */
859                         ep_ctrl_clr_ctr_tx(hw);
860                 }
861                 /* OUT EP */
862                 else
863                 {
864                         /* Disable OUT EP */
865                         ep_ctrl_set_stat_rx(hw, EP_DISABLED);
866                         /* Clear Correct Transfer for reception flag */
867                         ep_ctrl_clr_ctr_rx(hw);
868                 }
869                 /* Release buffer */
870                 usb_free_buffer(EP);
871                 ep_cnfg[EP].hw = NULL;
872         }
873         return 0;
874 }
875
876 /* Get EP stall/unstall */
877 static int usb_ep_get_stall(int EP, bool *pStall)
878 {
879         if (ep_cnfg[EP].hw == NULL)
880                 return -USB_NODEV_ERROR;
881
882         *pStall = (EP & 0x01) ?
883                 (ep_ctrl_get_stat_tx(ep_cnfg[EP].hw) == EP_STALL):  /* IN EP  */
884                 (ep_ctrl_get_stat_rx(ep_cnfg[EP].hw) == EP_STALL);  /* OUT EP */
885
886         return USB_OK;
887 }
888
889 /* Set EP stall/unstall */
890 static int usb_ep_set_stall(int EP, bool Stall)
891 {
892         if (ep_cnfg[EP].hw == NULL)
893                 return -USB_NODEV_ERROR;
894
895         if (Stall)
896         {
897                 ep_cnfg[EP].status = STALLED;
898                 if (EP & 0x01)
899                 {
900                         /* IN EP */
901                         ep_ctrl_set_stat_tx(ep_cnfg[EP].hw, EP_STALL);
902                         ep_cnfg[EP].avail_data = 1;
903                 }
904                 else
905                 {
906                         /* OUT EP */
907                         ep_ctrl_set_stat_rx(ep_cnfg[EP].hw, EP_STALL);
908                         ep_cnfg[EP].avail_data = 0;
909                 }
910         }
911         else
912         {
913                 ep_cnfg[EP].status = NOT_READY;
914                 if(EP & 0x01)
915                 {
916                         /* IN EP */
917                         ep_cnfg[EP].avail_data = 1;
918                         /* reset Data Toggle bit */
919                         ep_ctrl_set_dtog_tx(ep_cnfg[EP].hw, 0);
920                         ep_ctrl_set_stat_tx(ep_cnfg[EP].hw, EP_NAK);
921                 }
922                 else
923                 {
924                         /* OUT EP */
925                         ep_cnfg[EP].avail_data = 0;
926                         /* reset Data Toggle bit */
927                         ep_ctrl_set_dtog_rx(ep_cnfg[EP].hw, 0);
928                         ep_ctrl_set_stat_rx(ep_cnfg[EP].hw, EP_VALID);
929                 }
930         }
931         return USB_OK;
932 }
933
934 /* Stall both directions of the control EP */
935 static void usb_ep_set_stall_ctrl(void)
936 {
937         ep_cnfg[CTRL_ENP_IN].avail_data = 1;
938         ep_cnfg[CTRL_ENP_IN].status = STALLED;
939         ep_cnfg[CTRL_ENP_OUT].avail_data = 0;
940         ep_cnfg[CTRL_ENP_OUT].status = STALLED;
941
942         usb_ep_set_stall(CTRL_ENP_IN, true);
943         usb_ep_set_stall(CTRL_ENP_OUT, true);
944 }
945
946 /*
947  * Find the position of an interface descriptor inside the configuration
948  * descriptor.
949  */
950 static int usb_find_interface(uint32_t num, uint32_t alt)
951 {
952         const UsbInterfaceDesc *id;
953         int i;
954
955         for (i = 0; ; i++)
956         {
957                 /* TODO: support more than one configuration per device */
958                 id = (const UsbInterfaceDesc *)usb_dev->config[i];
959                 if (id == NULL)
960                         break;
961                 if (id->bDescriptorType != USB_DT_INTERFACE)
962                         continue;
963                 if ((id->bInterfaceNumber == num) &&
964                                 (id->bAlternateSetting == alt))
965                         return i;
966         }
967         return -USB_NODEV_ERROR;
968 }
969
970 /*
971  * Configure/deconfigure EPs of a certain interface.
972  */
973 static void
974 usb_configure_ep_interface(unsigned int num, unsigned int alt, bool enable)
975 {
976         const UsbEndpointDesc *epd;
977         int i, start;
978
979         /*
980          * Find the position of the interface descriptor (inside the
981          * configuration descriptor).
982          */
983         start = usb_find_interface(num, alt);
984         if (start < 0)
985         {
986                 LOG_ERR("%s: interface (%u,%u) not found\n",
987                         __func__, num, alt);
988                 return;
989         }
990         /*
991          * Cycle over endpoint descriptors.
992          *
993          * NOTE: the first endpoint descriptor is placed next to the interface
994          * descriptor, so we need to add +1 to the position of the interface
995          * descriptor to find it.
996          */
997         for (i = start + 1; ; i++)
998         {
999                 epd = (const UsbEndpointDesc *)usb_dev->config[i];
1000                 if ((epd == NULL) || (epd->bDescriptorType == USB_DT_INTERFACE))
1001                         break;
1002                 if (epd->bDescriptorType != USB_DT_ENDPOINT)
1003                         continue;
1004                 if (UNLIKELY(usb_ep_configure(epd, enable) < 0))
1005                 {
1006                         LOG_ERR("%s: out of memory, can't initialize EP\n",
1007                                 __func__);
1008                         return;
1009                 }
1010         }
1011 }
1012
1013 /* Set device state */
1014 static void usb_set_device_state(int state)
1015 {
1016         unsigned int i;
1017
1018         LOG_INFO("%s: new state %d\n", __func__, state);
1019
1020         if (udc.state == USB_STATE_CONFIGURED)
1021         {
1022                 /* Deconfigure device */
1023                 for (i = 0; i < udc.interfaces; ++i)
1024                         usb_configure_ep_interface(i,
1025                                 udc.alt[i], false);
1026         }
1027         switch (state)
1028         {
1029         case USB_STATE_ATTACHED:
1030         case USB_STATE_POWERED:
1031         case USB_STATE_DEFAULT:
1032                 usb_set_address(0);
1033                 usb_dev->configured = false;
1034                 udc.address = udc.cfg_id = 0;
1035                 break;
1036         case USB_STATE_ADDRESS:
1037                 udc.cfg_id = 0;
1038                 break;
1039         case USB_STATE_CONFIGURED:
1040                 /* Configure device */
1041                 for (i = 0; i < udc.interfaces; ++i)
1042                         usb_configure_ep_interface(i,
1043                                 udc.alt[i], true);
1044                 break;
1045         default:
1046                 /* Unknown state: disconnected or connection in progress */
1047                 usb_dev->configured = false;
1048                 udc.address = 0;
1049                 udc.cfg_id = 0;
1050                 break;
1051         }
1052         udc.state = state;
1053 }
1054
1055 /* Setup packet: set address status phase end handler */
1056 static void usb_add_status_handler_end(UNUSED_ARG(int, EP))
1057 {
1058         uint16_t w_value;
1059
1060         w_value = usb_le16_to_cpu(setup_packet.wValue);
1061         udc.address = w_value & 0xff;
1062         usb_set_address(udc.address);
1063
1064         if (udc.address)
1065                 usb_set_device_state(USB_STATE_ADDRESS);
1066         else
1067                 usb_set_device_state(USB_STATE_DEFAULT);
1068
1069         __usb_ep_write(CTRL_ENP_IN, NULL, -1, NULL);
1070         __usb_ep_read(CTRL_ENP_OUT, NULL, -1, NULL);
1071 }
1072
1073 /* Prepare status phase */
1074 static void usb_status_phase(bool in)
1075 {
1076         if (in)
1077                 __usb_ep_write(CTRL_ENP_IN, NULL, 0, NULL);
1078 }
1079
1080 /* Setup packet: status phase end handler */
1081 static void usb_status_handler_end(UNUSED_ARG(int, EP))
1082 {
1083         __usb_ep_write(CTRL_ENP_IN, NULL, -1, NULL);
1084         __usb_ep_read(CTRL_ENP_OUT, NULL, -1, NULL);
1085 }
1086
1087 /* Address status handler */
1088 static void usb_status_handler(UNUSED_ARG(int, EP))
1089 {
1090         if (setup_packet.mRequestType & USB_DIR_IN)
1091         {
1092                 usb_status_phase(false);
1093                 ep_cnfg[CTRL_ENP_OUT].complete = usb_status_handler_end;
1094         }
1095         else
1096         {
1097                 usb_status_phase(true);
1098                 ep_cnfg[CTRL_ENP_IN].complete =
1099                         (setup_packet.bRequest == USB_REQ_SET_ADDRESS) ?
1100                                 usb_add_status_handler_end :
1101                                 usb_status_handler_end;
1102         }
1103 }
1104
1105 static void usb_endpointRead_complete(int ep)
1106 {
1107         if (UNLIKELY(ep >= ENP_MAX_NUMB))
1108         {
1109                 ASSERT(0);
1110                 return;
1111         }
1112         ASSERT(!(ep & 0x01));
1113
1114         rx_done = true;
1115         rx_size = ep_cnfg[ep].size;
1116 }
1117
1118 ssize_t usb_endpointRead(int ep, void *buffer, ssize_t size)
1119 {
1120         int ep_num = usb_ep_logical_to_hw(ep);
1121         ssize_t max_size = sizeof(rx_buffer);
1122
1123         /* Non-blocking read for EP0 */
1124         if (ep_num == CTRL_ENP_OUT)
1125         {
1126                 size = usb_size(size, usb_le16_to_cpu(setup_packet.wLength));
1127                 if (UNLIKELY(size > max_size))
1128                 {
1129                         LOG_ERR("%s: rx_buffer exceeded, try to enlarge CONFIG_USB_RXBUFSIZE\n",
1130                                         __func__);
1131                         ASSERT(0);
1132                         return -USB_BUF_OVERFLOW;
1133                 }
1134                 if (!size)
1135                         usb_status_handler(ep_num);
1136                 else
1137                 {
1138                         __usb_ep_read(ep_num, rx_buffer, size,
1139                                         usb_status_handler);
1140                         memcpy(buffer, rx_buffer, size);
1141                 }
1142                 return size;
1143         }
1144         if (UNLIKELY(!size))
1145                 return 0;
1146         size = MIN(size, max_size);
1147         rx_done = false;
1148         rx_size = 0;
1149
1150         /* Blocking read */
1151         __usb_ep_read(ep_num, rx_buffer, size, usb_endpointRead_complete);
1152         while (!rx_done)
1153                 cpu_relax();
1154         memcpy(buffer, rx_buffer, rx_size);
1155
1156         return rx_size;
1157 }
1158
1159 static void usb_endpointWrite_complete(int ep)
1160 {
1161         if (UNLIKELY(ep >= ENP_MAX_NUMB))
1162         {
1163                 ASSERT(0);
1164                 return;
1165         }
1166         ASSERT(ep & 0x01);
1167
1168         tx_done = true;
1169         tx_size = ep_cnfg[ep].size;
1170 }
1171
1172 ssize_t usb_endpointWrite(int ep, const void *buffer, ssize_t size)
1173 {
1174         int ep_num = usb_ep_logical_to_hw(ep);
1175         ssize_t max_size = sizeof(tx_buffer);
1176
1177         /* Non-blocking write for EP0 */
1178         if (ep_num == CTRL_ENP_IN)
1179         {
1180                 size = usb_size(size, usb_le16_to_cpu(setup_packet.wLength));
1181                 if (UNLIKELY(size > max_size))
1182                 {
1183                         LOG_ERR("%s: tx_buffer exceeded, try to enlarge CONFIG_USB_TXBUFSIZE\n",
1184                                         __func__);
1185                         ASSERT(0);
1186                         return -USB_BUF_OVERFLOW;
1187                 }
1188                 if (!size)
1189                         usb_status_handler(ep_num);
1190                 else
1191                 {
1192                         memcpy(tx_buffer, buffer, size);
1193                         __usb_ep_write(ep_num, tx_buffer, size,
1194                                         usb_status_handler);
1195                 }
1196                 return size;
1197         }
1198         if (UNLIKELY(!size))
1199                 return 0;
1200         size = MIN(size, max_size);
1201         tx_done = false;
1202         tx_size = 0;
1203
1204         /* Blocking write */
1205         memcpy(tx_buffer, buffer, size);
1206         __usb_ep_write(ep_num, tx_buffer, size, usb_endpointWrite_complete);
1207         while (!tx_done)
1208                 cpu_relax();
1209
1210         return tx_size;
1211 }
1212
1213 /* Global variable to handle the following non-blocking I/O operations */
1214 static uint32_t InData;
1215
1216 /* Get device status */
1217 static int usb_send_device_status(uint16_t index)
1218 {
1219         if (index)
1220                 return -USB_NODEV_ERROR;
1221
1222         InData = ((uint32_t)udc.feature) & 0xff;
1223         __usb_ep_write(CTRL_ENP_IN,
1224                         (uint8_t *)&InData, sizeof(uint16_t),
1225                         usb_status_handler);
1226         return 0;
1227 }
1228
1229 /* Get interface status */
1230 static int usb_send_interface_status(UNUSED_ARG(uint16_t, index))
1231 {
1232         InData = 0;
1233         __usb_ep_write(CTRL_ENP_IN,
1234                         (uint8_t *)&InData, sizeof(uint16_t),
1235                         usb_status_handler);
1236         return 0;
1237 }
1238
1239 /* Get endpoint status */
1240 static int usb_send_ep_status(uint16_t index)
1241 {
1242         if ((index & 0x7F) > 16)
1243                 return -USB_NODEV_ERROR;
1244
1245         InData = 0;
1246         usb_ep_get_stall(usb_ep_logical_to_hw(index), (bool *)&InData);
1247         __usb_ep_write(CTRL_ENP_IN,
1248                         (uint8_t *)&InData, sizeof(uint16_t),
1249                         usb_status_handler);
1250         return 0;
1251 }
1252
1253 /* USB setup packet: GET_STATUS request handler */
1254 static void usb_get_status_handler(void)
1255 {
1256         uint16_t w_value = usb_le16_to_cpu(setup_packet.wValue);
1257         uint16_t w_index = usb_le16_to_cpu(setup_packet.wIndex);
1258         uint16_t w_length = usb_le16_to_cpu(setup_packet.wLength);
1259
1260         /* GET_STATUS sanity checks */
1261         if (udc.state < USB_STATE_ADDRESS)
1262         {
1263                 LOG_WARN("%s: bad GET_STATUS request (State=%02x)\n",
1264                                 __func__, udc.state);
1265                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1266                 return;
1267         }
1268         if (w_length != 2)
1269         {
1270                 LOG_WARN("%s: bad GET_STATUS request (wLength.Word=%02x)\n",
1271                                 __func__, w_length);
1272                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1273                 return;
1274         }
1275         if (!(setup_packet.mRequestType & USB_DIR_IN))
1276         {
1277                 LOG_WARN("%s: bad GET_STATUS request (mRequestType=%02x)\n",
1278                                 __func__, setup_packet.mRequestType);
1279                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1280                 return;
1281         }
1282         if (w_value)
1283         {
1284                 LOG_WARN("%s: bad GET_STATUS request (wValue=%02x)\n",
1285                                 __func__, w_value);
1286                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1287                 return;
1288         }
1289
1290         /* Process GET_STATUS request */
1291         switch (setup_packet.mRequestType & USB_RECIP_MASK)
1292         {
1293         case USB_RECIP_DEVICE:
1294                 if (usb_send_device_status(w_index) < 0)
1295                 {
1296                         LOG_WARN("%s: GET_STATUS: invalid UsbRecipientDevice\n",
1297                                         __func__);
1298                         ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1299                         return;
1300                 }
1301                 LOG_INFO("%s: GET_STATUS: mRequestType=%02x (UsbRecipientDevice)\n",
1302                                 __func__, setup_packet.mRequestType);
1303                 break;
1304         case USB_RECIP_INTERFACE:
1305                 if (usb_send_interface_status(w_index) < 0)
1306                 {
1307                         LOG_WARN("%s: GET_STATUS: invalid UsbRecipientInterface\n",
1308                                         __func__);
1309                         ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1310                         return;
1311                 }
1312                 LOG_INFO("%s: GET_STATUS: mRequestType=%02x (UsbRecipientInterface)\n",
1313                                 __func__, setup_packet.mRequestType);
1314                 break;
1315         case USB_RECIP_ENDPOINT:
1316                 if (usb_send_ep_status(w_index) < 0)
1317                 {
1318                         LOG_WARN("%s: GET_STATUS: invalid UsbRecipientEndpoint\n",
1319                                         __func__);
1320                         ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1321                         return;
1322                 }
1323                 LOG_INFO("%s: GET_STATUS: mRequestType=%02x (UsbRecipientEndpoint)\n",
1324                                 __func__, setup_packet.mRequestType);
1325                 break;
1326         default:
1327                 LOG_WARN("%s: GET_STATUS: invalid UsbRecipientEndpoint\n",
1328                                 __func__);
1329                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1330                 break;
1331         }
1332 }
1333
1334 static int usb_get_device_descriptor(int id)
1335 {
1336         if (id)
1337                 return -USB_NODEV_ERROR;
1338
1339         usb_dev->device->bMaxPacketSize0 = USB_EP0_MAX_SIZE;
1340         __usb_ep_write(CTRL_ENP_IN, (const uint8_t *)usb_dev->device,
1341                         usb_size(usb_dev->device->bLength,
1342                                 usb_le16_to_cpu(setup_packet.wLength)),
1343                         usb_status_handler);
1344         return 0;
1345 }
1346
1347 /*
1348  * TODO: refactor this part to remove this temporary buffer.
1349  *
1350  * It would be better to define all the USB descriptors in the right order and
1351  * send them as a contiguous buffer directly from the flash / rodata memory.
1352  */
1353 #define USB_BUFSIZE (128)
1354 static uint8_t usb_cfg_buffer[USB_BUFSIZE];
1355 STATIC_ASSERT(USB_BUFSIZE < (1 << (sizeof(uint16_t) * 8)));
1356
1357 static int usb_get_configuration_descriptor(int id)
1358 {
1359         const UsbConfigDesc **config =
1360                         (const UsbConfigDesc **)usb_dev->config;
1361         uint8_t *p = usb_cfg_buffer;
1362         int i;
1363
1364         /* TODO: support more than one configuration per device */
1365         if (UNLIKELY(id > 0))
1366                 return -USB_NODEV_ERROR;
1367
1368         for (i = 0; config[i]; i++)
1369         {
1370                 memcpy(p, config[i], config[i]->bLength);
1371                 p += config[i]->bLength;
1372
1373                 if (UNLIKELY((p - usb_cfg_buffer) > USB_BUFSIZE))
1374                 {
1375                         ASSERT(0);
1376                         return -USB_BUF_OVERFLOW;
1377                 }
1378         }
1379         ((UsbConfigDesc *)usb_cfg_buffer)->wTotalLength =
1380                         usb_cpu_to_le16((uint16_t)(p - usb_cfg_buffer));
1381         __usb_ep_write(CTRL_ENP_IN,
1382                         usb_cfg_buffer,
1383                         usb_size(p - usb_cfg_buffer,
1384                                 usb_le16_to_cpu(setup_packet.wLength)),
1385                         usb_status_handler);
1386         return 0;
1387 }
1388
1389 static int usb_get_string_descriptor(unsigned int id)
1390 {
1391         const UsbStringDesc *lang_str;
1392         unsigned int lang_id, str_id;
1393         uint16_t w_index_lo = usb_le16_to_cpu(setup_packet.wIndex) & 0x00ff;
1394         uint16_t w_index_hi = (usb_le16_to_cpu(setup_packet.wIndex) &
1395                                                 0xff00) >> 8;
1396
1397         ASSERT(usb_dev->strings != NULL);
1398         ASSERT(usb_dev->strings[0] != NULL);
1399
1400         lang_str = usb_dev->strings[0];
1401         if (id)
1402         {
1403                 /* Find Language index */
1404                 for (lang_id = 0; ; lang_id++)
1405                 {
1406                         const UsbStringDesc *str =
1407                                                 usb_dev->strings[lang_id];
1408                         if (UNLIKELY(str == NULL))
1409                                 return -USB_NODEV_ERROR;
1410                         if ((str->data[0] == w_index_lo) &&
1411                                         (str->data[1] == w_index_hi))
1412                                 break;
1413                 }
1414                 /* Check buffer overflow to find string index */
1415                 for (str_id = 0; str_id < id; str_id++)
1416                 {
1417                         lang_str = usb_dev->strings[lang_id + 1 + str_id];
1418                         if (lang_str == NULL)
1419                                 return -USB_NODEV_ERROR;
1420                 }
1421         }
1422         __usb_ep_write(CTRL_ENP_IN,
1423                         lang_str,
1424                         usb_size(lang_str->bLength,
1425                                 usb_le16_to_cpu(setup_packet.wLength)),
1426                         usb_status_handler);
1427         return 0;
1428 }
1429
1430 static void usb_get_descriptor(void)
1431 {
1432         uint16_t w_value_lo = usb_le16_to_cpu(setup_packet.wValue) & 0x00ff;
1433         uint16_t w_value_hi = (usb_le16_to_cpu(setup_packet.wValue) & 0xff00) >> 8;
1434
1435         if (udc.state < USB_STATE_DEFAULT)
1436         {
1437                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1438                 return;
1439         }
1440         switch (w_value_hi)
1441         {
1442         case USB_DT_DEVICE:
1443                 LOG_INFO("%s: GET_DEVICE_DESCRIPTOR: id=%d, state=%d\n",
1444                                 __func__,
1445                                 w_value_lo,
1446                                 udc.state);
1447                 if (usb_get_device_descriptor(w_value_lo) < 0)
1448                         ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1449                 break;
1450         case USB_DT_CONFIG:
1451                 LOG_INFO("%s: GET_CONFIG_DESCRIPTOR: id=%d, state=%d\n",
1452                                 __func__, w_value_lo, udc.state);
1453                 if (usb_get_configuration_descriptor(w_value_lo) < 0)
1454                         ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1455                 break;
1456         case USB_DT_STRING:
1457                 LOG_INFO("%s: GET_STRING_DESCRIPTOR: id=%d, state=%d\n",
1458                                 __func__, w_value_lo, udc.state);
1459                 if (usb_get_string_descriptor(w_value_lo) < 0)
1460                         ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1461                 break;
1462         default:
1463                 LOG_WARN("%s: GET_UNKNOWN_DESCRIPTOR: id=%d, state=%d\n",
1464                                 __func__, w_value_lo, udc.state);
1465                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1466                 break;
1467         }
1468 }
1469
1470 /* USB setup packet: class/vendor request handler */
1471 static void usb_event_handler(UsbDevice *dev)
1472 {
1473         /*
1474          * TODO: get the appropriate usb_dev in function of the endpoint
1475          * address.
1476          */
1477         if (dev->event_cb)
1478                 dev->event_cb(&setup_packet);
1479 }
1480
1481 /* USB setup packet: GET_DESCRIPTOR handler */
1482 static void usb_get_descriptor_handler(void)
1483 {
1484         LOG_INFO("%s: GET_DESCRIPTOR: RECIP = %d\n",
1485                         __func__,
1486                         setup_packet.mRequestType & USB_RECIP_MASK);
1487         if ((setup_packet.mRequestType & USB_RECIP_MASK) ==
1488                         USB_RECIP_DEVICE)
1489                 usb_get_descriptor();
1490         /* Getting descriptor for a device is a standard request */
1491         else if ((setup_packet.mRequestType & USB_DIR_MASK) == USB_DIR_IN)
1492                 usb_event_handler(usb_dev);
1493         else
1494                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1495 }
1496
1497 /* USB setup packet: SET_ADDRESS handler */
1498 static void usb_set_address_handler(void)
1499 {
1500         uint16_t w_value = usb_le16_to_cpu(setup_packet.wValue);
1501         uint16_t w_index = usb_le16_to_cpu(setup_packet.wIndex);
1502         uint16_t w_length = usb_le16_to_cpu(setup_packet.wLength);
1503
1504         LOG_INFO("%s: SET_ADDRESS: %d\n",
1505                         __func__, usb_le16_to_cpu(setup_packet.wValue));
1506         if ((udc.state >= USB_STATE_DEFAULT) &&
1507                         ((setup_packet.mRequestType & USB_RECIP_MASK) ==
1508                                         USB_RECIP_DEVICE) &&
1509                         (w_index == 0) && (w_length == 0) && (w_value < 128))
1510                 usb_status_handler(CTRL_ENP_IN);
1511         else
1512                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1513 }
1514
1515 /* USB setup packet: GET_CONFIGURATION handler */
1516 static void usb_get_config_handler(void)
1517 {
1518         uint16_t w_value = usb_le16_to_cpu(setup_packet.wValue);
1519         uint16_t w_index = usb_le16_to_cpu(setup_packet.wIndex);
1520
1521         LOG_INFO("%s: GET_CONFIGURATION\n", __func__);
1522         if ((udc.state >= USB_STATE_ADDRESS) &&
1523                         (w_value == 0) && (w_index == 0) && (w_value == 1))
1524         {
1525                 InData = udc.cfg_id;
1526                 __usb_ep_write(CTRL_ENP_IN, (uint8_t *)&InData, 1, usb_status_handler);
1527         }
1528         else
1529                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1530 }
1531
1532 static const UsbConfigDesc *usb_find_configuration(int num)
1533 {
1534         const UsbConfigDesc *cfg;
1535         int i;
1536
1537         for (i = 0; ; i++)
1538         {
1539                 cfg = (const UsbConfigDesc *)usb_dev->config[i];
1540                 if (cfg == NULL)
1541                         break;
1542                 if (cfg->bDescriptorType != USB_DT_CONFIG)
1543                         continue;
1544                 if (cfg->bConfigurationValue == num)
1545                         return cfg;
1546         }
1547         return NULL;
1548 }
1549
1550 static int usb_set_config_state(uint32_t conf)
1551 {
1552         const UsbConfigDesc *pCnfg;
1553         unsigned int i;
1554
1555         if (conf)
1556         {
1557                 /* Find configuration descriptor */
1558                 pCnfg = usb_find_configuration(conf);
1559                 if (pCnfg == NULL)
1560                         return -USB_NODEV_ERROR;
1561
1562                 /* Reset current configuration */
1563                 usb_set_device_state(USB_STATE_ADDRESS);
1564                 usb_dev->configured = false;
1565                 udc.cfg = pCnfg;
1566
1567                 /* Set Interface and Alternative Setting */
1568                 udc.cfg_id = conf;
1569                 /* Set self-powered state */
1570                 if (pCnfg->bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1571                         udc.feature |= STM32_UDC_FEATURE_SELFPOWERED;
1572
1573                 /* Configure all existing interfaces to alternative setting 0 */
1574                 ASSERT(pCnfg->bNumInterfaces <= USB_MAX_INTERFACE);
1575                 udc.interfaces = pCnfg->bNumInterfaces;
1576                 for (i = 0; i < udc.interfaces; i++)
1577                         udc.alt[i] = 0;
1578                 usb_set_device_state(USB_STATE_CONFIGURED);
1579                 usb_dev->configured = true;
1580                 LOG_INFO("%s: device configured\n", __func__);
1581         }
1582         else
1583         {
1584                 usb_dev->configured = false;
1585                 usb_set_device_state(USB_STATE_ADDRESS);
1586         }
1587         return 0;
1588 }
1589
1590 /* USB setup packet: SET_CONFIGURATION handler */
1591 static void usb_set_config_handler(void)
1592 {
1593         uint16_t w_value = usb_le16_to_cpu(setup_packet.wValue);
1594         uint16_t w_index = usb_le16_to_cpu(setup_packet.wIndex);
1595         uint16_t w_length = usb_le16_to_cpu(setup_packet.wLength);
1596
1597         LOG_INFO("%s: SET_CONFIGURATION: %d\n",
1598                         __func__, w_value);
1599         if ((udc.state >= USB_STATE_ADDRESS) &&
1600                         (w_index == 0) && (w_length == 0) &&
1601                         (usb_set_config_state(w_value & 0xff) == 0))
1602                 usb_status_handler(CTRL_ENP_OUT);
1603         else
1604                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1605 }
1606
1607 /* USB setup packet: standard request handler */
1608 static void usb_standard_request_handler(void)
1609 {
1610         switch (setup_packet.bRequest)
1611         {
1612         case USB_REQ_GET_STATUS:
1613                 usb_get_status_handler();
1614                 break;
1615         case USB_REQ_CLEAR_FEATURE:
1616                 LOG_INFO("%s: bRequest=%d (CLEAR_FEATURE)\n",
1617                                 __func__, setup_packet.bRequest);
1618                 break;
1619         case USB_REQ_SET_FEATURE:
1620                 LOG_INFO("%s: bRequest=%d (SET_FEATURE)\n",
1621                                 __func__, setup_packet.bRequest);
1622                 break;
1623         case USB_REQ_SET_ADDRESS:
1624                 usb_set_address_handler();
1625                 break;
1626         case USB_REQ_GET_DESCRIPTOR:
1627                 usb_get_descriptor_handler();
1628                 break;
1629         case USB_REQ_SET_DESCRIPTOR:
1630                 LOG_INFO("%s: bRequest=%d (SET_DESCRIPTOR)\n",
1631                                 __func__, setup_packet.bRequest);
1632                 break;
1633         case USB_REQ_GET_CONFIGURATION:
1634                 usb_get_config_handler();
1635                 break;
1636         case USB_REQ_SET_CONFIGURATION:
1637                 usb_set_config_handler();
1638                 break;
1639         case USB_REQ_GET_INTERFACE:
1640                 LOG_INFO("%s: bRequest=%d (GET_INTERFACE)\n",
1641                                 __func__, setup_packet.bRequest);
1642                 break;
1643         case USB_REQ_SET_INTERFACE:
1644                 LOG_INFO("%s: bRequest=%d (SET_INTERFACE)\n",
1645                                 __func__, setup_packet.bRequest);
1646                 break;
1647         case USB_REQ_SYNCH_FRAME:
1648                 LOG_INFO("%s: bRequest=%d (SYNCH_FRAME)\n",
1649                                 __func__, setup_packet.bRequest);
1650                 break;
1651         default:
1652                 LOG_WARN("%s: bRequest=%d (Unknown)\n",
1653                                 __func__, setup_packet.bRequest);
1654                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1655                 break;
1656         }
1657 }
1658
1659 /* USB setup packet handler */
1660 static void usb_setup_handler(void)
1661 {
1662         switch (setup_packet.mRequestType & USB_TYPE_MASK)
1663         {
1664         /* Standard */
1665         case USB_TYPE_STANDARD:
1666                 LOG_INFO("%s: bmRequestType=%02x (Standard)\n",
1667                                 __func__, setup_packet.mRequestType);
1668                 usb_standard_request_handler();
1669                 break;
1670         /* Class */
1671         case USB_TYPE_CLASS:
1672                 LOG_INFO("%s: bmRequestType=%02x (Class)\n",
1673                                 __func__, setup_packet.mRequestType);
1674                 usb_event_handler(usb_dev);
1675                 break;
1676         /* Vendor */
1677         case USB_TYPE_VENDOR:
1678                 LOG_INFO("%s: bmRequestType=%02x (Vendor)\n",
1679                                 __func__, setup_packet.mRequestType);
1680                 usb_event_handler(usb_dev);
1681                 break;
1682         case USB_TYPE_RESERVED:
1683                 LOG_INFO("%s: bmRequestType=%02x (Reserved)\n",
1684                                 __func__, setup_packet.mRequestType);
1685                 break;
1686         /* Other */
1687         default:
1688                 LOG_WARN("%s: bmRequestType=%02x (Unknown)\n",
1689                                 __func__, setup_packet.mRequestType);
1690                 ep_cnfg[CTRL_ENP_OUT].status = STALLED;
1691                 break;
1692         }
1693 }
1694
1695 /* USB: low-level hardware initialization */
1696 static void usb_hw_reset(void)
1697 {
1698         unsigned int i;
1699         int ret;
1700
1701         /* Initialize endpoint descriptors */
1702         for (i = 0; i < countof(ep_cnfg); i++)
1703                 ep_cnfg[i].hw = NULL;
1704
1705         /* Initialize USB memory */
1706         for (i = 0; i < countof(memory_buffer); i++)
1707                 memory_buffer[i].Size = 0;
1708         usb->BTABLE = USB_BDT_OFFSET;
1709         mem_use = NULL;
1710
1711         /* Endpoint initialization */
1712         ret = usb_ep_configure(&USB_CtrlEpDescr0, true);
1713         if (UNLIKELY(ret < 0))
1714         {
1715                 LOG_WARN("%s: out of memory, cannot initialize EP0\n",
1716                                 __func__);
1717                 return;
1718         }
1719         ret = usb_ep_configure(&USB_CtrlEpDescr1, true);
1720         if (UNLIKELY(ret < 0))
1721         {
1722                 LOG_WARN("%s: out of memory, cannot initialize EP1\n",
1723                                 __func__);
1724                 return;
1725         }
1726
1727         /* Set default address */
1728         usb_set_address(0);
1729
1730         /* Enable all the device interrupts */
1731         usb->CNTR = bmCTRM | bmRESETM | bmSOFM | bmERRM | bmPMAOVRM |
1732                         bmSUSPM | bmWKUPM;
1733 }
1734
1735 /* Handle a correct transfer under ISR */
1736 static void usb_isr_correct_transfer(stm32_usb_irq_status_t interrupt)
1737 {
1738         int EP;
1739         reg32_t *pReg = (reg32_t *)&usb->EP0R;
1740
1741         /* Find corresponding EP */
1742         pReg += interrupt.EP_ID;
1743         EP = (int)(((*pReg & 0x0f) << 1) + (interrupt.DIR ? 0 : 1));
1744         ep_cnfg[EP].avail_data = 1;
1745
1746         ASSERT(ep_cnfg[EP].hw);
1747         /* IN EP */
1748         if (EP & 0x01)
1749                 ep_ctrl_clr_ctr_tx(ep_cnfg[EP].hw);
1750         else
1751                 ep_ctrl_clr_ctr_rx(ep_cnfg[EP].hw);
1752         if (EP == CTRL_ENP_OUT)
1753         {
1754                 /* Determinate type of packet (only for control EP) */
1755                 bool SetupPacket = ep_ctrl_get_setup(ep_cnfg[CTRL_ENP_OUT].hw);
1756
1757                 if (SetupPacket)
1758                 {
1759                         ep_cnfg[CTRL_ENP_IN].avail_data = 1;
1760                         /* init IO to receive Setup packet */
1761                         __usb_ep_write(CTRL_ENP_IN, NULL, -1, NULL);
1762                         __usb_ep_read(CTRL_ENP_OUT, &setup_packet,
1763                                         sizeof(setup_packet), NULL);
1764
1765                         /* reset EP IO ctrl */
1766                         if (setup_packet.mRequestType & USB_DIR_IN)
1767                                 usb_status_handler(CTRL_ENP_OUT);
1768                         usb_setup_handler();
1769                         if (ep_cnfg[CTRL_ENP_OUT].status == STALLED)
1770                                 usb_ep_set_stall_ctrl();
1771                 }
1772                 else
1773                 {
1774                         if (ep_cnfg[CTRL_ENP_OUT].complete &&
1775                                         setup_packet.mRequestType & USB_DIR_IN)
1776                                 ep_cnfg[CTRL_ENP_OUT].complete(CTRL_ENP_OUT);
1777                         else
1778                                 __usb_ep_io(EP);
1779                 }
1780         }
1781         else if (EP == CTRL_ENP_IN)
1782         {
1783                 if (ep_cnfg[CTRL_ENP_IN].complete &&
1784                                 !(setup_packet.mRequestType & USB_DIR_IN))
1785                         ep_cnfg[CTRL_ENP_IN].complete(CTRL_ENP_IN);
1786                 else
1787                         __usb_ep_io(EP);
1788
1789         }
1790         else
1791                 __usb_ep_io(EP);
1792 }
1793
1794 /* USB: interrupt service routine */
1795 static void usb_isr(void)
1796 {
1797         stm32_usb_irq_status_t interrupt;
1798
1799         /* Get masked interrupt flags */
1800         interrupt.status = usb->ISTR;
1801         interrupt.status &= usb->CNTR | 0x1f;
1802
1803         if (interrupt.PMAOVR)
1804         {
1805                 LOG_WARN("%s: DMA overrun / underrun\n", __func__);
1806                 usb->ISTR = ~bmPMAOVRM;
1807         }
1808         if (interrupt.ERR)
1809         {
1810                 LOG_WARN("%s: engine error\n", __func__);
1811                 usb->ISTR = ~bmERRM;
1812         }
1813         if (interrupt.RESET)
1814         {
1815                 LOG_INFO("%s: device reset\n", __func__);
1816                 usb->ISTR = ~bmRESETM;
1817                 usb_hw_reset();
1818                 usb_set_device_state(USB_STATE_DEFAULT);
1819         }
1820         if (interrupt.SOF)
1821         {
1822 #if 0
1823                 /*
1824                  * XXX: disable logging of frame interrupts (too much noise!)
1825                  */
1826                 uint16_t frame_nr = usb->FNR & 0x0fff;
1827                 LOG_INFO("%s: frame %#x\n", __func__, frame_nr);
1828 #endif
1829                 usb->ISTR = ~bmSOFM;
1830         }
1831         if (interrupt.WKUP)
1832         {
1833                 LOG_INFO("%s: wake-up\n", __func__);
1834                 usb->ISTR = ~(bmSUSPM | bmWKUPM);
1835                 usb_resume();
1836         }
1837         if (interrupt.SUSP)
1838         {
1839                 LOG_INFO("%s: suspend\n", __func__);
1840                 usb_suspend();
1841                 usb->ISTR = ~(bmSUSPM | bmWKUPM);
1842         }
1843         if (interrupt.ESOF)
1844         {
1845                 LOG_INFO("%s: expected frame\n", __func__);
1846                 usb->ISTR = ~bmESOFM;
1847         }
1848         if (interrupt.CTR)
1849         {
1850                 usb_isr_correct_transfer(interrupt);
1851         }
1852 }
1853
1854 /* USB: hardware initialization */
1855 static void usb_hw_init(void)
1856 {
1857         /* Enable clocking on the required GPIO pins */
1858         RCC->APB2ENR |= RCC_APB2_GPIOA | RCC_APB2_GPIOC;
1859
1860         /* Make sure that the CAN controller is disabled and held in reset */
1861         RCC->APB1ENR &= ~RCC_APB1_CAN;
1862
1863         /* Configure USB_DM and USB_DP to work as USB lines */
1864         stm32_gpioPinConfig((struct stm32_gpio *)GPIOA_BASE,
1865                         USB_DM_PIN | USB_DP_PIN,
1866                         GPIO_MODE_AF_PP, GPIO_SPEED_50MHZ);
1867         /* Configure USB_DISC to work as USB disconnect */
1868         stm32_gpioPinConfig((struct stm32_gpio *)GPIOC_BASE,
1869                         USB_DISC_PIN,
1870                         GPIO_MODE_OUT_PP, GPIO_SPEED_50MHZ);
1871         stm32_gpioPinWrite((struct stm32_gpio *)GPIOC_BASE,
1872                                 USB_DISC_PIN, 1);
1873
1874         /* Ensure the USB clock is disabled before setting the prescaler */
1875         RCC->APB1ENR &= ~RCC_APB1_USB;
1876
1877         /* Configure USB clock (48MHz) */
1878         *CFGR_USBPRE_BB &= ~RCC_USBCLK_PLLCLK_1DIV5;
1879
1880         /* Activate USB clock */
1881         RCC->APB1ENR |= RCC_APB1_USB;
1882
1883         /* Force USB reset and disable USB interrupts */
1884         usb->CNTR = bmFRES;
1885         timer_delayHp(1);
1886
1887         /* Issue a USB reset */
1888         usb_hw_reset();
1889
1890         /* Clear spurious pending interrupt */
1891         usb->ISTR = 0;
1892
1893         /* Register interrupt handler */
1894         sysirq_setHandler(USB_LP_CAN_RX0_IRQHANDLER, usb_isr);
1895
1896         /* Software connection enable */
1897         usb_connect();
1898 }
1899
1900 /* Initialize the USB controller */
1901 static void usb_init(void)
1902 {
1903         udc.state = USB_STATE_NOTATTACHED;
1904         udc.feature = 0;
1905
1906         usb_hw_init();
1907 }
1908
1909 /* Register an upper layer USB device into the driver */
1910 int usb_deviceRegister(UsbDevice *dev)
1911 {
1912 #if CONFIG_KERN
1913         MOD_CHECK(proc);
1914 #endif
1915         usb_dev = dev;
1916         usb_init();
1917         while (!usb_dev->configured)
1918                 cpu_relax();
1919         return 0;
1920 }