2008-08-26 21:48:49 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 by Maurus Cuelenaere
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "config.h"
|
2008-12-20 01:48:46 +00:00
|
|
|
#define LOGF_ENABLE
|
|
|
|
#include "logf.h"
|
2008-08-26 21:48:49 +00:00
|
|
|
#include "system.h"
|
|
|
|
#include "usb_ch9.h"
|
|
|
|
#include "usb_drv.h"
|
|
|
|
#include "usb_core.h"
|
2008-11-21 12:50:06 +00:00
|
|
|
#include "usb-target.h"
|
2008-08-26 21:48:49 +00:00
|
|
|
#include "jz4740.h"
|
|
|
|
#include "thread.h"
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
#define USB_EP0_IDLE 0
|
|
|
|
#define USB_EP0_RX 1
|
|
|
|
#define USB_EP0_TX 2
|
2008-08-26 21:48:49 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
#define EP_BUF_LEFT(ep) ((ep)->length - (ep)->sent)
|
|
|
|
#define EP_PTR(ep) ((void*)((unsigned int)(ep)->buf + (ep)->sent))
|
|
|
|
#define EP_NUMBER(ep) (((int)(ep) - (int)&endpoints[0])/sizeof(struct usb_endpoint))
|
|
|
|
#define EP_NUMBER2(ep) (EP_NUMBER((ep))/2)
|
2008-12-04 18:26:19 +00:00
|
|
|
#define TOTAL_EP() (sizeof(endpoints)/sizeof(struct usb_endpoint))
|
2008-12-31 01:11:04 +00:00
|
|
|
#define EP_IS_IN(ep) (EP_NUMBER((ep))%2)
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
enum ep_type
|
|
|
|
{
|
|
|
|
ep_control, ep_bulk, ep_interrupt
|
|
|
|
};
|
|
|
|
|
|
|
|
struct usb_endpoint
|
|
|
|
{
|
|
|
|
void *buf;
|
|
|
|
unsigned int length;
|
2008-12-04 18:26:19 +00:00
|
|
|
union
|
|
|
|
{
|
|
|
|
unsigned int sent;
|
|
|
|
unsigned int received;
|
|
|
|
};
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
const enum ep_type type;
|
|
|
|
const bool use_dma;
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
const unsigned int fifo_addr;
|
2008-11-05 00:24:46 +00:00
|
|
|
unsigned short fifo_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned char ep0_rx_buf[64];
|
|
|
|
static unsigned char ep0state = USB_EP0_IDLE;
|
|
|
|
static struct usb_endpoint endpoints[] =
|
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
/* buf length sent type use_dma fifo_addr fifo_size */
|
2008-12-04 18:26:19 +00:00
|
|
|
{&ep0_rx_buf, 0, {0}, ep_control, false, USB_FIFO_EP0, 64 },
|
|
|
|
{NULL, 0, {0}, ep_control, false, USB_FIFO_EP0, 64 },
|
2008-12-31 01:11:04 +00:00
|
|
|
{NULL, 0, {0}, ep_bulk, false, USB_FIFO_EP1, 512},
|
|
|
|
{NULL, 0, {0}, ep_bulk, false, USB_FIFO_EP1, 512},
|
2008-12-04 18:26:19 +00:00
|
|
|
{NULL, 0, {0}, ep_interrupt, false, USB_FIFO_EP2, 64 }
|
2008-11-05 00:24:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline void select_endpoint(int ep)
|
|
|
|
{
|
|
|
|
REG_USB_REG_INDEX = ep;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void readFIFO(struct usb_endpoint *ep, unsigned int size)
|
2008-12-04 18:26:19 +00:00
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
logf("readFIFO(EP%d, %d)", EP_NUMBER2(ep), size);
|
2008-12-04 18:26:19 +00:00
|
|
|
|
|
|
|
register unsigned char *ptr = (unsigned char*)EP_PTR(ep);
|
|
|
|
register unsigned int *ptr32 = (unsigned int*)ptr;
|
2008-12-04 19:44:03 +00:00
|
|
|
register unsigned int s = size >> 2;
|
2008-12-04 18:26:19 +00:00
|
|
|
register unsigned int x;
|
|
|
|
|
|
|
|
if(size > 0)
|
|
|
|
{
|
|
|
|
if( ((int)ptr & 3) == 0 )
|
|
|
|
{
|
|
|
|
while(s--)
|
|
|
|
*ptr32++ = REG32(ep->fifo_addr);
|
|
|
|
|
|
|
|
ptr = (unsigned char*)ptr32;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while(s--)
|
|
|
|
{
|
|
|
|
x = REG32(ep->fifo_addr);
|
|
|
|
*ptr++ = (x >> 0) & 0xff;
|
|
|
|
*ptr++ = (x >> 8) & 0xff;
|
|
|
|
*ptr++ = (x >> 16) & 0xff;
|
|
|
|
*ptr++ = (x >> 24) & 0xff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
s = size & 3;
|
|
|
|
while(s--)
|
|
|
|
*ptr++ = REG8(ep->fifo_addr);
|
|
|
|
}
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void writeFIFO(struct usb_endpoint *ep, unsigned int size)
|
2008-12-04 18:26:19 +00:00
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
//logf("writeFIFO(EP%d, %d)", EP_NUMBER2(ep), size);
|
2008-12-04 18:26:19 +00:00
|
|
|
|
|
|
|
register unsigned int *d = (unsigned int *)EP_PTR(ep);
|
|
|
|
register unsigned char *c;
|
|
|
|
register int s;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
if(size > 0)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
s = size >> 2;
|
|
|
|
while (s--)
|
|
|
|
REG32(ep->fifo_addr) = *d++;
|
2008-12-04 18:26:19 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
if( (s = size & 3) )
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
c = (unsigned char *)d;
|
2008-12-04 18:26:19 +00:00
|
|
|
while (s--)
|
2008-11-05 00:24:46 +00:00
|
|
|
REG8(ep->fifo_addr) = *c++;
|
|
|
|
}
|
|
|
|
}
|
2008-12-20 01:48:46 +00:00
|
|
|
else
|
|
|
|
REG32(ep->fifo_addr) = 0;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
static void flushFIFO(struct usb_endpoint *ep)
|
|
|
|
{
|
|
|
|
//logf("flushFIFO(%d)", EP_NUMBER(ep));
|
|
|
|
|
|
|
|
switch (ep->type)
|
|
|
|
{
|
|
|
|
case ep_control:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ep_bulk:
|
|
|
|
case ep_interrupt:
|
|
|
|
if(EP_IS_IN(ep))
|
|
|
|
REG_USB_REG_INCSR |= USB_INCSR_FF;
|
|
|
|
else
|
|
|
|
REG_USB_REG_OUTCSR |= USB_OUTCSR_FF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
static void EP0_send(void)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2008-12-04 18:26:19 +00:00
|
|
|
register struct usb_endpoint* ep = &endpoints[1];
|
|
|
|
register unsigned int length;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
if(ep->length == 0)
|
|
|
|
{
|
|
|
|
select_endpoint(0);
|
|
|
|
REG_USB_REG_CSR0 |= (USB_CSR0_SVDOUTPKTRDY | USB_CSR0_DATAEND);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
if(ep->sent == 0)
|
|
|
|
length = (ep->length <= ep->fifo_size ? ep->length : ep->fifo_size);
|
2008-11-05 00:24:46 +00:00
|
|
|
else
|
2008-12-04 18:26:19 +00:00
|
|
|
length = (EP_BUF_LEFT(ep) <= ep->fifo_size ? EP_BUF_LEFT(ep) : ep->fifo_size);
|
|
|
|
|
2008-12-20 01:48:46 +00:00
|
|
|
select_endpoint(0);
|
2008-12-04 18:26:19 +00:00
|
|
|
writeFIFO(ep, length);
|
|
|
|
ep->sent += length;
|
|
|
|
|
|
|
|
if(ep->sent >= ep->length)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2008-12-04 18:26:19 +00:00
|
|
|
REG_USB_REG_CSR0 |= (USB_CSR0_INPKTRDY | USB_CSR0_DATAEND); /* Set data end! */
|
|
|
|
ep0state = USB_EP0_IDLE;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
2008-12-04 18:26:19 +00:00
|
|
|
else
|
|
|
|
REG_USB_REG_CSR0 |= USB_CSR0_INPKTRDY;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void EP0_handler(void)
|
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
logf("EP0_handler");
|
2008-12-04 18:26:19 +00:00
|
|
|
register unsigned char csr0;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
/* Read CSR0 */
|
|
|
|
select_endpoint(0);
|
|
|
|
csr0 = REG_USB_REG_CSR0;
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
/* Check for SentStall:
|
|
|
|
This bit is set when a STALL handshake is transmitted. The CPU should clear this bit.
|
2008-11-05 00:24:46 +00:00
|
|
|
*/
|
|
|
|
if (csr0 & USB_CSR0_SENTSTALL)
|
|
|
|
{
|
2008-12-04 18:26:19 +00:00
|
|
|
REG_USB_REG_CSR0 &= ~USB_CSR0_SENTSTALL;
|
2008-11-05 00:24:46 +00:00
|
|
|
ep0state = USB_EP0_IDLE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
/* Check for SetupEnd:
|
|
|
|
This bit will be set when a control transaction ends before the DataEnd bit has been set.
|
|
|
|
An interrupt will be generated and the FIFO flushed at this time.
|
|
|
|
The bit is cleared by the CPU writing a 1 to the ServicedSetupEnd bit.
|
|
|
|
*/
|
2008-11-05 00:24:46 +00:00
|
|
|
if (csr0 & USB_CSR0_SETUPEND)
|
|
|
|
{
|
|
|
|
REG_USB_REG_CSR0 |= USB_CSR0_SVDSETUPEND;
|
|
|
|
ep0state = USB_EP0_IDLE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Call relevant routines for endpoint 0 state */
|
|
|
|
if (ep0state == USB_EP0_IDLE)
|
|
|
|
{
|
|
|
|
if (csr0 & USB_CSR0_OUTPKTRDY) /* There is data in the fifo */
|
|
|
|
{
|
2008-12-04 18:26:19 +00:00
|
|
|
readFIFO(&endpoints[0], REG_USB_REG_COUNT0);
|
|
|
|
REG_USB_REG_CSR0 |= USB_CSR0_SVDOUTPKTRDY; /* clear OUTPKTRDY bit */
|
2008-11-05 00:24:46 +00:00
|
|
|
usb_core_control_request((struct usb_ctrlrequest*)endpoints[0].buf);
|
|
|
|
}
|
|
|
|
}
|
2008-12-04 18:26:19 +00:00
|
|
|
else if (ep0state == USB_EP0_TX)
|
|
|
|
EP0_send();
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
static void EPIN_handler(unsigned int endpoint)
|
|
|
|
{
|
|
|
|
logf("EPIN_handler(%d)", endpoint);
|
|
|
|
struct usb_endpoint* ep = &endpoints[endpoint*2+1];
|
|
|
|
unsigned int length, csr;
|
|
|
|
|
|
|
|
select_endpoint(endpoint);
|
|
|
|
csr = REG_USB_REG_INCSR;
|
|
|
|
|
|
|
|
if(ep->length == 0)
|
|
|
|
{
|
|
|
|
REG_USB_REG_INCSR = csr | USB_INCSR_INPKTRDY;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(csr & USB_INCSR_SENTSTALL)
|
|
|
|
{
|
|
|
|
REG_USB_REG_INCSR = csr & ~USB_INCSR_SENTSTALL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ep->sent == 0)
|
|
|
|
length = (ep->length <= ep->fifo_size ? ep->length : ep->fifo_size);
|
|
|
|
else
|
|
|
|
length = (EP_BUF_LEFT(ep) <= ep->fifo_size ? EP_BUF_LEFT(ep) : ep->fifo_size);
|
|
|
|
|
|
|
|
writeFIFO(ep, length);
|
|
|
|
ep->sent += length;
|
|
|
|
|
|
|
|
REG_USB_REG_INCSR = csr | USB_INCSR_INPKTRDY;
|
|
|
|
if(ep->sent >= ep->length)
|
|
|
|
usb_core_transfer_complete(endpoint|USB_DIR_IN, USB_DIR_IN, 0, ep->sent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EPOUT_handler(unsigned int endpoint)
|
|
|
|
{
|
|
|
|
logf("EPOUT_handler(%d)", endpoint);
|
|
|
|
struct usb_endpoint* ep = &endpoints[endpoint*2];
|
|
|
|
unsigned int size, csr;
|
|
|
|
|
|
|
|
select_endpoint(endpoint);
|
|
|
|
csr = REG_USB_REG_OUTCSR;
|
|
|
|
|
|
|
|
if(ep->buf == NULL && ep->length == 0)
|
|
|
|
{
|
|
|
|
REG_USB_REG_OUTCSR = csr & ~USB_OUTCSR_OUTPKTRDY;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(csr & USB_OUTCSR_SENTSTALL)
|
|
|
|
{
|
|
|
|
REG_USB_REG_OUTCSR = csr & ~USB_OUTCSR_SENTSTALL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = REG_USB_REG_OUTCOUNT;
|
|
|
|
ep->received += size;
|
|
|
|
|
|
|
|
readFIFO(ep, size);
|
|
|
|
|
|
|
|
REG_USB_REG_OUTCSR = csr & ~USB_OUTCSR_OUTPKTRDY;
|
|
|
|
|
|
|
|
logf("received: %d length: %d", ep->received, ep->length);
|
|
|
|
|
|
|
|
//if(ep->received >= ep->length)
|
|
|
|
usb_core_transfer_complete(endpoint|USB_DIR_OUT, USB_DIR_OUT, 0, ep->received);
|
|
|
|
}
|
|
|
|
|
2008-11-05 00:24:46 +00:00
|
|
|
static void setup_endpoint(struct usb_endpoint *ep)
|
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
int csr;
|
2008-12-04 18:26:19 +00:00
|
|
|
ep->sent = 0;
|
2008-11-05 00:24:46 +00:00
|
|
|
ep->length = 0;
|
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
select_endpoint(EP_NUMBER2(ep));
|
|
|
|
|
|
|
|
if(ep->type == ep_bulk)
|
|
|
|
{
|
|
|
|
if(REG_USB_REG_POWER & USB_POWER_HSMODE)
|
|
|
|
ep->fifo_size = 512;
|
|
|
|
else
|
|
|
|
ep->fifo_size = 64;
|
|
|
|
}
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
if(EP_IS_IN(ep))
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
REG_USB_REG_INMAXP = ep->fifo_size;
|
|
|
|
csr = (USB_INCSR_FF | USB_INCSR_CDT | USB_INCSRH_MODE);
|
|
|
|
if(ep->use_dma)
|
|
|
|
csr |= (USB_INCSRH_DMAREQENAB | USB_INCSRH_AUTOSET);
|
2008-11-05 00:24:46 +00:00
|
|
|
else
|
2008-12-31 01:11:04 +00:00
|
|
|
REG_USB_REG_INTRINE |= USB_INTR_EP(EP_NUMBER2(ep));
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
REG_USB_REG_INCSR = csr;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
else
|
2008-12-31 01:11:04 +00:00
|
|
|
{
|
2008-11-05 00:24:46 +00:00
|
|
|
REG_USB_REG_OUTMAXP = ep->fifo_size;
|
2008-12-31 01:11:04 +00:00
|
|
|
csr = (USB_OUTCSR_FF | USB_OUTCSR_CDT);
|
|
|
|
|
|
|
|
if(ep->type == ep_interrupt)
|
|
|
|
csr |= USB_OUTCSRH_DNYT;
|
|
|
|
|
|
|
|
if(ep->use_dma)
|
|
|
|
csr |= (USB_OUTCSRH_DMAREQENAB | USB_OUTCSRH_AUTOCLR | USB_OUTCSRH_DMAREQMODE);
|
|
|
|
else
|
|
|
|
REG_USB_REG_INTROUTE |= USB_INTR_EP(EP_NUMBER2(ep));
|
|
|
|
|
|
|
|
csr = REG_USB_REG_OUTCSR;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
2008-12-31 01:11:04 +00:00
|
|
|
|
|
|
|
//flushFIFO(ep);
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void udc_reset(void)
|
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
logf("udc_reset()");
|
2008-12-04 18:26:19 +00:00
|
|
|
|
|
|
|
register unsigned int i;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
/* EP0 init */
|
2008-11-05 00:24:46 +00:00
|
|
|
ep0state = USB_EP0_IDLE;
|
|
|
|
|
|
|
|
/* Disable interrupts */
|
2008-12-04 18:26:19 +00:00
|
|
|
REG_USB_REG_INTRINE = 0;
|
2008-11-05 00:24:46 +00:00
|
|
|
REG_USB_REG_INTROUTE = 0;
|
|
|
|
REG_USB_REG_INTRUSBE = 0;
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
/* Disable DMA */
|
|
|
|
REG_USB_REG_CNTL1 = 0;
|
|
|
|
REG_USB_REG_CNTL2 = 0;
|
|
|
|
|
|
|
|
/* Reset address */
|
2008-11-05 00:24:46 +00:00
|
|
|
REG_USB_REG_FADDR = 0;
|
2008-12-31 01:11:04 +00:00
|
|
|
|
|
|
|
/* High speed and softconnect */
|
|
|
|
//REG_USB_REG_POWER = (USB_POWER_SOFTCONN | USB_POWER_HSENAB);
|
2008-12-04 18:26:19 +00:00
|
|
|
REG_USB_REG_POWER = USB_POWER_SOFTCONN;
|
2008-12-31 01:11:04 +00:00
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
/* Enable SUSPEND */
|
|
|
|
/* REG_USB_REG_POWER |= USB_POWER_SUSPENDM; */
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
/* Reset EP0 */
|
2008-11-05 00:24:46 +00:00
|
|
|
select_endpoint(0);
|
2008-12-04 18:26:19 +00:00
|
|
|
REG_USB_REG_CSR0 = (USB_CSR0_SVDOUTPKTRDY | USB_CSR0_SVDSETUPEND);
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
for(i=2; i<TOTAL_EP(); i++) /* Skip EP0 */
|
2008-11-05 00:24:46 +00:00
|
|
|
setup_endpoint(&endpoints[i]);
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
/* Enable interrupts */
|
|
|
|
REG_USB_REG_INTRINE |= USB_INTR_EP0;
|
|
|
|
REG_USB_REG_INTRUSBE |= USB_INTR_RESET;
|
|
|
|
|
|
|
|
usb_core_bus_reset();
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Interrupt handler */
|
|
|
|
void UDC(void)
|
|
|
|
{
|
|
|
|
/* Read interrupt registers */
|
2008-12-04 18:26:19 +00:00
|
|
|
register unsigned char intrUSB = REG_USB_REG_INTRUSB & 0x07; /* Mask SOF */
|
|
|
|
register unsigned short intrIn = REG_USB_REG_INTRIN;
|
|
|
|
register unsigned short intrOut = REG_USB_REG_INTROUT;
|
|
|
|
register unsigned char intrDMA = REG_USB_REG_INTR;
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
if(intrUSB == 0 && intrIn == 0 && intrOut == 0 && intrDMA == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* EPIN & EPOUT are all handled in DMA */
|
|
|
|
if(intrIn & USB_INTR_EP0)
|
|
|
|
EP0_handler();
|
2008-12-31 01:11:04 +00:00
|
|
|
if(intrIn & USB_INTR_INEP1)
|
|
|
|
EPIN_handler(1);
|
|
|
|
if(intrIn & USB_INTR_INEP2)
|
|
|
|
EPIN_handler(2);
|
|
|
|
if(intrOut & USB_INTR_OUTEP1)
|
|
|
|
EPOUT_handler(1);
|
|
|
|
if(intrOut & USB_INTR_OUTEP2)
|
|
|
|
EPOUT_handler(2);
|
2008-11-05 00:24:46 +00:00
|
|
|
if(intrUSB & USB_INTR_RESET)
|
|
|
|
udc_reset();
|
2008-12-31 01:11:04 +00:00
|
|
|
//if(intrUSB & USB_INTR_SUSPEND);
|
|
|
|
//if(intrUSB & USB_INTR_RESUME);
|
2008-11-05 00:24:46 +00:00
|
|
|
if(intrDMA & USB_INTR_DMA_BULKIN)
|
|
|
|
{
|
2008-12-20 01:48:46 +00:00
|
|
|
logf("DMA_BULKIN %d", ((REG_USB_REG_CNTL1 >> 4) & 0xF));
|
2008-12-31 01:11:04 +00:00
|
|
|
usb_core_transfer_complete(1 | USB_DIR_IN, USB_DIR_IN, 0, 0);
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
if(intrDMA & USB_INTR_DMA_BULKOUT)
|
|
|
|
{
|
2008-12-20 01:48:46 +00:00
|
|
|
logf("DMA_BULKOUT %d", ((REG_USB_REG_CNTL2 >> 4) & 0xF));
|
2008-12-31 01:11:04 +00:00
|
|
|
|
|
|
|
select_endpoint(1);
|
|
|
|
REG_USB_REG_OUTCSR &= ~(USB_OUTCSRH_DMAREQENAB | USB_OUTCSR_OUTPKTRDY);
|
|
|
|
|
|
|
|
usb_core_transfer_complete(1 | USB_DIR_OUT, USB_DIR_OUT, 0, 0);
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool usb_drv_stalled(int endpoint, bool in)
|
|
|
|
{
|
2008-12-20 01:48:46 +00:00
|
|
|
logf("usb_drv_stalled(%d, %s)", endpoint, in?"IN":"OUT");
|
2008-12-04 18:26:19 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
select_endpoint(endpoint & 0x7F);
|
2008-11-05 00:24:46 +00:00
|
|
|
|
|
|
|
if(endpoint == 0)
|
|
|
|
return (REG_USB_REG_CSR0 & USB_CSR0_SENDSTALL) != 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(in)
|
|
|
|
return (REG_USB_REG_INCSR & USB_INCSR_SENDSTALL) != 0;
|
|
|
|
else
|
|
|
|
return (REG_USB_REG_OUTCSR & USB_OUTCSR_SENDSTALL) != 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_drv_stall(int endpoint, bool stall, bool in)
|
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
logf("usb_drv_stall(%d,%s,%s)", endpoint, stall?"Y":"N", in?"IN":"OUT");
|
2008-12-04 18:26:19 +00:00
|
|
|
|
2008-11-05 00:24:46 +00:00
|
|
|
select_endpoint(endpoint);
|
|
|
|
|
2008-12-04 19:44:03 +00:00
|
|
|
if(endpoint == EP_CONTROL)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
|
|
|
if(stall)
|
|
|
|
REG_USB_REG_CSR0 |= USB_CSR0_SENDSTALL;
|
|
|
|
else
|
|
|
|
REG_USB_REG_CSR0 &= ~USB_CSR0_SENDSTALL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(in)
|
|
|
|
{
|
|
|
|
if(stall)
|
|
|
|
REG_USB_REG_INCSR |= USB_INCSR_SENDSTALL;
|
|
|
|
else
|
2008-12-31 01:11:04 +00:00
|
|
|
REG_USB_REG_INCSR = (REG_USB_REG_INCSR & ~USB_INCSR_SENDSTALL) | USB_INCSR_CDT;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(stall)
|
|
|
|
REG_USB_REG_OUTCSR |= USB_OUTCSR_SENDSTALL;
|
|
|
|
else
|
2008-12-31 01:11:04 +00:00
|
|
|
REG_USB_REG_OUTCSR = (REG_USB_REG_OUTCSR & ~USB_OUTCSR_SENDSTALL) | USB_OUTCSR_CDT;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-26 21:48:49 +00:00
|
|
|
bool usb_drv_connected(void)
|
|
|
|
{
|
2008-12-04 18:26:19 +00:00
|
|
|
return USB_DRV_CONNECTED();
|
2008-08-26 21:48:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int usb_detect(void)
|
|
|
|
{
|
2008-12-04 18:26:19 +00:00
|
|
|
return usb_drv_connected() ? USB_INSERTED : USB_EXTRACTED;
|
2008-08-26 21:48:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void usb_init_device(void)
|
|
|
|
{
|
2008-12-04 18:26:19 +00:00
|
|
|
USB_INIT_GPIO();
|
|
|
|
system_enable_irq(IRQ_UDC);
|
2008-08-26 21:48:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void usb_enable(bool on)
|
|
|
|
{
|
|
|
|
if(on)
|
|
|
|
usb_core_init();
|
|
|
|
else
|
|
|
|
usb_core_exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_drv_init(void)
|
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
logf("usb_drv_init()");
|
|
|
|
|
2008-11-05 00:24:46 +00:00
|
|
|
/* Set this bit to allow the UDC entering low-power mode when
|
|
|
|
* there are no actions on the USB bus.
|
|
|
|
* UDC still works during this bit was set.
|
|
|
|
*/
|
|
|
|
//__cpm_stop_udc();
|
2008-08-26 21:48:49 +00:00
|
|
|
__cpm_start_udc();
|
|
|
|
|
2008-11-05 00:24:46 +00:00
|
|
|
/* Enable the USB PHY */
|
|
|
|
REG_CPM_SCR |= CPM_SCR_USBPHY_ENABLE;
|
|
|
|
|
|
|
|
udc_reset();
|
2008-08-26 21:48:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void usb_drv_exit(void)
|
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
logf("usb_drv_exit()");
|
|
|
|
|
2008-11-05 00:24:46 +00:00
|
|
|
/* Disable interrupts */
|
|
|
|
REG_USB_REG_INTRINE = 0;
|
|
|
|
REG_USB_REG_INTROUTE = 0;
|
|
|
|
REG_USB_REG_INTRUSBE = 0;
|
|
|
|
|
|
|
|
/* Disable DMA */
|
|
|
|
REG_USB_REG_CNTL1 = 0;
|
|
|
|
REG_USB_REG_CNTL2 = 0;
|
2008-08-26 21:48:49 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
/* Disconnect from USB */
|
2008-08-26 21:48:49 +00:00
|
|
|
REG_USB_REG_POWER &= ~USB_POWER_SOFTCONN;
|
|
|
|
|
|
|
|
/* Disable the USB PHY */
|
|
|
|
REG_CPM_SCR &= ~CPM_SCR_USBPHY_ENABLE;
|
|
|
|
|
|
|
|
__cpm_stop_udc();
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_drv_set_address(int address)
|
|
|
|
{
|
2008-12-20 01:48:46 +00:00
|
|
|
logf("set adr: %d", address);
|
2008-12-04 18:26:19 +00:00
|
|
|
|
2008-08-26 21:48:49 +00:00
|
|
|
REG_USB_REG_FADDR = address;
|
|
|
|
}
|
|
|
|
|
2008-11-21 12:50:06 +00:00
|
|
|
int usb_drv_send(int endpoint, void* ptr, int length)
|
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
int flags;
|
|
|
|
endpoint &= 0x7F;
|
2008-11-21 12:50:06 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
logf("usb_drv_send(%d, 0x%x, %d)", endpoint, (int)ptr, length);
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
if(endpoint == EP_CONTROL)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
flags = disable_irq_save();
|
2008-12-04 18:26:19 +00:00
|
|
|
endpoints[1].buf = ptr;
|
|
|
|
endpoints[1].sent = 0;
|
|
|
|
endpoints[1].length = length;
|
|
|
|
ep0state = USB_EP0_TX;
|
|
|
|
EP0_send();
|
2008-12-31 01:11:04 +00:00
|
|
|
|
|
|
|
restore_irq(flags);
|
2008-12-04 18:26:19 +00:00
|
|
|
return 0;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
2008-12-31 01:11:04 +00:00
|
|
|
else if(endpoint == 1)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
select_endpoint(endpoint);
|
|
|
|
|
|
|
|
REG_USB_REG_ADDR2 = ((unsigned long)ptr) & 0x7fffffff;
|
|
|
|
REG_USB_REG_COUNT2 = length;
|
|
|
|
REG_USB_REG_CNTL2 = 1;
|
|
|
|
#else
|
|
|
|
flags = disable_irq_save();
|
|
|
|
endpoints[3].buf = ptr;
|
|
|
|
endpoints[3].sent = 0;
|
|
|
|
endpoints[3].length = length;
|
|
|
|
EPIN_handler(1);
|
|
|
|
restore_irq(flags);
|
|
|
|
#endif
|
2008-12-04 18:26:19 +00:00
|
|
|
return 0;
|
2008-12-31 01:11:04 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int usb_drv_send_nonblocking(int endpoint, void* ptr, int length)
|
|
|
|
{
|
|
|
|
return usb_drv_send(endpoint, ptr, length);
|
2008-08-26 21:48:49 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
int usb_drv_recv(int endpoint, void* ptr, int length)
|
2008-08-26 21:48:49 +00:00
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
int flags;
|
|
|
|
endpoint &= 0x7F;
|
|
|
|
|
2008-12-20 01:48:46 +00:00
|
|
|
logf("usb_drv_recv(%d, 0x%x, %d)", endpoint, (int)ptr, length);
|
2008-08-26 21:48:49 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
if(endpoint == EP_CONTROL && ptr == NULL && length == 0)
|
|
|
|
return 0; /* ACK request, handled by the USB controller */
|
|
|
|
else if(endpoint == 1)
|
|
|
|
{
|
|
|
|
logf("EP1 handled: %d", length);
|
|
|
|
flags = disable_irq_save();
|
|
|
|
endpoints[2].buf = ptr;
|
|
|
|
endpoints[2].received = 0;
|
|
|
|
endpoints[2].length = length;
|
|
|
|
restore_irq(flags);
|
2008-12-04 18:26:19 +00:00
|
|
|
return 0;
|
2008-12-31 01:11:04 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return -1;
|
2008-08-26 21:48:49 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
void usb_drv_set_test_mode(int mode)
|
2008-08-26 21:48:49 +00:00
|
|
|
{
|
2008-12-20 01:48:46 +00:00
|
|
|
logf("usb_drv_set_test_mode(%d)", mode);
|
2008-12-04 19:44:03 +00:00
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
switch(mode)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2008-12-04 18:26:19 +00:00
|
|
|
case 0:
|
|
|
|
REG_USB_REG_TESTMODE &= ~USB_TEST_ALL;
|
2008-11-05 00:24:46 +00:00
|
|
|
break;
|
2008-12-04 18:26:19 +00:00
|
|
|
case 1:
|
|
|
|
REG_USB_REG_TESTMODE |= USB_TEST_J;
|
2008-11-05 00:24:46 +00:00
|
|
|
break;
|
2008-12-04 18:26:19 +00:00
|
|
|
case 2:
|
|
|
|
REG_USB_REG_TESTMODE |= USB_TEST_K;
|
2008-09-17 21:44:47 +00:00
|
|
|
break;
|
2008-12-04 18:26:19 +00:00
|
|
|
case 3:
|
|
|
|
REG_USB_REG_TESTMODE |= USB_TEST_SE0NAK;
|
2008-11-05 00:24:46 +00:00
|
|
|
break;
|
2008-12-04 18:26:19 +00:00
|
|
|
case 4:
|
|
|
|
REG_USB_REG_TESTMODE |= USB_TEST_PACKET;
|
2008-09-14 16:26:08 +00:00
|
|
|
break;
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
2008-08-26 21:48:49 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
int usb_drv_port_speed(void)
|
2008-08-26 21:48:49 +00:00
|
|
|
{
|
2008-12-04 18:26:19 +00:00
|
|
|
return ((REG_USB_REG_POWER & USB_POWER_HSMODE) != 0) ? 1 : 0;
|
2008-08-26 21:48:49 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
void usb_drv_cancel_all_transfers(void)
|
2008-08-26 21:48:49 +00:00
|
|
|
{
|
2008-12-20 01:48:46 +00:00
|
|
|
logf("usb_drv_cancel_all_transfers()");
|
2008-11-05 00:24:46 +00:00
|
|
|
|
2008-12-31 01:11:04 +00:00
|
|
|
unsigned int i, flags;
|
|
|
|
flags = disable_irq_save();
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
for(i=0; i<TOTAL_EP(); i++)
|
2008-11-05 00:24:46 +00:00
|
|
|
{
|
2008-12-04 18:26:19 +00:00
|
|
|
endpoints[i].sent = 0;
|
|
|
|
endpoints[i].length = 0;
|
2008-12-31 01:11:04 +00:00
|
|
|
|
|
|
|
select_endpoint(i/2);
|
|
|
|
flushFIFO(&endpoints[i]);
|
2008-11-05 00:24:46 +00:00
|
|
|
}
|
2008-12-31 01:11:04 +00:00
|
|
|
restore_irq(flags);
|
2008-12-04 18:26:19 +00:00
|
|
|
|
|
|
|
ep0state = USB_EP0_IDLE;
|
2008-08-26 21:48:49 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
void usb_drv_release_endpoint(int ep)
|
2008-08-26 21:48:49 +00:00
|
|
|
{
|
2008-12-20 01:48:46 +00:00
|
|
|
//logf("usb_drv_release_endpoint(%d)", ep);
|
2008-08-26 21:48:49 +00:00
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
(void)ep;
|
2008-08-26 21:48:49 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 18:26:19 +00:00
|
|
|
int usb_drv_request_endpoint(int dir)
|
2008-09-14 16:26:08 +00:00
|
|
|
{
|
2008-12-31 01:11:04 +00:00
|
|
|
logf("usb_drv_request_endpoint(%s)", dir == USB_DIR_IN ? "IN" : "OUT");
|
|
|
|
|
|
|
|
/* There are only 3+2 endpoints, so hardcode this ... */
|
|
|
|
/* Currently only BULK endpoints ... */
|
|
|
|
if(dir == USB_DIR_OUT)
|
|
|
|
return (1 | USB_DIR_OUT);
|
|
|
|
else if(dir == USB_DIR_IN)
|
|
|
|
return (1 | USB_DIR_IN);
|
|
|
|
else
|
|
|
|
return -1;
|
2008-09-14 16:26:08 +00:00
|
|
|
}
|