1
0
mirror of https://github.com/gdsports/USBHost_t36 synced 2024-11-11 19:55:04 -05:00
USBHost_t36/k66_usbhost.ino

399 lines
11 KiB
Arduino
Raw Normal View History

// usb host experiments....
2016-06-29 16:25:49 -04:00
uint32_t periodictable[64] __attribute__ ((aligned(4096), used));
2016-07-30 21:55:57 -04:00
volatile uint32_t qh[12] __attribute__ ((aligned(64)));
uint32_t qtd_dummy[8] __attribute__ ((aligned(32)));
2016-06-29 09:37:43 -04:00
uint32_t qtd_setup[8] __attribute__ ((aligned(32)));
uint32_t qtd_in[8] __attribute__ ((aligned(32)));
uint32_t qtd_outack[8] __attribute__ ((aligned(32)));
2016-07-30 21:55:57 -04:00
uint32_t setupbuf[2] __attribute__ ((aligned(8)));
uint32_t inbuf[16] __attribute__ ((aligned(64)));
2017-01-23 07:47:54 -05:00
uint8_t port_state;
#define PORT_STATE_DISCONNECTED 0
#define PORT_STATE_DEBOUNCE 1
#define PORT_STATE_RESET 2
#define PORT_STATE_RECOVERY 3
#define PORT_STATE_ACTIVE 4
void setup()
{
2016-08-08 07:44:18 -04:00
// Test board has a USB data mux (this won't be on final Teensy 3.6)
2016-06-27 00:55:58 -04:00
pinMode(32, OUTPUT); // pin 32 = USB switch, high=connect device
digitalWrite(32, LOW);
2017-01-23 07:47:54 -05:00
pinMode(30, OUTPUT); // pin 30 = debug info - use oscilloscope
digitalWrite(30, LOW);
2016-08-08 07:44:18 -04:00
// Teensy 3.6 has USB host power controlled by PTE6
PORTE_PCR6 = PORT_PCR_MUX(1);
GPIOE_PDDR |= (1<<6);
GPIOE_PSOR = (1<<6); // turn on USB host power
while (!Serial) ; // wait
print("USB Host Testing");
2016-06-29 16:25:49 -04:00
print_mpu();
MPU_RGDAAC0 |= 0x30000000;
MCG_C1 |= MCG_C1_IRCLKEN; // enable MCGIRCLK 32kHz
OSC0_CR |= OSC_ERCLKEN;
SIM_SOPT2 |= SIM_SOPT2_USBREGEN; // turn on USB regulator
SIM_SOPT2 &= ~SIM_SOPT2_USBSLSRC; // use IRC for slow clock
print("power up USBHS PHY");
SIM_USBPHYCTL |= SIM_USBPHYCTL_USBDISILIM; // disable USB current limit
//SIM_USBPHYCTL = SIM_USBPHYCTL_USBDISILIM | SIM_USBPHYCTL_USB3VOUTTRG(6); // pg 237
SIM_SCGC3 |= SIM_SCGC3_USBHSDCD | SIM_SCGC3_USBHSPHY | SIM_SCGC3_USBHS;
USBHSDCD_CLOCK = 33 << 2;
print("init USBHS PHY & PLL");
// init process: page 1681-1682
2016-06-29 09:37:43 -04:00
USBPHY_CTRL_CLR = (USBPHY_CTRL_SFTRST | USBPHY_CTRL_CLKGATE); // // CTRL pg 1698
USBPHY_TRIM_OVERRIDE_EN_SET = 1;
USBPHY_PLL_SIC = USBPHY_PLL_SIC_PLL_POWER | USBPHY_PLL_SIC_PLL_ENABLE |
USBPHY_PLL_SIC_PLL_DIV_SEL(1) | USBPHY_PLL_SIC_PLL_EN_USB_CLKS;
// wait for the PLL to lock
int count=0;
while ((USBPHY_PLL_SIC & USBPHY_PLL_SIC_PLL_LOCK) == 0) {
count++;
}
print("PLL locked, waited ", count);
2016-06-29 09:37:43 -04:00
// turn on power to PHY
2016-06-27 00:55:58 -04:00
USBPHY_PWD = 0;
delay(10);
// sanity check, connect 470K pullup & 100K pulldown and watch D+ voltage change
//USBPHY_ANACTRL_CLR = (1<<10); // turn off both 15K pulldowns... works! :)
2016-06-27 00:55:58 -04:00
// sanity check, output clocks on pin 9 for testing
//SIM_SOPT2 = SIM_SOPT2 & (~SIM_SOPT2_CLKOUTSEL(7)) | SIM_SOPT2_CLKOUTSEL(3); // LPO 1kHz
//SIM_SOPT2 = SIM_SOPT2 & (~SIM_SOPT2_CLKOUTSEL(7)) | SIM_SOPT2_CLKOUTSEL(2); // Flash
//SIM_SOPT2 = SIM_SOPT2 & (~SIM_SOPT2_CLKOUTSEL(7)) | SIM_SOPT2_CLKOUTSEL(6); // XTAL
//SIM_SOPT2 = SIM_SOPT2 & (~SIM_SOPT2_CLKOUTSEL(7)) | SIM_SOPT2_CLKOUTSEL(7); // IRC 48MHz
//SIM_SOPT2 = SIM_SOPT2 & (~SIM_SOPT2_CLKOUTSEL(7)) | SIM_SOPT2_CLKOUTSEL(4); // MCGIRCLK
//CORE_PIN9_CONFIG = PORT_PCR_MUX(5); // CLKOUT on PTC3 Alt5 (Arduino pin 9)
print("begin ehci reset");
USBHS_USBCMD |= USBHS_USBCMD_RST;
count = 0;
while (USBHS_USBCMD & USBHS_USBCMD_RST) {
2016-06-29 16:25:49 -04:00
count++;
}
print(" reset waited ", count);
for (int i=0; i < 64; i++) {
periodictable[i] = 1;
}
2016-06-29 09:37:43 -04:00
qh[0] = ((uint32_t)qh) | 2;
qh[1] = 0x0040E000; // addr=0, ep=0
qh[2] = 0x40000000;
2016-07-30 21:55:57 -04:00
qh[3] = 0;
2016-06-29 09:37:43 -04:00
qh[4] = 1;
2016-07-30 21:55:57 -04:00
qh[5] = 1;
qh[6] = 0x40;
2016-06-29 09:37:43 -04:00
qh[7] = 0;
qh[8] = 0;
qh[9] = 0;
qh[10] = 0;
qh[11] = 0;
2016-07-30 21:55:57 -04:00
qtd_dummy[0] = 1;
qtd_dummy[1] = 1;
qtd_dummy[2] = 0x40; // 0x40 = halted
qtd_dummy[3] = 0;
qtd_dummy[4] = 0;
qtd_dummy[5] = 0;
qtd_dummy[6] = 0;
qtd_dummy[7] = 0;
2017-01-23 07:47:54 -05:00
port_state = PORT_STATE_DISCONNECTED;
2016-06-29 09:37:43 -04:00
2016-06-29 16:25:49 -04:00
// turn on the USBHS controller
USBHS_USBMODE = USBHS_USBMODE_TXHSD(5) | USBHS_USBMODE_CM(3); // host mode
2016-06-27 00:55:58 -04:00
USBHS_USBINTR = 0;
USBHS_PERIODICLISTBASE = (uint32_t)periodictable;
USBHS_FRINDEX = 0;
2016-06-29 09:37:43 -04:00
USBHS_ASYNCLISTADDR = (uint32_t)qh;
USBHS_USBCMD = USBHS_USBCMD_ITC(0) | USBHS_USBCMD_RS | USBHS_USBCMD_ASP(3) |
USBHS_USBCMD_FS2 | USBHS_USBCMD_FS(0) | // periodic table is 64 pointers
2016-07-30 21:55:57 -04:00
// USBHS_USBCMD_PSE |
USBHS_USBCMD_ASE;
2017-01-23 07:47:54 -05:00
//USBHS_PORTSC1 = USBHS_PORTSC_PP;
2016-06-27 00:55:58 -04:00
USBHS_PORTSC1 |= USBHS_PORTSC_PP;
//USBHS_PORTSC1 |= USBHS_PORTSC_PFSC; // force 12 Mbit/sec
//USBHS_PORTSC1 |= USBHS_PORTSC_PHCD; // phy off
2016-06-29 16:25:49 -04:00
Serial.print("USBHS_ASYNCLISTADDR = ");
Serial.println(USBHS_ASYNCLISTADDR, HEX);
Serial.print("USBHS_PERIODICLISTBASE = ");
Serial.println(USBHS_PERIODICLISTBASE, HEX);
Serial.print("periodictable = ");
Serial.println((uint32_t)periodictable, HEX);
2017-01-23 07:47:54 -05:00
NVIC_ENABLE_IRQ(IRQ_USBHS);
USBHS_USBINTR = USBHS_USBINTR_UE | USBHS_USBINTR_PCE | USBHS_USBINTR_TIE0;
delay(25);
Serial.println("Plug in device...");
digitalWrite(32, HIGH); // connect device
2016-06-27 00:55:58 -04:00
}
2017-01-23 07:47:54 -05:00
void pulse(int usec)
{
// connect oscilloscope to see these pulses....
digitalWriteFast(30, HIGH);
delayMicroseconds(usec);
digitalWriteFast(30, LOW);
}
// EHCI registers page default
// -------------- ---- -------
// USBHS_USBCMD 1599 00080000 USB Command
// USBHS_USBSTS 1602 00000000 USB Status
// USBHS_USBINTR 1606 00000000 USB Interrupt Enable
// USBHS_FRINDEX 1609 00000000 Frame Index Register
// USBHS_PERIODICLISTBASE 1610 undefine Periodic Frame List Base Address
// USBHS_ASYNCLISTADDR 1612 undefine Asynchronous List Address
// USBHS_PORTSC1 1619 00002000 Port Status and Control
// USBHS_USBMODE 1629 00005000 USB Mode
// USBHS_GPTIMERnCTL 1591 00000000 General Purpose Timer n Control
// PORT_STATE_DISCONNECTED 0
// PORT_STATE_DEBOUNCE 1
// PORT_STATE_RESET 2
// PORT_STATE_RECOVERY 3
// PORT_STATE_ACTIVE 4
void usbhs_isr(void) // USBHS_ISR_HOST
{
uint32_t stat = USBHS_USBSTS;
USBHS_USBSTS = stat; // clear pending interrupts
//stat &= USBHS_USBINTR; // mask away unwanted interrupts
Serial.print("isr:");
Serial.print(stat, HEX);
Serial.println();
if (stat & USBHS_USBSTS_PCI) { // port change detected
const uint32_t portstat = USBHS_PORTSC1;
Serial.print("port change: ");
Serial.print(portstat, HEX);
Serial.println();
USBHS_PORTSC1 = portstat | (USBHS_PORTSC_OCC|USBHS_PORTSC_PEC|USBHS_PORTSC_CSC);
if (portstat & USBHS_PORTSC_OCC) {
Serial.println(" overcurrent change");
}
if (portstat & USBHS_PORTSC_CSC) {
if (portstat & USBHS_PORTSC_CCS) {
Serial.println(" connect");
if (port_state == PORT_STATE_DISCONNECTED
|| port_state == PORT_STATE_DEBOUNCE) {
// 100 ms debounce (USB 2.0: TATTDB, page 150 & 188)
port_state = PORT_STATE_DEBOUNCE;
USBHS_GPTIMER0LD = 100000; // microseconds
USBHS_GPTIMER0CTL =
USBHS_GPTIMERCTL_RST | USBHS_GPTIMERCTL_RUN;
stat &= ~USBHS_USBSTS_TI0;
}
} else {
Serial.println(" disconnect");
port_state = PORT_STATE_DISCONNECTED;
// TODO: delete & clean up device state...
}
}
if (portstat & USBHS_PORTSC_PEC) {
// PEC bit only detects disable
Serial.println(" disable");
} else if (port_state == PORT_STATE_RESET && portstat & USBHS_PORTSC_PE) {
Serial.println(" port enabled");
port_state = PORT_STATE_RECOVERY;
// 10 ms reset recover (USB 2.0: TRSTRCY, page 151 & 188)
USBHS_GPTIMER0LD = 10000; // microseconds
USBHS_GPTIMER0CTL = USBHS_GPTIMERCTL_RST | USBHS_GPTIMERCTL_RUN;
}
if (portstat & USBHS_PORTSC_FPR) {
Serial.println(" force resume");
}
pulse(1);
}
if (stat & USBHS_USBSTS_TI0) { // timer 0
Serial.println("timer");
pulse(2);
if (port_state == PORT_STATE_DEBOUNCE) {
port_state = PORT_STATE_RESET;
USBHS_PORTSC1 |= USBHS_PORTSC_PR; // begin reset sequence
Serial.println(" begin reset");
} else if (port_state == PORT_STATE_RECOVERY) {
port_state = PORT_STATE_ACTIVE;
Serial.println(" end recovery");
}
}
}
2016-06-27 00:55:58 -04:00
void port_status()
{
uint32_t n;
2016-06-27 00:55:58 -04:00
Serial.print("Port: ");
n = USBHS_PORTSC1;
if (n & USBHS_PORTSC_PR) {
Serial.print("reset ");
}
if (n & USBHS_PORTSC_PP) {
Serial.print("on ");
} else {
Serial.print("off ");
}
if (n & USBHS_PORTSC_PHCD) {
Serial.print("phyoff ");
}
2016-06-27 00:55:58 -04:00
if (n & USBHS_PORTSC_PE) {
if (n & USBHS_PORTSC_SUSP) {
2016-06-27 00:55:58 -04:00
Serial.print("suspend ");
} else {
Serial.print("enable ");
2016-06-27 00:55:58 -04:00
}
} else {
Serial.print("disable ");
}
Serial.print("speed=");
switch ((n >> 26) & 3) {
case 0: Serial.print("12 Mbps "); break;
case 1: Serial.print("1.5 Mbps "); break;
case 2: Serial.print("480 Mbps "); break;
default: Serial.print("(undef) ");
}
if (n & USBHS_PORTSC_HSP) {
Serial.print("highspeed ");
}
if (n & USBHS_PORTSC_OCA) {
Serial.print("overcurrent ");
}
if (n & USBHS_PORTSC_CCS) {
Serial.print("connected ");
2016-06-27 00:55:58 -04:00
} else {
Serial.print("not-connected ");
2016-06-27 00:55:58 -04:00
}
// print info about the EHCI status
Serial.print(" run=");
Serial.print(USBHS_USBCMD & 1); // running mode
Serial.print(",halt=");
Serial.print((USBHS_USBSTS >> 12) & 1); // halted mode
Serial.print(",err=");
Serial.print((USBHS_USBSTS >> 4) & 1); // error encountered!
Serial.print(",asyn=");
Serial.print((USBHS_USBSTS >> 15) & 1); // running the async schedule
Serial.print(",per=");
Serial.print((USBHS_USBSTS >> 14) & 1); // running the periodic schedule
Serial.print(",index=");
Serial.print(USBHS_FRINDEX); // periodic index
2016-06-27 00:55:58 -04:00
Serial.println();
2016-06-29 16:25:49 -04:00
if (USBHS_USBSTS & 16) {
print_mpu();
USBHS_USBSTS = 16; // clear error
}
}
2016-07-30 21:55:57 -04:00
void read_descriptor(uint16_t value, uint16_t index, uint32_t len)
{
uint32_t token;
if (len > 512) len = 512;
Serial.println("Read Device Descriptor...");
qtd_setup[0] = (uint32_t)qtd_in;
qtd_setup[1] = 1;
qtd_setup[2] = 0x00080E80;
qtd_setup[3] = (uint32_t)setupbuf;
setupbuf[0] = (value << 16) | (0x06 << 8) | 0x80;
setupbuf[1] = (len << 16) | index;
qtd_in[0] = (uint32_t)qtd_outack;
qtd_in[1] = 1;
qtd_in[2] = 0x80000000 | (len << 16) | 0x0D80;
qtd_in[3] = (uint32_t)inbuf;
qtd_outack[0] = 1;
qtd_outack[1] = 1;
qtd_outack[2] = 0x80400C80;
qtd_outack[3] = 0;
// add to QH
// Save the content of the token field of the first qTD to be added
token = qtd_setup[2];
// Change the token of the first qTD so its Halted bit is set as 1
// and all other bits are zero
qtd_setup[2] = 0x40;
// copy the content of the first qTD to the dummy qTD
memcpy(qtd_dummy, qtd_setup, 32);
// Link the first qTD to the last of the qTD of the newly qTD list
qtd_outack[0] = (uint32_t)qtd_setup;
// Restore the token value to the previous dummy qTD's oken field
qtd_dummy[2] = token;
// qtd_setup becomes the dummy token... so this only works once!
delay(1);
Serial.println(qtd_dummy[2], HEX);
Serial.println(qtd_in[2], HEX);
Serial.println(qtd_outack[2], HEX);
Serial.println(qtd_setup[2], HEX);
2017-01-23 07:47:54 -05:00
2016-07-30 21:55:57 -04:00
}
void loop()
{
2017-01-23 07:47:54 -05:00
/*
2016-06-27 00:55:58 -04:00
static unsigned int count=0;
port_status();
delay(1);
count++;
if (count == 2) {
Serial.println("Plug in device...");
digitalWrite(32, HIGH); // connect device
}
if (count == 5) {
2016-06-27 00:55:58 -04:00
Serial.println("Initiate Reset Sequence...");
USBHS_PORTSC1 |= USBHS_PORTSC_PR;
}
if (count == 15) {
2016-06-27 00:55:58 -04:00
Serial.println("End Reset Sequence...");
USBHS_PORTSC1 &= ~USBHS_PORTSC_PR;
}
2016-07-30 21:55:57 -04:00
if (count == 22) {
read_descriptor(1, 0, 8); // device descriptor
}
2017-01-23 07:47:54 -05:00
if (count > 500) {
while (1) ; // stop here
}
2017-01-23 07:47:54 -05:00
*/
}
void print(const char *s)
{
Serial.println(s);
delay(10);
}
void print(const char *s, int num)
{
Serial.print(s);
Serial.println(num);
delay(10);
}
2016-06-29 16:25:49 -04:00
void print_mpu()
{
Serial.print("MPU: CESR=");
Serial.println(MPU_CESR, HEX);
}