aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/mmci.h
diff options
context:
space:
mode:
authorUlf Hansson <ulf.hansson@stericsson.com>2012-01-18 09:17:27 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2012-02-02 17:02:15 +0000
commit7437cfa532842ce75189826742bddf1ba137f58e (patch)
treea668a44a7c54b9f8e73c816831ad0958cc61fc18 /drivers/mmc/host/mmci.h
parentARM: 7230/1: mmc: mmci: Fix PIO read for small SDIO packets (diff)
downloadlinux-dev-7437cfa532842ce75189826742bddf1ba137f58e.tar.xz
linux-dev-7437cfa532842ce75189826742bddf1ba137f58e.zip
ARM: 7280/1: mmc: mmci: Cache MMCICLOCK and MMCIPOWER register
Instead of reading a register value everytime we need to apply a new value for it, maintain a cached copy for it. This also means we are able to skip writes that are not needed. Tested-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Ulf Hansson <ulf.hansson@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/mmc/host/mmci.h')
-rw-r--r--drivers/mmc/host/mmci.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mmc/host/mmci.h b/drivers/mmc/host/mmci.h
index 89eb2e3556d3..d437ccf62d6b 100644
--- a/drivers/mmc/host/mmci.h
+++ b/drivers/mmc/host/mmci.h
@@ -179,7 +179,8 @@ struct mmci_host {
unsigned int mclk;
unsigned int cclk;
- u32 pwr;
+ u32 pwr_reg;
+ u32 clk_reg;
struct mmci_platform_data *plat;
struct variant_data *variant;