mirror of https://github.com/OpenIPC/firmware.git
361 lines
9.8 KiB
Diff
361 lines
9.8 KiB
Diff
--- linux-4.9.37/drivers/mmc/card/queue.c 2017-07-12 16:42:41.000000000 +0300
|
|
+++ linux-4.9.y/drivers/mmc/card/queue.c 2021-06-07 13:01:33.000000000 +0300
|
|
@@ -179,6 +179,122 @@
|
|
queue_flag_set_unlocked(QUEUE_FLAG_SECERASE, q);
|
|
}
|
|
|
|
+static struct request *mmc_peek_request(struct mmc_queue *mq)
|
|
+{
|
|
+ struct request_queue *q = mq->queue;
|
|
+ mq->cmdq_req_peeked = NULL;
|
|
+
|
|
+ spin_lock_irq(q->queue_lock);
|
|
+ if (!blk_queue_stopped(q))
|
|
+ mq->cmdq_req_peeked = blk_peek_request(q);
|
|
+ spin_unlock_irq(q->queue_lock);
|
|
+
|
|
+ return mq->cmdq_req_peeked;
|
|
+}
|
|
+
|
|
+static bool mmc_check_blk_queue_start_tag(struct request_queue *q,
|
|
+ struct request *req)
|
|
+{
|
|
+ int ret;
|
|
+
|
|
+ spin_lock_irq(q->queue_lock);
|
|
+ ret = blk_queue_start_tag(q, req);
|
|
+ spin_unlock_irq(q->queue_lock);
|
|
+
|
|
+ return !!ret;
|
|
+}
|
|
+
|
|
+static inline void mmc_cmdq_ready_wait(struct mmc_host *host,
|
|
+ struct mmc_queue *mq)
|
|
+{
|
|
+ struct mmc_cmdq_context_info *ctx = &host->cmdq_ctx;
|
|
+ struct request_queue *q = mq->queue;
|
|
+
|
|
+ /*
|
|
+ * Wait until all of the following conditions are true:
|
|
+ * 1. There is a request pending in the block layer queue
|
|
+ * to be processed.
|
|
+ * 2. If the peeked request is flush/discard then there shouldn't
|
|
+ * be any other direct command active.
|
|
+ * 3. cmdq state should be unhalted.
|
|
+ * 4. cmdq state shouldn't be in error state.
|
|
+ * 5. free tag available to process the new request.
|
|
+ */
|
|
+ wait_event(ctx->wait, kthread_should_stop()
|
|
+ || (mmc_peek_request(mq) &&
|
|
+ !((mq->cmdq_req_peeked->cmd_flags & (REQ_OP_FLUSH | REQ_OP_DISCARD))
|
|
+ && test_bit(CMDQ_STATE_DCMD_ACTIVE, &ctx->curr_state))
|
|
+ && !(!host->card->part_curr && !mmc_card_suspended(host->card)
|
|
+ && mmc_host_halt(host))
|
|
+ && !(!host->card->part_curr && mmc_host_cq_disable(host) &&
|
|
+ !mmc_card_suspended(host->card))
|
|
+ && !test_bit(CMDQ_STATE_ERR, &ctx->curr_state)
|
|
+ && !mmc_check_blk_queue_start_tag(q, mq->cmdq_req_peeked)));
|
|
+}
|
|
+
|
|
+static int mmc_cmdq_thread(void *d)
|
|
+{
|
|
+ struct mmc_queue *mq = d;
|
|
+ struct mmc_card *card = mq->card;
|
|
+ struct mmc_host *host = card->host;
|
|
+
|
|
+ current->flags |= PF_MEMALLOC;
|
|
+
|
|
+ while (1) {
|
|
+ int ret = 0;
|
|
+
|
|
+ mmc_cmdq_ready_wait(host, mq);
|
|
+ if (kthread_should_stop())
|
|
+ break;
|
|
+
|
|
+ ret = mq->cmdq_issue_fn(mq, mq->cmdq_req_peeked);
|
|
+ /*
|
|
+ * Don't requeue if issue_fn fails, just bug on.
|
|
+ * We don't expect failure here and there is no recovery other
|
|
+ * than fixing the actual issue if there is any.
|
|
+ * Also we end the request if there is a partition switch error,
|
|
+ * so we should not requeue the request here.
|
|
+ */
|
|
+ if (ret)
|
|
+ BUG_ON(1);
|
|
+ } /* loop */
|
|
+
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+static void mmc_cmdq_dispatch_req(struct request_queue *q)
|
|
+{
|
|
+ struct mmc_queue *mq = q->queuedata;
|
|
+
|
|
+ wake_up(&mq->card->host->cmdq_ctx.wait);
|
|
+}
|
|
+
|
|
+/**
|
|
+ * mmc_blk_cmdq_setup_queue
|
|
+ * @mq: mmc queue
|
|
+ * @card: card to attach to this queue
|
|
+ *
|
|
+ * Setup queue for CMDQ supporting MMC card
|
|
+ */
|
|
+void mmc_cmdq_setup_queue(struct mmc_queue *mq, struct mmc_card *card)
|
|
+{
|
|
+ u64 limit = BLK_BOUNCE_HIGH;
|
|
+ struct mmc_host *host = card->host;
|
|
+
|
|
+ if (mmc_dev(host)->dma_mask && *mmc_dev(host)->dma_mask)
|
|
+ limit = *mmc_dev(host)->dma_mask;
|
|
+
|
|
+ queue_flag_set_unlocked(QUEUE_FLAG_NONROT, mq->queue);
|
|
+ if (mmc_can_erase(card))
|
|
+ mmc_queue_setup_discard(mq->queue, card);
|
|
+
|
|
+ blk_queue_bounce_limit(mq->queue, limit);
|
|
+ blk_queue_max_hw_sectors(mq->queue, min(host->max_blk_count,
|
|
+ host->max_req_size / 512));
|
|
+ blk_queue_max_segment_size(mq->queue, host->max_seg_size);
|
|
+ blk_queue_max_segments(mq->queue, host->max_segs);
|
|
+}
|
|
+
|
|
/**
|
|
* mmc_init_queue - initialise a queue structure.
|
|
* @mq: mmc queue
|
|
@@ -189,7 +305,7 @@
|
|
* Initialise a MMC card request queue.
|
|
*/
|
|
int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
|
|
- spinlock_t *lock, const char *subname)
|
|
+ spinlock_t *lock, const char *subname, int area_type)
|
|
{
|
|
struct mmc_host *host = card->host;
|
|
u64 limit = BLK_BOUNCE_HIGH;
|
|
@@ -201,6 +317,37 @@
|
|
limit = (u64)dma_max_pfn(mmc_dev(host)) << PAGE_SHIFT;
|
|
|
|
mq->card = card;
|
|
+ if (card->ext_csd.cmdq_support &&
|
|
+ (area_type == MMC_BLK_DATA_AREA_MAIN)) {
|
|
+ mq->queue = blk_init_queue(mmc_cmdq_dispatch_req, lock);
|
|
+ if (!mq->queue)
|
|
+ return -ENOMEM;
|
|
+ mmc_cmdq_setup_queue(mq, card);
|
|
+ ret = mmc_cmdq_init(mq, card);
|
|
+ if (ret) {
|
|
+ pr_err("%s: %d: cmdq: unable to set-up\n",
|
|
+ mmc_hostname(card->host), ret);
|
|
+ blk_cleanup_queue(mq->queue);
|
|
+ } else {
|
|
+ sema_init(&mq->thread_sem, 1);
|
|
+ /* hook for pm qos cmdq init */
|
|
+ if (card->host->cmdq_ops->init)
|
|
+ card->host->cmdq_ops->init(card->host);
|
|
+ mq->queue->queuedata = mq;
|
|
+ mq->thread = kthread_run(mmc_cmdq_thread, mq,
|
|
+ "mmc-cmdqd/%d%s",
|
|
+ host->index,
|
|
+ subname ? subname : "");
|
|
+ if (IS_ERR(mq->thread)) {
|
|
+ pr_err("%s: %d: cmdq: failed to start mmc-cmdqd thread\n",
|
|
+ mmc_hostname(card->host), ret);
|
|
+ ret = PTR_ERR(mq->thread);
|
|
+ }
|
|
+
|
|
+ return ret;
|
|
+ }
|
|
+ }
|
|
+
|
|
mq->queue = blk_init_queue(mmc_request_fn, lock);
|
|
if (!mq->queue)
|
|
return -ENOMEM;
|
|
@@ -413,20 +560,76 @@
|
|
* complete any outstanding requests. This ensures that we
|
|
* won't suspend while a request is being processed.
|
|
*/
|
|
-void mmc_queue_suspend(struct mmc_queue *mq)
|
|
+int mmc_queue_suspend(struct mmc_queue *mq, int wait)
|
|
{
|
|
struct request_queue *q = mq->queue;
|
|
unsigned long flags;
|
|
+ int rc = 0;
|
|
+ struct mmc_card *card = mq->card;
|
|
+ struct request *req;
|
|
|
|
if (!(mq->flags & MMC_QUEUE_SUSPENDED)) {
|
|
mq->flags |= MMC_QUEUE_SUSPENDED;
|
|
|
|
- spin_lock_irqsave(q->queue_lock, flags);
|
|
- blk_stop_queue(q);
|
|
- spin_unlock_irqrestore(q->queue_lock, flags);
|
|
+ if (card->cmdq_init && blk_queue_tagged(q)) {
|
|
+ struct mmc_host *host = card->host;
|
|
|
|
- down(&mq->thread_sem);
|
|
+ if (wait) {
|
|
+ /*
|
|
+ * After blk_stop_queue is called, wait for all
|
|
+ * active_reqs to complete.
|
|
+ * Then wait for cmdq thread to exit before calling
|
|
+ * cmdq shutdown to avoid race between issuing
|
|
+ * requests and shutdown of cmdq.
|
|
+ */
|
|
+ spin_lock_irqsave(q->queue_lock, flags);
|
|
+ blk_stop_queue(q);
|
|
+ spin_unlock_irqrestore(q->queue_lock, flags);
|
|
+
|
|
+ if (host->cmdq_ctx.active_reqs)
|
|
+ wait_for_completion(
|
|
+ &mq->cmdq_shutdown_complete);
|
|
+ kthread_stop(mq->thread);
|
|
+ mq->cmdq_shutdown(mq);
|
|
+ } else {
|
|
+ spin_lock_irqsave(q->queue_lock, flags);
|
|
+ blk_stop_queue(q);
|
|
+ wake_up(&host->cmdq_ctx.wait);
|
|
+ req = blk_peek_request(q);
|
|
+ if (req || mq->cmdq_req_peeked ||
|
|
+ host->cmdq_ctx.active_reqs) {
|
|
+ mq->flags &= ~MMC_QUEUE_SUSPENDED;
|
|
+ blk_start_queue(q);
|
|
+ rc = -EBUSY;
|
|
+ }
|
|
+ spin_unlock_irqrestore(q->queue_lock, flags);
|
|
+ }
|
|
+
|
|
+ goto out;
|
|
+ } else {
|
|
+ spin_lock_irqsave(q->queue_lock, flags);
|
|
+ blk_stop_queue(q);
|
|
+ spin_unlock_irqrestore(q->queue_lock, flags);
|
|
+
|
|
+ rc = down_trylock(&mq->thread_sem);
|
|
+ if (rc && !wait) {
|
|
+ /*
|
|
+ * Failed to take the lock so better to abort the
|
|
+ * suspend because mmcqd thread is processing requests.
|
|
+ */
|
|
+ mq->flags &= ~MMC_QUEUE_SUSPENDED;
|
|
+ spin_lock_irqsave(q->queue_lock, flags);
|
|
+ blk_start_queue(q);
|
|
+ spin_unlock_irqrestore(q->queue_lock, flags);
|
|
+ rc = -EBUSY;
|
|
+ } else if (rc && wait) {
|
|
+ down(&mq->thread_sem);
|
|
+ rc = 0;
|
|
+ }
|
|
+ }
|
|
}
|
|
+out:
|
|
+ return rc;
|
|
}
|
|
|
|
/**
|
|
@@ -555,3 +758,105 @@
|
|
sg_copy_from_buffer(mqrq->bounce_sg, mqrq->bounce_sg_len,
|
|
mqrq->bounce_buf, mqrq->sg[0].length);
|
|
}
|
|
+
|
|
+static void mmc_cmdq_softirq_done(struct request *rq)
|
|
+{
|
|
+ struct mmc_queue *mq = rq->q->queuedata;
|
|
+ mq->cmdq_complete_fn(rq);
|
|
+}
|
|
+
|
|
+static void mmc_cmdq_error_work(struct work_struct *work)
|
|
+{
|
|
+ struct mmc_queue *mq = container_of(work, struct mmc_queue,
|
|
+ cmdq_err_work);
|
|
+
|
|
+ mq->cmdq_error_fn(mq);
|
|
+}
|
|
+
|
|
+enum blk_eh_timer_return mmc_cmdq_rq_timed_out(struct request *req)
|
|
+{
|
|
+ struct mmc_queue *mq = req->q->queuedata;
|
|
+
|
|
+ pr_err("%s: request with tag: %d flags: 0x%llx timed out\n",
|
|
+ mmc_hostname(mq->card->host), req->tag, req->cmd_flags);
|
|
+
|
|
+ return mq->cmdq_req_timed_out(req);
|
|
+}
|
|
+
|
|
+int mmc_cmdq_init(struct mmc_queue *mq, struct mmc_card *card)
|
|
+{
|
|
+ int i, ret = 0;
|
|
+ /* one slot is reserved for dcmd requests */
|
|
+ int q_depth = card->ext_csd.cmdq_depth - 1;
|
|
+
|
|
+ card->cmdq_init = false;
|
|
+ if (!(card->host->caps2 & MMC_CAP2_CMD_QUEUE)) {
|
|
+ ret = -ENOTSUPP;
|
|
+ goto out;
|
|
+ }
|
|
+
|
|
+ init_waitqueue_head(&card->host->cmdq_ctx.queue_empty_wq);
|
|
+ init_waitqueue_head(&card->host->cmdq_ctx.wait);
|
|
+
|
|
+ mq->mqrq_cmdq = kzalloc(
|
|
+ sizeof(struct mmc_queue_req) * q_depth, GFP_KERNEL);
|
|
+ if (!mq->mqrq_cmdq) {
|
|
+ pr_warn("%s: unable to allocate mqrq's for q_depth %d\n",
|
|
+ mmc_card_name(card), q_depth);
|
|
+ ret = -ENOMEM;
|
|
+ goto out;
|
|
+ }
|
|
+
|
|
+ /* sg is allocated for data request slots only */
|
|
+ for (i = 0; i < q_depth; i++) {
|
|
+ mq->mqrq_cmdq[i].sg = mmc_alloc_sg(card->host->max_segs, &ret);
|
|
+ if (ret) {
|
|
+ pr_warn("%s: unable to allocate cmdq sg of size %d\n",
|
|
+ mmc_card_name(card),
|
|
+ card->host->max_segs);
|
|
+ goto free_mqrq_sg;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ ret = blk_queue_init_tags(mq->queue, q_depth, NULL, BLK_TAG_ALLOC_FIFO);
|
|
+ if (ret) {
|
|
+ pr_warn("%s: unable to allocate cmdq tags %d\n",
|
|
+ mmc_card_name(card), q_depth);
|
|
+ goto free_mqrq_sg;
|
|
+ }
|
|
+
|
|
+ blk_queue_softirq_done(mq->queue, mmc_cmdq_softirq_done);
|
|
+ INIT_WORK(&mq->cmdq_err_work, mmc_cmdq_error_work);
|
|
+ init_completion(&mq->cmdq_shutdown_complete);
|
|
+ init_completion(&mq->cmdq_pending_req_done);
|
|
+
|
|
+ blk_queue_rq_timed_out(mq->queue, mmc_cmdq_rq_timed_out);
|
|
+ blk_queue_rq_timeout(mq->queue, 120 * HZ);
|
|
+ card->cmdq_init = true;
|
|
+
|
|
+ goto out;
|
|
+
|
|
+free_mqrq_sg:
|
|
+ for (i = 0; i < q_depth; i++)
|
|
+ kfree(mq->mqrq_cmdq[i].sg);
|
|
+ kfree(mq->mqrq_cmdq);
|
|
+ mq->mqrq_cmdq = NULL;
|
|
+out:
|
|
+ return ret;
|
|
+}
|
|
+
|
|
+void mmc_cmdq_clean(struct mmc_queue *mq, struct mmc_card *card)
|
|
+{
|
|
+ int i;
|
|
+ int q_depth = card->ext_csd.cmdq_depth - 1;
|
|
+
|
|
+ blk_free_tags(mq->queue->queue_tags);
|
|
+ mq->queue->queue_tags = NULL;
|
|
+ blk_queue_free_tags(mq->queue);
|
|
+
|
|
+ for (i = 0; i < q_depth; i++)
|
|
+ kfree(mq->mqrq_cmdq[i].sg);
|
|
+ kfree(mq->mqrq_cmdq);
|
|
+ mq->mqrq_cmdq = NULL;
|
|
+}
|
|
+
|