blob: 69aa87babe13089057454d8e9c655cc8eb2d93db [file] [log] [blame]
Stefan Roese5b372122015-10-01 17:34:41 +02001/*
2 * Marvell SD Host Controller Interface
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
Lei Wene75787d2011-06-28 21:50:07 +00007#include <common.h>
8#include <malloc.h>
9#include <sdhci.h>
Stefan Roese5b372122015-10-01 17:34:41 +020010#include <linux/mbus.h>
11
12#define SDHCI_WINDOW_CTRL(win) (0x4080 + ((win) << 4))
13#define SDHCI_WINDOW_BASE(win) (0x4084 + ((win) << 4))
14
15static void sdhci_mvebu_mbus_config(void __iomem *base)
16{
17 const struct mbus_dram_target_info *dram;
18 int i;
19
20 dram = mvebu_mbus_dram_info();
21
22 for (i = 0; i < 4; i++) {
23 writel(0, base + SDHCI_WINDOW_CTRL(i));
24 writel(0, base + SDHCI_WINDOW_BASE(i));
25 }
26
27 for (i = 0; i < dram->num_cs; i++) {
28 const struct mbus_dram_window *cs = dram->cs + i;
29
30 /* Write size, attributes and target id to control register */
31 writel(((cs->size - 1) & 0xffff0000) | (cs->mbus_attr << 8) |
32 (dram->mbus_dram_target_id << 4) | 1,
33 base + SDHCI_WINDOW_CTRL(i));
34
35 /* Write base address to base register */
36 writel(cs->base, base + SDHCI_WINDOW_BASE(i));
37 }
38}
Lei Wene75787d2011-06-28 21:50:07 +000039
Lei Wen02d3ad32011-10-03 20:33:44 +000040#ifdef CONFIG_MMC_SDHCI_IO_ACCESSORS
41static struct sdhci_ops mv_ops;
42
43#if defined(CONFIG_SHEEVA_88SV331xV5)
44#define SD_CE_ATA_2 0xEA
45#define MMC_CARD 0x1000
46#define MMC_WIDTH 0x0100
47static inline void mv_sdhci_writeb(struct sdhci_host *host, u8 val, int reg)
48{
49 struct mmc *mmc = host->mmc;
Rob Herring3a489442015-03-17 15:46:39 -050050 u32 ata = (unsigned long)host->ioaddr + SD_CE_ATA_2;
Lei Wen02d3ad32011-10-03 20:33:44 +000051
52 if (!IS_SD(mmc) && reg == SDHCI_HOST_CONTROL) {
53 if (mmc->bus_width == 8)
54 writew(readw(ata) | (MMC_CARD | MMC_WIDTH), ata);
55 else
56 writew(readw(ata) & ~(MMC_CARD | MMC_WIDTH), ata);
57 }
58
59 writeb(val, host->ioaddr + reg);
60}
61
62#else
63#define mv_sdhci_writeb NULL
64#endif /* CONFIG_SHEEVA_88SV331xV5 */
65#endif /* CONFIG_MMC_SDHCI_IO_ACCESSORS */
66
Lei Wene75787d2011-06-28 21:50:07 +000067static char *MVSDH_NAME = "mv_sdh";
Rob Herring3a489442015-03-17 15:46:39 -050068int mv_sdh_init(unsigned long regbase, u32 max_clk, u32 min_clk, u32 quirks)
Lei Wene75787d2011-06-28 21:50:07 +000069{
70 struct sdhci_host *host = NULL;
71 host = (struct sdhci_host *)malloc(sizeof(struct sdhci_host));
72 if (!host) {
73 printf("sdh_host malloc fail!\n");
Jaehoon Chung2cb5d672016-09-26 08:10:02 +090074 return -ENOMEM;
Lei Wene75787d2011-06-28 21:50:07 +000075 }
76
77 host->name = MVSDH_NAME;
78 host->ioaddr = (void *)regbase;
79 host->quirks = quirks;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +010080 host->max_clk = max_clk;
Lei Wen02d3ad32011-10-03 20:33:44 +000081#ifdef CONFIG_MMC_SDHCI_IO_ACCESSORS
82 memset(&mv_ops, 0, sizeof(struct sdhci_ops));
Anatolij Gustschinbfe6f622011-12-07 11:47:48 +000083 mv_ops.write_b = mv_sdhci_writeb;
Lei Wen02d3ad32011-10-03 20:33:44 +000084 host->ops = &mv_ops;
85#endif
Stefan Roese5b372122015-10-01 17:34:41 +020086
87 if (CONFIG_IS_ENABLED(ARCH_MVEBU)) {
88 /* Configure SDHCI MBUS mbus bridge windows */
89 sdhci_mvebu_mbus_config((void __iomem *)regbase);
90 }
91
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +010092 return add_sdhci(host, 0, min_clk);
Lei Wene75787d2011-06-28 21:50:07 +000093}