uboot/drivers/usb/host/xhci-ring.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0+
   2/*
   3 * USB HOST XHCI Controller stack
   4 *
   5 * Based on xHCI host controller driver in linux-kernel
   6 * by Sarah Sharp.
   7 *
   8 * Copyright (C) 2008 Intel Corp.
   9 * Author: Sarah Sharp
  10 *
  11 * Copyright (C) 2013 Samsung Electronics Co.Ltd
  12 * Authors: Vivek Gautam <gautam.vivek@samsung.com>
  13 *          Vikas Sajjan <vikas.sajjan@samsung.com>
  14 */
  15
  16#include <common.h>
  17#include <cpu_func.h>
  18#include <log.h>
  19#include <asm/byteorder.h>
  20#include <usb.h>
  21#include <asm/unaligned.h>
  22#include <linux/bug.h>
  23#include <linux/errno.h>
  24
  25#include <usb/xhci.h>
  26
  27/**
  28 * Is this TRB a link TRB or was the last TRB the last TRB in this event ring
  29 * segment?  I.e. would the updated event TRB pointer step off the end of the
  30 * event seg ?
  31 *
  32 * @param ctrl  Host controller data structure
  33 * @param ring  pointer to the ring
  34 * @param seg   poniter to the segment to which TRB belongs
  35 * @param trb   poniter to the ring trb
  36 * @return 1 if this TRB a link TRB else 0
  37 */
  38static int last_trb(struct xhci_ctrl *ctrl, struct xhci_ring *ring,
  39                        struct xhci_segment *seg, union xhci_trb *trb)
  40{
  41        if (ring == ctrl->event_ring)
  42                return trb == &seg->trbs[TRBS_PER_SEGMENT];
  43        else
  44                return TRB_TYPE_LINK_LE32(trb->link.control);
  45}
  46
  47/**
  48 * Does this link TRB point to the first segment in a ring,
  49 * or was the previous TRB the last TRB on the last segment in the ERST?
  50 *
  51 * @param ctrl  Host controller data structure
  52 * @param ring  pointer to the ring
  53 * @param seg   poniter to the segment to which TRB belongs
  54 * @param trb   poniter to the ring trb
  55 * @return 1 if this TRB is the last TRB on the last segment else 0
  56 */
  57static bool last_trb_on_last_seg(struct xhci_ctrl *ctrl,
  58                                 struct xhci_ring *ring,
  59                                 struct xhci_segment *seg,
  60                                 union xhci_trb *trb)
  61{
  62        if (ring == ctrl->event_ring)
  63                return ((trb == &seg->trbs[TRBS_PER_SEGMENT]) &&
  64                        (seg->next == ring->first_seg));
  65        else
  66                return le32_to_cpu(trb->link.control) & LINK_TOGGLE;
  67}
  68
  69/**
  70 * See Cycle bit rules. SW is the consumer for the event ring only.
  71 * Don't make a ring full of link TRBs.  That would be dumb and this would loop.
  72 *
  73 * If we've just enqueued a TRB that is in the middle of a TD (meaning the
  74 * chain bit is set), then set the chain bit in all the following link TRBs.
  75 * If we've enqueued the last TRB in a TD, make sure the following link TRBs
  76 * have their chain bit cleared (so that each Link TRB is a separate TD).
  77 *
  78 * Section 6.4.4.1 of the 0.95 spec says link TRBs cannot have the chain bit
  79 * set, but other sections talk about dealing with the chain bit set.  This was
  80 * fixed in the 0.96 specification errata, but we have to assume that all 0.95
  81 * xHCI hardware can't handle the chain bit being cleared on a link TRB.
  82 *
  83 * @param ctrl  Host controller data structure
  84 * @param ring  pointer to the ring
  85 * @param more_trbs_coming      flag to indicate whether more trbs
  86 *                              are expected or NOT.
  87 *                              Will you enqueue more TRBs before calling
  88 *                              prepare_ring()?
  89 * @return none
  90 */
  91static void inc_enq(struct xhci_ctrl *ctrl, struct xhci_ring *ring,
  92                                                bool more_trbs_coming)
  93{
  94        u32 chain;
  95        union xhci_trb *next;
  96
  97        chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN;
  98        next = ++(ring->enqueue);
  99
 100        /*
 101         * Update the dequeue pointer further if that was a link TRB or we're at
 102         * the end of an event ring segment (which doesn't have link TRBS)
 103         */
 104        while (last_trb(ctrl, ring, ring->enq_seg, next)) {
 105                if (ring != ctrl->event_ring) {
 106                        /*
 107                         * If the caller doesn't plan on enqueueing more
 108                         * TDs before ringing the doorbell, then we
 109                         * don't want to give the link TRB to the
 110                         * hardware just yet.  We'll give the link TRB
 111                         * back in prepare_ring() just before we enqueue
 112                         * the TD at the top of the ring.
 113                         */
 114                        if (!chain && !more_trbs_coming)
 115                                break;
 116
 117                        /*
 118                         * If we're not dealing with 0.95 hardware or
 119                         * isoc rings on AMD 0.96 host,
 120                         * carry over the chain bit of the previous TRB
 121                         * (which may mean the chain bit is cleared).
 122                         */
 123                        next->link.control &= cpu_to_le32(~TRB_CHAIN);
 124                        next->link.control |= cpu_to_le32(chain);
 125
 126                        next->link.control ^= cpu_to_le32(TRB_CYCLE);
 127                        xhci_flush_cache((uintptr_t)next,
 128                                         sizeof(union xhci_trb));
 129                }
 130                /* Toggle the cycle bit after the last ring segment. */
 131                if (last_trb_on_last_seg(ctrl, ring,
 132                                        ring->enq_seg, next))
 133                        ring->cycle_state = (ring->cycle_state ? 0 : 1);
 134
 135                ring->enq_seg = ring->enq_seg->next;
 136                ring->enqueue = ring->enq_seg->trbs;
 137                next = ring->enqueue;
 138        }
 139}
 140
 141/**
 142 * See Cycle bit rules. SW is the consumer for the event ring only.
 143 * Don't make a ring full of link TRBs.  That would be dumb and this would loop.
 144 *
 145 * @param ctrl  Host controller data structure
 146 * @param ring  Ring whose Dequeue TRB pointer needs to be incremented.
 147 * return none
 148 */
 149static void inc_deq(struct xhci_ctrl *ctrl, struct xhci_ring *ring)
 150{
 151        do {
 152                /*
 153                 * Update the dequeue pointer further if that was a link TRB or
 154                 * we're at the end of an event ring segment (which doesn't have
 155                 * link TRBS)
 156                 */
 157                if (last_trb(ctrl, ring, ring->deq_seg, ring->dequeue)) {
 158                        if (ring == ctrl->event_ring &&
 159                                        last_trb_on_last_seg(ctrl, ring,
 160                                                ring->deq_seg, ring->dequeue)) {
 161                                ring->cycle_state = (ring->cycle_state ? 0 : 1);
 162                        }
 163                        ring->deq_seg = ring->deq_seg->next;
 164                        ring->dequeue = ring->deq_seg->trbs;
 165                } else {
 166                        ring->dequeue++;
 167                }
 168        } while (last_trb(ctrl, ring, ring->deq_seg, ring->dequeue));
 169}
 170
 171/**
 172 * Generic function for queueing a TRB on a ring.
 173 * The caller must have checked to make sure there's room on the ring.
 174 *
 175 * @param       more_trbs_coming:   Will you enqueue more TRBs before calling
 176 *                              prepare_ring()?
 177 * @param ctrl  Host controller data structure
 178 * @param ring  pointer to the ring
 179 * @param more_trbs_coming      flag to indicate whether more trbs
 180 * @param trb_fields    pointer to trb field array containing TRB contents
 181 * @return pointer to the enqueued trb
 182 */
 183static struct xhci_generic_trb *queue_trb(struct xhci_ctrl *ctrl,
 184                                          struct xhci_ring *ring,
 185                                          bool more_trbs_coming,
 186                                          unsigned int *trb_fields)
 187{
 188        struct xhci_generic_trb *trb;
 189        int i;
 190
 191        trb = &ring->enqueue->generic;
 192
 193        for (i = 0; i < 4; i++)
 194                trb->field[i] = cpu_to_le32(trb_fields[i]);
 195
 196        xhci_flush_cache((uintptr_t)trb, sizeof(struct xhci_generic_trb));
 197
 198        inc_enq(ctrl, ring, more_trbs_coming);
 199
 200        return trb;
 201}
 202
 203/**
 204 * Does various checks on the endpoint ring, and makes it ready
 205 * to queue num_trbs.
 206 *
 207 * @param ctrl          Host controller data structure
 208 * @param ep_ring       pointer to the EP Transfer Ring
 209 * @param ep_state      State of the End Point
 210 * @return error code in case of invalid ep_state, 0 on success
 211 */
 212static int prepare_ring(struct xhci_ctrl *ctrl, struct xhci_ring *ep_ring,
 213                                                        u32 ep_state)
 214{
 215        union xhci_trb *next = ep_ring->enqueue;
 216
 217        /* Make sure the endpoint has been added to xHC schedule */
 218        switch (ep_state) {
 219        case EP_STATE_DISABLED:
 220                /*
 221                 * USB core changed config/interfaces without notifying us,
 222                 * or hardware is reporting the wrong state.
 223                 */
 224                puts("WARN urb submitted to disabled ep\n");
 225                return -ENOENT;
 226        case EP_STATE_ERROR:
 227                puts("WARN waiting for error on ep to be cleared\n");
 228                return -EINVAL;
 229        case EP_STATE_HALTED:
 230                puts("WARN halted endpoint, queueing URB anyway.\n");
 231        case EP_STATE_STOPPED:
 232        case EP_STATE_RUNNING:
 233                debug("EP STATE RUNNING.\n");
 234                break;
 235        default:
 236                puts("ERROR unknown endpoint state for ep\n");
 237                return -EINVAL;
 238        }
 239
 240        while (last_trb(ctrl, ep_ring, ep_ring->enq_seg, next)) {
 241                /*
 242                 * If we're not dealing with 0.95 hardware or isoc rings
 243                 * on AMD 0.96 host, clear the chain bit.
 244                 */
 245                next->link.control &= cpu_to_le32(~TRB_CHAIN);
 246
 247                next->link.control ^= cpu_to_le32(TRB_CYCLE);
 248
 249                xhci_flush_cache((uintptr_t)next, sizeof(union xhci_trb));
 250
 251                /* Toggle the cycle bit after the last ring segment. */
 252                if (last_trb_on_last_seg(ctrl, ep_ring,
 253                                        ep_ring->enq_seg, next))
 254                        ep_ring->cycle_state = (ep_ring->cycle_state ? 0 : 1);
 255                ep_ring->enq_seg = ep_ring->enq_seg->next;
 256                ep_ring->enqueue = ep_ring->enq_seg->trbs;
 257                next = ep_ring->enqueue;
 258        }
 259
 260        return 0;
 261}
 262
 263/**
 264 * Generic function for queueing a command TRB on the command ring.
 265 * Check to make sure there's room on the command ring for one command TRB.
 266 *
 267 * @param ctrl          Host controller data structure
 268 * @param ptr           Pointer address to write in the first two fields (opt.)
 269 * @param slot_id       Slot ID to encode in the flags field (opt.)
 270 * @param ep_index      Endpoint index to encode in the flags field (opt.)
 271 * @param cmd           Command type to enqueue
 272 * @return none
 273 */
 274void xhci_queue_command(struct xhci_ctrl *ctrl, u8 *ptr, u32 slot_id,
 275                        u32 ep_index, trb_type cmd)
 276{
 277        u32 fields[4];
 278        u64 val_64 = 0;
 279
 280        BUG_ON(prepare_ring(ctrl, ctrl->cmd_ring, EP_STATE_RUNNING));
 281
 282        if (ptr)
 283                val_64 = xhci_virt_to_bus(ctrl, ptr);
 284
 285        fields[0] = lower_32_bits(val_64);
 286        fields[1] = upper_32_bits(val_64);
 287        fields[2] = 0;
 288        fields[3] = TRB_TYPE(cmd) | SLOT_ID_FOR_TRB(slot_id) |
 289                    ctrl->cmd_ring->cycle_state;
 290
 291        /*
 292         * Only 'reset endpoint', 'stop endpoint' and 'set TR dequeue pointer'
 293         * commands need endpoint id encoded.
 294         */
 295        if (cmd >= TRB_RESET_EP && cmd <= TRB_SET_DEQ)
 296                fields[3] |= EP_ID_FOR_TRB(ep_index);
 297
 298        queue_trb(ctrl, ctrl->cmd_ring, false, fields);
 299
 300        /* Ring the command ring doorbell */
 301        xhci_writel(&ctrl->dba->doorbell[0], DB_VALUE_HOST);
 302}
 303
 304/*
 305 * For xHCI 1.0 host controllers, TD size is the number of max packet sized
 306 * packets remaining in the TD (*not* including this TRB).
 307 *
 308 * Total TD packet count = total_packet_count =
 309 *     DIV_ROUND_UP(TD size in bytes / wMaxPacketSize)
 310 *
 311 * Packets transferred up to and including this TRB = packets_transferred =
 312 *     rounddown(total bytes transferred including this TRB / wMaxPacketSize)
 313 *
 314 * TD size = total_packet_count - packets_transferred
 315 *
 316 * For xHCI 0.96 and older, TD size field should be the remaining bytes
 317 * including this TRB, right shifted by 10
 318 *
 319 * For all hosts it must fit in bits 21:17, so it can't be bigger than 31.
 320 * This is taken care of in the TRB_TD_SIZE() macro
 321 *
 322 * The last TRB in a TD must have the TD size set to zero.
 323 *
 324 * @param ctrl  host controller data structure
 325 * @param transferred   total size sent so far
 326 * @param trb_buff_len  length of the TRB Buffer
 327 * @param td_total_len  total packet count
 328 * @param maxp  max packet size of current pipe
 329 * @param more_trbs_coming      indicate last trb in TD
 330 * @return remainder
 331 */
 332static u32 xhci_td_remainder(struct xhci_ctrl *ctrl, int transferred,
 333                             int trb_buff_len, unsigned int td_total_len,
 334                             int maxp, bool more_trbs_coming)
 335{
 336        u32 total_packet_count;
 337
 338        /* MTK xHCI 0.96 contains some features from 1.0 */
 339        if (ctrl->hci_version < 0x100 && !(ctrl->quirks & XHCI_MTK_HOST))
 340                return ((td_total_len - transferred) >> 10);
 341
 342        /* One TRB with a zero-length data packet. */
 343        if (!more_trbs_coming || (transferred == 0 && trb_buff_len == 0) ||
 344            trb_buff_len == td_total_len)
 345                return 0;
 346
 347        /* for MTK xHCI 0.96, TD size include this TRB, but not in 1.x */
 348        if ((ctrl->quirks & XHCI_MTK_HOST) && (ctrl->hci_version < 0x100))
 349                trb_buff_len = 0;
 350
 351        total_packet_count = DIV_ROUND_UP(td_total_len, maxp);
 352
 353        /* Queueing functions don't count the current TRB into transferred */
 354        return (total_packet_count - ((transferred + trb_buff_len) / maxp));
 355}
 356
 357/**
 358 * Ring the doorbell of the End Point
 359 *
 360 * @param udev          pointer to the USB device structure
 361 * @param ep_index      index of the endpoint
 362 * @param start_cycle   cycle flag of the first TRB
 363 * @param start_trb     pionter to the first TRB
 364 * @return none
 365 */
 366static void giveback_first_trb(struct usb_device *udev, int ep_index,
 367                                int start_cycle,
 368                                struct xhci_generic_trb *start_trb)
 369{
 370        struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
 371
 372        /*
 373         * Pass all the TRBs to the hardware at once and make sure this write
 374         * isn't reordered.
 375         */
 376        if (start_cycle)
 377                start_trb->field[3] |= cpu_to_le32(start_cycle);
 378        else
 379                start_trb->field[3] &= cpu_to_le32(~TRB_CYCLE);
 380
 381        xhci_flush_cache((uintptr_t)start_trb, sizeof(struct xhci_generic_trb));
 382
 383        /* Ringing EP doorbell here */
 384        xhci_writel(&ctrl->dba->doorbell[udev->slot_id],
 385                                DB_VALUE(ep_index, 0));
 386
 387        return;
 388}
 389
 390/**** POLLING mechanism for XHCI ****/
 391
 392/**
 393 * Finalizes a handled event TRB by advancing our dequeue pointer and giving
 394 * the TRB back to the hardware for recycling. Must call this exactly once at
 395 * the end of each event handler, and not touch the TRB again afterwards.
 396 *
 397 * @param ctrl  Host controller data structure
 398 * @return none
 399 */
 400void xhci_acknowledge_event(struct xhci_ctrl *ctrl)
 401{
 402        /* Advance our dequeue pointer to the next event */
 403        inc_deq(ctrl, ctrl->event_ring);
 404
 405        /* Inform the hardware */
 406        xhci_writeq(&ctrl->ir_set->erst_dequeue,
 407                    xhci_virt_to_bus(ctrl, ctrl->event_ring->dequeue) | ERST_EHB);
 408}
 409
 410/**
 411 * Checks if there is a new event to handle on the event ring.
 412 *
 413 * @param ctrl  Host controller data structure
 414 * @return 0 if failure else 1 on success
 415 */
 416static int event_ready(struct xhci_ctrl *ctrl)
 417{
 418        union xhci_trb *event;
 419
 420        xhci_inval_cache((uintptr_t)ctrl->event_ring->dequeue,
 421                         sizeof(union xhci_trb));
 422
 423        event = ctrl->event_ring->dequeue;
 424
 425        /* Does the HC or OS own the TRB? */
 426        if ((le32_to_cpu(event->event_cmd.flags) & TRB_CYCLE) !=
 427                ctrl->event_ring->cycle_state)
 428                return 0;
 429
 430        return 1;
 431}
 432
 433/**
 434 * Waits for a specific type of event and returns it. Discards unexpected
 435 * events. Caller *must* call xhci_acknowledge_event() after it is finished
 436 * processing the event, and must not access the returned pointer afterwards.
 437 *
 438 * @param ctrl          Host controller data structure
 439 * @param expected      TRB type expected from Event TRB
 440 * @return pointer to event trb
 441 */
 442union xhci_trb *xhci_wait_for_event(struct xhci_ctrl *ctrl, trb_type expected)
 443{
 444        trb_type type;
 445        unsigned long ts = get_timer(0);
 446
 447        do {
 448                union xhci_trb *event = ctrl->event_ring->dequeue;
 449
 450                if (!event_ready(ctrl))
 451                        continue;
 452
 453                type = TRB_FIELD_TO_TYPE(le32_to_cpu(event->event_cmd.flags));
 454                if (type == expected)
 455                        return event;
 456
 457                if (type == TRB_PORT_STATUS)
 458                /* TODO: remove this once enumeration has been reworked */
 459                        /*
 460                         * Port status change events always have a
 461                         * successful completion code
 462                         */
 463                        BUG_ON(GET_COMP_CODE(
 464                                le32_to_cpu(event->generic.field[2])) !=
 465                                                                COMP_SUCCESS);
 466                else
 467                        printf("Unexpected XHCI event TRB, skipping... "
 468                                "(%08x %08x %08x %08x)\n",
 469                                le32_to_cpu(event->generic.field[0]),
 470                                le32_to_cpu(event->generic.field[1]),
 471                                le32_to_cpu(event->generic.field[2]),
 472                                le32_to_cpu(event->generic.field[3]));
 473
 474                xhci_acknowledge_event(ctrl);
 475        } while (get_timer(ts) < XHCI_TIMEOUT);
 476
 477        if (expected == TRB_TRANSFER)
 478                return NULL;
 479
 480        printf("XHCI timeout on event type %d... cannot recover.\n", expected);
 481        BUG();
 482}
 483
 484/*
 485 * Stops transfer processing for an endpoint and throws away all unprocessed
 486 * TRBs by setting the xHC's dequeue pointer to our enqueue pointer. The next
 487 * xhci_bulk_tx/xhci_ctrl_tx on this enpoint will add new transfers there and
 488 * ring the doorbell, causing this endpoint to start working again.
 489 * (Careful: This will BUG() when there was no transfer in progress. Shouldn't
 490 * happen in practice for current uses and is too complicated to fix right now.)
 491 */
 492static void abort_td(struct usb_device *udev, int ep_index)
 493{
 494        struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
 495        struct xhci_ring *ring =  ctrl->devs[udev->slot_id]->eps[ep_index].ring;
 496        union xhci_trb *event;
 497        u32 field;
 498
 499        xhci_queue_command(ctrl, NULL, udev->slot_id, ep_index, TRB_STOP_RING);
 500
 501        event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
 502        field = le32_to_cpu(event->trans_event.flags);
 503        BUG_ON(TRB_TO_SLOT_ID(field) != udev->slot_id);
 504        BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
 505        BUG_ON(GET_COMP_CODE(le32_to_cpu(event->trans_event.transfer_len
 506                != COMP_STOP)));
 507        xhci_acknowledge_event(ctrl);
 508
 509        event = xhci_wait_for_event(ctrl, TRB_COMPLETION);
 510        BUG_ON(TRB_TO_SLOT_ID(le32_to_cpu(event->event_cmd.flags))
 511                != udev->slot_id || GET_COMP_CODE(le32_to_cpu(
 512                event->event_cmd.status)) != COMP_SUCCESS);
 513        xhci_acknowledge_event(ctrl);
 514
 515        xhci_queue_command(ctrl, (void *)((uintptr_t)ring->enqueue |
 516                ring->cycle_state), udev->slot_id, ep_index, TRB_SET_DEQ);
 517        event = xhci_wait_for_event(ctrl, TRB_COMPLETION);
 518        BUG_ON(TRB_TO_SLOT_ID(le32_to_cpu(event->event_cmd.flags))
 519                != udev->slot_id || GET_COMP_CODE(le32_to_cpu(
 520                event->event_cmd.status)) != COMP_SUCCESS);
 521        xhci_acknowledge_event(ctrl);
 522}
 523
 524static void record_transfer_result(struct usb_device *udev,
 525                                   union xhci_trb *event, int length)
 526{
 527        udev->act_len = min(length, length -
 528                (int)EVENT_TRB_LEN(le32_to_cpu(event->trans_event.transfer_len)));
 529
 530        switch (GET_COMP_CODE(le32_to_cpu(event->trans_event.transfer_len))) {
 531        case COMP_SUCCESS:
 532                BUG_ON(udev->act_len != length);
 533                /* fallthrough */
 534        case COMP_SHORT_TX:
 535                udev->status = 0;
 536                break;
 537        case COMP_STALL:
 538                udev->status = USB_ST_STALLED;
 539                break;
 540        case COMP_DB_ERR:
 541        case COMP_TRB_ERR:
 542                udev->status = USB_ST_BUF_ERR;
 543                break;
 544        case COMP_BABBLE:
 545                udev->status = USB_ST_BABBLE_DET;
 546                break;
 547        default:
 548                udev->status = 0x80;  /* USB_ST_TOO_LAZY_TO_MAKE_A_NEW_MACRO */
 549        }
 550}
 551
 552/**** Bulk and Control transfer methods ****/
 553/**
 554 * Queues up the BULK Request
 555 *
 556 * @param udev          pointer to the USB device structure
 557 * @param pipe          contains the DIR_IN or OUT , devnum
 558 * @param length        length of the buffer
 559 * @param buffer        buffer to be read/written based on the request
 560 * @return returns 0 if successful else -1 on failure
 561 */
 562int xhci_bulk_tx(struct usb_device *udev, unsigned long pipe,
 563                        int length, void *buffer)
 564{
 565        int num_trbs = 0;
 566        struct xhci_generic_trb *start_trb;
 567        bool first_trb = false;
 568        int start_cycle;
 569        u32 field = 0;
 570        u32 length_field = 0;
 571        struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
 572        int slot_id = udev->slot_id;
 573        int ep_index;
 574        struct xhci_virt_device *virt_dev;
 575        struct xhci_ep_ctx *ep_ctx;
 576        struct xhci_ring *ring;         /* EP transfer ring */
 577        union xhci_trb *event;
 578
 579        int running_total, trb_buff_len;
 580        bool more_trbs_coming = true;
 581        int maxpacketsize;
 582        u64 addr;
 583        int ret;
 584        u32 trb_fields[4];
 585        u64 val_64 = xhci_virt_to_bus(ctrl, buffer);
 586        void *last_transfer_trb_addr;
 587        int available_length;
 588
 589        debug("dev=%p, pipe=%lx, buffer=%p, length=%d\n",
 590                udev, pipe, buffer, length);
 591
 592        available_length = length;
 593        ep_index = usb_pipe_ep_index(pipe);
 594        virt_dev = ctrl->devs[slot_id];
 595
 596        xhci_inval_cache((uintptr_t)virt_dev->out_ctx->bytes,
 597                         virt_dev->out_ctx->size);
 598
 599        ep_ctx = xhci_get_ep_ctx(ctrl, virt_dev->out_ctx, ep_index);
 600
 601        ring = virt_dev->eps[ep_index].ring;
 602        /*
 603         * How much data is (potentially) left before the 64KB boundary?
 604         * XHCI Spec puts restriction( TABLE 49 and 6.4.1 section of XHCI Spec)
 605         * that the buffer should not span 64KB boundary. if so
 606         * we send request in more than 1 TRB by chaining them.
 607         */
 608        running_total = TRB_MAX_BUFF_SIZE -
 609                        (lower_32_bits(val_64) & (TRB_MAX_BUFF_SIZE - 1));
 610        trb_buff_len = running_total;
 611        running_total &= TRB_MAX_BUFF_SIZE - 1;
 612
 613        /*
 614         * If there's some data on this 64KB chunk, or we have to send a
 615         * zero-length transfer, we need at least one TRB
 616         */
 617        if (running_total != 0 || length == 0)
 618                num_trbs++;
 619
 620        /* How many more 64KB chunks to transfer, how many more TRBs? */
 621        while (running_total < length) {
 622                num_trbs++;
 623                running_total += TRB_MAX_BUFF_SIZE;
 624        }
 625
 626        /*
 627         * XXX: Calling routine prepare_ring() called in place of
 628         * prepare_trasfer() as there in 'Linux' since we are not
 629         * maintaining multiple TDs/transfer at the same time.
 630         */
 631        ret = prepare_ring(ctrl, ring,
 632                           le32_to_cpu(ep_ctx->ep_info) & EP_STATE_MASK);
 633        if (ret < 0)
 634                return ret;
 635
 636        /*
 637         * Don't give the first TRB to the hardware (by toggling the cycle bit)
 638         * until we've finished creating all the other TRBs.  The ring's cycle
 639         * state may change as we enqueue the other TRBs, so save it too.
 640         */
 641        start_trb = &ring->enqueue->generic;
 642        start_cycle = ring->cycle_state;
 643
 644        running_total = 0;
 645        maxpacketsize = usb_maxpacket(udev, pipe);
 646
 647        /* How much data is in the first TRB? */
 648        /*
 649         * How much data is (potentially) left before the 64KB boundary?
 650         * XHCI Spec puts restriction( TABLE 49 and 6.4.1 section of XHCI Spec)
 651         * that the buffer should not span 64KB boundary. if so
 652         * we send request in more than 1 TRB by chaining them.
 653         */
 654        addr = val_64;
 655
 656        if (trb_buff_len > length)
 657                trb_buff_len = length;
 658
 659        first_trb = true;
 660
 661        /* flush the buffer before use */
 662        xhci_flush_cache((uintptr_t)buffer, length);
 663
 664        /* Queue the first TRB, even if it's zero-length */
 665        do {
 666                u32 remainder = 0;
 667                field = 0;
 668                /* Don't change the cycle bit of the first TRB until later */
 669                if (first_trb) {
 670                        first_trb = false;
 671                        if (start_cycle == 0)
 672                                field |= TRB_CYCLE;
 673                } else {
 674                        field |= ring->cycle_state;
 675                }
 676
 677                /*
 678                 * Chain all the TRBs together; clear the chain bit in the last
 679                 * TRB to indicate it's the last TRB in the chain.
 680                 */
 681                if (num_trbs > 1) {
 682                        field |= TRB_CHAIN;
 683                } else {
 684                        field |= TRB_IOC;
 685                        more_trbs_coming = false;
 686                }
 687
 688                /* Only set interrupt on short packet for IN endpoints */
 689                if (usb_pipein(pipe))
 690                        field |= TRB_ISP;
 691
 692                /* Set the TRB length, TD size, and interrupter fields. */
 693                remainder = xhci_td_remainder(ctrl, running_total, trb_buff_len,
 694                                              length, maxpacketsize,
 695                                              more_trbs_coming);
 696
 697                length_field = (TRB_LEN(trb_buff_len) |
 698                                TRB_TD_SIZE(remainder) |
 699                                TRB_INTR_TARGET(0));
 700
 701                trb_fields[0] = lower_32_bits(addr);
 702                trb_fields[1] = upper_32_bits(addr);
 703                trb_fields[2] = length_field;
 704                trb_fields[3] = field | TRB_TYPE(TRB_NORMAL);
 705
 706                last_transfer_trb_addr = queue_trb(ctrl, ring, (num_trbs > 1), trb_fields);
 707
 708                --num_trbs;
 709
 710                running_total += trb_buff_len;
 711
 712                /* Calculate length for next transfer */
 713                addr += trb_buff_len;
 714                trb_buff_len = min((length - running_total), TRB_MAX_BUFF_SIZE);
 715        } while (running_total < length);
 716
 717        giveback_first_trb(udev, ep_index, start_cycle, start_trb);
 718
 719again:
 720        event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
 721        if (!event) {
 722                debug("XHCI bulk transfer timed out, aborting...\n");
 723                abort_td(udev, ep_index);
 724                udev->status = USB_ST_NAK_REC;  /* closest thing to a timeout */
 725                udev->act_len = 0;
 726                return -ETIMEDOUT;
 727        }
 728
 729        if ((uintptr_t)(le64_to_cpu(event->trans_event.buffer)) !=
 730            (uintptr_t)xhci_virt_to_bus(ctrl, last_transfer_trb_addr)) {
 731                available_length -=
 732                        (int)EVENT_TRB_LEN(le32_to_cpu(event->trans_event.transfer_len));
 733                xhci_acknowledge_event(ctrl);
 734                goto again;
 735        }
 736
 737        field = le32_to_cpu(event->trans_event.flags);
 738        BUG_ON(TRB_TO_SLOT_ID(field) != slot_id);
 739        BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
 740
 741        record_transfer_result(udev, event, available_length);
 742        xhci_acknowledge_event(ctrl);
 743        xhci_inval_cache((uintptr_t)buffer, length);
 744
 745        return (udev->status != USB_ST_NOT_PROC) ? 0 : -1;
 746}
 747
 748/**
 749 * Queues up the Control Transfer Request
 750 *
 751 * @param udev  pointer to the USB device structure
 752 * @param pipe          contains the DIR_IN or OUT , devnum
 753 * @param req           request type
 754 * @param length        length of the buffer
 755 * @param buffer        buffer to be read/written based on the request
 756 * @return returns 0 if successful else error code on failure
 757 */
 758int xhci_ctrl_tx(struct usb_device *udev, unsigned long pipe,
 759                        struct devrequest *req, int length,
 760                        void *buffer)
 761{
 762        int ret;
 763        int start_cycle;
 764        int num_trbs;
 765        u32 field;
 766        u32 length_field;
 767        u64 buf_64 = 0;
 768        struct xhci_generic_trb *start_trb;
 769        struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
 770        int slot_id = udev->slot_id;
 771        int ep_index;
 772        u32 trb_fields[4];
 773        struct xhci_virt_device *virt_dev = ctrl->devs[slot_id];
 774        struct xhci_ring *ep_ring;
 775        union xhci_trb *event;
 776        u32 remainder;
 777
 778        debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
 779                req->request, req->request,
 780                req->requesttype, req->requesttype,
 781                le16_to_cpu(req->value), le16_to_cpu(req->value),
 782                le16_to_cpu(req->index));
 783
 784        ep_index = usb_pipe_ep_index(pipe);
 785
 786        ep_ring = virt_dev->eps[ep_index].ring;
 787
 788        /*
 789         * Check to see if the max packet size for the default control
 790         * endpoint changed during FS device enumeration
 791         */
 792        if (udev->speed == USB_SPEED_FULL) {
 793                ret = xhci_check_maxpacket(udev);
 794                if (ret < 0)
 795                        return ret;
 796        }
 797
 798        xhci_inval_cache((uintptr_t)virt_dev->out_ctx->bytes,
 799                         virt_dev->out_ctx->size);
 800
 801        struct xhci_ep_ctx *ep_ctx = NULL;
 802        ep_ctx = xhci_get_ep_ctx(ctrl, virt_dev->out_ctx, ep_index);
 803
 804        /* 1 TRB for setup, 1 for status */
 805        num_trbs = 2;
 806        /*
 807         * Don't need to check if we need additional event data and normal TRBs,
 808         * since data in control transfers will never get bigger than 16MB
 809         * XXX: can we get a buffer that crosses 64KB boundaries?
 810         */
 811
 812        if (length > 0)
 813                num_trbs++;
 814        /*
 815         * XXX: Calling routine prepare_ring() called in place of
 816         * prepare_trasfer() as there in 'Linux' since we are not
 817         * maintaining multiple TDs/transfer at the same time.
 818         */
 819        ret = prepare_ring(ctrl, ep_ring,
 820                                le32_to_cpu(ep_ctx->ep_info) & EP_STATE_MASK);
 821
 822        if (ret < 0)
 823                return ret;
 824
 825        /*
 826         * Don't give the first TRB to the hardware (by toggling the cycle bit)
 827         * until we've finished creating all the other TRBs.  The ring's cycle
 828         * state may change as we enqueue the other TRBs, so save it too.
 829         */
 830        start_trb = &ep_ring->enqueue->generic;
 831        start_cycle = ep_ring->cycle_state;
 832
 833        debug("start_trb %p, start_cycle %d\n", start_trb, start_cycle);
 834
 835        /* Queue setup TRB - see section 6.4.1.2.1 */
 836        /* FIXME better way to translate setup_packet into two u32 fields? */
 837        field = 0;
 838        field |= TRB_IDT | TRB_TYPE(TRB_SETUP);
 839        if (start_cycle == 0)
 840                field |= 0x1;
 841
 842        /* xHCI 1.0 6.4.1.2.1: Transfer Type field */
 843        if (ctrl->hci_version >= 0x100 || ctrl->quirks & XHCI_MTK_HOST) {
 844                if (length > 0) {
 845                        if (req->requesttype & USB_DIR_IN)
 846                                field |= TRB_TX_TYPE(TRB_DATA_IN);
 847                        else
 848                                field |= TRB_TX_TYPE(TRB_DATA_OUT);
 849                }
 850        }
 851
 852        debug("req->requesttype = %d, req->request = %d, req->value = %d, req->index = %d, req->length = %d\n",
 853              req->requesttype, req->request, le16_to_cpu(req->value),
 854              le16_to_cpu(req->index), le16_to_cpu(req->length));
 855
 856        trb_fields[0] = req->requesttype | req->request << 8 |
 857                                le16_to_cpu(req->value) << 16;
 858        trb_fields[1] = le16_to_cpu(req->index) |
 859                        le16_to_cpu(req->length) << 16;
 860        /* TRB_LEN | (TRB_INTR_TARGET) */
 861        trb_fields[2] = (TRB_LEN(8) | TRB_INTR_TARGET(0));
 862        /* Immediate data in pointer */
 863        trb_fields[3] = field;
 864        queue_trb(ctrl, ep_ring, true, trb_fields);
 865
 866        /* Re-initializing field to zero */
 867        field = 0;
 868        /* If there's data, queue data TRBs */
 869        /* Only set interrupt on short packet for IN endpoints */
 870        if (usb_pipein(pipe))
 871                field = TRB_ISP | TRB_TYPE(TRB_DATA);
 872        else
 873                field = TRB_TYPE(TRB_DATA);
 874
 875        remainder = xhci_td_remainder(ctrl, 0, length, length,
 876                                      usb_maxpacket(udev, pipe), true);
 877        length_field = TRB_LEN(length) | TRB_TD_SIZE(remainder) |
 878                       TRB_INTR_TARGET(0);
 879        debug("length_field = %d, length = %d,"
 880                "xhci_td_remainder(length) = %d , TRB_INTR_TARGET(0) = %d\n",
 881                length_field, TRB_LEN(length),
 882                TRB_TD_SIZE(remainder), 0);
 883
 884        if (length > 0) {
 885                if (req->requesttype & USB_DIR_IN)
 886                        field |= TRB_DIR_IN;
 887                buf_64 = xhci_virt_to_bus(ctrl, buffer);
 888
 889                trb_fields[0] = lower_32_bits(buf_64);
 890                trb_fields[1] = upper_32_bits(buf_64);
 891                trb_fields[2] = length_field;
 892                trb_fields[3] = field | ep_ring->cycle_state;
 893
 894                xhci_flush_cache((uintptr_t)buffer, length);
 895                queue_trb(ctrl, ep_ring, true, trb_fields);
 896        }
 897
 898        /*
 899         * Queue status TRB -
 900         * see Table 7 and sections 4.11.2.2 and 6.4.1.2.3
 901         */
 902
 903        /* If the device sent data, the status stage is an OUT transfer */
 904        field = 0;
 905        if (length > 0 && req->requesttype & USB_DIR_IN)
 906                field = 0;
 907        else
 908                field = TRB_DIR_IN;
 909
 910        trb_fields[0] = 0;
 911        trb_fields[1] = 0;
 912        trb_fields[2] = TRB_INTR_TARGET(0);
 913                /* Event on completion */
 914        trb_fields[3] = field | TRB_IOC |
 915                        TRB_TYPE(TRB_STATUS) | ep_ring->cycle_state;
 916
 917        queue_trb(ctrl, ep_ring, false, trb_fields);
 918
 919        giveback_first_trb(udev, ep_index, start_cycle, start_trb);
 920
 921        event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
 922        if (!event)
 923                goto abort;
 924        field = le32_to_cpu(event->trans_event.flags);
 925
 926        BUG_ON(TRB_TO_SLOT_ID(field) != slot_id);
 927        BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
 928
 929        record_transfer_result(udev, event, length);
 930        xhci_acknowledge_event(ctrl);
 931
 932        /* Invalidate buffer to make it available to usb-core */
 933        if (length > 0)
 934                xhci_inval_cache((uintptr_t)buffer, length);
 935
 936        if (GET_COMP_CODE(le32_to_cpu(event->trans_event.transfer_len))
 937                        == COMP_SHORT_TX) {
 938                /* Short data stage, clear up additional status stage event */
 939                event = xhci_wait_for_event(ctrl, TRB_TRANSFER);
 940                if (!event)
 941                        goto abort;
 942                BUG_ON(TRB_TO_SLOT_ID(field) != slot_id);
 943                BUG_ON(TRB_TO_EP_INDEX(field) != ep_index);
 944                xhci_acknowledge_event(ctrl);
 945        }
 946
 947        return (udev->status != USB_ST_NOT_PROC) ? 0 : -1;
 948
 949abort:
 950        debug("XHCI control transfer timed out, aborting...\n");
 951        abort_td(udev, ep_index);
 952        udev->status = USB_ST_NAK_REC;
 953        udev->act_len = 0;
 954        return -ETIMEDOUT;
 955}
 956