core.c 54.1 KB
Newer Older
M
Ming, Bai 已提交
1 2 3 4 5
/*
 * File      : core.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.
M
Ming, Bai 已提交
19 20 21 22
 *
 * Change Logs:
 * Date           Author       Notes
 * 2012-10-01     Yi Qiu       first version
23
 * 2012-12-12     heyuanjie87  change endpoint and function handler
M
Ming, Bai 已提交
24
 * 2012-12-30     heyuanjie87  change inferface handler
25 26
 * 2013-04-26     aozima       add DEVICEQUALIFIER support.
 * 2013-07-25     Yi Qiu       update for USB CV test
27
 * 2017-11-15     ZYH          fix ep0 transform error
M
Ming, Bai 已提交
28 29 30
 */

#include <rtthread.h>
还_没_想_好's avatar
还_没_想_好 已提交
31 32
#include "drivers/usb_common.h"
#include "drivers/usb_device.h"
M
Ming, Bai 已提交
33 34 35

static rt_list_t device_list;

36 37 38 39 40
static rt_size_t rt_usbd_ep_write(udevice_t device, uep_t ep, void *buffer, rt_size_t size);
static rt_size_t rt_usbd_ep_read_prepare(udevice_t device, uep_t ep, void *buffer, rt_size_t size);
static rt_err_t rt_usbd_ep_assign(udevice_t device, uep_t ep);
static rt_err_t rt_usbd_ep_unassign(udevice_t device, uep_t ep);

M
Ming, Bai 已提交
41
/**
还_没_想_好's avatar
还_没_想_好 已提交
42
 * This function will handle get_device_descriptor bRequest.
M
Ming, Bai 已提交
43 44
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
45
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
46 47 48
 *
 * @return RT_EOK on successful.
 */
49
static rt_err_t _get_device_descriptor(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
50 51
{
    rt_size_t size;
52

M
Ming, Bai 已提交
53 54 55 56 57 58
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

    RT_DEBUG_LOG(RT_DEBUG_USB, ("_get_device_descriptor\n"));

还_没_想_好's avatar
还_没_想_好 已提交
59 60 61
    /* device descriptor wLength should less than USB_DESC_LENGTH_DEVICE*/
    size = (setup->wLength > USB_DESC_LENGTH_DEVICE) ?
           USB_DESC_LENGTH_DEVICE : setup->wLength;
M
Ming, Bai 已提交
62 63

    /* send device descriptor to endpoint 0 */
还_没_想_好's avatar
还_没_想_好 已提交
64
    rt_usbd_ep0_write(device, (rt_uint8_t*) &device->dev_desc, size);
M
Ming, Bai 已提交
65 66 67 68 69

    return RT_EOK;
}

/**
还_没_想_好's avatar
还_没_想_好 已提交
70
 * This function will handle get_config_descriptor bRequest.
M
Ming, Bai 已提交
71 72
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
73
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
74 75 76
 *
 * @return RT_EOK on successful.
 */
77
static rt_err_t _get_config_descriptor(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
78 79 80 81 82 83 84 85 86 87 88
{
    rt_size_t size;
    ucfg_desc_t cfg_desc;

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

    RT_DEBUG_LOG(RT_DEBUG_USB, ("_get_config_descriptor\n"));

    cfg_desc = &device->curr_cfg->cfg_desc;
还_没_想_好's avatar
还_没_想_好 已提交
89 90
    size = (setup->wLength > cfg_desc->wTotalLength) ?
           cfg_desc->wTotalLength : setup->wLength;
M
Ming, Bai 已提交
91 92

    /* send configuration descriptor to endpoint 0 */
93
    rt_usbd_ep0_write(device, (rt_uint8_t*)cfg_desc, size);
94

M
Ming, Bai 已提交
95 96 97 98
    return RT_EOK;
}

/**
还_没_想_好's avatar
还_没_想_好 已提交
99
 * This function will handle get_string_descriptor bRequest.
M
Ming, Bai 已提交
100 101
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
102
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
103
 *
还_没_想_好's avatar
还_没_想_好 已提交
104
 * @return RT_EOK on successful, -RT_ERROR on invalid bRequest.
M
Ming, Bai 已提交
105
 */
106
static rt_err_t _get_string_descriptor(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
107 108 109 110 111 112 113 114 115 116 117 118
{
    struct ustring_descriptor str_desc;
    rt_uint8_t index, i;
    rt_uint32_t len;

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

    RT_DEBUG_LOG(RT_DEBUG_USB, ("_get_string_descriptor\n"));

    str_desc.type = USB_DESC_TYPE_STRING;
还_没_想_好's avatar
还_没_想_好 已提交
119
    index = setup->wValue & 0xFF;
M
Ming, Bai 已提交
120

121
    if(index > USB_STRING_INTERFACE_INDEX)
M
Ming, Bai 已提交
122 123
    {
        rt_kprintf("unknown string index\n");
124
        rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
125
        return -RT_ERROR;
126
    }
127
    if(index == 0)
M
Ming, Bai 已提交
128 129 130
    {
        str_desc.bLength = 4;
        str_desc.String[0] = 0x09;
131
        str_desc.String[1] = 0x04;
M
Ming, Bai 已提交
132 133 134 135 136 137
    }
    else
    {
        len = rt_strlen(device->str[index]);
        str_desc.bLength = len*2 + 2;

138
        for(i=0; i<len; i++)
M
Ming, Bai 已提交
139 140 141 142 143 144
        {
            str_desc.String[i*2] = device->str[index][i];
            str_desc.String[i*2 + 1] = 0;
        }
    }

还_没_想_好's avatar
还_没_想_好 已提交
145
    if (setup->wLength > str_desc.bLength)
M
Ming, Bai 已提交
146 147
        len = str_desc.bLength;
    else
还_没_想_好's avatar
还_没_想_好 已提交
148
        len = setup->wLength;
M
Ming, Bai 已提交
149 150

    /* send string descriptor to endpoint 0 */
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
    rt_usbd_ep0_write(device, (rt_uint8_t*)&str_desc, len);

    return RT_EOK;
}

static rt_err_t _get_qualifier_descriptor(struct udevice* device, ureq_t setup)
{
    RT_DEBUG_LOG(RT_DEBUG_USB, ("_get_qualifier_descriptor\n"));

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

    if(device->dev_qualifier)
    {
        /* send device qualifier descriptor to endpoint 0 */
        rt_usbd_ep0_write(device, (rt_uint8_t*)device->dev_qualifier,
                     sizeof(struct usb_qualifier_descriptor));
    }
    else
    {
        rt_usbd_ep0_set_stall(device);
    }
M
Ming, Bai 已提交
174 175 176 177 178

    return RT_EOK;
}

/**
还_没_想_好's avatar
还_没_想_好 已提交
179
 * This function will handle get_descriptor bRequest.
M
Ming, Bai 已提交
180 181
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
182
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
183 184 185
 *
 * @return RT_EOK on successful.
 */
186
static rt_err_t _get_descriptor(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
187 188 189 190
{
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);
191

192
    if(setup->request_type == USB_REQ_TYPE_DIR_IN)
M
Ming, Bai 已提交
193
    {
还_没_想_好's avatar
还_没_想_好 已提交
194
        switch(setup->wValue >> 8)
M
Ming, Bai 已提交
195 196 197 198
        {
        case USB_DESC_TYPE_DEVICE:
            _get_device_descriptor(device, setup);
            break;
199
        case USB_DESC_TYPE_CONFIGURATION:
M
Ming, Bai 已提交
200 201 202 203 204 205
            _get_config_descriptor(device, setup);
            break;
        case USB_DESC_TYPE_STRING:
            _get_string_descriptor(device, setup);
            break;
        case USB_DESC_TYPE_DEVICEQUALIFIER:
206
            _get_qualifier_descriptor(device, setup);
M
Ming, Bai 已提交
207 208 209
            break;
        default:
            rt_kprintf("unsupported descriptor request\n");
210
            rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
211 212 213 214 215 216
            break;
        }
    }
    else
    {
        rt_kprintf("request direction error\n");
217
        rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
218 219 220 221 222 223
    }

    return RT_EOK;
}

/**
还_没_想_好's avatar
还_没_想_好 已提交
224
 * This function will handle get_interface bRequest.
M
Ming, Bai 已提交
225 226
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
227
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
228 229 230
 *
 * @return RT_EOK on successful.
 */
231
static rt_err_t _get_interface(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
232 233 234 235 236 237 238 239 240 241
{
    rt_uint8_t value;
    uintf_t intf;

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

    RT_DEBUG_LOG(RT_DEBUG_USB, ("_get_interface\n"));

H
heyuanjie87 已提交
242 243
    if (device->state != USB_STATE_CONFIGURED)
    {
244
        rt_usbd_ep0_set_stall(device);
H
heyuanjie87 已提交
245 246 247
        return -RT_ERROR;
    }

M
Ming, Bai 已提交
248
    /* find the specified interface and its alternate setting */
还_没_想_好's avatar
还_没_想_好 已提交
249
    intf = rt_usbd_find_interface(device, setup->wIndex & 0xFF, RT_NULL);
M
Ming, Bai 已提交
250 251 252
    value = intf->curr_setting->intf_desc->bAlternateSetting;

    /* send the interface alternate setting to endpoint 0*/
253
    rt_usbd_ep0_write(device, &value, 1);
M
Ming, Bai 已提交
254 255 256 257 258

    return RT_EOK;
}

/**
还_没_想_好's avatar
还_没_想_好 已提交
259
 * This function will handle set_interface bRequest.
M
Ming, Bai 已提交
260 261
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
262
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
263 264 265
 *
 * @return RT_EOK on successful.
 */
266
static rt_err_t _set_interface(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
267 268 269
{
    uintf_t intf;
    uep_t ep;
270
    struct rt_list_node* i;
M
Ming, Bai 已提交
271 272 273 274 275 276 277 278
    ualtsetting_t setting;

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

    RT_DEBUG_LOG(RT_DEBUG_USB, ("_set_interface\n"));

H
heyuanjie87 已提交
279 280
    if (device->state != USB_STATE_CONFIGURED)
    {
281
        rt_usbd_ep0_set_stall(device);
H
heyuanjie87 已提交
282 283
        return -RT_ERROR;
    }
284
        
M
Ming, Bai 已提交
285
    /* find the specified interface */
还_没_想_好's avatar
还_没_想_好 已提交
286
    intf = rt_usbd_find_interface(device, setup->wIndex & 0xFF, RT_NULL);
M
Ming, Bai 已提交
287 288

    /* set alternate setting to the interface */
还_没_想_好's avatar
还_没_想_好 已提交
289
    rt_usbd_set_altsetting(intf, setup->wValue & 0xFF);
M
Ming, Bai 已提交
290 291 292
    setting = intf->curr_setting;

    /* start all endpoints of the interface alternate setting */
293
    for(i=setting->ep_list.next; i != &setting->ep_list; i=i->next)
M
Ming, Bai 已提交
294 295
    {
        ep = (uep_t)rt_list_entry(i, struct uendpoint, list);
296 297
        dcd_ep_disable(device->dcd, ep);
        dcd_ep_enable(device->dcd, ep);
M
Ming, Bai 已提交
298
    }
299
    dcd_ep0_send_status(device->dcd);
H
heyuanjie87 已提交
300
    
M
Ming, Bai 已提交
301 302 303 304
    return RT_EOK;
}

/**
还_没_想_好's avatar
还_没_想_好 已提交
305
 * This function will handle get_config bRequest.
M
Ming, Bai 已提交
306 307
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
308
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
309 310 311
 *
 * @return RT_EOK on successful.
 */
312
static rt_err_t _get_config(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
313 314 315 316 317 318 319 320 321
{
    rt_uint8_t value;

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);
    RT_ASSERT(device->curr_cfg != RT_NULL);

    RT_DEBUG_LOG(RT_DEBUG_USB, ("_get_config\n"));
322
    
H
heyuanjie87 已提交
323 324 325 326 327 328 329 330 331
    if (device->state == USB_STATE_CONFIGURED)
    {
        /* get current configuration */
        value = device->curr_cfg->cfg_desc.bConfigurationValue;
    }
    else
    {
        value = 0;
    }
M
Ming, Bai 已提交
332
    /* write the current configuration to endpoint 0 */
333
    rt_usbd_ep0_write(device, &value, 1);
M
Ming, Bai 已提交
334 335 336 337 338

    return RT_EOK;
}

/**
还_没_想_好's avatar
还_没_想_好 已提交
339
 * This function will handle set_config bRequest.
M
Ming, Bai 已提交
340 341
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
342
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
343 344 345
 *
 * @return RT_EOK on successful.
 */
346
static rt_err_t _set_config(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
347 348 349 350 351 352 353 354 355 356 357 358 359
{
    struct rt_list_node *i, *j, *k;
    uconfig_t cfg;
    uintf_t intf;
    ualtsetting_t setting;
    uep_t ep;

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

    RT_DEBUG_LOG(RT_DEBUG_USB, ("_set_config\n"));

还_没_想_好's avatar
还_没_想_好 已提交
360
    if (setup->wValue > device->dev_desc.bNumConfigurations)
H
heyuanjie87 已提交
361
    {
362
        rt_usbd_ep0_set_stall(device);
H
heyuanjie87 已提交
363 364 365
        return -RT_ERROR;
    }

还_没_想_好's avatar
还_没_想_好 已提交
366
    if (setup->wValue == 0)
H
heyuanjie87 已提交
367 368 369 370 371 372 373
    {
        RT_DEBUG_LOG(RT_DEBUG_USB, ("address state\n"));
        device->state = USB_STATE_ADDRESS;

        goto _exit;
    }

M
Ming, Bai 已提交
374
    /* set current configuration */
还_没_想_好's avatar
还_没_想_好 已提交
375
    rt_usbd_set_config(device, setup->wValue);
M
Ming, Bai 已提交
376 377
    cfg = device->curr_cfg;

378
    for (i=cfg->func_list.next; i!=&cfg->func_list; i=i->next)
M
Ming, Bai 已提交
379
    {
380 381 382
        /* run all functiones and their endpoints in the configuration */
        ufunction_t func = (ufunction_t)rt_list_entry(i, struct ufunction, list);
        for(j=func->intf_list.next; j!=&func->intf_list; j=j->next)
M
Ming, Bai 已提交
383 384 385
        {
            intf = (uintf_t)rt_list_entry(j, struct uinterface, list);
            setting = intf->curr_setting;
386
            for(k=setting->ep_list.next; k != &setting->ep_list; k=k->next)
M
Ming, Bai 已提交
387 388 389
            {
                ep = (uep_t)rt_list_entry(k, struct uendpoint, list);

390 391 392
                /* first disable then enable an endpoint */
                dcd_ep_disable(device->dcd, ep);
                dcd_ep_enable(device->dcd, ep);
M
Ming, Bai 已提交
393 394
            }
        }
395 396
        /* after enabled endpoints, then enable function */
        FUNC_ENABLE(func);
M
Ming, Bai 已提交
397
    }
398

H
heyuanjie87 已提交
399 400 401
    device->state = USB_STATE_CONFIGURED;

_exit:
M
Ming, Bai 已提交
402
    /* issue status stage */
403
    dcd_ep0_send_status(device->dcd);
404

M
Ming, Bai 已提交
405 406 407 408
    return RT_EOK;
}

/**
还_没_想_好's avatar
还_没_想_好 已提交
409
 * This function will handle set_address bRequest.
M
Ming, Bai 已提交
410 411
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
412
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
413 414 415
 *
 * @return RT_EOK on successful.
 */
416
static rt_err_t _set_address(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
417 418 419 420
{
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);
421

还_没_想_好's avatar
还_没_想_好 已提交
422 423 424
    /* set address in device control driver */
    dcd_set_address(device->dcd, setup->wValue);

425 426
    /* issue status stage */
    dcd_ep0_send_status(device->dcd);
M
Ming, Bai 已提交
427

428 429
    RT_DEBUG_LOG(RT_DEBUG_USB, ("_set_address\n"));
    
H
heyuanjie87 已提交
430
    device->state = USB_STATE_ADDRESS;
431

M
Ming, Bai 已提交
432 433 434
    return RT_EOK;
}

435
/**
还_没_想_好's avatar
还_没_想_好 已提交
436
 * This function will handle standard bRequest to
437
 * interface that defined in function-specifics
438 439
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
440
 * @param setup the setup bRequest.
441
 *
442
 * @return RT_EOK on successful.
443
 */
444
static rt_err_t _request_interface(struct udevice* device, ureq_t setup)
445 446
{
    uintf_t intf;
447
    ufunction_t func;
448 449 450 451 452 453 454
    rt_err_t ret;

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

    RT_DEBUG_LOG(RT_DEBUG_USB, ("_request_interface\n"));
455

还_没_想_好's avatar
还_没_想_好 已提交
456
    intf = rt_usbd_find_interface(device, setup->wIndex & 0xFF, &func);
457 458
    if (intf != RT_NULL)
    {
459
        ret = intf->handler(func, setup);
460 461
    }
    else
H
heyuanjie87 已提交
462
    {
463
        ret = -RT_ERROR;
H
heyuanjie87 已提交
464
    }
465
    
466 467 468
    return ret;
}

M
Ming, Bai 已提交
469
/**
还_没_想_好's avatar
还_没_想_好 已提交
470
 * This function will handle standard bRequest.
M
Ming, Bai 已提交
471 472
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
473
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
474 475 476
 *
 * @return RT_EOK on successful.
 */
477
static rt_err_t _standard_request(struct udevice* device, ureq_t setup)
478
{
M
Ming, Bai 已提交
479 480 481 482 483 484 485 486 487
    udcd_t dcd;
    rt_uint16_t value = 0;

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

    dcd = device->dcd;

488
    switch(setup->request_type & USB_REQ_TYPE_RECIPIENT_MASK)
M
Ming, Bai 已提交
489 490
    {
    case USB_REQ_TYPE_DEVICE:
还_没_想_好's avatar
还_没_想_好 已提交
491
        switch(setup->bRequest)
M
Ming, Bai 已提交
492 493
        {
        case USB_REQ_GET_STATUS:
494
            rt_usbd_ep0_write(device, &value, 2);
M
Ming, Bai 已提交
495 496
            break;
        case USB_REQ_CLEAR_FEATURE:
还_没_想_好's avatar
还_没_想_好 已提交
497
            rt_usbd_clear_feature(device, setup->wValue, setup->wIndex);
498
            dcd_ep0_send_status(dcd);
M
Ming, Bai 已提交
499 500
            break;
        case USB_REQ_SET_FEATURE:
还_没_想_好's avatar
还_没_想_好 已提交
501
            rt_usbd_set_feature(device, setup->wValue, setup->wIndex);
M
Ming, Bai 已提交
502 503 504 505 506 507 508 509
            break;
        case USB_REQ_SET_ADDRESS:
            _set_address(device, setup);
            break;
        case USB_REQ_GET_DESCRIPTOR:
            _get_descriptor(device, setup);
            break;
        case USB_REQ_SET_DESCRIPTOR:
510
            rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
511 512 513 514 515 516 517 518 519
            break;
        case USB_REQ_GET_CONFIGURATION:
            _get_config(device, setup);
            break;
        case USB_REQ_SET_CONFIGURATION:
            _set_config(device, setup);
            break;
        default:
            rt_kprintf("unknown device request\n");
520
            rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
521 522 523 524
            break;
        }
        break;
    case USB_REQ_TYPE_INTERFACE:
还_没_想_好's avatar
还_没_想_好 已提交
525
        switch(setup->bRequest)
M
Ming, Bai 已提交
526 527 528 529 530 531 532 533
        {
        case USB_REQ_GET_INTERFACE:
            _get_interface(device, setup);
            break;
        case USB_REQ_SET_INTERFACE:
            _set_interface(device, setup);
            break;
        default:
534 535 536
            if (_request_interface(device, setup) != RT_EOK)
            {
                rt_kprintf("unknown interface request\n");
537
                rt_usbd_ep0_set_stall(device);
538 539 540 541
                return - RT_ERROR;
            }
            else
                break;
M
Ming, Bai 已提交
542 543 544
        }
        break;
    case USB_REQ_TYPE_ENDPOINT:
还_没_想_好's avatar
还_没_想_好 已提交
545
        switch(setup->bRequest)
M
Ming, Bai 已提交
546
        {
547
        case USB_REQ_GET_STATUS:
H
heyuanjie87 已提交
548 549 550
        {
            uep_t ep;
        
还_没_想_好's avatar
还_没_想_好 已提交
551
            ep = rt_usbd_find_endpoint(device, RT_NULL, setup->wIndex);
552 553
            value = ep->stalled;        
            rt_usbd_ep0_write(device, &value, 2);
H
heyuanjie87 已提交
554 555
        }
        break;
M
Ming, Bai 已提交
556
        case USB_REQ_CLEAR_FEATURE:
H
heyuanjie87 已提交
557 558
        {
            uep_t ep;
559 560 561
            uio_request_t req;
            struct rt_list_node *node;

还_没_想_好's avatar
还_没_想_好 已提交
562 563
            ep = rt_usbd_find_endpoint(device, RT_NULL, setup->wIndex);
            if(USB_EP_HALT == setup->wValue && ep->stalled == RT_TRUE)
564
            {
还_没_想_好's avatar
还_没_想_好 已提交
565
                rt_usbd_clear_feature(device, setup->wValue, setup->wIndex);
566 567 568 569 570 571 572 573 574 575 576 577
                dcd_ep0_send_status(dcd);
                ep->stalled = RT_FALSE;  

                for (node = ep->request_list.next; node != &ep->request_list; node = node->next)
                {
                    req = (uio_request_t)rt_list_entry(node, struct uio_request, list);                    
                    rt_usbd_io_request(device, ep, req);
                    RT_DEBUG_LOG(RT_DEBUG_USB, ("fired a request\n"));                    
                }

                rt_list_init(&ep->request_list);
            }
H
heyuanjie87 已提交
578 579
        }
        break;
M
Ming, Bai 已提交
580
        case USB_REQ_SET_FEATURE:
H
heyuanjie87 已提交
581 582
        {
            uep_t ep;
583

还_没_想_好's avatar
还_没_想_好 已提交
584
            if(USB_EP_HALT == setup->wValue)
585
            {
还_没_想_好's avatar
还_没_想_好 已提交
586
                ep = rt_usbd_find_endpoint(device, RT_NULL, setup->wIndex);
587
                ep->stalled = RT_TRUE;            
还_没_想_好's avatar
还_没_想_好 已提交
588
                rt_usbd_set_feature(device, setup->wValue, setup->wIndex);
589 590
                dcd_ep0_send_status(dcd);
            }    
H
heyuanjie87 已提交
591 592
        }
        break;
M
Ming, Bai 已提交
593 594 595 596
        case USB_REQ_SYNCH_FRAME:
            break;
        default:
            rt_kprintf("unknown endpoint request\n");
597
            rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
598 599 600 601 602
            break;
        }
        break;
    case USB_REQ_TYPE_OTHER:
        rt_kprintf("unknown other type request\n");
603
        rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
604 605 606
        break;
    default:
        rt_kprintf("unknown type request\n");
607
        rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
608 609 610 611 612 613 614
        break;
    }

    return RT_EOK;
}

/**
还_没_想_好's avatar
还_没_想_好 已提交
615
 * This function will handle function bRequest.
M
Ming, Bai 已提交
616 617
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
618
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
619
 *
还_没_想_好's avatar
还_没_想_好 已提交
620
 * @return RT_EOK on successful, -RT_ERROR on invalid bRequest.
M
Ming, Bai 已提交
621
 */
622
static rt_err_t _function_request(udevice_t device, ureq_t setup)
M
Ming, Bai 已提交
623 624
{
    uintf_t intf;
625
    ufunction_t func;
626

M
Ming, Bai 已提交
627 628 629 630
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

还_没_想_好's avatar
还_没_想_好 已提交
631 632
    /* verify bRequest wValue */
    if(setup->wIndex > device->curr_cfg->cfg_desc.bNumInterfaces)
M
Ming, Bai 已提交
633
    {
634
        rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
635 636 637
        return -RT_ERROR;
    }

638
    switch(setup->request_type & USB_REQ_TYPE_RECIPIENT_MASK)
M
Ming, Bai 已提交
639 640
    {
    case USB_REQ_TYPE_INTERFACE:
还_没_想_好's avatar
还_没_想_好 已提交
641
        intf = rt_usbd_find_interface(device, setup->wIndex & 0xFF, &func);
642 643 644 645 646 647 648 649 650
        if(intf == RT_NULL)
        {
            rt_kprintf("unkwown interface request\n");
            rt_usbd_ep0_set_stall(device);
        }
        else
        {
            intf->handler(func, setup);
        }
M
Ming, Bai 已提交
651 652 653 654
        break;
    case USB_REQ_TYPE_ENDPOINT:
        break;
    default:
655 656
        rt_kprintf("unknown function request type\n");
        rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
657
        break;
658 659
    }

M
Ming, Bai 已提交
660 661 662
    return RT_EOK;
}

663 664 665
static rt_err_t _dump_setup_packet(ureq_t setup)
{
    RT_DEBUG_LOG(RT_DEBUG_USB, ("[\n"));
还_没_想_好's avatar
还_没_想_好 已提交
666
    RT_DEBUG_LOG(RT_DEBUG_USB, ("  setup_request : 0x%x\n",
667
                                setup->request_type));
还_没_想_好's avatar
还_没_想_好 已提交
668 669 670 671
    RT_DEBUG_LOG(RT_DEBUG_USB, ("  value         : 0x%x\n", setup->wValue));
    RT_DEBUG_LOG(RT_DEBUG_USB, ("  length        : 0x%x\n", setup->wLength));
    RT_DEBUG_LOG(RT_DEBUG_USB, ("  index         : 0x%x\n", setup->wIndex));
    RT_DEBUG_LOG(RT_DEBUG_USB, ("  request       : 0x%x\n", setup->bRequest));
672 673 674 675 676
    RT_DEBUG_LOG(RT_DEBUG_USB, ("]\n"));

    return RT_EOK;
}

M
Ming, Bai 已提交
677
/**
还_没_想_好's avatar
还_没_想_好 已提交
678
 * This function will handle setup bRequest.
M
Ming, Bai 已提交
679 680
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
681
 * @param setup the setup bRequest.
M
Ming, Bai 已提交
682
 *
还_没_想_好's avatar
还_没_想_好 已提交
683
 * @return RT_EOK on successful, -RT_ERROR on invalid bRequest.
M
Ming, Bai 已提交
684 685 686 687 688 689 690
 */
static rt_err_t _setup_request(udevice_t device, ureq_t setup)
{
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

691
    _dump_setup_packet(setup);
692

693
    switch((setup->request_type & USB_REQ_TYPE_MASK))
M
Ming, Bai 已提交
694 695 696 697 698
    {
    case USB_REQ_TYPE_STANDARD:
        _standard_request(device, setup);
        break;
    case USB_REQ_TYPE_CLASS:
699
        _function_request(device, setup);
M
Ming, Bai 已提交
700 701 702 703 704 705
        break;
    case USB_REQ_TYPE_VENDOR:
        rt_kprintf("vendor type request\n");
        break;
    default:
        rt_kprintf("unknown setup request type\n");
706
        rt_usbd_ep0_set_stall(device);
M
Ming, Bai 已提交
707 708 709 710 711 712 713
        return -RT_ERROR;
    }

    return RT_EOK;
}

/**
714
 * This function will hanle data notify event.
M
Ming, Bai 已提交
715
 *
716 717
 * @param device the usb device object. 
 * @param ep_msg the endpoint message.
M
Ming, Bai 已提交
718 719 720
 *
 * @return RT_EOK.
 */
721
static rt_err_t _data_notify(udevice_t device, struct ep_msg* ep_msg)
M
Ming, Bai 已提交
722
{
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
    uep_t ep;
    ufunction_t func;
    rt_size_t size = 0;
    
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(ep_msg != RT_NULL);
    
    if (device->state != USB_STATE_CONFIGURED)
    {
        return -RT_ERROR;
    }
    
    ep = rt_usbd_find_endpoint(device, &func, ep_msg->ep_addr);
    if(ep == RT_NULL)
    {        
        rt_kprintf("invalid endpoint\n");
        return -RT_ERROR;
    }
741

742 743
    if(EP_ADDRESS(ep) & USB_DIR_IN)
    {
还_没_想_好's avatar
还_没_想_好 已提交
744
        size = ep_msg->size;
745 746
        if(ep->request.remain_size >= EP_MAXPACKET(ep))
        {
还_没_想_好's avatar
还_没_想_好 已提交
747
            dcd_ep_write(device->dcd, EP_ADDRESS(ep), ep->request.buffer, EP_MAXPACKET(ep));
748 749 750 751 752
            ep->request.remain_size -= EP_MAXPACKET(ep);
            ep->request.buffer += EP_MAXPACKET(ep);     
        }
        else if(ep->request.remain_size > 0)
        {
还_没_想_好's avatar
还_没_想_好 已提交
753
            dcd_ep_write(device->dcd, EP_ADDRESS(ep), ep->request.buffer, ep->request.remain_size);
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
            ep->request.remain_size = 0;
        }
        else
        {
            EP_HANDLER(ep, func, size);
        }
    }
    else
    {
        size = ep_msg->size;
        if(ep->request.remain_size == 0)
        {
            return RT_EOK;            
        }
            
        if(size == 0)
        {
还_没_想_好's avatar
还_没_想_好 已提交
771
            size = dcd_ep_read(device->dcd, EP_ADDRESS(ep), ep->request.buffer);
qiuyiuestc's avatar
qiuyiuestc 已提交
772
        }
还_没_想_好's avatar
还_没_想_好 已提交
773 774
        ep->request.remain_size -= size;
        ep->request.buffer += size;
qiuyiuestc's avatar
qiuyiuestc 已提交
775

还_没_想_好's avatar
还_没_想_好 已提交
776
        if(ep->request.req_type == UIO_REQUEST_READ_BEST)
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
        {
            EP_HANDLER(ep, func, size);
        }
        else if(ep->request.remain_size == 0)
        {
            EP_HANDLER(ep, func, ep->request.size);
        }
    }

    return RT_EOK;
}

static rt_err_t _ep0_out_notify(udevice_t device, struct ep_msg* ep_msg)
{
    uep_t ep0;
    rt_size_t size;
    
M
Ming, Bai 已提交
794
    RT_ASSERT(device != RT_NULL);
795 796
    RT_ASSERT(ep_msg != RT_NULL);    
    RT_ASSERT(device->dcd != RT_NULL);
M
Ming, Bai 已提交
797

798 799
    ep0 = &device->dcd->ep0;
    size = ep_msg->size;
还_没_想_好's avatar
还_没_想_好 已提交
800

801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
    if(ep0->request.remain_size == 0)
    {
        return RT_EOK;            
    }    
    if(size == 0)
    {
        size = dcd_ep_read(device->dcd, EP0_OUT_ADDR, ep0->request.buffer);
        if(size == 0)
        {
            return RT_EOK;
        }        
    }

    ep0->request.remain_size -= size; 
    ep0->request.buffer += size;
    if(ep0->request.remain_size == 0)
M
Ming, Bai 已提交
817
    {
818 819 820 821 822
        /* invoke callback */
        if(ep0->rx_indicate != RT_NULL)
        {
            ep0->rx_indicate(device, size);
        }        
M
Ming, Bai 已提交
823 824
    }

825
    return RT_EOK;
M
Ming, Bai 已提交
826 827
}

828
/**
829
 * This function will notity sof event to all of function.
830 831 832 833 834
 *
 * @param device the usb device object.
 *
 * @return RT_EOK.
 */
835
static rt_err_t _sof_notify(udevice_t device)
836 837
{
    struct rt_list_node *i;
838
    ufunction_t func;
839 840 841

    RT_ASSERT(device != RT_NULL);

842 843 844
    /* to notity every function that sof event comes */
    for (i=device->curr_cfg->func_list.next;
            i!=&device->curr_cfg->func_list; i=i->next)
845
    {
846 847 848
        func = (ufunction_t)rt_list_entry(i, struct ufunction, list);
        if(func->ops->sof_handler != RT_NULL)
            func->ops->sof_handler(func);
G
Grissiom 已提交
849
    }
850

G
Grissiom 已提交
851 852 853 854
    return RT_EOK;
}

/**
855
 * This function will disable all USB functions.
G
Grissiom 已提交
856 857 858 859 860
 *
 * @param device the usb device object.
 *
 * @return RT_EOK.
 */
861
static rt_err_t _stop_notify(udevice_t device)
G
Grissiom 已提交
862 863
{
    struct rt_list_node *i;
864
    ufunction_t func;
G
Grissiom 已提交
865 866 867

    RT_ASSERT(device != RT_NULL);

868 869 870
    /* to notity every function */
    for (i  = device->curr_cfg->func_list.next;
         i != &device->curr_cfg->func_list;
G
Grissiom 已提交
871 872
         i  = i->next)
    {
873 874
        func = (ufunction_t)rt_list_entry(i, struct ufunction, list);
        FUNC_DISABLE(func);
875 876 877 878 879
    }

    return RT_EOK;
}

880
static rt_size_t rt_usbd_ep_write(udevice_t device, uep_t ep, void *buffer, rt_size_t size)
G
Grissiom 已提交
881
{
882 883 884 885 886
    rt_uint16_t maxpacket;
        
    RT_ASSERT(device != RT_NULL);    
    RT_ASSERT(device->dcd != RT_NULL);
    RT_ASSERT(ep != RT_NULL);    
G
Grissiom 已提交
887

888 889 890
    maxpacket = EP_MAXPACKET(ep);
    if(ep->request.remain_size >= maxpacket)
    {
还_没_想_好's avatar
还_没_想_好 已提交
891 892
        dcd_ep_write(device->dcd, EP_ADDRESS(ep), ep->request.buffer, maxpacket);
        ep->request.remain_size -= maxpacket;
893 894 895 896
        ep->request.buffer += maxpacket;    
    }
    else
    {
还_没_想_好's avatar
还_没_想_好 已提交
897
        dcd_ep_write(device->dcd, EP_ADDRESS(ep), ep->request.buffer, 
898
            ep->request.remain_size);
还_没_想_好's avatar
还_没_想_好 已提交
899
        ep->request.remain_size = 0;
900
    }
G
Grissiom 已提交
901

还_没_想_好's avatar
还_没_想_好 已提交
902
    return size;
903
}
G
Grissiom 已提交
904

905 906 907 908 909 910 911 912 913
static rt_size_t rt_usbd_ep_read_prepare(udevice_t device, uep_t ep, void *buffer, rt_size_t size)
{
    RT_ASSERT(device != RT_NULL);	
    RT_ASSERT(device->dcd != RT_NULL);
    RT_ASSERT(ep != RT_NULL);    
    RT_ASSERT(buffer != RT_NULL);
    RT_ASSERT(ep->ep_desc != RT_NULL);

    return dcd_ep_read_prepare(device->dcd, EP_ADDRESS(ep), buffer, size);
G
Grissiom 已提交
914 915
}

M
Ming, Bai 已提交
916 917 918 919 920 921 922
/**
 * This function will create an usb device object.
 *
 * @param ustring the usb string array to contain string descriptor.
 *
 * @return an usb device object on success, RT_NULL on fail.
 */
923
udevice_t rt_usbd_device_new(void)
M
Ming, Bai 已提交
924 925 926
{
    udevice_t udevice;

927
    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_device_new\n"));
M
Ming, Bai 已提交
928 929 930

    /* allocate memory for the object */
    udevice = rt_malloc(sizeof(struct udevice));
931
    if(udevice == RT_NULL)
M
Ming, Bai 已提交
932 933 934 935 936
    {
        rt_kprintf("alloc memery failed\n");
        return RT_NULL;
    }
    rt_memset(udevice, 0, sizeof(struct udevice));
937

M
Ming, Bai 已提交
938 939 940 941
    /* to initialize configuration list */
    rt_list_init(&udevice->cfg_list);

    /* insert the device object to device list */
942
    rt_list_insert_before(&device_list, &udevice->list);
M
Ming, Bai 已提交
943 944 945 946

    return udevice;
}

947 948 949
/**
 * This function will set usb device string description.
 *
950
 * @param device the usb device object.
951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
 * @param ustring pointer to string pointer array.
 *
 * @return RT_EOK.
 */
rt_err_t rt_usbd_device_set_string(udevice_t device, const char** ustring)
{
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(ustring != RT_NULL);

    /* set string descriptor array to the device object */
    device->str = ustring;

    return RT_EOK;
}

967 968 969 970 971 972 973 974 975 976 977
rt_err_t rt_usbd_device_set_qualifier(udevice_t device, struct usb_qualifier_descriptor* qualifier)
{
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(qualifier != RT_NULL);

    device->dev_qualifier = qualifier;

    return RT_EOK;
}

M
Ming, Bai 已提交
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
/**
 * This function will set an usb controller driver to a device.
 *
 * @param device the usb device object.
 * @param dcd the usb device controller driver.
 *
 * @return RT_EOK on successful.
 */
rt_err_t rt_usbd_device_set_controller(udevice_t device, udcd_t dcd)
{
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(dcd != RT_NULL);

    /* set usb device controller driver to the device */
    device->dcd = dcd;

    return RT_EOK;
}

/**
 * This function will set an usb device descriptor to a device.
 *
 * @param device the usb device object.
 * @param dev_desc the usb device descriptor.
 *
 * @return RT_EOK on successful.
 */
rt_err_t rt_usbd_device_set_descriptor(udevice_t device, udev_desc_t dev_desc)
{
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(dev_desc != RT_NULL);
1011

M
Ming, Bai 已提交
1012 1013
    /* copy the usb device descriptor to the device */
    rt_memcpy((void *)&device->dev_desc, (void *)dev_desc, USB_DESC_LENGTH_DEVICE);
1014

M
Ming, Bai 已提交
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
    return RT_EOK;
}

/**
 * This function will create an usb configuration object.
 *
 * @param none.
 *
 * @return an usb configuration object.
 */
1025
uconfig_t rt_usbd_config_new(void)
M
Ming, Bai 已提交
1026 1027 1028
{
    uconfig_t cfg;

1029
    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_config_new\n"));
M
Ming, Bai 已提交
1030 1031 1032

    /* allocate memory for the object */
    cfg = rt_malloc(sizeof(struct uconfig));
1033
    if(cfg == RT_NULL)
M
Ming, Bai 已提交
1034 1035 1036 1037 1038 1039
    {
        rt_kprintf("alloc memery failed\n");
        return RT_NULL;
    }
    rt_memset(cfg, 0, sizeof(struct uconfig));

还_没_想_好's avatar
还_没_想_好 已提交
1040
    /* set default wValue */
1041 1042
    cfg->cfg_desc.bLength = USB_DESC_LENGTH_CONFIG;
    cfg->cfg_desc.type = USB_DESC_TYPE_CONFIGURATION;
M
Ming, Bai 已提交
1043 1044
    cfg->cfg_desc.wTotalLength = USB_DESC_LENGTH_CONFIG;
    cfg->cfg_desc.bmAttributes = 0xC0;
1045
    cfg->cfg_desc.MaxPower = 0x32;
M
Ming, Bai 已提交
1046

1047 1048
    /* to initialize function object list */
    rt_list_init(&cfg->func_list);
M
Ming, Bai 已提交
1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060

    return cfg;
}

/**
 * This function will create an usb interface object.
 *
 * @param device the usb device object.
 * @handler the callback handler of object
 *
 * @return an usb interface object on success, RT_NULL on fail.
 */
1061
uintf_t rt_usbd_interface_new(udevice_t device, uintf_handler_t handler)
M
Ming, Bai 已提交
1062 1063 1064
{
    uintf_t intf;

1065
    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_interface_new\n"));
M
Ming, Bai 已提交
1066 1067 1068

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
1069

M
Ming, Bai 已提交
1070
    /* allocate memory for the object */
1071
    intf = (uintf_t)rt_malloc(sizeof(struct uinterface));
1072
    if(intf == RT_NULL)
M
Ming, Bai 已提交
1073 1074 1075 1076 1077 1078 1079 1080 1081
    {
        rt_kprintf("alloc memery failed\n");
        return RT_NULL;
    }
    intf->intf_num = device->nr_intf;
    device->nr_intf++;
    intf->handler = handler;
    intf->curr_setting = RT_NULL;

1082
    /* to initialize the alternate setting object list */
M
Ming, Bai 已提交
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
    rt_list_init(&intf->setting_list);

    return intf;
}

/**
 * This function will create an usb alternate setting object.
 *
 * @param intf_desc the interface descriptor.
 * @desc_size the size of the interface descriptor.
 *
 * @return an usb alternate setting object on success, RT_NULL on fail.
 */
1096
ualtsetting_t rt_usbd_altsetting_new(rt_size_t desc_size)
M
Ming, Bai 已提交
1097 1098 1099
{
    ualtsetting_t setting;

1100
    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_altsetting_new\n"));
M
Ming, Bai 已提交
1101 1102 1103 1104 1105 1106

    /* parameter check */
    RT_ASSERT(desc_size > 0);

    /* allocate memory for the object */
    setting = (ualtsetting_t)rt_malloc(sizeof(struct ualtsetting));
1107
    if(setting == RT_NULL)
M
Ming, Bai 已提交
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
    {
        rt_kprintf("alloc memery failed\n");
        return RT_NULL;
    }
    /* allocate memory for the desc */
    setting->desc = rt_malloc(desc_size);
    if (setting->desc == RT_NULL)
    {
        rt_kprintf("alloc desc memery failed\n");
        rt_free(setting);
1118
        return RT_NULL;
M
Ming, Bai 已提交
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138
    }

    setting->desc_size = desc_size;
    setting->intf_desc = RT_NULL;

    /* to initialize endpoint list */
    rt_list_init(&setting->ep_list);

    return setting;
}

/**
 * This function will config an desc in alternate setting object.
 *
 * @param setting the altsetting to be config.
 * @param desc use it to init desc in setting.
 * @param intf_pos the offset of interface descriptor in desc.
 *
 * @return RT_EOK.
 */
1139
rt_err_t rt_usbd_altsetting_config_descriptor(ualtsetting_t setting, const void* desc, rt_off_t intf_pos)
M
Ming, Bai 已提交
1140 1141 1142
{
    RT_ASSERT(setting != RT_NULL);
    RT_ASSERT(setting->desc !=RT_NULL);
1143

M
Ming, Bai 已提交
1144
    rt_memcpy(setting->desc, desc, setting->desc_size);
1145
    setting->intf_desc = (uintf_desc_t)((char*)setting->desc + intf_pos);
1146 1147

    return RT_EOK;
M
Ming, Bai 已提交
1148 1149 1150
}

/**
1151
 * This function will create an usb function object.
M
Ming, Bai 已提交
1152 1153 1154 1155 1156
 *
 * @param device the usb device object.
 * @param dev_desc the device descriptor.
 * @param ops the operation set.
 *
1157
 * @return an usb function object on success, RT_NULL on fail.
M
Ming, Bai 已提交
1158
 */
1159 1160
ufunction_t rt_usbd_function_new(udevice_t device, udev_desc_t dev_desc,
                              ufunction_ops_t ops)
M
Ming, Bai 已提交
1161
{
1162
    ufunction_t func;
M
Ming, Bai 已提交
1163

1164
    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_function_new\n"));
M
Ming, Bai 已提交
1165 1166 1167 1168 1169 1170

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(dev_desc != RT_NULL);

    /* allocate memory for the object */
1171 1172
    func = (ufunction_t)rt_malloc(sizeof(struct ufunction));
    if(func == RT_NULL)
M
Ming, Bai 已提交
1173 1174 1175 1176
    {
        rt_kprintf("alloc memery failed\n");
        return RT_NULL;
    }
1177 1178 1179 1180
    func->dev_desc = dev_desc;
    func->ops = ops;
    func->device = device;
    func->enabled = RT_FALSE;
M
Ming, Bai 已提交
1181 1182

    /* to initialize interface list */
1183
    rt_list_init(&func->intf_list);
M
Ming, Bai 已提交
1184

1185
    return func;
M
Ming, Bai 已提交
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195
}

/**
 * This function will create an usb endpoint object.
 *
 * @param ep_desc the endpoint descriptor.
 * @handler the callback handler of object
 *
 * @return an usb endpoint object on success, RT_NULL on fail.
 */
1196
uep_t rt_usbd_endpoint_new(uep_desc_t ep_desc, udep_handler_t handler)
M
Ming, Bai 已提交
1197 1198 1199
{
    uep_t ep;

1200
    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_endpoint_new\n"));
M
Ming, Bai 已提交
1201 1202 1203 1204 1205

    /* parameter check */
    RT_ASSERT(ep_desc != RT_NULL);

    /* allocate memory for the object */
1206
    ep = (uep_t)rt_malloc(sizeof(struct uendpoint));
1207
    if(ep == RT_NULL)
M
Ming, Bai 已提交
1208 1209 1210 1211 1212 1213 1214
    {
        rt_kprintf("alloc memery failed\n");
        return RT_NULL;
    }
    ep->ep_desc = ep_desc;
    ep->handler = handler;
    ep->buffer  = RT_NULL;
1215 1216
    ep->stalled = RT_FALSE;
    rt_list_init(&ep->request_list);
M
Ming, Bai 已提交
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229

    return ep;
}

/**
 * This function will find an usb device object.
 *
 * @dcd usd device controller driver.
 *
 * @return an usb device object on found or RT_NULL on not found.
 */
udevice_t rt_usbd_find_device(udcd_t dcd)
{
1230
    struct rt_list_node* node;
M
Ming, Bai 已提交
1231
    udevice_t device;
1232

M
Ming, Bai 已提交
1233 1234
    /* parameter check */
    RT_ASSERT(dcd != RT_NULL);
1235

M
Ming, Bai 已提交
1236 1237 1238 1239
    /* search a device in the the device list */
    for (node = device_list.next; node != &device_list; node = node->next)
    {
        device = (udevice_t)rt_list_entry(node, struct udevice, list);
1240
        if(device->dcd == dcd) return device;
M
Ming, Bai 已提交
1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
    }

    rt_kprintf("can't find device\n");
    return RT_NULL;
}

/**
 * This function will find an usb configuration object.
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
1251
 * @param wValue the configuration number.
M
Ming, Bai 已提交
1252 1253 1254 1255 1256
 *
 * @return an usb configuration object on found or RT_NULL on not found.
 */
uconfig_t rt_usbd_find_config(udevice_t device, rt_uint8_t value)
{
1257
    struct rt_list_node* node;
M
Ming, Bai 已提交
1258 1259 1260 1261 1262 1263 1264 1265 1266
    uconfig_t cfg = RT_NULL;

    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_find_config\n"));

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(value <= device->dev_desc.bNumConfigurations);

    /* search a configration in the the device */
1267
    for (node = device->cfg_list.next; node != &device->cfg_list; node = node->next)
M
Ming, Bai 已提交
1268 1269
    {
        cfg = (uconfig_t)rt_list_entry(node, struct udevice, list);
1270 1271
        if(cfg->cfg_desc.bConfigurationValue == value)
        {
1272
            return cfg;
1273
        }
M
Ming, Bai 已提交
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
    }

    rt_kprintf("can't find configuration %d\n", value);
    return RT_NULL;
}

/**
 * This function will find an usb interface object.
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
1284
 * @param wValue the interface number.
M
Ming, Bai 已提交
1285 1286 1287
 *
 * @return an usb configuration object on found or RT_NULL on not found.
 */
1288
uintf_t rt_usbd_find_interface(udevice_t device, rt_uint8_t value, ufunction_t *pfunc)
1289
{
M
Ming, Bai 已提交
1290
    struct rt_list_node *i, *j;
1291
    ufunction_t func;
M
Ming, Bai 已提交
1292 1293 1294 1295 1296 1297 1298 1299 1300
    uintf_t intf;

    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_find_interface\n"));

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(value < device->nr_intf);

    /* search an interface in the current configuration */
1301 1302
    for (i=device->curr_cfg->func_list.next;
            i!=&device->curr_cfg->func_list; i=i->next)
M
Ming, Bai 已提交
1303
    {
1304 1305
        func = (ufunction_t)rt_list_entry(i, struct ufunction, list);
        for(j=func->intf_list.next; j!=&func->intf_list; j=j->next)
M
Ming, Bai 已提交
1306 1307
        {
            intf = (uintf_t)rt_list_entry(j, struct uinterface, list);
1308
            if(intf->intf_num == value)
M
Ming, Bai 已提交
1309
            {
1310 1311
                if (pfunc != RT_NULL)
                    *pfunc = func;
M
Ming, Bai 已提交
1312 1313 1314
                return intf;
            }
        }
1315
    }
M
Ming, Bai 已提交
1316 1317 1318 1319 1320 1321 1322 1323 1324

    rt_kprintf("can't find interface %d\n", value);
    return RT_NULL;
}

/**
 * This function will find an usb interface alternate setting object.
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
1325
 * @param wValue the alternate setting number.
M
Ming, Bai 已提交
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
 *
 * @return an usb interface alternate setting object on found or RT_NULL on not found.
 */
ualtsetting_t rt_usbd_find_altsetting(uintf_t intf, rt_uint8_t value)
{
    struct rt_list_node *i;
    ualtsetting_t setting;

    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_find_altsetting\n"));

    /* parameter check */
    RT_ASSERT(intf != RT_NULL);

1339
    if(intf->curr_setting != RT_NULL)
M
Ming, Bai 已提交
1340
    {
还_没_想_好's avatar
还_没_想_好 已提交
1341
        /* if the wValue equal to the current alternate setting, then do not search */
1342
        if(intf->curr_setting->intf_desc->bAlternateSetting == value)
M
Ming, Bai 已提交
1343 1344
            return intf->curr_setting;
    }
1345

M
Ming, Bai 已提交
1346
    /* search a setting in the alternate setting list */
1347
    for(i=intf->setting_list.next; i!=&intf->setting_list; i=i->next)
M
Ming, Bai 已提交
1348 1349
    {
        setting =(ualtsetting_t)rt_list_entry(i, struct ualtsetting, list);
1350
        if(setting->intf_desc->bAlternateSetting == value)
M
Ming, Bai 已提交
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365
            return setting;
    }

    rt_kprintf("can't find alternate setting %d\n", value);
    return RT_NULL;
}

/**
 * This function will find an usb endpoint object.
 *
 * @param device the usb device object.
 * @param ep_addr endpoint address.
 *
 * @return an usb endpoint object on found or RT_NULL on not found.
 */
1366
uep_t rt_usbd_find_endpoint(udevice_t device, ufunction_t* pfunc, rt_uint8_t ep_addr)
M
Ming, Bai 已提交
1367 1368 1369
{
    uep_t ep;
    struct rt_list_node *i, *j, *k;
1370
    ufunction_t func;
M
Ming, Bai 已提交
1371 1372 1373 1374
    uintf_t intf;

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
1375

M
Ming, Bai 已提交
1376
    /* search a endpoint in the current configuration */
还_没_想_好's avatar
还_没_想_好 已提交
1377
    for (i=device->curr_cfg->func_list.next; i!=&device->curr_cfg->func_list; i=i->next)
M
Ming, Bai 已提交
1378
    {
1379 1380
        func = (ufunction_t)rt_list_entry(i, struct ufunction, list);
        for(j=func->intf_list.next; j!=&func->intf_list; j=j->next)
M
Ming, Bai 已提交
1381 1382
        {
            intf = (uintf_t)rt_list_entry(j, struct uinterface, list);
1383 1384
            for(k=intf->curr_setting->ep_list.next;
                    k!=&intf->curr_setting->ep_list; k=k->next)
M
Ming, Bai 已提交
1385 1386
            {
                ep = (uep_t)rt_list_entry(k, struct uendpoint, list);
1387
                if(EP_ADDRESS(ep) == ep_addr)
M
Ming, Bai 已提交
1388
                {
1389 1390
                    if (pfunc != RT_NULL)
                        *pfunc = func;
M
Ming, Bai 已提交
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
                    return ep;
                }
            }
        }
    }

    rt_kprintf("can't find endpoint 0x%x\n", ep_addr);
    return RT_NULL;
}

/**
 * This function will add a configuration to an usb device.
 *
 * @param device the usb device object.
 * @param cfg the configuration object.
 *
 * @return RT_EOK.
 */
rt_err_t rt_usbd_device_add_config(udevice_t device, uconfig_t cfg)
{
    struct rt_list_node *i, *j, *k;
1412
    ufunction_t func;
M
Ming, Bai 已提交
1413 1414 1415 1416 1417 1418 1419
    uintf_t intf;
    uep_t ep;

    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_device_add_config\n"));

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
1420
    RT_ASSERT(cfg != RT_NULL);
M
Ming, Bai 已提交
1421 1422 1423 1424 1425

    /* set configuration number to the configuration descriptor */
    cfg->cfg_desc.bConfigurationValue = device->dev_desc.bNumConfigurations + 1;
    device->dev_desc.bNumConfigurations++;

1426
    for (i=cfg->func_list.next; i!=&cfg->func_list; i=i->next)
M
Ming, Bai 已提交
1427
    {
1428
        func = (ufunction_t)rt_list_entry(i, struct ufunction, list);
M
Ming, Bai 已提交
1429

1430
        for(j=func->intf_list.next; j!=&func->intf_list; j=j->next)
M
Ming, Bai 已提交
1431 1432 1433
        {
            intf = (uintf_t)rt_list_entry(j, struct uinterface, list);
            cfg->cfg_desc.bNumInterfaces++;
1434

M
Ming, Bai 已提交
1435
            /* allocate address for every endpoint in the interface alternate setting */
1436 1437
            for(k=intf->curr_setting->ep_list.next;
                    k!=&intf->curr_setting->ep_list; k=k->next)
M
Ming, Bai 已提交
1438 1439
            {
                ep = (uep_t)rt_list_entry(k, struct uendpoint, list);
1440 1441 1442 1443
                if(rt_usbd_ep_assign(device, ep) != RT_EOK)
                {
                    rt_kprintf("endpoint assign error\n");
                }
M
Ming, Bai 已提交
1444 1445 1446
            }

            /* construct complete configuration descriptor */
1447 1448 1449
            rt_memcpy((void*)&cfg->cfg_desc.data[cfg->cfg_desc.wTotalLength - USB_DESC_LENGTH_CONFIG], 
                        (void*)intf->curr_setting->desc,
                        intf->curr_setting->desc_size);
M
Ming, Bai 已提交
1450 1451
            cfg->cfg_desc.wTotalLength += intf->curr_setting->desc_size;
        }
1452
    }
M
Ming, Bai 已提交
1453 1454

    /* insert the configuration to the list */
1455
    rt_list_insert_before(&device->cfg_list, &cfg->list);
M
Ming, Bai 已提交
1456 1457 1458 1459 1460

    return RT_EOK;
}

/**
1461
 * This function will add a function to a configuration.
M
Ming, Bai 已提交
1462 1463
 *
 * @param cfg the configuration object.
1464
 * @param func the function object.
M
Ming, Bai 已提交
1465 1466 1467
 *
 * @return RT_EOK.
 */
1468
rt_err_t rt_usbd_config_add_function(uconfig_t cfg, ufunction_t func)
M
Ming, Bai 已提交
1469
{
1470
    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_config_add_function\n"));
M
Ming, Bai 已提交
1471 1472 1473

    /* parameter check */
    RT_ASSERT(cfg != RT_NULL);
1474
    RT_ASSERT(func != RT_NULL);
M
Ming, Bai 已提交
1475

1476 1477
    /* insert the function to the list */
    rt_list_insert_before(&cfg->func_list, &func->list);
1478

M
Ming, Bai 已提交
1479 1480 1481 1482
    return RT_EOK;
}

/**
1483
 * This function will add an interface to a function.
M
Ming, Bai 已提交
1484
 *
1485
 * @param func the function object.
M
Ming, Bai 已提交
1486 1487 1488 1489
 * @param intf the interface object.
 *
 * @return RT_EOK.
 */
1490
rt_err_t rt_usbd_function_add_interface(ufunction_t func, uintf_t intf)
M
Ming, Bai 已提交
1491 1492
{

1493
    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_function_add_interface\n"));
M
Ming, Bai 已提交
1494 1495

    /* parameter check */
1496
    RT_ASSERT(func != RT_NULL);
M
Ming, Bai 已提交
1497 1498 1499
    RT_ASSERT(intf != RT_NULL);

    /* insert the interface to the list */
1500
    rt_list_insert_before(&func->intf_list, &intf->list);
M
Ming, Bai 已提交
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523

    return RT_EOK;
}

/**
 * This function will add an alternate setting to an interface.
 *
 * @param intf the interface object.
 * @param setting the alternate setting object.
 *
 * @return RT_EOK.
 */
rt_err_t rt_usbd_interface_add_altsetting(uintf_t intf, ualtsetting_t setting)
{
    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_interface_add_altsetting\n"));

    /* parameter check */
    RT_ASSERT(intf != RT_NULL);
    RT_ASSERT(setting != RT_NULL);

    setting->intf_desc->bInterfaceNumber = intf->intf_num;

    /* insert the alternate setting to the list */
1524
    rt_list_insert_before(&intf->setting_list, &setting->list);
M
Ming, Bai 已提交
1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545

    return RT_EOK;
}

/**
 * This function will add an endpoint to an alternate setting.
 *
 * @param setting the alternate setting object.
 * @param ep the endpoint object.
 *
 * @return RT_EOK.
 */
rt_err_t rt_usbd_altsetting_add_endpoint(ualtsetting_t setting, uep_t ep)
{
    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_altsetting_add_endpoint\n"));

    /* parameter check */
    RT_ASSERT(setting != RT_NULL);
    RT_ASSERT(ep != RT_NULL);

    /* insert the endpoint to the list */
1546
    rt_list_insert_before(&setting->ep_list, &ep->list);
M
Ming, Bai 已提交
1547 1548 1549 1550 1551 1552 1553 1554

    return RT_EOK;
}

/**
 * This function will set an alternate setting for an interface.
 *
 * @param intf_desc the interface descriptor.
还_没_想_好's avatar
还_没_想_好 已提交
1555
 * @param wValue the alternate setting number.
M
Ming, Bai 已提交
1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580
 *
 * @return RT_EOK.
 */
rt_err_t rt_usbd_set_altsetting(uintf_t intf, rt_uint8_t value)
{
    ualtsetting_t setting;

    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_set_altsetting\n"));

    /* parameter check */
    RT_ASSERT(intf != RT_NULL);

    /* find an alternate setting */
    setting = rt_usbd_find_altsetting(intf, value);

    /* set as current alternate setting */
    intf->curr_setting = setting;

    return RT_EOK;
}

/**
 * This function will set a configuration for an usb device.
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
1581
 * @param wValue the configuration number.
M
Ming, Bai 已提交
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599
 *
 * @return RT_EOK.
 */
rt_err_t rt_usbd_set_config(udevice_t device, rt_uint8_t value)
{
    uconfig_t cfg;

    RT_DEBUG_LOG(RT_DEBUG_USB, ("rt_usbd_set_config\n"));

    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(value <= device->dev_desc.bNumConfigurations);

    /* find a configuration */
    cfg = rt_usbd_find_config(device, value);

    /* set as current configuration */
    device->curr_cfg = cfg;
还_没_想_好's avatar
还_没_想_好 已提交
1600 1601

    dcd_set_config(device->dcd, value);
1602
    
M
Ming, Bai 已提交
1603 1604 1605
    return RT_TRUE;
}

1606
/**
还_没_想_好's avatar
还_没_想_好 已提交
1607
 * This function will bRequest an IO transaction.
1608 1609 1610
 *
 * @param device the usb device object.
 * @param ep the endpoint object. 
还_没_想_好's avatar
还_没_想_好 已提交
1611
 * @param req IO bRequest.
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625
 *
 * @return RT_EOK.
 */
rt_size_t rt_usbd_io_request(udevice_t device, uep_t ep, uio_request_t req)
{
    rt_size_t size = 0;
    
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(req != RT_NULL);

    if(ep->stalled == RT_FALSE)
    {
        switch(req->req_type)
        {
还_没_想_好's avatar
还_没_想_好 已提交
1626
        case UIO_REQUEST_READ_BEST:
1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652
        case UIO_REQUEST_READ_FULL:
            ep->request.remain_size = ep->request.size;
            size = rt_usbd_ep_read_prepare(device, ep, req->buffer, req->size);
            break;
        case UIO_REQUEST_WRITE:
            ep->request.remain_size = ep->request.size;
            size = rt_usbd_ep_write(device, ep, req->buffer, req->size);
            break;
        default:
            rt_kprintf("unknown request type\n");
            break;
        }
    }
    else
    {
        rt_list_insert_before(&ep->request_list, &req->list);
        RT_DEBUG_LOG(RT_DEBUG_USB, ("suspend a request\n"));
    }            

    return size;
}

/**
 * This function will set feature for an usb device.
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
1653
 * @param wValue the configuration number.
1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677
 *
 * @return RT_EOK.
 */
rt_err_t rt_usbd_set_feature(udevice_t device, rt_uint16_t value, rt_uint16_t index)
{
    RT_ASSERT(device != RT_NULL);

    if (value == USB_FEATURE_DEV_REMOTE_WAKEUP)
    {
        RT_DEBUG_LOG(RT_DEBUG_USB, ("set feature remote wakeup\n"));
    }
    else if (value == USB_FEATURE_ENDPOINT_HALT)
    {
        RT_DEBUG_LOG(RT_DEBUG_USB, ("set feature stall\n"));    
        dcd_ep_set_stall(device->dcd, (rt_uint32_t)(index & 0xFF));
    }
    
    return RT_EOK;
}

/**
 * This function will clear feature for an usb device.
 *
 * @param device the usb device object.
还_没_想_好's avatar
还_没_想_好 已提交
1678
 * @param wValue the configuration number.
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759
 *
 * @return RT_EOK.
 */
rt_err_t rt_usbd_clear_feature(udevice_t device, rt_uint16_t value, rt_uint16_t index)
{
    RT_ASSERT(device != RT_NULL);

    if (value == USB_FEATURE_DEV_REMOTE_WAKEUP)
    {
        RT_DEBUG_LOG(RT_DEBUG_USB, ("clear feature remote wakeup\n"));
    }
    else if (value == USB_FEATURE_ENDPOINT_HALT)
    {
        RT_DEBUG_LOG(RT_DEBUG_USB, ("clear feature stall\n"));
        dcd_ep_clear_stall(device->dcd, (rt_uint32_t)(index & 0xFF));
    }
    
    return RT_EOK;
}

rt_err_t rt_usbd_ep0_set_stall(udevice_t device)
{
    RT_ASSERT(device != RT_NULL);
    
    return dcd_ep_set_stall(device->dcd, 0);
}

rt_err_t rt_usbd_ep0_clear_stall(udevice_t device)
{
    RT_ASSERT(device != RT_NULL);
    
    return dcd_ep_clear_stall(device->dcd, 0);
}

rt_err_t rt_usbd_ep_set_stall(udevice_t device, uep_t ep)
{
    rt_err_t ret;
    
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(ep != RT_NULL);
    RT_ASSERT(ep->ep_desc != RT_NULL);  

    ret = dcd_ep_set_stall(device->dcd, EP_ADDRESS(ep));
    if(ret == RT_EOK)
    {
        ep->stalled = RT_TRUE;
    }
    
    return ret;
}

rt_err_t rt_usbd_ep_clear_stall(udevice_t device, uep_t ep)
{
    rt_err_t ret;

    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(ep != RT_NULL);
    RT_ASSERT(ep->ep_desc != RT_NULL);

    ret = dcd_ep_clear_stall(device->dcd, EP_ADDRESS(ep));
    if(ret == RT_EOK)
    {
        ep->stalled = RT_FALSE;
    }
    
    return ret;
}

static rt_err_t rt_usbd_ep_assign(udevice_t device, uep_t ep)
{
    int i = 0;
    
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(device->dcd != RT_NULL);    
    RT_ASSERT(device->dcd->ep_pool != RT_NULL);        
    RT_ASSERT(ep != RT_NULL);
    RT_ASSERT(ep->ep_desc != RT_NULL);

    while(device->dcd->ep_pool[i].addr != 0xFF)
    {
        if(device->dcd->ep_pool[i].status == ID_UNASSIGNED && 
还_没_想_好's avatar
还_没_想_好 已提交
1760
            ep->ep_desc->bmAttributes == device->dcd->ep_pool[i].type)
1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788
        {
            EP_ADDRESS(ep) |= device->dcd->ep_pool[i].addr;
            ep->id = &device->dcd->ep_pool[i];
            device->dcd->ep_pool[i].status = ID_ASSIGNED;

            RT_DEBUG_LOG(RT_DEBUG_USB, ("assigned %d\n", device->dcd->ep_pool[i].addr));  
            return RT_EOK;
        }
        
        i++;
    }
    
    return -RT_ERROR;
}

static rt_err_t rt_usbd_ep_unassign(udevice_t device, uep_t ep)
{
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(device->dcd != RT_NULL);    
    RT_ASSERT(device->dcd->ep_pool != RT_NULL);        
    RT_ASSERT(ep != RT_NULL);
    RT_ASSERT(ep->ep_desc != RT_NULL);

    ep->id->status = ID_UNASSIGNED;

    return RT_EOK;
}

qiuyiuestc's avatar
qiuyiuestc 已提交
1789
rt_err_t rt_usbd_ep0_setup_handler(udcd_t dcd, struct urequest* setup)
1790 1791 1792 1793 1794 1795 1796 1797 1798
{
    struct udev_msg msg;
    rt_size_t size;

    RT_ASSERT(dcd != RT_NULL);

    if(setup == RT_NULL)
    {
        size = dcd_ep_read(dcd, EP0_OUT_ADDR, (void*)&msg.content.setup);
qiuyiuestc's avatar
qiuyiuestc 已提交
1799
        if(size != sizeof(struct urequest))
1800 1801 1802 1803 1804 1805 1806
        {
            rt_kprintf("read setup packet error\n");
            return -RT_ERROR;
        }
    }
    else
    {
qiuyiuestc's avatar
qiuyiuestc 已提交
1807
        rt_memcpy((void*)&msg.content.setup, (void*)setup, sizeof(struct urequest));
1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818
    }    
    
    msg.type = USB_MSG_SETUP_NOTIFY;
    msg.dcd = dcd;
    rt_usbd_event_signal(&msg);

    return RT_EOK;
}

rt_err_t rt_usbd_ep0_in_handler(udcd_t dcd)
{
1819 1820
    rt_int32_t remain, mps;

1821 1822
    RT_ASSERT(dcd != RT_NULL);

1823 1824 1825 1826 1827 1828 1829 1830
    if (dcd->stage != STAGE_DIN)
        return RT_EOK;

    mps = dcd->ep0.id->maxpacket;
    dcd->ep0.request.remain_size -= mps;
    remain = dcd->ep0.request.remain_size;

    if (remain > 0)
1831
    {
1832 1833 1834 1835 1836 1837 1838
        if (remain >= mps)
        {
            remain = mps;
        }

        dcd->ep0.request.buffer += mps;
        dcd_ep_write(dcd, EP0_IN_ADDR, dcd->ep0.request.buffer, remain);
1839 1840 1841
    }
    else
    {
1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
        /* last packet is MPS multiple, so send ZLP packet */
        if ((remain == 0) && (dcd->ep0.request.size > 0))
        {
            dcd->ep0.request.size = 0;
            dcd_ep_write(dcd, EP0_IN_ADDR, RT_NULL, 0);
        }
        else
        {
            /* receive status */
            dcd->stage = STAGE_STATUS_OUT;
            dcd_ep_read_prepare(dcd, EP0_OUT_ADDR, RT_NULL, 0);
        }
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872
    }

    return RT_EOK;
}

rt_err_t rt_usbd_ep0_out_handler(udcd_t dcd, rt_size_t size)
{
    struct udev_msg msg;

    RT_ASSERT(dcd != RT_NULL);

    msg.type = USB_MSG_EP0_OUT;
    msg.dcd = dcd;
    msg.content.ep_msg.size = size;
    rt_usbd_event_signal(&msg);

    return RT_EOK;
}

还_没_想_好's avatar
还_没_想_好 已提交
1873
rt_err_t rt_usbd_ep_in_handler(udcd_t dcd, rt_uint8_t address, rt_size_t size)
1874 1875 1876 1877 1878 1879 1880 1881
{
    struct udev_msg msg;

    RT_ASSERT(dcd != RT_NULL);

    msg.type = USB_MSG_DATA_NOTIFY;
    msg.dcd = dcd;
    msg.content.ep_msg.ep_addr = address;
还_没_想_好's avatar
还_没_想_好 已提交
1882
    msg.content.ep_msg.size = size;
1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957
    rt_usbd_event_signal(&msg);

    return RT_EOK;
}

rt_err_t rt_usbd_ep_out_handler(udcd_t dcd, rt_uint8_t address, rt_size_t size)
{
    struct udev_msg msg;

    RT_ASSERT(dcd != RT_NULL);

    msg.type = USB_MSG_DATA_NOTIFY;
    msg.dcd = dcd;
    msg.content.ep_msg.ep_addr = address;
    msg.content.ep_msg.size = size;
    rt_usbd_event_signal(&msg);

    return RT_EOK;
}

rt_err_t rt_usbd_reset_handler(udcd_t dcd)
{
    struct udev_msg msg;

    RT_ASSERT(dcd != RT_NULL);
    
    msg.type = USB_MSG_RESET;
    msg.dcd = dcd;
    rt_usbd_event_signal(&msg);

    return RT_EOK;
}

rt_err_t rt_usbd_connect_handler(udcd_t dcd)
{
    struct udev_msg msg;

    RT_ASSERT(dcd != RT_NULL);
    
    msg.type = USB_MSG_PLUG_IN;
    msg.dcd = dcd;
    rt_usbd_event_signal(&msg);

    return RT_EOK;
}

rt_err_t rt_usbd_disconnect_handler(udcd_t dcd)
{
    struct udev_msg msg;

    RT_ASSERT(dcd != RT_NULL);
    
    msg.type = USB_MSG_PLUG_OUT;
    msg.dcd = dcd;
    rt_usbd_event_signal(&msg);

    return RT_EOK;
}

rt_err_t rt_usbd_sof_handler(udcd_t dcd)
{
    struct udev_msg msg;

    RT_ASSERT(dcd != RT_NULL);
    
    msg.type = USB_MSG_SOF;
    msg.dcd = dcd;
    rt_usbd_event_signal(&msg);

    return RT_EOK;
}

rt_size_t rt_usbd_ep0_write(udevice_t device, void *buffer, rt_size_t size)
{
    uep_t ep0;
1958
    rt_size_t sent_size = 0;
1959 1960 1961 1962 1963 1964 1965 1966 1967 1968

    RT_ASSERT(device != RT_NULL);    
    RT_ASSERT(device->dcd != RT_NULL);
    RT_ASSERT(buffer != RT_NULL);
    RT_ASSERT(size > 0);

    ep0 = &device->dcd->ep0;
    ep0->request.size = size;
    ep0->request.buffer = buffer;
    ep0->request.remain_size = size;
1969
    if(size >= ep0->id->maxpacket)
1970
    {
1971
        sent_size = ep0->id->maxpacket;
1972 1973 1974
    }
    else
    {
1975
        sent_size = size;
1976
    }
1977
    device->dcd->stage = STAGE_DIN;
1978

1979
    return dcd_ep_write(device->dcd, EP0_IN_ADDR, ep0->request.buffer, sent_size);
1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995
}

rt_size_t rt_usbd_ep0_read(udevice_t device, void *buffer, rt_size_t size, 
    rt_err_t (*rx_ind)(udevice_t device, rt_size_t size))
{
    uep_t ep0;

    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(device->dcd != RT_NULL);
    RT_ASSERT(buffer != RT_NULL);

    ep0 = &device->dcd->ep0;
    ep0->request.size = size;
    ep0->request.buffer = buffer;    
    ep0->request.remain_size = size;
    ep0->rx_indicate = rx_ind;
1996
    device->dcd->stage = STAGE_DOUT;
1997 1998 1999 2000 2001
    dcd_ep_read_prepare(device->dcd, EP0_OUT_ADDR, buffer, size);

    return size;
}

2002
static struct rt_messagequeue usb_mq;
M
Ming, Bai 已提交
2003 2004 2005 2006 2007 2008 2009 2010 2011

/**
 * This function is the main entry of usb device thread, it is in charge of
 * processing all messages received from the usb message buffer.
 *
 * @param parameter the parameter of the usb device thread.
 *
 * @return none.
 */
2012
static void rt_usbd_thread_entry(void* parameter)
2013
{
2014
    while(1)
2015 2016
    {
        struct udev_msg msg;
M
Ming, Bai 已提交
2017
        udevice_t device;
2018

M
Ming, Bai 已提交
2019
        /* receive message */
2020 2021
        if(rt_mq_recv(&usb_mq, &msg, sizeof(struct udev_msg),
                    RT_WAITING_FOREVER) != RT_EOK )
G
Grissiom 已提交
2022 2023 2024
            continue;

        device = rt_usbd_find_device(msg.dcd);
2025
        if(device == RT_NULL)
G
Grissiom 已提交
2026 2027 2028 2029
        {
            rt_kprintf("invalid usb device\n");
            continue;
        }
2030

2031 2032
        RT_DEBUG_LOG(RT_DEBUG_USB, ("message type %d\n", msg.type));
        
M
Ming, Bai 已提交
2033
        switch (msg.type)
2034
        {
2035 2036
        case USB_MSG_SOF:
            _sof_notify(device);
M
Ming, Bai 已提交
2037 2038
            break;
        case USB_MSG_DATA_NOTIFY:
2039 2040
            /* some buggy drivers will have USB_MSG_DATA_NOTIFY before the core
             * got configured. */
2041
            _data_notify(device, &msg.content.ep_msg);
M
Ming, Bai 已提交
2042
            break;
2043
        case USB_MSG_SETUP_NOTIFY:
2044 2045 2046 2047
            _setup_request(device, &msg.content.setup);
            break;
        case USB_MSG_EP0_OUT:
            _ep0_out_notify(device, &msg.content.ep_msg);
M
Ming, Bai 已提交
2048
            break;
2049 2050
        case USB_MSG_RESET:            
            RT_DEBUG_LOG(RT_DEBUG_USB, ("reset %d\n", device->state));
2051
            if (device->state == USB_STATE_ADDRESS)
2052 2053 2054 2055
                _stop_notify(device);
            break;
        case USB_MSG_PLUG_IN:
            device->state = USB_STATE_ATTACHED;
2056
            break;
G
Grissiom 已提交
2057
        case USB_MSG_PLUG_OUT:
2058
            device->state = USB_STATE_NOTATTACHED;    
G
Grissiom 已提交
2059 2060
            _stop_notify(device);
            break;
M
Ming, Bai 已提交
2061
        default:
2062
            rt_kprintf("unknown msg type %d\n", msg.type);
M
Ming, Bai 已提交
2063
            break;
2064
        }
M
Ming, Bai 已提交
2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075
    }
}

/**
 * This function will post an message to usb message queue,
 *
 * @param msg the message to be posted
 * @param size the size of the message .
 *
 * @return the error code, RT_EOK on successfully.
 */
2076
rt_err_t rt_usbd_event_signal(struct udev_msg* msg)
M
Ming, Bai 已提交
2077 2078 2079 2080
{
    RT_ASSERT(msg != RT_NULL);

    /* send message to usb message queue */
2081
    return rt_mq_send(&usb_mq, (void*)msg, sizeof(struct udev_msg));
M
Ming, Bai 已提交
2082 2083
}

2084 2085 2086 2087

ALIGN(RT_ALIGN_SIZE)
static rt_uint8_t usb_thread_stack[RT_USBD_THREAD_STACK_SZ];
static struct rt_thread usb_thread;
2088 2089 2090 2091 2092 2093
#define USBD_MQ_MSG_SZ  32
#define USBD_MQ_MAX_MSG 16
/* internal of the message queue: every message is associated with a pointer,
 * so in order to recveive USBD_MQ_MAX_MSG messages, we have to allocate more
 * than USBD_MQ_MSG_SZ*USBD_MQ_MAX_MSG memery. */
static rt_uint8_t usb_mq_pool[(USBD_MQ_MSG_SZ+sizeof(void*))*USBD_MQ_MAX_MSG];
2094

M
Ming, Bai 已提交
2095 2096 2097 2098
/**
 * This function will initialize usb device thread.
 *
 * @return none.
2099
 *
M
Ming, Bai 已提交
2100 2101 2102 2103
 */
rt_err_t rt_usbd_core_init(void)
{
    rt_list_init(&device_list);
2104

M
Ming, Bai 已提交
2105
    /* create an usb message queue */
还_没_想_好's avatar
还_没_想_好 已提交
2106 2107 2108 2109 2110
    rt_mq_init(&usb_mq,
               "usbd",
               usb_mq_pool, USBD_MQ_MSG_SZ,
               sizeof(usb_mq_pool),
               RT_IPC_FLAG_FIFO);
2111

2112
    /* init usb device thread */
还_没_想_好's avatar
还_没_想_好 已提交
2113 2114 2115 2116 2117
    rt_thread_init(&usb_thread,
                   "usbd",
                   rt_usbd_thread_entry, RT_NULL,
                   usb_thread_stack, RT_USBD_THREAD_STACK_SZ,
                   RT_USBD_THREAD_PRIO, 20);
2118 2119 2120
    /* rt_thread_init should always be OK, so start the thread without further
     * checking. */
    return rt_thread_startup(&usb_thread);
M
Ming, Bai 已提交
2121
}
2122