/* * File : core.c * This file is part of RT-Thread RTOS * COPYRIGHT (C) 2011, RT-Thread Development Team * * 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 program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Change Logs: * Date Author Notes * 2011-12-12 Yi Qiu first version */ #include #include static struct uinstance dev[USB_MAX_DEVICE]; /** * This function will allocate an usb device instance from system. * * @param parent the hub instance to which the new allocated device attached. * @param port the hub port. * * @return the allocate instance on successful, or RT_NULL on failure. */ uinst_t rt_usbh_alloc_instance(void) { int i; /* lock scheduler */ rt_enter_critical(); for(i=0; idev_desc; RT_DEBUG_LOG(RT_DEBUG_USB, ("start enumnation\n")); /* get device descriptor head */ ret = rt_usbh_get_descriptor(device, USB_DESC_TYPE_DEVICE, (void*)dev_desc, 8); if(ret != RT_EOK) { rt_kprintf("get device descriptor head failed\n"); return ret; } /* set device address */ ret = rt_usbh_set_address(device); if(ret != RT_EOK) { rt_kprintf("set device address failed\n"); return ret; } /* set device max packet size */ device->max_packet_size = device->dev_desc.bMaxPacketSize0; RT_DEBUG_LOG(RT_DEBUG_USB, ("get device descriptor length %d\n", dev_desc->bLength)); /* get full device descriptor again */ ret = rt_usbh_get_descriptor (device, USB_DESC_TYPE_DEVICE, (void*)dev_desc, dev_desc->bLength); if(ret != RT_EOK) { rt_kprintf("get full device descriptor failed\n"); return ret; } RT_DEBUG_LOG(RT_DEBUG_USB, ("Vendor ID 0x%x\n", dev_desc->idVendor)); RT_DEBUG_LOG(RT_DEBUG_USB, ("Product ID 0x%x\n", dev_desc->idProduct)); /* get configuration descriptor head */ ret = rt_usbh_get_descriptor(device, USB_DESC_TYPE_CONFIGURATION, &cfg_desc, 18); if(ret != RT_EOK) { rt_kprintf("get configuration descriptor head failed\n"); return ret; } /* alloc memory for configuration descriptor */ device->cfg_desc = (ucfg_desc_t)rt_malloc(cfg_desc.wTotalLength); rt_memset(device->cfg_desc, 0, cfg_desc.wTotalLength); /* get full configuration descriptor */ ret = rt_usbh_get_descriptor(device, USB_DESC_TYPE_CONFIGURATION, device->cfg_desc, cfg_desc.wTotalLength); if(ret != RT_EOK) { rt_kprintf("get full configuration descriptor failed\n"); return ret; } /* set configuration */ ret = rt_usbh_set_configure(device, 1); if(ret != RT_EOK) return ret; for(i=0; icfg_desc->bNumInterfaces; i++) { /* get interface descriptor through configuration descriptor */ ret = rt_usbh_get_interface_descriptor(device->cfg_desc, i, &intf_desc); if(ret != RT_EOK) { rt_kprintf("rt_usb_get_interface_descriptor error\n"); return -RT_ERROR; } RT_DEBUG_LOG(RT_DEBUG_USB, ("interface class 0x%x, subclass 0x%x\n", intf_desc->bInterfaceClass, intf_desc->bInterfaceSubClass)); /* find driver by class code found in interface descriptor */ drv = rt_usbh_class_driver_find(intf_desc->bInterfaceClass, intf_desc->bInterfaceSubClass); if(drv != RT_NULL) { /* allocate memory for interface device */ device->intf[i] = (struct uintf*)rt_malloc(sizeof(struct uintf)); device->intf[i]->drv = drv; device->intf[i]->device = device; device->intf[i]->intf_desc = intf_desc; device->intf[i]->user_data = RT_NULL; /* open usb class driver */ ret = rt_usbh_class_driver_enable(drv, (void*)device->intf[i]); if(ret != RT_EOK) { rt_kprintf("interface %d run class driver error\n", i); } } else { rt_kprintf("find usb device driver failed\n"); continue; } } return RT_EOK; } /** * This function will detach an usb device instance from its host controller, * and release all resource. * * @param device the usb device instance. * * @return the error code, RT_EOK on successfully. */ rt_err_t rt_usbh_detach_instance(uinst_t device) { int i = 0; if(device == RT_NULL) { rt_kprintf("no usb instance to detach\n"); return -RT_ERROR; } /* free configration descriptor */ if(device->cfg_desc) rt_free(device->cfg_desc); for(i=0; icfg_desc->bNumInterfaces; i++) { if(device->intf[i] == RT_NULL) continue; if(device->intf[i]->drv == RT_NULL) continue; RT_ASSERT(device->intf[i]->device == device); RT_DEBUG_LOG(RT_DEBUG_USB, ("free interface instance %d\n", i)); rt_usbh_class_driver_disable(device->intf[i]->drv, (void*)device->intf[i]); } rt_memset(device, 0, sizeof(struct uinstance)); return RT_EOK; } /** * This function will do USB_REQ_GET_DESCRIPTO' request for the usb device instance, * * @param device the usb device instance. * @param type the type of descriptor request. * @param buffer the data buffer to save requested data * @param nbytes the size of buffer * * @return the error code, RT_EOK on successfully. */ rt_err_t rt_usbh_get_descriptor(uinst_t device, rt_uint8_t type, void* buffer, int nbytes) { struct urequest setup; int timeout = 100; RT_ASSERT(device != RT_NULL); setup.request_type = USB_REQ_TYPE_DIR_IN | USB_REQ_TYPE_STANDARD | USB_REQ_TYPE_DEVICE; setup.request = USB_REQ_GET_DESCRIPTOR; setup.index = 0; setup.length = nbytes; setup.value = type << 8; if(rt_usb_hcd_control_xfer(device->hcd, device, &setup, buffer, nbytes, timeout) != nbytes) return -RT_EIO; else return RT_EOK; } /** * This function will set an address to the usb device. * * @param device the usb device instance. * * @return the error code, RT_EOK on successfully. */ rt_err_t rt_usbh_set_address(uinst_t device) { struct urequest setup; int timeout = 100; RT_ASSERT(device != RT_NULL); RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usb_set_address\n")); setup.request_type = USB_REQ_TYPE_DIR_OUT | USB_REQ_TYPE_STANDARD | USB_REQ_TYPE_DEVICE; setup.request = USB_REQ_SET_ADDRESS; setup.index = 0; setup.length = 0; setup.value = device->index; if(rt_usb_hcd_control_xfer(device->hcd, device, &setup, RT_NULL, 0, timeout) != 0) return -RT_EIO; rt_thread_delay(50); device->address = device->index; return RT_EOK; } /** * This function will set a configuration to the usb device. * * @param device the usb device instance. * @param config the configuration number. * * @return the error code, RT_EOK on successfully. */ rt_err_t rt_usbh_set_configure(uinst_t device, int config) { struct urequest setup; int timeout = 100; /* check parameter */ RT_ASSERT(device != RT_NULL); setup.request_type = USB_REQ_TYPE_DIR_OUT | USB_REQ_TYPE_STANDARD | USB_REQ_TYPE_DEVICE; setup.request = USB_REQ_SET_CONFIGURATION; setup.index = 0; setup.length = 0; setup.value = config; if(rt_usb_hcd_control_xfer(device->hcd, device, &setup, RT_NULL, 0, timeout) != 0) return -RT_EIO; return RT_EOK; } /** * This function will set an interface to the usb device. * * @param device the usb device instance. * @param intf the interface number. * * @return the error code, RT_EOK on successfully. */ rt_err_t rt_usbh_set_interface(uinst_t device, int intf) { struct urequest setup; int timeout = 100; /* check parameter */ RT_ASSERT(device != RT_NULL); setup.request_type = USB_REQ_TYPE_DIR_OUT | USB_REQ_TYPE_STANDARD | USB_REQ_TYPE_INTERFACE; setup.request = USB_REQ_SET_INTERFACE; setup.index = 0; setup.length = 0; setup.value = intf; if(rt_usb_hcd_control_xfer(device->hcd, device, &setup, RT_NULL, 0, timeout) != 0) return -RT_EIO; return RT_EOK; } /** * This function will clear feature for the endpoint of the usb device. * * @param device the usb device instance. * @param endpoint the endpoint number of the usb device. * * @return the error code, RT_EOK on successfully. */ rt_err_t rt_usbh_clear_feature(uinst_t device, int endpoint, int feature) { struct urequest setup; int timeout = 100; /* check parameter */ RT_ASSERT(device != RT_NULL); setup.request_type = USB_REQ_TYPE_DIR_OUT | USB_REQ_TYPE_STANDARD | USB_REQ_TYPE_ENDPOINT; setup.request = USB_REQ_CLEAR_FEATURE; setup.index = endpoint; setup.length = 0; setup.value = feature; if(rt_usb_hcd_control_xfer(device->hcd, device, &setup, RT_NULL, 0, timeout) != 0) return -RT_EIO; return RT_EOK; } /** * This function will get an interface descriptor from the configuration descriptor. * * @param cfg_desc the point of configuration descriptor structure. * @param num the number of interface descriptor. * @intf_desc the point of interface descriptor point. * * @return the error code, RT_EOK on successfully. */ rt_err_t rt_usbh_get_interface_descriptor(ucfg_desc_t cfg_desc, int num, uintf_desc_t* intf_desc) { rt_uint32_t ptr, depth = 0; udesc_t desc; /* check parameter */ RT_ASSERT(cfg_desc != RT_NULL); ptr = (rt_uint32_t)cfg_desc + cfg_desc->bLength; while(ptr < (rt_uint32_t)cfg_desc + cfg_desc->wTotalLength) { if(depth++ > 0x20) { *intf_desc = RT_NULL; return -RT_EIO; } desc = (udesc_t)ptr; if(desc->type == USB_DESC_TYPE_INTERFACE) { if(((uintf_desc_t)desc)->bInterfaceNumber == num) { *intf_desc = (uintf_desc_t)desc; RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usb_get_interface_descriptor: %d\n", num)); return RT_EOK; } } ptr = (rt_uint32_t)desc + desc->bLength; } rt_kprintf("rt_usb_get_interface_descriptor %d failed\n", num); return -RT_EIO; } /** * This function will get an endpoint descriptor from the interface descriptor. * * @param intf_desc the point of interface descriptor structure. * @param num the number of endpoint descriptor. * @param ep_desc the point of endpoint descriptor point. * * @return the error code, RT_EOK on successfully. */ rt_err_t rt_usbh_get_endpoint_descriptor(uintf_desc_t intf_desc, int num, uep_desc_t* ep_desc) { int count = 0, depth = 0; rt_uint32_t ptr; udesc_t desc; /* check parameter */ RT_ASSERT(intf_desc != RT_NULL); RT_ASSERT(num < intf_desc->bNumEndpoints); ptr = (rt_uint32_t)intf_desc + intf_desc->bLength; while(count < intf_desc->bNumEndpoints) { if(depth++ > 0x20) { *ep_desc = RT_NULL; return -RT_EIO; } desc = (udesc_t)ptr; if(desc->type == USB_DESC_TYPE_ENDPOINT) { if(num == count) { *ep_desc = (uep_desc_t)desc; RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usb_get_endpoint_descriptor: %d\n", num)); return RT_EOK; } else count++; } ptr = (rt_uint32_t)desc + desc->bLength; } rt_kprintf("rt_usb_get_endpoint_descriptor %d failed\n", num); return -RT_EIO; }