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 "qman.h"
43 #include "portals.h"
44
45 #define FQMAN_DEVSTR "Freescale Queue Manager"
46
47 static int qman_fdt_probe(device_t);
48
49 static device_method_t qman_methods[] = {
50 /* Device interface */
51 DEVMETHOD(device_probe, qman_fdt_probe),
52 DEVMETHOD(device_attach, qman_attach),
53 DEVMETHOD(device_detach, qman_detach),
54
55 DEVMETHOD(device_suspend, qman_suspend),
56 DEVMETHOD(device_resume, qman_resume),
57 DEVMETHOD(device_shutdown, qman_shutdown),
58
59 DEVMETHOD_END
60 };
61
62 static driver_t qman_driver = {
63 "qman",
64 qman_methods,
65 sizeof(struct qman_softc),
66 };
67
68 EARLY_DRIVER_MODULE(qman, simplebus, qman_driver, 0, 0, BUS_PASS_SUPPORTDEV);
69
70 static int
qman_fdt_probe(device_t dev)71 qman_fdt_probe(device_t dev)
72 {
73
74 if (!ofw_bus_is_compatible(dev, "fsl,qman"))
75 return (ENXIO);
76
77 device_set_desc(dev, FQMAN_DEVSTR);
78
79 return (BUS_PROBE_DEFAULT);
80 }
81
82 /*
83 * QMAN Portals
84 */
85 #define QMAN_PORT_DEVSTR "Freescale Queue Manager - Portals"
86
87 static device_probe_t qman_portals_fdt_probe;
88 static device_attach_t qman_portals_fdt_attach;
89
90 static device_method_t qm_portals_methods[] = {
91 /* Device interface */
92 DEVMETHOD(device_probe, qman_portals_fdt_probe),
93 DEVMETHOD(device_attach, qman_portals_fdt_attach),
94 DEVMETHOD(device_detach, qman_portals_detach),
95
96 DEVMETHOD_END
97 };
98
99 static driver_t qm_portals_driver = {
100 "qman-portals",
101 qm_portals_methods,
102 sizeof(struct dpaa_portals_softc),
103 };
104
105 EARLY_DRIVER_MODULE(qman_portals, ofwbus, qm_portals_driver, 0, 0,
106 BUS_PASS_BUS);
107
108 static void
get_addr_props(phandle_t node,uint32_t * addrp,uint32_t * sizep)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
qman_portals_fdt_probe(device_t dev)119 qman_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,qman-portal"))
127 break;
128 }
129 if (node <= 0)
130 return (ENXIO);
131 } else if (!ofw_bus_is_compatible(dev, "fsl,qman-portals"))
132 return (ENXIO);
133
134 device_set_desc(dev, QMAN_PORT_DEVSTR);
135
136 return (BUS_PROBE_DEFAULT);
137 }
138
139 static int
qman_portals_fdt_attach(device_t dev)140 qman_portals_fdt_attach(device_t dev)
141 {
142 struct dpaa_portals_softc *sc;
143 phandle_t node, child, cpu_node;
144 vm_paddr_t portal_pa, portal_par_pa;
145 vm_size_t portal_size;
146 uint32_t addr, paddr, size;
147 ihandle_t cpu;
148 int cpu_num, cpus, intr_rid;
149 struct dpaa_portals_devinfo di;
150 struct ofw_bus_devinfo ofw_di = {};
151 cell_t *range;
152 int nrange;
153 int i;
154
155 cpus = 0;
156 sc = device_get_softc(dev);
157 sc->sc_dev = dev;
158
159 node = ofw_bus_get_node(dev);
160
161 /* Get this node's range */
162 get_addr_props(ofw_bus_get_node(device_get_parent(dev)), &paddr, &size);
163 get_addr_props(node, &addr, &size);
164
165 nrange = OF_getencprop_alloc_multi(node, "ranges",
166 sizeof(*range), (void **)&range);
167 if (nrange < addr + paddr + size)
168 return (ENXIO);
169 portal_pa = portal_par_pa = 0;
170 portal_size = 0;
171 for (i = 0; i < addr; i++) {
172 portal_pa <<= 32;
173 portal_pa |= range[i];
174 }
175 for (; i < paddr + addr; i++) {
176 portal_par_pa <<= 32;
177 portal_par_pa |= range[i];
178 }
179 portal_pa += portal_par_pa;
180 for (; i < size + paddr + addr; i++) {
181 portal_size = (uintmax_t)portal_size << 32;
182 portal_size |= range[i];
183 }
184 OF_prop_free(range);
185 sc->sc_dp_size = portal_size;
186 sc->sc_dp_pa = portal_pa;
187
188 /* Find portals tied to CPUs */
189 for (child = OF_child(node); child != 0; child = OF_peer(child)) {
190 if (cpus >= mp_ncpus)
191 break;
192 if (!ofw_bus_node_is_compatible(child, "fsl,qman-portal")) {
193 continue;
194 }
195 /* Checkout related cpu */
196 if (OF_getprop(child, "cpu-handle", (void *)&cpu,
197 sizeof(cpu)) > 0) {
198 cpu_node = OF_instance_to_package(cpu);
199 /* Acquire cpu number */
200 if (OF_getencprop(cpu_node, "reg", &cpu_num, sizeof(cpu_num)) <= 0) {
201 device_printf(dev, "Could not retrieve CPU number.\n");
202 return (ENXIO);
203 }
204 } else
205 cpu_num = cpus;
206 cpus++;
207
208 if (ofw_bus_gen_setup_devinfo(&ofw_di, child) != 0) {
209 device_printf(dev, "could not set up devinfo\n");
210 continue;
211 }
212
213 resource_list_init(&di.di_res);
214 if (ofw_bus_reg_to_rl(dev, child, addr, size, &di.di_res)) {
215 device_printf(dev, "%s: could not process 'reg' "
216 "property\n", ofw_di.obd_name);
217 ofw_bus_gen_destroy_devinfo(&ofw_di);
218 continue;
219 }
220 if (ofw_bus_intr_to_rl(dev, child, &di.di_res, &intr_rid)) {
221 device_printf(dev, "%s: could not process "
222 "'interrupts' property\n", ofw_di.obd_name);
223 resource_list_free(&di.di_res);
224 ofw_bus_gen_destroy_devinfo(&ofw_di);
225 continue;
226 }
227 di.di_intr_rid = intr_rid;
228
229 if (dpaa_portal_alloc_res(dev, &di, cpu_num))
230 goto err;
231 }
232
233 ofw_bus_gen_destroy_devinfo(&ofw_di);
234
235 return (qman_portals_attach(dev));
236 err:
237 resource_list_free(&di.di_res);
238 ofw_bus_gen_destroy_devinfo(&ofw_di);
239 qman_portals_detach(dev);
240 return (ENXIO);
241 }
242