blob: 8076761e06e0d44bcc0924864d94c40c450a434e [file] [log] [blame]
Chin Liang Seec5c1af22013-12-30 18:26:14 -06001/*
2 * (C) Copyright 2013 Altera Corporation <www.altera.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <malloc.h>
Marek Vasut129adf52015-07-25 10:48:14 +02009#include <fdtdec.h>
10#include <libfdt.h>
Chin Liang Seec5c1af22013-12-30 18:26:14 -060011#include <dwmmc.h>
Pavel Machek498d1a62014-09-08 14:08:45 +020012#include <errno.h>
Chin Liang Seec5c1af22013-12-30 18:26:14 -060013#include <asm/arch/dwmmc.h>
14#include <asm/arch/clock_manager.h>
15#include <asm/arch/system_manager.h>
16
17static const struct socfpga_clock_manager *clock_manager_base =
18 (void *)SOCFPGA_CLKMGR_ADDRESS;
19static const struct socfpga_system_manager *system_manager_base =
20 (void *)SOCFPGA_SYSMGR_ADDRESS;
21
Chin Liang Seec5c1af22013-12-30 18:26:14 -060022static void socfpga_dwmci_clksel(struct dwmci_host *host)
23{
24 unsigned int drvsel;
25 unsigned int smplsel;
26
27 /* Disable SDMMC clock. */
Pavel Machek51fb4552014-07-19 23:57:59 +020028 clrbits_le32(&clock_manager_base->per_pll.en,
Chin Liang Seec5c1af22013-12-30 18:26:14 -060029 CLKMGR_PERPLLGRP_EN_SDMMCCLK_MASK);
30
31 /* Configures drv_sel and smpl_sel */
32 drvsel = CONFIG_SOCFPGA_DWMMC_DRVSEL;
33 smplsel = CONFIG_SOCFPGA_DWMMC_SMPSEL;
34
35 debug("%s: drvsel %d smplsel %d\n", __func__, drvsel, smplsel);
36 writel(SYSMGR_SDMMC_CTRL_SET(smplsel, drvsel),
37 &system_manager_base->sdmmcgrp_ctrl);
38
39 debug("%s: SYSMGR_SDMMCGRP_CTRL_REG = 0x%x\n", __func__,
40 readl(&system_manager_base->sdmmcgrp_ctrl));
41
42 /* Enable SDMMC clock */
Pavel Machek51fb4552014-07-19 23:57:59 +020043 setbits_le32(&clock_manager_base->per_pll.en,
Chin Liang Seec5c1af22013-12-30 18:26:14 -060044 CLKMGR_PERPLLGRP_EN_SDMMCCLK_MASK);
45}
46
Marek Vasut129adf52015-07-25 10:48:14 +020047static int socfpga_dwmci_of_probe(const void *blob, int node, const int idx)
Chin Liang Seec5c1af22013-12-30 18:26:14 -060048{
Marek Vasut129adf52015-07-25 10:48:14 +020049 /* FIXME: probe from DT eventually too/ */
50 const unsigned long clk = cm_get_mmc_controller_clk_hz();
51
Pavel Machek78606492014-07-21 13:30:19 +020052 struct dwmci_host *host;
Marek Vasut129adf52015-07-25 10:48:14 +020053 fdt_addr_t reg_base;
54 int bus_width, fifo_depth;
Pavel Machek498d1a62014-09-08 14:08:45 +020055
56 if (clk == 0) {
Marek Vasut129adf52015-07-25 10:48:14 +020057 printf("DWMMC%d: MMC clock is zero!", idx);
Pavel Machek498d1a62014-09-08 14:08:45 +020058 return -EINVAL;
59 }
Pavel Machek78606492014-07-21 13:30:19 +020060
Marek Vasut129adf52015-07-25 10:48:14 +020061 /* Get the register address from the device node */
62 reg_base = fdtdec_get_addr(blob, node, "reg");
63 if (!reg_base) {
64 printf("DWMMC%d: Can't get base address\n", idx);
65 return -EINVAL;
Chin Liang Seec5c1af22013-12-30 18:26:14 -060066 }
67
Marek Vasut129adf52015-07-25 10:48:14 +020068 /* Get the bus width from the device node */
69 bus_width = fdtdec_get_int(blob, node, "bus-width", 0);
70 if (bus_width <= 0) {
71 printf("DWMMC%d: Can't get bus-width\n", idx);
72 return -EINVAL;
73 }
74
75 fifo_depth = fdtdec_get_int(blob, node, "fifo-depth", 0);
76 if (fifo_depth < 0) {
77 printf("DWMMC%d: Can't get FIFO depth\n", idx);
78 return -EINVAL;
79 }
80
81 /* Allocate the host */
82 host = calloc(1, sizeof(*host));
83 if (!host)
84 return -ENOMEM;
85
Pavel Machek78606492014-07-21 13:30:19 +020086 host->name = "SOCFPGA DWMMC";
Marek Vasut129adf52015-07-25 10:48:14 +020087 host->ioaddr = (void *)reg_base;
Chin Liang Seec5c1af22013-12-30 18:26:14 -060088 host->buswidth = bus_width;
89 host->clksel = socfpga_dwmci_clksel;
Marek Vasut129adf52015-07-25 10:48:14 +020090 host->dev_index = idx;
91 /* Fixed clock divide by 4 which due to the SDMMC wrapper */
Pavel Machek498d1a62014-09-08 14:08:45 +020092 host->bus_hz = clk;
Chin Liang Seec5c1af22013-12-30 18:26:14 -060093 host->fifoth_val = MSIZE(0x2) |
Marek Vasut129adf52015-07-25 10:48:14 +020094 RX_WMARK(fifo_depth / 2 - 1) | TX_WMARK(fifo_depth / 2);
Chin Liang Seec5c1af22013-12-30 18:26:14 -060095
96 return add_dwmci(host, host->bus_hz, 400000);
97}
98
Marek Vasut129adf52015-07-25 10:48:14 +020099static int socfpga_dwmci_process_node(const void *blob, int nodes[],
100 int count)
101{
102 int i, node, ret;
103
104 for (i = 0; i < count; i++) {
105 node = nodes[i];
106 if (node <= 0)
107 continue;
108
109 ret = socfpga_dwmci_of_probe(blob, node, i);
110 if (ret) {
111 printf("%s: failed to decode dev %d\n", __func__, i);
112 return ret;
113 }
114 }
115 return 0;
116}
117
118int socfpga_dwmmc_init(const void *blob)
119{
120 int nodes[2]; /* Max. two controllers. */
121 int ret, count;
122
123 count = fdtdec_find_aliases_for_id(blob, "mmc",
124 COMPAT_ALTERA_SOCFPGA_DWMMC,
125 nodes, ARRAY_SIZE(nodes));
126
127 ret = socfpga_dwmci_process_node(blob, nodes, count);
128
129 return ret;
130}