blob: a0f1511cb6f308de404defef63383016bfd2d932 [file] [log] [blame]
Jaehoon Chung7aff9672012-10-15 19:10:31 +00001/*
2 * (C) Copyright 2012 SAMSUNG Electronics
3 * Jaehoon Chung <jh80.chung@samsung.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Jaehoon Chung7aff9672012-10-15 19:10:31 +00006 */
7
8#include <common.h>
Jaehoon Chung7aff9672012-10-15 19:10:31 +00009#include <dwmmc.h>
Amard8501212013-04-27 11:42:55 +053010#include <fdtdec.h>
11#include <libfdt.h>
12#include <malloc.h>
Jaehoon Chung7aff9672012-10-15 19:10:31 +000013#include <asm/arch/dwmmc.h>
14#include <asm/arch/clk.h>
Amard8501212013-04-27 11:42:55 +053015#include <asm/arch/pinmux.h>
Jaehoon Chung7aff9672012-10-15 19:10:31 +000016
Amard8501212013-04-27 11:42:55 +053017#define DWMMC_MAX_CH_NUM 4
18#define DWMMC_MAX_FREQ 52000000
19#define DWMMC_MIN_FREQ 400000
20#define DWMMC_MMC0_CLKSEL_VAL 0x03030001
21#define DWMMC_MMC2_CLKSEL_VAL 0x03020001
Jaehoon Chung7aff9672012-10-15 19:10:31 +000022
Amard8501212013-04-27 11:42:55 +053023/*
24 * Function used as callback function to initialise the
25 * CLKSEL register for every mmc channel.
26 */
Jaehoon Chung7aff9672012-10-15 19:10:31 +000027static void exynos_dwmci_clksel(struct dwmci_host *host)
28{
Amard8501212013-04-27 11:42:55 +053029 dwmci_writel(host, DWMCI_CLKSEL, host->clksel_val);
30}
Jaehoon Chung7aff9672012-10-15 19:10:31 +000031
Amard8501212013-04-27 11:42:55 +053032unsigned int exynos_dwmci_get_clk(int dev_index)
33{
34 return get_mmc_clk(dev_index);
Jaehoon Chung7aff9672012-10-15 19:10:31 +000035}
36
Amard8501212013-04-27 11:42:55 +053037/*
38 * This function adds the mmc channel to be registered with mmc core.
39 * index - mmc channel number.
40 * regbase - register base address of mmc channel specified in 'index'.
41 * bus_width - operating bus width of mmc channel specified in 'index'.
42 * clksel - value to be written into CLKSEL register in case of FDT.
43 * NULL in case od non-FDT.
44 */
45int exynos_dwmci_add_port(int index, u32 regbase, int bus_width, u32 clksel)
Jaehoon Chung7aff9672012-10-15 19:10:31 +000046{
47 struct dwmci_host *host = NULL;
Amard8501212013-04-27 11:42:55 +053048 unsigned int div;
49 unsigned long freq, sclk;
Jaehoon Chung7aff9672012-10-15 19:10:31 +000050 host = malloc(sizeof(struct dwmci_host));
51 if (!host) {
52 printf("dwmci_host malloc fail!\n");
53 return 1;
54 }
Amard8501212013-04-27 11:42:55 +053055 /* request mmc clock vlaue of 52MHz. */
56 freq = 52000000;
57 sclk = get_mmc_clk(index);
58 div = DIV_ROUND_UP(sclk, freq);
59 /* set the clock divisor for mmc */
60 set_mmc_clk(index, div);
Jaehoon Chung7aff9672012-10-15 19:10:31 +000061
Amard8501212013-04-27 11:42:55 +053062 host->name = "EXYNOS DWMMC";
Jaehoon Chung7aff9672012-10-15 19:10:31 +000063 host->ioaddr = (void *)regbase;
64 host->buswidth = bus_width;
Rajeshwari Shinde70163092013-10-29 12:53:13 +053065#ifdef CONFIG_EXYNOS5420
66 host->quirks = DWMCI_QUIRK_DISABLE_SMU;
67#endif
Amard8501212013-04-27 11:42:55 +053068
69 if (clksel) {
70 host->clksel_val = clksel;
71 } else {
72 if (0 == index)
73 host->clksel_val = DWMMC_MMC0_CLKSEL_VAL;
74 if (2 == index)
75 host->clksel_val = DWMMC_MMC2_CLKSEL_VAL;
76 }
77
Jaehoon Chung7aff9672012-10-15 19:10:31 +000078 host->clksel = exynos_dwmci_clksel;
79 host->dev_index = index;
Jaehoon Chungd94735b2013-10-06 18:59:31 +090080 host->get_mmc_clk = exynos_dwmci_get_clk;
Amard8501212013-04-27 11:42:55 +053081 /* Add the mmc channel to be registered with mmc core */
82 if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) {
83 debug("dwmmc%d registration failed\n", index);
84 return -1;
85 }
86 return 0;
87}
Jaehoon Chung7aff9672012-10-15 19:10:31 +000088
Amard8501212013-04-27 11:42:55 +053089#ifdef CONFIG_OF_CONTROL
90int exynos_dwmmc_init(const void *blob)
91{
92 int index, bus_width;
93 int node_list[DWMMC_MAX_CH_NUM];
94 int err = 0, dev_id, flag, count, i;
95 u32 clksel_val, base, timing[3];
Jaehoon Chung7aff9672012-10-15 19:10:31 +000096
Amard8501212013-04-27 11:42:55 +053097 count = fdtdec_find_aliases_for_id(blob, "mmc",
98 COMPAT_SAMSUNG_EXYNOS5_DWMMC, node_list,
99 DWMMC_MAX_CH_NUM);
100
101 for (i = 0; i < count; i++) {
102 int node = node_list[i];
103
104 if (node <= 0)
105 continue;
106
107 /* Extract device id for each mmc channel */
108 dev_id = pinmux_decode_periph_id(blob, node);
109
110 /* Get the bus width from the device node */
111 bus_width = fdtdec_get_int(blob, node, "samsung,bus-width", 0);
112 if (bus_width <= 0) {
113 debug("DWMMC: Can't get bus-width\n");
114 return -1;
115 }
116 if (8 == bus_width)
117 flag = PINMUX_FLAG_8BIT_MODE;
118 else
119 flag = PINMUX_FLAG_NONE;
120
121 /* config pinmux for each mmc channel */
122 err = exynos_pinmux_config(dev_id, flag);
123 if (err) {
124 debug("DWMMC not configured\n");
125 return err;
126 }
127
128 index = dev_id - PERIPH_ID_SDMMC0;
129
130 /* Get the base address from the device node */
131 base = fdtdec_get_addr(blob, node, "reg");
132 if (!base) {
133 debug("DWMMC: Can't get base address\n");
134 return -1;
135 }
136 /* Extract the timing info from the node */
137 err = fdtdec_get_int_array(blob, node, "samsung,timing",
138 timing, 3);
139 if (err) {
140 debug("Can't get sdr-timings for divider\n");
141 return -1;
142 }
143
144 clksel_val = (DWMCI_SET_SAMPLE_CLK(timing[0]) |
145 DWMCI_SET_DRV_CLK(timing[1]) |
146 DWMCI_SET_DIV_RATIO(timing[2]));
147 /* Initialise each mmc channel */
148 err = exynos_dwmci_add_port(index, base, bus_width, clksel_val);
149 if (err)
150 debug("dwmmc Channel-%d init failed\n", index);
151 }
Jaehoon Chung7aff9672012-10-15 19:10:31 +0000152 return 0;
153}
Amard8501212013-04-27 11:42:55 +0530154#endif