1 /*- 2 * Copyright (c) 2011-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 "opt_platform.h" 28 29 #include <sys/param.h> 30 #include <sys/systm.h> 31 #include <sys/kernel.h> 32 #include <sys/bus.h> 33 #include <sys/module.h> 34 #include <sys/smp.h> 35 36 #include <machine/bus.h> 37 38 #include <dev/ofw/ofw_bus.h> 39 #include <dev/ofw/ofw_bus_subr.h> 40 #include <dev/ofw/ofw_subr.h> 41 42 #include "bman.h" 43 #include "portals.h" 44 45 #define FBMAN_DEVSTR "Freescale Buffer Manager" 46 47 static int bman_fdt_probe(device_t); 48 49 static device_method_t bman_methods[] = { 50 /* Device interface */ 51 DEVMETHOD(device_probe, bman_fdt_probe), 52 DEVMETHOD(device_attach, bman_attach), 53 DEVMETHOD(device_detach, bman_detach), 54 55 DEVMETHOD(device_suspend, bman_suspend), 56 DEVMETHOD(device_resume, bman_resume), 57 DEVMETHOD(device_shutdown, bman_shutdown), 58 59 { 0, 0 } 60 }; 61 62 static driver_t bman_driver = { 63 "bman", 64 bman_methods, 65 sizeof(struct bman_softc), 66 }; 67 68 EARLY_DRIVER_MODULE(bman, simplebus, bman_driver, 0, 0, BUS_PASS_SUPPORTDEV); 69 70 static int 71 bman_fdt_probe(device_t dev) 72 { 73 74 if (!ofw_bus_is_compatible(dev, "fsl,bman")) 75 return (ENXIO); 76 77 device_set_desc(dev, FBMAN_DEVSTR); 78 79 return (BUS_PROBE_DEFAULT); 80 } 81 82 /* 83 * BMAN Portals 84 */ 85 #define BMAN_PORT_DEVSTR "Freescale Buffer Manager - Portals" 86 87 static device_probe_t bman_portals_fdt_probe; 88 static device_attach_t bman_portals_fdt_attach; 89 90 static device_method_t bm_portals_methods[] = { 91 /* Device interface */ 92 DEVMETHOD(device_probe, bman_portals_fdt_probe), 93 DEVMETHOD(device_attach, bman_portals_fdt_attach), 94 DEVMETHOD(device_detach, bman_portals_detach), 95 96 { 0, 0 } 97 }; 98 99 static driver_t bm_portals_driver = { 100 "bman-portals", 101 bm_portals_methods, 102 sizeof(struct dpaa_portals_softc), 103 }; 104 105 EARLY_DRIVER_MODULE(bman_portals, ofwbus, bm_portals_driver, 0, 0, 106 BUS_PASS_BUS); 107 108 static void 109 get_addr_props(phandle_t node, uint32_t *addrp, uint32_t *sizep) 110 { 111 112 *addrp = 2; 113 *sizep = 1; 114 OF_getencprop(node, "#address-cells", addrp, sizeof(*addrp)); 115 OF_getencprop(node, "#size-cells", sizep, sizeof(*sizep)); 116 } 117 118 static int 119 bman_portals_fdt_probe(device_t dev) 120 { 121 phandle_t node; 122 123 if (ofw_bus_is_compatible(dev, "simple-bus")) { 124 node = ofw_bus_get_node(dev); 125 for (node = OF_child(node); node > 0; node = OF_peer(node)) { 126 if (ofw_bus_node_is_compatible(node, "fsl,bman-portal")) 127 break; 128 } 129 if (node <= 0) 130 return (ENXIO); 131 } else if (!ofw_bus_is_compatible(dev, "fsl,bman-portals")) 132 return (ENXIO); 133 134 device_set_desc(dev, BMAN_PORT_DEVSTR); 135 136 return (BUS_PROBE_DEFAULT); 137 } 138 139 static int 140 bman_portals_fdt_attach(device_t dev) 141 { 142 struct dpaa_portals_softc *sc; 143 struct resource_list_entry *rle; 144 phandle_t node, child, cpu_node; 145 vm_paddr_t portal_pa; 146 vm_size_t portal_size; 147 uint32_t addr, size; 148 ihandle_t cpu; 149 int cpu_num, cpus, intr_rid; 150 struct dpaa_portals_devinfo di; 151 struct ofw_bus_devinfo ofw_di = {}; 152 153 cpus = 0; 154 sc = device_get_softc(dev); 155 sc->sc_dev = dev; 156 157 node = ofw_bus_get_node(dev); 158 get_addr_props(node, &addr, &size); 159 160 /* Find portals tied to CPUs */ 161 for (child = OF_child(node); child != 0; child = OF_peer(child)) { 162 if (cpus >= mp_ncpus) 163 break; 164 if (!ofw_bus_node_is_compatible(child, "fsl,bman-portal")) { 165 continue; 166 } 167 /* Checkout related cpu */ 168 if (OF_getprop(child, "cpu-handle", (void *)&cpu, 169 sizeof(cpu)) > 0) { 170 cpu_node = OF_instance_to_package(cpu); 171 /* Acquire cpu number */ 172 if (OF_getencprop(cpu_node, "reg", &cpu_num, sizeof(cpu_num)) <= 0) { 173 device_printf(dev, "Could not retrieve CPU number.\n"); 174 return (ENXIO); 175 } 176 } else 177 cpu_num = cpus; 178 179 cpus++; 180 181 if (ofw_bus_gen_setup_devinfo(&ofw_di, child) != 0) { 182 device_printf(dev, "could not set up devinfo\n"); 183 continue; 184 } 185 186 resource_list_init(&di.di_res); 187 if (ofw_bus_reg_to_rl(dev, child, addr, size, &di.di_res)) { 188 device_printf(dev, "%s: could not process 'reg' " 189 "property\n", ofw_di.obd_name); 190 ofw_bus_gen_destroy_devinfo(&ofw_di); 191 continue; 192 } 193 if (ofw_bus_intr_to_rl(dev, child, &di.di_res, &intr_rid)) { 194 device_printf(dev, "%s: could not process " 195 "'interrupts' property\n", ofw_di.obd_name); 196 resource_list_free(&di.di_res); 197 ofw_bus_gen_destroy_devinfo(&ofw_di); 198 continue; 199 } 200 di.di_intr_rid = intr_rid; 201 202 ofw_reg_to_paddr(child, 0, &portal_pa, &portal_size, NULL); 203 rle = resource_list_find(&di.di_res, SYS_RES_MEMORY, 0); 204 205 if (sc->sc_dp_pa == 0) 206 sc->sc_dp_pa = portal_pa - rle->start; 207 208 portal_size = rle->end + 1; 209 rle = resource_list_find(&di.di_res, SYS_RES_MEMORY, 1); 210 portal_size = ulmax(rle->end + 1, portal_size); 211 sc->sc_dp_size = ulmax(sc->sc_dp_size, portal_size); 212 213 if (dpaa_portal_alloc_res(dev, &di, cpu_num)) 214 goto err; 215 } 216 217 ofw_bus_gen_destroy_devinfo(&ofw_di); 218 219 return (bman_portals_attach(dev)); 220 err: 221 resource_list_free(&di.di_res); 222 ofw_bus_gen_destroy_devinfo(&ofw_di); 223 bman_portals_detach(dev); 224 return (ENXIO); 225 } 226