usbdevice.c 4.7 KB
Newer Older
M
Ming, Bai 已提交
1 2 3 4 5
/*
 * File      : usbdevice.c
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2012, RT-Thread Development Team
 *
Y
yiyue.fang 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18
 *  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.
19
 * 
M
Ming, Bai 已提交
20 21
 * Change Logs:
 * Date           Author       Notes
H
heyuanjie87 已提交
22
 * 2012-10-02     Yi Qiu       first version
M
Ming, Bai 已提交
23 24 25 26 27 28
 */

#include <rtthread.h>
#include <rtdevice.h>
#include <rtservice.h>

H
heyuanjie87 已提交
29 30
#ifdef RT_USING_USB_DEVICE

31 32
#define USB_DEVICE_CONTROLLER_NAME      "usbd"

33 34
#ifdef RT_USB_DEVICE_COMPOSITE
const static char* ustring[] =
M
Ming, Bai 已提交
35 36 37
{
    "Language",
    "RT-Thread Team.",
38
    "RTT Composite Device",
39
    "320219198301",
M
Ming, Bai 已提交
40 41 42
    "Configuration",
    "Interface",
};
43
#endif
M
Ming, Bai 已提交
44 45 46 47 48 49 50 51 52 53 54

#ifdef RT_USB_DEVICE_COMPOSITE
static struct udevice_descriptor compsit_desc =
{
    USB_DESC_LENGTH_DEVICE,     //bLength;
    USB_DESC_TYPE_DEVICE,       //type;
    USB_BCD_VERSION,            //bcdUSB;
    USB_CLASS_MISC,             //bDeviceClass;
    0x02,                       //bDeviceSubClass;
    0x01,                       //bDeviceProtocol;
    0x40,                       //bMaxPacketSize0;
H
heyuanjie87 已提交
55 56
    _VENDOR_ID,                 //idVendor;
    _PRODUCT_ID,                //idProduct;
M
Ming, Bai 已提交
57 58 59 60
    USB_BCD_DEVICE,             //bcdDevice;
    USB_STRING_MANU_INDEX,      //iManufacturer;
    USB_STRING_PRODUCT_INDEX,   //iProduct;
    USB_STRING_SERIAL_INDEX,    //iSerialNumber;
61
    USB_DYNAMIC,                //bNumConfigurations;
M
Ming, Bai 已提交
62 63 64
};
#endif

65
rt_err_t rt_usb_device_init(void)
M
Ming, Bai 已提交
66 67 68 69
{
    rt_device_t udc;
    udevice_t udevice;
    uconfig_t cfg;
70 71 72 73
    ufunction_t func;

    /* create and startup usb device thread */
    rt_usbd_core_init();
M
Ming, Bai 已提交
74

75 76
    /* create a device object */
    udevice = rt_usbd_device_new();
M
Ming, Bai 已提交
77

78
    udc = rt_device_find(USB_DEVICE_CONTROLLER_NAME);
M
Ming, Bai 已提交
79 80
    if(udc == RT_NULL)
    {
81
        rt_kprintf("can't find usb device controller %s\n", USB_DEVICE_CONTROLLER_NAME);
M
Ming, Bai 已提交
82 83 84 85 86 87 88
        return -RT_ERROR;
    }

    /* set usb controller driver to the device */
    rt_usbd_device_set_controller(udevice, (udcd_t)udc);

    /* create a configuration object */
89
    cfg = rt_usbd_config_new();
M
Ming, Bai 已提交
90 91

#ifdef RT_USB_DEVICE_MSTORAGE
还_没_想_好's avatar
还_没_想_好 已提交
92 93 94 95
    {
        extern ufunction_t rt_usbd_function_mstorage_create(udevice_t device);
        /* create a mass storage function object */
        func = rt_usbd_function_mstorage_create(udevice);
M
Ming, Bai 已提交
96

还_没_想_好's avatar
还_没_想_好 已提交
97 98 99
        /* add the function to the configuration */
        rt_usbd_config_add_function(cfg, func);
    }
M
Ming, Bai 已提交
100
#endif
101

M
Ming, Bai 已提交
102
#ifdef RT_USB_DEVICE_CDC
还_没_想_好's avatar
还_没_想_好 已提交
103 104 105 106 107 108 109 110 111
    {
        extern ufunction_t rt_usbd_function_cdc_create(udevice_t device);
        /* create a cdc function object */
        func = rt_usbd_function_cdc_create(udevice);

        /* add the function to the configuration */
        rt_usbd_config_add_function(cfg, func);
    }
#endif
M
Ming, Bai 已提交
112

还_没_想_好's avatar
还_没_想_好 已提交
113 114 115 116 117 118 119 120 121
#ifdef RT_USB_DEVICE_HID
    {
        extern ufunction_t rt_usbd_function_hid_create(udevice_t device);
        /* create a cdc function object */
        func = rt_usbd_function_hid_create(udevice);

        /* add the function to the configuration */
        rt_usbd_config_add_function(cfg, func);
    }
M
Ming, Bai 已提交
122
#endif
123

M
Ming, Bai 已提交
124
#ifdef RT_USB_DEVICE_RNDIS
还_没_想_好's avatar
还_没_想_好 已提交
125 126 127 128
    {
        extern ufunction_t rt_usbd_function_rndis_create(udevice_t device);
        /* create a rndis function object */
        func = rt_usbd_function_rndis_create(udevice);
M
Ming, Bai 已提交
129

还_没_想_好's avatar
还_没_想_好 已提交
130 131 132
        /* add the function to the configuration */
        rt_usbd_config_add_function(cfg, func);
    }
M
Ming, Bai 已提交
133 134
#endif

135 136 137 138 139 140 141 142 143 144 145
#ifdef RT_USB_DEVICE_ECM
    {
        extern ufunction_t rt_usbd_function_ecm_create(udevice_t device);
        /* create a rndis function object */
        func = rt_usbd_function_ecm_create(udevice);

        /* add the function to the configuration */
        rt_usbd_config_add_function(cfg, func);
    }
#endif

M
Ming, Bai 已提交
146 147 148
    /* set device descriptor to the device */
#ifdef RT_USB_DEVICE_COMPOSITE
    rt_usbd_device_set_descriptor(udevice, &compsit_desc);
149
    rt_usbd_device_set_string(udevice, ustring);
M
Ming, Bai 已提交
150
#else
151
    rt_usbd_device_set_descriptor(udevice, func->dev_desc);
M
Ming, Bai 已提交
152 153 154 155
#endif

    /* add the configuration to the device */
    rt_usbd_device_add_config(udevice, cfg);
156

M
Ming, Bai 已提交
157 158 159
    /* initialize usb device controller */
    rt_device_init(udc);

160 161 162
    /* set default configuration to 1 */
    rt_usbd_set_config(udevice, 1);

M
Ming, Bai 已提交
163 164
    return RT_EOK;
}
H
heyuanjie87 已提交
165
#endif