blob: f8eb1fb0c9219283c9624f3f0a8adde251bcd5e9 [file] [log] [blame]
Albert Herranz7657c3a2009-12-17 15:27:20 -08001/*
2 * Freescale eSDHC controller driver.
3 *
Jerry Huangf060bc92012-02-14 14:05:37 +08004 * Copyright (c) 2007, 2010, 2012 Freescale Semiconductor, Inc.
Albert Herranz7657c3a2009-12-17 15:27:20 -08005 * Copyright (c) 2009 MontaVista Software, Inc.
6 *
7 * Authors: Xiaobo Xie <X.Xie@freescale.com>
8 * Anton Vorontsov <avorontsov@ru.mvista.com>
9 *
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.
14 */
15
16#include <linux/io.h>
Jerry Huangf060bc92012-02-14 14:05:37 +080017#include <linux/of.h>
Albert Herranz7657c3a2009-12-17 15:27:20 -080018#include <linux/delay.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040019#include <linux/module.h>
Albert Herranz7657c3a2009-12-17 15:27:20 -080020#include <linux/mmc/host.h>
Shawn Guo38576af2011-05-27 23:48:14 +080021#include "sdhci-pltfm.h"
Wolfram Sang80872e22010-10-15 12:21:03 +020022#include "sdhci-esdhc.h"
Albert Herranz7657c3a2009-12-17 15:27:20 -080023
24static u16 esdhc_readw(struct sdhci_host *host, int reg)
25{
26 u16 ret;
Xu leie51cbc92011-09-09 20:05:46 +080027 int base = reg & ~0x3;
28 int shift = (reg & 0x2) * 8;
Albert Herranz7657c3a2009-12-17 15:27:20 -080029
30 if (unlikely(reg == SDHCI_HOST_VERSION))
Xu leie51cbc92011-09-09 20:05:46 +080031 ret = in_be32(host->ioaddr + base) & 0xffff;
Albert Herranz7657c3a2009-12-17 15:27:20 -080032 else
Xu leie51cbc92011-09-09 20:05:46 +080033 ret = (in_be32(host->ioaddr + base) >> shift) & 0xffff;
34 return ret;
35}
36
37static u8 esdhc_readb(struct sdhci_host *host, int reg)
38{
39 int base = reg & ~0x3;
40 int shift = (reg & 0x3) * 8;
41 u8 ret = (in_be32(host->ioaddr + base) >> shift) & 0xff;
Roy Zangba8c4dc2012-01-13 15:02:01 +080042
43 /*
44 * "DMA select" locates at offset 0x28 in SD specification, but on
45 * P5020 or P3041, it locates at 0x29.
46 */
47 if (reg == SDHCI_HOST_CONTROL) {
48 u32 dma_bits;
49
50 dma_bits = in_be32(host->ioaddr + reg);
51 /* DMA select is 22,23 bits in Protocol Control Register */
52 dma_bits = (dma_bits >> 5) & SDHCI_CTRL_DMA_MASK;
53
54 /* fixup the result */
55 ret &= ~SDHCI_CTRL_DMA_MASK;
56 ret |= dma_bits;
57 }
58
Albert Herranz7657c3a2009-12-17 15:27:20 -080059 return ret;
60}
61
62static void esdhc_writew(struct sdhci_host *host, u16 val, int reg)
63{
64 if (reg == SDHCI_BLOCK_SIZE) {
65 /*
66 * Two last DMA bits are reserved, and first one is used for
67 * non-standard blksz of 4096 bytes that we don't support
68 * yet. So clear the DMA boundary bits.
69 */
70 val &= ~SDHCI_MAKE_BLKSZ(0x7, 0);
71 }
72 sdhci_be32bs_writew(host, val, reg);
73}
74
75static void esdhc_writeb(struct sdhci_host *host, u8 val, int reg)
76{
Roy Zangba8c4dc2012-01-13 15:02:01 +080077 /*
78 * "DMA select" location is offset 0x28 in SD specification, but on
79 * P5020 or P3041, it's located at 0x29.
80 */
81 if (reg == SDHCI_HOST_CONTROL) {
82 u32 dma_bits;
83
84 /* DMA select is 22,23 bits in Protocol Control Register */
85 dma_bits = (val & SDHCI_CTRL_DMA_MASK) << 5;
86 clrsetbits_be32(host->ioaddr + reg , SDHCI_CTRL_DMA_MASK << 5,
87 dma_bits);
88 val &= ~SDHCI_CTRL_DMA_MASK;
89 val |= in_be32(host->ioaddr + reg) & SDHCI_CTRL_DMA_MASK;
90 }
91
Albert Herranz7657c3a2009-12-17 15:27:20 -080092 /* Prevent SDHCI core from writing reserved bits (e.g. HISPD). */
93 if (reg == SDHCI_HOST_CONTROL)
94 val &= ~ESDHC_HOST_CONTROL_RES;
95 sdhci_be32bs_writeb(host, val, reg);
96}
97
Wolfram Sang80872e22010-10-15 12:21:03 +020098static int esdhc_of_enable_dma(struct sdhci_host *host)
Albert Herranz7657c3a2009-12-17 15:27:20 -080099{
100 setbits32(host->ioaddr + ESDHC_DMA_SYSCTL, ESDHC_DMA_SNOOP);
101 return 0;
102}
103
Wolfram Sang80872e22010-10-15 12:21:03 +0200104static unsigned int esdhc_of_get_max_clock(struct sdhci_host *host)
Albert Herranz7657c3a2009-12-17 15:27:20 -0800105{
Shawn Guoe3071482011-07-20 17:13:36 -0400106 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Albert Herranz7657c3a2009-12-17 15:27:20 -0800107
Shawn Guoe3071482011-07-20 17:13:36 -0400108 return pltfm_host->clock;
Albert Herranz7657c3a2009-12-17 15:27:20 -0800109}
110
Wolfram Sang80872e22010-10-15 12:21:03 +0200111static unsigned int esdhc_of_get_min_clock(struct sdhci_host *host)
Albert Herranz7657c3a2009-12-17 15:27:20 -0800112{
Shawn Guoe3071482011-07-20 17:13:36 -0400113 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Albert Herranz7657c3a2009-12-17 15:27:20 -0800114
Shawn Guoe3071482011-07-20 17:13:36 -0400115 return pltfm_host->clock / 256 / 16;
Albert Herranz7657c3a2009-12-17 15:27:20 -0800116}
117
Jerry Huangf060bc92012-02-14 14:05:37 +0800118static void esdhc_of_set_clock(struct sdhci_host *host, unsigned int clock)
119{
120 /* Workaround to reduce the clock frequency for p1010 esdhc */
121 if (of_find_compatible_node(NULL, NULL, "fsl,p1010-esdhc")) {
122 if (clock > 20000000)
123 clock -= 5000000;
124 if (clock > 40000000)
125 clock -= 5000000;
126 }
127
128 /* Set the clock */
129 esdhc_set_clock(host, clock);
130}
131
Jerry Huang192b5372012-02-04 17:13:13 -0500132#ifdef CONFIG_PM
133static u32 esdhc_proctl;
134static void esdhc_of_suspend(struct sdhci_host *host)
135{
136 esdhc_proctl = sdhci_be32bs_readl(host, SDHCI_HOST_CONTROL);
137}
138
139static void esdhc_of_resume(struct sdhci_host *host)
140{
141 esdhc_of_enable_dma(host);
142 sdhci_be32bs_writel(host, esdhc_proctl, SDHCI_HOST_CONTROL);
143}
144#endif
145
Shawn Guoe3071482011-07-20 17:13:36 -0400146static struct sdhci_ops sdhci_esdhc_ops = {
147 .read_l = sdhci_be32bs_readl,
148 .read_w = esdhc_readw,
Xu leie51cbc92011-09-09 20:05:46 +0800149 .read_b = esdhc_readb,
Shawn Guoe3071482011-07-20 17:13:36 -0400150 .write_l = sdhci_be32bs_writel,
151 .write_w = esdhc_writew,
152 .write_b = esdhc_writeb,
Jerry Huangf060bc92012-02-14 14:05:37 +0800153 .set_clock = esdhc_of_set_clock,
Shawn Guoe3071482011-07-20 17:13:36 -0400154 .enable_dma = esdhc_of_enable_dma,
155 .get_max_clock = esdhc_of_get_max_clock,
156 .get_min_clock = esdhc_of_get_min_clock,
Jerry Huang192b5372012-02-04 17:13:13 -0500157#ifdef CONFIG_PM
158 .platform_suspend = esdhc_of_suspend,
159 .platform_resume = esdhc_of_resume,
160#endif
Shawn Guoe3071482011-07-20 17:13:36 -0400161};
162
Shawn Guo38576af2011-05-27 23:48:14 +0800163static struct sdhci_pltfm_data sdhci_esdhc_pdata = {
Wolfram Sang3bb2a9f2011-02-26 14:44:40 +0100164 /* card detection could be handled via GPIO */
Richard Zhue481e452011-03-21 13:22:13 +0800165 .quirks = ESDHC_DEFAULT_QUIRKS | SDHCI_QUIRK_BROKEN_CARD_DETECTION
166 | SDHCI_QUIRK_NO_CARD_NO_RESET,
Shawn Guoe3071482011-07-20 17:13:36 -0400167 .ops = &sdhci_esdhc_ops,
Albert Herranz7657c3a2009-12-17 15:27:20 -0800168};
Shawn Guo38576af2011-05-27 23:48:14 +0800169
170static int __devinit sdhci_esdhc_probe(struct platform_device *pdev)
171{
172 return sdhci_pltfm_register(pdev, &sdhci_esdhc_pdata);
173}
174
175static int __devexit sdhci_esdhc_remove(struct platform_device *pdev)
176{
177 return sdhci_pltfm_unregister(pdev);
178}
179
180static const struct of_device_id sdhci_esdhc_of_match[] = {
181 { .compatible = "fsl,mpc8379-esdhc" },
182 { .compatible = "fsl,mpc8536-esdhc" },
183 { .compatible = "fsl,esdhc" },
184 { }
185};
186MODULE_DEVICE_TABLE(of, sdhci_esdhc_of_match);
187
188static struct platform_driver sdhci_esdhc_driver = {
189 .driver = {
190 .name = "sdhci-esdhc",
191 .owner = THIS_MODULE,
192 .of_match_table = sdhci_esdhc_of_match,
Manuel Lauss29495aa2011-11-03 11:09:45 +0100193 .pm = SDHCI_PLTFM_PMOPS,
Shawn Guo38576af2011-05-27 23:48:14 +0800194 },
195 .probe = sdhci_esdhc_probe,
196 .remove = __devexit_p(sdhci_esdhc_remove),
Shawn Guo38576af2011-05-27 23:48:14 +0800197};
198
Axel Lind1f81a62011-11-26 12:55:43 +0800199module_platform_driver(sdhci_esdhc_driver);
Shawn Guo38576af2011-05-27 23:48:14 +0800200
201MODULE_DESCRIPTION("SDHCI OF driver for Freescale MPC eSDHC");
202MODULE_AUTHOR("Xiaobo Xie <X.Xie@freescale.com>, "
203 "Anton Vorontsov <avorontsov@ru.mvista.com>");
204MODULE_LICENSE("GPL v2");