fdtbus.c revision 1.28 1 /* $NetBSD: fdtbus.c,v 1.28 2019/05/20 11:12:10 jmcneill Exp $ */
2
3 /*-
4 * Copyright (c) 2015 Jared D. McNeill <jmcneill (at) invisible.ca>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29 #include <sys/cdefs.h>
30 __KERNEL_RCSID(0, "$NetBSD: fdtbus.c,v 1.28 2019/05/20 11:12:10 jmcneill Exp $");
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/device.h>
35 #include <sys/kmem.h>
36
37 #include <sys/bus.h>
38
39 #include <dev/ofw/openfirm.h>
40
41 #include <dev/fdt/fdtvar.h>
42
43 #include <libfdt.h>
44
45 #include "locators.h"
46
47 #define FDT_MAX_PATH 256
48
49 struct fdt_node {
50 device_t n_bus;
51 device_t n_dev;
52 int n_phandle;
53 const char *n_name;
54 struct fdt_attach_args n_faa;
55 cfdata_t n_cf;
56
57 u_int n_order;
58
59 TAILQ_ENTRY(fdt_node) n_nodes;
60 };
61
62 static TAILQ_HEAD(, fdt_node) fdt_nodes =
63 TAILQ_HEAD_INITIALIZER(fdt_nodes);
64 static bool fdt_need_rescan = false;
65
66 struct fdt_softc {
67 device_t sc_dev;
68 int sc_phandle;
69 struct fdt_attach_args sc_faa;
70 };
71
72 static int fdt_match(device_t, cfdata_t, void *);
73 static void fdt_attach(device_t, device_t, void *);
74 static int fdt_rescan(device_t, const char *, const int *);
75 static void fdt_childdet(device_t, device_t);
76
77 static int fdt_scan_submatch(device_t, cfdata_t, const int *, void *);
78 static cfdata_t fdt_scan_best(struct fdt_softc *, struct fdt_node *);
79 static void fdt_scan(struct fdt_softc *, int);
80 static void fdt_add_node(struct fdt_node *);
81 static u_int fdt_get_order(int);
82
83 static const char * const fdtbus_compatible[] =
84 { "simple-bus", NULL };
85
86 CFATTACH_DECL2_NEW(simplebus, sizeof(struct fdt_softc),
87 fdt_match, fdt_attach, NULL, NULL, fdt_rescan, fdt_childdet);
88
89 static int
90 fdt_match(device_t parent, cfdata_t cf, void *aux)
91 {
92 const struct fdt_attach_args *faa = aux;
93 const int phandle = faa->faa_phandle;
94 int match;
95
96 /* Check compatible string */
97 match = of_match_compatible(phandle, fdtbus_compatible);
98 if (match)
99 return match;
100
101 /* Some nodes have no compatible string */
102 if (!of_hasprop(phandle, "compatible")) {
103 if (OF_finddevice("/clocks") == phandle)
104 return 1;
105 if (OF_finddevice("/chosen") == phandle)
106 return 1;
107 }
108
109 /* Always match the root node */
110 return OF_finddevice("/") == phandle;
111 }
112
113 static void
114 fdt_attach(device_t parent, device_t self, void *aux)
115 {
116 struct fdt_softc *sc = device_private(self);
117 const struct fdt_attach_args *faa = aux;
118 const int phandle = faa->faa_phandle;
119 const char *descr;
120
121 sc->sc_dev = self;
122 sc->sc_phandle = phandle;
123 sc->sc_faa = *faa;
124
125 aprint_naive("\n");
126
127 descr = fdtbus_get_string(phandle, "model");
128 if (descr)
129 aprint_normal(": %s\n", descr);
130 else
131 aprint_normal("\n");
132
133 /* Find all child nodes */
134 fdt_add_bus(self, phandle, &sc->sc_faa);
135
136 /* Only the root bus should scan for devices */
137 if (OF_finddevice("/") != faa->faa_phandle)
138 return;
139
140 /* Scan devices */
141 fdt_rescan(self, NULL, NULL);
142 }
143
144 static int
145 fdt_rescan(device_t self, const char *ifattr, const int *locs)
146 {
147 struct fdt_softc *sc = device_private(self);
148 struct fdt_node *node;
149 int pass;
150
151 TAILQ_FOREACH(node, &fdt_nodes, n_nodes)
152 node->n_cf = fdt_scan_best(sc, node);
153
154 pass = 0;
155 fdt_need_rescan = false;
156 do {
157 fdt_scan(sc, pass);
158 if (fdt_need_rescan == true) {
159 pass = 0;
160 TAILQ_FOREACH(node, &fdt_nodes, n_nodes) {
161 if (node->n_dev == NULL)
162 node->n_cf = fdt_scan_best(sc, node);
163 }
164 fdt_need_rescan = false;
165 } else {
166 pass++;
167 }
168 } while (pass <= FDTCF_PASS_DEFAULT);
169
170 return 0;
171 }
172
173 static void
174 fdt_childdet(device_t parent, device_t child)
175 {
176 struct fdt_node *node;
177
178 TAILQ_FOREACH(node, &fdt_nodes, n_nodes)
179 if (node->n_dev == child) {
180 node->n_dev = NULL;
181 break;
182 }
183 }
184
185 static void
186 fdt_init_attach_args(const struct fdt_attach_args *faa_tmpl, struct fdt_node *node,
187 bool quiet, struct fdt_attach_args *faa)
188 {
189 *faa = *faa_tmpl;
190 faa->faa_phandle = node->n_phandle;
191 faa->faa_name = node->n_name;
192 faa->faa_quiet = quiet;
193 }
194
195 static bool
196 fdt_add_bus_stdmatch(void *arg, int child)
197 {
198 return fdtbus_status_okay(child);
199 }
200
201 void
202 fdt_add_bus(device_t bus, const int phandle, struct fdt_attach_args *faa)
203 {
204 fdt_add_bus_match(bus, phandle, faa, fdt_add_bus_stdmatch, NULL);
205 }
206
207 void
208 fdt_add_bus_match(device_t bus, const int phandle, struct fdt_attach_args *faa,
209 bool (*fn)(void *, int), void *fnarg)
210 {
211 int child;
212
213 for (child = OF_child(phandle); child; child = OF_peer(child)) {
214 if (fn && !fn(fnarg, child))
215 continue;
216
217 fdt_add_child(bus, child, faa, fdt_get_order(child));
218 }
219 }
220
221 void
222 fdt_add_child(device_t bus, const int child, struct fdt_attach_args *faa,
223 u_int order)
224 {
225 struct fdt_node *node;
226
227 /* Add the node to our device list */
228 node = kmem_alloc(sizeof(*node), KM_SLEEP);
229 node->n_bus = bus;
230 node->n_dev = NULL;
231 node->n_phandle = child;
232 node->n_name = fdtbus_get_string(child, "name");
233 node->n_order = order;
234 node->n_faa = *faa;
235 node->n_faa.faa_phandle = child;
236 node->n_faa.faa_name = node->n_name;
237
238 fdt_add_node(node);
239 fdt_need_rescan = true;
240 }
241
242 static int
243 fdt_scan_submatch(device_t parent, cfdata_t cf, const int *locs, void *aux)
244 {
245 if (locs[FDTCF_PASS] != FDTCF_PASS_DEFAULT &&
246 locs[FDTCF_PASS] != cf->cf_loc[FDTCF_PASS])
247 return 0;
248
249 return config_stdsubmatch(parent, cf, locs, aux);
250 }
251
252 static cfdata_t
253 fdt_scan_best(struct fdt_softc *sc, struct fdt_node *node)
254 {
255 struct fdt_attach_args faa;
256 cfdata_t cf, best_cf;
257 int match, best_match;
258
259 best_cf = NULL;
260 best_match = 0;
261
262 for (int pass = 0; pass <= FDTCF_PASS_DEFAULT; pass++) {
263 const int locs[FDTCF_NLOCS] = {
264 [FDTCF_PASS] = pass
265 };
266 fdt_init_attach_args(&sc->sc_faa, node, true, &faa);
267 cf = config_search_loc(fdt_scan_submatch, node->n_bus, "fdt", locs, &faa);
268 if (cf == NULL)
269 continue;
270 match = config_match(node->n_bus, cf, &faa);
271 if (match > best_match) {
272 best_match = match;
273 best_cf = cf;
274 }
275 }
276
277 return best_cf;
278 }
279
280 static void
281 fdt_scan(struct fdt_softc *sc, int pass)
282 {
283 struct fdt_node *node;
284 struct fdt_attach_args faa;
285 const int locs[FDTCF_NLOCS] = {
286 [FDTCF_PASS] = pass
287 };
288 bool quiet = pass != FDTCF_PASS_DEFAULT;
289 prop_dictionary_t dict;
290 char buf[FDT_MAX_PATH];
291
292 TAILQ_FOREACH(node, &fdt_nodes, n_nodes) {
293 if (node->n_dev != NULL || node->n_cf == NULL)
294 continue;
295
296 fdt_init_attach_args(&sc->sc_faa, node, quiet, &faa);
297
298 /*
299 * Make sure we don't attach before a better match in a later pass.
300 */
301 cfdata_t cf_pass =
302 config_search_loc(fdt_scan_submatch, node->n_bus, "fdt", locs, &faa);
303 if (node->n_cf != cf_pass)
304 continue;
305
306 /*
307 * Attach the device.
308 */
309 node->n_dev = config_attach_loc(node->n_bus, cf_pass, locs,
310 &faa, fdtbus_print);
311 if (node->n_dev) {
312 dict = device_properties(node->n_dev);
313 if (fdtbus_get_path(node->n_phandle, buf, sizeof(buf)))
314 prop_dictionary_set_cstring(dict, "fdt-path", buf);
315 }
316 }
317 }
318
319 static void
320 fdt_add_node(struct fdt_node *new_node)
321 {
322 struct fdt_node *node;
323
324 TAILQ_FOREACH(node, &fdt_nodes, n_nodes)
325 if (node->n_order > new_node->n_order) {
326 TAILQ_INSERT_BEFORE(node, new_node, n_nodes);
327 return;
328 }
329 TAILQ_INSERT_TAIL(&fdt_nodes, new_node, n_nodes);
330 }
331
332 void
333 fdt_remove_byhandle(int phandle)
334 {
335 struct fdt_node *node;
336
337 TAILQ_FOREACH(node, &fdt_nodes, n_nodes) {
338 if (node->n_phandle == phandle) {
339 TAILQ_REMOVE(&fdt_nodes, node, n_nodes);
340 return;
341 }
342 }
343 }
344
345 void
346 fdt_remove_bycompat(const char *compatible[])
347 {
348 struct fdt_node *node, *next;
349
350 TAILQ_FOREACH_SAFE(node, &fdt_nodes, n_nodes, next) {
351 if (of_match_compatible(node->n_phandle, compatible)) {
352 TAILQ_REMOVE(&fdt_nodes, node, n_nodes);
353 }
354 }
355 }
356
357 int
358 fdt_find_with_property(const char *prop, int *pindex)
359 {
360 struct fdt_node *node;
361 int index = 0;
362
363 TAILQ_FOREACH(node, &fdt_nodes, n_nodes) {
364 if (index++ < *pindex)
365 continue;
366 if (of_hasprop(node->n_phandle, prop)) {
367 *pindex = index;
368 return node->n_phandle;
369 }
370 }
371
372 return -1;
373 }
374
375 static u_int
376 fdt_get_order(int phandle)
377 {
378 u_int val = UINT_MAX;
379 int child;
380
381 of_getprop_uint32(phandle, "phandle", &val);
382
383 for (child = OF_child(phandle); child; child = OF_peer(child)) {
384 u_int child_val = fdt_get_order(child);
385 if (child_val < val)
386 val = child_val;
387 }
388
389 return val;
390 }
391
392 int
393 fdtbus_print(void *aux, const char *pnp)
394 {
395 const struct fdt_attach_args * const faa = aux;
396 char buf[FDT_MAX_PATH];
397 const char *name = buf;
398 int len;
399
400 if (pnp && faa->faa_quiet)
401 return QUIET;
402
403 /* Skip "not configured" for nodes w/o compatible property */
404 if (pnp && OF_getproplen(faa->faa_phandle, "compatible") <= 0)
405 return QUIET;
406
407 if (!fdtbus_get_path(faa->faa_phandle, buf, sizeof(buf)))
408 name = faa->faa_name;
409
410 if (pnp) {
411 aprint_normal("%s at %s", name, pnp);
412 const char *compat = fdt_getprop(fdtbus_get_data(),
413 fdtbus_phandle2offset(faa->faa_phandle), "compatible",
414 &len);
415 while (len > 0) {
416 aprint_debug(" <%s>", compat);
417 len -= (strlen(compat) + 1);
418 compat += (strlen(compat) + 1);
419 }
420 } else
421 aprint_debug(" (%s)", name);
422
423 return UNCONF;
424 }
425