/* mini - a Free Software replacement for the Nintendo/BroadOn IOS. ohci hardware support Copyright (C) 2009 Bernhard Urban Copyright (C) 2009 Sebastian Falbesoner # This code is licensed to you under the terms of the GNU GPL, version 2; # see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt */ #include "bootmii_ppc.h" #include "ohci.h" #include "irq.h" #include "string.h" #define gecko_printf printf #define dma_addr(address) virt_to_phys(address) static struct ohci_hcca hcca_oh0; static void dbg_op_state() { switch (read32(OHCI0_HC_CONTROL) & OHCI_CTRL_HCFS) { case OHCI_USB_SUSPEND: gecko_printf("ohci-- OHCI_USB_SUSPEND\n"); break; case OHCI_USB_RESET: gecko_printf("ohci-- OHCI_USB_RESET\n"); break; case OHCI_USB_OPER: gecko_printf("ohci-- OHCI_USB_OPER\n"); break; case OHCI_USB_RESUME: gecko_printf("ohci-- OHCI_USB_RESUME\n"); break; } } void ohci_init() { gecko_printf("ohci-- init\n"); dbg_op_state(); /* disable hc interrupts */ set32(OHCI0_HC_INT_DISABLE, OHCI_INTR_MIE); /* save fmInterval and calculate FSMPS */ #define FSMP(fi) (0x7fff & ((6 * ((fi) - 210)) / 7)) #define FI 0x2edf /* 12000 bits per frame (-1) */ u32 fmint = read32(OHCI0_HC_FM_INTERVAL) & 0x3fff; if(fmint != FI) gecko_printf("ohci-- fminterval delta: %d\n", fmint - FI); fmint |= FSMP (fmint) << 16; /* enable interrupts of both usb host controllers */ set32(EHCI_CTL, EHCI_CTL_OH0INTE | EHCI_CTL_OH1INTE | 0xe0000); u32 temp = 0; u32 hcctrl = read32(OHCI0_HC_CONTROL); switch(hcctrl & OHCI_CTRL_HCFS) { case OHCI_USB_OPER: temp = 0; break; case OHCI_USB_SUSPEND: case OHCI_USB_RESUME: hcctrl &= OHCI_CTRL_RWC; hcctrl |= OHCI_USB_RESUME; temp = 10; break; case OHCI_USB_RESET: hcctrl &= OHCI_CTRL_RWC; hcctrl |= OHCI_USB_RESET; temp = 50; break; } write32(OHCI0_HC_CONTROL, hcctrl); (void) read32(OHCI0_HC_CONTROL); udelay(temp*1000); memset(&hcca_oh0, 0, sizeof(struct ohci_hcca)); dbg_op_state(); /* reset HC */ write32(OHCI0_HC_COMMAND_STATUS, OHCI_HCR); /* wait max. 30us */ u32 ts = 30; while ((read32(OHCI0_HC_COMMAND_STATUS) & OHCI_HCR) != 0) { if(--ts == 0) { gecko_printf("ohci-- FAILED"); return; } udelay(1); } /* disable interrupts; 2ms timelimit here! now we're in the SUSPEND state ... must go OPERATIONAL within 2msec else HC enters RESUME */ u32 cookie = irq_kill(); /* Tell the controller where the control and bulk lists are * The lists are empty now. */ write32(OHCI0_HC_CTRL_HEAD_ED, 0); write32(OHCI0_HC_BULK_HEAD_ED, 0); /* set hcca adress */ write32(OHCI0_HC_HCCA, dma_addr(&hcca_oh0)); /* set periodicstart */ #define FIT (1<<31) u32 fmInterval = read32(OHCI0_HC_FM_INTERVAL) &0x3fff; u32 fit = read32(OHCI0_HC_FM_INTERVAL) & FIT; write32(OHCI0_HC_FM_INTERVAL, fmint | (fit ^ FIT)); write32(OHCI0_HC_PERIODIC_START, ((9*fmInterval)/10)&0x3fff); /* testing bla */ if ((read32(OHCI0_HC_FM_INTERVAL) & 0x3fff0000) == 0 || !read32(OHCI0_HC_PERIODIC_START)) { gecko_printf("ohci-- w00t, fail!! see ohci-hcd.c:669\n"); } /* start HC operations */ write32(OHCI0_HC_CONTROL, (read32(OHCI0_HC_CONTROL) & OHCI_CTRL_RWC) | OHCI_CONTROL_INIT | OHCI_USB_OPER); /* wake on ConnectStatusChange, matching external hubs */ set32(OHCI0_HC_RH_STATUS, RH_HS_DRWE); /* Choose the interrupts we care about now, others later on demand */ write32(OHCI0_HC_INT_STATUS, ~0); write32(OHCI0_HC_INT_ENABLE, OHCI_INTR_INIT); irq_restore(cookie); dbg_op_state(); } void ohci0_irq() { gecko_printf("ohci_irq\n"); write32(OHCI0_HC_INT_STATUS, ~0); }