blob: c55aae828aac1eb450657da0dac9eafdfd427d4e [file] [log] [blame]
Wolfram Sang80872e22010-10-15 12:21:03 +02001/*
2 * Freescale eSDHC controller driver generics for OF and pltfm.
3 *
4 * Copyright (c) 2007 Freescale Semiconductor, Inc.
5 * Copyright (c) 2009 MontaVista Software, Inc.
6 * Copyright (c) 2010 Pengutronix e.K.
7 * Author: Wolfram Sang <w.sang@pengutronix.de>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License.
12 */
13
14#ifndef _DRIVERS_MMC_SDHCI_ESDHC_H
15#define _DRIVERS_MMC_SDHCI_ESDHC_H
16
17/*
18 * Ops and quirks for the Freescale eSDHC controller.
19 */
20
21#define ESDHC_DEFAULT_QUIRKS (SDHCI_QUIRK_FORCE_BLK_SZ_2048 | \
Wolfram Sang80872e22010-10-15 12:21:03 +020022 SDHCI_QUIRK_NO_BUSY_IRQ | \
23 SDHCI_QUIRK_NONSTANDARD_CLOCK | \
24 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK | \
25 SDHCI_QUIRK_PIO_NEEDS_DELAY | \
26 SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET | \
27 SDHCI_QUIRK_NO_CARD_NO_RESET)
28
29#define ESDHC_SYSTEM_CONTROL 0x2c
30#define ESDHC_CLOCK_MASK 0x0000fff0
31#define ESDHC_PREDIV_SHIFT 8
32#define ESDHC_DIVIDER_SHIFT 4
33#define ESDHC_CLOCK_PEREN 0x00000004
34#define ESDHC_CLOCK_HCKEN 0x00000002
35#define ESDHC_CLOCK_IPGEN 0x00000001
36
37/* pltfm-specific */
38#define ESDHC_HOST_CONTROL_LE 0x20
39
40/* OF-specific */
41#define ESDHC_DMA_SYSCTL 0x40c
42#define ESDHC_DMA_SNOOP 0x00000040
43
44#define ESDHC_HOST_CONTROL_RES 0x05
45
46static inline void esdhc_set_clock(struct sdhci_host *host, unsigned int clock)
47{
48 int pre_div = 2;
49 int div = 1;
50 u32 temp;
51
52 temp = sdhci_readl(host, ESDHC_SYSTEM_CONTROL);
53 temp &= ~(ESDHC_CLOCK_IPGEN | ESDHC_CLOCK_HCKEN | ESDHC_CLOCK_PEREN
54 | ESDHC_CLOCK_MASK);
55 sdhci_writel(host, temp, ESDHC_SYSTEM_CONTROL);
56
57 if (clock == 0)
58 goto out;
59
60 while (host->max_clk / pre_div / 16 > clock && pre_div < 256)
61 pre_div *= 2;
62
63 while (host->max_clk / pre_div / div > clock && div < 16)
64 div++;
65
66 dev_dbg(mmc_dev(host->mmc), "desired SD clock: %d, actual: %d\n",
67 clock, host->max_clk / pre_div / div);
68
69 pre_div >>= 1;
70 div--;
71
72 temp = sdhci_readl(host, ESDHC_SYSTEM_CONTROL);
73 temp |= (ESDHC_CLOCK_IPGEN | ESDHC_CLOCK_HCKEN | ESDHC_CLOCK_PEREN
74 | (div << ESDHC_DIVIDER_SHIFT)
75 | (pre_div << ESDHC_PREDIV_SHIFT));
76 sdhci_writel(host, temp, ESDHC_SYSTEM_CONTROL);
77 mdelay(100);
78out:
79 host->clock = clock;
80}
81
82#endif /* _DRIVERS_MMC_SDHCI_ESDHC_H */