xref: /freebsd/sys/dev/mmc/host/dwmmc_samsung.c (revision 0957b409)
1 /*
2  * Copyright 2017 Emmanuel Vadot <manu@freebsd.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met:
8  *
9  *  1. Redistributions of source code must retain the above copyright
10  *     notice, this list of conditions and the following disclaimer.
11  *  2. Redistributions in binary form must reproduce the above copyright
12  *     notice, this list of conditions and the following disclaimer in the
13  *     documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE
19  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
22  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30 
31 #include <sys/param.h>
32 #include <sys/kernel.h>
33 #include <sys/bus.h>
34 #include <sys/module.h>
35 
36 #include <machine/bus.h>
37 
38 #include <dev/mmc/bridge.h>
39 
40 #include <dev/ofw/ofw_bus.h>
41 #include <dev/ofw/ofw_bus_subr.h>
42 
43 #include <dev/mmc/host/dwmmc_var.h>
44 #include <dev/mmc/host/dwmmc_reg.h>
45 
46 #define	WRITE4(_sc, _reg, _val)		\
47 	bus_write_4((_sc)->res[0], _reg, _val)
48 
49 static struct ofw_compat_data compat_data[] = {
50 	{"samsung,exynos5420-dw-mshc",	1},
51 	{NULL,				0},
52 };
53 
54 static int
55 samsung_dwmmc_probe(device_t dev)
56 {
57 
58 	if (!ofw_bus_status_okay(dev))
59 		return (ENXIO);
60 
61 	if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0)
62 		return (ENXIO);
63 
64 	device_set_desc(dev, "Synopsys DesignWare Mobile "
65 	    "Storage Host Controller (Samsung)");
66 
67 	return (BUS_PROBE_VENDOR);
68 }
69 
70 static int
71 samsung_dwmmc_attach(device_t dev)
72 {
73 	struct dwmmc_softc *sc;
74 	pcell_t dts_value[3];
75 	phandle_t node;
76 	int len;
77 
78 	sc = device_get_softc(dev);
79 	sc->hwtype = HWTYPE_EXYNOS;
80 
81 	if ((node = ofw_bus_get_node(sc->dev)) == -1)
82 		return (ENXIO);
83 
84 	if ((len = OF_getproplen(node, "samsung,dw-mshc-ciu-div")) <= 0)
85 		return (ENXIO);
86 	OF_getencprop(node, "samsung,dw-mshc-ciu-div", dts_value, len);
87 	sc->sdr_timing = (dts_value[0] << SDMMC_CLKSEL_DIVIDER_SHIFT);
88 	sc->ddr_timing = (dts_value[0] << SDMMC_CLKSEL_DIVIDER_SHIFT);
89 
90 	if ((len = OF_getproplen(node, "samsung,dw-mshc-sdr-timing")) <= 0)
91 		return (ENXIO);
92 	OF_getencprop(node, "samsung,dw-mshc-sdr-timing", dts_value, len);
93 	sc->sdr_timing |= ((dts_value[0] << SDMMC_CLKSEL_SAMPLE_SHIFT) |
94 			  (dts_value[1] << SDMMC_CLKSEL_DRIVE_SHIFT));
95 
96 	if ((len = OF_getproplen(node, "samsung,dw-mshc-ddr-timing")) <= 0)
97 		return (ENXIO);
98 	OF_getencprop(node, "samsung,dw-mshc-ddr-timing", dts_value, len);
99 	sc->ddr_timing |= ((dts_value[0] << SDMMC_CLKSEL_SAMPLE_SHIFT) |
100 			  (dts_value[1] << SDMMC_CLKSEL_DRIVE_SHIFT));
101 
102 	WRITE4(sc, EMMCP_MPSBEGIN0, 0);
103 	WRITE4(sc, EMMCP_SEND0, 0);
104 	WRITE4(sc, EMMCP_CTRL0, (MPSCTRL_SECURE_READ_BIT |
105 	    MPSCTRL_SECURE_WRITE_BIT |
106 	    MPSCTRL_NON_SECURE_READ_BIT |
107 	    MPSCTRL_NON_SECURE_WRITE_BIT |
108 	    MPSCTRL_VALID));
109 
110 	return (dwmmc_attach(dev));
111 }
112 
113 static device_method_t samsung_dwmmc_methods[] = {
114 	/* bus interface */
115 	DEVMETHOD(device_probe, samsung_dwmmc_probe),
116 	DEVMETHOD(device_attach, samsung_dwmmc_attach),
117 
118 	DEVMETHOD_END
119 };
120 
121 static devclass_t samsung_dwmmc_devclass;
122 
123 DEFINE_CLASS_1(samsung_dwmmc, samsung_dwmmc_driver, samsung_dwmmc_methods,
124     sizeof(struct dwmmc_softc), dwmmc_driver);
125 
126 DRIVER_MODULE(samsung_dwmmc, simplebus, samsung_dwmmc_driver,
127     samsung_dwmmc_devclass, 0, 0);
128 DRIVER_MODULE(samsung_dwmmc, ofwbus, samsung_dwmmc_driver, samsung_dwmmc_devclass
129     , NULL, NULL);
130 #ifndef MMCCAM
131 MMC_DECLARE_BRIDGE(samsung_dwmmc);
132 #endif
133