1 /*- 2 * Copyright (c) 2012 Semihalf. 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 7 * are met: 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 PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include <sys/param.h> 31 #include <sys/systm.h> 32 #include <sys/kernel.h> 33 #include <sys/bus.h> 34 #include <sys/module.h> 35 36 #include <dev/fdt/simplebus.h> 37 #include <dev/ofw/ofw_bus.h> 38 #include <dev/ofw/ofw_bus_subr.h> 39 40 #include <contrib/ncsw/inc/ncsw_ext.h> 41 #include <contrib/ncsw/inc/enet_ext.h> 42 43 #include "fman.h" 44 45 #define FFMAN_DEVSTR "Freescale Frame Manager" 46 47 static int fman_fdt_probe(device_t dev); 48 49 static device_method_t fman_methods[] = { 50 /* Device interface */ 51 DEVMETHOD(device_probe, fman_fdt_probe), 52 DEVMETHOD(device_attach, fman_attach), 53 DEVMETHOD(device_detach, fman_detach), 54 55 DEVMETHOD(device_shutdown, fman_shutdown), 56 DEVMETHOD(device_suspend, fman_suspend), 57 DEVMETHOD(device_resume, fman_resume), 58 59 { 0, 0 } 60 }; 61 62 DEFINE_CLASS_1(fman, fman_driver, fman_methods, 63 sizeof(struct fman_softc), simplebus_driver); 64 static devclass_t fman_devclass; 65 EARLY_DRIVER_MODULE(fman, simplebus, fman_driver, fman_devclass, 0, 0, 66 BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE); 67 68 69 static int 70 fman_fdt_probe(device_t dev) 71 { 72 73 if (!ofw_bus_is_compatible(dev, "fsl,fman")) 74 return (ENXIO); 75 76 device_set_desc(dev, FFMAN_DEVSTR); 77 78 return (BUS_PROBE_DEFAULT); 79 } 80 81 uint32_t 82 fman_get_clock(struct fman_softc *sc) 83 { 84 device_t dev; 85 phandle_t node; 86 pcell_t fman_clock; 87 88 dev = sc->sc_base.dev; 89 node = ofw_bus_get_node(dev); 90 91 if ((OF_getprop(node, "clock-frequency", &fman_clock, 92 sizeof(fman_clock)) <= 0) || (fman_clock == 0)) { 93 device_printf(dev, "could not acquire correct frequency " 94 "from DTS\n"); 95 96 return (0); 97 } 98 99 return ((uint32_t)fman_clock); 100 } 101 102