blob: 5eca88bcd5629d3f3b2c1f28d802acdd39eac86d [file] [log] [blame]
Kevin Hilman51c5d842016-10-19 11:18:24 -07001/*
2 * Amlogic SD/eMMC driver for the GX/S905 family SoCs
3 *
4 * Copyright (c) 2016 BayLibre, SAS.
5 * Author: Kevin Hilman <khilman@baylibre.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 * The full GNU General Public License is included in this distribution
19 * in the file called COPYING.
20 */
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/init.h>
24#include <linux/device.h>
25#include <linux/of_device.h>
26#include <linux/platform_device.h>
27#include <linux/ioport.h>
28#include <linux/spinlock.h>
29#include <linux/dma-mapping.h>
30#include <linux/mmc/host.h>
31#include <linux/mmc/mmc.h>
32#include <linux/mmc/sdio.h>
33#include <linux/mmc/slot-gpio.h>
34#include <linux/io.h>
35#include <linux/clk.h>
36#include <linux/clk-provider.h>
37#include <linux/regulator/consumer.h>
Ulf Hanssonb8789ec2016-12-30 13:47:23 +010038#include <linux/interrupt.h>
Kevin Hilman51c5d842016-10-19 11:18:24 -070039
40#define DRIVER_NAME "meson-gx-mmc"
41
42#define SD_EMMC_CLOCK 0x0
43#define CLK_DIV_SHIFT 0
44#define CLK_DIV_WIDTH 6
45#define CLK_DIV_MASK 0x3f
46#define CLK_DIV_MAX 63
47#define CLK_SRC_SHIFT 6
48#define CLK_SRC_WIDTH 2
49#define CLK_SRC_MASK 0x3
50#define CLK_SRC_XTAL 0 /* external crystal */
51#define CLK_SRC_XTAL_RATE 24000000
52#define CLK_SRC_PLL 1 /* FCLK_DIV2 */
53#define CLK_SRC_PLL_RATE 1000000000
54#define CLK_PHASE_SHIFT 8
55#define CLK_PHASE_MASK 0x3
56#define CLK_PHASE_0 0
57#define CLK_PHASE_90 1
58#define CLK_PHASE_180 2
59#define CLK_PHASE_270 3
60#define CLK_ALWAYS_ON BIT(24)
61
62#define SD_EMMC_DElAY 0x4
63#define SD_EMMC_ADJUST 0x8
64#define SD_EMMC_CALOUT 0x10
65#define SD_EMMC_START 0x40
66#define START_DESC_INIT BIT(0)
67#define START_DESC_BUSY BIT(1)
68#define START_DESC_ADDR_SHIFT 2
69#define START_DESC_ADDR_MASK (~0x3)
70
71#define SD_EMMC_CFG 0x44
72#define CFG_BUS_WIDTH_SHIFT 0
73#define CFG_BUS_WIDTH_MASK 0x3
74#define CFG_BUS_WIDTH_1 0x0
75#define CFG_BUS_WIDTH_4 0x1
76#define CFG_BUS_WIDTH_8 0x2
77#define CFG_DDR BIT(2)
78#define CFG_BLK_LEN_SHIFT 4
79#define CFG_BLK_LEN_MASK 0xf
80#define CFG_RESP_TIMEOUT_SHIFT 8
81#define CFG_RESP_TIMEOUT_MASK 0xf
82#define CFG_RC_CC_SHIFT 12
83#define CFG_RC_CC_MASK 0xf
84#define CFG_STOP_CLOCK BIT(22)
85#define CFG_CLK_ALWAYS_ON BIT(18)
86#define CFG_AUTO_CLK BIT(23)
87
88#define SD_EMMC_STATUS 0x48
89#define STATUS_BUSY BIT(31)
90
91#define SD_EMMC_IRQ_EN 0x4c
92#define IRQ_EN_MASK 0x3fff
93#define IRQ_RXD_ERR_SHIFT 0
94#define IRQ_RXD_ERR_MASK 0xff
95#define IRQ_TXD_ERR BIT(8)
96#define IRQ_DESC_ERR BIT(9)
97#define IRQ_RESP_ERR BIT(10)
98#define IRQ_RESP_TIMEOUT BIT(11)
99#define IRQ_DESC_TIMEOUT BIT(12)
100#define IRQ_END_OF_CHAIN BIT(13)
101#define IRQ_RESP_STATUS BIT(14)
102#define IRQ_SDIO BIT(15)
103
104#define SD_EMMC_CMD_CFG 0x50
105#define SD_EMMC_CMD_ARG 0x54
106#define SD_EMMC_CMD_DAT 0x58
107#define SD_EMMC_CMD_RSP 0x5c
108#define SD_EMMC_CMD_RSP1 0x60
109#define SD_EMMC_CMD_RSP2 0x64
110#define SD_EMMC_CMD_RSP3 0x68
111
112#define SD_EMMC_RXD 0x94
113#define SD_EMMC_TXD 0x94
114#define SD_EMMC_LAST_REG SD_EMMC_TXD
115
116#define SD_EMMC_CFG_BLK_SIZE 512 /* internal buffer max: 512 bytes */
117#define SD_EMMC_CFG_RESP_TIMEOUT 256 /* in clock cycles */
118#define SD_EMMC_CFG_CMD_GAP 16 /* in clock cycles */
119#define MUX_CLK_NUM_PARENTS 2
120
121struct meson_host {
122 struct device *dev;
123 struct mmc_host *mmc;
124 struct mmc_request *mrq;
125 struct mmc_command *cmd;
126
127 spinlock_t lock;
128 void __iomem *regs;
129 int irq;
130 u32 ocr_mask;
131 struct clk *core_clk;
132 struct clk_mux mux;
133 struct clk *mux_clk;
134 struct clk *mux_parent[MUX_CLK_NUM_PARENTS];
135 unsigned long mux_parent_rate[MUX_CLK_NUM_PARENTS];
136
137 struct clk_divider cfg_div;
138 struct clk *cfg_div_clk;
139
140 unsigned int bounce_buf_size;
141 void *bounce_buf;
142 dma_addr_t bounce_dma_addr;
143
144 bool vqmmc_enabled;
145};
146
147struct sd_emmc_desc {
148 u32 cmd_cfg;
149 u32 cmd_arg;
150 u32 cmd_data;
151 u32 cmd_resp;
152};
153#define CMD_CFG_LENGTH_SHIFT 0
154#define CMD_CFG_LENGTH_MASK 0x1ff
155#define CMD_CFG_BLOCK_MODE BIT(9)
156#define CMD_CFG_R1B BIT(10)
157#define CMD_CFG_END_OF_CHAIN BIT(11)
158#define CMD_CFG_TIMEOUT_SHIFT 12
159#define CMD_CFG_TIMEOUT_MASK 0xf
160#define CMD_CFG_NO_RESP BIT(16)
161#define CMD_CFG_NO_CMD BIT(17)
162#define CMD_CFG_DATA_IO BIT(18)
163#define CMD_CFG_DATA_WR BIT(19)
164#define CMD_CFG_RESP_NOCRC BIT(20)
165#define CMD_CFG_RESP_128 BIT(21)
166#define CMD_CFG_RESP_NUM BIT(22)
167#define CMD_CFG_DATA_NUM BIT(23)
168#define CMD_CFG_CMD_INDEX_SHIFT 24
169#define CMD_CFG_CMD_INDEX_MASK 0x3f
170#define CMD_CFG_ERROR BIT(30)
171#define CMD_CFG_OWNER BIT(31)
172
173#define CMD_DATA_MASK (~0x3)
174#define CMD_DATA_BIG_ENDIAN BIT(1)
175#define CMD_DATA_SRAM BIT(0)
176#define CMD_RESP_MASK (~0x1)
177#define CMD_RESP_SRAM BIT(0)
178
179static int meson_mmc_clk_set(struct meson_host *host, unsigned long clk_rate)
180{
181 struct mmc_host *mmc = host->mmc;
182 int ret = 0;
183 u32 cfg;
184
185 if (clk_rate) {
186 if (WARN_ON(clk_rate > mmc->f_max))
187 clk_rate = mmc->f_max;
188 else if (WARN_ON(clk_rate < mmc->f_min))
189 clk_rate = mmc->f_min;
190 }
191
192 if (clk_rate == mmc->actual_clock)
193 return 0;
194
195 /* stop clock */
196 cfg = readl(host->regs + SD_EMMC_CFG);
197 if (!(cfg & CFG_STOP_CLOCK)) {
198 cfg |= CFG_STOP_CLOCK;
199 writel(cfg, host->regs + SD_EMMC_CFG);
200 }
201
202 dev_dbg(host->dev, "change clock rate %u -> %lu\n",
203 mmc->actual_clock, clk_rate);
204
205 if (clk_rate == 0) {
206 mmc->actual_clock = 0;
207 return 0;
208 }
209
210 ret = clk_set_rate(host->cfg_div_clk, clk_rate);
211 if (ret)
212 dev_warn(host->dev, "Unable to set cfg_div_clk to %lu. ret=%d\n",
213 clk_rate, ret);
214 else if (clk_rate && clk_rate != clk_get_rate(host->cfg_div_clk))
215 dev_warn(host->dev, "divider requested rate %lu != actual rate %lu: ret=%d\n",
216 clk_rate, clk_get_rate(host->cfg_div_clk), ret);
217 else
218 mmc->actual_clock = clk_rate;
219
220 /* (re)start clock, if non-zero */
221 if (!ret && clk_rate) {
222 cfg = readl(host->regs + SD_EMMC_CFG);
223 cfg &= ~CFG_STOP_CLOCK;
224 writel(cfg, host->regs + SD_EMMC_CFG);
225 }
226
227 return ret;
228}
229
230/*
231 * The SD/eMMC IP block has an internal mux and divider used for
232 * generating the MMC clock. Use the clock framework to create and
233 * manage these clocks.
234 */
235static int meson_mmc_clk_init(struct meson_host *host)
236{
237 struct clk_init_data init;
238 char clk_name[32];
239 int i, ret = 0;
240 const char *mux_parent_names[MUX_CLK_NUM_PARENTS];
241 unsigned int mux_parent_count = 0;
242 const char *clk_div_parents[1];
243 unsigned int f_min = UINT_MAX;
244 u32 clk_reg, cfg;
245
246 /* get the mux parents */
247 for (i = 0; i < MUX_CLK_NUM_PARENTS; i++) {
248 char name[16];
249
250 snprintf(name, sizeof(name), "clkin%d", i);
251 host->mux_parent[i] = devm_clk_get(host->dev, name);
252 if (IS_ERR(host->mux_parent[i])) {
253 ret = PTR_ERR(host->mux_parent[i]);
254 if (PTR_ERR(host->mux_parent[i]) != -EPROBE_DEFER)
255 dev_err(host->dev, "Missing clock %s\n", name);
256 host->mux_parent[i] = NULL;
257 return ret;
258 }
259
260 host->mux_parent_rate[i] = clk_get_rate(host->mux_parent[i]);
261 mux_parent_names[i] = __clk_get_name(host->mux_parent[i]);
262 mux_parent_count++;
263 if (host->mux_parent_rate[i] < f_min)
264 f_min = host->mux_parent_rate[i];
265 }
266
267 /* cacluate f_min based on input clocks, and max divider value */
268 if (f_min != UINT_MAX)
269 f_min = DIV_ROUND_UP(CLK_SRC_XTAL_RATE, CLK_DIV_MAX);
270 else
271 f_min = 4000000; /* default min: 400 MHz */
272 host->mmc->f_min = f_min;
273
274 /* create the mux */
275 snprintf(clk_name, sizeof(clk_name), "%s#mux", dev_name(host->dev));
276 init.name = clk_name;
277 init.ops = &clk_mux_ops;
278 init.flags = 0;
279 init.parent_names = mux_parent_names;
280 init.num_parents = mux_parent_count;
281
282 host->mux.reg = host->regs + SD_EMMC_CLOCK;
283 host->mux.shift = CLK_SRC_SHIFT;
284 host->mux.mask = CLK_SRC_MASK;
285 host->mux.flags = 0;
286 host->mux.table = NULL;
287 host->mux.hw.init = &init;
288
289 host->mux_clk = devm_clk_register(host->dev, &host->mux.hw);
290 if (WARN_ON(IS_ERR(host->mux_clk)))
291 return PTR_ERR(host->mux_clk);
292
293 /* create the divider */
294 snprintf(clk_name, sizeof(clk_name), "%s#div", dev_name(host->dev));
295 init.name = devm_kstrdup(host->dev, clk_name, GFP_KERNEL);
296 init.ops = &clk_divider_ops;
297 init.flags = CLK_SET_RATE_PARENT;
298 clk_div_parents[0] = __clk_get_name(host->mux_clk);
299 init.parent_names = clk_div_parents;
300 init.num_parents = ARRAY_SIZE(clk_div_parents);
301
302 host->cfg_div.reg = host->regs + SD_EMMC_CLOCK;
303 host->cfg_div.shift = CLK_DIV_SHIFT;
304 host->cfg_div.width = CLK_DIV_WIDTH;
305 host->cfg_div.hw.init = &init;
306 host->cfg_div.flags = CLK_DIVIDER_ONE_BASED |
307 CLK_DIVIDER_ROUND_CLOSEST | CLK_DIVIDER_ALLOW_ZERO;
308
309 host->cfg_div_clk = devm_clk_register(host->dev, &host->cfg_div.hw);
310 if (WARN_ON(PTR_ERR_OR_ZERO(host->cfg_div_clk)))
311 return PTR_ERR(host->cfg_div_clk);
312
313 /* init SD_EMMC_CLOCK to sane defaults w/min clock rate */
314 clk_reg = 0;
315 clk_reg |= CLK_PHASE_180 << CLK_PHASE_SHIFT;
316 clk_reg |= CLK_SRC_XTAL << CLK_SRC_SHIFT;
317 clk_reg |= CLK_DIV_MAX << CLK_DIV_SHIFT;
318 clk_reg &= ~CLK_ALWAYS_ON;
319 writel(clk_reg, host->regs + SD_EMMC_CLOCK);
320
321 /* Ensure clock starts in "auto" mode, not "always on" */
322 cfg = readl(host->regs + SD_EMMC_CFG);
323 cfg &= ~CFG_CLK_ALWAYS_ON;
324 cfg |= CFG_AUTO_CLK;
325 writel(cfg, host->regs + SD_EMMC_CFG);
326
327 ret = clk_prepare_enable(host->cfg_div_clk);
328 if (!ret)
329 ret = meson_mmc_clk_set(host, f_min);
330
331 if (!ret)
332 clk_disable_unprepare(host->cfg_div_clk);
333
334 return ret;
335}
336
337static void meson_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
338{
339 struct meson_host *host = mmc_priv(mmc);
340 u32 bus_width;
341 u32 val, orig;
342
343 /*
344 * GPIO regulator, only controls switching between 1v8 and
345 * 3v3, doesn't support MMC_POWER_OFF, MMC_POWER_ON.
346 */
347 switch (ios->power_mode) {
348 case MMC_POWER_OFF:
349 if (!IS_ERR(mmc->supply.vmmc))
350 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
351
352 if (!IS_ERR(mmc->supply.vqmmc) && host->vqmmc_enabled) {
353 regulator_disable(mmc->supply.vqmmc);
354 host->vqmmc_enabled = false;
355 }
356
357 break;
358
359 case MMC_POWER_UP:
360 if (!IS_ERR(mmc->supply.vmmc))
361 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
362 break;
363
364 case MMC_POWER_ON:
365 if (!IS_ERR(mmc->supply.vqmmc) && !host->vqmmc_enabled) {
366 int ret = regulator_enable(mmc->supply.vqmmc);
367
368 if (ret < 0)
369 dev_err(mmc_dev(mmc),
370 "failed to enable vqmmc regulator\n");
371 else
372 host->vqmmc_enabled = true;
373 }
374
375 break;
376 }
377
378
379 meson_mmc_clk_set(host, ios->clock);
380
381 /* Bus width */
382 val = readl(host->regs + SD_EMMC_CFG);
383 switch (ios->bus_width) {
384 case MMC_BUS_WIDTH_1:
385 bus_width = CFG_BUS_WIDTH_1;
386 break;
387 case MMC_BUS_WIDTH_4:
388 bus_width = CFG_BUS_WIDTH_4;
389 break;
390 case MMC_BUS_WIDTH_8:
391 bus_width = CFG_BUS_WIDTH_8;
392 break;
393 default:
394 dev_err(host->dev, "Invalid ios->bus_width: %u. Setting to 4.\n",
395 ios->bus_width);
396 bus_width = CFG_BUS_WIDTH_4;
397 return;
398 }
399
400 val = readl(host->regs + SD_EMMC_CFG);
401 orig = val;
402
403 val &= ~(CFG_BUS_WIDTH_MASK << CFG_BUS_WIDTH_SHIFT);
404 val |= bus_width << CFG_BUS_WIDTH_SHIFT;
405
406 val &= ~(CFG_BLK_LEN_MASK << CFG_BLK_LEN_SHIFT);
407 val |= ilog2(SD_EMMC_CFG_BLK_SIZE) << CFG_BLK_LEN_SHIFT;
408
409 val &= ~(CFG_RESP_TIMEOUT_MASK << CFG_RESP_TIMEOUT_SHIFT);
410 val |= ilog2(SD_EMMC_CFG_RESP_TIMEOUT) << CFG_RESP_TIMEOUT_SHIFT;
411
412 val &= ~(CFG_RC_CC_MASK << CFG_RC_CC_SHIFT);
413 val |= ilog2(SD_EMMC_CFG_CMD_GAP) << CFG_RC_CC_SHIFT;
414
415 writel(val, host->regs + SD_EMMC_CFG);
416
417 if (val != orig)
418 dev_dbg(host->dev, "%s: SD_EMMC_CFG: 0x%08x -> 0x%08x\n",
419 __func__, orig, val);
420}
421
422static int meson_mmc_request_done(struct mmc_host *mmc, struct mmc_request *mrq)
423{
424 struct meson_host *host = mmc_priv(mmc);
425
426 WARN_ON(host->mrq != mrq);
427
428 host->mrq = NULL;
429 host->cmd = NULL;
430 mmc_request_done(host->mmc, mrq);
431
432 return 0;
433}
434
435static void meson_mmc_start_cmd(struct mmc_host *mmc, struct mmc_command *cmd)
436{
437 struct meson_host *host = mmc_priv(mmc);
438 struct sd_emmc_desc *desc, desc_tmp;
439 u32 cfg;
440 u8 blk_len, cmd_cfg_timeout;
441 unsigned int xfer_bytes = 0;
442
443 /* Setup descriptors */
444 dma_rmb();
445 desc = &desc_tmp;
446 memset(desc, 0, sizeof(struct sd_emmc_desc));
447
448 desc->cmd_cfg |= (cmd->opcode & CMD_CFG_CMD_INDEX_MASK) <<
449 CMD_CFG_CMD_INDEX_SHIFT;
450 desc->cmd_cfg |= CMD_CFG_OWNER; /* owned by CPU */
451 desc->cmd_arg = cmd->arg;
452
453 /* Response */
454 if (cmd->flags & MMC_RSP_PRESENT) {
455 desc->cmd_cfg &= ~CMD_CFG_NO_RESP;
456 if (cmd->flags & MMC_RSP_136)
457 desc->cmd_cfg |= CMD_CFG_RESP_128;
458 desc->cmd_cfg |= CMD_CFG_RESP_NUM;
459 desc->cmd_resp = 0;
460
461 if (!(cmd->flags & MMC_RSP_CRC))
462 desc->cmd_cfg |= CMD_CFG_RESP_NOCRC;
463
464 if (cmd->flags & MMC_RSP_BUSY)
465 desc->cmd_cfg |= CMD_CFG_R1B;
466 } else {
467 desc->cmd_cfg |= CMD_CFG_NO_RESP;
468 }
469
470 /* data? */
471 if (cmd->data) {
472 desc->cmd_cfg |= CMD_CFG_DATA_IO;
473 if (cmd->data->blocks > 1) {
474 desc->cmd_cfg |= CMD_CFG_BLOCK_MODE;
475 desc->cmd_cfg |=
476 (cmd->data->blocks & CMD_CFG_LENGTH_MASK) <<
477 CMD_CFG_LENGTH_SHIFT;
478
479 /* check if block-size matches, if not update */
480 cfg = readl(host->regs + SD_EMMC_CFG);
481 blk_len = cfg & (CFG_BLK_LEN_MASK << CFG_BLK_LEN_SHIFT);
482 blk_len >>= CFG_BLK_LEN_SHIFT;
483 if (blk_len != ilog2(cmd->data->blksz)) {
Kevin Hilmandc012052017-01-25 16:01:39 -0800484 dev_dbg(host->dev, "%s: update blk_len %d -> %d\n",
Kevin Hilman51c5d842016-10-19 11:18:24 -0700485 __func__, blk_len,
Kevin Hilmandc012052017-01-25 16:01:39 -0800486 ilog2(cmd->data->blksz));
Kevin Hilman51c5d842016-10-19 11:18:24 -0700487 blk_len = ilog2(cmd->data->blksz);
488 cfg &= ~(CFG_BLK_LEN_MASK << CFG_BLK_LEN_SHIFT);
489 cfg |= blk_len << CFG_BLK_LEN_SHIFT;
490 writel(cfg, host->regs + SD_EMMC_CFG);
491 }
492 } else {
493 desc->cmd_cfg &= ~CMD_CFG_BLOCK_MODE;
494 desc->cmd_cfg |=
495 (cmd->data->blksz & CMD_CFG_LENGTH_MASK) <<
496 CMD_CFG_LENGTH_SHIFT;
497 }
498
499 cmd->data->bytes_xfered = 0;
500 xfer_bytes = cmd->data->blksz * cmd->data->blocks;
501 if (cmd->data->flags & MMC_DATA_WRITE) {
502 desc->cmd_cfg |= CMD_CFG_DATA_WR;
503 WARN_ON(xfer_bytes > host->bounce_buf_size);
504 sg_copy_to_buffer(cmd->data->sg, cmd->data->sg_len,
505 host->bounce_buf, xfer_bytes);
506 cmd->data->bytes_xfered = xfer_bytes;
507 dma_wmb();
508 } else {
509 desc->cmd_cfg &= ~CMD_CFG_DATA_WR;
510 }
511
512 if (xfer_bytes > 0) {
513 desc->cmd_cfg &= ~CMD_CFG_DATA_NUM;
514 desc->cmd_data = host->bounce_dma_addr & CMD_DATA_MASK;
515 } else {
516 /* write data to data_addr */
517 desc->cmd_cfg |= CMD_CFG_DATA_NUM;
518 desc->cmd_data = 0;
519 }
520
521 cmd_cfg_timeout = 12;
522 } else {
523 desc->cmd_cfg &= ~CMD_CFG_DATA_IO;
524 cmd_cfg_timeout = 10;
525 }
526 desc->cmd_cfg |= (cmd_cfg_timeout & CMD_CFG_TIMEOUT_MASK) <<
527 CMD_CFG_TIMEOUT_SHIFT;
528
529 host->cmd = cmd;
530
531 /* Last descriptor */
532 desc->cmd_cfg |= CMD_CFG_END_OF_CHAIN;
533 writel(desc->cmd_cfg, host->regs + SD_EMMC_CMD_CFG);
534 writel(desc->cmd_data, host->regs + SD_EMMC_CMD_DAT);
535 writel(desc->cmd_resp, host->regs + SD_EMMC_CMD_RSP);
536 wmb(); /* ensure descriptor is written before kicked */
537 writel(desc->cmd_arg, host->regs + SD_EMMC_CMD_ARG);
538}
539
540static void meson_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq)
541{
542 struct meson_host *host = mmc_priv(mmc);
543
544 WARN_ON(host->mrq != NULL);
545
546 /* Stop execution */
547 writel(0, host->regs + SD_EMMC_START);
548
549 /* clear, ack, enable all interrupts */
550 writel(0, host->regs + SD_EMMC_IRQ_EN);
551 writel(IRQ_EN_MASK, host->regs + SD_EMMC_STATUS);
552 writel(IRQ_EN_MASK, host->regs + SD_EMMC_IRQ_EN);
553
554 host->mrq = mrq;
555
556 if (mrq->sbc)
557 meson_mmc_start_cmd(mmc, mrq->sbc);
558 else
559 meson_mmc_start_cmd(mmc, mrq->cmd);
560}
561
562static int meson_mmc_read_resp(struct mmc_host *mmc, struct mmc_command *cmd)
563{
564 struct meson_host *host = mmc_priv(mmc);
565
566 if (cmd->flags & MMC_RSP_136) {
567 cmd->resp[0] = readl(host->regs + SD_EMMC_CMD_RSP3);
568 cmd->resp[1] = readl(host->regs + SD_EMMC_CMD_RSP2);
569 cmd->resp[2] = readl(host->regs + SD_EMMC_CMD_RSP1);
570 cmd->resp[3] = readl(host->regs + SD_EMMC_CMD_RSP);
571 } else if (cmd->flags & MMC_RSP_PRESENT) {
572 cmd->resp[0] = readl(host->regs + SD_EMMC_CMD_RSP);
573 }
574
575 return 0;
576}
577
578static irqreturn_t meson_mmc_irq(int irq, void *dev_id)
579{
580 struct meson_host *host = dev_id;
581 struct mmc_request *mrq;
Heinrich Schuchardt19a91dd2016-12-23 16:01:08 +0100582 struct mmc_command *cmd;
Kevin Hilman51c5d842016-10-19 11:18:24 -0700583 u32 irq_en, status, raw_status;
584 irqreturn_t ret = IRQ_HANDLED;
585
586 if (WARN_ON(!host))
587 return IRQ_NONE;
588
Heinrich Schuchardt19a91dd2016-12-23 16:01:08 +0100589 cmd = host->cmd;
590
Kevin Hilman51c5d842016-10-19 11:18:24 -0700591 mrq = host->mrq;
592
593 if (WARN_ON(!mrq))
594 return IRQ_NONE;
595
596 if (WARN_ON(!cmd))
597 return IRQ_NONE;
598
599 spin_lock(&host->lock);
600 irq_en = readl(host->regs + SD_EMMC_IRQ_EN);
601 raw_status = readl(host->regs + SD_EMMC_STATUS);
602 status = raw_status & irq_en;
603
604 if (!status) {
605 dev_warn(host->dev, "Spurious IRQ! status=0x%08x, irq_en=0x%08x\n",
606 raw_status, irq_en);
607 ret = IRQ_NONE;
608 goto out;
609 }
610
611 cmd->error = 0;
612 if (status & IRQ_RXD_ERR_MASK) {
613 dev_dbg(host->dev, "Unhandled IRQ: RXD error\n");
614 cmd->error = -EILSEQ;
615 }
616 if (status & IRQ_TXD_ERR) {
617 dev_dbg(host->dev, "Unhandled IRQ: TXD error\n");
618 cmd->error = -EILSEQ;
619 }
620 if (status & IRQ_DESC_ERR)
621 dev_dbg(host->dev, "Unhandled IRQ: Descriptor error\n");
622 if (status & IRQ_RESP_ERR) {
623 dev_dbg(host->dev, "Unhandled IRQ: Response error\n");
624 cmd->error = -EILSEQ;
625 }
626 if (status & IRQ_RESP_TIMEOUT) {
627 dev_dbg(host->dev, "Unhandled IRQ: Response timeout\n");
628 cmd->error = -ETIMEDOUT;
629 }
630 if (status & IRQ_DESC_TIMEOUT) {
631 dev_dbg(host->dev, "Unhandled IRQ: Descriptor timeout\n");
632 cmd->error = -ETIMEDOUT;
633 }
634 if (status & IRQ_SDIO)
635 dev_dbg(host->dev, "Unhandled IRQ: SDIO.\n");
636
637 if (status & (IRQ_END_OF_CHAIN | IRQ_RESP_STATUS))
638 ret = IRQ_WAKE_THREAD;
639 else {
640 dev_warn(host->dev, "Unknown IRQ! status=0x%04x: MMC CMD%u arg=0x%08x flags=0x%08x stop=%d\n",
641 status, cmd->opcode, cmd->arg,
642 cmd->flags, mrq->stop ? 1 : 0);
643 if (cmd->data) {
644 struct mmc_data *data = cmd->data;
645
646 dev_warn(host->dev, "\tblksz %u blocks %u flags 0x%08x (%s%s)",
647 data->blksz, data->blocks, data->flags,
648 data->flags & MMC_DATA_WRITE ? "write" : "",
649 data->flags & MMC_DATA_READ ? "read" : "");
650 }
651 }
652
653out:
654 /* ack all (enabled) interrupts */
655 writel(status, host->regs + SD_EMMC_STATUS);
656
657 if (ret == IRQ_HANDLED) {
658 meson_mmc_read_resp(host->mmc, cmd);
659 meson_mmc_request_done(host->mmc, cmd->mrq);
660 }
661
662 spin_unlock(&host->lock);
663 return ret;
664}
665
666static irqreturn_t meson_mmc_irq_thread(int irq, void *dev_id)
667{
668 struct meson_host *host = dev_id;
669 struct mmc_request *mrq = host->mrq;
670 struct mmc_command *cmd = host->cmd;
671 struct mmc_data *data;
672 unsigned int xfer_bytes;
673 int ret = IRQ_HANDLED;
674
675 if (WARN_ON(!mrq))
Heinrich Schuchardt19a91dd2016-12-23 16:01:08 +0100676 return IRQ_NONE;
Kevin Hilman51c5d842016-10-19 11:18:24 -0700677
678 if (WARN_ON(!cmd))
Heinrich Schuchardt19a91dd2016-12-23 16:01:08 +0100679 return IRQ_NONE;
Kevin Hilman51c5d842016-10-19 11:18:24 -0700680
681 data = cmd->data;
682 if (data) {
683 xfer_bytes = data->blksz * data->blocks;
684 if (data->flags & MMC_DATA_READ) {
685 WARN_ON(xfer_bytes > host->bounce_buf_size);
686 sg_copy_from_buffer(data->sg, data->sg_len,
687 host->bounce_buf, xfer_bytes);
688 data->bytes_xfered = xfer_bytes;
689 }
690 }
691
692 meson_mmc_read_resp(host->mmc, cmd);
693 if (!data || !data->stop || mrq->sbc)
694 meson_mmc_request_done(host->mmc, mrq);
695 else
696 meson_mmc_start_cmd(host->mmc, data->stop);
697
698 return ret;
699}
700
701/*
702 * NOTE: we only need this until the GPIO/pinctrl driver can handle
703 * interrupts. For now, the MMC core will use this for polling.
704 */
705static int meson_mmc_get_cd(struct mmc_host *mmc)
706{
707 int status = mmc_gpio_get_cd(mmc);
708
709 if (status == -ENOSYS)
710 return 1; /* assume present */
711
712 return status;
713}
714
715static const struct mmc_host_ops meson_mmc_ops = {
716 .request = meson_mmc_request,
717 .set_ios = meson_mmc_set_ios,
718 .get_cd = meson_mmc_get_cd,
719};
720
721static int meson_mmc_probe(struct platform_device *pdev)
722{
723 struct resource *res;
724 struct meson_host *host;
725 struct mmc_host *mmc;
726 int ret;
727
728 mmc = mmc_alloc_host(sizeof(struct meson_host), &pdev->dev);
729 if (!mmc)
730 return -ENOMEM;
731 host = mmc_priv(mmc);
732 host->mmc = mmc;
733 host->dev = &pdev->dev;
734 dev_set_drvdata(&pdev->dev, host);
735
736 spin_lock_init(&host->lock);
737
738 /* Get regulators and the supported OCR mask */
739 host->vqmmc_enabled = false;
740 ret = mmc_regulator_get_supply(mmc);
741 if (ret == -EPROBE_DEFER)
742 goto free_host;
743
744 ret = mmc_of_parse(mmc);
745 if (ret) {
Kevin Hilmandc012052017-01-25 16:01:39 -0800746 if (ret != -EPROBE_DEFER)
747 dev_warn(&pdev->dev, "error parsing DT: %d\n", ret);
Kevin Hilman51c5d842016-10-19 11:18:24 -0700748 goto free_host;
749 }
750
751 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
752 host->regs = devm_ioremap_resource(&pdev->dev, res);
753 if (IS_ERR(host->regs)) {
754 ret = PTR_ERR(host->regs);
755 goto free_host;
756 }
757
758 host->irq = platform_get_irq(pdev, 0);
759 if (host->irq == 0) {
760 dev_err(&pdev->dev, "failed to get interrupt resource.\n");
761 ret = -EINVAL;
762 goto free_host;
763 }
764
765 host->core_clk = devm_clk_get(&pdev->dev, "core");
766 if (IS_ERR(host->core_clk)) {
767 ret = PTR_ERR(host->core_clk);
768 goto free_host;
769 }
770
771 ret = clk_prepare_enable(host->core_clk);
772 if (ret)
773 goto free_host;
774
775 ret = meson_mmc_clk_init(host);
776 if (ret)
777 goto free_host;
778
779 /* Stop execution */
780 writel(0, host->regs + SD_EMMC_START);
781
782 /* clear, ack, enable all interrupts */
783 writel(0, host->regs + SD_EMMC_IRQ_EN);
784 writel(IRQ_EN_MASK, host->regs + SD_EMMC_STATUS);
785
786 ret = devm_request_threaded_irq(&pdev->dev, host->irq,
787 meson_mmc_irq, meson_mmc_irq_thread,
788 IRQF_SHARED, DRIVER_NAME, host);
789 if (ret)
790 goto free_host;
791
792 /* data bounce buffer */
793 host->bounce_buf_size = SZ_512K;
794 host->bounce_buf =
795 dma_alloc_coherent(host->dev, host->bounce_buf_size,
796 &host->bounce_dma_addr, GFP_KERNEL);
797 if (host->bounce_buf == NULL) {
798 dev_err(host->dev, "Unable to map allocate DMA bounce buffer.\n");
799 ret = -ENOMEM;
800 goto free_host;
801 }
802
803 mmc->ops = &meson_mmc_ops;
804 mmc_add_host(mmc);
805
806 return 0;
807
808free_host:
809 clk_disable_unprepare(host->cfg_div_clk);
810 clk_disable_unprepare(host->core_clk);
811 mmc_free_host(mmc);
812 return ret;
813}
814
815static int meson_mmc_remove(struct platform_device *pdev)
816{
817 struct meson_host *host = dev_get_drvdata(&pdev->dev);
818
819 if (WARN_ON(!host))
820 return 0;
821
822 if (host->bounce_buf)
823 dma_free_coherent(host->dev, host->bounce_buf_size,
824 host->bounce_buf, host->bounce_dma_addr);
825
826 clk_disable_unprepare(host->cfg_div_clk);
827 clk_disable_unprepare(host->core_clk);
828
829 mmc_free_host(host->mmc);
830 return 0;
831}
832
833static const struct of_device_id meson_mmc_of_match[] = {
834 { .compatible = "amlogic,meson-gx-mmc", },
835 { .compatible = "amlogic,meson-gxbb-mmc", },
836 { .compatible = "amlogic,meson-gxl-mmc", },
837 { .compatible = "amlogic,meson-gxm-mmc", },
838 {}
839};
840MODULE_DEVICE_TABLE(of, meson_mmc_of_match);
841
842static struct platform_driver meson_mmc_driver = {
843 .probe = meson_mmc_probe,
844 .remove = meson_mmc_remove,
845 .driver = {
846 .name = DRIVER_NAME,
847 .of_match_table = of_match_ptr(meson_mmc_of_match),
848 },
849};
850
851module_platform_driver(meson_mmc_driver);
852
853MODULE_DESCRIPTION("Amlogic S905*/GX* SD/eMMC driver");
854MODULE_AUTHOR("Kevin Hilman <khilman@baylibre.com>");
855MODULE_LICENSE("GPL v2");