All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] mmc: clean up clockgating code
@ 2010-11-16 16:56 Linus Walleij
  2010-11-18  3:30 ` Chris Ball
  0 siblings, 1 reply; 2+ messages in thread
From: Linus Walleij @ 2010-11-16 16:56 UTC (permalink / raw)
  To: linux-mmc, Chris Ball; +Cc: Linus Walleij

This rids the unused boolean clk_pending_gate from the code
and renames the clk_disable_work to clk_gate_work in
analogy with the other names used for gating code.

Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
---
 drivers/mmc/core/host.c  |   19 ++++++-------------
 include/linux/mmc/host.h |    3 +--
 2 files changed, 7 insertions(+), 15 deletions(-)

diff --git a/drivers/mmc/core/host.c b/drivers/mmc/core/host.c
index aacd9c5..f74b386 100644
--- a/drivers/mmc/core/host.c
+++ b/drivers/mmc/core/host.c
@@ -66,7 +66,6 @@ static void mmc_host_clk_gate_delayed(struct mmc_host *host)
 	unsigned long tick_ns;
 	unsigned long freq = host->ios.clock;
 	unsigned long flags;
-	int users;
 
 	if (!freq) {
 		pr_err("%s: frequency set to 0 in disable function, "
@@ -80,20 +79,18 @@ static void mmc_host_clk_gate_delayed(struct mmc_host *host)
 	 * clk_disable().
 	 */
 	spin_lock_irqsave(&host->clk_lock, flags);
-	users = host->clk_requests;
 
 	/*
 	 * Delay n bus cycles (at least 8 from MMC spec) before attempting
 	 * to disable the MCI block clock. The reference count may have
 	 * gone up again after this delay due to rescheduling!
 	 */
-	if (!users) {
+	if (!host->clk_requests) {
 		spin_unlock_irqrestore(&host->clk_lock, flags);
 		tick_ns = DIV_ROUND_UP(1000000000, freq);
 		ndelay(host->clk_delay * tick_ns);
 	} else {
 		/* New users appeared while waiting for this work */
-		host->clk_pending_gate = false;
 		spin_unlock_irqrestore(&host->clk_lock, flags);
 		return;
 	}
@@ -105,7 +102,6 @@ static void mmc_host_clk_gate_delayed(struct mmc_host *host)
 		spin_lock_irqsave(&host->clk_lock, flags);
 		pr_debug("%s: gated MCI clock\n", mmc_hostname(host));
 	}
-	host->clk_pending_gate = false;
 	spin_unlock_irqrestore(&host->clk_lock, flags);
 }
 
@@ -115,7 +111,7 @@ static void mmc_host_clk_gate_delayed(struct mmc_host *host)
 static void mmc_host_clk_gate_work(struct work_struct *work)
 {
 	struct mmc_host *host = container_of(work, struct mmc_host,
-					      clk_disable_work);
+					      clk_gate_work);
 
 	mmc_host_clk_gate_delayed(host);
 }
@@ -181,10 +177,8 @@ void mmc_host_clk_gate(struct mmc_host *host)
 	spin_lock_irqsave(&host->clk_lock, flags);
 	host->clk_requests--;
 	if (mmc_host_may_gate_card(host->card) &&
-	    !host->clk_requests) {
-		host->clk_pending_gate = true;
-		schedule_work(&host->clk_disable_work);
-	}
+	    !host->clk_requests)
+		schedule_work(&host->clk_gate_work);
 	spin_unlock_irqrestore(&host->clk_lock, flags);
 }
 
@@ -218,8 +212,7 @@ static inline void mmc_host_clk_init(struct mmc_host *host)
 	/* Hold MCI clock for 8 cycles by default */
 	host->clk_delay = 8;
 	host->clk_gated = false;
-	host->clk_pending_gate = false;
-	INIT_WORK(&host->clk_disable_work, mmc_host_clk_gate_work);
+	INIT_WORK(&host->clk_gate_work, mmc_host_clk_gate_work);
 	spin_lock_init(&host->clk_lock);
 }
 
@@ -233,7 +226,7 @@ static inline void mmc_host_clk_exit(struct mmc_host *host)
 	 * Wait for any outstanding gate and then make sure we're
 	 * ungated before exiting.
 	 */
-	if (cancel_work_sync(&host->clk_disable_work))
+	if (cancel_work_sync(&host->clk_gate_work))
 		mmc_host_clk_gate_delayed(host);
 	if (host->clk_gated)
 		mmc_host_clk_ungate(host);
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h
index f108cee..955bc10 100644
--- a/include/linux/mmc/host.h
+++ b/include/linux/mmc/host.h
@@ -175,8 +175,7 @@ struct mmc_host {
 	int			clk_requests;	/* internal reference counter */
 	unsigned int		clk_delay;	/* number of MCI clk hold cycles */
 	bool			clk_gated;	/* clock gated */
-	bool			clk_pending_gate; /* pending clock gating */
-	struct work_struct	clk_disable_work; /* delayed clock disable */
+	struct work_struct	clk_gate_work; /* delayed clock gate */
 	unsigned int		clk_old;	/* old clock value cache */
 	spinlock_t		clk_lock;	/* lock for clk fields */
 #endif
-- 
1.6.3.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/3] mmc: clean up clockgating code
  2010-11-16 16:56 [PATCH 1/3] mmc: clean up clockgating code Linus Walleij
@ 2010-11-18  3:30 ` Chris Ball
  0 siblings, 0 replies; 2+ messages in thread
From: Chris Ball @ 2010-11-18  3:30 UTC (permalink / raw)
  To: Linus Walleij; +Cc: linux-mmc

Hi Linus,

On Tue, Nov 16, 2010 at 05:56:42PM +0100, Linus Walleij wrote:
> This rids the unused boolean clk_pending_gate from the code
> and renames the clk_disable_work to clk_gate_work in
> analogy with the other names used for gating code.
> 
> Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>

Thanks, merged into mmc-next for .38.

-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-11-18  3:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-16 16:56 [PATCH 1/3] mmc: clean up clockgating code Linus Walleij
2010-11-18  3:30 ` Chris Ball

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.