1 /* 2 * Copyright 2017 Emmanuel Vadot <manu@freebsd.org> 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are 6 * met: 7 * 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE 18 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 19 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 20 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 21 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 22 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 23 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 24 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include <sys/param.h> 31 #include <sys/kernel.h> 32 #include <sys/bus.h> 33 #include <sys/module.h> 34 #include <sys/queue.h> 35 #include <sys/taskqueue.h> 36 37 #include <machine/bus.h> 38 39 #include <dev/mmc/bridge.h> 40 41 #include <dev/ofw/ofw_bus_subr.h> 42 43 #include <dev/mmc/host/dwmmc_var.h> 44 45 #include "opt_mmccam.h" 46 47 static struct ofw_compat_data compat_data[] = { 48 {"altr,socfpga-dw-mshc", 1}, 49 {NULL, 0}, 50 }; 51 52 static int 53 altera_dwmmc_probe(device_t dev) 54 { 55 56 if (!ofw_bus_status_okay(dev)) 57 return (ENXIO); 58 59 if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0) 60 return (ENXIO); 61 62 device_set_desc(dev, "Synopsys DesignWare Mobile " 63 "Storage Host Controller (Altera)"); 64 65 return (BUS_PROBE_VENDOR); 66 } 67 68 static int 69 altera_dwmmc_attach(device_t dev) 70 { 71 struct dwmmc_softc *sc; 72 phandle_t root; 73 74 sc = device_get_softc(dev); 75 sc->hwtype = HWTYPE_ALTERA; 76 77 root = OF_finddevice("/"); 78 79 if (ofw_bus_node_is_compatible(root, "altr,socfpga-stratix10")) { 80 sc->bus_hz = 24000000; 81 sc->use_pio = 1; 82 } 83 84 return (dwmmc_attach(dev)); 85 } 86 87 static device_method_t altera_dwmmc_methods[] = { 88 /* bus interface */ 89 DEVMETHOD(device_probe, altera_dwmmc_probe), 90 DEVMETHOD(device_attach, altera_dwmmc_attach), 91 92 DEVMETHOD_END 93 }; 94 95 static devclass_t altera_dwmmc_devclass; 96 97 DEFINE_CLASS_1(altera_dwmmc, altera_dwmmc_driver, altera_dwmmc_methods, 98 sizeof(struct dwmmc_softc), dwmmc_driver); 99 100 DRIVER_MODULE(altera_dwmmc, simplebus, altera_dwmmc_driver, 101 altera_dwmmc_devclass, 0, 0); 102 DRIVER_MODULE(altera_dwmmc, ofwbus, altera_dwmmc_driver, altera_dwmmc_devclass 103 , NULL, NULL); 104 #ifndef MMCCAM 105 MMC_DECLARE_BRIDGE(altera_dwmmc); 106 #endif 107