aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/sdhci.c
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2006-07-02 11:52:10 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-07-02 11:52:10 -0400
commit1d676e02970d9e511c9b96101501da90954ee265 (patch)
tree59a5e1c46584cfa7683d33d4c3ff494589ee65e3 /drivers/mmc/sdhci.c
parentbab7696184bbf0ea48d56902bd1f9ac983079ad2 (diff)
[MMC] sdhci: Test for invalid block size
The controller has an upper limit on the block size. Make sure we do not cross it. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/mmc/sdhci.c')
-rw-r--r--drivers/mmc/sdhci.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
index 95fe0fdac484..302dd5bde751 100644
--- a/drivers/mmc/sdhci.c
+++ b/drivers/mmc/sdhci.c
@@ -328,6 +328,8 @@ static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_data *data)
328 328
329 /* Sanity checks */ 329 /* Sanity checks */
330 BUG_ON(data->blksz * data->blocks > 524288); 330 BUG_ON(data->blksz * data->blocks > 524288);
331 BUG_ON(data->blksz > host->max_block);
332 BUG_ON(data->blocks > 65535);
331 333
332 /* timeout in us */ 334 /* timeout in us */
333 target_timeout = data->timeout_ns / 1000 + 335 target_timeout = data->timeout_ns / 1000 +
@@ -1158,6 +1160,15 @@ static int __devinit sdhci_probe_slot(struct pci_dev *pdev, int slot)
1158 if (caps & SDHCI_TIMEOUT_CLK_UNIT) 1160 if (caps & SDHCI_TIMEOUT_CLK_UNIT)
1159 host->timeout_clk *= 1000; 1161 host->timeout_clk *= 1000;
1160 1162
1163 host->max_block = (caps & SDHCI_MAX_BLOCK_MASK) >> SDHCI_MAX_BLOCK_SHIFT;
1164 if (host->max_block >= 3) {
1165 printk(KERN_ERR "%s: Invalid maximum block size.\n",
1166 host->slot_descr);
1167 ret = -ENODEV;
1168 goto unmap;
1169 }
1170 host->max_block = 512 << host->max_block;
1171
1161 /* 1172 /*
1162 * Set host parameters. 1173 * Set host parameters.
1163 */ 1174 */