diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-14 16:46:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-14 16:46:57 -0400 |
commit | 2625b10d8c37656cf410a464ed95942b3abbd1f6 (patch) | |
tree | f02fc44aaed07dceed2566b3fdf4dc64b786cb89 /drivers/mmc | |
parent | 489f7ab6c18cdd64a2d444e056d60a0e722f4ad7 (diff) | |
parent | 7f72134c32eb64c77d1fb35123ba8bf815bf797c (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc: (25 commits)
atmel-mci: add MCI2 register definitions
atmel-mci: Integrate AT91 specific definition in header file
tmio_mmc: allow compilation for ASIC3
mmc_block: do not DMA to stack
sdhci: Print ADMA status and pointer on debug
tmio_mmc: fix clock setup
tmio_mmc: map SD control registers after enabling the MFD cell
tmio_mmc: correct probe return value for num_resources != 3
tmio_mmc: don't use set_irq_type
tmio_mmc: add bus_shift support
MFD,mmc: tmio_mmc: make HCLK configurable
mmc_spi: don't use EINVAL for possible transmission errors
cb710: more cleanup for the DEBUG case.
sdhci: platform driver for SDHCI
mxcmmc: remove frequency workaround
cb710: handle DEBUG define in Makefile
cb710: add missing parenthesis
cb710: fix printk format string
mmc: Driver for CB710/720 memory card reader (MMC part)
pxamci: add regulator support.
...
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/card/block.c | 16 | ||||
-rw-r--r-- | drivers/mmc/core/core.c | 107 | ||||
-rw-r--r-- | drivers/mmc/host/Kconfig | 28 | ||||
-rw-r--r-- | drivers/mmc/host/Makefile | 5 | ||||
-rw-r--r-- | drivers/mmc/host/atmel-mci-regs.h | 33 | ||||
-rw-r--r-- | drivers/mmc/host/cb710-mmc.c | 804 | ||||
-rw-r--r-- | drivers/mmc/host/cb710-mmc.h | 104 | ||||
-rw-r--r-- | drivers/mmc/host/mmc_spi.c | 23 | ||||
-rw-r--r-- | drivers/mmc/host/mxcmmc.c | 2 | ||||
-rw-r--r-- | drivers/mmc/host/omap.c | 3 | ||||
-rw-r--r-- | drivers/mmc/host/pxamci.c | 46 | ||||
-rw-r--r-- | drivers/mmc/host/sdhci-pltfm.c | 168 | ||||
-rw-r--r-- | drivers/mmc/host/sdhci.c | 58 | ||||
-rw-r--r-- | drivers/mmc/host/sdhci.h | 2 | ||||
-rw-r--r-- | drivers/mmc/host/tmio_mmc.c | 180 | ||||
-rw-r--r-- | drivers/mmc/host/tmio_mmc.h | 77 |
16 files changed, 1453 insertions, 203 deletions
diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c index 98ffc41eaf2c..adc205c49fbf 100644 --- a/drivers/mmc/card/block.c +++ b/drivers/mmc/card/block.c | |||
@@ -147,7 +147,8 @@ struct mmc_blk_request { | |||
147 | static u32 mmc_sd_num_wr_blocks(struct mmc_card *card) | 147 | static u32 mmc_sd_num_wr_blocks(struct mmc_card *card) |
148 | { | 148 | { |
149 | int err; | 149 | int err; |
150 | __be32 blocks; | 150 | u32 result; |
151 | __be32 *blocks; | ||
151 | 152 | ||
152 | struct mmc_request mrq; | 153 | struct mmc_request mrq; |
153 | struct mmc_command cmd; | 154 | struct mmc_command cmd; |
@@ -199,14 +200,21 @@ static u32 mmc_sd_num_wr_blocks(struct mmc_card *card) | |||
199 | mrq.cmd = &cmd; | 200 | mrq.cmd = &cmd; |
200 | mrq.data = &data; | 201 | mrq.data = &data; |
201 | 202 | ||
202 | sg_init_one(&sg, &blocks, 4); | 203 | blocks = kmalloc(4, GFP_KERNEL); |
204 | if (!blocks) | ||
205 | return (u32)-1; | ||
206 | |||
207 | sg_init_one(&sg, blocks, 4); | ||
203 | 208 | ||
204 | mmc_wait_for_req(card->host, &mrq); | 209 | mmc_wait_for_req(card->host, &mrq); |
205 | 210 | ||
211 | result = ntohl(*blocks); | ||
212 | kfree(blocks); | ||
213 | |||
206 | if (cmd.error || data.error) | 214 | if (cmd.error || data.error) |
207 | return (u32)-1; | 215 | result = (u32)-1; |
208 | 216 | ||
209 | return ntohl(blocks); | 217 | return result; |
210 | } | 218 | } |
211 | 219 | ||
212 | static u32 get_card_status(struct mmc_card *card, struct request *req) | 220 | static u32 get_card_status(struct mmc_card *card, struct request *req) |
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c index 264911732756..d84c880fac84 100644 --- a/drivers/mmc/core/core.c +++ b/drivers/mmc/core/core.c | |||
@@ -708,7 +708,13 @@ static void mmc_power_up(struct mmc_host *host) | |||
708 | */ | 708 | */ |
709 | mmc_delay(10); | 709 | mmc_delay(10); |
710 | 710 | ||
711 | host->ios.clock = host->f_min; | 711 | if (host->f_min > 400000) { |
712 | pr_warning("%s: Minimum clock frequency too high for " | ||
713 | "identification mode\n", mmc_hostname(host)); | ||
714 | host->ios.clock = host->f_min; | ||
715 | } else | ||
716 | host->ios.clock = 400000; | ||
717 | |||
712 | host->ios.power_mode = MMC_POWER_ON; | 718 | host->ios.power_mode = MMC_POWER_ON; |
713 | mmc_set_ios(host); | 719 | mmc_set_ios(host); |
714 | 720 | ||
@@ -855,61 +861,72 @@ void mmc_rescan(struct work_struct *work) | |||
855 | 861 | ||
856 | mmc_bus_get(host); | 862 | mmc_bus_get(host); |
857 | 863 | ||
858 | if (host->bus_ops == NULL) { | 864 | /* if there is a card registered, check whether it is still present */ |
859 | /* | 865 | if ((host->bus_ops != NULL) && host->bus_ops->detect && !host->bus_dead) |
860 | * Only we can add a new handler, so it's safe to | 866 | host->bus_ops->detect(host); |
861 | * release the lock here. | 867 | |
862 | */ | 868 | mmc_bus_put(host); |
869 | |||
870 | |||
871 | mmc_bus_get(host); | ||
872 | |||
873 | /* if there still is a card present, stop here */ | ||
874 | if (host->bus_ops != NULL) { | ||
863 | mmc_bus_put(host); | 875 | mmc_bus_put(host); |
876 | goto out; | ||
877 | } | ||
864 | 878 | ||
865 | if (host->ops->get_cd && host->ops->get_cd(host) == 0) | 879 | /* detect a newly inserted card */ |
866 | goto out; | ||
867 | 880 | ||
868 | mmc_claim_host(host); | 881 | /* |
882 | * Only we can add a new handler, so it's safe to | ||
883 | * release the lock here. | ||
884 | */ | ||
885 | mmc_bus_put(host); | ||
869 | 886 | ||
870 | mmc_power_up(host); | 887 | if (host->ops->get_cd && host->ops->get_cd(host) == 0) |
871 | mmc_go_idle(host); | 888 | goto out; |
872 | 889 | ||
873 | mmc_send_if_cond(host, host->ocr_avail); | 890 | mmc_claim_host(host); |
874 | 891 | ||
875 | /* | 892 | mmc_power_up(host); |
876 | * First we search for SDIO... | 893 | mmc_go_idle(host); |
877 | */ | ||
878 | err = mmc_send_io_op_cond(host, 0, &ocr); | ||
879 | if (!err) { | ||
880 | if (mmc_attach_sdio(host, ocr)) | ||
881 | mmc_power_off(host); | ||
882 | goto out; | ||
883 | } | ||
884 | 894 | ||
885 | /* | 895 | mmc_send_if_cond(host, host->ocr_avail); |
886 | * ...then normal SD... | ||
887 | */ | ||
888 | err = mmc_send_app_op_cond(host, 0, &ocr); | ||
889 | if (!err) { | ||
890 | if (mmc_attach_sd(host, ocr)) | ||
891 | mmc_power_off(host); | ||
892 | goto out; | ||
893 | } | ||
894 | 896 | ||
895 | /* | 897 | /* |
896 | * ...and finally MMC. | 898 | * First we search for SDIO... |
897 | */ | 899 | */ |
898 | err = mmc_send_op_cond(host, 0, &ocr); | 900 | err = mmc_send_io_op_cond(host, 0, &ocr); |
899 | if (!err) { | 901 | if (!err) { |
900 | if (mmc_attach_mmc(host, ocr)) | 902 | if (mmc_attach_sdio(host, ocr)) |
901 | mmc_power_off(host); | 903 | mmc_power_off(host); |
902 | goto out; | 904 | goto out; |
903 | } | 905 | } |
904 | 906 | ||
905 | mmc_release_host(host); | 907 | /* |
906 | mmc_power_off(host); | 908 | * ...then normal SD... |
907 | } else { | 909 | */ |
908 | if (host->bus_ops->detect && !host->bus_dead) | 910 | err = mmc_send_app_op_cond(host, 0, &ocr); |
909 | host->bus_ops->detect(host); | 911 | if (!err) { |
912 | if (mmc_attach_sd(host, ocr)) | ||
913 | mmc_power_off(host); | ||
914 | goto out; | ||
915 | } | ||
910 | 916 | ||
911 | mmc_bus_put(host); | 917 | /* |
918 | * ...and finally MMC. | ||
919 | */ | ||
920 | err = mmc_send_op_cond(host, 0, &ocr); | ||
921 | if (!err) { | ||
922 | if (mmc_attach_mmc(host, ocr)) | ||
923 | mmc_power_off(host); | ||
924 | goto out; | ||
912 | } | 925 | } |
926 | |||
927 | mmc_release_host(host); | ||
928 | mmc_power_off(host); | ||
929 | |||
913 | out: | 930 | out: |
914 | if (host->caps & MMC_CAP_NEEDS_POLL) | 931 | if (host->caps & MMC_CAP_NEEDS_POLL) |
915 | mmc_schedule_delayed_work(&host->detect, HZ); | 932 | mmc_schedule_delayed_work(&host->detect, HZ); |
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index 3eb87bda14f3..40111a6d8d5b 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig | |||
@@ -83,6 +83,17 @@ config MMC_SDHCI_OF | |||
83 | 83 | ||
84 | If unsure, say N. | 84 | If unsure, say N. |
85 | 85 | ||
86 | config MMC_SDHCI_PLTFM | ||
87 | tristate "SDHCI support on the platform specific bus" | ||
88 | depends on MMC_SDHCI | ||
89 | help | ||
90 | This selects the platform specific bus support for Secure Digital Host | ||
91 | Controller Interface. | ||
92 | |||
93 | If you have a controller with this interface, say Y or M here. | ||
94 | |||
95 | If unsure, say N. | ||
96 | |||
86 | config MMC_OMAP | 97 | config MMC_OMAP |
87 | tristate "TI OMAP Multimedia Card Interface support" | 98 | tristate "TI OMAP Multimedia Card Interface support" |
88 | depends on ARCH_OMAP | 99 | depends on ARCH_OMAP |
@@ -237,7 +248,20 @@ config MMC_SDRICOH_CS | |||
237 | 248 | ||
238 | config MMC_TMIO | 249 | config MMC_TMIO |
239 | tristate "Toshiba Mobile IO Controller (TMIO) MMC/SD function support" | 250 | tristate "Toshiba Mobile IO Controller (TMIO) MMC/SD function support" |
240 | depends on MFD_TMIO | 251 | depends on MFD_TMIO || MFD_ASIC3 |
241 | help | 252 | help |
242 | This provides support for the SD/MMC cell found in TC6393XB, | 253 | This provides support for the SD/MMC cell found in TC6393XB, |
243 | T7L66XB and also ipaq ASIC3 | 254 | T7L66XB and also HTC ASIC3 |
255 | |||
256 | config MMC_CB710 | ||
257 | tristate "ENE CB710 MMC/SD Interface support" | ||
258 | depends on PCI | ||
259 | select CB710_CORE | ||
260 | help | ||
261 | This option enables support for MMC/SD part of ENE CB710/720 Flash | ||
262 | memory card reader found in some laptops (ie. some versions of | ||
263 | HP Compaq nx9500). | ||
264 | |||
265 | This driver can also be built as a module. If so, the module | ||
266 | will be called cb710-mmc. | ||
267 | |||
diff --git a/drivers/mmc/host/Makefile b/drivers/mmc/host/Makefile index 970a997620e1..79da397c5fea 100644 --- a/drivers/mmc/host/Makefile +++ b/drivers/mmc/host/Makefile | |||
@@ -14,6 +14,7 @@ obj-$(CONFIG_MMC_SDHCI) += sdhci.o | |||
14 | obj-$(CONFIG_MMC_SDHCI_PCI) += sdhci-pci.o | 14 | obj-$(CONFIG_MMC_SDHCI_PCI) += sdhci-pci.o |
15 | obj-$(CONFIG_MMC_RICOH_MMC) += ricoh_mmc.o | 15 | obj-$(CONFIG_MMC_RICOH_MMC) += ricoh_mmc.o |
16 | obj-$(CONFIG_MMC_SDHCI_OF) += sdhci-of.o | 16 | obj-$(CONFIG_MMC_SDHCI_OF) += sdhci-of.o |
17 | obj-$(CONFIG_MMC_SDHCI_PLTFM) += sdhci-pltfm.o | ||
17 | obj-$(CONFIG_MMC_WBSD) += wbsd.o | 18 | obj-$(CONFIG_MMC_WBSD) += wbsd.o |
18 | obj-$(CONFIG_MMC_AU1X) += au1xmmc.o | 19 | obj-$(CONFIG_MMC_AU1X) += au1xmmc.o |
19 | obj-$(CONFIG_MMC_OMAP) += omap.o | 20 | obj-$(CONFIG_MMC_OMAP) += omap.o |
@@ -29,4 +30,8 @@ endif | |||
29 | obj-$(CONFIG_MMC_S3C) += s3cmci.o | 30 | obj-$(CONFIG_MMC_S3C) += s3cmci.o |
30 | obj-$(CONFIG_MMC_SDRICOH_CS) += sdricoh_cs.o | 31 | obj-$(CONFIG_MMC_SDRICOH_CS) += sdricoh_cs.o |
31 | obj-$(CONFIG_MMC_TMIO) += tmio_mmc.o | 32 | obj-$(CONFIG_MMC_TMIO) += tmio_mmc.o |
33 | obj-$(CONFIG_MMC_CB710) += cb710-mmc.o | ||
32 | 34 | ||
35 | ifeq ($(CONFIG_CB710_DEBUG),y) | ||
36 | CFLAGS-cb710-mmc += -DDEBUG | ||
37 | endif | ||
diff --git a/drivers/mmc/host/atmel-mci-regs.h b/drivers/mmc/host/atmel-mci-regs.h index b58364ed6bba..fc8a0fe7c5c5 100644 --- a/drivers/mmc/host/atmel-mci-regs.h +++ b/drivers/mmc/host/atmel-mci-regs.h | |||
@@ -7,6 +7,12 @@ | |||
7 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
9 | */ | 9 | */ |
10 | |||
11 | /* | ||
12 | * Superset of MCI IP registers integrated in Atmel AVR32 and AT91 Processors | ||
13 | * Registers and bitfields marked with [2] are only available in MCI2 | ||
14 | */ | ||
15 | |||
10 | #ifndef __DRIVERS_MMC_ATMEL_MCI_H__ | 16 | #ifndef __DRIVERS_MMC_ATMEL_MCI_H__ |
11 | #define __DRIVERS_MMC_ATMEL_MCI_H__ | 17 | #define __DRIVERS_MMC_ATMEL_MCI_H__ |
12 | 18 | ||
@@ -14,11 +20,17 @@ | |||
14 | #define MCI_CR 0x0000 /* Control */ | 20 | #define MCI_CR 0x0000 /* Control */ |
15 | # define MCI_CR_MCIEN ( 1 << 0) /* MCI Enable */ | 21 | # define MCI_CR_MCIEN ( 1 << 0) /* MCI Enable */ |
16 | # define MCI_CR_MCIDIS ( 1 << 1) /* MCI Disable */ | 22 | # define MCI_CR_MCIDIS ( 1 << 1) /* MCI Disable */ |
23 | # define MCI_CR_PWSEN ( 1 << 2) /* Power Save Enable */ | ||
24 | # define MCI_CR_PWSDIS ( 1 << 3) /* Power Save Disable */ | ||
17 | # define MCI_CR_SWRST ( 1 << 7) /* Software Reset */ | 25 | # define MCI_CR_SWRST ( 1 << 7) /* Software Reset */ |
18 | #define MCI_MR 0x0004 /* Mode */ | 26 | #define MCI_MR 0x0004 /* Mode */ |
19 | # define MCI_MR_CLKDIV(x) ((x) << 0) /* Clock Divider */ | 27 | # define MCI_MR_CLKDIV(x) ((x) << 0) /* Clock Divider */ |
28 | # define MCI_MR_PWSDIV(x) ((x) << 8) /* Power Saving Divider */ | ||
20 | # define MCI_MR_RDPROOF ( 1 << 11) /* Read Proof */ | 29 | # define MCI_MR_RDPROOF ( 1 << 11) /* Read Proof */ |
21 | # define MCI_MR_WRPROOF ( 1 << 12) /* Write Proof */ | 30 | # define MCI_MR_WRPROOF ( 1 << 12) /* Write Proof */ |
31 | # define MCI_MR_PDCFBYTE ( 1 << 13) /* Force Byte Transfer */ | ||
32 | # define MCI_MR_PDCPADV ( 1 << 14) /* Padding Value */ | ||
33 | # define MCI_MR_PDCMODE ( 1 << 15) /* PDC-oriented Mode */ | ||
22 | #define MCI_DTOR 0x0008 /* Data Timeout */ | 34 | #define MCI_DTOR 0x0008 /* Data Timeout */ |
23 | # define MCI_DTOCYC(x) ((x) << 0) /* Data Timeout Cycles */ | 35 | # define MCI_DTOCYC(x) ((x) << 0) /* Data Timeout Cycles */ |
24 | # define MCI_DTOMUL(x) ((x) << 4) /* Data Timeout Multiplier */ | 36 | # define MCI_DTOMUL(x) ((x) << 4) /* Data Timeout Multiplier */ |
@@ -28,6 +40,7 @@ | |||
28 | # define MCI_SDCSEL_MASK ( 3 << 0) | 40 | # define MCI_SDCSEL_MASK ( 3 << 0) |
29 | # define MCI_SDCBUS_1BIT ( 0 << 6) /* 1-bit data bus */ | 41 | # define MCI_SDCBUS_1BIT ( 0 << 6) /* 1-bit data bus */ |
30 | # define MCI_SDCBUS_4BIT ( 2 << 6) /* 4-bit data bus */ | 42 | # define MCI_SDCBUS_4BIT ( 2 << 6) /* 4-bit data bus */ |
43 | # define MCI_SDCBUS_8BIT ( 3 << 6) /* 8-bit data bus[2] */ | ||
31 | # define MCI_SDCBUS_MASK ( 3 << 6) | 44 | # define MCI_SDCBUS_MASK ( 3 << 6) |
32 | #define MCI_ARGR 0x0010 /* Command Argument */ | 45 | #define MCI_ARGR 0x0010 /* Command Argument */ |
33 | #define MCI_CMDR 0x0014 /* Command */ | 46 | #define MCI_CMDR 0x0014 /* Command */ |
@@ -56,6 +69,9 @@ | |||
56 | #define MCI_BLKR 0x0018 /* Block */ | 69 | #define MCI_BLKR 0x0018 /* Block */ |
57 | # define MCI_BCNT(x) ((x) << 0) /* Data Block Count */ | 70 | # define MCI_BCNT(x) ((x) << 0) /* Data Block Count */ |
58 | # define MCI_BLKLEN(x) ((x) << 16) /* Data Block Length */ | 71 | # define MCI_BLKLEN(x) ((x) << 16) /* Data Block Length */ |
72 | #define MCI_CSTOR 0x001c /* Completion Signal Timeout[2] */ | ||
73 | # define MCI_CSTOCYC(x) ((x) << 0) /* CST cycles */ | ||
74 | # define MCI_CSTOMUL(x) ((x) << 4) /* CST multiplier */ | ||
59 | #define MCI_RSPR 0x0020 /* Response 0 */ | 75 | #define MCI_RSPR 0x0020 /* Response 0 */ |
60 | #define MCI_RSPR1 0x0024 /* Response 1 */ | 76 | #define MCI_RSPR1 0x0024 /* Response 1 */ |
61 | #define MCI_RSPR2 0x0028 /* Response 2 */ | 77 | #define MCI_RSPR2 0x0028 /* Response 2 */ |
@@ -83,7 +99,24 @@ | |||
83 | # define MCI_DTOE ( 1 << 22) /* Data Time-Out Error */ | 99 | # define MCI_DTOE ( 1 << 22) /* Data Time-Out Error */ |
84 | # define MCI_OVRE ( 1 << 30) /* RX Overrun Error */ | 100 | # define MCI_OVRE ( 1 << 30) /* RX Overrun Error */ |
85 | # define MCI_UNRE ( 1 << 31) /* TX Underrun Error */ | 101 | # define MCI_UNRE ( 1 << 31) /* TX Underrun Error */ |
102 | #define MCI_DMA 0x0050 /* DMA Configuration[2] */ | ||
103 | # define MCI_DMA_OFFSET(x) ((x) << 0) /* DMA Write Buffer Offset */ | ||
104 | # define MCI_DMA_CHKSIZE(x) ((x) << 4) /* DMA Channel Read and Write Chunk Size */ | ||
105 | # define MCI_DMAEN ( 1 << 8) /* DMA Hardware Handshaking Enable */ | ||
106 | #define MCI_CFG 0x0054 /* Configuration[2] */ | ||
107 | # define MCI_CFG_FIFOMODE_1DATA ( 1 << 0) /* MCI Internal FIFO control mode */ | ||
108 | # define MCI_CFG_FERRCTRL_COR ( 1 << 4) /* Flow Error flag reset control mode */ | ||
109 | # define MCI_CFG_HSMODE ( 1 << 8) /* High Speed Mode */ | ||
110 | # define MCI_CFG_LSYNC ( 1 << 12) /* Synchronize on the last block */ | ||
111 | #define MCI_WPMR 0x00e4 /* Write Protection Mode[2] */ | ||
112 | # define MCI_WP_EN ( 1 << 0) /* WP Enable */ | ||
113 | # define MCI_WP_KEY (0x4d4349 << 8) /* WP Key */ | ||
114 | #define MCI_WPSR 0x00e8 /* Write Protection Status[2] */ | ||
115 | # define MCI_GET_WP_VS(x) ((x) & 0x0f) | ||
116 | # define MCI_GET_WP_VSRC(x) (((x) >> 8) & 0xffff) | ||
117 | #define MCI_FIFO_APERTURE 0x0200 /* FIFO Aperture[2] */ | ||
86 | 118 | ||
119 | /* This is not including the FIFO Aperture on MCI2 */ | ||
87 | #define MCI_REGS_SIZE 0x100 | 120 | #define MCI_REGS_SIZE 0x100 |
88 | 121 | ||
89 | /* Register access macros */ | 122 | /* Register access macros */ |
diff --git a/drivers/mmc/host/cb710-mmc.c b/drivers/mmc/host/cb710-mmc.c new file mode 100644 index 000000000000..11efefb1af51 --- /dev/null +++ b/drivers/mmc/host/cb710-mmc.c | |||
@@ -0,0 +1,804 @@ | |||
1 | /* | ||
2 | * cb710/mmc.c | ||
3 | * | ||
4 | * Copyright by Michał Mirosław, 2008-2009 | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #include <linux/kernel.h> | ||
11 | #include <linux/module.h> | ||
12 | #include <linux/slab.h> | ||
13 | #include <linux/pci.h> | ||
14 | #include <linux/delay.h> | ||
15 | #include "cb710-mmc.h" | ||
16 | |||
17 | static const u8 cb710_clock_divider_log2[8] = { | ||
18 | /* 1, 2, 4, 8, 16, 32, 128, 512 */ | ||
19 | 0, 1, 2, 3, 4, 5, 7, 9 | ||
20 | }; | ||
21 | #define CB710_MAX_DIVIDER_IDX \ | ||
22 | (ARRAY_SIZE(cb710_clock_divider_log2) - 1) | ||
23 | |||
24 | static const u8 cb710_src_freq_mhz[16] = { | ||
25 | 33, 10, 20, 25, 30, 35, 40, 45, | ||
26 | 50, 55, 60, 65, 70, 75, 80, 85 | ||
27 | }; | ||
28 | |||
29 | static void cb710_mmc_set_clock(struct mmc_host *mmc, int hz) | ||
30 | { | ||
31 | struct cb710_slot *slot = cb710_mmc_to_slot(mmc); | ||
32 | struct pci_dev *pdev = cb710_slot_to_chip(slot)->pdev; | ||
33 | u32 src_freq_idx; | ||
34 | u32 divider_idx; | ||
35 | int src_hz; | ||
36 | |||
37 | /* this is magic, unverifiable for me, unless I get | ||
38 | * MMC card with cables connected to bus signals */ | ||
39 | pci_read_config_dword(pdev, 0x48, &src_freq_idx); | ||
40 | src_freq_idx = (src_freq_idx >> 16) & 0xF; | ||
41 | src_hz = cb710_src_freq_mhz[src_freq_idx] * 1000000; | ||
42 | |||
43 | for (divider_idx = 0; divider_idx < CB710_MAX_DIVIDER_IDX; ++divider_idx) { | ||
44 | if (hz >= src_hz >> cb710_clock_divider_log2[divider_idx]) | ||
45 | break; | ||
46 | } | ||
47 | |||
48 | if (src_freq_idx) | ||
49 | divider_idx |= 0x8; | ||
50 | |||
51 | cb710_pci_update_config_reg(pdev, 0x40, ~0xF0000000, divider_idx << 28); | ||
52 | |||
53 | dev_dbg(cb710_slot_dev(slot), | ||
54 | "clock set to %d Hz, wanted %d Hz; flag = %d\n", | ||
55 | src_hz >> cb710_clock_divider_log2[divider_idx & 7], | ||
56 | hz, (divider_idx & 8) != 0); | ||
57 | } | ||
58 | |||
59 | static void __cb710_mmc_enable_irq(struct cb710_slot *slot, | ||
60 | unsigned short enable, unsigned short mask) | ||
61 | { | ||
62 | /* clear global IE | ||
63 | * - it gets set later if any interrupt sources are enabled */ | ||
64 | mask |= CB710_MMC_IE_IRQ_ENABLE; | ||
65 | |||
66 | /* look like interrupt is fired whenever | ||
67 | * WORD[0x0C] & WORD[0x10] != 0; | ||
68 | * -> bit 15 port 0x0C seems to be global interrupt enable | ||
69 | */ | ||
70 | |||
71 | enable = (cb710_read_port_16(slot, CB710_MMC_IRQ_ENABLE_PORT) | ||
72 | & ~mask) | enable; | ||
73 | |||
74 | if (enable) | ||
75 | enable |= CB710_MMC_IE_IRQ_ENABLE; | ||
76 | |||
77 | cb710_write_port_16(slot, CB710_MMC_IRQ_ENABLE_PORT, enable); | ||
78 | } | ||
79 | |||
80 | static void cb710_mmc_enable_irq(struct cb710_slot *slot, | ||
81 | unsigned short enable, unsigned short mask) | ||
82 | { | ||
83 | struct cb710_mmc_reader *reader = mmc_priv(cb710_slot_to_mmc(slot)); | ||
84 | unsigned long flags; | ||
85 | |||
86 | spin_lock_irqsave(&reader->irq_lock, flags); | ||
87 | /* this is the only thing irq_lock protects */ | ||
88 | __cb710_mmc_enable_irq(slot, enable, mask); | ||
89 | spin_unlock_irqrestore(&reader->irq_lock, flags); | ||
90 | } | ||
91 | |||
92 | static void cb710_mmc_reset_events(struct cb710_slot *slot) | ||
93 | { | ||
94 | cb710_write_port_8(slot, CB710_MMC_STATUS0_PORT, 0xFF); | ||
95 | cb710_write_port_8(slot, CB710_MMC_STATUS1_PORT, 0xFF); | ||
96 | cb710_write_port_8(slot, CB710_MMC_STATUS2_PORT, 0xFF); | ||
97 | } | ||
98 | |||
99 | static int cb710_mmc_is_card_inserted(struct cb710_slot *slot) | ||
100 | { | ||
101 | return cb710_read_port_8(slot, CB710_MMC_STATUS3_PORT) | ||
102 | & CB710_MMC_S3_CARD_DETECTED; | ||
103 | } | ||
104 | |||
105 | static void cb710_mmc_enable_4bit_data(struct cb710_slot *slot, int enable) | ||
106 | { | ||
107 | dev_dbg(cb710_slot_dev(slot), "configuring %d-data-line%s mode\n", | ||
108 | enable ? 4 : 1, enable ? "s" : ""); | ||
109 | if (enable) | ||
110 | cb710_modify_port_8(slot, CB710_MMC_CONFIG1_PORT, | ||
111 | CB710_MMC_C1_4BIT_DATA_BUS, 0); | ||
112 | else | ||
113 | cb710_modify_port_8(slot, CB710_MMC_CONFIG1_PORT, | ||
114 | 0, CB710_MMC_C1_4BIT_DATA_BUS); | ||
115 | } | ||
116 | |||
117 | static int cb710_check_event(struct cb710_slot *slot, u8 what) | ||
118 | { | ||
119 | u16 status; | ||
120 | |||
121 | status = cb710_read_port_16(slot, CB710_MMC_STATUS_PORT); | ||
122 | |||
123 | if (status & CB710_MMC_S0_FIFO_UNDERFLOW) { | ||
124 | /* it is just a guess, so log it */ | ||
125 | dev_dbg(cb710_slot_dev(slot), | ||
126 | "CHECK : ignoring bit 6 in status %04X\n", status); | ||
127 | cb710_write_port_8(slot, CB710_MMC_STATUS0_PORT, | ||
128 | CB710_MMC_S0_FIFO_UNDERFLOW); | ||
129 | status &= ~CB710_MMC_S0_FIFO_UNDERFLOW; | ||
130 | } | ||
131 | |||
132 | if (status & CB710_MMC_STATUS_ERROR_EVENTS) { | ||
133 | dev_dbg(cb710_slot_dev(slot), | ||
134 | "CHECK : returning EIO on status %04X\n", status); | ||
135 | cb710_write_port_8(slot, CB710_MMC_STATUS0_PORT, status & 0xFF); | ||
136 | cb710_write_port_8(slot, CB710_MMC_STATUS1_PORT, | ||
137 | CB710_MMC_S1_RESET); | ||
138 | return -EIO; | ||
139 | } | ||
140 | |||
141 | /* 'what' is a bit in MMC_STATUS1 */ | ||
142 | if ((status >> 8) & what) { | ||
143 | cb710_write_port_8(slot, CB710_MMC_STATUS1_PORT, what); | ||
144 | return 1; | ||
145 | } | ||
146 | |||
147 | return 0; | ||
148 | } | ||
149 | |||
150 | static int cb710_wait_for_event(struct cb710_slot *slot, u8 what) | ||
151 | { | ||
152 | int err = 0; | ||
153 | unsigned limit = 2000000; /* FIXME: real timeout */ | ||
154 | |||
155 | #ifdef CONFIG_CB710_DEBUG | ||
156 | u32 e, x; | ||
157 | e = cb710_read_port_32(slot, CB710_MMC_STATUS_PORT); | ||
158 | #endif | ||
159 | |||
160 | while (!(err = cb710_check_event(slot, what))) { | ||
161 | if (!--limit) { | ||
162 | cb710_dump_regs(cb710_slot_to_chip(slot), | ||
163 | CB710_DUMP_REGS_MMC); | ||
164 | err = -ETIMEDOUT; | ||
165 | break; | ||
166 | } | ||
167 | udelay(1); | ||
168 | } | ||
169 | |||
170 | #ifdef CONFIG_CB710_DEBUG | ||
171 | x = cb710_read_port_32(slot, CB710_MMC_STATUS_PORT); | ||
172 | |||
173 | limit = 2000000 - limit; | ||
174 | if (limit > 100) | ||
175 | dev_dbg(cb710_slot_dev(slot), | ||
176 | "WAIT10: waited %d loops, what %d, entry val %08X, exit val %08X\n", | ||
177 | limit, what, e, x); | ||
178 | #endif | ||
179 | return err < 0 ? err : 0; | ||
180 | } | ||
181 | |||
182 | |||
183 | static int cb710_wait_while_busy(struct cb710_slot *slot, uint8_t mask) | ||
184 | { | ||
185 | unsigned limit = 500000; /* FIXME: real timeout */ | ||
186 | int err = 0; | ||
187 | |||
188 | #ifdef CONFIG_CB710_DEBUG | ||
189 | u32 e, x; | ||
190 | e = cb710_read_port_32(slot, CB710_MMC_STATUS_PORT); | ||
191 | #endif | ||
192 | |||
193 | while (cb710_read_port_8(slot, CB710_MMC_STATUS2_PORT) & mask) { | ||
194 | if (!--limit) { | ||
195 | cb710_dump_regs(cb710_slot_to_chip(slot), | ||
196 | CB710_DUMP_REGS_MMC); | ||
197 | err = -ETIMEDOUT; | ||
198 | break; | ||
199 | } | ||
200 | udelay(1); | ||
201 | } | ||
202 | |||
203 | #ifdef CONFIG_CB710_DEBUG | ||
204 | x = cb710_read_port_32(slot, CB710_MMC_STATUS_PORT); | ||
205 | |||
206 | limit = 500000 - limit; | ||
207 | if (limit > 100) | ||
208 | dev_dbg(cb710_slot_dev(slot), | ||
209 | "WAIT12: waited %d loops, mask %02X, entry val %08X, exit val %08X\n", | ||
210 | limit, mask, e, x); | ||
211 | #endif | ||
212 | return 0; | ||
213 | } | ||
214 | |||
215 | static void cb710_mmc_set_transfer_size(struct cb710_slot *slot, | ||
216 | size_t count, size_t blocksize) | ||
217 | { | ||
218 | cb710_wait_while_busy(slot, CB710_MMC_S2_BUSY_20); | ||
219 | cb710_write_port_32(slot, CB710_MMC_TRANSFER_SIZE_PORT, | ||
220 | ((count - 1) << 16)|(blocksize - 1)); | ||
221 | |||
222 | dev_vdbg(cb710_slot_dev(slot), "set up for %zu block%s of %zu bytes\n", | ||
223 | count, count == 1 ? "" : "s", blocksize); | ||
224 | } | ||
225 | |||
226 | static void cb710_mmc_fifo_hack(struct cb710_slot *slot) | ||
227 | { | ||
228 | /* without this, received data is prepended with 8-bytes of zeroes */ | ||
229 | u32 r1, r2; | ||
230 | int ok = 0; | ||
231 | |||
232 | r1 = cb710_read_port_32(slot, CB710_MMC_DATA_PORT); | ||
233 | r2 = cb710_read_port_32(slot, CB710_MMC_DATA_PORT); | ||
234 | if (cb710_read_port_8(slot, CB710_MMC_STATUS0_PORT) | ||
235 | & CB710_MMC_S0_FIFO_UNDERFLOW) { | ||
236 | cb710_write_port_8(slot, CB710_MMC_STATUS0_PORT, | ||
237 | CB710_MMC_S0_FIFO_UNDERFLOW); | ||
238 | ok = 1; | ||
239 | } | ||
240 | |||
241 | dev_dbg(cb710_slot_dev(slot), | ||
242 | "FIFO-read-hack: expected STATUS0 bit was %s\n", | ||
243 | ok ? "set." : "NOT SET!"); | ||
244 | dev_dbg(cb710_slot_dev(slot), | ||
245 | "FIFO-read-hack: dwords ignored: %08X %08X - %s\n", | ||
246 | r1, r2, (r1|r2) ? "BAD (NOT ZERO)!" : "ok"); | ||
247 | } | ||
248 | |||
249 | static int cb710_mmc_receive_pio(struct cb710_slot *slot, | ||
250 | struct sg_mapping_iter *miter, size_t dw_count) | ||
251 | { | ||
252 | if (!(cb710_read_port_8(slot, CB710_MMC_STATUS2_PORT) & CB710_MMC_S2_FIFO_READY)) { | ||
253 | int err = cb710_wait_for_event(slot, | ||
254 | CB710_MMC_S1_PIO_TRANSFER_DONE); | ||
255 | if (err) | ||
256 | return err; | ||
257 | } | ||
258 | |||
259 | cb710_sg_dwiter_write_from_io(miter, | ||
260 | slot->iobase + CB710_MMC_DATA_PORT, dw_count); | ||
261 | |||
262 | return 0; | ||
263 | } | ||
264 | |||
265 | static bool cb710_is_transfer_size_supported(struct mmc_data *data) | ||
266 | { | ||
267 | return !(data->blksz & 15 && (data->blocks != 1 || data->blksz != 8)); | ||
268 | } | ||
269 | |||
270 | static int cb710_mmc_receive(struct cb710_slot *slot, struct mmc_data *data) | ||
271 | { | ||
272 | struct sg_mapping_iter miter; | ||
273 | size_t len, blocks = data->blocks; | ||
274 | int err = 0; | ||
275 | |||
276 | /* TODO: I don't know how/if the hardware handles non-16B-boundary blocks | ||
277 | * except single 8B block */ | ||
278 | if (unlikely(data->blksz & 15 && (data->blocks != 1 || data->blksz != 8))) | ||
279 | return -EINVAL; | ||
280 | |||
281 | sg_miter_start(&miter, data->sg, data->sg_len, 0); | ||
282 | |||
283 | cb710_modify_port_8(slot, CB710_MMC_CONFIG2_PORT, | ||
284 | 15, CB710_MMC_C2_READ_PIO_SIZE_MASK); | ||
285 | |||
286 | cb710_mmc_fifo_hack(slot); | ||
287 | |||
288 | while (blocks-- > 0) { | ||
289 | len = data->blksz; | ||
290 | |||
291 | while (len >= 16) { | ||
292 | err = cb710_mmc_receive_pio(slot, &miter, 4); | ||
293 | if (err) | ||
294 | goto out; | ||
295 | len -= 16; | ||
296 | } | ||
297 | |||
298 | if (!len) | ||
299 | continue; | ||
300 | |||
301 | cb710_modify_port_8(slot, CB710_MMC_CONFIG2_PORT, | ||
302 | len - 1, CB710_MMC_C2_READ_PIO_SIZE_MASK); | ||
303 | |||
304 | len = (len >= 8) ? 4 : 2; | ||
305 | err = cb710_mmc_receive_pio(slot, &miter, len); | ||
306 | if (err) | ||
307 | goto out; | ||
308 | } | ||
309 | out: | ||
310 | cb710_sg_miter_stop_writing(&miter); | ||
311 | return err; | ||
312 | } | ||
313 | |||
314 | static int cb710_mmc_send(struct cb710_slot *slot, struct mmc_data *data) | ||
315 | { | ||
316 | struct sg_mapping_iter miter; | ||
317 | size_t len, blocks = data->blocks; | ||
318 | int err = 0; | ||
319 | |||
320 | /* TODO: I don't know how/if the hardware handles multiple | ||
321 | * non-16B-boundary blocks */ | ||
322 | if (unlikely(data->blocks > 1 && data->blksz & 15)) | ||
323 | return -EINVAL; | ||
324 | |||
325 | sg_miter_start(&miter, data->sg, data->sg_len, 0); | ||
326 | |||
327 | cb710_modify_port_8(slot, CB710_MMC_CONFIG2_PORT, | ||
328 | 0, CB710_MMC_C2_READ_PIO_SIZE_MASK); | ||
329 | |||
330 | while (blocks-- > 0) { | ||
331 | len = (data->blksz + 15) >> 4; | ||
332 | do { | ||
333 | if (!(cb710_read_port_8(slot, CB710_MMC_STATUS2_PORT) | ||
334 | & CB710_MMC_S2_FIFO_EMPTY)) { | ||
335 | err = cb710_wait_for_event(slot, | ||
336 | CB710_MMC_S1_PIO_TRANSFER_DONE); | ||
337 | if (err) | ||
338 | goto out; | ||
339 | } | ||
340 | cb710_sg_dwiter_read_to_io(&miter, | ||
341 | slot->iobase + CB710_MMC_DATA_PORT, 4); | ||
342 | } while (--len); | ||
343 | } | ||
344 | out: | ||
345 | sg_miter_stop(&miter); | ||
346 | return err; | ||
347 | } | ||
348 | |||
349 | static u16 cb710_encode_cmd_flags(struct cb710_mmc_reader *reader, | ||
350 | struct mmc_command *cmd) | ||
351 | { | ||
352 | unsigned int flags = cmd->flags; | ||
353 | u16 cb_flags = 0; | ||
354 | |||
355 | /* Windows driver returned 0 for commands for which no response | ||
356 | * is expected. It happened that there were only two such commands | ||
357 | * used: MMC_GO_IDLE_STATE and MMC_GO_INACTIVE_STATE so it might | ||
358 | * as well be a bug in that driver. | ||
359 | * | ||
360 | * Original driver set bit 14 for MMC/SD application | ||
361 | * commands. There's no difference 'on the wire' and | ||
362 | * it apparently works without it anyway. | ||
363 | */ | ||
364 | |||
365 | switch (flags & MMC_CMD_MASK) { | ||
366 | case MMC_CMD_AC: cb_flags = CB710_MMC_CMD_AC; break; | ||
367 | case MMC_CMD_ADTC: cb_flags = CB710_MMC_CMD_ADTC; break; | ||
368 | case MMC_CMD_BC: cb_flags = CB710_MMC_CMD_BC; break; | ||
369 | case MMC_CMD_BCR: cb_flags = CB710_MMC_CMD_BCR; break; | ||
370 | } | ||
371 | |||
372 | if (flags & MMC_RSP_BUSY) | ||
373 | cb_flags |= CB710_MMC_RSP_BUSY; | ||
374 | |||
375 | cb_flags |= cmd->opcode << CB710_MMC_CMD_CODE_SHIFT; | ||
376 | |||
377 | if (cmd->data && (cmd->data->flags & MMC_DATA_READ)) | ||
378 | cb_flags |= CB710_MMC_DATA_READ; | ||
379 | |||
380 | if (flags & MMC_RSP_PRESENT) { | ||
381 | /* Windows driver set 01 at bits 4,3 except for | ||
382 | * MMC_SET_BLOCKLEN where it set 10. Maybe the | ||
383 | * hardware can do something special about this | ||
384 | * command? The original driver looks buggy/incomplete | ||
385 | * anyway so we ignore this for now. | ||
386 | * | ||
387 | * I assume that 00 here means no response is expected. | ||
388 | */ | ||
389 | cb_flags |= CB710_MMC_RSP_PRESENT; | ||
390 | |||
391 | if (flags & MMC_RSP_136) | ||
392 | cb_flags |= CB710_MMC_RSP_136; | ||
393 | if (!(flags & MMC_RSP_CRC)) | ||
394 | cb_flags |= CB710_MMC_RSP_NO_CRC; | ||
395 | } | ||
396 | |||
397 | return cb_flags; | ||
398 | } | ||
399 | |||
400 | static void cb710_receive_response(struct cb710_slot *slot, | ||
401 | struct mmc_command *cmd) | ||
402 | { | ||
403 | unsigned rsp_opcode, wanted_opcode; | ||
404 | |||
405 | /* Looks like final byte with CRC is always stripped (same as SDHCI) */ | ||
406 | if (cmd->flags & MMC_RSP_136) { | ||
407 | u32 resp[4]; | ||
408 | |||
409 | resp[0] = cb710_read_port_32(slot, CB710_MMC_RESPONSE3_PORT); | ||
410 | resp[1] = cb710_read_port_32(slot, CB710_MMC_RESPONSE2_PORT); | ||
411 | resp[2] = cb710_read_port_32(slot, CB710_MMC_RESPONSE1_PORT); | ||
412 | resp[3] = cb710_read_port_32(slot, CB710_MMC_RESPONSE0_PORT); | ||
413 | rsp_opcode = resp[0] >> 24; | ||
414 | |||
415 | cmd->resp[0] = (resp[0] << 8)|(resp[1] >> 24); | ||
416 | cmd->resp[1] = (resp[1] << 8)|(resp[2] >> 24); | ||
417 | cmd->resp[2] = (resp[2] << 8)|(resp[3] >> 24); | ||
418 | cmd->resp[3] = (resp[3] << 8); | ||
419 | } else { | ||
420 | rsp_opcode = cb710_read_port_32(slot, CB710_MMC_RESPONSE1_PORT) & 0x3F; | ||
421 | cmd->resp[0] = cb710_read_port_32(slot, CB710_MMC_RESPONSE0_PORT); | ||
422 | } | ||
423 | |||
424 | wanted_opcode = (cmd->flags & MMC_RSP_OPCODE) ? cmd->opcode : 0x3F; | ||
425 | if (rsp_opcode != wanted_opcode) | ||
426 | cmd->error = -EILSEQ; | ||
427 | } | ||
428 | |||
429 | static int cb710_mmc_transfer_data(struct cb710_slot *slot, | ||
430 | struct mmc_data *data) | ||
431 | { | ||
432 | int error, to; | ||
433 | |||
434 | if (data->flags & MMC_DATA_READ) | ||
435 | error = cb710_mmc_receive(slot, data); | ||
436 | else | ||
437 | error = cb710_mmc_send(slot, data); | ||
438 | |||
439 | to = cb710_wait_for_event(slot, CB710_MMC_S1_DATA_TRANSFER_DONE); | ||
440 | if (!error) | ||
441 | error = to; | ||
442 | |||
443 | if (!error) | ||
444 | data->bytes_xfered = data->blksz * data->blocks; | ||
445 | return error; | ||
446 | } | ||
447 | |||
448 | static int cb710_mmc_command(struct mmc_host *mmc, struct mmc_command *cmd) | ||
449 | { | ||
450 | struct cb710_slot *slot = cb710_mmc_to_slot(mmc); | ||
451 | struct cb710_mmc_reader *reader = mmc_priv(mmc); | ||
452 | struct mmc_data *data = cmd->data; | ||
453 | |||
454 | u16 cb_cmd = cb710_encode_cmd_flags(reader, cmd); | ||
455 | dev_dbg(cb710_slot_dev(slot), "cmd request: 0x%04X\n", cb_cmd); | ||
456 | |||
457 | if (data) { | ||
458 | if (!cb710_is_transfer_size_supported(data)) { | ||
459 | data->error = -EINVAL; | ||
460 | return -1; | ||
461 | } | ||
462 | cb710_mmc_set_transfer_size(slot, data->blocks, data->blksz); | ||
463 | } | ||
464 | |||
465 | cb710_wait_while_busy(slot, CB710_MMC_S2_BUSY_20|CB710_MMC_S2_BUSY_10); | ||
466 | cb710_write_port_16(slot, CB710_MMC_CMD_TYPE_PORT, cb_cmd); | ||
467 | cb710_wait_while_busy(slot, CB710_MMC_S2_BUSY_20); | ||
468 | cb710_write_port_32(slot, CB710_MMC_CMD_PARAM_PORT, cmd->arg); | ||
469 | cb710_mmc_reset_events(slot); | ||
470 | cb710_wait_while_busy(slot, CB710_MMC_S2_BUSY_20); | ||
471 | cb710_modify_port_8(slot, CB710_MMC_CONFIG0_PORT, 0x01, 0); | ||
472 | |||
473 | cmd->error = cb710_wait_for_event(slot, CB710_MMC_S1_COMMAND_SENT); | ||
474 | if (cmd->error) | ||
475 | return -1; | ||
476 | |||
477 | if (cmd->flags & MMC_RSP_PRESENT) { | ||
478 | cb710_receive_response(slot, cmd); | ||
479 | if (cmd->error) | ||
480 | return -1; | ||
481 | } | ||
482 | |||
483 | if (data) | ||
484 | data->error = cb710_mmc_transfer_data(slot, data); | ||
485 | return 0; | ||
486 | } | ||
487 | |||
488 | static void cb710_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq) | ||
489 | { | ||
490 | struct cb710_slot *slot = cb710_mmc_to_slot(mmc); | ||
491 | struct cb710_mmc_reader *reader = mmc_priv(mmc); | ||
492 | |||
493 | WARN_ON(reader->mrq != NULL); | ||
494 | |||
495 | reader->mrq = mrq; | ||
496 | cb710_mmc_enable_irq(slot, CB710_MMC_IE_TEST_MASK, 0); | ||
497 | |||
498 | if (cb710_mmc_is_card_inserted(slot)) { | ||
499 | if (!cb710_mmc_command(mmc, mrq->cmd) && mrq->stop) | ||
500 | cb710_mmc_command(mmc, mrq->stop); | ||
501 | mdelay(1); | ||
502 | } else { | ||
503 | mrq->cmd->error = -ENOMEDIUM; | ||
504 | } | ||
505 | |||
506 | tasklet_schedule(&reader->finish_req_tasklet); | ||
507 | } | ||
508 | |||
509 | static int cb710_mmc_powerup(struct cb710_slot *slot) | ||
510 | { | ||
511 | #ifdef CONFIG_CB710_DEBUG | ||
512 | struct cb710_chip *chip = cb710_slot_to_chip(slot); | ||
513 | #endif | ||
514 | int err; | ||
515 | |||
516 | /* a lot of magic; see comment in cb710_mmc_set_clock() */ | ||
517 | dev_dbg(cb710_slot_dev(slot), "bus powerup\n"); | ||
518 | cb710_dump_regs(chip, CB710_DUMP_REGS_MMC); | ||
519 | err = cb710_wait_while_busy(slot, CB710_MMC_S2_BUSY_20); | ||
520 | if (unlikely(err)) | ||
521 | return err; | ||
522 | cb710_modify_port_8(slot, CB710_MMC_CONFIG1_PORT, 0x80, 0); | ||
523 | cb710_modify_port_8(slot, CB710_MMC_CONFIG3_PORT, 0x80, 0); | ||
524 | cb710_dump_regs(chip, CB710_DUMP_REGS_MMC); | ||
525 | mdelay(1); | ||
526 | dev_dbg(cb710_slot_dev(slot), "after delay 1\n"); | ||
527 | cb710_dump_regs(chip, CB710_DUMP_REGS_MMC); | ||
528 | err = cb710_wait_while_busy(slot, CB710_MMC_S2_BUSY_20); | ||
529 | if (unlikely(err)) | ||
530 | return err; | ||
531 | cb710_modify_port_8(slot, CB710_MMC_CONFIG1_PORT, 0x09, 0); | ||
532 | cb710_dump_regs(chip, CB710_DUMP_REGS_MMC); | ||
533 | mdelay(1); | ||
534 | dev_dbg(cb710_slot_dev(slot), "after delay 2\n"); | ||
535 | cb710_dump_regs(chip, CB710_DUMP_REGS_MMC); | ||
536 | err = cb710_wait_while_busy(slot, CB710_MMC_S2_BUSY_20); | ||
537 | if (unlikely(err)) | ||
538 | return err; | ||
539 | cb710_modify_port_8(slot, CB710_MMC_CONFIG1_PORT, 0, 0x08); | ||
540 | cb710_dump_regs(chip, CB710_DUMP_REGS_MMC); | ||
541 | mdelay(2); | ||
542 | dev_dbg(cb710_slot_dev(slot), "after delay 3\n"); | ||
543 | cb710_dump_regs(chip, CB710_DUMP_REGS_MMC); | ||
544 | cb710_modify_port_8(slot, CB710_MMC_CONFIG0_PORT, 0x06, 0); | ||
545 | cb710_modify_port_8(slot, CB710_MMC_CONFIG1_PORT, 0x70, 0); | ||
546 | cb710_modify_port_8(slot, CB710_MMC_CONFIG2_PORT, 0x80, 0); | ||
547 | cb710_modify_port_8(slot, CB710_MMC_CONFIG3_PORT, 0x03, 0); | ||
548 | cb710_dump_regs(chip, CB710_DUMP_REGS_MMC); | ||
549 | err = cb710_wait_while_busy(slot, CB710_MMC_S2_BUSY_20); | ||
550 | if (unlikely(err)) | ||
551 | return err; | ||
552 | /* This port behaves weird: quick byte reads of 0x08,0x09 return | ||
553 | * 0xFF,0x00 after writing 0xFFFF to 0x08; it works correctly when | ||
554 | * read/written from userspace... What am I missing here? | ||
555 | * (it doesn't depend on write-to-read delay) */ | ||
556 | cb710_write_port_16(slot, CB710_MMC_CONFIGB_PORT, 0xFFFF); | ||
557 | cb710_modify_port_8(slot, CB710_MMC_CONFIG0_PORT, 0x06, 0); | ||
558 | cb710_dump_regs(chip, CB710_DUMP_REGS_MMC); | ||
559 | dev_dbg(cb710_slot_dev(slot), "bus powerup finished\n"); | ||
560 | |||
561 | return cb710_check_event(slot, 0); | ||
562 | } | ||
563 | |||
564 | static void cb710_mmc_powerdown(struct cb710_slot *slot) | ||
565 | { | ||
566 | cb710_modify_port_8(slot, CB710_MMC_CONFIG1_PORT, 0, 0x81); | ||
567 | cb710_modify_port_8(slot, CB710_MMC_CONFIG3_PORT, 0, 0x80); | ||
568 | } | ||
569 | |||
570 | static void cb710_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | ||
571 | { | ||
572 | struct cb710_slot *slot = cb710_mmc_to_slot(mmc); | ||
573 | struct cb710_mmc_reader *reader = mmc_priv(mmc); | ||
574 | int err; | ||
575 | |||
576 | cb710_mmc_set_clock(mmc, ios->clock); | ||
577 | |||
578 | if (!cb710_mmc_is_card_inserted(slot)) { | ||
579 | dev_dbg(cb710_slot_dev(slot), | ||
580 | "no card inserted - ignoring bus powerup request\n"); | ||
581 | ios->power_mode = MMC_POWER_OFF; | ||
582 | } | ||
583 | |||
584 | if (ios->power_mode != reader->last_power_mode) | ||
585 | switch (ios->power_mode) { | ||
586 | case MMC_POWER_ON: | ||
587 | err = cb710_mmc_powerup(slot); | ||
588 | if (err) { | ||
589 | dev_warn(cb710_slot_dev(slot), | ||
590 | "powerup failed (%d)- retrying\n", err); | ||
591 | cb710_mmc_powerdown(slot); | ||
592 | udelay(1); | ||
593 | err = cb710_mmc_powerup(slot); | ||
594 | if (err) | ||
595 | dev_warn(cb710_slot_dev(slot), | ||
596 | "powerup retry failed (%d) - expect errors\n", | ||
597 | err); | ||
598 | } | ||
599 | reader->last_power_mode = MMC_POWER_ON; | ||
600 | break; | ||
601 | case MMC_POWER_OFF: | ||
602 | cb710_mmc_powerdown(slot); | ||
603 | reader->last_power_mode = MMC_POWER_OFF; | ||
604 | break; | ||
605 | case MMC_POWER_UP: | ||
606 | default: | ||
607 | /* ignore */; | ||
608 | } | ||
609 | |||
610 | cb710_mmc_enable_4bit_data(slot, ios->bus_width != MMC_BUS_WIDTH_1); | ||
611 | |||
612 | cb710_mmc_enable_irq(slot, CB710_MMC_IE_TEST_MASK, 0); | ||
613 | } | ||
614 | |||
615 | static int cb710_mmc_get_ro(struct mmc_host *mmc) | ||
616 | { | ||
617 | struct cb710_slot *slot = cb710_mmc_to_slot(mmc); | ||
618 | |||
619 | return cb710_read_port_8(slot, CB710_MMC_STATUS3_PORT) | ||
620 | & CB710_MMC_S3_WRITE_PROTECTED; | ||
621 | } | ||
622 | |||
623 | static int cb710_mmc_irq_handler(struct cb710_slot *slot) | ||
624 | { | ||
625 | struct mmc_host *mmc = cb710_slot_to_mmc(slot); | ||
626 | struct cb710_mmc_reader *reader = mmc_priv(mmc); | ||
627 | u32 status, config1, config2, irqen; | ||
628 | |||
629 | status = cb710_read_port_32(slot, CB710_MMC_STATUS_PORT); | ||
630 | irqen = cb710_read_port_32(slot, CB710_MMC_IRQ_ENABLE_PORT); | ||
631 | config2 = cb710_read_port_32(slot, CB710_MMC_CONFIGB_PORT); | ||
632 | config1 = cb710_read_port_32(slot, CB710_MMC_CONFIG_PORT); | ||
633 | |||
634 | dev_dbg(cb710_slot_dev(slot), "interrupt; status: %08X, " | ||
635 | "ie: %08X, c2: %08X, c1: %08X\n", | ||
636 | status, irqen, config2, config1); | ||
637 | |||
638 | if (status & (CB710_MMC_S1_CARD_CHANGED << 8)) { | ||
639 | /* ack the event */ | ||
640 | cb710_write_port_8(slot, CB710_MMC_STATUS1_PORT, | ||
641 | CB710_MMC_S1_CARD_CHANGED); | ||
642 | if ((irqen & CB710_MMC_IE_CISTATUS_MASK) | ||
643 | == CB710_MMC_IE_CISTATUS_MASK) | ||
644 | mmc_detect_change(mmc, HZ/5); | ||
645 | } else { | ||
646 | dev_dbg(cb710_slot_dev(slot), "unknown interrupt (test)\n"); | ||
647 | spin_lock(&reader->irq_lock); | ||
648 | __cb710_mmc_enable_irq(slot, 0, CB710_MMC_IE_TEST_MASK); | ||
649 | spin_unlock(&reader->irq_lock); | ||
650 | } | ||
651 | |||
652 | return 1; | ||
653 | } | ||
654 | |||
655 | static void cb710_mmc_finish_request_tasklet(unsigned long data) | ||
656 | { | ||
657 | struct mmc_host *mmc = (void *)data; | ||
658 | struct cb710_mmc_reader *reader = mmc_priv(mmc); | ||
659 | struct mmc_request *mrq = reader->mrq; | ||
660 | |||
661 | reader->mrq = NULL; | ||
662 | mmc_request_done(mmc, mrq); | ||
663 | } | ||
664 | |||
665 | static const struct mmc_host_ops cb710_mmc_host = { | ||
666 | .request = cb710_mmc_request, | ||
667 | .set_ios = cb710_mmc_set_ios, | ||
668 | .get_ro = cb710_mmc_get_ro | ||
669 | }; | ||
670 | |||
671 | #ifdef CONFIG_PM | ||
672 | |||
673 | static int cb710_mmc_suspend(struct platform_device *pdev, pm_message_t state) | ||
674 | { | ||
675 | struct cb710_slot *slot = cb710_pdev_to_slot(pdev); | ||
676 | struct mmc_host *mmc = cb710_slot_to_mmc(slot); | ||
677 | int err; | ||
678 | |||
679 | err = mmc_suspend_host(mmc, state); | ||
680 | if (err) | ||
681 | return err; | ||
682 | |||
683 | cb710_mmc_enable_irq(slot, 0, ~0); | ||
684 | return 0; | ||
685 | } | ||
686 | |||
687 | static int cb710_mmc_resume(struct platform_device *pdev) | ||
688 | { | ||
689 | struct cb710_slot *slot = cb710_pdev_to_slot(pdev); | ||
690 | struct mmc_host *mmc = cb710_slot_to_mmc(slot); | ||
691 | |||
692 | cb710_mmc_enable_irq(slot, 0, ~0); | ||
693 | |||
694 | return mmc_resume_host(mmc); | ||
695 | } | ||
696 | |||
697 | #endif /* CONFIG_PM */ | ||
698 | |||
699 | static int __devinit cb710_mmc_init(struct platform_device *pdev) | ||
700 | { | ||
701 | struct cb710_slot *slot = cb710_pdev_to_slot(pdev); | ||
702 | struct cb710_chip *chip = cb710_slot_to_chip(slot); | ||
703 | struct mmc_host *mmc; | ||
704 | struct cb710_mmc_reader *reader; | ||
705 | int err; | ||
706 | u32 val; | ||
707 | |||
708 | mmc = mmc_alloc_host(sizeof(*reader), cb710_slot_dev(slot)); | ||
709 | if (!mmc) | ||
710 | return -ENOMEM; | ||
711 | |||
712 | dev_set_drvdata(&pdev->dev, mmc); | ||
713 | |||
714 | /* harmless (maybe) magic */ | ||
715 | pci_read_config_dword(chip->pdev, 0x48, &val); | ||
716 | val = cb710_src_freq_mhz[(val >> 16) & 0xF]; | ||
717 | dev_dbg(cb710_slot_dev(slot), "source frequency: %dMHz\n", val); | ||
718 | val *= 1000000; | ||
719 | |||
720 | mmc->ops = &cb710_mmc_host; | ||
721 | mmc->f_max = val; | ||
722 | mmc->f_min = val >> cb710_clock_divider_log2[CB710_MAX_DIVIDER_IDX]; | ||
723 | mmc->ocr_avail = MMC_VDD_32_33|MMC_VDD_33_34; | ||
724 | mmc->caps = MMC_CAP_4_BIT_DATA; | ||
725 | |||
726 | reader = mmc_priv(mmc); | ||
727 | |||
728 | tasklet_init(&reader->finish_req_tasklet, | ||
729 | cb710_mmc_finish_request_tasklet, (unsigned long)mmc); | ||
730 | spin_lock_init(&reader->irq_lock); | ||
731 | cb710_dump_regs(chip, CB710_DUMP_REGS_MMC); | ||
732 | |||
733 | cb710_mmc_enable_irq(slot, 0, ~0); | ||
734 | cb710_set_irq_handler(slot, cb710_mmc_irq_handler); | ||
735 | |||
736 | err = mmc_add_host(mmc); | ||
737 | if (unlikely(err)) | ||
738 | goto err_free_mmc; | ||
739 | |||
740 | dev_dbg(cb710_slot_dev(slot), "mmc_hostname is %s\n", | ||
741 | mmc_hostname(mmc)); | ||
742 | |||
743 | cb710_mmc_enable_irq(slot, CB710_MMC_IE_CARD_INSERTION_STATUS, 0); | ||
744 | |||
745 | return 0; | ||
746 | |||
747 | err_free_mmc: | ||
748 | dev_dbg(cb710_slot_dev(slot), "mmc_add_host() failed: %d\n", err); | ||
749 | |||
750 | mmc_free_host(mmc); | ||
751 | return err; | ||
752 | } | ||
753 | |||
754 | static int __devexit cb710_mmc_exit(struct platform_device *pdev) | ||
755 | { | ||
756 | struct cb710_slot *slot = cb710_pdev_to_slot(pdev); | ||
757 | struct mmc_host *mmc = cb710_slot_to_mmc(slot); | ||
758 | struct cb710_mmc_reader *reader = mmc_priv(mmc); | ||
759 | |||
760 | cb710_mmc_enable_irq(slot, 0, CB710_MMC_IE_CARD_INSERTION_STATUS); | ||
761 | |||
762 | mmc_remove_host(mmc); | ||
763 | |||
764 | /* IRQs should be disabled now, but let's stay on the safe side */ | ||
765 | cb710_mmc_enable_irq(slot, 0, ~0); | ||
766 | cb710_set_irq_handler(slot, NULL); | ||
767 | |||
768 | /* clear config ports - just in case */ | ||
769 | cb710_write_port_32(slot, CB710_MMC_CONFIG_PORT, 0); | ||
770 | cb710_write_port_16(slot, CB710_MMC_CONFIGB_PORT, 0); | ||
771 | |||
772 | tasklet_kill(&reader->finish_req_tasklet); | ||
773 | |||
774 | mmc_free_host(mmc); | ||
775 | return 0; | ||
776 | } | ||
777 | |||
778 | static struct platform_driver cb710_mmc_driver = { | ||
779 | .driver.name = "cb710-mmc", | ||
780 | .probe = cb710_mmc_init, | ||
781 | .remove = __devexit_p(cb710_mmc_exit), | ||
782 | #ifdef CONFIG_PM | ||
783 | .suspend = cb710_mmc_suspend, | ||
784 | .resume = cb710_mmc_resume, | ||
785 | #endif | ||
786 | }; | ||
787 | |||
788 | static int __init cb710_mmc_init_module(void) | ||
789 | { | ||
790 | return platform_driver_register(&cb710_mmc_driver); | ||
791 | } | ||
792 | |||
793 | static void __exit cb710_mmc_cleanup_module(void) | ||
794 | { | ||
795 | platform_driver_unregister(&cb710_mmc_driver); | ||
796 | } | ||
797 | |||
798 | module_init(cb710_mmc_init_module); | ||
799 | module_exit(cb710_mmc_cleanup_module); | ||
800 | |||
801 | MODULE_AUTHOR("Michał Mirosław <mirq-linux@rere.qmqm.pl>"); | ||
802 | MODULE_DESCRIPTION("ENE CB710 memory card reader driver - MMC/SD part"); | ||
803 | MODULE_LICENSE("GPL"); | ||
804 | MODULE_ALIAS("platform:cb710-mmc"); | ||
diff --git a/drivers/mmc/host/cb710-mmc.h b/drivers/mmc/host/cb710-mmc.h new file mode 100644 index 000000000000..e845c776bdd7 --- /dev/null +++ b/drivers/mmc/host/cb710-mmc.h | |||
@@ -0,0 +1,104 @@ | |||
1 | /* | ||
2 | * cb710/cb710-mmc.h | ||
3 | * | ||
4 | * Copyright by Michał Mirosław, 2008-2009 | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #ifndef LINUX_CB710_MMC_H | ||
11 | #define LINUX_CB710_MMC_H | ||
12 | |||
13 | #include <linux/cb710.h> | ||
14 | |||
15 | /* per-MMC-reader structure */ | ||
16 | struct cb710_mmc_reader { | ||
17 | struct tasklet_struct finish_req_tasklet; | ||
18 | struct mmc_request *mrq; | ||
19 | spinlock_t irq_lock; | ||
20 | unsigned char last_power_mode; | ||
21 | }; | ||
22 | |||
23 | /* some device struct walking */ | ||
24 | |||
25 | static inline struct mmc_host *cb710_slot_to_mmc(struct cb710_slot *slot) | ||
26 | { | ||
27 | return dev_get_drvdata(&slot->pdev.dev); | ||
28 | } | ||
29 | |||
30 | static inline struct cb710_slot *cb710_mmc_to_slot(struct mmc_host *mmc) | ||
31 | { | ||
32 | struct platform_device *pdev = container_of(mmc_dev(mmc), | ||
33 | struct platform_device, dev); | ||
34 | return cb710_pdev_to_slot(pdev); | ||
35 | } | ||
36 | |||
37 | /* registers (this might be all wrong ;) */ | ||
38 | |||
39 | #define CB710_MMC_DATA_PORT 0x00 | ||
40 | |||
41 | #define CB710_MMC_CONFIG_PORT 0x04 | ||
42 | #define CB710_MMC_CONFIG0_PORT 0x04 | ||
43 | #define CB710_MMC_CONFIG1_PORT 0x05 | ||
44 | #define CB710_MMC_C1_4BIT_DATA_BUS 0x40 | ||
45 | #define CB710_MMC_CONFIG2_PORT 0x06 | ||
46 | #define CB710_MMC_C2_READ_PIO_SIZE_MASK 0x0F /* N-1 */ | ||
47 | #define CB710_MMC_CONFIG3_PORT 0x07 | ||
48 | |||
49 | #define CB710_MMC_CONFIGB_PORT 0x08 | ||
50 | |||
51 | #define CB710_MMC_IRQ_ENABLE_PORT 0x0C | ||
52 | #define CB710_MMC_IE_TEST_MASK 0x00BF | ||
53 | #define CB710_MMC_IE_CARD_INSERTION_STATUS 0x1000 | ||
54 | #define CB710_MMC_IE_IRQ_ENABLE 0x8000 | ||
55 | #define CB710_MMC_IE_CISTATUS_MASK \ | ||
56 | (CB710_MMC_IE_CARD_INSERTION_STATUS|CB710_MMC_IE_IRQ_ENABLE) | ||
57 | |||
58 | #define CB710_MMC_STATUS_PORT 0x10 | ||
59 | #define CB710_MMC_STATUS_ERROR_EVENTS 0x60FF | ||
60 | #define CB710_MMC_STATUS0_PORT 0x10 | ||
61 | #define CB710_MMC_S0_FIFO_UNDERFLOW 0x40 | ||
62 | #define CB710_MMC_STATUS1_PORT 0x11 | ||
63 | #define CB710_MMC_S1_COMMAND_SENT 0x01 | ||
64 | #define CB710_MMC_S1_DATA_TRANSFER_DONE 0x02 | ||
65 | #define CB710_MMC_S1_PIO_TRANSFER_DONE 0x04 | ||
66 | #define CB710_MMC_S1_CARD_CHANGED 0x10 | ||
67 | #define CB710_MMC_S1_RESET 0x20 | ||
68 | #define CB710_MMC_STATUS2_PORT 0x12 | ||
69 | #define CB710_MMC_S2_FIFO_READY 0x01 | ||
70 | #define CB710_MMC_S2_FIFO_EMPTY 0x02 | ||
71 | #define CB710_MMC_S2_BUSY_10 0x10 | ||
72 | #define CB710_MMC_S2_BUSY_20 0x20 | ||
73 | #define CB710_MMC_STATUS3_PORT 0x13 | ||
74 | #define CB710_MMC_S3_CARD_DETECTED 0x02 | ||
75 | #define CB710_MMC_S3_WRITE_PROTECTED 0x04 | ||
76 | |||
77 | #define CB710_MMC_CMD_TYPE_PORT 0x14 | ||
78 | #define CB710_MMC_RSP_TYPE_MASK 0x0007 | ||
79 | #define CB710_MMC_RSP_R1 (0) | ||
80 | #define CB710_MMC_RSP_136 (5) | ||
81 | #define CB710_MMC_RSP_NO_CRC (2) | ||
82 | #define CB710_MMC_RSP_PRESENT_MASK 0x0018 | ||
83 | #define CB710_MMC_RSP_NONE (0 << 3) | ||
84 | #define CB710_MMC_RSP_PRESENT (1 << 3) | ||
85 | #define CB710_MMC_RSP_PRESENT_X (2 << 3) | ||
86 | #define CB710_MMC_CMD_TYPE_MASK 0x0060 | ||
87 | #define CB710_MMC_CMD_BC (0 << 5) | ||
88 | #define CB710_MMC_CMD_BCR (1 << 5) | ||
89 | #define CB710_MMC_CMD_AC (2 << 5) | ||
90 | #define CB710_MMC_CMD_ADTC (3 << 5) | ||
91 | #define CB710_MMC_DATA_READ 0x0080 | ||
92 | #define CB710_MMC_CMD_CODE_MASK 0x3F00 | ||
93 | #define CB710_MMC_CMD_CODE_SHIFT 8 | ||
94 | #define CB710_MMC_IS_APP_CMD 0x4000 | ||
95 | #define CB710_MMC_RSP_BUSY 0x8000 | ||
96 | |||
97 | #define CB710_MMC_CMD_PARAM_PORT 0x18 | ||
98 | #define CB710_MMC_TRANSFER_SIZE_PORT 0x1C | ||
99 | #define CB710_MMC_RESPONSE0_PORT 0x20 | ||
100 | #define CB710_MMC_RESPONSE1_PORT 0x24 | ||
101 | #define CB710_MMC_RESPONSE2_PORT 0x28 | ||
102 | #define CB710_MMC_RESPONSE3_PORT 0x2C | ||
103 | |||
104 | #endif /* LINUX_CB710_MMC_H */ | ||
diff --git a/drivers/mmc/host/mmc_spi.c b/drivers/mmc/host/mmc_spi.c index f48349d18c92..240608cc7ae9 100644 --- a/drivers/mmc/host/mmc_spi.c +++ b/drivers/mmc/host/mmc_spi.c | |||
@@ -97,6 +97,14 @@ | |||
97 | */ | 97 | */ |
98 | #define r1b_timeout (HZ * 3) | 98 | #define r1b_timeout (HZ * 3) |
99 | 99 | ||
100 | /* One of the critical speed parameters is the amount of data which may | ||
101 | * be transfered in one command. If this value is too low, the SD card | ||
102 | * controller has to do multiple partial block writes (argggh!). With | ||
103 | * today (2008) SD cards there is little speed gain if we transfer more | ||
104 | * than 64 KBytes at a time. So use this value until there is any indication | ||
105 | * that we should do more here. | ||
106 | */ | ||
107 | #define MMC_SPI_BLOCKSATONCE 128 | ||
100 | 108 | ||
101 | /****************************************************************************/ | 109 | /****************************************************************************/ |
102 | 110 | ||
@@ -327,15 +335,16 @@ checkstatus: | |||
327 | 335 | ||
328 | /* Status byte: the entire seven-bit R1 response. */ | 336 | /* Status byte: the entire seven-bit R1 response. */ |
329 | if (cmd->resp[0] != 0) { | 337 | if (cmd->resp[0] != 0) { |
330 | if ((R1_SPI_PARAMETER | R1_SPI_ADDRESS | 338 | if ((R1_SPI_PARAMETER | R1_SPI_ADDRESS) |
331 | | R1_SPI_ILLEGAL_COMMAND) | ||
332 | & cmd->resp[0]) | 339 | & cmd->resp[0]) |
333 | value = -EINVAL; | 340 | value = -EFAULT; /* Bad address */ |
341 | else if (R1_SPI_ILLEGAL_COMMAND & cmd->resp[0]) | ||
342 | value = -ENOSYS; /* Function not implemented */ | ||
334 | else if (R1_SPI_COM_CRC & cmd->resp[0]) | 343 | else if (R1_SPI_COM_CRC & cmd->resp[0]) |
335 | value = -EILSEQ; | 344 | value = -EILSEQ; /* Illegal byte sequence */ |
336 | else if ((R1_SPI_ERASE_SEQ | R1_SPI_ERASE_RESET) | 345 | else if ((R1_SPI_ERASE_SEQ | R1_SPI_ERASE_RESET) |
337 | & cmd->resp[0]) | 346 | & cmd->resp[0]) |
338 | value = -EIO; | 347 | value = -EIO; /* I/O error */ |
339 | /* else R1_SPI_IDLE, "it's resetting" */ | 348 | /* else R1_SPI_IDLE, "it's resetting" */ |
340 | } | 349 | } |
341 | 350 | ||
@@ -1366,6 +1375,10 @@ static int mmc_spi_probe(struct spi_device *spi) | |||
1366 | 1375 | ||
1367 | mmc->ops = &mmc_spi_ops; | 1376 | mmc->ops = &mmc_spi_ops; |
1368 | mmc->max_blk_size = MMC_SPI_BLOCKSIZE; | 1377 | mmc->max_blk_size = MMC_SPI_BLOCKSIZE; |
1378 | mmc->max_hw_segs = MMC_SPI_BLOCKSATONCE; | ||
1379 | mmc->max_phys_segs = MMC_SPI_BLOCKSATONCE; | ||
1380 | mmc->max_req_size = MMC_SPI_BLOCKSATONCE * MMC_SPI_BLOCKSIZE; | ||
1381 | mmc->max_blk_count = MMC_SPI_BLOCKSATONCE; | ||
1369 | 1382 | ||
1370 | mmc->caps = MMC_CAP_SPI; | 1383 | mmc->caps = MMC_CAP_SPI; |
1371 | 1384 | ||
diff --git a/drivers/mmc/host/mxcmmc.c b/drivers/mmc/host/mxcmmc.c index f4cbe473670e..bc14bb1b0579 100644 --- a/drivers/mmc/host/mxcmmc.c +++ b/drivers/mmc/host/mxcmmc.c | |||
@@ -746,8 +746,6 @@ static int mxcmci_probe(struct platform_device *pdev) | |||
746 | } | 746 | } |
747 | 747 | ||
748 | mmc->f_min = clk_get_rate(host->clk) >> 16; | 748 | mmc->f_min = clk_get_rate(host->clk) >> 16; |
749 | if (mmc->f_min < 400000) | ||
750 | mmc->f_min = 400000; | ||
751 | mmc->f_max = clk_get_rate(host->clk) >> 1; | 749 | mmc->f_max = clk_get_rate(host->clk) >> 1; |
752 | 750 | ||
753 | /* recommended in data sheet */ | 751 | /* recommended in data sheet */ |
diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c index dceb5ee3bda0..e7a331de5733 100644 --- a/drivers/mmc/host/omap.c +++ b/drivers/mmc/host/omap.c | |||
@@ -1593,7 +1593,6 @@ static int mmc_omap_resume(struct platform_device *pdev) | |||
1593 | #endif | 1593 | #endif |
1594 | 1594 | ||
1595 | static struct platform_driver mmc_omap_driver = { | 1595 | static struct platform_driver mmc_omap_driver = { |
1596 | .probe = mmc_omap_probe, | ||
1597 | .remove = mmc_omap_remove, | 1596 | .remove = mmc_omap_remove, |
1598 | .suspend = mmc_omap_suspend, | 1597 | .suspend = mmc_omap_suspend, |
1599 | .resume = mmc_omap_resume, | 1598 | .resume = mmc_omap_resume, |
@@ -1605,7 +1604,7 @@ static struct platform_driver mmc_omap_driver = { | |||
1605 | 1604 | ||
1606 | static int __init mmc_omap_init(void) | 1605 | static int __init mmc_omap_init(void) |
1607 | { | 1606 | { |
1608 | return platform_driver_register(&mmc_omap_driver); | 1607 | return platform_driver_probe(&mmc_omap_driver, mmc_omap_probe); |
1609 | } | 1608 | } |
1610 | 1609 | ||
1611 | static void __exit mmc_omap_exit(void) | 1610 | static void __exit mmc_omap_exit(void) |
diff --git a/drivers/mmc/host/pxamci.c b/drivers/mmc/host/pxamci.c index 430095725f9f..d7d7109ef47e 100644 --- a/drivers/mmc/host/pxamci.c +++ b/drivers/mmc/host/pxamci.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/err.h> | 27 | #include <linux/err.h> |
28 | #include <linux/mmc/host.h> | 28 | #include <linux/mmc/host.h> |
29 | #include <linux/io.h> | 29 | #include <linux/io.h> |
30 | #include <linux/regulator/consumer.h> | ||
30 | 31 | ||
31 | #include <asm/sizes.h> | 32 | #include <asm/sizes.h> |
32 | 33 | ||
@@ -67,8 +68,42 @@ struct pxamci_host { | |||
67 | unsigned int dma_dir; | 68 | unsigned int dma_dir; |
68 | unsigned int dma_drcmrrx; | 69 | unsigned int dma_drcmrrx; |
69 | unsigned int dma_drcmrtx; | 70 | unsigned int dma_drcmrtx; |
71 | |||
72 | struct regulator *vcc; | ||
70 | }; | 73 | }; |
71 | 74 | ||
75 | static inline void pxamci_init_ocr(struct pxamci_host *host) | ||
76 | { | ||
77 | #ifdef CONFIG_REGULATOR | ||
78 | host->vcc = regulator_get(mmc_dev(host->mmc), "vmmc"); | ||
79 | |||
80 | if (IS_ERR(host->vcc)) | ||
81 | host->vcc = NULL; | ||
82 | else { | ||
83 | host->mmc->ocr_avail = mmc_regulator_get_ocrmask(host->vcc); | ||
84 | if (host->pdata && host->pdata->ocr_mask) | ||
85 | dev_warn(mmc_dev(host->mmc), | ||
86 | "ocr_mask/setpower will not be used\n"); | ||
87 | } | ||
88 | #endif | ||
89 | if (host->vcc == NULL) { | ||
90 | /* fall-back to platform data */ | ||
91 | host->mmc->ocr_avail = host->pdata ? | ||
92 | host->pdata->ocr_mask : | ||
93 | MMC_VDD_32_33 | MMC_VDD_33_34; | ||
94 | } | ||
95 | } | ||
96 | |||
97 | static inline void pxamci_set_power(struct pxamci_host *host, unsigned int vdd) | ||
98 | { | ||
99 | #ifdef CONFIG_REGULATOR | ||
100 | if (host->vcc) | ||
101 | mmc_regulator_set_ocr(host->vcc, vdd); | ||
102 | #endif | ||
103 | if (!host->vcc && host->pdata && host->pdata->setpower) | ||
104 | host->pdata->setpower(mmc_dev(host->mmc), vdd); | ||
105 | } | ||
106 | |||
72 | static void pxamci_stop_clock(struct pxamci_host *host) | 107 | static void pxamci_stop_clock(struct pxamci_host *host) |
73 | { | 108 | { |
74 | if (readl(host->base + MMC_STAT) & STAT_CLK_EN) { | 109 | if (readl(host->base + MMC_STAT) & STAT_CLK_EN) { |
@@ -438,8 +473,7 @@ static void pxamci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | |||
438 | if (host->power_mode != ios->power_mode) { | 473 | if (host->power_mode != ios->power_mode) { |
439 | host->power_mode = ios->power_mode; | 474 | host->power_mode = ios->power_mode; |
440 | 475 | ||
441 | if (host->pdata && host->pdata->setpower) | 476 | pxamci_set_power(host, ios->vdd); |
442 | host->pdata->setpower(mmc_dev(mmc), ios->vdd); | ||
443 | 477 | ||
444 | if (ios->power_mode == MMC_POWER_ON) | 478 | if (ios->power_mode == MMC_POWER_ON) |
445 | host->cmdat |= CMDAT_INIT; | 479 | host->cmdat |= CMDAT_INIT; |
@@ -562,9 +596,8 @@ static int pxamci_probe(struct platform_device *pdev) | |||
562 | mmc->f_max = (cpu_is_pxa300() || cpu_is_pxa310()) ? 26000000 | 596 | mmc->f_max = (cpu_is_pxa300() || cpu_is_pxa310()) ? 26000000 |
563 | : host->clkrate; | 597 | : host->clkrate; |
564 | 598 | ||
565 | mmc->ocr_avail = host->pdata ? | 599 | pxamci_init_ocr(host); |
566 | host->pdata->ocr_mask : | 600 | |
567 | MMC_VDD_32_33|MMC_VDD_33_34; | ||
568 | mmc->caps = 0; | 601 | mmc->caps = 0; |
569 | host->cmdat = 0; | 602 | host->cmdat = 0; |
570 | if (!cpu_is_pxa25x()) { | 603 | if (!cpu_is_pxa25x()) { |
@@ -661,6 +694,9 @@ static int pxamci_remove(struct platform_device *pdev) | |||
661 | if (mmc) { | 694 | if (mmc) { |
662 | struct pxamci_host *host = mmc_priv(mmc); | 695 | struct pxamci_host *host = mmc_priv(mmc); |
663 | 696 | ||
697 | if (host->vcc) | ||
698 | regulator_put(host->vcc); | ||
699 | |||
664 | if (host->pdata && host->pdata->exit) | 700 | if (host->pdata && host->pdata->exit) |
665 | host->pdata->exit(&pdev->dev, mmc); | 701 | host->pdata->exit(&pdev->dev, mmc); |
666 | 702 | ||
diff --git a/drivers/mmc/host/sdhci-pltfm.c b/drivers/mmc/host/sdhci-pltfm.c new file mode 100644 index 000000000000..297f40ae6ad5 --- /dev/null +++ b/drivers/mmc/host/sdhci-pltfm.c | |||
@@ -0,0 +1,168 @@ | |||
1 | /* | ||
2 | * sdhci-pltfm.c Support for SDHCI platform devices | ||
3 | * Copyright (c) 2009 Intel Corporation | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * published by the Free Software Foundation. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
17 | */ | ||
18 | |||
19 | /* Supports: | ||
20 | * SDHCI platform devices | ||
21 | * | ||
22 | * Inspired by sdhci-pci.c, by Pierre Ossman | ||
23 | */ | ||
24 | |||
25 | #include <linux/delay.h> | ||
26 | #include <linux/highmem.h> | ||
27 | #include <linux/platform_device.h> | ||
28 | |||
29 | #include <linux/mmc/host.h> | ||
30 | |||
31 | #include <linux/io.h> | ||
32 | |||
33 | #include "sdhci.h" | ||
34 | |||
35 | /*****************************************************************************\ | ||
36 | * * | ||
37 | * SDHCI core callbacks * | ||
38 | * * | ||
39 | \*****************************************************************************/ | ||
40 | |||
41 | static struct sdhci_ops sdhci_pltfm_ops = { | ||
42 | }; | ||
43 | |||
44 | /*****************************************************************************\ | ||
45 | * * | ||
46 | * Device probing/removal * | ||
47 | * * | ||
48 | \*****************************************************************************/ | ||
49 | |||
50 | static int __devinit sdhci_pltfm_probe(struct platform_device *pdev) | ||
51 | { | ||
52 | struct sdhci_host *host; | ||
53 | struct resource *iomem; | ||
54 | int ret; | ||
55 | |||
56 | BUG_ON(pdev == NULL); | ||
57 | |||
58 | iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
59 | if (!iomem) { | ||
60 | ret = -ENOMEM; | ||
61 | goto err; | ||
62 | } | ||
63 | |||
64 | if (resource_size(iomem) != 0x100) | ||
65 | dev_err(&pdev->dev, "Invalid iomem size. You may " | ||
66 | "experience problems.\n"); | ||
67 | |||
68 | if (pdev->dev.parent) | ||
69 | host = sdhci_alloc_host(pdev->dev.parent, 0); | ||
70 | else | ||
71 | host = sdhci_alloc_host(&pdev->dev, 0); | ||
72 | |||
73 | if (IS_ERR(host)) { | ||
74 | ret = PTR_ERR(host); | ||
75 | goto err; | ||
76 | } | ||
77 | |||
78 | host->hw_name = "platform"; | ||
79 | host->ops = &sdhci_pltfm_ops; | ||
80 | host->irq = platform_get_irq(pdev, 0); | ||
81 | |||
82 | if (!request_mem_region(iomem->start, resource_size(iomem), | ||
83 | mmc_hostname(host->mmc))) { | ||
84 | dev_err(&pdev->dev, "cannot request region\n"); | ||
85 | ret = -EBUSY; | ||
86 | goto err_request; | ||
87 | } | ||
88 | |||
89 | host->ioaddr = ioremap(iomem->start, resource_size(iomem)); | ||
90 | if (!host->ioaddr) { | ||
91 | dev_err(&pdev->dev, "failed to remap registers\n"); | ||
92 | ret = -ENOMEM; | ||
93 | goto err_remap; | ||
94 | } | ||
95 | |||
96 | ret = sdhci_add_host(host); | ||
97 | if (ret) | ||
98 | goto err_add_host; | ||
99 | |||
100 | platform_set_drvdata(pdev, host); | ||
101 | |||
102 | return 0; | ||
103 | |||
104 | err_add_host: | ||
105 | iounmap(host->ioaddr); | ||
106 | err_remap: | ||
107 | release_mem_region(iomem->start, resource_size(iomem)); | ||
108 | err_request: | ||
109 | sdhci_free_host(host); | ||
110 | err: | ||
111 | printk(KERN_ERR"Probing of sdhci-pltfm failed: %d\n", ret); | ||
112 | return ret; | ||
113 | } | ||
114 | |||
115 | static int __devexit sdhci_pltfm_remove(struct platform_device *pdev) | ||
116 | { | ||
117 | struct sdhci_host *host = platform_get_drvdata(pdev); | ||
118 | struct resource *iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
119 | int dead; | ||
120 | u32 scratch; | ||
121 | |||
122 | dead = 0; | ||
123 | scratch = readl(host->ioaddr + SDHCI_INT_STATUS); | ||
124 | if (scratch == (u32)-1) | ||
125 | dead = 1; | ||
126 | |||
127 | sdhci_remove_host(host, dead); | ||
128 | iounmap(host->ioaddr); | ||
129 | release_mem_region(iomem->start, resource_size(iomem)); | ||
130 | sdhci_free_host(host); | ||
131 | platform_set_drvdata(pdev, NULL); | ||
132 | |||
133 | return 0; | ||
134 | } | ||
135 | |||
136 | static struct platform_driver sdhci_pltfm_driver = { | ||
137 | .driver = { | ||
138 | .name = "sdhci", | ||
139 | .owner = THIS_MODULE, | ||
140 | }, | ||
141 | .probe = sdhci_pltfm_probe, | ||
142 | .remove = __devexit_p(sdhci_pltfm_remove), | ||
143 | }; | ||
144 | |||
145 | /*****************************************************************************\ | ||
146 | * * | ||
147 | * Driver init/exit * | ||
148 | * * | ||
149 | \*****************************************************************************/ | ||
150 | |||
151 | static int __init sdhci_drv_init(void) | ||
152 | { | ||
153 | return platform_driver_register(&sdhci_pltfm_driver); | ||
154 | } | ||
155 | |||
156 | static void __exit sdhci_drv_exit(void) | ||
157 | { | ||
158 | platform_driver_unregister(&sdhci_pltfm_driver); | ||
159 | } | ||
160 | |||
161 | module_init(sdhci_drv_init); | ||
162 | module_exit(sdhci_drv_exit); | ||
163 | |||
164 | MODULE_DESCRIPTION("Secure Digital Host Controller Interface platform driver"); | ||
165 | MODULE_AUTHOR("Mocean Laboratories <info@mocean-labs.com>"); | ||
166 | MODULE_LICENSE("GPL v2"); | ||
167 | MODULE_ALIAS("platform:sdhci"); | ||
168 | |||
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 9234be2226e7..35789c6edc19 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c | |||
@@ -78,6 +78,11 @@ static void sdhci_dumpregs(struct sdhci_host *host) | |||
78 | sdhci_readl(host, SDHCI_CAPABILITIES), | 78 | sdhci_readl(host, SDHCI_CAPABILITIES), |
79 | sdhci_readl(host, SDHCI_MAX_CURRENT)); | 79 | sdhci_readl(host, SDHCI_MAX_CURRENT)); |
80 | 80 | ||
81 | if (host->flags & SDHCI_USE_ADMA) | ||
82 | printk(KERN_DEBUG DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n", | ||
83 | readl(host->ioaddr + SDHCI_ADMA_ERROR), | ||
84 | readl(host->ioaddr + SDHCI_ADMA_ADDRESS)); | ||
85 | |||
81 | printk(KERN_DEBUG DRIVER_NAME ": ===========================================\n"); | 86 | printk(KERN_DEBUG DRIVER_NAME ": ===========================================\n"); |
82 | } | 87 | } |
83 | 88 | ||
@@ -1005,12 +1010,34 @@ static void sdhci_set_power(struct sdhci_host *host, unsigned short power) | |||
1005 | { | 1010 | { |
1006 | u8 pwr; | 1011 | u8 pwr; |
1007 | 1012 | ||
1008 | if (host->power == power) | 1013 | if (power == (unsigned short)-1) |
1014 | pwr = 0; | ||
1015 | else { | ||
1016 | switch (1 << power) { | ||
1017 | case MMC_VDD_165_195: | ||
1018 | pwr = SDHCI_POWER_180; | ||
1019 | break; | ||
1020 | case MMC_VDD_29_30: | ||
1021 | case MMC_VDD_30_31: | ||
1022 | pwr = SDHCI_POWER_300; | ||
1023 | break; | ||
1024 | case MMC_VDD_32_33: | ||
1025 | case MMC_VDD_33_34: | ||
1026 | pwr = SDHCI_POWER_330; | ||
1027 | break; | ||
1028 | default: | ||
1029 | BUG(); | ||
1030 | } | ||
1031 | } | ||
1032 | |||
1033 | if (host->pwr == pwr) | ||
1009 | return; | 1034 | return; |
1010 | 1035 | ||
1011 | if (power == (unsigned short)-1) { | 1036 | host->pwr = pwr; |
1037 | |||
1038 | if (pwr == 0) { | ||
1012 | sdhci_writeb(host, 0, SDHCI_POWER_CONTROL); | 1039 | sdhci_writeb(host, 0, SDHCI_POWER_CONTROL); |
1013 | goto out; | 1040 | return; |
1014 | } | 1041 | } |
1015 | 1042 | ||
1016 | /* | 1043 | /* |
@@ -1020,35 +1047,16 @@ static void sdhci_set_power(struct sdhci_host *host, unsigned short power) | |||
1020 | if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE)) | 1047 | if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE)) |
1021 | sdhci_writeb(host, 0, SDHCI_POWER_CONTROL); | 1048 | sdhci_writeb(host, 0, SDHCI_POWER_CONTROL); |
1022 | 1049 | ||
1023 | pwr = SDHCI_POWER_ON; | ||
1024 | |||
1025 | switch (1 << power) { | ||
1026 | case MMC_VDD_165_195: | ||
1027 | pwr |= SDHCI_POWER_180; | ||
1028 | break; | ||
1029 | case MMC_VDD_29_30: | ||
1030 | case MMC_VDD_30_31: | ||
1031 | pwr |= SDHCI_POWER_300; | ||
1032 | break; | ||
1033 | case MMC_VDD_32_33: | ||
1034 | case MMC_VDD_33_34: | ||
1035 | pwr |= SDHCI_POWER_330; | ||
1036 | break; | ||
1037 | default: | ||
1038 | BUG(); | ||
1039 | } | ||
1040 | |||
1041 | /* | 1050 | /* |
1042 | * At least the Marvell CaFe chip gets confused if we set the voltage | 1051 | * At least the Marvell CaFe chip gets confused if we set the voltage |
1043 | * and set turn on power at the same time, so set the voltage first. | 1052 | * and set turn on power at the same time, so set the voltage first. |
1044 | */ | 1053 | */ |
1045 | if ((host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)) | 1054 | if ((host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)) |
1046 | sdhci_writeb(host, pwr & ~SDHCI_POWER_ON, SDHCI_POWER_CONTROL); | 1055 | sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL); |
1047 | 1056 | ||
1048 | sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL); | 1057 | pwr |= SDHCI_POWER_ON; |
1049 | 1058 | ||
1050 | out: | 1059 | sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL); |
1051 | host->power = power; | ||
1052 | } | 1060 | } |
1053 | 1061 | ||
1054 | /*****************************************************************************\ | 1062 | /*****************************************************************************\ |
diff --git a/drivers/mmc/host/sdhci.h b/drivers/mmc/host/sdhci.h index 65c6f996bbd3..2de08349c3ca 100644 --- a/drivers/mmc/host/sdhci.h +++ b/drivers/mmc/host/sdhci.h | |||
@@ -255,7 +255,7 @@ struct sdhci_host { | |||
255 | unsigned int timeout_clk; /* Timeout freq (KHz) */ | 255 | unsigned int timeout_clk; /* Timeout freq (KHz) */ |
256 | 256 | ||
257 | unsigned int clock; /* Current clock (MHz) */ | 257 | unsigned int clock; /* Current clock (MHz) */ |
258 | unsigned short power; /* Current voltage */ | 258 | u8 pwr; /* Current voltage */ |
259 | 259 | ||
260 | struct mmc_request *mrq; /* Current request */ | 260 | struct mmc_request *mrq; /* Current request */ |
261 | struct mmc_command *cmd; /* Current command */ | 261 | struct mmc_command *cmd; /* Current command */ |
diff --git a/drivers/mmc/host/tmio_mmc.c b/drivers/mmc/host/tmio_mmc.c index 63fbd5b7d312..91991b460c45 100644 --- a/drivers/mmc/host/tmio_mmc.c +++ b/drivers/mmc/host/tmio_mmc.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * | 10 | * |
11 | * Driver for the MMC / SD / SDIO cell found in: | 11 | * Driver for the MMC / SD / SDIO cell found in: |
12 | * | 12 | * |
13 | * TC6393XB TC6391XB TC6387XB T7L66XB | 13 | * TC6393XB TC6391XB TC6387XB T7L66XB ASIC3 |
14 | * | 14 | * |
15 | * This driver draws mainly on scattered spec sheets, Reverse engineering | 15 | * This driver draws mainly on scattered spec sheets, Reverse engineering |
16 | * of the toshiba e800 SD driver and some parts of the 2.4 ASIC3 driver (4 bit | 16 | * of the toshiba e800 SD driver and some parts of the 2.4 ASIC3 driver (4 bit |
@@ -35,69 +35,47 @@ | |||
35 | 35 | ||
36 | #include "tmio_mmc.h" | 36 | #include "tmio_mmc.h" |
37 | 37 | ||
38 | /* | ||
39 | * Fixme - documentation conflicts on what the clock values are for the | ||
40 | * various dividers. | ||
41 | * One document I have says that its a divisor of a 24MHz clock, another 33. | ||
42 | * This probably depends on HCLK for a given platform, so we may need to | ||
43 | * require HCLK be passed to us from the MFD core. | ||
44 | * | ||
45 | */ | ||
46 | |||
47 | static void tmio_mmc_set_clock(struct tmio_mmc_host *host, int new_clock) | 38 | static void tmio_mmc_set_clock(struct tmio_mmc_host *host, int new_clock) |
48 | { | 39 | { |
49 | void __iomem *cnf = host->cnf; | ||
50 | void __iomem *ctl = host->ctl; | ||
51 | u32 clk = 0, clock; | 40 | u32 clk = 0, clock; |
52 | 41 | ||
53 | if (new_clock) { | 42 | if (new_clock) { |
54 | for (clock = 46875, clk = 0x100; new_clock >= (clock<<1); ) { | 43 | for (clock = host->mmc->f_min, clk = 0x80000080; |
44 | new_clock >= (clock<<1); clk >>= 1) | ||
55 | clock <<= 1; | 45 | clock <<= 1; |
56 | clk >>= 1; | ||
57 | } | ||
58 | if (clk & 0x1) | ||
59 | clk = 0x20000; | ||
60 | |||
61 | clk >>= 2; | ||
62 | tmio_iowrite8((clk & 0x8000) ? 0 : 1, cnf + CNF_SD_CLK_MODE); | ||
63 | clk |= 0x100; | 46 | clk |= 0x100; |
64 | } | 47 | } |
65 | 48 | ||
66 | tmio_iowrite16(clk, ctl + CTL_SD_CARD_CLK_CTL); | 49 | sd_config_write8(host, CNF_SD_CLK_MODE, clk >> 22); |
50 | sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, clk & 0x1ff); | ||
67 | } | 51 | } |
68 | 52 | ||
69 | static void tmio_mmc_clk_stop(struct tmio_mmc_host *host) | 53 | static void tmio_mmc_clk_stop(struct tmio_mmc_host *host) |
70 | { | 54 | { |
71 | void __iomem *ctl = host->ctl; | 55 | sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0000); |
72 | |||
73 | tmio_iowrite16(0x0000, ctl + CTL_CLK_AND_WAIT_CTL); | ||
74 | msleep(10); | 56 | msleep(10); |
75 | tmio_iowrite16(tmio_ioread16(ctl + CTL_SD_CARD_CLK_CTL) & ~0x0100, | 57 | sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~0x0100 & |
76 | ctl + CTL_SD_CARD_CLK_CTL); | 58 | sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL)); |
77 | msleep(10); | 59 | msleep(10); |
78 | } | 60 | } |
79 | 61 | ||
80 | static void tmio_mmc_clk_start(struct tmio_mmc_host *host) | 62 | static void tmio_mmc_clk_start(struct tmio_mmc_host *host) |
81 | { | 63 | { |
82 | void __iomem *ctl = host->ctl; | 64 | sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, 0x0100 | |
83 | 65 | sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL)); | |
84 | tmio_iowrite16(tmio_ioread16(ctl + CTL_SD_CARD_CLK_CTL) | 0x0100, | ||
85 | ctl + CTL_SD_CARD_CLK_CTL); | ||
86 | msleep(10); | 66 | msleep(10); |
87 | tmio_iowrite16(0x0100, ctl + CTL_CLK_AND_WAIT_CTL); | 67 | sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0100); |
88 | msleep(10); | 68 | msleep(10); |
89 | } | 69 | } |
90 | 70 | ||
91 | static void reset(struct tmio_mmc_host *host) | 71 | static void reset(struct tmio_mmc_host *host) |
92 | { | 72 | { |
93 | void __iomem *ctl = host->ctl; | ||
94 | |||
95 | /* FIXME - should we set stop clock reg here */ | 73 | /* FIXME - should we set stop clock reg here */ |
96 | tmio_iowrite16(0x0000, ctl + CTL_RESET_SD); | 74 | sd_ctrl_write16(host, CTL_RESET_SD, 0x0000); |
97 | tmio_iowrite16(0x0000, ctl + CTL_RESET_SDIO); | 75 | sd_ctrl_write16(host, CTL_RESET_SDIO, 0x0000); |
98 | msleep(10); | 76 | msleep(10); |
99 | tmio_iowrite16(0x0001, ctl + CTL_RESET_SD); | 77 | sd_ctrl_write16(host, CTL_RESET_SD, 0x0001); |
100 | tmio_iowrite16(0x0001, ctl + CTL_RESET_SDIO); | 78 | sd_ctrl_write16(host, CTL_RESET_SDIO, 0x0001); |
101 | msleep(10); | 79 | msleep(10); |
102 | } | 80 | } |
103 | 81 | ||
@@ -129,13 +107,12 @@ tmio_mmc_finish_request(struct tmio_mmc_host *host) | |||
129 | static int | 107 | static int |
130 | tmio_mmc_start_command(struct tmio_mmc_host *host, struct mmc_command *cmd) | 108 | tmio_mmc_start_command(struct tmio_mmc_host *host, struct mmc_command *cmd) |
131 | { | 109 | { |
132 | void __iomem *ctl = host->ctl; | ||
133 | struct mmc_data *data = host->data; | 110 | struct mmc_data *data = host->data; |
134 | int c = cmd->opcode; | 111 | int c = cmd->opcode; |
135 | 112 | ||
136 | /* Command 12 is handled by hardware */ | 113 | /* Command 12 is handled by hardware */ |
137 | if (cmd->opcode == 12 && !cmd->arg) { | 114 | if (cmd->opcode == 12 && !cmd->arg) { |
138 | tmio_iowrite16(0x001, ctl + CTL_STOP_INTERNAL_ACTION); | 115 | sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x001); |
139 | return 0; | 116 | return 0; |
140 | } | 117 | } |
141 | 118 | ||
@@ -160,18 +137,18 @@ tmio_mmc_start_command(struct tmio_mmc_host *host, struct mmc_command *cmd) | |||
160 | if (data) { | 137 | if (data) { |
161 | c |= DATA_PRESENT; | 138 | c |= DATA_PRESENT; |
162 | if (data->blocks > 1) { | 139 | if (data->blocks > 1) { |
163 | tmio_iowrite16(0x100, ctl + CTL_STOP_INTERNAL_ACTION); | 140 | sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x100); |
164 | c |= TRANSFER_MULTI; | 141 | c |= TRANSFER_MULTI; |
165 | } | 142 | } |
166 | if (data->flags & MMC_DATA_READ) | 143 | if (data->flags & MMC_DATA_READ) |
167 | c |= TRANSFER_READ; | 144 | c |= TRANSFER_READ; |
168 | } | 145 | } |
169 | 146 | ||
170 | enable_mmc_irqs(ctl, TMIO_MASK_CMD); | 147 | enable_mmc_irqs(host, TMIO_MASK_CMD); |
171 | 148 | ||
172 | /* Fire off the command */ | 149 | /* Fire off the command */ |
173 | tmio_iowrite32(cmd->arg, ctl + CTL_ARG_REG); | 150 | sd_ctrl_write32(host, CTL_ARG_REG, cmd->arg); |
174 | tmio_iowrite16(c, ctl + CTL_SD_CMD); | 151 | sd_ctrl_write16(host, CTL_SD_CMD, c); |
175 | 152 | ||
176 | return 0; | 153 | return 0; |
177 | } | 154 | } |
@@ -183,7 +160,6 @@ tmio_mmc_start_command(struct tmio_mmc_host *host, struct mmc_command *cmd) | |||
183 | */ | 160 | */ |
184 | static inline void tmio_mmc_pio_irq(struct tmio_mmc_host *host) | 161 | static inline void tmio_mmc_pio_irq(struct tmio_mmc_host *host) |
185 | { | 162 | { |
186 | void __iomem *ctl = host->ctl; | ||
187 | struct mmc_data *data = host->data; | 163 | struct mmc_data *data = host->data; |
188 | unsigned short *buf; | 164 | unsigned short *buf; |
189 | unsigned int count; | 165 | unsigned int count; |
@@ -206,9 +182,9 @@ static inline void tmio_mmc_pio_irq(struct tmio_mmc_host *host) | |||
206 | 182 | ||
207 | /* Transfer the data */ | 183 | /* Transfer the data */ |
208 | if (data->flags & MMC_DATA_READ) | 184 | if (data->flags & MMC_DATA_READ) |
209 | tmio_ioread16_rep(ctl + CTL_SD_DATA_PORT, buf, count >> 1); | 185 | sd_ctrl_read16_rep(host, CTL_SD_DATA_PORT, buf, count >> 1); |
210 | else | 186 | else |
211 | tmio_iowrite16_rep(ctl + CTL_SD_DATA_PORT, buf, count >> 1); | 187 | sd_ctrl_write16_rep(host, CTL_SD_DATA_PORT, buf, count >> 1); |
212 | 188 | ||
213 | host->sg_off += count; | 189 | host->sg_off += count; |
214 | 190 | ||
@@ -222,7 +198,6 @@ static inline void tmio_mmc_pio_irq(struct tmio_mmc_host *host) | |||
222 | 198 | ||
223 | static inline void tmio_mmc_data_irq(struct tmio_mmc_host *host) | 199 | static inline void tmio_mmc_data_irq(struct tmio_mmc_host *host) |
224 | { | 200 | { |
225 | void __iomem *ctl = host->ctl; | ||
226 | struct mmc_data *data = host->data; | 201 | struct mmc_data *data = host->data; |
227 | struct mmc_command *stop; | 202 | struct mmc_command *stop; |
228 | 203 | ||
@@ -251,13 +226,13 @@ static inline void tmio_mmc_data_irq(struct tmio_mmc_host *host) | |||
251 | */ | 226 | */ |
252 | 227 | ||
253 | if (data->flags & MMC_DATA_READ) | 228 | if (data->flags & MMC_DATA_READ) |
254 | disable_mmc_irqs(ctl, TMIO_MASK_READOP); | 229 | disable_mmc_irqs(host, TMIO_MASK_READOP); |
255 | else | 230 | else |
256 | disable_mmc_irqs(ctl, TMIO_MASK_WRITEOP); | 231 | disable_mmc_irqs(host, TMIO_MASK_WRITEOP); |
257 | 232 | ||
258 | if (stop) { | 233 | if (stop) { |
259 | if (stop->opcode == 12 && !stop->arg) | 234 | if (stop->opcode == 12 && !stop->arg) |
260 | tmio_iowrite16(0x000, ctl + CTL_STOP_INTERNAL_ACTION); | 235 | sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x000); |
261 | else | 236 | else |
262 | BUG(); | 237 | BUG(); |
263 | } | 238 | } |
@@ -268,9 +243,8 @@ static inline void tmio_mmc_data_irq(struct tmio_mmc_host *host) | |||
268 | static inline void tmio_mmc_cmd_irq(struct tmio_mmc_host *host, | 243 | static inline void tmio_mmc_cmd_irq(struct tmio_mmc_host *host, |
269 | unsigned int stat) | 244 | unsigned int stat) |
270 | { | 245 | { |
271 | void __iomem *ctl = host->ctl, *addr; | ||
272 | struct mmc_command *cmd = host->cmd; | 246 | struct mmc_command *cmd = host->cmd; |
273 | int i; | 247 | int i, addr; |
274 | 248 | ||
275 | if (!host->cmd) { | 249 | if (!host->cmd) { |
276 | pr_debug("Spurious CMD irq\n"); | 250 | pr_debug("Spurious CMD irq\n"); |
@@ -284,8 +258,8 @@ static inline void tmio_mmc_cmd_irq(struct tmio_mmc_host *host, | |||
284 | * modify the order of the response for short response command types. | 258 | * modify the order of the response for short response command types. |
285 | */ | 259 | */ |
286 | 260 | ||
287 | for (i = 3, addr = ctl + CTL_RESPONSE ; i >= 0 ; i--, addr += 4) | 261 | for (i = 3, addr = CTL_RESPONSE ; i >= 0 ; i--, addr += 4) |
288 | cmd->resp[i] = tmio_ioread32(addr); | 262 | cmd->resp[i] = sd_ctrl_read32(host, addr); |
289 | 263 | ||
290 | if (cmd->flags & MMC_RSP_136) { | 264 | if (cmd->flags & MMC_RSP_136) { |
291 | cmd->resp[0] = (cmd->resp[0] << 8) | (cmd->resp[1] >> 24); | 265 | cmd->resp[0] = (cmd->resp[0] << 8) | (cmd->resp[1] >> 24); |
@@ -307,9 +281,9 @@ static inline void tmio_mmc_cmd_irq(struct tmio_mmc_host *host, | |||
307 | */ | 281 | */ |
308 | if (host->data && !cmd->error) { | 282 | if (host->data && !cmd->error) { |
309 | if (host->data->flags & MMC_DATA_READ) | 283 | if (host->data->flags & MMC_DATA_READ) |
310 | enable_mmc_irqs(ctl, TMIO_MASK_READOP); | 284 | enable_mmc_irqs(host, TMIO_MASK_READOP); |
311 | else | 285 | else |
312 | enable_mmc_irqs(ctl, TMIO_MASK_WRITEOP); | 286 | enable_mmc_irqs(host, TMIO_MASK_WRITEOP); |
313 | } else { | 287 | } else { |
314 | tmio_mmc_finish_request(host); | 288 | tmio_mmc_finish_request(host); |
315 | } | 289 | } |
@@ -321,20 +295,19 @@ static inline void tmio_mmc_cmd_irq(struct tmio_mmc_host *host, | |||
321 | static irqreturn_t tmio_mmc_irq(int irq, void *devid) | 295 | static irqreturn_t tmio_mmc_irq(int irq, void *devid) |
322 | { | 296 | { |
323 | struct tmio_mmc_host *host = devid; | 297 | struct tmio_mmc_host *host = devid; |
324 | void __iomem *ctl = host->ctl; | ||
325 | unsigned int ireg, irq_mask, status; | 298 | unsigned int ireg, irq_mask, status; |
326 | 299 | ||
327 | pr_debug("MMC IRQ begin\n"); | 300 | pr_debug("MMC IRQ begin\n"); |
328 | 301 | ||
329 | status = tmio_ioread32(ctl + CTL_STATUS); | 302 | status = sd_ctrl_read32(host, CTL_STATUS); |
330 | irq_mask = tmio_ioread32(ctl + CTL_IRQ_MASK); | 303 | irq_mask = sd_ctrl_read32(host, CTL_IRQ_MASK); |
331 | ireg = status & TMIO_MASK_IRQ & ~irq_mask; | 304 | ireg = status & TMIO_MASK_IRQ & ~irq_mask; |
332 | 305 | ||
333 | pr_debug_status(status); | 306 | pr_debug_status(status); |
334 | pr_debug_status(ireg); | 307 | pr_debug_status(ireg); |
335 | 308 | ||
336 | if (!ireg) { | 309 | if (!ireg) { |
337 | disable_mmc_irqs(ctl, status & ~irq_mask); | 310 | disable_mmc_irqs(host, status & ~irq_mask); |
338 | 311 | ||
339 | pr_debug("tmio_mmc: Spurious irq, disabling! " | 312 | pr_debug("tmio_mmc: Spurious irq, disabling! " |
340 | "0x%08x 0x%08x 0x%08x\n", status, irq_mask, ireg); | 313 | "0x%08x 0x%08x 0x%08x\n", status, irq_mask, ireg); |
@@ -346,7 +319,7 @@ static irqreturn_t tmio_mmc_irq(int irq, void *devid) | |||
346 | while (ireg) { | 319 | while (ireg) { |
347 | /* Card insert / remove attempts */ | 320 | /* Card insert / remove attempts */ |
348 | if (ireg & (TMIO_STAT_CARD_INSERT | TMIO_STAT_CARD_REMOVE)) { | 321 | if (ireg & (TMIO_STAT_CARD_INSERT | TMIO_STAT_CARD_REMOVE)) { |
349 | ack_mmc_irqs(ctl, TMIO_STAT_CARD_INSERT | | 322 | ack_mmc_irqs(host, TMIO_STAT_CARD_INSERT | |
350 | TMIO_STAT_CARD_REMOVE); | 323 | TMIO_STAT_CARD_REMOVE); |
351 | mmc_detect_change(host->mmc, 0); | 324 | mmc_detect_change(host->mmc, 0); |
352 | } | 325 | } |
@@ -358,25 +331,25 @@ static irqreturn_t tmio_mmc_irq(int irq, void *devid) | |||
358 | 331 | ||
359 | /* Command completion */ | 332 | /* Command completion */ |
360 | if (ireg & TMIO_MASK_CMD) { | 333 | if (ireg & TMIO_MASK_CMD) { |
361 | ack_mmc_irqs(ctl, TMIO_MASK_CMD); | 334 | ack_mmc_irqs(host, TMIO_MASK_CMD); |
362 | tmio_mmc_cmd_irq(host, status); | 335 | tmio_mmc_cmd_irq(host, status); |
363 | } | 336 | } |
364 | 337 | ||
365 | /* Data transfer */ | 338 | /* Data transfer */ |
366 | if (ireg & (TMIO_STAT_RXRDY | TMIO_STAT_TXRQ)) { | 339 | if (ireg & (TMIO_STAT_RXRDY | TMIO_STAT_TXRQ)) { |
367 | ack_mmc_irqs(ctl, TMIO_STAT_RXRDY | TMIO_STAT_TXRQ); | 340 | ack_mmc_irqs(host, TMIO_STAT_RXRDY | TMIO_STAT_TXRQ); |
368 | tmio_mmc_pio_irq(host); | 341 | tmio_mmc_pio_irq(host); |
369 | } | 342 | } |
370 | 343 | ||
371 | /* Data transfer completion */ | 344 | /* Data transfer completion */ |
372 | if (ireg & TMIO_STAT_DATAEND) { | 345 | if (ireg & TMIO_STAT_DATAEND) { |
373 | ack_mmc_irqs(ctl, TMIO_STAT_DATAEND); | 346 | ack_mmc_irqs(host, TMIO_STAT_DATAEND); |
374 | tmio_mmc_data_irq(host); | 347 | tmio_mmc_data_irq(host); |
375 | } | 348 | } |
376 | 349 | ||
377 | /* Check status - keep going until we've handled it all */ | 350 | /* Check status - keep going until we've handled it all */ |
378 | status = tmio_ioread32(ctl + CTL_STATUS); | 351 | status = sd_ctrl_read32(host, CTL_STATUS); |
379 | irq_mask = tmio_ioread32(ctl + CTL_IRQ_MASK); | 352 | irq_mask = sd_ctrl_read32(host, CTL_IRQ_MASK); |
380 | ireg = status & TMIO_MASK_IRQ & ~irq_mask; | 353 | ireg = status & TMIO_MASK_IRQ & ~irq_mask; |
381 | 354 | ||
382 | pr_debug("Status at end of loop: %08x\n", status); | 355 | pr_debug("Status at end of loop: %08x\n", status); |
@@ -391,8 +364,6 @@ out: | |||
391 | static int tmio_mmc_start_data(struct tmio_mmc_host *host, | 364 | static int tmio_mmc_start_data(struct tmio_mmc_host *host, |
392 | struct mmc_data *data) | 365 | struct mmc_data *data) |
393 | { | 366 | { |
394 | void __iomem *ctl = host->ctl; | ||
395 | |||
396 | pr_debug("setup data transfer: blocksize %08x nr_blocks %d\n", | 367 | pr_debug("setup data transfer: blocksize %08x nr_blocks %d\n", |
397 | data->blksz, data->blocks); | 368 | data->blksz, data->blocks); |
398 | 369 | ||
@@ -407,8 +378,8 @@ static int tmio_mmc_start_data(struct tmio_mmc_host *host, | |||
407 | host->data = data; | 378 | host->data = data; |
408 | 379 | ||
409 | /* Set transfer length / blocksize */ | 380 | /* Set transfer length / blocksize */ |
410 | tmio_iowrite16(data->blksz, ctl + CTL_SD_XFER_LEN); | 381 | sd_ctrl_write16(host, CTL_SD_XFER_LEN, data->blksz); |
411 | tmio_iowrite16(data->blocks, ctl + CTL_XFER_BLK_COUNT); | 382 | sd_ctrl_write16(host, CTL_XFER_BLK_COUNT, data->blocks); |
412 | 383 | ||
413 | return 0; | 384 | return 0; |
414 | } | 385 | } |
@@ -449,8 +420,6 @@ fail: | |||
449 | static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | 420 | static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) |
450 | { | 421 | { |
451 | struct tmio_mmc_host *host = mmc_priv(mmc); | 422 | struct tmio_mmc_host *host = mmc_priv(mmc); |
452 | void __iomem *cnf = host->cnf; | ||
453 | void __iomem *ctl = host->ctl; | ||
454 | 423 | ||
455 | if (ios->clock) | 424 | if (ios->clock) |
456 | tmio_mmc_set_clock(host, ios->clock); | 425 | tmio_mmc_set_clock(host, ios->clock); |
@@ -458,12 +427,12 @@ static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | |||
458 | /* Power sequence - OFF -> ON -> UP */ | 427 | /* Power sequence - OFF -> ON -> UP */ |
459 | switch (ios->power_mode) { | 428 | switch (ios->power_mode) { |
460 | case MMC_POWER_OFF: /* power down SD bus */ | 429 | case MMC_POWER_OFF: /* power down SD bus */ |
461 | tmio_iowrite8(0x00, cnf + CNF_PWR_CTL_2); | 430 | sd_config_write8(host, CNF_PWR_CTL_2, 0x00); |
462 | tmio_mmc_clk_stop(host); | 431 | tmio_mmc_clk_stop(host); |
463 | break; | 432 | break; |
464 | case MMC_POWER_ON: /* power up SD bus */ | 433 | case MMC_POWER_ON: /* power up SD bus */ |
465 | 434 | ||
466 | tmio_iowrite8(0x02, cnf + CNF_PWR_CTL_2); | 435 | sd_config_write8(host, CNF_PWR_CTL_2, 0x02); |
467 | break; | 436 | break; |
468 | case MMC_POWER_UP: /* start bus clock */ | 437 | case MMC_POWER_UP: /* start bus clock */ |
469 | tmio_mmc_clk_start(host); | 438 | tmio_mmc_clk_start(host); |
@@ -472,10 +441,10 @@ static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | |||
472 | 441 | ||
473 | switch (ios->bus_width) { | 442 | switch (ios->bus_width) { |
474 | case MMC_BUS_WIDTH_1: | 443 | case MMC_BUS_WIDTH_1: |
475 | tmio_iowrite16(0x80e0, ctl + CTL_SD_MEM_CARD_OPT); | 444 | sd_ctrl_write16(host, CTL_SD_MEM_CARD_OPT, 0x80e0); |
476 | break; | 445 | break; |
477 | case MMC_BUS_WIDTH_4: | 446 | case MMC_BUS_WIDTH_4: |
478 | tmio_iowrite16(0x00e0, ctl + CTL_SD_MEM_CARD_OPT); | 447 | sd_ctrl_write16(host, CTL_SD_MEM_CARD_OPT, 0x00e0); |
479 | break; | 448 | break; |
480 | } | 449 | } |
481 | 450 | ||
@@ -486,9 +455,8 @@ static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | |||
486 | static int tmio_mmc_get_ro(struct mmc_host *mmc) | 455 | static int tmio_mmc_get_ro(struct mmc_host *mmc) |
487 | { | 456 | { |
488 | struct tmio_mmc_host *host = mmc_priv(mmc); | 457 | struct tmio_mmc_host *host = mmc_priv(mmc); |
489 | void __iomem *ctl = host->ctl; | ||
490 | 458 | ||
491 | return (tmio_ioread16(ctl + CTL_STATUS) & TMIO_STAT_WRPROTECT) ? 0 : 1; | 459 | return (sd_ctrl_read16(host, CTL_STATUS) & TMIO_STAT_WRPROTECT) ? 0 : 1; |
492 | } | 460 | } |
493 | 461 | ||
494 | static struct mmc_host_ops tmio_mmc_ops = { | 462 | static struct mmc_host_ops tmio_mmc_ops = { |
@@ -518,13 +486,8 @@ static int tmio_mmc_resume(struct platform_device *dev) | |||
518 | struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; | 486 | struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; |
519 | struct mmc_host *mmc = platform_get_drvdata(dev); | 487 | struct mmc_host *mmc = platform_get_drvdata(dev); |
520 | struct tmio_mmc_host *host = mmc_priv(mmc); | 488 | struct tmio_mmc_host *host = mmc_priv(mmc); |
521 | void __iomem *cnf = host->cnf; | ||
522 | int ret = 0; | 489 | int ret = 0; |
523 | 490 | ||
524 | /* Enable the MMC/SD Control registers */ | ||
525 | tmio_iowrite16(SDCREN, cnf + CNF_CMD); | ||
526 | tmio_iowrite32(dev->resource[0].start & 0xfffe, cnf + CNF_CTL_BASE); | ||
527 | |||
528 | /* Tell the MFD core we are ready to be enabled */ | 491 | /* Tell the MFD core we are ready to be enabled */ |
529 | if (cell->enable) { | 492 | if (cell->enable) { |
530 | ret = cell->enable(dev); | 493 | ret = cell->enable(dev); |
@@ -532,6 +495,11 @@ static int tmio_mmc_resume(struct platform_device *dev) | |||
532 | goto out; | 495 | goto out; |
533 | } | 496 | } |
534 | 497 | ||
498 | /* Enable the MMC/SD Control registers */ | ||
499 | sd_config_write16(host, CNF_CMD, SDCREN); | ||
500 | sd_config_write32(host, CNF_CTL_BASE, | ||
501 | (dev->resource[0].start >> host->bus_shift) & 0xfffe); | ||
502 | |||
535 | mmc_resume_host(mmc); | 503 | mmc_resume_host(mmc); |
536 | 504 | ||
537 | out: | 505 | out: |
@@ -545,20 +513,25 @@ out: | |||
545 | static int __devinit tmio_mmc_probe(struct platform_device *dev) | 513 | static int __devinit tmio_mmc_probe(struct platform_device *dev) |
546 | { | 514 | { |
547 | struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; | 515 | struct mfd_cell *cell = (struct mfd_cell *)dev->dev.platform_data; |
516 | struct tmio_mmc_data *pdata; | ||
548 | struct resource *res_ctl, *res_cnf; | 517 | struct resource *res_ctl, *res_cnf; |
549 | struct tmio_mmc_host *host; | 518 | struct tmio_mmc_host *host; |
550 | struct mmc_host *mmc; | 519 | struct mmc_host *mmc; |
551 | int ret = -ENOMEM; | 520 | int ret = -EINVAL; |
552 | 521 | ||
553 | if (dev->num_resources != 3) | 522 | if (dev->num_resources != 3) |
554 | goto out; | 523 | goto out; |
555 | 524 | ||
556 | res_ctl = platform_get_resource(dev, IORESOURCE_MEM, 0); | 525 | res_ctl = platform_get_resource(dev, IORESOURCE_MEM, 0); |
557 | res_cnf = platform_get_resource(dev, IORESOURCE_MEM, 1); | 526 | res_cnf = platform_get_resource(dev, IORESOURCE_MEM, 1); |
558 | if (!res_ctl || !res_cnf) { | 527 | if (!res_ctl || !res_cnf) |
559 | ret = -EINVAL; | ||
560 | goto out; | 528 | goto out; |
561 | } | 529 | |
530 | pdata = cell->driver_data; | ||
531 | if (!pdata || !pdata->hclk) | ||
532 | goto out; | ||
533 | |||
534 | ret = -ENOMEM; | ||
562 | 535 | ||
563 | mmc = mmc_alloc_host(sizeof(struct tmio_mmc_host), &dev->dev); | 536 | mmc = mmc_alloc_host(sizeof(struct tmio_mmc_host), &dev->dev); |
564 | if (!mmc) | 537 | if (!mmc) |
@@ -568,6 +541,9 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
568 | host->mmc = mmc; | 541 | host->mmc = mmc; |
569 | platform_set_drvdata(dev, mmc); | 542 | platform_set_drvdata(dev, mmc); |
570 | 543 | ||
544 | /* SD control register space size is 0x200, 0x400 for bus_shift=1 */ | ||
545 | host->bus_shift = resource_size(res_ctl) >> 10; | ||
546 | |||
571 | host->ctl = ioremap(res_ctl->start, resource_size(res_ctl)); | 547 | host->ctl = ioremap(res_ctl->start, resource_size(res_ctl)); |
572 | if (!host->ctl) | 548 | if (!host->ctl) |
573 | goto host_free; | 549 | goto host_free; |
@@ -578,15 +554,10 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
578 | 554 | ||
579 | mmc->ops = &tmio_mmc_ops; | 555 | mmc->ops = &tmio_mmc_ops; |
580 | mmc->caps = MMC_CAP_4_BIT_DATA; | 556 | mmc->caps = MMC_CAP_4_BIT_DATA; |
581 | mmc->f_min = 46875; /* 24000000 / 512 */ | 557 | mmc->f_max = pdata->hclk; |
582 | mmc->f_max = 24000000; | 558 | mmc->f_min = mmc->f_max / 512; |
583 | mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34; | 559 | mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34; |
584 | 560 | ||
585 | /* Enable the MMC/SD Control registers */ | ||
586 | tmio_iowrite16(SDCREN, host->cnf + CNF_CMD); | ||
587 | tmio_iowrite32(dev->resource[0].start & 0xfffe, | ||
588 | host->cnf + CNF_CTL_BASE); | ||
589 | |||
590 | /* Tell the MFD core we are ready to be enabled */ | 561 | /* Tell the MFD core we are ready to be enabled */ |
591 | if (cell->enable) { | 562 | if (cell->enable) { |
592 | ret = cell->enable(dev); | 563 | ret = cell->enable(dev); |
@@ -594,14 +565,19 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
594 | goto unmap_cnf; | 565 | goto unmap_cnf; |
595 | } | 566 | } |
596 | 567 | ||
568 | /* Enable the MMC/SD Control registers */ | ||
569 | sd_config_write16(host, CNF_CMD, SDCREN); | ||
570 | sd_config_write32(host, CNF_CTL_BASE, | ||
571 | (dev->resource[0].start >> host->bus_shift) & 0xfffe); | ||
572 | |||
597 | /* Disable SD power during suspend */ | 573 | /* Disable SD power during suspend */ |
598 | tmio_iowrite8(0x01, host->cnf + CNF_PWR_CTL_3); | 574 | sd_config_write8(host, CNF_PWR_CTL_3, 0x01); |
599 | 575 | ||
600 | /* The below is required but why? FIXME */ | 576 | /* The below is required but why? FIXME */ |
601 | tmio_iowrite8(0x1f, host->cnf + CNF_STOP_CLK_CTL); | 577 | sd_config_write8(host, CNF_STOP_CLK_CTL, 0x1f); |
602 | 578 | ||
603 | /* Power down SD bus*/ | 579 | /* Power down SD bus*/ |
604 | tmio_iowrite8(0x0, host->cnf + CNF_PWR_CTL_2); | 580 | sd_config_write8(host, CNF_PWR_CTL_2, 0x00); |
605 | 581 | ||
606 | tmio_mmc_clk_stop(host); | 582 | tmio_mmc_clk_stop(host); |
607 | reset(host); | 583 | reset(host); |
@@ -612,22 +588,20 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
612 | else | 588 | else |
613 | goto unmap_cnf; | 589 | goto unmap_cnf; |
614 | 590 | ||
615 | disable_mmc_irqs(host->ctl, TMIO_MASK_ALL); | 591 | disable_mmc_irqs(host, TMIO_MASK_ALL); |
616 | 592 | ||
617 | ret = request_irq(host->irq, tmio_mmc_irq, IRQF_DISABLED, "tmio-mmc", | 593 | ret = request_irq(host->irq, tmio_mmc_irq, IRQF_DISABLED | |
618 | host); | 594 | IRQF_TRIGGER_FALLING, "tmio-mmc", host); |
619 | if (ret) | 595 | if (ret) |
620 | goto unmap_cnf; | 596 | goto unmap_cnf; |
621 | 597 | ||
622 | set_irq_type(host->irq, IRQ_TYPE_EDGE_FALLING); | ||
623 | |||
624 | mmc_add_host(mmc); | 598 | mmc_add_host(mmc); |
625 | 599 | ||
626 | printk(KERN_INFO "%s at 0x%08lx irq %d\n", mmc_hostname(host->mmc), | 600 | printk(KERN_INFO "%s at 0x%08lx irq %d\n", mmc_hostname(host->mmc), |
627 | (unsigned long)host->ctl, host->irq); | 601 | (unsigned long)host->ctl, host->irq); |
628 | 602 | ||
629 | /* Unmask the IRQs we want to know about */ | 603 | /* Unmask the IRQs we want to know about */ |
630 | enable_mmc_irqs(host->ctl, TMIO_MASK_IRQ); | 604 | enable_mmc_irqs(host, TMIO_MASK_IRQ); |
631 | 605 | ||
632 | return 0; | 606 | return 0; |
633 | 607 | ||
diff --git a/drivers/mmc/host/tmio_mmc.h b/drivers/mmc/host/tmio_mmc.h index 9c831ab2ece6..9fa998594974 100644 --- a/drivers/mmc/host/tmio_mmc.h +++ b/drivers/mmc/host/tmio_mmc.h | |||
@@ -83,34 +83,36 @@ | |||
83 | TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT) | 83 | TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT) |
84 | #define TMIO_MASK_IRQ (TMIO_MASK_READOP | TMIO_MASK_WRITEOP | TMIO_MASK_CMD) | 84 | #define TMIO_MASK_IRQ (TMIO_MASK_READOP | TMIO_MASK_WRITEOP | TMIO_MASK_CMD) |
85 | 85 | ||
86 | #define enable_mmc_irqs(ctl, i) \ | 86 | |
87 | #define enable_mmc_irqs(host, i) \ | ||
87 | do { \ | 88 | do { \ |
88 | u32 mask;\ | 89 | u32 mask;\ |
89 | mask = tmio_ioread32((ctl) + CTL_IRQ_MASK); \ | 90 | mask = sd_ctrl_read32((host), CTL_IRQ_MASK); \ |
90 | mask &= ~((i) & TMIO_MASK_IRQ); \ | 91 | mask &= ~((i) & TMIO_MASK_IRQ); \ |
91 | tmio_iowrite32(mask, (ctl) + CTL_IRQ_MASK); \ | 92 | sd_ctrl_write32((host), CTL_IRQ_MASK, mask); \ |
92 | } while (0) | 93 | } while (0) |
93 | 94 | ||
94 | #define disable_mmc_irqs(ctl, i) \ | 95 | #define disable_mmc_irqs(host, i) \ |
95 | do { \ | 96 | do { \ |
96 | u32 mask;\ | 97 | u32 mask;\ |
97 | mask = tmio_ioread32((ctl) + CTL_IRQ_MASK); \ | 98 | mask = sd_ctrl_read32((host), CTL_IRQ_MASK); \ |
98 | mask |= ((i) & TMIO_MASK_IRQ); \ | 99 | mask |= ((i) & TMIO_MASK_IRQ); \ |
99 | tmio_iowrite32(mask, (ctl) + CTL_IRQ_MASK); \ | 100 | sd_ctrl_write32((host), CTL_IRQ_MASK, mask); \ |
100 | } while (0) | 101 | } while (0) |
101 | 102 | ||
102 | #define ack_mmc_irqs(ctl, i) \ | 103 | #define ack_mmc_irqs(host, i) \ |
103 | do { \ | 104 | do { \ |
104 | u32 mask;\ | 105 | u32 mask;\ |
105 | mask = tmio_ioread32((ctl) + CTL_STATUS); \ | 106 | mask = sd_ctrl_read32((host), CTL_STATUS); \ |
106 | mask &= ~((i) & TMIO_MASK_IRQ); \ | 107 | mask &= ~((i) & TMIO_MASK_IRQ); \ |
107 | tmio_iowrite32(mask, (ctl) + CTL_STATUS); \ | 108 | sd_ctrl_write32((host), CTL_STATUS, mask); \ |
108 | } while (0) | 109 | } while (0) |
109 | 110 | ||
110 | 111 | ||
111 | struct tmio_mmc_host { | 112 | struct tmio_mmc_host { |
112 | void __iomem *cnf; | 113 | void __iomem *cnf; |
113 | void __iomem *ctl; | 114 | void __iomem *ctl; |
115 | unsigned long bus_shift; | ||
114 | struct mmc_command *cmd; | 116 | struct mmc_command *cmd; |
115 | struct mmc_request *mrq; | 117 | struct mmc_request *mrq; |
116 | struct mmc_data *data; | 118 | struct mmc_data *data; |
@@ -123,6 +125,63 @@ struct tmio_mmc_host { | |||
123 | unsigned int sg_off; | 125 | unsigned int sg_off; |
124 | }; | 126 | }; |
125 | 127 | ||
128 | #include <linux/io.h> | ||
129 | |||
130 | static inline u16 sd_ctrl_read16(struct tmio_mmc_host *host, int addr) | ||
131 | { | ||
132 | return readw(host->ctl + (addr << host->bus_shift)); | ||
133 | } | ||
134 | |||
135 | static inline void sd_ctrl_read16_rep(struct tmio_mmc_host *host, int addr, | ||
136 | u16 *buf, int count) | ||
137 | { | ||
138 | readsw(host->ctl + (addr << host->bus_shift), buf, count); | ||
139 | } | ||
140 | |||
141 | static inline u32 sd_ctrl_read32(struct tmio_mmc_host *host, int addr) | ||
142 | { | ||
143 | return readw(host->ctl + (addr << host->bus_shift)) | | ||
144 | readw(host->ctl + ((addr + 2) << host->bus_shift)) << 16; | ||
145 | } | ||
146 | |||
147 | static inline void sd_ctrl_write16(struct tmio_mmc_host *host, int addr, | ||
148 | u16 val) | ||
149 | { | ||
150 | writew(val, host->ctl + (addr << host->bus_shift)); | ||
151 | } | ||
152 | |||
153 | static inline void sd_ctrl_write16_rep(struct tmio_mmc_host *host, int addr, | ||
154 | u16 *buf, int count) | ||
155 | { | ||
156 | writesw(host->ctl + (addr << host->bus_shift), buf, count); | ||
157 | } | ||
158 | |||
159 | static inline void sd_ctrl_write32(struct tmio_mmc_host *host, int addr, | ||
160 | u32 val) | ||
161 | { | ||
162 | writew(val, host->ctl + (addr << host->bus_shift)); | ||
163 | writew(val >> 16, host->ctl + ((addr + 2) << host->bus_shift)); | ||
164 | } | ||
165 | |||
166 | static inline void sd_config_write8(struct tmio_mmc_host *host, int addr, | ||
167 | u8 val) | ||
168 | { | ||
169 | writeb(val, host->cnf + (addr << host->bus_shift)); | ||
170 | } | ||
171 | |||
172 | static inline void sd_config_write16(struct tmio_mmc_host *host, int addr, | ||
173 | u16 val) | ||
174 | { | ||
175 | writew(val, host->cnf + (addr << host->bus_shift)); | ||
176 | } | ||
177 | |||
178 | static inline void sd_config_write32(struct tmio_mmc_host *host, int addr, | ||
179 | u32 val) | ||
180 | { | ||
181 | writew(val, host->cnf + (addr << host->bus_shift)); | ||
182 | writew(val >> 16, host->cnf + ((addr + 2) << host->bus_shift)); | ||
183 | } | ||
184 | |||
126 | #include <linux/scatterlist.h> | 185 | #include <linux/scatterlist.h> |
127 | #include <linux/blkdev.h> | 186 | #include <linux/blkdev.h> |
128 | 187 | ||