blob: de4ae0a0e76688f247f753e7fbd963f804002df3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese5b372122015-10-01 17:34:41 +02002/*
3 * Marvell SD Host Controller Interface
Stefan Roese5b372122015-10-01 17:34:41 +02004 */
5
Lei Wene75787d2011-06-28 21:50:07 +00006#include <common.h>
7#include <malloc.h>
8#include <sdhci.h>
Stefan Roese5b372122015-10-01 17:34:41 +02009#include <linux/mbus.h>
10
11#define SDHCI_WINDOW_CTRL(win) (0x4080 + ((win) << 4))
12#define SDHCI_WINDOW_BASE(win) (0x4084 + ((win) << 4))
13
14static void sdhci_mvebu_mbus_config(void __iomem *base)
15{
16 const struct mbus_dram_target_info *dram;
17 int i;
18
19 dram = mvebu_mbus_dram_info();
20
21 for (i = 0; i < 4; i++) {
22 writel(0, base + SDHCI_WINDOW_CTRL(i));
23 writel(0, base + SDHCI_WINDOW_BASE(i));
24 }
25
26 for (i = 0; i < dram->num_cs; i++) {
27 const struct mbus_dram_window *cs = dram->cs + i;
28
29 /* Write size, attributes and target id to control register */
30 writel(((cs->size - 1) & 0xffff0000) | (cs->mbus_attr << 8) |
31 (dram->mbus_dram_target_id << 4) | 1,
32 base + SDHCI_WINDOW_CTRL(i));
33
34 /* Write base address to base register */
35 writel(cs->base, base + SDHCI_WINDOW_BASE(i));
36 }
37}
Lei Wene75787d2011-06-28 21:50:07 +000038
Lei Wen02d3ad32011-10-03 20:33:44 +000039#ifdef CONFIG_MMC_SDHCI_IO_ACCESSORS
40static struct sdhci_ops mv_ops;
41
42#if defined(CONFIG_SHEEVA_88SV331xV5)
43#define SD_CE_ATA_2 0xEA
44#define MMC_CARD 0x1000
45#define MMC_WIDTH 0x0100
46static inline void mv_sdhci_writeb(struct sdhci_host *host, u8 val, int reg)
47{
48 struct mmc *mmc = host->mmc;
Rob Herring3a489442015-03-17 15:46:39 -050049 u32 ata = (unsigned long)host->ioaddr + SD_CE_ATA_2;
Lei Wen02d3ad32011-10-03 20:33:44 +000050
51 if (!IS_SD(mmc) && reg == SDHCI_HOST_CONTROL) {
52 if (mmc->bus_width == 8)
53 writew(readw(ata) | (MMC_CARD | MMC_WIDTH), ata);
54 else
55 writew(readw(ata) & ~(MMC_CARD | MMC_WIDTH), ata);
56 }
57
58 writeb(val, host->ioaddr + reg);
59}
60
61#else
62#define mv_sdhci_writeb NULL
63#endif /* CONFIG_SHEEVA_88SV331xV5 */
64#endif /* CONFIG_MMC_SDHCI_IO_ACCESSORS */
65
Lei Wene75787d2011-06-28 21:50:07 +000066static char *MVSDH_NAME = "mv_sdh";
Rob Herring3a489442015-03-17 15:46:39 -050067int mv_sdh_init(unsigned long regbase, u32 max_clk, u32 min_clk, u32 quirks)
Lei Wene75787d2011-06-28 21:50:07 +000068{
69 struct sdhci_host *host = NULL;
Matt Pellandca4e7d62018-04-16 10:08:18 -040070 host = calloc(1, sizeof(*host));
Lei Wene75787d2011-06-28 21:50:07 +000071 if (!host) {
72 printf("sdh_host malloc fail!\n");
Jaehoon Chung2cb5d672016-09-26 08:10:02 +090073 return -ENOMEM;
Lei Wene75787d2011-06-28 21:50:07 +000074 }
75
76 host->name = MVSDH_NAME;
77 host->ioaddr = (void *)regbase;
78 host->quirks = quirks;
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +010079 host->max_clk = max_clk;
Lei Wen02d3ad32011-10-03 20:33:44 +000080#ifdef CONFIG_MMC_SDHCI_IO_ACCESSORS
81 memset(&mv_ops, 0, sizeof(struct sdhci_ops));
Anatolij Gustschinbfe6f622011-12-07 11:47:48 +000082 mv_ops.write_b = mv_sdhci_writeb;
Lei Wen02d3ad32011-10-03 20:33:44 +000083 host->ops = &mv_ops;
84#endif
Stefan Roese5b372122015-10-01 17:34:41 +020085
86 if (CONFIG_IS_ENABLED(ARCH_MVEBU)) {
87 /* Configure SDHCI MBUS mbus bridge windows */
88 sdhci_mvebu_mbus_config((void __iomem *)regbase);
89 }
90
Stefan Herbrechtsmeier6d0e34b2017-01-17 15:58:48 +010091 return add_sdhci(host, 0, min_clk);
Lei Wene75787d2011-06-28 21:50:07 +000092}