2010-05-18 09:58:52 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright © 2010 Amaury Pouly
|
|
|
|
*
|
|
|
|
* 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 "usb.h"
|
|
|
|
#include "usb_drv.h"
|
|
|
|
#include "as3525v2.h"
|
|
|
|
#include "clock-target.h"
|
|
|
|
#include "ascodec.h"
|
|
|
|
#include "as3514.h"
|
2010-06-12 05:26:23 +00:00
|
|
|
#include "stdbool.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "stdio.h"
|
2010-05-18 09:58:52 +00:00
|
|
|
#include "panic.h"
|
2010-06-12 05:26:23 +00:00
|
|
|
#include "mmu-arm.h"
|
|
|
|
#include "system.h"
|
2010-05-18 09:58:52 +00:00
|
|
|
#define LOGF_ENABLE
|
|
|
|
#include "logf.h"
|
|
|
|
#include "usb-drv-as3525v2.h"
|
|
|
|
|
|
|
|
struct usb_endpoint
|
|
|
|
{
|
|
|
|
void *buf;
|
|
|
|
unsigned int len;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
unsigned int sent;
|
|
|
|
unsigned int received;
|
|
|
|
};
|
|
|
|
bool wait;
|
|
|
|
bool busy;
|
|
|
|
};
|
|
|
|
|
2010-05-18 12:56:14 +00:00
|
|
|
#if 0
|
2010-05-18 09:58:52 +00:00
|
|
|
static struct usb_endpoint endpoints[USB_NUM_ENDPOINTS*2];
|
2010-05-18 12:56:14 +00:00
|
|
|
#endif
|
2010-06-12 05:26:23 +00:00
|
|
|
static struct usb_ctrlrequest ep0_setup_pkt;
|
2010-05-18 09:58:52 +00:00
|
|
|
|
|
|
|
void usb_attach(void)
|
|
|
|
{
|
2010-06-12 05:26:23 +00:00
|
|
|
logf("usb: attach");
|
2010-05-18 09:58:52 +00:00
|
|
|
usb_enable(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usb_delay(void)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
while(i < 0x300)
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void as3525v2_connect(void)
|
|
|
|
{
|
|
|
|
logf("usb: init as3525v2");
|
|
|
|
/* 1) enable usb core clock */
|
|
|
|
CGU_PERI |= CGU_USB_CLOCK_ENABLE;
|
|
|
|
usb_delay();
|
|
|
|
/* 2) enable usb phy clock */
|
|
|
|
CGU_USB |= 0x20;
|
|
|
|
usb_delay();
|
|
|
|
/* 3) clear "stop pclk" */
|
|
|
|
USB_PCGCCTL &= ~0x1;
|
|
|
|
usb_delay();
|
|
|
|
/* 4) clear "power clamp" */
|
|
|
|
USB_PCGCCTL &= ~0x4;
|
|
|
|
usb_delay();
|
|
|
|
/* 5) clear "reset power down module" */
|
|
|
|
USB_PCGCCTL &= ~0x8;
|
|
|
|
usb_delay();
|
|
|
|
/* 6) set "power on program done" */
|
2010-06-12 05:26:23 +00:00
|
|
|
USB_DCTL |= USB_DCTL_pwronprgdone;
|
2010-05-18 09:58:52 +00:00
|
|
|
usb_delay();
|
|
|
|
/* 7) core soft reset */
|
|
|
|
USB_GRSTCTL |= USB_GRSTCTL_csftrst;
|
|
|
|
usb_delay();
|
|
|
|
/* 8) hclk soft reset */
|
|
|
|
USB_GRSTCTL |= USB_GRSTCTL_hsftrst;
|
|
|
|
usb_delay();
|
|
|
|
/* 9) flush and reset everything */
|
|
|
|
USB_GRSTCTL |= 0x3f;
|
|
|
|
usb_delay();
|
|
|
|
/* 10) force device mode*/
|
2010-06-12 05:26:23 +00:00
|
|
|
USB_GUSBCFG &= ~USB_GUSBCFG_force_host_mode;
|
|
|
|
USB_GUSBCFG |= USB_GUSBCFG_force_device_mode;
|
2010-05-18 09:58:52 +00:00
|
|
|
usb_delay();
|
|
|
|
/* 11) Do something that is probably CCU related but undocumented*/
|
|
|
|
CCU_USB_THINGY &= ~0x1000;
|
|
|
|
usb_delay();
|
2010-05-20 14:54:32 +00:00
|
|
|
CCU_USB_THINGY &= ~0x300000;
|
|
|
|
usb_delay();
|
2010-05-18 09:58:52 +00:00
|
|
|
/* 12) reset usb core parameters (dev addr, speed, ...) */
|
|
|
|
USB_DCFG = 0;
|
|
|
|
usb_delay();
|
|
|
|
}
|
|
|
|
|
2010-05-19 08:33:50 +00:00
|
|
|
static void usb_enable_common_interrupts(void)
|
|
|
|
{
|
|
|
|
/* Clear any pending otg interrupt */
|
|
|
|
USB_GOTGINT = 0xffffffff;
|
|
|
|
/* Clear any pending interrupt */
|
|
|
|
USB_GINTSTS = 0Xffffffff;
|
|
|
|
/* Enable interrupts */
|
2010-06-12 05:26:23 +00:00
|
|
|
USB_GINTMSK = USB_GINTMSK_otgintr
|
|
|
|
| USB_GINTMSK_conidstschng
|
|
|
|
| USB_GINTMSK_disconnect;
|
2010-05-19 08:33:50 +00:00
|
|
|
}
|
|
|
|
|
2010-05-20 14:54:32 +00:00
|
|
|
static void usb_enable_device_interrupts(void)
|
|
|
|
{
|
|
|
|
/* Disable all interrupts */
|
|
|
|
USB_GINTMSK = 0;
|
|
|
|
/* Clear any pending interrupt */
|
|
|
|
USB_GINTSTS = 0xffffffff;
|
|
|
|
/* Enable common interrupts */
|
|
|
|
usb_enable_common_interrupts();
|
|
|
|
/* Enable interrupts */
|
2010-06-12 05:26:23 +00:00
|
|
|
USB_GINTMSK |= USB_GINTMSK_usbreset
|
|
|
|
| USB_GINTMSK_enumdone
|
|
|
|
| USB_GINTMSK_inepintr
|
|
|
|
| USB_GINTMSK_outepintr;
|
2010-05-20 14:54:32 +00:00
|
|
|
}
|
|
|
|
|
2010-05-19 08:33:50 +00:00
|
|
|
static void usb_flush_tx_fifos(int nums)
|
|
|
|
{
|
|
|
|
unsigned int i = 0;
|
|
|
|
|
|
|
|
USB_GRSTCTL = (USB_GRSTCTL & (~USB_GRSTCTL_txfnum_bits))
|
|
|
|
| (nums << USB_GRSTCTL_txfnum_bit_pos)
|
|
|
|
| USB_GRSTCTL_txfflsh_flush;
|
|
|
|
while(USB_GRSTCTL & USB_GRSTCTL_txfflsh_flush && i < 0x300)
|
|
|
|
i++;
|
|
|
|
if(USB_GRSTCTL & USB_GRSTCTL_txfflsh_flush)
|
|
|
|
panicf("usb: hang of flush tx fifos (%x)", nums);
|
|
|
|
/* wait 3 phy clocks */
|
2010-06-12 05:26:23 +00:00
|
|
|
udelay(1);
|
2010-05-19 08:33:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void usb_flush_rx_fifo(void)
|
|
|
|
{
|
|
|
|
unsigned int i = 0;
|
|
|
|
|
2010-06-12 05:26:23 +00:00
|
|
|
USB_GRSTCTL = USB_GRSTCTL_rxfflsh_flush;
|
2010-05-19 08:33:50 +00:00
|
|
|
while(USB_GRSTCTL & USB_GRSTCTL_rxfflsh_flush && i < 0x300)
|
|
|
|
i++;
|
|
|
|
if(USB_GRSTCTL & USB_GRSTCTL_rxfflsh_flush)
|
|
|
|
panicf("usb: hang of flush rx fifo");
|
|
|
|
/* wait 3 phy clocks */
|
2010-06-12 05:26:23 +00:00
|
|
|
udelay(1);
|
2010-05-19 08:33:50 +00:00
|
|
|
}
|
|
|
|
|
2010-05-18 09:58:52 +00:00
|
|
|
static void core_reset(void)
|
|
|
|
{
|
|
|
|
unsigned int i = 0;
|
|
|
|
/* Wait for AHB master IDLE state. */
|
2010-06-12 05:26:23 +00:00
|
|
|
while((USB_GRSTCTL & USB_GRSTCTL_ahbidle) == 0)
|
|
|
|
udelay(10);
|
2010-05-18 09:58:52 +00:00
|
|
|
/* Core Soft Reset */
|
|
|
|
USB_GRSTCTL |= USB_GRSTCTL_csftrst;
|
|
|
|
/* Waits for the hardware to clear reset bit */
|
|
|
|
while(USB_GRSTCTL & USB_GRSTCTL_csftrst && i < 0x300)
|
|
|
|
i++;
|
|
|
|
|
|
|
|
if(USB_GRSTCTL & USB_GRSTCTL_csftrst)
|
2010-05-19 08:33:50 +00:00
|
|
|
panicf("oops, usb core soft reset hang :(");
|
2010-05-18 09:58:52 +00:00
|
|
|
|
|
|
|
/* Wait for 3 PHY Clocks */
|
2010-06-12 05:26:23 +00:00
|
|
|
udelay(1);
|
2010-05-20 14:54:32 +00:00
|
|
|
}
|
2010-05-18 09:58:52 +00:00
|
|
|
|
2010-05-20 14:54:32 +00:00
|
|
|
static void core_dev_init(void)
|
|
|
|
{
|
|
|
|
unsigned int usb_num_in_ep = 0;
|
|
|
|
unsigned int usb_num_out_ep = 0;
|
|
|
|
unsigned int i;
|
|
|
|
/* Restart the phy clock */
|
|
|
|
USB_PCGCCTL = 0;
|
|
|
|
/* Set phy speed : high speed */
|
|
|
|
USB_DCFG = (USB_DCFG & (~USB_DCFG_devspd_bits)) | USB_DCFG_devspd_hs_phy_hs;
|
|
|
|
/* Set periodic frame interval */
|
|
|
|
USB_DCFG = (USB_DCFG & (~USB_DCFG_perfrint_bits)) | (USB_DCFG_FRAME_INTERVAL_80 << USB_DCFG_perfrint_bit_pos);
|
|
|
|
|
|
|
|
/* Check hardware capabilities */
|
2010-05-19 08:33:50 +00:00
|
|
|
if(USB_GHWCFG2_ARCH != USB_INT_DMA_ARCH)
|
|
|
|
panicf("usb: wrong architecture (%ld)", USB_GHWCFG2_ARCH);
|
|
|
|
if(USB_GHWCFG2_HS_PHY_TYPE != USB_PHY_TYPE_UTMI)
|
|
|
|
panicf("usb: wrong HS phy type (%ld)", USB_GHWCFG2_HS_PHY_TYPE);
|
|
|
|
if(USB_GHWCFG2_FS_PHY_TYPE != USB_PHY_TYPE_UNSUPPORTED)
|
|
|
|
panicf("usb: wrong FS phy type (%ld)", USB_GHWCFG2_FS_PHY_TYPE);
|
|
|
|
if(USB_GHWCFG4_UTMI_PHY_DATA_WIDTH != 0x2)
|
|
|
|
panicf("usb: wrong utmi data width (%ld)", USB_GHWCFG4_UTMI_PHY_DATA_WIDTH);
|
|
|
|
if(USB_GHWCFG4_DED_FIFO_EN != 1) /* it seems to be multiple tx fifo support */
|
|
|
|
panicf("usb: no multiple tx fifo");
|
|
|
|
|
2010-05-18 09:58:52 +00:00
|
|
|
logf("hwcfg1: %08lx", USB_GHWCFG1);
|
|
|
|
logf("hwcfg2: %08lx", USB_GHWCFG2);
|
|
|
|
logf("hwcfg3: %08lx", USB_GHWCFG3);
|
|
|
|
logf("hwcfg4: %08lx", USB_GHWCFG4);
|
|
|
|
|
2010-05-19 08:33:50 +00:00
|
|
|
logf("%ld endpoints", USB_GHWCFG2_NUM_EP);
|
|
|
|
usb_num_in_ep = 0;
|
|
|
|
usb_num_out_ep = 0;
|
|
|
|
for(i = 0; i < USB_GHWCFG2_NUM_EP; i++)
|
|
|
|
{
|
|
|
|
if(USB_GHWCFG1_IN_EP(i))
|
|
|
|
usb_num_in_ep++;
|
|
|
|
if(USB_GHWCFG1_OUT_EP(i))
|
|
|
|
usb_num_out_ep++;
|
|
|
|
logf(" EP%d: IN=%ld OUT=%ld", i, USB_GHWCFG1_IN_EP(i), USB_GHWCFG1_OUT_EP(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(usb_num_in_ep != USB_GHWCFG4_NUM_IN_EP)
|
|
|
|
panicf("usb: num in ep mismatch(%d,%lu)", usb_num_in_ep, USB_GHWCFG4_NUM_IN_EP);
|
2010-05-20 14:54:32 +00:00
|
|
|
if(usb_num_in_ep != USB_NUM_IN_EP)
|
|
|
|
panicf("usb: num in ep static mismatch(%u,%u)", usb_num_in_ep, USB_NUM_IN_EP);
|
|
|
|
if(usb_num_out_ep != USB_NUM_OUT_EP)
|
|
|
|
panicf("usb: num out ep static mismatch(%u,%u)", usb_num_out_ep, USB_NUM_OUT_EP);
|
2010-05-19 08:33:50 +00:00
|
|
|
|
|
|
|
logf("%d in ep, %d out ep", usb_num_in_ep, usb_num_out_ep);
|
|
|
|
logf("initial:");
|
2010-05-20 14:54:32 +00:00
|
|
|
logf(" tot fifo sz: %lx", USB_GHWCFG3_DFIFO_LEN);
|
|
|
|
logf(" rx fifo: [%04x,+%4lx]", 0, USB_GRXFSIZ);
|
|
|
|
logf(" nptx fifo: [%04lx,+%4lx]", USB_GET_FIFOSIZE_START_ADR(USB_GNPTXFSIZ),
|
|
|
|
USB_GET_FIFOSIZE_DEPTH(USB_GNPTXFSIZ));
|
|
|
|
for(i = 1; i <= USB_NUM_IN_EP; i++)
|
2010-05-19 08:33:50 +00:00
|
|
|
{
|
2010-05-20 14:54:32 +00:00
|
|
|
logf(" dieptx fifo(%2u): [%04lx,+%4lx]", i,
|
|
|
|
USB_GET_FIFOSIZE_START_ADR(USB_DIEPTXFSIZ(i)),
|
|
|
|
USB_GET_FIFOSIZE_DEPTH(USB_DIEPTXFSIZ(i)));
|
2010-05-19 08:33:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* flush the fifos */
|
|
|
|
usb_flush_tx_fifos(0x10); /* flush all */
|
|
|
|
usb_flush_rx_fifo();
|
|
|
|
|
|
|
|
/* flush learning queue */
|
2010-06-12 05:26:23 +00:00
|
|
|
USB_GRSTCTL = USB_GRSTCTL_intknqflsh;
|
2010-05-19 08:33:50 +00:00
|
|
|
|
|
|
|
/* Clear all pending device interrupts */
|
|
|
|
USB_DIEPMSK = 0;
|
|
|
|
USB_DOEPMSK = 0;
|
|
|
|
USB_DAINT = 0xffffffff;
|
|
|
|
USB_DAINTMSK = 0;
|
|
|
|
|
2010-05-20 14:54:32 +00:00
|
|
|
for(i = 0; i <= USB_NUM_IN_EP; i++)
|
2010-05-19 08:33:50 +00:00
|
|
|
{
|
|
|
|
/* disable endpoint if enabled */
|
|
|
|
if(USB_DIEPCTL(i) & USB_DEPCTL_epena)
|
|
|
|
USB_DIEPCTL(i) = USB_DEPCTL_epdis | USB_DEPCTL_snak;
|
|
|
|
else
|
|
|
|
USB_DIEPCTL(i) = 0;
|
|
|
|
|
|
|
|
USB_DIEPTSIZ(i) = 0;
|
|
|
|
USB_DIEPDMA(i) = 0;
|
|
|
|
USB_DIEPINT(i) = 0xff;
|
|
|
|
}
|
|
|
|
|
2010-05-20 14:54:32 +00:00
|
|
|
for(i = 0; i <= USB_NUM_OUT_EP; i++)
|
2010-05-19 08:33:50 +00:00
|
|
|
{
|
|
|
|
/* disable endpoint if enabled */
|
|
|
|
if(USB_DOEPCTL(i) & USB_DEPCTL_epena)
|
|
|
|
USB_DOEPCTL(i) = USB_DEPCTL_epdis | USB_DEPCTL_snak;
|
|
|
|
else
|
|
|
|
USB_DOEPCTL(i) = 0;
|
|
|
|
|
|
|
|
USB_DOEPTSIZ(i) = 0;
|
|
|
|
USB_DOEPDMA(i) = 0;
|
|
|
|
USB_DOEPINT(i) = 0xff;
|
|
|
|
}
|
|
|
|
|
2010-05-20 14:54:32 +00:00
|
|
|
/* fixme: threshold tweaking only takes place if we use multiple tx fifos it seems */
|
|
|
|
/* only dump them for now, leave threshold disabled */
|
|
|
|
logf("threshold control:");
|
|
|
|
logf(" non_iso_thr_en: %d", (USB_DTHRCTL & USB_DTHRCTL_non_iso_thr_en) ? 1 : 0);
|
|
|
|
logf(" iso_thr_en: %d", (USB_DTHRCTL & USB_DTHRCTL_iso_thr_en) ? 1 : 0);
|
|
|
|
logf(" tx_thr_len: %lu", (USB_DTHRCTL & USB_DTHRCTL_tx_thr_len_bits) >> USB_DTHRCTL_tx_thr_len_bit_pos);
|
|
|
|
logf(" rx_thr_en: %d", (USB_DTHRCTL & USB_DTHRCTL_rx_thr_en) ? 1 : 0);
|
|
|
|
logf(" rx_thr_len: %lu", (USB_DTHRCTL & USB_DTHRCTL_rx_thr_len_bits) >> USB_DTHRCTL_rx_thr_len_bit_pos);
|
|
|
|
|
|
|
|
/* enable USB interrupts */
|
|
|
|
usb_enable_device_interrupts();
|
|
|
|
|
|
|
|
/* enable fifo underrun interrupt ? */
|
|
|
|
USB_DIEPMSK |= USB_DIEPINT_txfifoundrn;
|
2010-05-18 09:58:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void core_init(void)
|
|
|
|
{
|
2010-06-12 05:26:23 +00:00
|
|
|
/* Setup phy for high speed */
|
|
|
|
USB_GUSBCFG &= ~USB_GUSBCFG_ulpi_ext_vbus_drv;
|
|
|
|
/* Disable external TS Dline pulsing (???) */
|
|
|
|
USB_GUSBCFG &= ~USB_GUSBCFG_term_sel_dl_pulse;
|
|
|
|
/* core reset */
|
2010-05-18 09:58:52 +00:00
|
|
|
core_reset();
|
|
|
|
|
2010-06-12 05:26:23 +00:00
|
|
|
/* Select UTMI */
|
|
|
|
USB_GUSBCFG &= ~USB_GUSBCFG_ulpi_utmi_sel;
|
|
|
|
/* Select UTMI+ 16 */
|
2010-05-18 09:58:52 +00:00
|
|
|
USB_GUSBCFG |= USB_GUSBCFG_phy_if;
|
2010-06-12 05:26:23 +00:00
|
|
|
/* core reset */
|
2010-05-18 09:58:52 +00:00
|
|
|
core_reset();
|
|
|
|
|
2010-06-12 05:26:23 +00:00
|
|
|
/* fixme: the linux code does that but the clip+ doesn't use ULPI it seems */
|
|
|
|
USB_GUSBCFG &= ~(USB_GUSBCFG_ulpi_fsls | USB_GUSBCFG_ulpi_clk_sus_m);
|
2010-05-18 09:58:52 +00:00
|
|
|
|
|
|
|
/* fixme: the current code is for internal DMA only, the clip+ architecture
|
|
|
|
* define the internal DMA model */
|
2010-06-12 05:26:23 +00:00
|
|
|
/* Set burstlen and enable DMA*/
|
|
|
|
USB_GAHBCFG = (USB_GAHBCFG_INT_DMA_BURST_INCR << USB_GAHBCFG_hburstlen_bit_pos)
|
|
|
|
| USB_GAHBCFG_dma_enable;
|
2010-05-18 09:58:52 +00:00
|
|
|
/* Disable HNP and SRP, not sure it's useful because we already forced dev mode */
|
2010-06-12 05:26:23 +00:00
|
|
|
USB_GUSBCFG &= ~(USB_GUSBCFG_srpcap | USB_GUSBCFG_hnpcapp);
|
2010-05-19 08:33:50 +00:00
|
|
|
|
|
|
|
/* enable basic interrupts */
|
|
|
|
usb_enable_common_interrupts();
|
|
|
|
|
|
|
|
/* perform device model specific init */
|
|
|
|
core_dev_init();
|
2010-05-18 09:58:52 +00:00
|
|
|
}
|
|
|
|
|
2010-05-20 14:54:32 +00:00
|
|
|
static void usb_enable_global_interrupts(void)
|
|
|
|
{
|
|
|
|
VIC_INT_ENABLE = INTERRUPT_USB;
|
|
|
|
USB_GAHBCFG |= USB_GAHBCFG_glblintrmsk;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usb_disable_global_interrupts(void)
|
|
|
|
{
|
|
|
|
USB_GAHBCFG &= ~USB_GAHBCFG_glblintrmsk;
|
|
|
|
VIC_INT_EN_CLEAR = INTERRUPT_USB;
|
|
|
|
}
|
|
|
|
|
2010-05-18 09:58:52 +00:00
|
|
|
void usb_drv_init(void)
|
|
|
|
{
|
|
|
|
logf("usb_drv_init");
|
2010-05-20 14:54:32 +00:00
|
|
|
/* Enable PHY and clocks (but leave pullups disabled) */
|
2010-05-18 09:58:52 +00:00
|
|
|
as3525v2_connect();
|
2010-05-20 14:54:32 +00:00
|
|
|
/* Disable global interrupts */
|
|
|
|
usb_disable_global_interrupts();
|
2010-05-18 09:58:52 +00:00
|
|
|
logf("usb: synopsis id: %lx", USB_GSNPSID);
|
2010-05-20 14:54:32 +00:00
|
|
|
/* Core init */
|
2010-05-18 09:58:52 +00:00
|
|
|
core_init();
|
2010-05-20 14:54:32 +00:00
|
|
|
/* Enable global interrupts */
|
|
|
|
usb_enable_global_interrupts();
|
2010-05-18 09:58:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void usb_drv_exit(void)
|
|
|
|
{
|
|
|
|
logf("usb_drv_exit");
|
|
|
|
}
|
|
|
|
|
|
|
|
int usb_drv_port_speed(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int usb_drv_request_endpoint(int type, int dir)
|
|
|
|
{
|
|
|
|
(void) type;
|
|
|
|
(void) dir;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_drv_release_endpoint(int ep)
|
|
|
|
{
|
|
|
|
(void) ep;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_drv_cancel_all_transfers(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int usb_drv_recv(int ep, void *ptr, int len)
|
|
|
|
{
|
|
|
|
(void) ep;
|
|
|
|
(void) ptr;
|
|
|
|
(void) len;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int usb_drv_send(int ep, void *ptr, int len)
|
|
|
|
{
|
|
|
|
(void) ep;
|
|
|
|
(void) ptr;
|
|
|
|
(void) len;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int usb_drv_send_nonblocking(int ep, void *ptr, int len)
|
|
|
|
{
|
|
|
|
(void) ep;
|
|
|
|
(void) ptr;
|
|
|
|
(void) len;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-06-12 05:26:23 +00:00
|
|
|
static void activate_ep0(void)
|
|
|
|
{
|
|
|
|
/* Setup EP0 OUT to receive setup packets and
|
|
|
|
* EP0 IN to transmit packets
|
|
|
|
* The setup takes enumeration speed into account
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Setup packet size of IN ep based of enumerated speed */
|
|
|
|
switch((USB_DSTS & USB_DSTS_enumspd_bits) >> USB_DSTS_enumspd_bit_pos)
|
|
|
|
{
|
|
|
|
case USB_DSTS_ENUMSPD_HS_PHY_30MHZ_OR_60MHZ:
|
|
|
|
case USB_DSTS_ENUMSPD_FS_PHY_30MHZ_OR_60MHZ:
|
|
|
|
case USB_DSTS_ENUMSPD_FS_PHY_48MHZ:
|
|
|
|
/* Use 64 bytes packet size */
|
|
|
|
USB_DIEPCTL(0) = (USB_DIEPCTL(0) & (~USB_DEPCTL_mps_bits))
|
|
|
|
| (USB_DEPCTL_MPS_64 << USB_DEPCTL_mps_bit_pos);
|
|
|
|
break;
|
|
|
|
case USB_DSTS_ENUMSPD_LS_PHY_6MHZ:
|
|
|
|
USB_DIEPCTL(0) = (USB_DIEPCTL(0) & (~USB_DEPCTL_mps_bits))
|
|
|
|
| (USB_DEPCTL_MPS_8 << USB_DEPCTL_mps_bit_pos);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
panicf("usb: invalid enum speed");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable OUT ep for receive */
|
|
|
|
USB_DOEPCTL(0) |= USB_DEPCTL_epena;
|
|
|
|
|
|
|
|
/* Clear non periodic NAK for IN ep */
|
|
|
|
USB_DCTL |= USB_DCTL_cgnpinnak;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ep0_out_start(void)
|
|
|
|
{
|
|
|
|
/* Setup EP0 OUT with the following parameters:
|
|
|
|
* packet count = 1
|
|
|
|
* setup packet count = 1
|
|
|
|
* transfer size = 8 (=sizeof setup packet)
|
|
|
|
*/
|
|
|
|
|
|
|
|
USB_DOEPTSIZ(0) = (1 << USB_DEPTSIZ0_supcnt_bit_pos)
|
|
|
|
| (1 << USB_DEPTSIZ0_pkcnt_bit_pos)
|
|
|
|
| 8;
|
|
|
|
|
|
|
|
/* setup DMA */
|
|
|
|
clean_dcache_range((void*)&ep0_setup_pkt, sizeof ep0_setup_pkt); /* force write back */
|
|
|
|
USB_DOEPDMA(0) = (unsigned long)&ep0_setup_pkt; /* virtual address=physical address */
|
|
|
|
|
|
|
|
/* enable EP */
|
|
|
|
USB_DOEPCTL(0) |= USB_DEPCTL_epena | USB_DEPCTL_usbactep;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool handle_usb_reset(void)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
logf("usb: bus reset");
|
|
|
|
|
|
|
|
/* Clear the Remote Wakeup Signalling */
|
|
|
|
USB_DCTL &= ~USB_DCTL_rmtwkupsig;
|
|
|
|
|
|
|
|
/* Set NAK for all OUT EPs */
|
|
|
|
for(i = 0; i <= USB_NUM_OUT_EP; i++)
|
|
|
|
USB_DOEPCTL(i) = USB_DEPCTL_snak;
|
|
|
|
|
|
|
|
/* Flush the NP Tx FIFO */
|
|
|
|
usb_flush_tx_fifos(0);
|
|
|
|
|
|
|
|
/* Flush the Learning Queue */
|
|
|
|
USB_GRSTCTL = USB_GRSTCTL_intknqflsh;
|
|
|
|
|
|
|
|
/* Setup interrupt masks */
|
|
|
|
USB_DAINTMSK = USB_DAINT_IN_EP(0) | USB_DAINT_OUT_EP(0);
|
|
|
|
USB_DOEPMSK = USB_DOEPINT_setup | USB_DOEPINT_xfercompl | USB_DOEPINT_ahberr
|
|
|
|
| USB_DOEPINT_epdisabled;
|
|
|
|
USB_DIEPMSK = USB_DIEPINT_xfercompl | USB_DIEPINT_timeout
|
|
|
|
| USB_DIEPINT_epdisabled | USB_DIEPINT_ahberr
|
|
|
|
| USB_DIEPINT_intknepmis;
|
|
|
|
|
|
|
|
/* Reset Device Address */
|
|
|
|
USB_DCFG &= ~USB_DCFG_devadr_bits;
|
|
|
|
|
|
|
|
/* setup EP0 to receive SETUP packets */
|
|
|
|
ep0_out_start();
|
|
|
|
/* Clear interrupt */
|
|
|
|
USB_GINTSTS = USB_GINTMSK_usbreset;
|
|
|
|
|
|
|
|
usb_disable_global_interrupts();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool handle_enum_done(void)
|
|
|
|
{
|
|
|
|
logf("usb: enum done");
|
|
|
|
|
|
|
|
/* Enable EP0 to receive SETUP packets */
|
|
|
|
activate_ep0();
|
|
|
|
|
|
|
|
/* Set USB turnaround time
|
|
|
|
* fixme: unsure about this */
|
|
|
|
//USB_GUSBCFG = (USB_GUSBCFG & ~USB_GUSBCFG_usbtrdtim_bits) | (5 << USB_GUSBCFG_usbtrdtim_bit_pos);
|
|
|
|
//panicf("usb: turnaround time is %d", (USB_GUSBCFG & USB_GUSBCFG_usbtrdtim_bits) >> USB_GUSBCFG_usbtrdtim_bit_pos);
|
|
|
|
|
|
|
|
/* Clear interrupt */
|
|
|
|
USB_GINTSTS = USB_GINTMSK_enumdone;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool handle_in_ep_int(void)
|
|
|
|
{
|
|
|
|
logf("usb: in ep int");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool handle_out_ep_int(void)
|
|
|
|
{
|
|
|
|
logf("usb: out ep int");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dump_intsts(char *buffer, size_t size, unsigned long sts)
|
|
|
|
{
|
|
|
|
(void) size;
|
|
|
|
buffer[0] = 0;
|
|
|
|
#define DUMP_CASE(name) \
|
|
|
|
if(sts & USB_GINTMSK_##name) strcat(buffer, #name " ");
|
|
|
|
|
|
|
|
DUMP_CASE(modemismatch)
|
|
|
|
DUMP_CASE(otgintr)
|
|
|
|
DUMP_CASE(sofintr)
|
|
|
|
DUMP_CASE(rxstsqlvl)
|
|
|
|
DUMP_CASE(nptxfempty)
|
|
|
|
DUMP_CASE(ginnakeff)
|
|
|
|
DUMP_CASE(goutnakeff)
|
|
|
|
DUMP_CASE(i2cintr)
|
|
|
|
DUMP_CASE(erlysuspend)
|
|
|
|
DUMP_CASE(usbsuspend)
|
|
|
|
DUMP_CASE(usbreset)
|
|
|
|
DUMP_CASE(enumdone)
|
|
|
|
DUMP_CASE(isooutdrop)
|
|
|
|
DUMP_CASE(eopframe)
|
|
|
|
DUMP_CASE(epmismatch)
|
|
|
|
DUMP_CASE(inepintr)
|
|
|
|
DUMP_CASE(outepintr)
|
|
|
|
DUMP_CASE(incomplisoin)
|
|
|
|
DUMP_CASE(incomplisoout)
|
|
|
|
DUMP_CASE(portintr)
|
|
|
|
DUMP_CASE(hcintr)
|
|
|
|
DUMP_CASE(ptxfempty)
|
|
|
|
DUMP_CASE(conidstschng)
|
|
|
|
DUMP_CASE(disconnect)
|
|
|
|
DUMP_CASE(sessreqintr)
|
|
|
|
DUMP_CASE(wkupintr)
|
|
|
|
|
|
|
|
buffer[strlen(buffer) - 1] = 0;
|
|
|
|
}
|
|
|
|
|
2010-05-18 09:58:52 +00:00
|
|
|
/* interrupt service routine */
|
|
|
|
void INT_USB(void)
|
|
|
|
{
|
2010-06-12 05:26:23 +00:00
|
|
|
static char buffer[256];
|
|
|
|
/* some bits in GINTSTS can be set even though we didn't enable the interrupt source
|
|
|
|
* so AND it with the actual mask */
|
|
|
|
unsigned long sts = USB_GINTSTS & USB_GINTMSK;
|
|
|
|
unsigned long handled_one = 0; /* mask of all listed one (either handled or not) */
|
|
|
|
|
|
|
|
#define HANDLED_CASE(bitmask, callfn) \
|
|
|
|
handled_one |= bitmask; \
|
|
|
|
if(sts & bitmask) \
|
|
|
|
{ \
|
|
|
|
if(!callfn()) \
|
|
|
|
goto Lerr; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define UNHANDLED_CASE(bitmask) \
|
|
|
|
handled_one |= bitmask; \
|
|
|
|
if(sts & bitmask) \
|
|
|
|
goto Lunhandled;
|
|
|
|
|
|
|
|
/* device part */
|
|
|
|
HANDLED_CASE(USB_GINTMSK_usbreset, handle_usb_reset)
|
|
|
|
HANDLED_CASE(USB_GINTMSK_enumdone, handle_enum_done)
|
|
|
|
HANDLED_CASE(USB_GINTMSK_inepintr, handle_in_ep_int)
|
|
|
|
HANDLED_CASE(USB_GINTMSK_outepintr, handle_out_ep_int)
|
|
|
|
|
|
|
|
/* common part */
|
|
|
|
UNHANDLED_CASE(USB_GINTMSK_otgintr)
|
|
|
|
UNHANDLED_CASE(USB_GINTMSK_conidstschng)
|
|
|
|
UNHANDLED_CASE(USB_GINTMSK_disconnect)
|
|
|
|
|
|
|
|
/* unlisted ones */
|
|
|
|
if(sts & ~handled_one)
|
|
|
|
goto Lunhandled;
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
Lunhandled:
|
|
|
|
dump_intsts(buffer, sizeof buffer, sts);
|
|
|
|
panicf("unhandled usb int: %lx (%s)", sts, buffer);
|
|
|
|
|
|
|
|
Lerr:
|
|
|
|
dump_intsts(buffer, sizeof buffer, sts);
|
|
|
|
panicf("error in usb int: %lx (%s)", sts, buffer);
|
2010-05-18 09:58:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void usb_drv_set_test_mode(int mode)
|
|
|
|
{
|
|
|
|
(void) mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_drv_set_address(int address)
|
|
|
|
{
|
|
|
|
(void) address;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_drv_stall(int ep, bool stall, bool in)
|
|
|
|
{
|
|
|
|
(void) ep;
|
|
|
|
(void) stall;
|
|
|
|
(void) in;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool usb_drv_stalled(int ep, bool in)
|
|
|
|
{
|
|
|
|
(void) ep;
|
|
|
|
(void) in;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|