X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fusb.c;h=1f69d16aa2b738d732125891d8aff0b50602f45a;hb=refs%2Fheads%2Fcoreboot;hp=5b3649c3da4d5e5c90de50b6229949d89ce75f8e;hpb=357bdfa26a681d614f04e842f85850fe5848f6fe;p=seabios.git diff --git a/src/usb.c b/src/usb.c index 5b3649c..1f69d16 100644 --- a/src/usb.c +++ b/src/usb.c @@ -11,14 +11,13 @@ #include "pci_ids.h" // PCI_CLASS_SERIAL_USB_UHCI #include "usb-uhci.h" // uhci_init #include "usb-ohci.h" // ohci_init +#include "usb-ehci.h" // ehci_init #include "usb-hid.h" // usb_keyboard_setup #include "usb-hub.h" // usb_hub_init #include "usb-msc.h" // usb_msc_init #include "usb.h" // struct usb_s #include "biosvar.h" // GET_GLOBAL -struct usb_s USBControllers[16] VAR16VISIBLE; - /**************************************************************** * Controller function wrappers @@ -31,27 +30,30 @@ free_pipe(struct usb_pipe *pipe) ASSERT32FLAT(); if (!pipe) return; - struct usb_s *cntl = endp2cntl(pipe->endp); - switch (cntl->type) { + switch (pipe->type) { default: case USB_TYPE_UHCI: return uhci_free_pipe(pipe); case USB_TYPE_OHCI: return ohci_free_pipe(pipe); + case USB_TYPE_EHCI: + return ehci_free_pipe(pipe); } } -// Allocate a control pipe (which can only be used by 32bit code) +// Allocate a control pipe to a default endpoint (which can only be +// used by 32bit code) static struct usb_pipe * -alloc_control_pipe(u32 endp) +alloc_default_control_pipe(struct usb_pipe *dummy) { - struct usb_s *cntl = endp2cntl(endp); - switch (cntl->type) { + switch (dummy->type) { default: case USB_TYPE_UHCI: - return uhci_alloc_control_pipe(endp); + return uhci_alloc_control_pipe(dummy); case USB_TYPE_OHCI: - return ohci_alloc_control_pipe(endp); + return ohci_alloc_control_pipe(dummy); + case USB_TYPE_EHCI: + return ehci_alloc_control_pipe(dummy); } } @@ -61,71 +63,91 @@ send_control(struct usb_pipe *pipe, int dir, const void *cmd, int cmdsize , void *data, int datasize) { ASSERT32FLAT(); - struct usb_s *cntl = endp2cntl(pipe->endp); - switch (cntl->type) { + switch (pipe->type) { default: case USB_TYPE_UHCI: return uhci_control(pipe, dir, cmd, cmdsize, data, datasize); case USB_TYPE_OHCI: return ohci_control(pipe, dir, cmd, cmdsize, data, datasize); + case USB_TYPE_EHCI: + return ehci_control(pipe, dir, cmd, cmdsize, data, datasize); } } +// Fill "pipe" endpoint info from an endpoint descriptor. +static void +desc2pipe(struct usb_pipe *newpipe, struct usb_pipe *origpipe + , struct usb_endpoint_descriptor *epdesc) +{ + memcpy(newpipe, origpipe, sizeof(*newpipe)); + newpipe->ep = epdesc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; + newpipe->maxpacket = epdesc->wMaxPacketSize; +} + struct usb_pipe * -alloc_bulk_pipe(u32 endp) +alloc_bulk_pipe(struct usb_pipe *pipe, struct usb_endpoint_descriptor *epdesc) { - struct usb_s *cntl = endp2cntl(endp); - switch (cntl->type) { + struct usb_pipe dummy; + desc2pipe(&dummy, pipe, epdesc); + switch (pipe->type) { default: case USB_TYPE_UHCI: - return uhci_alloc_bulk_pipe(endp); + return uhci_alloc_bulk_pipe(&dummy); case USB_TYPE_OHCI: - return NULL; + return ohci_alloc_bulk_pipe(&dummy); + case USB_TYPE_EHCI: + return ehci_alloc_bulk_pipe(&dummy); } } int -usb_send_bulk(struct usb_pipe *pipe, int dir, void *data, int datasize) +usb_send_bulk(struct usb_pipe *pipe_fl, int dir, void *data, int datasize) { - u32 endp = GET_FLATPTR(pipe->endp); - struct usb_s *cntl = endp2cntl(endp); - switch (cntl->type) { + switch (GET_FLATPTR(pipe_fl->type)) { default: case USB_TYPE_UHCI: - return uhci_send_bulk(pipe, dir, data, datasize); + return uhci_send_bulk(pipe_fl, dir, data, datasize); case USB_TYPE_OHCI: - return -1; + return ohci_send_bulk(pipe_fl, dir, data, datasize); + case USB_TYPE_EHCI: + return ehci_send_bulk(pipe_fl, dir, data, datasize); } } struct usb_pipe * -alloc_intr_pipe(u32 endp, int period) +alloc_intr_pipe(struct usb_pipe *pipe, struct usb_endpoint_descriptor *epdesc) { - struct usb_s *cntl = endp2cntl(endp); + struct usb_pipe dummy; + desc2pipe(&dummy, pipe, epdesc); // Find the exponential period of the requested time. - if (period <= 0) - period = 1; - int frameexp = __fls(period); - switch (cntl->type) { + int period = epdesc->bInterval; + int frameexp; + if (pipe->speed != USB_HIGHSPEED) + frameexp = (period <= 0) ? 0 : __fls(period); + else + frameexp = (period <= 4) ? 0 : period - 4; + switch (pipe->type) { default: case USB_TYPE_UHCI: - return uhci_alloc_intr_pipe(endp, frameexp); + return uhci_alloc_intr_pipe(&dummy, frameexp); case USB_TYPE_OHCI: - return ohci_alloc_intr_pipe(endp, frameexp); + return ohci_alloc_intr_pipe(&dummy, frameexp); + case USB_TYPE_EHCI: + return ehci_alloc_intr_pipe(&dummy, frameexp); } } int noinline -usb_poll_intr(struct usb_pipe *pipe, void *data) +usb_poll_intr(struct usb_pipe *pipe_fl, void *data) { - u32 endp = GET_FLATPTR(pipe->endp); - struct usb_s *cntl = endp2cntl(endp); - switch (GET_GLOBAL(cntl->type)) { + switch (GET_FLATPTR(pipe_fl->type)) { default: case USB_TYPE_UHCI: - return uhci_poll_intr(pipe, data); + return uhci_poll_intr(pipe_fl, data); case USB_TYPE_OHCI: - return ohci_poll_intr(pipe, data); + return ohci_poll_intr(pipe_fl, data); + case USB_TYPE_EHCI: + return ehci_poll_intr(pipe_fl, data); } } @@ -153,23 +175,6 @@ findEndPointDesc(struct usb_interface_descriptor *iface, int imax } } -// Change endpoint characteristics of the default control pipe. -static void -usb_alter_control(struct usb_pipe *pipe, u32 endp) -{ - pipe->endp = endp; -} - -// Build an encoded "endp" from an endpoint descriptor. -u32 -mkendpFromDesc(struct usb_pipe *pipe, struct usb_endpoint_descriptor *epdesc) -{ - u32 endp = pipe->endp; - return mkendp(endp2cntl(endp), endp2devaddr(endp) - , epdesc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK - , endp2speed(endp), epdesc->wMaxPacketSize); -} - // Send a message to the default control pipe of a device. int send_default_control(struct usb_pipe *pipe, const struct usb_ctrlrequest *req @@ -218,32 +223,6 @@ get_device_config(struct usb_pipe *pipe) return config; } -static struct usb_pipe * -set_address(struct usb_pipe *pipe) -{ - ASSERT32FLAT(); - dprintf(3, "set_address %x\n", pipe->endp); - struct usb_s *cntl = endp2cntl(pipe->endp); - if (cntl->maxaddr >= USB_MAXADDR) - return 0; - - struct usb_ctrlrequest req; - req.bRequestType = USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE; - req.bRequest = USB_REQ_SET_ADDRESS; - req.wValue = cntl->maxaddr + 1; - req.wIndex = 0; - req.wLength = 0; - int ret = send_default_control(pipe, &req, NULL); - if (ret) - return 0; - msleep(USB_TIME_SETADDR_RECOVERY); - - cntl->maxaddr++; - u32 endp = mkendp(cntl, cntl->maxaddr, 0 - , endp2speed(pipe->endp), endp2maxsize(pipe->endp)); - return alloc_control_pipe(endp); -} - static int set_configuration(struct usb_pipe *pipe, u16 val) { @@ -261,25 +240,78 @@ set_configuration(struct usb_pipe *pipe, u16 val) * Initialization and enumeration ****************************************************************/ -// Called for every found device - see if a driver is available for -// this device and do setup if so. -int -configure_usb_device(struct usb_s *cntl, int lowspeed) +// Assign an address to a device in the default state on the given +// controller. +static struct usb_pipe * +usb_set_address(struct usbhub_s *hub, int port, int speed) { ASSERT32FLAT(); - dprintf(3, "config_usb: %p %d\n", cntl, lowspeed); + struct usb_s *cntl = hub->cntl; + dprintf(3, "set_address %p\n", cntl); + if (cntl->maxaddr >= USB_MAXADDR) + return NULL; - // Get device info struct usb_pipe *defpipe = cntl->defaultpipe; - u32 endp = mkendp(cntl, 0, 0, lowspeed, 8); if (!defpipe) { - cntl->defaultpipe = defpipe = alloc_control_pipe(endp); + // Create a pipe for the default address. + struct usb_pipe dummy; + memset(&dummy, 0, sizeof(dummy)); + dummy.cntl = cntl; + dummy.type = cntl->type; + dummy.maxpacket = 8; + dummy.path = (u64)-1; + cntl->defaultpipe = defpipe = alloc_default_control_pipe(&dummy); if (!defpipe) - return 0; + return NULL; + } + defpipe->speed = speed; + if (hub->pipe) { + if (hub->pipe->speed == USB_HIGHSPEED) { + defpipe->tt_devaddr = hub->pipe->devaddr; + defpipe->tt_port = port; + } else { + defpipe->tt_devaddr = hub->pipe->tt_devaddr; + defpipe->tt_port = hub->pipe->tt_port; + } + } else { + defpipe->tt_devaddr = defpipe->tt_port = 0; } - usb_alter_control(defpipe, endp); + + msleep(USB_TIME_RSTRCY); + + struct usb_ctrlrequest req; + req.bRequestType = USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE; + req.bRequest = USB_REQ_SET_ADDRESS; + req.wValue = cntl->maxaddr + 1; + req.wIndex = 0; + req.wLength = 0; + int ret = send_default_control(defpipe, &req, NULL); + if (ret) + return NULL; + + msleep(USB_TIME_SETADDR_RECOVERY); + + cntl->maxaddr++; + defpipe->devaddr = cntl->maxaddr; + struct usb_pipe *pipe = alloc_default_control_pipe(defpipe); + defpipe->devaddr = 0; + if (hub->pipe) + pipe->path = hub->pipe->path; + pipe->path = (pipe->path << 8) | port; + return pipe; +} + +// Called for every found device - see if a driver is available for +// this device and do setup if so. +static int +configure_usb_device(struct usb_pipe *pipe) +{ + ASSERT32FLAT(); + dprintf(3, "config_usb: %p\n", pipe); + + // Set the max packet size for endpoint 0 of this device. struct usb_device_descriptor dinfo; - int ret = get_device_info8(defpipe, &dinfo); + int ret = get_device_info8(pipe, &dinfo); if (ret) return 0; dprintf(3, "device rev=%04x cls=%02x sub=%02x proto=%02x size=%02x\n" @@ -287,30 +319,23 @@ configure_usb_device(struct usb_s *cntl, int lowspeed) , dinfo.bDeviceProtocol, dinfo.bMaxPacketSize0); if (dinfo.bMaxPacketSize0 < 8 || dinfo.bMaxPacketSize0 > 64) return 0; - endp = mkendp(cntl, 0, 0, lowspeed, dinfo.bMaxPacketSize0); - usb_alter_control(defpipe, endp); + pipe->maxpacket = dinfo.bMaxPacketSize0; // Get configuration - struct usb_pipe *pipe = NULL; - struct usb_config_descriptor *config = get_device_config(defpipe); + struct usb_config_descriptor *config = get_device_config(pipe); if (!config) return 0; // Determine if a driver exists for this device - only look at the // first interface of the first configuration. struct usb_interface_descriptor *iface = (void*)(&config[1]); - if ((iface->bInterfaceClass != USB_CLASS_HID - || iface->bInterfaceSubClass != USB_INTERFACE_SUBCLASS_BOOT - || iface->bInterfaceProtocol != USB_INTERFACE_PROTOCOL_KEYBOARD) - && (iface->bInterfaceClass != USB_CLASS_MASS_STORAGE) - && (iface->bInterfaceClass != USB_CLASS_HUB)) + if (iface->bInterfaceClass != USB_CLASS_HID + && iface->bInterfaceClass != USB_CLASS_MASS_STORAGE + && iface->bInterfaceClass != USB_CLASS_HUB) // Not a supported device. goto fail; - // Set the address and configure device. - pipe = set_address(defpipe); - if (!pipe) - goto fail; + // Set the configuration. ret = set_configuration(pipe, config->bConfigurationValue); if (ret) goto fail; @@ -322,11 +347,10 @@ configure_usb_device(struct usb_s *cntl, int lowspeed) else if (iface->bInterfaceClass == USB_CLASS_MASS_STORAGE) ret = usb_msc_init(pipe, iface, imax); else - ret = usb_keyboard_init(pipe, iface, imax); + ret = usb_hid_init(pipe, iface, imax); if (ret) goto fail; - free_pipe(pipe); free(config); return 1; fail: @@ -334,6 +358,66 @@ fail: return 0; } +static void +usb_init_hub_port(void *data) +{ + struct usbhub_s *hub = data; + u32 port = hub->port; // XXX - find better way to pass port + + // Detect if device present (and possibly start reset) + int ret = hub->op->detect(hub, port); + if (ret) + // No device present + goto done; + + // Reset port and determine device speed + mutex_lock(&hub->cntl->resetlock); + ret = hub->op->reset(hub, port); + if (ret < 0) + // Reset failed + goto resetfail; + + // Set address of port + struct usb_pipe *pipe = usb_set_address(hub, port, ret); + if (!pipe) { + hub->op->disconnect(hub, port); + goto resetfail; + } + mutex_unlock(&hub->cntl->resetlock); + + // Configure the device + int count = configure_usb_device(pipe); + free_pipe(pipe); + if (!count) + hub->op->disconnect(hub, port); + hub->devcount += count; +done: + hub->threads--; + return; + +resetfail: + mutex_unlock(&hub->cntl->resetlock); + goto done; +} + +void +usb_enumerate(struct usbhub_s *hub) +{ + u32 portcount = hub->portcount; + hub->threads = portcount; + + // Launch a thread for every port. + int i; + for (i=0; iport = i; + run_thread(usb_init_hub_port, hub); + } + + // Wait for threads to complete. + while (hub->threads) + yield(); +} + void usb_setup(void) { @@ -343,30 +427,42 @@ usb_setup(void) dprintf(3, "init usb\n"); - memset(&USBControllers, 0, sizeof(USBControllers)); - usb_keyboard_setup(); - // Look for USB controllers int count = 0; - int bdf, max; - foreachpci(bdf, max) { - u32 code = pci_config_readl(bdf, PCI_CLASS_REVISION) >> 8; - - if (code >> 8 != PCI_CLASS_SERIAL_USB) + struct pci_device *ehcipci = PCIDevices; + struct pci_device *pci; + foreachpci(pci) { + if (pci->class != PCI_CLASS_SERIAL_USB) continue; - struct usb_s *cntl = &USBControllers[count]; - cntl->bdf = bdf; - - if (code == PCI_CLASS_SERIAL_USB_UHCI) - run_thread(uhci_init, cntl); - else if (code == PCI_CLASS_SERIAL_USB_OHCI) - run_thread(ohci_init, cntl); - else - continue; + if (pci->bdf >= ehcipci->bdf) { + // Check to see if this device has an ehci controller + int found = 0; + ehcipci = pci; + for (;;) { + if (pci_classprog(ehcipci) == PCI_CLASS_SERIAL_USB_EHCI) { + // Found an ehci controller. + int ret = ehci_init(ehcipci, count++, pci); + if (ret) + // Error + break; + count += found; + pci = ehcipci; + break; + } + if (ehcipci->class == PCI_CLASS_SERIAL_USB) + found++; + ehcipci = ehcipci->next; + if (!ehcipci || (pci_bdf_to_busdev(ehcipci->bdf) + != pci_bdf_to_busdev(pci->bdf))) + // No ehci controller found. + break; + } + } - count++; - if (count >= ARRAY_SIZE(USBControllers)) - break; + if (pci_classprog(pci) == PCI_CLASS_SERIAL_USB_UHCI) + uhci_init(pci, count++); + else if (pci_classprog(pci) == PCI_CLASS_SERIAL_USB_OHCI) + ohci_init(pci, count++); } }