core.c 53.5 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
M
Ming, Bai 已提交
27 28 29 30 31 32 33
 */

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

static rt_list_t device_list;

34 35 36 37 38
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 已提交
39 40 41 42 43 44 45 46
/**
 * This function will handle get_device_descriptor request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @return RT_EOK on successful.
 */
47
static rt_err_t _get_device_descriptor(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
48 49
{
    rt_size_t size;
50

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

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

    /* device descriptor length should less than USB_DESC_LENGTH_DEVICE*/
58 59
    size = (setup->length > USB_DESC_LENGTH_DEVICE) ?
           USB_DESC_LENGTH_DEVICE : setup->length;
M
Ming, Bai 已提交
60 61

    /* send device descriptor to endpoint 0 */
62 63
    rt_usbd_ep0_write(device, (rt_uint8_t*)&device->dev_desc,
                 size);
M
Ming, Bai 已提交
64 65 66 67 68 69 70 71 72 73 74 75

    return RT_EOK;
}

/**
 * This function will handle get_config_descriptor request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @return RT_EOK on successful.
 */
76
static rt_err_t _get_config_descriptor(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
77 78 79 80 81 82 83 84 85 86 87
{
    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;
88 89
    size = (setup->length > cfg_desc->wTotalLength) ?
           cfg_desc->wTotalLength : setup->length;
M
Ming, Bai 已提交
90 91

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

M
Ming, Bai 已提交
94 95 96 97 98 99 100 101 102 103 104
    return RT_EOK;
}

/**
 * This function will handle get_string_descriptor request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @return RT_EOK on successful, -RT_ERROR on invalid request.
 */
105
static rt_err_t _get_string_descriptor(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119
{
    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;
    index = setup->value & 0xFF;

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

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

144
    if (setup->length > str_desc.bLength)
M
Ming, Bai 已提交
145 146 147 148 149
        len = str_desc.bLength;
    else
        len = setup->length;

    /* send string descriptor to endpoint 0 */
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
    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 已提交
173 174 175 176 177 178 179 180 181 182 183 184

    return RT_EOK;
}

/**
 * This function will handle get_descriptor request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @return RT_EOK on successful.
 */
185
static rt_err_t _get_descriptor(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
186 187 188 189
{
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);
190

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

    return RT_EOK;
}

/**
 * This function will handle get_interface request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @return RT_EOK on successful.
 */
230
static rt_err_t _get_interface(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
231 232 233 234 235 236 237 238 239 240
{
    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 已提交
241 242
    if (device->state != USB_STATE_CONFIGURED)
    {
243
        rt_usbd_ep0_set_stall(device);
H
heyuanjie87 已提交
244 245 246
        return -RT_ERROR;
    }

M
Ming, Bai 已提交
247 248 249 250 251
    /* find the specified interface and its alternate setting */
    intf = rt_usbd_find_interface(device, setup->index & 0xFF, RT_NULL);
    value = intf->curr_setting->intf_desc->bAlternateSetting;

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

    return RT_EOK;
}

/**
 * This function will handle set_interface request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @return RT_EOK on successful.
 */
265
static rt_err_t _set_interface(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
266 267 268
{
    uintf_t intf;
    uep_t ep;
269
    struct rt_list_node* i;
M
Ming, Bai 已提交
270 271 272 273 274 275 276 277
    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 已提交
278 279
    if (device->state != USB_STATE_CONFIGURED)
    {
280
        rt_usbd_ep0_set_stall(device);
H
heyuanjie87 已提交
281 282
        return -RT_ERROR;
    }
283
        
M
Ming, Bai 已提交
284 285 286 287 288 289 290 291
    /* find the specified interface */
    intf = rt_usbd_find_interface(device, setup->index & 0xFF, RT_NULL);

    /* set alternate setting to the interface */
    rt_usbd_set_altsetting(intf, setup->value & 0xFF);
    setting = intf->curr_setting;

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

/**
 * This function will handle get_config request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @return RT_EOK on successful.
 */
311
static rt_err_t _get_config(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
312 313 314 315 316 317 318 319 320
{
    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"));
321
    
H
heyuanjie87 已提交
322 323 324 325 326 327 328 329 330
    if (device->state == USB_STATE_CONFIGURED)
    {
        /* get current configuration */
        value = device->curr_cfg->cfg_desc.bConfigurationValue;
    }
    else
    {
        value = 0;
    }
M
Ming, Bai 已提交
331
    /* write the current configuration to endpoint 0 */
332
    rt_usbd_ep0_write(device, &value, 1);
M
Ming, Bai 已提交
333 334 335 336 337 338 339 340 341 342 343 344

    return RT_EOK;
}

/**
 * This function will handle set_config request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @return RT_EOK on successful.
 */
345
static rt_err_t _set_config(struct udevice* device, ureq_t setup)
M
Ming, Bai 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358
{
    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"));

H
heyuanjie87 已提交
359 360
    if (setup->value > device->dev_desc.bNumConfigurations)
    {
361
        rt_usbd_ep0_set_stall(device);
H
heyuanjie87 已提交
362 363 364 365 366 367 368 369 370 371 372
        return -RT_ERROR;
    }

    if (setup->value == 0)
    {
        RT_DEBUG_LOG(RT_DEBUG_USB, ("address state\n"));
        device->state = USB_STATE_ADDRESS;

        goto _exit;
    }

M
Ming, Bai 已提交
373 374
    /* set current configuration */
    rt_usbd_set_config(device, setup->value);
375
    dcd_set_config(device->dcd, setup->value);
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 409 410 411 412 413 414 415
    return RT_EOK;
}

/**
 * This function will handle set_address request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @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

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

    /* set address in device control driver */
    dcd_set_address(device->dcd, setup->value);
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
/**
436 437
 * This function will handle standard request to
 * interface that defined in function-specifics
438 439 440 441
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
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

456
    intf = rt_usbd_find_interface(device, setup->index & 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 470 471 472 473 474 475 476
/**
 * This function will handle standard request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @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:
491
        switch(setup->request)
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:
497 498
            rt_usbd_clear_feature(device, setup->value, setup->index);
            dcd_ep0_send_status(dcd);
M
Ming, Bai 已提交
499 500
            break;
        case USB_REQ_SET_FEATURE:
501
            rt_usbd_set_feature(device, setup->value, setup->index);
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:
525
        switch(setup->request)
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:
545
        switch(setup->request)
M
Ming, Bai 已提交
546
        {
547
        case USB_REQ_GET_STATUS:
H
heyuanjie87 已提交
548 549 550 551
        {
            uep_t ep;
        
            ep = rt_usbd_find_endpoint(device, RT_NULL, setup->index);
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;

H
heyuanjie87 已提交
562
            ep = rt_usbd_find_endpoint(device, RT_NULL, setup->index);
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
            if(USB_EP_HALT == setup->value && ep->stalled == RT_TRUE)
            {
                rt_usbd_clear_feature(device, setup->value, setup->index);
                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 584 585 586 587 588 589 590

            if(USB_EP_HALT == setup->value)
            {
                ep = rt_usbd_find_endpoint(device, RT_NULL, setup->index);
                ep->stalled = RT_TRUE;            
                rt_usbd_set_feature(device, setup->value, setup->index);
                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;
}

/**
615
 * This function will handle function request.
M
Ming, Bai 已提交
616 617 618 619 620 621
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @return RT_EOK on successful, -RT_ERROR on invalid request.
 */
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 631
    /* parameter check */
    RT_ASSERT(device != RT_NULL);
    RT_ASSERT(setup != RT_NULL);

    /* verify request value */
632
    if(setup->index > 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:
641 642 643 644 645 646 647 648 649 650
        intf = rt_usbd_find_interface(device, setup->index & 0xFF, &func);
        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 666 667 668 669 670 671 672 673 674 675 676
static rt_err_t _dump_setup_packet(ureq_t setup)
{
    RT_DEBUG_LOG(RT_DEBUG_USB, ("[\n"));
    RT_DEBUG_LOG(RT_DEBUG_USB, ("setup_request 0x%x\n",
                                setup->request_type));
    RT_DEBUG_LOG(RT_DEBUG_USB, ("value 0x%x\n", setup->value));
    RT_DEBUG_LOG(RT_DEBUG_USB, ("length 0x%x\n", setup->length));
    RT_DEBUG_LOG(RT_DEBUG_USB, ("index 0x%x\n", setup->index));
    RT_DEBUG_LOG(RT_DEBUG_USB, ("request 0x%x\n", setup->request));
    RT_DEBUG_LOG(RT_DEBUG_USB, ("]\n"));

    return RT_EOK;
}

M
Ming, Bai 已提交
677 678 679 680 681 682 683 684 685 686 687 688 689 690
/**
 * This function will handle setup request.
 *
 * @param device the usb device object.
 * @param setup the setup request.
 *
 * @return RT_EOK on successful, -RT_ERROR on invalid request.
 */
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 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
    if(EP_ADDRESS(ep) & USB_DIR_IN)
    {
        if(ep->request.remain_size >= EP_MAXPACKET(ep))
        {
            dcd_ep_write(device->dcd, EP_ADDRESS(ep),
                ep->request.buffer, EP_MAXPACKET(ep));
            ep->request.remain_size -= EP_MAXPACKET(ep);
            ep->request.buffer += EP_MAXPACKET(ep);     
        }
        else if(ep->request.remain_size > 0)
        {
            dcd_ep_write(device->dcd, EP_ADDRESS(ep), 
                ep->request.buffer, ep->request.remain_size);
            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)
        {
            size = dcd_ep_read(device->dcd, EP_ADDRESS(ep),
                ep->request.buffer);
        }
        ep->request.remain_size -= size;
        ep->request.buffer += size;

        if(ep->request.req_type == UIO_REQUEST_READ_BEST)
        {
            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 已提交
796
    RT_ASSERT(device != RT_NULL);
797 798
    RT_ASSERT(ep_msg != RT_NULL);    
    RT_ASSERT(device->dcd != RT_NULL);
M
Ming, Bai 已提交
799

800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
    ep0 = &device->dcd->ep0;
    size = ep_msg->size;
    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 已提交
818
    {
819 820 821 822 823
        /* invoke callback */
        if(ep0->rx_indicate != RT_NULL)
        {
            ep0->rx_indicate(device, size);
        }        
M
Ming, Bai 已提交
824 825
    }

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

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

    RT_ASSERT(device != RT_NULL);

843 844 845
    /* 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)
846
    {
847 848 849
        func = (ufunction_t)rt_list_entry(i, struct ufunction, list);
        if(func->ops->sof_handler != RT_NULL)
            func->ops->sof_handler(func);
G
Grissiom 已提交
850
    }
851

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

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

    RT_ASSERT(device != RT_NULL);

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

    return RT_EOK;
}

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

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

903 904
    return size;
}
G
Grissiom 已提交
905

906 907 908 909 910 911 912 913 914
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 已提交
915 916
}

M
Ming, Bai 已提交
917 918 919 920 921 922 923
/**
 * 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.
 */
924
udevice_t rt_usbd_device_new(void)
M
Ming, Bai 已提交
925 926 927
{
    udevice_t udevice;

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

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

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

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

    return udevice;
}

948 949 950
/**
 * This function will set usb device string description.
 *
951
 * @param device the usb device object.
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967
 * @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;
}

968 969 970 971 972 973 974 975 976 977 978
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 已提交
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 1011
/**
 * 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);
1012

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

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

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

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

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

    /* set default value */
1042 1043
    cfg->cfg_desc.bLength = USB_DESC_LENGTH_CONFIG;
    cfg->cfg_desc.type = USB_DESC_TYPE_CONFIGURATION;
M
Ming, Bai 已提交
1044 1045
    cfg->cfg_desc.wTotalLength = USB_DESC_LENGTH_CONFIG;
    cfg->cfg_desc.bmAttributes = 0xC0;
1046
    cfg->cfg_desc.MaxPower = 0x32;
M
Ming, Bai 已提交
1047

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

    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.
 */
1062
uintf_t rt_usbd_interface_new(udevice_t device, uintf_handler_t handler)
M
Ming, Bai 已提交
1063 1064 1065
{
    uintf_t intf;

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

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

M
Ming, Bai 已提交
1071
    /* allocate memory for the object */
1072
    intf = (uintf_t)rt_malloc(sizeof(struct uinterface));
1073
    if(intf == RT_NULL)
M
Ming, Bai 已提交
1074 1075 1076 1077 1078 1079 1080 1081 1082
    {
        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;

1083
    /* to initialize the alternate setting object list */
M
Ming, Bai 已提交
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
    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.
 */
1097
ualtsetting_t rt_usbd_altsetting_new(rt_size_t desc_size)
M
Ming, Bai 已提交
1098 1099 1100
{
    ualtsetting_t setting;

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

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

    /* allocate memory for the object */
    setting = (ualtsetting_t)rt_malloc(sizeof(struct ualtsetting));
1108
    if(setting == RT_NULL)
M
Ming, Bai 已提交
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
    {
        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);
1119
        return RT_NULL;
M
Ming, Bai 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
    }

    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.
 */
1140
rt_err_t rt_usbd_altsetting_config_descriptor(ualtsetting_t setting, const void* desc, rt_off_t intf_pos)
M
Ming, Bai 已提交
1141 1142 1143
{
    RT_ASSERT(setting != RT_NULL);
    RT_ASSERT(setting->desc !=RT_NULL);
1144

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

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

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

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

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

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

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

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

/**
 * 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.
 */
1197
uep_t rt_usbd_endpoint_new(uep_desc_t ep_desc, udep_handler_t handler)
M
Ming, Bai 已提交
1198 1199 1200
{
    uep_t ep;

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

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

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

    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)
{
1231
    struct rt_list_node* node;
M
Ming, Bai 已提交
1232
    udevice_t device;
1233

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

M
Ming, Bai 已提交
1237 1238 1239 1240
    /* 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);
1241
        if(device->dcd == dcd) return device;
M
Ming, Bai 已提交
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
    }

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

/**
 * This function will find an usb configuration object.
 *
 * @param device the usb device object.
 * @param value the configuration number.
 *
 * @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)
{
1258
    struct rt_list_node* node;
M
Ming, Bai 已提交
1259 1260 1261 1262 1263 1264 1265 1266 1267
    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 */
1268
    for (node = device->cfg_list.next; node != &device->cfg_list; node = node->next)
M
Ming, Bai 已提交
1269 1270
    {
        cfg = (uconfig_t)rt_list_entry(node, struct udevice, list);
1271 1272
        if(cfg->cfg_desc.bConfigurationValue == value)
        {
1273
            return cfg;
1274
        }
M
Ming, Bai 已提交
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288
    }

    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.
 * @param value the interface number.
 *
 * @return an usb configuration object on found or RT_NULL on not found.
 */
1289
uintf_t rt_usbd_find_interface(udevice_t device, rt_uint8_t value, ufunction_t *pfunc)
1290
{
M
Ming, Bai 已提交
1291
    struct rt_list_node *i, *j;
1292
    ufunction_t func;
M
Ming, Bai 已提交
1293 1294 1295 1296 1297 1298 1299 1300 1301
    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 */
1302 1303
    for (i=device->curr_cfg->func_list.next;
            i!=&device->curr_cfg->func_list; i=i->next)
M
Ming, Bai 已提交
1304
    {
1305 1306
        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 已提交
1307 1308
        {
            intf = (uintf_t)rt_list_entry(j, struct uinterface, list);
1309
            if(intf->intf_num == value)
M
Ming, Bai 已提交
1310
            {
1311 1312
                if (pfunc != RT_NULL)
                    *pfunc = func;
M
Ming, Bai 已提交
1313 1314 1315
                return intf;
            }
        }
1316
    }
M
Ming, Bai 已提交
1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339

    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.
 * @param value the alternate setting number.
 *
 * @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);

1340
    if(intf->curr_setting != RT_NULL)
M
Ming, Bai 已提交
1341 1342
    {
        /* if the value equal to the current alternate setting, then do not search */
1343
        if(intf->curr_setting->intf_desc->bAlternateSetting == value)
M
Ming, Bai 已提交
1344 1345
            return intf->curr_setting;
    }
1346

M
Ming, Bai 已提交
1347
    /* search a setting in the alternate setting list */
1348
    for(i=intf->setting_list.next; i!=&intf->setting_list; i=i->next)
M
Ming, Bai 已提交
1349 1350
    {
        setting =(ualtsetting_t)rt_list_entry(i, struct ualtsetting, list);
1351
        if(setting->intf_desc->bAlternateSetting == value)
M
Ming, Bai 已提交
1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
            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.
 */
1367
uep_t rt_usbd_find_endpoint(udevice_t device, ufunction_t* pfunc, rt_uint8_t ep_addr)
M
Ming, Bai 已提交
1368 1369 1370
{
    uep_t ep;
    struct rt_list_node *i, *j, *k;
1371
    ufunction_t func;
M
Ming, Bai 已提交
1372 1373 1374 1375
    uintf_t intf;

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

M
Ming, Bai 已提交
1377
    /* search a endpoint in the current configuration */
1378 1379
    for (i=device->curr_cfg->func_list.next;
            i!=&device->curr_cfg->func_list; i=i->next)
M
Ming, Bai 已提交
1380
    {
1381 1382
        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 已提交
1383 1384
        {
            intf = (uintf_t)rt_list_entry(j, struct uinterface, list);
1385 1386
            for(k=intf->curr_setting->ep_list.next;
                    k!=&intf->curr_setting->ep_list; k=k->next)
M
Ming, Bai 已提交
1387 1388
            {
                ep = (uep_t)rt_list_entry(k, struct uendpoint, list);
1389
                if(EP_ADDRESS(ep) == ep_addr)
M
Ming, Bai 已提交
1390
                {
1391 1392
                    if (pfunc != RT_NULL)
                        *pfunc = func;
M
Ming, Bai 已提交
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
                    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;
1414
    ufunction_t func;
M
Ming, Bai 已提交
1415 1416 1417 1418 1419 1420 1421
    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);
1422
    RT_ASSERT(cfg != RT_NULL);
M
Ming, Bai 已提交
1423 1424 1425 1426 1427

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

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

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

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

            /* construct complete configuration descriptor */
1449 1450 1451
            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 已提交
1452 1453
            cfg->cfg_desc.wTotalLength += intf->curr_setting->desc_size;
        }
1454
    }
M
Ming, Bai 已提交
1455 1456

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

    return RT_EOK;
}

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

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

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

M
Ming, Bai 已提交
1481 1482 1483 1484
    return RT_EOK;
}

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

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

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

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

    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 */
1526
    rt_list_insert_before(&intf->setting_list, &setting->list);
M
Ming, Bai 已提交
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547

    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 */
1548
    rt_list_insert_before(&setting->ep_list, &ep->list);
M
Ming, Bai 已提交
1549 1550 1551 1552 1553 1554 1555 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 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601

    return RT_EOK;
}

/**
 * This function will set an alternate setting for an interface.
 *
 * @param intf_desc the interface descriptor.
 * @param value the alternate setting number.
 *
 * @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.
 * @param value the configuration number.
 *
 * @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;
1602
    
M
Ming, Bai 已提交
1603 1604 1605
    return RT_TRUE;
}

1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 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 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 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 1760 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 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 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 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981
/**
 * This function will request an IO transaction.
 *
 * @param device the usb device object.
 * @param ep the endpoint object. 
 * @param req IO request.
 *
 * @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)
        {
        case UIO_REQUEST_READ_BEST:
        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.
 * @param value the configuration number.
 *
 * @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.
 * @param value the configuration number.
 *
 * @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 && 
            ep->ep_desc->bmAttributes == device->dcd->ep_pool[i].type)
        {
            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;
}

rt_err_t rt_usbd_ep0_setup_handler(udcd_t dcd, struct ureqest* setup)
{
    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);
        if(size != sizeof(struct ureqest))
        {
            rt_kprintf("read setup packet error\n");
            return -RT_ERROR;
        }
    }
    else
    {
        rt_memcpy((void*)&msg.content.setup, (void*)setup, sizeof(struct ureqest));
    }    
    
    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)
{
    RT_ASSERT(dcd != RT_NULL);

    if(dcd->ep0.request.remain_size >= dcd->ep0.id->maxpacket)
    {
        dcd_ep_write(dcd, EP0_IN_ADDR, dcd->ep0.request.buffer, dcd->ep0.id->maxpacket);
        dcd->ep0.request.remain_size -= dcd->ep0.id->maxpacket;
    }
    else if(dcd->ep0.request.remain_size > 0)
    {
        dcd_ep_write(dcd, EP0_IN_ADDR, dcd->ep0.request.buffer, dcd->ep0.request.remain_size);
        dcd->ep0.request.remain_size = 0;
    }
    else
    {
        dcd_ep_write(dcd, EP0_IN_ADDR, RT_NULL, 0);
    }

    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;
}

rt_err_t rt_usbd_ep_in_handler(udcd_t dcd, rt_uint8_t address)
{
    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 = 0;
    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;

    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;
    if(ep0->request.remain_size >= ep0->id->maxpacket)
    {
        dcd_ep_write(device->dcd, EP0_IN_ADDR, ep0->request.buffer, ep0->id->maxpacket);
        ep0->request.remain_size -= ep0->id->maxpacket;
        ep0->request.buffer += ep0->id->maxpacket;
    }
    else
    {
        dcd_ep_write(device->dcd, EP0_IN_ADDR, ep0->request.buffer, ep0->request.remain_size);
        ep0->request.remain_size = 0;
    }

    return size;
}

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;
    dcd_ep_read_prepare(device->dcd, EP0_OUT_ADDR, buffer, size);

    return size;
}

1982
static struct rt_messagequeue usb_mq;
M
Ming, Bai 已提交
1983 1984 1985 1986 1987 1988 1989 1990 1991

/**
 * 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.
 */
1992
static void rt_usbd_thread_entry(void* parameter)
1993
{
1994
    while(1)
1995 1996
    {
        struct udev_msg msg;
M
Ming, Bai 已提交
1997
        udevice_t device;
1998

M
Ming, Bai 已提交
1999
        /* receive message */
2000 2001
        if(rt_mq_recv(&usb_mq, &msg, sizeof(struct udev_msg),
                    RT_WAITING_FOREVER) != RT_EOK )
G
Grissiom 已提交
2002 2003 2004
            continue;

        device = rt_usbd_find_device(msg.dcd);
2005
        if(device == RT_NULL)
G
Grissiom 已提交
2006 2007 2008 2009
        {
            rt_kprintf("invalid usb device\n");
            continue;
        }
2010

2011 2012
        RT_DEBUG_LOG(RT_DEBUG_USB, ("message type %d\n", msg.type));
        
M
Ming, Bai 已提交
2013
        switch (msg.type)
2014
        {
2015 2016
        case USB_MSG_SOF:
            _sof_notify(device);
M
Ming, Bai 已提交
2017 2018
            break;
        case USB_MSG_DATA_NOTIFY:
2019 2020
            /* some buggy drivers will have USB_MSG_DATA_NOTIFY before the core
             * got configured. */
2021
            _data_notify(device, &msg.content.ep_msg);
M
Ming, Bai 已提交
2022
            break;
2023
        case USB_MSG_SETUP_NOTIFY:
2024 2025 2026 2027
            _setup_request(device, &msg.content.setup);
            break;
        case USB_MSG_EP0_OUT:
            _ep0_out_notify(device, &msg.content.ep_msg);
M
Ming, Bai 已提交
2028
            break;
2029 2030
        case USB_MSG_RESET:            
            RT_DEBUG_LOG(RT_DEBUG_USB, ("reset %d\n", device->state));
2031
            if (device->state == USB_STATE_ADDRESS)
2032 2033 2034 2035
                _stop_notify(device);
            break;
        case USB_MSG_PLUG_IN:
            device->state = USB_STATE_ATTACHED;
2036
            break;
G
Grissiom 已提交
2037
        case USB_MSG_PLUG_OUT:
2038
            device->state = USB_STATE_NOTATTACHED;    
G
Grissiom 已提交
2039 2040
            _stop_notify(device);
            break;
M
Ming, Bai 已提交
2041
        default:
2042
            rt_kprintf("unknown msg type %d\n", msg.type);
M
Ming, Bai 已提交
2043
            break;
2044
        }
M
Ming, Bai 已提交
2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055
    }
}

/**
 * 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.
 */
2056
rt_err_t rt_usbd_event_signal(struct udev_msg* msg)
M
Ming, Bai 已提交
2057 2058 2059 2060
{
    RT_ASSERT(msg != RT_NULL);

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

2064 2065 2066 2067

ALIGN(RT_ALIGN_SIZE)
static rt_uint8_t usb_thread_stack[RT_USBD_THREAD_STACK_SZ];
static struct rt_thread usb_thread;
2068 2069 2070 2071 2072 2073
#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];
2074

M
Ming, Bai 已提交
2075 2076 2077 2078
/**
 * This function will initialize usb device thread.
 *
 * @return none.
2079
 *
M
Ming, Bai 已提交
2080 2081 2082 2083
 */
rt_err_t rt_usbd_core_init(void)
{
    rt_list_init(&device_list);
2084

M
Ming, Bai 已提交
2085
    /* create an usb message queue */
2086 2087
    rt_mq_init(&usb_mq, "usbd", usb_mq_pool, USBD_MQ_MSG_SZ,
            sizeof(usb_mq_pool), RT_IPC_FLAG_FIFO);
2088

2089
    /* init usb device thread */
2090 2091
    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);
2092 2093 2094
    /* rt_thread_init should always be OK, so start the thread without further
     * checking. */
    return rt_thread_startup(&usb_thread);
M
Ming, Bai 已提交
2095
}
2096