2 * Freescale eSDHC controller driver.
4 * Copyright (c) 2007 Freescale Semiconductor, Inc.
5 * Copyright (c) 2009 MontaVista Software, Inc.
7 * Authors: Xiaobo Xie <X.Xie@freescale.com>
8 * Anton Vorontsov <avorontsov@ru.mvista.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
17 #include <linux/delay.h>
18 #include <linux/mmc/host.h>
21 #include "sdhci-esdhc.h"
23 static u16
esdhc_readw(struct sdhci_host
*host
, int reg
)
27 if (unlikely(reg
== SDHCI_HOST_VERSION
))
28 ret
= in_be16(host
->ioaddr
+ reg
);
30 ret
= sdhci_be32bs_readw(host
, reg
);
34 static void esdhc_writew(struct sdhci_host
*host
, u16 val
, int reg
)
36 if (reg
== SDHCI_BLOCK_SIZE
) {
38 * Two last DMA bits are reserved, and first one is used for
39 * non-standard blksz of 4096 bytes that we don't support
40 * yet. So clear the DMA boundary bits.
42 val
&= ~SDHCI_MAKE_BLKSZ(0x7, 0);
44 sdhci_be32bs_writew(host
, val
, reg
);
47 static void esdhc_writeb(struct sdhci_host
*host
, u8 val
, int reg
)
49 /* Prevent SDHCI core from writing reserved bits (e.g. HISPD). */
50 if (reg
== SDHCI_HOST_CONTROL
)
51 val
&= ~ESDHC_HOST_CONTROL_RES
;
52 sdhci_be32bs_writeb(host
, val
, reg
);
55 static int esdhc_of_enable_dma(struct sdhci_host
*host
)
57 setbits32(host
->ioaddr
+ ESDHC_DMA_SYSCTL
, ESDHC_DMA_SNOOP
);
61 static unsigned int esdhc_of_get_max_clock(struct sdhci_host
*host
)
63 struct sdhci_of_host
*of_host
= sdhci_priv(host
);
65 return of_host
->clock
;
68 static unsigned int esdhc_of_get_min_clock(struct sdhci_host
*host
)
70 struct sdhci_of_host
*of_host
= sdhci_priv(host
);
72 return of_host
->clock
/ 256 / 16;
75 struct sdhci_of_data sdhci_esdhc
= {
76 .quirks
= ESDHC_DEFAULT_QUIRKS
,
78 .read_l
= sdhci_be32bs_readl
,
79 .read_w
= esdhc_readw
,
80 .read_b
= sdhci_be32bs_readb
,
81 .write_l
= sdhci_be32bs_writel
,
82 .write_w
= esdhc_writew
,
83 .write_b
= esdhc_writeb
,
84 .set_clock
= esdhc_set_clock
,
85 .enable_dma
= esdhc_of_enable_dma
,
86 .get_max_clock
= esdhc_of_get_max_clock
,
87 .get_min_clock
= esdhc_of_get_min_clock
,