xref: /freebsd/sys/dev/mmc/host/dwmmc_hisi.c (revision b0d29bc47dba79f6f38e67eabadfb4b32ffd9390)
1 /*
2  * Copyright 2015 Andrew Turner.
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 #include <sys/queue.h>
36 #include <sys/taskqueue.h>
37 
38 #include <machine/bus.h>
39 
40 #include <dev/mmc/bridge.h>
41 
42 #include <dev/ofw/ofw_bus_subr.h>
43 
44 #include <dev/mmc/host/dwmmc_var.h>
45 
46 #include "opt_mmccam.h"
47 
48 static device_probe_t hisi_dwmmc_probe;
49 static device_attach_t hisi_dwmmc_attach;
50 
51 static int
52 hisi_dwmmc_probe(device_t dev)
53 {
54 
55 	if (!ofw_bus_status_okay(dev))
56 		return (ENXIO);
57 
58 	if (!ofw_bus_is_compatible(dev, "hisilicon,hi6220-dw-mshc"))
59 		return (ENXIO);
60 
61 	device_set_desc(dev, "Synopsys DesignWare Mobile "
62 	    "Storage Host Controller (HiSilicon)");
63 
64 	return (BUS_PROBE_VENDOR);
65 }
66 
67 static int
68 hisi_dwmmc_attach(device_t dev)
69 {
70 	struct dwmmc_softc *sc;
71 
72 	sc = device_get_softc(dev);
73 	sc->hwtype = HWTYPE_HISILICON;
74 	/* TODO: Calculate this from a clock driver */
75 	sc->bus_hz = 24000000; /* 24MHz */
76 
77 	/*
78 	 * ARM64TODO: This is likely because we lack support for
79 	 * DMA when the controller is not cache-coherent on arm64.
80 	 */
81 	sc->use_pio = 1;
82 
83 	return (dwmmc_attach(dev));
84 }
85 
86 static device_method_t hisi_dwmmc_methods[] = {
87 	/* bus interface */
88 	DEVMETHOD(device_probe, hisi_dwmmc_probe),
89 	DEVMETHOD(device_attach, hisi_dwmmc_attach),
90 
91 	DEVMETHOD_END
92 };
93 
94 static devclass_t hisi_dwmmc_devclass;
95 
96 DEFINE_CLASS_1(hisi_dwmmc, hisi_dwmmc_driver, hisi_dwmmc_methods,
97     sizeof(struct dwmmc_softc), dwmmc_driver);
98 
99 DRIVER_MODULE(hisi_dwmmc, simplebus, hisi_dwmmc_driver,
100     hisi_dwmmc_devclass, 0, 0);
101 DRIVER_MODULE(hisi_dwmmc, ofwbus, hisi_dwmmc_driver, hisi_dwmmc_devclass
102     , NULL, NULL);
103 #ifndef MMCCAM
104 MMC_DECLARE_BRIDGE(hisi_dwmmc);
105 #endif
106