From patchwork Thu Jun 9 11:52:42 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adrian Hunter X-Patchwork-Id: 9166885 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 9C75260467 for ; Thu, 9 Jun 2016 11:59:37 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8C8D020855 for ; Thu, 9 Jun 2016 11:59:37 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8108C28342; Thu, 9 Jun 2016 11:59:37 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 24F7F20855 for ; Thu, 9 Jun 2016 11:59:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751722AbcFIL7f (ORCPT ); Thu, 9 Jun 2016 07:59:35 -0400 Received: from mga01.intel.com ([192.55.52.88]:48207 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751861AbcFIL7e (ORCPT ); Thu, 9 Jun 2016 07:59:34 -0400 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 09 Jun 2016 04:59:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,444,1459839600"; d="scan'208";a="998504437" Received: from ahunter-desktop.fi.intel.com ([10.237.72.168]) by fmsmga002.fm.intel.com with ESMTP; 09 Jun 2016 04:59:30 -0700 From: Adrian Hunter To: Ulf Hansson Cc: linux-mmc , Alex Lemberg , Mateusz Nowak , Yuliy Izrailov , Jaehoon Chung , Dong Aisheng , Das Asutosh , Zhangfei Gao , Sujit Reddy Thumma , Dorfman Konstantin , David Griego , Sahitya Tummala , Harjani Ritesh Subject: [PATCH RFC 42/46] mmc: queue: Add a function to control wake-up on new requests Date: Thu, 9 Jun 2016 14:52:42 +0300 Message-Id: <1465473166-22532-43-git-send-email-adrian.hunter@intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1465473166-22532-1-git-send-email-adrian.hunter@intel.com> References: <1465473166-22532-1-git-send-email-adrian.hunter@intel.com> Organization: Intel Finland Oy, Registered Address: PL 281, 00181 Helsinki, Business Identity Code: 0357606 - 4, Domiciled in Helsinki Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add a function to control wake-up on new requests. This will enable Software Command Queuing to choose whether or not to queue new requests immediately or wait for the current task to complete. Signed-off-by: Adrian Hunter --- drivers/mmc/card/queue.c | 16 ++++++++++++++++ drivers/mmc/card/queue.h | 2 ++ 2 files changed, 18 insertions(+) diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c index 4e134884a183..0781578fc8b6 100644 --- a/drivers/mmc/card/queue.c +++ b/drivers/mmc/card/queue.c @@ -94,6 +94,7 @@ static int mmc_queue_thread(void *d) cntx->is_waiting_last_req = false; cntx->is_new_req = false; if (!req) { + mq->is_new_req = false; /* * Dispatch queue is empty so set flags for * mmc_request_fn() to wake us up. @@ -144,6 +145,8 @@ static void mmc_request_fn(struct request_queue *q) return; } + mq->is_new_req = true; + cntx = &mq->card->host->context_info; if (cntx->is_waiting_last_req) { @@ -155,6 +158,19 @@ static void mmc_request_fn(struct request_queue *q) wake_up_process(mq->thread); } +void mmc_queue_set_wake(struct mmc_queue *mq, bool wake_me) +{ + struct mmc_context_info *cntx = &mq->card->host->context_info; + struct request_queue *q = mq->queue; + + if (cntx->is_waiting_last_req != wake_me) { + spin_lock_irq(q->queue_lock); + cntx->is_waiting_last_req = wake_me; + cntx->is_new_req = wake_me && mq->is_new_req; + spin_unlock_irq(q->queue_lock); + } +} + static struct scatterlist *mmc_alloc_sg(int sg_len, int *err) { struct scatterlist *sg; diff --git a/drivers/mmc/card/queue.h b/drivers/mmc/card/queue.h index 1afd5dafd46d..a6d5b0f94662 100644 --- a/drivers/mmc/card/queue.h +++ b/drivers/mmc/card/queue.h @@ -52,6 +52,7 @@ struct mmc_queue { unsigned int flags; #define MMC_QUEUE_SUSPENDED (1 << 0) bool asleep; + bool is_new_req; int (*issue_fn)(struct mmc_queue *, struct request *); void *data; @@ -81,5 +82,6 @@ extern int mmc_access_rpmb(struct mmc_queue *); extern struct mmc_queue_req *mmc_queue_req_find(struct mmc_queue *, struct request *); extern void mmc_queue_req_free(struct mmc_queue *, struct mmc_queue_req *); +extern void mmc_queue_set_wake(struct mmc_queue *, bool); #endif