1 // SPDX-License-Identifier: GPL-2.0
3 * Cadence CDNSP DRD Driver.
5 * Copyright (C) 2020 Cadence.
11 #include <linux/moduleparam.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/module.h>
14 #include <linux/iopoll.h>
15 #include <linux/delay.h>
16 #include <linux/log2.h>
17 #include <linux/slab.h>
18 #include <linux/pci.h>
19 #include <linux/irq.h>
20 #include <linux/dmi.h>
23 #include "gadget-export.h"
25 #include "cdnsp-gadget.h"
26 #include "cdnsp-trace.h"
28 unsigned int cdnsp_port_speed(unsigned int port_status)
30 /*Detect gadget speed based on PORTSC register*/
31 if (DEV_SUPERSPEEDPLUS(port_status))
32 return USB_SPEED_SUPER_PLUS;
33 else if (DEV_SUPERSPEED(port_status))
34 return USB_SPEED_SUPER;
35 else if (DEV_HIGHSPEED(port_status))
36 return USB_SPEED_HIGH;
37 else if (DEV_FULLSPEED(port_status))
38 return USB_SPEED_FULL;
40 /* If device is detached then speed will be USB_SPEED_UNKNOWN.*/
41 return USB_SPEED_UNKNOWN;
45 * Given a port state, this function returns a value that would result in the
46 * port being in the same state, if the value was written to the port status
48 * Save Read Only (RO) bits and save read/write bits where
49 * writing a 0 clears the bit and writing a 1 sets the bit (RWS).
50 * For all other types (RW1S, RW1CS, RW, and RZ), writing a '0' has no effect.
52 u32 cdnsp_port_state_to_neutral(u32 state)
54 /* Save read-only status and port state. */
55 return (state & CDNSP_PORT_RO) | (state & CDNSP_PORT_RWS);
59 * Find the offset of the extended capabilities with capability ID id.
60 * @base: PCI MMIO registers base address.
61 * @start: Address at which to start looking, (0 or HCC_PARAMS to start at
63 * @id: Extended capability ID to search for.
65 * Returns the offset of the next matching extended capability structure.
66 * Some capabilities can occur several times,
67 * e.g., the EXT_CAPS_PROTOCOL, and this provides a way to find them all.
69 int cdnsp_find_next_ext_cap(void __iomem *base, u32 start, int id)
75 if (!start || start == HCC_PARAMS_OFFSET) {
76 val = readl(base + HCC_PARAMS_OFFSET);
80 offset = HCC_EXT_CAPS(val) << 2;
86 val = readl(base + offset);
90 if (EXT_CAPS_ID(val) == id && offset != start)
93 next = EXT_CAPS_NEXT(val);
100 void cdnsp_set_link_state(struct cdnsp_device *pdev,
101 __le32 __iomem *port_regs,
107 temp = readl(port_regs);
108 temp = cdnsp_port_state_to_neutral(temp);
109 temp |= PORT_WKCONN_E | PORT_WKDISC_E;
110 writel(temp, port_regs);
112 temp &= ~PORT_PLS_MASK;
113 temp |= PORT_LINK_STROBE | link_state;
115 if (pdev->active_port)
116 port_num = pdev->active_port->port_num;
118 trace_cdnsp_handle_port_status(port_num, readl(port_regs));
119 writel(temp, port_regs);
120 trace_cdnsp_link_state_changed(port_num, readl(port_regs));
123 static void cdnsp_disable_port(struct cdnsp_device *pdev,
124 __le32 __iomem *port_regs)
126 u32 temp = cdnsp_port_state_to_neutral(readl(port_regs));
128 writel(temp | PORT_PED, port_regs);
131 static void cdnsp_clear_port_change_bit(struct cdnsp_device *pdev,
132 __le32 __iomem *port_regs)
134 u32 portsc = readl(port_regs);
136 writel(cdnsp_port_state_to_neutral(portsc) |
137 (portsc & PORT_CHANGE_BITS), port_regs);
140 static void cdnsp_set_chicken_bits_2(struct cdnsp_device *pdev, u32 bit)
146 base = &pdev->cap_regs->hc_capbase;
147 offset = cdnsp_find_next_ext_cap(base, offset, D_XEC_PRE_REGS_CAP);
148 reg = base + offset + REG_CHICKEN_BITS_2_OFFSET;
150 bit = readl(reg) | bit;
154 static void cdnsp_clear_chicken_bits_2(struct cdnsp_device *pdev, u32 bit)
160 base = &pdev->cap_regs->hc_capbase;
161 offset = cdnsp_find_next_ext_cap(base, offset, D_XEC_PRE_REGS_CAP);
162 reg = base + offset + REG_CHICKEN_BITS_2_OFFSET;
164 bit = readl(reg) & ~bit;
169 * Disable interrupts and begin the controller halting process.
171 static void cdnsp_quiesce(struct cdnsp_device *pdev)
177 mask = ~(u32)(CDNSP_IRQS);
179 halted = readl(&pdev->op_regs->status) & STS_HALT;
181 mask &= ~(CMD_R_S | CMD_DEVEN);
183 cmd = readl(&pdev->op_regs->command);
185 writel(cmd, &pdev->op_regs->command);
189 * Force controller into halt state.
191 * Disable any IRQs and clear the run/stop bit.
192 * Controller will complete any current and actively pipelined transactions, and
193 * should halt within 16 ms of the run/stop bit being cleared.
194 * Read controller Halted bit in the status register to see when the
195 * controller is finished.
197 int cdnsp_halt(struct cdnsp_device *pdev)
204 ret = readl_poll_timeout_atomic(&pdev->op_regs->status, val,
206 CDNSP_MAX_HALT_USEC);
208 dev_err(pdev->dev, "ERROR: Device halt failed\n");
212 pdev->cdnsp_state |= CDNSP_STATE_HALTED;
218 * device controller died, register read returns 0xffffffff, or command never
221 void cdnsp_died(struct cdnsp_device *pdev)
223 dev_err(pdev->dev, "ERROR: CDNSP controller not responding\n");
224 pdev->cdnsp_state |= CDNSP_STATE_DYING;
229 * Set the run bit and wait for the device to be running.
231 static int cdnsp_start(struct cdnsp_device *pdev)
236 temp = readl(&pdev->op_regs->command);
237 temp |= (CMD_R_S | CMD_DEVEN);
238 writel(temp, &pdev->op_regs->command);
240 pdev->cdnsp_state = 0;
243 * Wait for the STS_HALT Status bit to be 0 to indicate the device is
246 ret = readl_poll_timeout_atomic(&pdev->op_regs->status, temp,
247 !(temp & STS_HALT), 1,
248 CDNSP_MAX_HALT_USEC);
250 pdev->cdnsp_state = CDNSP_STATE_DYING;
251 dev_err(pdev->dev, "ERROR: Controller run failed\n");
258 * Reset a halted controller.
260 * This resets pipelines, timers, counters, state machines, etc.
261 * Transactions will be terminated immediately, and operational registers
262 * will be set to their defaults.
264 int cdnsp_reset(struct cdnsp_device *pdev)
270 temp = readl(&pdev->op_regs->status);
272 if (temp == ~(u32)0) {
273 dev_err(pdev->dev, "Device not accessible, reset failed.\n");
277 if ((temp & STS_HALT) == 0) {
278 dev_err(pdev->dev, "Controller not halted, aborting reset.\n");
282 command = readl(&pdev->op_regs->command);
283 command |= CMD_RESET;
284 writel(command, &pdev->op_regs->command);
286 ret = readl_poll_timeout_atomic(&pdev->op_regs->command, temp,
287 !(temp & CMD_RESET), 1,
290 dev_err(pdev->dev, "ERROR: Controller reset failed\n");
295 * CDNSP cannot write any doorbells or operational registers other
296 * than status until the "Controller Not Ready" flag is cleared.
298 ret = readl_poll_timeout_atomic(&pdev->op_regs->status, temp,
299 !(temp & STS_CNR), 1,
303 dev_err(pdev->dev, "ERROR: Controller not ready to work\n");
307 dev_dbg(pdev->dev, "Controller ready to work");
313 * cdnsp_get_endpoint_index - Find the index for an endpoint given its
314 * descriptor.Use the return value to right shift 1 for the bitmask.
316 * Index = (epnum * 2) + direction - 1,
317 * where direction = 0 for OUT, 1 for IN.
318 * For control endpoints, the IN index is used (OUT index is unused), so
319 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
322 cdnsp_get_endpoint_index(const struct usb_endpoint_descriptor *desc)
324 unsigned int index = (unsigned int)usb_endpoint_num(desc);
326 if (usb_endpoint_xfer_control(desc))
329 return (index * 2) + (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
333 * Find the flag for this endpoint (for use in the control context). Use the
334 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
338 cdnsp_get_endpoint_flag(const struct usb_endpoint_descriptor *desc)
340 return 1 << (cdnsp_get_endpoint_index(desc) + 1);
343 int cdnsp_ep_enqueue(struct cdnsp_ep *pep, struct cdnsp_request *preq)
345 struct cdnsp_device *pdev = pep->pdev;
346 struct usb_request *request;
349 if (preq->epnum == 0 && !list_empty(&pep->pending_list)) {
350 trace_cdnsp_request_enqueue_busy(preq);
354 request = &preq->request;
356 request->status = -EINPROGRESS;
357 preq->direction = pep->direction;
358 preq->epnum = pep->number;
361 ret = usb_gadget_map_request_by_dev(pdev->dev, request, pep->direction);
363 trace_cdnsp_request_enqueue_error(preq);
367 list_add_tail(&preq->list, &pep->pending_list);
369 trace_cdnsp_request_enqueue(preq);
371 switch (usb_endpoint_type(pep->endpoint.desc)) {
372 case USB_ENDPOINT_XFER_CONTROL:
373 ret = cdnsp_queue_ctrl_tx(pdev, preq);
375 case USB_ENDPOINT_XFER_BULK:
376 case USB_ENDPOINT_XFER_INT:
377 ret = cdnsp_queue_bulk_tx(pdev, preq);
379 case USB_ENDPOINT_XFER_ISOC:
380 ret = cdnsp_queue_isoc_tx_prepare(pdev, preq);
389 usb_gadget_unmap_request_by_dev(pdev->dev, &preq->request,
391 list_del(&preq->list);
392 trace_cdnsp_request_enqueue_error(preq);
398 * Remove the request's TD from the endpoint ring. This may cause the
399 * controller to stop USB transfers, potentially stopping in the middle of a
400 * TRB buffer. The controller should pick up where it left off in the TD,
401 * unless a Set Transfer Ring Dequeue Pointer is issued.
403 * The TRBs that make up the buffers for the canceled request will be "removed"
404 * from the ring. Since the ring is a contiguous structure, they can't be
405 * physically removed. Instead, there are two options:
407 * 1) If the controller is in the middle of processing the request to be
408 * canceled, we simply move the ring's dequeue pointer past those TRBs
409 * using the Set Transfer Ring Dequeue Pointer command. This will be
410 * the common case, when drivers timeout on the last submitted request
411 * and attempt to cancel.
413 * 2) If the controller is in the middle of a different TD, we turn the TRBs
414 * into a series of 1-TRB transfer no-op TDs. No-ops shouldn't be chained.
415 * The controller will need to invalidate the any TRBs it has cached after
416 * the stop endpoint command.
418 * 3) The TD may have completed by the time the Stop Endpoint Command
419 * completes, so software needs to handle that case too.
422 int cdnsp_ep_dequeue(struct cdnsp_ep *pep, struct cdnsp_request *preq)
424 struct cdnsp_device *pdev = pep->pdev;
427 trace_cdnsp_request_dequeue(preq);
429 if (GET_EP_CTX_STATE(pep->out_ctx) == EP_STATE_RUNNING) {
430 ret = cdnsp_cmd_stop_ep(pdev, pep);
435 return cdnsp_remove_request(pdev, preq, pep);
438 static void cdnsp_zero_in_ctx(struct cdnsp_device *pdev)
440 struct cdnsp_input_control_ctx *ctrl_ctx;
441 struct cdnsp_slot_ctx *slot_ctx;
442 struct cdnsp_ep_ctx *ep_ctx;
445 ctrl_ctx = cdnsp_get_input_control_ctx(&pdev->in_ctx);
448 * When a device's add flag and drop flag are zero, any subsequent
449 * configure endpoint command will leave that endpoint's state
450 * untouched. Make sure we don't leave any old state in the input
453 ctrl_ctx->drop_flags = 0;
454 ctrl_ctx->add_flags = 0;
455 slot_ctx = cdnsp_get_slot_ctx(&pdev->in_ctx);
456 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
458 /* Endpoint 0 is always valid */
459 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
460 for (i = 1; i < CDNSP_ENDPOINTS_NUM; ++i) {
461 ep_ctx = cdnsp_get_ep_ctx(&pdev->in_ctx, i);
463 ep_ctx->ep_info2 = 0;
469 /* Issue a configure endpoint command and wait for it to finish. */
470 static int cdnsp_configure_endpoint(struct cdnsp_device *pdev)
474 cdnsp_queue_configure_endpoint(pdev, pdev->cmd.in_ctx->dma);
475 cdnsp_ring_cmd_db(pdev);
476 ret = cdnsp_wait_for_cmd_compl(pdev);
479 "ERR: unexpected command completion code 0x%x.\n", ret);
486 static void cdnsp_invalidate_ep_events(struct cdnsp_device *pdev,
487 struct cdnsp_ep *pep)
489 struct cdnsp_segment *segment;
490 union cdnsp_trb *event;
494 event = pdev->event_ring->dequeue;
495 segment = pdev->event_ring->deq_seg;
496 cycle_state = pdev->event_ring->cycle_state;
499 data = le32_to_cpu(event->trans_event.flags);
501 /* Check the owner of the TRB. */
502 if ((data & TRB_CYCLE) != cycle_state)
505 if (TRB_FIELD_TO_TYPE(data) == TRB_TRANSFER &&
506 TRB_TO_EP_ID(data) == (pep->idx + 1)) {
507 data |= TRB_EVENT_INVALIDATE;
508 event->trans_event.flags = cpu_to_le32(data);
511 if (cdnsp_last_trb_on_seg(segment, event)) {
513 segment = pdev->event_ring->deq_seg->next;
514 event = segment->trbs;
521 int cdnsp_wait_for_cmd_compl(struct cdnsp_device *pdev)
523 struct cdnsp_segment *event_deq_seg;
524 union cdnsp_trb *cmd_trb;
525 dma_addr_t cmd_deq_dma;
526 union cdnsp_trb *event;
532 cmd_trb = pdev->cmd.command_trb;
533 pdev->cmd.status = 0;
535 trace_cdnsp_cmd_wait_for_compl(pdev->cmd_ring, &cmd_trb->generic);
537 ret = readl_poll_timeout_atomic(&pdev->op_regs->cmd_ring, val,
538 !CMD_RING_BUSY(val), 1,
541 dev_err(pdev->dev, "ERR: Timeout while waiting for command\n");
542 trace_cdnsp_cmd_timeout(pdev->cmd_ring, &cmd_trb->generic);
543 pdev->cdnsp_state = CDNSP_STATE_DYING;
547 event = pdev->event_ring->dequeue;
548 event_deq_seg = pdev->event_ring->deq_seg;
549 cycle_state = pdev->event_ring->cycle_state;
551 cmd_deq_dma = cdnsp_trb_virt_to_dma(pdev->cmd_ring->deq_seg, cmd_trb);
556 flags = le32_to_cpu(event->event_cmd.flags);
558 /* Check the owner of the TRB. */
559 if ((flags & TRB_CYCLE) != cycle_state)
562 cmd_dma = le64_to_cpu(event->event_cmd.cmd_trb);
565 * Check whether the completion event is for last queued
568 if (TRB_FIELD_TO_TYPE(flags) != TRB_COMPLETION ||
569 cmd_dma != (u64)cmd_deq_dma) {
570 if (!cdnsp_last_trb_on_seg(event_deq_seg, event)) {
575 if (cdnsp_last_trb_on_ring(pdev->event_ring,
576 event_deq_seg, event))
579 event_deq_seg = event_deq_seg->next;
580 event = event_deq_seg->trbs;
584 trace_cdnsp_handle_command(pdev->cmd_ring, &cmd_trb->generic);
586 pdev->cmd.status = GET_COMP_CODE(le32_to_cpu(event->event_cmd.status));
587 if (pdev->cmd.status == COMP_SUCCESS)
590 return -pdev->cmd.status;
594 int cdnsp_halt_endpoint(struct cdnsp_device *pdev,
595 struct cdnsp_ep *pep,
600 trace_cdnsp_ep_halt(value ? "Set" : "Clear");
603 ret = cdnsp_cmd_stop_ep(pdev, pep);
607 if (GET_EP_CTX_STATE(pep->out_ctx) == EP_STATE_STOPPED) {
608 cdnsp_queue_halt_endpoint(pdev, pep->idx);
609 cdnsp_ring_cmd_db(pdev);
610 ret = cdnsp_wait_for_cmd_compl(pdev);
613 pep->ep_state |= EP_HALTED;
616 * In device mode driver can call reset endpoint command
617 * from any endpoint state.
619 cdnsp_queue_reset_ep(pdev, pep->idx);
620 cdnsp_ring_cmd_db(pdev);
621 ret = cdnsp_wait_for_cmd_compl(pdev);
622 trace_cdnsp_handle_cmd_reset_ep(pep->out_ctx);
627 pep->ep_state &= ~EP_HALTED;
629 if (pep->idx != 0 && !(pep->ep_state & EP_WEDGE))
630 cdnsp_ring_doorbell_for_active_rings(pdev, pep);
632 pep->ep_state &= ~EP_WEDGE;
638 static int cdnsp_update_eps_configuration(struct cdnsp_device *pdev,
639 struct cdnsp_ep *pep)
641 struct cdnsp_input_control_ctx *ctrl_ctx;
642 struct cdnsp_slot_ctx *slot_ctx;
647 ctrl_ctx = cdnsp_get_input_control_ctx(&pdev->in_ctx);
649 /* Don't issue the command if there's no endpoints to update. */
650 if (ctrl_ctx->add_flags == 0 && ctrl_ctx->drop_flags == 0)
653 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
654 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
655 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
657 /* Fix up Context Entries field. Minimum value is EP0 == BIT(1). */
658 slot_ctx = cdnsp_get_slot_ctx(&pdev->in_ctx);
659 for (i = CDNSP_ENDPOINTS_NUM; i >= 1; i--) {
660 __le32 le32 = cpu_to_le32(BIT(i));
662 if ((pdev->eps[i - 1].ring && !(ctrl_ctx->drop_flags & le32)) ||
663 (ctrl_ctx->add_flags & le32) || i == 1) {
664 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
665 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(i));
670 ep_sts = GET_EP_CTX_STATE(pep->out_ctx);
672 if ((ctrl_ctx->add_flags != cpu_to_le32(SLOT_FLAG) &&
673 ep_sts == EP_STATE_DISABLED) ||
674 (ep_sts != EP_STATE_DISABLED && ctrl_ctx->drop_flags))
675 ret = cdnsp_configure_endpoint(pdev);
677 trace_cdnsp_configure_endpoint(cdnsp_get_slot_ctx(&pdev->out_ctx));
678 trace_cdnsp_handle_cmd_config_ep(pep->out_ctx);
680 cdnsp_zero_in_ctx(pdev);
686 * This submits a Reset Device Command, which will set the device state to 0,
687 * set the device address to 0, and disable all the endpoints except the default
688 * control endpoint. The USB core should come back and call
689 * cdnsp_setup_device(), and then re-set up the configuration.
691 int cdnsp_reset_device(struct cdnsp_device *pdev)
693 struct cdnsp_slot_ctx *slot_ctx;
697 slot_ctx = cdnsp_get_slot_ctx(&pdev->in_ctx);
698 slot_ctx->dev_info = 0;
699 pdev->device_address = 0;
701 /* If device is not setup, there is no point in resetting it. */
702 slot_ctx = cdnsp_get_slot_ctx(&pdev->out_ctx);
703 slot_state = GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state));
704 trace_cdnsp_reset_device(slot_ctx);
706 if (slot_state <= SLOT_STATE_DEFAULT &&
707 pdev->eps[0].ep_state & EP_HALTED) {
708 cdnsp_halt_endpoint(pdev, &pdev->eps[0], 0);
712 * During Reset Device command controller shall transition the
713 * endpoint ep0 to the Running State.
715 pdev->eps[0].ep_state &= ~(EP_STOPPED | EP_HALTED);
716 pdev->eps[0].ep_state |= EP_ENABLED;
718 if (slot_state <= SLOT_STATE_DEFAULT)
721 cdnsp_queue_reset_device(pdev);
722 cdnsp_ring_cmd_db(pdev);
723 ret = cdnsp_wait_for_cmd_compl(pdev);
726 * After Reset Device command all not default endpoints
727 * are in Disabled state.
729 for (i = 1; i < CDNSP_ENDPOINTS_NUM; ++i)
730 pdev->eps[i].ep_state |= EP_STOPPED;
732 trace_cdnsp_handle_cmd_reset_dev(slot_ctx);
735 dev_err(pdev->dev, "Reset device failed with error code %d",
742 * Sets the MaxPStreams field and the Linear Stream Array field.
743 * Sets the dequeue pointer to the stream context array.
745 static void cdnsp_setup_streams_ep_input_ctx(struct cdnsp_device *pdev,
746 struct cdnsp_ep_ctx *ep_ctx,
747 struct cdnsp_stream_info *stream_info)
749 u32 max_primary_streams;
751 /* MaxPStreams is the number of stream context array entries, not the
752 * number we're actually using. Must be in 2^(MaxPstreams + 1) format.
753 * fls(0) = 0, fls(0x1) = 1, fls(0x10) = 2, fls(0x100) = 3, etc.
755 max_primary_streams = fls(stream_info->num_stream_ctxs) - 2;
756 ep_ctx->ep_info &= cpu_to_le32(~EP_MAXPSTREAMS_MASK);
757 ep_ctx->ep_info |= cpu_to_le32(EP_MAXPSTREAMS(max_primary_streams)
759 ep_ctx->deq = cpu_to_le64(stream_info->ctx_array_dma);
763 * The drivers use this function to prepare a bulk endpoints to use streams.
765 * Don't allow the call to succeed if endpoint only supports one stream
766 * (which means it doesn't support streams at all).
768 int cdnsp_alloc_streams(struct cdnsp_device *pdev, struct cdnsp_ep *pep)
770 unsigned int num_streams = usb_ss_max_streams(pep->endpoint.comp_desc);
771 unsigned int num_stream_ctxs;
774 if (num_streams == 0)
777 if (num_streams > STREAM_NUM_STREAMS)
781 * Add two to the number of streams requested to account for
782 * stream 0 that is reserved for controller usage and one additional
783 * for TASK SET FULL response.
787 /* The stream context array size must be a power of two */
788 num_stream_ctxs = roundup_pow_of_two(num_streams);
790 trace_cdnsp_stream_number(pep, num_stream_ctxs, num_streams);
792 ret = cdnsp_alloc_stream_info(pdev, pep, num_stream_ctxs, num_streams);
796 cdnsp_setup_streams_ep_input_ctx(pdev, pep->in_ctx, &pep->stream_info);
798 pep->ep_state |= EP_HAS_STREAMS;
799 pep->stream_info.td_count = 0;
800 pep->stream_info.first_prime_det = 0;
802 /* Subtract 1 for stream 0, which drivers can't use. */
803 return num_streams - 1;
806 int cdnsp_disable_slot(struct cdnsp_device *pdev)
810 cdnsp_queue_slot_control(pdev, TRB_DISABLE_SLOT);
811 cdnsp_ring_cmd_db(pdev);
812 ret = cdnsp_wait_for_cmd_compl(pdev);
815 pdev->active_port = NULL;
817 trace_cdnsp_handle_cmd_disable_slot(cdnsp_get_slot_ctx(&pdev->out_ctx));
819 memset(pdev->in_ctx.bytes, 0, CDNSP_CTX_SIZE);
820 memset(pdev->out_ctx.bytes, 0, CDNSP_CTX_SIZE);
825 int cdnsp_enable_slot(struct cdnsp_device *pdev)
827 struct cdnsp_slot_ctx *slot_ctx;
831 /* If device is not setup, there is no point in resetting it */
832 slot_ctx = cdnsp_get_slot_ctx(&pdev->out_ctx);
833 slot_state = GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state));
835 if (slot_state != SLOT_STATE_DISABLED)
838 cdnsp_queue_slot_control(pdev, TRB_ENABLE_SLOT);
839 cdnsp_ring_cmd_db(pdev);
840 ret = cdnsp_wait_for_cmd_compl(pdev);
847 trace_cdnsp_handle_cmd_enable_slot(cdnsp_get_slot_ctx(&pdev->out_ctx));
853 * Issue an Address Device command with BSR=0 if setup is SETUP_CONTEXT_ONLY
854 * or with BSR = 1 if set_address is SETUP_CONTEXT_ADDRESS.
856 int cdnsp_setup_device(struct cdnsp_device *pdev, enum cdnsp_setup_dev setup)
858 struct cdnsp_input_control_ctx *ctrl_ctx;
859 struct cdnsp_slot_ctx *slot_ctx;
863 if (!pdev->slot_id) {
864 trace_cdnsp_slot_id("incorrect");
868 if (!pdev->active_port->port_num)
871 slot_ctx = cdnsp_get_slot_ctx(&pdev->out_ctx);
872 dev_state = GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state));
874 if (setup == SETUP_CONTEXT_ONLY && dev_state == SLOT_STATE_DEFAULT) {
875 trace_cdnsp_slot_already_in_default(slot_ctx);
879 slot_ctx = cdnsp_get_slot_ctx(&pdev->in_ctx);
880 ctrl_ctx = cdnsp_get_input_control_ctx(&pdev->in_ctx);
882 if (!slot_ctx->dev_info || dev_state == SLOT_STATE_DEFAULT) {
883 ret = cdnsp_setup_addressable_priv_dev(pdev);
888 cdnsp_copy_ep0_dequeue_into_input_ctx(pdev);
890 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
891 ctrl_ctx->drop_flags = 0;
893 trace_cdnsp_setup_device_slot(slot_ctx);
895 cdnsp_queue_address_device(pdev, pdev->in_ctx.dma, setup);
896 cdnsp_ring_cmd_db(pdev);
897 ret = cdnsp_wait_for_cmd_compl(pdev);
899 trace_cdnsp_handle_cmd_addr_dev(cdnsp_get_slot_ctx(&pdev->out_ctx));
901 /* Zero the input context control for later use. */
902 ctrl_ctx->add_flags = 0;
903 ctrl_ctx->drop_flags = 0;
908 void cdnsp_set_usb2_hardware_lpm(struct cdnsp_device *pdev,
909 struct usb_request *req,
912 if (pdev->active_port != &pdev->usb2_port || !pdev->gadget.lpm_capable)
915 trace_cdnsp_lpm(enable);
918 writel(PORT_BESL(CDNSP_DEFAULT_BESL) | PORT_L1S_NYET | PORT_HLE,
919 &pdev->active_port->regs->portpmsc);
921 writel(PORT_L1S_NYET, &pdev->active_port->regs->portpmsc);
924 static int cdnsp_get_frame(struct cdnsp_device *pdev)
926 return readl(&pdev->run_regs->microframe_index) >> 3;
929 static int cdnsp_gadget_ep_enable(struct usb_ep *ep,
930 const struct usb_endpoint_descriptor *desc)
932 struct cdnsp_input_control_ctx *ctrl_ctx;
933 struct cdnsp_device *pdev;
934 struct cdnsp_ep *pep;
939 if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT ||
940 !desc->wMaxPacketSize)
943 pep = to_cdnsp_ep(ep);
946 if (dev_WARN_ONCE(pdev->dev, pep->ep_state & EP_ENABLED,
947 "%s is already enabled\n", pep->name))
950 spin_lock_irqsave(&pdev->lock, flags);
952 added_ctxs = cdnsp_get_endpoint_flag(desc);
953 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
954 dev_err(pdev->dev, "ERROR: Bad endpoint number\n");
959 pep->interval = desc->bInterval ? BIT(desc->bInterval - 1) : 0;
961 if (pdev->gadget.speed == USB_SPEED_FULL) {
962 if (usb_endpoint_type(desc) == USB_ENDPOINT_XFER_INT)
963 pep->interval = desc->bInterval << 3;
964 if (usb_endpoint_type(desc) == USB_ENDPOINT_XFER_ISOC)
965 pep->interval = BIT(desc->bInterval - 1) << 3;
968 if (usb_endpoint_type(desc) == USB_ENDPOINT_XFER_ISOC) {
969 if (pep->interval > BIT(12)) {
970 dev_err(pdev->dev, "bInterval %d not supported\n",
975 cdnsp_set_chicken_bits_2(pdev, CHICKEN_XDMA_2_TP_CACHE_DIS);
978 ret = cdnsp_endpoint_init(pdev, pep, GFP_ATOMIC);
982 ctrl_ctx = cdnsp_get_input_control_ctx(&pdev->in_ctx);
983 ctrl_ctx->add_flags = cpu_to_le32(added_ctxs);
984 ctrl_ctx->drop_flags = 0;
986 ret = cdnsp_update_eps_configuration(pdev, pep);
988 cdnsp_free_endpoint_rings(pdev, pep);
992 pep->ep_state |= EP_ENABLED;
993 pep->ep_state &= ~EP_STOPPED;
996 trace_cdnsp_ep_enable_end(pep, 0);
997 spin_unlock_irqrestore(&pdev->lock, flags);
1002 static int cdnsp_gadget_ep_disable(struct usb_ep *ep)
1004 struct cdnsp_input_control_ctx *ctrl_ctx;
1005 struct cdnsp_request *preq;
1006 struct cdnsp_device *pdev;
1007 struct cdnsp_ep *pep;
1008 unsigned long flags;
1015 pep = to_cdnsp_ep(ep);
1018 spin_lock_irqsave(&pdev->lock, flags);
1020 if (!(pep->ep_state & EP_ENABLED)) {
1021 dev_err(pdev->dev, "%s is already disabled\n", pep->name);
1026 cdnsp_cmd_stop_ep(pdev, pep);
1027 pep->ep_state |= EP_DIS_IN_RROGRESS;
1028 cdnsp_cmd_flush_ep(pdev, pep);
1030 /* Remove all queued USB requests. */
1031 while (!list_empty(&pep->pending_list)) {
1032 preq = next_request(&pep->pending_list);
1033 cdnsp_ep_dequeue(pep, preq);
1036 cdnsp_invalidate_ep_events(pdev, pep);
1038 pep->ep_state &= ~EP_DIS_IN_RROGRESS;
1039 drop_flag = cdnsp_get_endpoint_flag(pep->endpoint.desc);
1040 ctrl_ctx = cdnsp_get_input_control_ctx(&pdev->in_ctx);
1041 ctrl_ctx->drop_flags = cpu_to_le32(drop_flag);
1042 ctrl_ctx->add_flags = 0;
1044 cdnsp_endpoint_zero(pdev, pep);
1046 ret = cdnsp_update_eps_configuration(pdev, pep);
1047 cdnsp_free_endpoint_rings(pdev, pep);
1049 pep->ep_state &= ~EP_ENABLED;
1050 pep->ep_state |= EP_STOPPED;
1053 trace_cdnsp_ep_disable_end(pep, 0);
1054 spin_unlock_irqrestore(&pdev->lock, flags);
1059 static struct usb_request *cdnsp_gadget_ep_alloc_request(struct usb_ep *ep,
1062 struct cdnsp_ep *pep = to_cdnsp_ep(ep);
1063 struct cdnsp_request *preq;
1065 preq = kzalloc(sizeof(*preq), gfp_flags);
1069 preq->epnum = pep->number;
1072 trace_cdnsp_alloc_request(preq);
1074 return &preq->request;
1077 static void cdnsp_gadget_ep_free_request(struct usb_ep *ep,
1078 struct usb_request *request)
1080 struct cdnsp_request *preq = to_cdnsp_request(request);
1082 trace_cdnsp_free_request(preq);
1086 static int cdnsp_gadget_ep_queue(struct usb_ep *ep,
1087 struct usb_request *request,
1090 struct cdnsp_request *preq;
1091 struct cdnsp_device *pdev;
1092 struct cdnsp_ep *pep;
1093 unsigned long flags;
1096 if (!request || !ep)
1099 pep = to_cdnsp_ep(ep);
1102 if (!(pep->ep_state & EP_ENABLED)) {
1103 dev_err(pdev->dev, "%s: can't queue to disabled endpoint\n",
1108 preq = to_cdnsp_request(request);
1109 spin_lock_irqsave(&pdev->lock, flags);
1110 ret = cdnsp_ep_enqueue(pep, preq);
1111 spin_unlock_irqrestore(&pdev->lock, flags);
1116 static int cdnsp_gadget_ep_dequeue(struct usb_ep *ep,
1117 struct usb_request *request)
1119 struct cdnsp_ep *pep = to_cdnsp_ep(ep);
1120 struct cdnsp_device *pdev = pep->pdev;
1121 unsigned long flags;
1124 if (!pep->endpoint.desc) {
1126 "%s: can't dequeue to disabled endpoint\n",
1131 spin_lock_irqsave(&pdev->lock, flags);
1132 ret = cdnsp_ep_dequeue(pep, to_cdnsp_request(request));
1133 spin_unlock_irqrestore(&pdev->lock, flags);
1138 static int cdnsp_gadget_ep_set_halt(struct usb_ep *ep, int value)
1140 struct cdnsp_ep *pep = to_cdnsp_ep(ep);
1141 struct cdnsp_device *pdev = pep->pdev;
1142 struct cdnsp_request *preq;
1143 unsigned long flags = 0;
1146 spin_lock_irqsave(&pdev->lock, flags);
1148 preq = next_request(&pep->pending_list);
1151 trace_cdnsp_ep_busy_try_halt_again(pep, 0);
1157 ret = cdnsp_halt_endpoint(pdev, pep, value);
1160 spin_unlock_irqrestore(&pdev->lock, flags);
1164 static int cdnsp_gadget_ep_set_wedge(struct usb_ep *ep)
1166 struct cdnsp_ep *pep = to_cdnsp_ep(ep);
1167 struct cdnsp_device *pdev = pep->pdev;
1168 unsigned long flags = 0;
1171 spin_lock_irqsave(&pdev->lock, flags);
1172 pep->ep_state |= EP_WEDGE;
1173 ret = cdnsp_halt_endpoint(pdev, pep, 1);
1174 spin_unlock_irqrestore(&pdev->lock, flags);
1179 static const struct usb_ep_ops cdnsp_gadget_ep0_ops = {
1180 .enable = cdnsp_gadget_ep_enable,
1181 .disable = cdnsp_gadget_ep_disable,
1182 .alloc_request = cdnsp_gadget_ep_alloc_request,
1183 .free_request = cdnsp_gadget_ep_free_request,
1184 .queue = cdnsp_gadget_ep_queue,
1185 .dequeue = cdnsp_gadget_ep_dequeue,
1186 .set_halt = cdnsp_gadget_ep_set_halt,
1187 .set_wedge = cdnsp_gadget_ep_set_wedge,
1190 static const struct usb_ep_ops cdnsp_gadget_ep_ops = {
1191 .enable = cdnsp_gadget_ep_enable,
1192 .disable = cdnsp_gadget_ep_disable,
1193 .alloc_request = cdnsp_gadget_ep_alloc_request,
1194 .free_request = cdnsp_gadget_ep_free_request,
1195 .queue = cdnsp_gadget_ep_queue,
1196 .dequeue = cdnsp_gadget_ep_dequeue,
1197 .set_halt = cdnsp_gadget_ep_set_halt,
1198 .set_wedge = cdnsp_gadget_ep_set_wedge,
1201 void cdnsp_gadget_giveback(struct cdnsp_ep *pep,
1202 struct cdnsp_request *preq,
1205 struct cdnsp_device *pdev = pep->pdev;
1207 list_del(&preq->list);
1209 if (preq->request.status == -EINPROGRESS)
1210 preq->request.status = status;
1212 usb_gadget_unmap_request_by_dev(pdev->dev, &preq->request,
1215 trace_cdnsp_request_giveback(preq);
1217 if (preq != &pdev->ep0_preq) {
1218 spin_unlock(&pdev->lock);
1219 usb_gadget_giveback_request(&pep->endpoint, &preq->request);
1220 spin_lock(&pdev->lock);
1224 static struct usb_endpoint_descriptor cdnsp_gadget_ep0_desc = {
1225 .bLength = USB_DT_ENDPOINT_SIZE,
1226 .bDescriptorType = USB_DT_ENDPOINT,
1227 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
1230 static int cdnsp_run(struct cdnsp_device *pdev,
1231 enum usb_device_speed speed)
1238 temp_64 = cdnsp_read_64(&pdev->ir_set->erst_dequeue);
1239 temp_64 &= ~ERST_PTR_MASK;
1240 temp = readl(&pdev->ir_set->irq_control);
1241 temp &= ~IMOD_INTERVAL_MASK;
1242 temp |= ((IMOD_DEFAULT_INTERVAL / 250) & IMOD_INTERVAL_MASK);
1243 writel(temp, &pdev->ir_set->irq_control);
1245 temp = readl(&pdev->port3x_regs->mode_addr);
1248 case USB_SPEED_SUPER_PLUS:
1249 temp |= CFG_3XPORT_SSP_SUPPORT;
1251 case USB_SPEED_SUPER:
1252 temp &= ~CFG_3XPORT_SSP_SUPPORT;
1254 case USB_SPEED_HIGH:
1256 case USB_SPEED_FULL:
1257 fs_speed = PORT_REG6_FORCE_FS;
1260 dev_err(pdev->dev, "invalid maximum_speed parameter %d\n",
1263 case USB_SPEED_UNKNOWN:
1264 /* Default to superspeed. */
1265 speed = USB_SPEED_SUPER;
1269 if (speed >= USB_SPEED_SUPER) {
1270 writel(temp, &pdev->port3x_regs->mode_addr);
1271 cdnsp_set_link_state(pdev, &pdev->usb3_port.regs->portsc,
1274 cdnsp_disable_port(pdev, &pdev->usb3_port.regs->portsc);
1277 cdnsp_set_link_state(pdev, &pdev->usb2_port.regs->portsc,
1280 cdnsp_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
1282 writel(PORT_REG6_L1_L0_HW_EN | fs_speed, &pdev->port20_regs->port_reg6);
1284 ret = cdnsp_start(pdev);
1290 temp = readl(&pdev->op_regs->command);
1292 writel(temp, &pdev->op_regs->command);
1294 temp = readl(&pdev->ir_set->irq_pending);
1295 writel(IMAN_IE_SET(temp), &pdev->ir_set->irq_pending);
1297 trace_cdnsp_init("Controller ready to work");
1304 static int cdnsp_gadget_udc_start(struct usb_gadget *g,
1305 struct usb_gadget_driver *driver)
1307 enum usb_device_speed max_speed = driver->max_speed;
1308 struct cdnsp_device *pdev = gadget_to_cdnsp(g);
1309 unsigned long flags;
1312 spin_lock_irqsave(&pdev->lock, flags);
1313 pdev->gadget_driver = driver;
1315 /* limit speed if necessary */
1316 max_speed = min(driver->max_speed, g->max_speed);
1317 ret = cdnsp_run(pdev, max_speed);
1319 spin_unlock_irqrestore(&pdev->lock, flags);
1325 * Update Event Ring Dequeue Pointer:
1326 * - When all events have finished
1327 * - To avoid "Event Ring Full Error" condition
1329 void cdnsp_update_erst_dequeue(struct cdnsp_device *pdev,
1330 union cdnsp_trb *event_ring_deq,
1336 temp_64 = cdnsp_read_64(&pdev->ir_set->erst_dequeue);
1338 /* If necessary, update the HW's version of the event ring deq ptr. */
1339 if (event_ring_deq != pdev->event_ring->dequeue) {
1340 deq = cdnsp_trb_virt_to_dma(pdev->event_ring->deq_seg,
1341 pdev->event_ring->dequeue);
1342 temp_64 &= ERST_PTR_MASK;
1343 temp_64 |= ((u64)deq & (u64)~ERST_PTR_MASK);
1346 /* Clear the event handler busy flag (RW1C). */
1348 temp_64 |= ERST_EHB;
1350 temp_64 &= ~ERST_EHB;
1352 cdnsp_write_64(temp_64, &pdev->ir_set->erst_dequeue);
1355 static void cdnsp_clear_cmd_ring(struct cdnsp_device *pdev)
1357 struct cdnsp_segment *seg;
1361 cdnsp_initialize_ring_info(pdev->cmd_ring);
1363 seg = pdev->cmd_ring->first_seg;
1364 for (i = 0; i < pdev->cmd_ring->num_segs; i++) {
1365 memset(seg->trbs, 0,
1366 sizeof(union cdnsp_trb) * (TRBS_PER_SEGMENT - 1));
1370 /* Set the address in the Command Ring Control register. */
1371 val_64 = cdnsp_read_64(&pdev->op_regs->cmd_ring);
1372 val_64 = (val_64 & (u64)CMD_RING_RSVD_BITS) |
1373 (pdev->cmd_ring->first_seg->dma & (u64)~CMD_RING_RSVD_BITS) |
1374 pdev->cmd_ring->cycle_state;
1375 cdnsp_write_64(val_64, &pdev->op_regs->cmd_ring);
1378 static void cdnsp_consume_all_events(struct cdnsp_device *pdev)
1380 struct cdnsp_segment *event_deq_seg;
1381 union cdnsp_trb *event_ring_deq;
1382 union cdnsp_trb *event;
1385 event_ring_deq = pdev->event_ring->dequeue;
1386 event_deq_seg = pdev->event_ring->deq_seg;
1387 event = pdev->event_ring->dequeue;
1389 /* Update ring dequeue pointer. */
1391 cycle_bit = (le32_to_cpu(event->event_cmd.flags) & TRB_CYCLE);
1393 /* Does the controller or driver own the TRB? */
1394 if (cycle_bit != pdev->event_ring->cycle_state)
1397 cdnsp_inc_deq(pdev, pdev->event_ring);
1399 if (!cdnsp_last_trb_on_seg(event_deq_seg, event)) {
1404 if (cdnsp_last_trb_on_ring(pdev->event_ring, event_deq_seg,
1408 event_deq_seg = event_deq_seg->next;
1409 event = event_deq_seg->trbs;
1412 cdnsp_update_erst_dequeue(pdev, event_ring_deq, 1);
1415 static void cdnsp_stop(struct cdnsp_device *pdev)
1419 cdnsp_cmd_flush_ep(pdev, &pdev->eps[0]);
1421 /* Remove internally queued request for ep0. */
1422 if (!list_empty(&pdev->eps[0].pending_list)) {
1423 struct cdnsp_request *req;
1425 req = next_request(&pdev->eps[0].pending_list);
1426 if (req == &pdev->ep0_preq)
1427 cdnsp_ep_dequeue(&pdev->eps[0], req);
1430 cdnsp_disable_port(pdev, &pdev->usb2_port.regs->portsc);
1431 cdnsp_disable_port(pdev, &pdev->usb3_port.regs->portsc);
1432 cdnsp_disable_slot(pdev);
1435 temp = readl(&pdev->op_regs->status);
1436 writel((temp & ~0x1fff) | STS_EINT, &pdev->op_regs->status);
1437 temp = readl(&pdev->ir_set->irq_pending);
1438 writel(IMAN_IE_CLEAR(temp), &pdev->ir_set->irq_pending);
1440 cdnsp_clear_port_change_bit(pdev, &pdev->usb2_port.regs->portsc);
1441 cdnsp_clear_port_change_bit(pdev, &pdev->usb3_port.regs->portsc);
1443 /* Clear interrupt line */
1444 temp = readl(&pdev->ir_set->irq_pending);
1446 writel(temp, &pdev->ir_set->irq_pending);
1448 cdnsp_consume_all_events(pdev);
1449 cdnsp_clear_cmd_ring(pdev);
1451 trace_cdnsp_exit("Controller stopped.");
1456 * This function is called by the gadget core when the driver is removed.
1457 * Disable slot, disable IRQs, and quiesce the controller.
1459 static int cdnsp_gadget_udc_stop(struct usb_gadget *g)
1461 struct cdnsp_device *pdev = gadget_to_cdnsp(g);
1462 unsigned long flags;
1464 spin_lock_irqsave(&pdev->lock, flags);
1466 pdev->gadget_driver = NULL;
1467 spin_unlock_irqrestore(&pdev->lock, flags);
1472 static int cdnsp_gadget_get_frame(struct usb_gadget *g)
1474 struct cdnsp_device *pdev = gadget_to_cdnsp(g);
1476 return cdnsp_get_frame(pdev);
1479 static void __cdnsp_gadget_wakeup(struct cdnsp_device *pdev)
1481 struct cdnsp_port_regs __iomem *port_regs;
1484 port_regs = pdev->active_port->regs;
1485 portsc = readl(&port_regs->portsc) & PORT_PLS_MASK;
1487 /* Remote wakeup feature is not enabled by host. */
1488 if (pdev->gadget.speed < USB_SPEED_SUPER && portsc == XDEV_U2) {
1489 portpm = readl(&port_regs->portpmsc);
1491 if (!(portpm & PORT_RWE))
1495 if (portsc == XDEV_U3 && !pdev->may_wakeup)
1498 cdnsp_set_link_state(pdev, &port_regs->portsc, XDEV_U0);
1500 pdev->cdnsp_state |= CDNSP_WAKEUP_PENDING;
1503 static int cdnsp_gadget_wakeup(struct usb_gadget *g)
1505 struct cdnsp_device *pdev = gadget_to_cdnsp(g);
1506 unsigned long flags;
1508 spin_lock_irqsave(&pdev->lock, flags);
1509 __cdnsp_gadget_wakeup(pdev);
1510 spin_unlock_irqrestore(&pdev->lock, flags);
1515 static int cdnsp_gadget_set_selfpowered(struct usb_gadget *g,
1518 struct cdnsp_device *pdev = gadget_to_cdnsp(g);
1519 unsigned long flags;
1521 spin_lock_irqsave(&pdev->lock, flags);
1522 g->is_selfpowered = !!is_selfpowered;
1523 spin_unlock_irqrestore(&pdev->lock, flags);
1528 static int cdnsp_gadget_pullup(struct usb_gadget *gadget, int is_on)
1530 struct cdnsp_device *pdev = gadget_to_cdnsp(gadget);
1531 struct cdns *cdns = dev_get_drvdata(pdev->dev);
1533 trace_cdnsp_pullup(is_on);
1536 cdnsp_reset_device(pdev);
1537 cdns_clear_vbus(cdns);
1539 cdns_set_vbus(cdns);
1544 static const struct usb_gadget_ops cdnsp_gadget_ops = {
1545 .get_frame = cdnsp_gadget_get_frame,
1546 .wakeup = cdnsp_gadget_wakeup,
1547 .set_selfpowered = cdnsp_gadget_set_selfpowered,
1548 .pullup = cdnsp_gadget_pullup,
1549 .udc_start = cdnsp_gadget_udc_start,
1550 .udc_stop = cdnsp_gadget_udc_stop,
1553 static void cdnsp_get_ep_buffering(struct cdnsp_device *pdev,
1554 struct cdnsp_ep *pep)
1556 void __iomem *reg = &pdev->cap_regs->hc_capbase;
1559 reg += cdnsp_find_next_ext_cap(reg, 0, XBUF_CAP_ID);
1561 if (!pep->direction) {
1562 pep->buffering = readl(reg + XBUF_RX_TAG_MASK_0_OFFSET);
1563 pep->buffering_period = readl(reg + XBUF_RX_TAG_MASK_1_OFFSET);
1564 pep->buffering = (pep->buffering + 1) / 2;
1565 pep->buffering_period = (pep->buffering_period + 1) / 2;
1569 endpoints = HCS_ENDPOINTS(pdev->hcs_params1) / 2;
1571 /* Set to XBUF_TX_TAG_MASK_0 register. */
1572 reg += XBUF_TX_CMD_OFFSET + (endpoints * 2 + 2) * sizeof(u32);
1573 /* Set reg to XBUF_TX_TAG_MASK_N related with this endpoint. */
1574 reg += pep->number * sizeof(u32) * 2;
1576 pep->buffering = (readl(reg) + 1) / 2;
1577 pep->buffering_period = pep->buffering;
1580 static int cdnsp_gadget_init_endpoints(struct cdnsp_device *pdev)
1582 int max_streams = HCC_MAX_PSA(pdev->hcc_params);
1583 struct cdnsp_ep *pep;
1586 INIT_LIST_HEAD(&pdev->gadget.ep_list);
1588 if (max_streams < STREAM_LOG_STREAMS) {
1589 dev_err(pdev->dev, "Stream size %d not supported\n",
1594 max_streams = STREAM_LOG_STREAMS;
1596 for (i = 0; i < CDNSP_ENDPOINTS_NUM; i++) {
1597 bool direction = !(i & 1); /* Start from OUT endpoint. */
1598 u8 epnum = ((i + 1) >> 1);
1600 if (!CDNSP_IF_EP_EXIST(pdev, epnum, direction))
1603 pep = &pdev->eps[i];
1605 pep->number = epnum;
1606 pep->direction = direction; /* 0 for OUT, 1 for IN. */
1609 * Ep0 is bidirectional, so ep0in and ep0out are represented by
1613 snprintf(pep->name, sizeof(pep->name), "ep%d%s",
1617 usb_ep_set_maxpacket_limit(&pep->endpoint, 512);
1618 pep->endpoint.maxburst = 1;
1619 pep->endpoint.ops = &cdnsp_gadget_ep0_ops;
1620 pep->endpoint.desc = &cdnsp_gadget_ep0_desc;
1621 pep->endpoint.comp_desc = NULL;
1622 pep->endpoint.caps.type_control = true;
1623 pep->endpoint.caps.dir_in = true;
1624 pep->endpoint.caps.dir_out = true;
1626 pdev->ep0_preq.epnum = pep->number;
1627 pdev->ep0_preq.pep = pep;
1628 pdev->gadget.ep0 = &pep->endpoint;
1630 snprintf(pep->name, sizeof(pep->name), "ep%d%s",
1631 epnum, (pep->direction) ? "in" : "out");
1633 pep->idx = (epnum * 2 + (direction ? 1 : 0)) - 1;
1634 usb_ep_set_maxpacket_limit(&pep->endpoint, 1024);
1636 pep->endpoint.max_streams = max_streams;
1637 pep->endpoint.ops = &cdnsp_gadget_ep_ops;
1638 list_add_tail(&pep->endpoint.ep_list,
1639 &pdev->gadget.ep_list);
1641 pep->endpoint.caps.type_iso = true;
1642 pep->endpoint.caps.type_bulk = true;
1643 pep->endpoint.caps.type_int = true;
1645 pep->endpoint.caps.dir_in = direction;
1646 pep->endpoint.caps.dir_out = !direction;
1649 pep->endpoint.name = pep->name;
1650 pep->in_ctx = cdnsp_get_ep_ctx(&pdev->in_ctx, pep->idx);
1651 pep->out_ctx = cdnsp_get_ep_ctx(&pdev->out_ctx, pep->idx);
1652 cdnsp_get_ep_buffering(pdev, pep);
1654 dev_dbg(pdev->dev, "Init %s, MPS: %04x SupType: "
1655 "CTRL: %s, INT: %s, BULK: %s, ISOC %s, "
1656 "SupDir IN: %s, OUT: %s\n",
1658 (pep->endpoint.caps.type_control) ? "yes" : "no",
1659 (pep->endpoint.caps.type_int) ? "yes" : "no",
1660 (pep->endpoint.caps.type_bulk) ? "yes" : "no",
1661 (pep->endpoint.caps.type_iso) ? "yes" : "no",
1662 (pep->endpoint.caps.dir_in) ? "yes" : "no",
1663 (pep->endpoint.caps.dir_out) ? "yes" : "no");
1665 INIT_LIST_HEAD(&pep->pending_list);
1671 static void cdnsp_gadget_free_endpoints(struct cdnsp_device *pdev)
1673 struct cdnsp_ep *pep;
1676 for (i = 0; i < CDNSP_ENDPOINTS_NUM; i++) {
1677 pep = &pdev->eps[i];
1678 if (pep->number != 0 && pep->out_ctx)
1679 list_del(&pep->endpoint.ep_list);
1683 void cdnsp_disconnect_gadget(struct cdnsp_device *pdev)
1685 pdev->cdnsp_state |= CDNSP_STATE_DISCONNECT_PENDING;
1687 if (pdev->gadget_driver && pdev->gadget_driver->disconnect) {
1688 spin_unlock(&pdev->lock);
1689 pdev->gadget_driver->disconnect(&pdev->gadget);
1690 spin_lock(&pdev->lock);
1693 pdev->gadget.speed = USB_SPEED_UNKNOWN;
1694 usb_gadget_set_state(&pdev->gadget, USB_STATE_NOTATTACHED);
1696 pdev->cdnsp_state &= ~CDNSP_STATE_DISCONNECT_PENDING;
1699 void cdnsp_suspend_gadget(struct cdnsp_device *pdev)
1701 if (pdev->gadget_driver && pdev->gadget_driver->suspend) {
1702 spin_unlock(&pdev->lock);
1703 pdev->gadget_driver->suspend(&pdev->gadget);
1704 spin_lock(&pdev->lock);
1708 void cdnsp_resume_gadget(struct cdnsp_device *pdev)
1710 if (pdev->gadget_driver && pdev->gadget_driver->resume) {
1711 spin_unlock(&pdev->lock);
1712 pdev->gadget_driver->resume(&pdev->gadget);
1713 spin_lock(&pdev->lock);
1717 void cdnsp_irq_reset(struct cdnsp_device *pdev)
1719 struct cdnsp_port_regs __iomem *port_regs;
1721 cdnsp_reset_device(pdev);
1723 port_regs = pdev->active_port->regs;
1724 pdev->gadget.speed = cdnsp_port_speed(readl(port_regs));
1726 spin_unlock(&pdev->lock);
1727 usb_gadget_udc_reset(&pdev->gadget, pdev->gadget_driver);
1728 spin_lock(&pdev->lock);
1730 switch (pdev->gadget.speed) {
1731 case USB_SPEED_SUPER_PLUS:
1732 case USB_SPEED_SUPER:
1733 cdnsp_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
1734 pdev->gadget.ep0->maxpacket = 512;
1736 case USB_SPEED_HIGH:
1737 case USB_SPEED_FULL:
1738 cdnsp_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
1739 pdev->gadget.ep0->maxpacket = 64;
1742 /* Low speed is not supported. */
1743 dev_err(pdev->dev, "Unknown device speed\n");
1747 cdnsp_clear_chicken_bits_2(pdev, CHICKEN_XDMA_2_TP_CACHE_DIS);
1748 cdnsp_setup_device(pdev, SETUP_CONTEXT_ONLY);
1749 usb_gadget_set_state(&pdev->gadget, USB_STATE_DEFAULT);
1752 static void cdnsp_get_rev_cap(struct cdnsp_device *pdev)
1754 void __iomem *reg = &pdev->cap_regs->hc_capbase;
1756 reg += cdnsp_find_next_ext_cap(reg, 0, RTL_REV_CAP);
1757 pdev->rev_cap = reg;
1759 dev_info(pdev->dev, "Rev: %08x/%08x, eps: %08x, buff: %08x/%08x\n",
1760 readl(&pdev->rev_cap->ctrl_revision),
1761 readl(&pdev->rev_cap->rtl_revision),
1762 readl(&pdev->rev_cap->ep_supported),
1763 readl(&pdev->rev_cap->rx_buff_size),
1764 readl(&pdev->rev_cap->tx_buff_size));
1767 static int cdnsp_gen_setup(struct cdnsp_device *pdev)
1772 pdev->cap_regs = pdev->regs;
1773 pdev->op_regs = pdev->regs +
1774 HC_LENGTH(readl(&pdev->cap_regs->hc_capbase));
1775 pdev->run_regs = pdev->regs +
1776 (readl(&pdev->cap_regs->run_regs_off) & RTSOFF_MASK);
1778 /* Cache read-only capability registers */
1779 pdev->hcs_params1 = readl(&pdev->cap_regs->hcs_params1);
1780 pdev->hcc_params = readl(&pdev->cap_regs->hc_capbase);
1781 pdev->hci_version = HC_VERSION(pdev->hcc_params);
1782 pdev->hcc_params = readl(&pdev->cap_regs->hcc_params);
1784 cdnsp_get_rev_cap(pdev);
1786 /* Make sure the Device Controller is halted. */
1787 ret = cdnsp_halt(pdev);
1791 /* Reset the internal controller memory state and registers. */
1792 ret = cdnsp_reset(pdev);
1797 * Set dma_mask and coherent_dma_mask to 64-bits,
1798 * if controller supports 64-bit addressing.
1800 if (HCC_64BIT_ADDR(pdev->hcc_params) &&
1801 !dma_set_mask(pdev->dev, DMA_BIT_MASK(64))) {
1802 dev_dbg(pdev->dev, "Enabling 64-bit DMA addresses.\n");
1803 dma_set_coherent_mask(pdev->dev, DMA_BIT_MASK(64));
1806 * This is to avoid error in cases where a 32-bit USB
1807 * controller is used on a 64-bit capable system.
1809 ret = dma_set_mask(pdev->dev, DMA_BIT_MASK(32));
1813 dev_dbg(pdev->dev, "Enabling 32-bit DMA addresses.\n");
1814 dma_set_coherent_mask(pdev->dev, DMA_BIT_MASK(32));
1817 spin_lock_init(&pdev->lock);
1819 ret = cdnsp_mem_init(pdev);
1824 * Software workaround for U1: after transition
1825 * to U1 the controller starts gating clock, and in some cases,
1826 * it causes that controller stack.
1828 reg = readl(&pdev->port3x_regs->mode_2);
1829 reg &= ~CFG_3XPORT_U1_PIPE_CLK_GATE_EN;
1830 writel(reg, &pdev->port3x_regs->mode_2);
1835 static int __cdnsp_gadget_init(struct cdns *cdns)
1837 struct cdnsp_device *pdev;
1841 cdns_drd_gadget_on(cdns);
1843 pdev = kzalloc(sizeof(*pdev), GFP_KERNEL);
1847 pm_runtime_get_sync(cdns->dev);
1849 cdns->gadget_dev = pdev;
1850 pdev->dev = cdns->dev;
1851 pdev->regs = cdns->dev_regs;
1852 max_speed = usb_get_maximum_speed(cdns->dev);
1854 switch (max_speed) {
1855 case USB_SPEED_FULL:
1856 case USB_SPEED_HIGH:
1857 case USB_SPEED_SUPER:
1858 case USB_SPEED_SUPER_PLUS:
1861 dev_err(cdns->dev, "invalid speed parameter %d\n", max_speed);
1863 case USB_SPEED_UNKNOWN:
1864 /* Default to SSP */
1865 max_speed = USB_SPEED_SUPER_PLUS;
1869 pdev->gadget.ops = &cdnsp_gadget_ops;
1870 pdev->gadget.name = "cdnsp-gadget";
1871 pdev->gadget.speed = USB_SPEED_UNKNOWN;
1872 pdev->gadget.sg_supported = 1;
1873 pdev->gadget.max_speed = USB_SPEED_SUPER_PLUS;
1874 pdev->gadget.lpm_capable = 1;
1876 pdev->setup_buf = kzalloc(CDNSP_EP0_SETUP_SIZE, GFP_KERNEL);
1877 if (!pdev->setup_buf)
1881 * Controller supports not aligned buffer but it should improve
1884 pdev->gadget.quirk_ep_out_aligned_size = true;
1886 ret = cdnsp_gen_setup(pdev);
1888 dev_err(pdev->dev, "Generic initialization failed %d\n", ret);
1892 ret = cdnsp_gadget_init_endpoints(pdev);
1894 dev_err(pdev->dev, "failed to initialize endpoints\n");
1898 ret = usb_add_gadget_udc(pdev->dev, &pdev->gadget);
1900 dev_err(pdev->dev, "failed to register udc\n");
1901 goto free_endpoints;
1904 ret = devm_request_threaded_irq(pdev->dev, cdns->dev_irq,
1906 cdnsp_thread_irq_handler, IRQF_SHARED,
1907 dev_name(pdev->dev), pdev);
1914 usb_del_gadget_udc(&pdev->gadget);
1916 cdnsp_gadget_free_endpoints(pdev);
1920 cdnsp_mem_cleanup(pdev);
1922 kfree(pdev->setup_buf);
1929 static void cdnsp_gadget_exit(struct cdns *cdns)
1931 struct cdnsp_device *pdev = cdns->gadget_dev;
1933 devm_free_irq(pdev->dev, cdns->dev_irq, pdev);
1934 pm_runtime_mark_last_busy(cdns->dev);
1935 pm_runtime_put_autosuspend(cdns->dev);
1936 usb_del_gadget_udc(&pdev->gadget);
1937 cdnsp_gadget_free_endpoints(pdev);
1938 cdnsp_mem_cleanup(pdev);
1940 cdns->gadget_dev = NULL;
1941 cdns_drd_gadget_off(cdns);
1944 static int cdnsp_gadget_suspend(struct cdns *cdns, bool do_wakeup)
1946 struct cdnsp_device *pdev = cdns->gadget_dev;
1947 unsigned long flags;
1949 if (pdev->link_state == XDEV_U3)
1952 spin_lock_irqsave(&pdev->lock, flags);
1953 cdnsp_disconnect_gadget(pdev);
1955 spin_unlock_irqrestore(&pdev->lock, flags);
1960 static int cdnsp_gadget_resume(struct cdns *cdns, bool hibernated)
1962 struct cdnsp_device *pdev = cdns->gadget_dev;
1963 enum usb_device_speed max_speed;
1964 unsigned long flags;
1967 if (!pdev->gadget_driver)
1970 spin_lock_irqsave(&pdev->lock, flags);
1971 max_speed = pdev->gadget_driver->max_speed;
1973 /* Limit speed if necessary. */
1974 max_speed = min(max_speed, pdev->gadget.max_speed);
1976 ret = cdnsp_run(pdev, max_speed);
1978 if (pdev->link_state == XDEV_U3)
1979 __cdnsp_gadget_wakeup(pdev);
1981 spin_unlock_irqrestore(&pdev->lock, flags);
1987 * cdnsp_gadget_init - initialize device structure
1988 * @cdns: cdnsp instance
1990 * This function initializes the gadget.
1992 int cdnsp_gadget_init(struct cdns *cdns)
1994 struct cdns_role_driver *rdrv;
1996 rdrv = devm_kzalloc(cdns->dev, sizeof(*rdrv), GFP_KERNEL);
2000 rdrv->start = __cdnsp_gadget_init;
2001 rdrv->stop = cdnsp_gadget_exit;
2002 rdrv->suspend = cdnsp_gadget_suspend;
2003 rdrv->resume = cdnsp_gadget_resume;
2004 rdrv->state = CDNS_ROLE_STATE_INACTIVE;
2005 rdrv->name = "gadget";
2006 cdns->roles[USB_ROLE_DEVICE] = rdrv;