xref: /freebsd/sys/dev/ofw/openfirm.c (revision eb69d1f144a6fcc765d1b9d44a5ae8082353e70b)
1 /*	$NetBSD: Locore.c,v 1.7 2000/08/20 07:04:59 tsubai Exp $	*/
2 
3 /*-
4  * SPDX-License-Identifier: BSD-4-Clause
5  *
6  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
7  * Copyright (C) 1995, 1996 TooLs GmbH.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by TooLs GmbH.
21  * 4. The name of TooLs GmbH may not be used to endorse or promote products
22  *    derived from this software without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
25  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
29  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
30  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
32  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
33  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
35 /*-
36  * Copyright (C) 2000 Benno Rice.
37  * All rights reserved.
38  *
39  * Redistribution and use in source and binary forms, with or without
40  * modification, are permitted provided that the following conditions
41  * are met:
42  * 1. Redistributions of source code must retain the above copyright
43  *    notice, this list of conditions and the following disclaimer.
44  * 2. Redistributions in binary form must reproduce the above copyright
45  *    notice, this list of conditions and the following disclaimer in the
46  *    documentation and/or other materials provided with the distribution.
47  *
48  * THIS SOFTWARE IS PROVIDED BY Benno Rice ``AS IS'' AND ANY EXPRESS OR
49  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
50  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
51  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
52  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
53  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
54  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
55  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
56  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
57  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
58  */
59 
60 #include <sys/cdefs.h>
61 __FBSDID("$FreeBSD$");
62 
63 #include "opt_platform.h"
64 
65 #include <sys/param.h>
66 #include <sys/kernel.h>
67 #include <sys/lock.h>
68 #include <sys/malloc.h>
69 #include <sys/mutex.h>
70 #include <sys/queue.h>
71 #include <sys/systm.h>
72 #include <sys/endian.h>
73 
74 #include <machine/stdarg.h>
75 
76 #include <dev/ofw/ofwvar.h>
77 #include <dev/ofw/openfirm.h>
78 
79 #include "ofw_if.h"
80 
81 static void OF_putchar(int c, void *arg);
82 
83 MALLOC_DEFINE(M_OFWPROP, "openfirm", "Open Firmware properties");
84 
85 static ihandle_t stdout;
86 
87 static ofw_def_t	*ofw_def_impl = NULL;
88 static ofw_t		ofw_obj;
89 static struct ofw_kobj	ofw_kernel_obj;
90 static struct kobj_ops	ofw_kernel_kops;
91 
92 struct xrefinfo {
93 	phandle_t	xref;
94 	phandle_t 	node;
95 	device_t  	dev;
96 	SLIST_ENTRY(xrefinfo) next_entry;
97 };
98 
99 static SLIST_HEAD(, xrefinfo) xreflist = SLIST_HEAD_INITIALIZER(xreflist);
100 static struct mtx xreflist_lock;
101 static boolean_t xref_init_done;
102 
103 #define	FIND_BY_XREF	0
104 #define	FIND_BY_NODE	1
105 #define	FIND_BY_DEV	2
106 
107 /*
108  * xref-phandle-device lookup helper routines.
109  *
110  * As soon as we are able to use malloc(), walk the node tree and build a list
111  * of info that cross-references node handles, xref handles, and device_t
112  * instances.  This list exists primarily to allow association of a device_t
113  * with an xref handle, but it is also used to speed up translation between xref
114  * and node handles.  Before malloc() is available we have to recursively search
115  * the node tree each time we want to translate between a node and xref handle.
116  * Afterwards we can do the translations by searching this much shorter list.
117  */
118 static void
119 xrefinfo_create(phandle_t node)
120 {
121 	struct xrefinfo * xi;
122 	phandle_t child, xref;
123 
124 	/*
125 	 * Recursively descend from parent, looking for nodes with a property
126 	 * named either "phandle", "ibm,phandle", or "linux,phandle".  For each
127 	 * such node found create an entry in the xreflist.
128 	 */
129 	for (child = OF_child(node); child != 0; child = OF_peer(child)) {
130 		xrefinfo_create(child);
131 		if (OF_getencprop(child, "phandle", &xref, sizeof(xref)) ==
132 		    -1 && OF_getencprop(child, "ibm,phandle", &xref,
133 		    sizeof(xref)) == -1 && OF_getencprop(child,
134 		    "linux,phandle", &xref, sizeof(xref)) == -1)
135 			continue;
136 		xi = malloc(sizeof(*xi), M_OFWPROP, M_WAITOK | M_ZERO);
137 		xi->node = child;
138 		xi->xref = xref;
139 		SLIST_INSERT_HEAD(&xreflist, xi, next_entry);
140 	}
141 }
142 
143 static void
144 xrefinfo_init(void *unsed)
145 {
146 
147 	/*
148 	 * There is no locking during this init because it runs much earlier
149 	 * than any of the clients/consumers of the xref list data, but we do
150 	 * initialize the mutex that will be used for access later.
151 	 */
152 	mtx_init(&xreflist_lock, "OF xreflist lock", NULL, MTX_DEF);
153 	xrefinfo_create(OF_peer(0));
154 	xref_init_done = true;
155 }
156 SYSINIT(xrefinfo, SI_SUB_KMEM, SI_ORDER_ANY, xrefinfo_init, NULL);
157 
158 static struct xrefinfo *
159 xrefinfo_find(uintptr_t key, int find_by)
160 {
161 	struct xrefinfo *rv, *xi;
162 
163 	rv = NULL;
164 	mtx_lock(&xreflist_lock);
165 	SLIST_FOREACH(xi, &xreflist, next_entry) {
166 		if ((find_by == FIND_BY_XREF && (phandle_t)key == xi->xref) ||
167 		    (find_by == FIND_BY_NODE && (phandle_t)key == xi->node) ||
168 		    (find_by == FIND_BY_DEV && key == (uintptr_t)xi->dev)) {
169 			rv = xi;
170 			break;
171 		}
172 	}
173 	mtx_unlock(&xreflist_lock);
174 	return (rv);
175 }
176 
177 static struct xrefinfo *
178 xrefinfo_add(phandle_t node, phandle_t xref, device_t dev)
179 {
180 	struct xrefinfo *xi;
181 
182 	xi = malloc(sizeof(*xi), M_OFWPROP, M_WAITOK);
183 	xi->node = node;
184 	xi->xref = xref;
185 	xi->dev  = dev;
186 	mtx_lock(&xreflist_lock);
187 	SLIST_INSERT_HEAD(&xreflist, xi, next_entry);
188 	mtx_unlock(&xreflist_lock);
189 	return (xi);
190 }
191 
192 /*
193  * OFW install routines.  Highest priority wins, equal priority also
194  * overrides allowing last-set to win.
195  */
196 SET_DECLARE(ofw_set, ofw_def_t);
197 
198 boolean_t
199 OF_install(char *name, int prio)
200 {
201 	ofw_def_t *ofwp, **ofwpp;
202 	static int curr_prio = 0;
203 
204 	/* Allow OF layer to be uninstalled */
205 	if (name == NULL) {
206 		ofw_def_impl = NULL;
207 		return (FALSE);
208 	}
209 
210 	/*
211 	 * Try and locate the OFW kobj corresponding to the name.
212 	 */
213 	SET_FOREACH(ofwpp, ofw_set) {
214 		ofwp = *ofwpp;
215 
216 		if (ofwp->name &&
217 		    !strcmp(ofwp->name, name) &&
218 		    prio >= curr_prio) {
219 			curr_prio = prio;
220 			ofw_def_impl = ofwp;
221 			return (TRUE);
222 		}
223 	}
224 
225 	return (FALSE);
226 }
227 
228 /* Initializer */
229 int
230 OF_init(void *cookie)
231 {
232 	phandle_t chosen;
233 	int rv;
234 
235 	if (ofw_def_impl == NULL)
236 		return (-1);
237 
238 	ofw_obj = &ofw_kernel_obj;
239 	/*
240 	 * Take care of compiling the selected class, and
241 	 * then statically initialize the OFW object.
242 	 */
243 	kobj_class_compile_static(ofw_def_impl, &ofw_kernel_kops);
244 	kobj_init_static((kobj_t)ofw_obj, ofw_def_impl);
245 
246 	rv = OFW_INIT(ofw_obj, cookie);
247 
248 	if ((chosen = OF_finddevice("/chosen")) != -1)
249 		if (OF_getencprop(chosen, "stdout", &stdout,
250 		    sizeof(stdout)) == -1)
251 			stdout = -1;
252 
253 	return (rv);
254 }
255 
256 static void
257 OF_putchar(int c, void *arg __unused)
258 {
259 	char cbuf;
260 
261 	if (c == '\n') {
262 		cbuf = '\r';
263 		OF_write(stdout, &cbuf, 1);
264 	}
265 
266 	cbuf = c;
267 	OF_write(stdout, &cbuf, 1);
268 }
269 
270 void
271 OF_printf(const char *fmt, ...)
272 {
273 	va_list	va;
274 
275 	va_start(va, fmt);
276 	(void)kvprintf(fmt, OF_putchar, NULL, 10, va);
277 	va_end(va);
278 }
279 
280 /*
281  * Generic functions
282  */
283 
284 /* Test to see if a service exists. */
285 int
286 OF_test(const char *name)
287 {
288 
289 	if (ofw_def_impl == NULL)
290 		return (-1);
291 
292 	return (OFW_TEST(ofw_obj, name));
293 }
294 
295 int
296 OF_interpret(const char *cmd, int nreturns, ...)
297 {
298 	va_list ap;
299 	cell_t slots[16];
300 	int i = 0;
301 	int status;
302 
303 	if (ofw_def_impl == NULL)
304 		return (-1);
305 
306 	status = OFW_INTERPRET(ofw_obj, cmd, nreturns, slots);
307 	if (status == -1)
308 		return (status);
309 
310 	va_start(ap, nreturns);
311 	while (i < nreturns)
312 		*va_arg(ap, cell_t *) = slots[i++];
313 	va_end(ap);
314 
315 	return (status);
316 }
317 
318 /*
319  * Device tree functions
320  */
321 
322 /* Return the next sibling of this node or 0. */
323 phandle_t
324 OF_peer(phandle_t node)
325 {
326 
327 	if (ofw_def_impl == NULL)
328 		return (0);
329 
330 	return (OFW_PEER(ofw_obj, node));
331 }
332 
333 /* Return the first child of this node or 0. */
334 phandle_t
335 OF_child(phandle_t node)
336 {
337 
338 	if (ofw_def_impl == NULL)
339 		return (0);
340 
341 	return (OFW_CHILD(ofw_obj, node));
342 }
343 
344 /* Return the parent of this node or 0. */
345 phandle_t
346 OF_parent(phandle_t node)
347 {
348 
349 	if (ofw_def_impl == NULL)
350 		return (0);
351 
352 	return (OFW_PARENT(ofw_obj, node));
353 }
354 
355 /* Return the package handle that corresponds to an instance handle. */
356 phandle_t
357 OF_instance_to_package(ihandle_t instance)
358 {
359 
360 	if (ofw_def_impl == NULL)
361 		return (-1);
362 
363 	return (OFW_INSTANCE_TO_PACKAGE(ofw_obj, instance));
364 }
365 
366 /* Get the length of a property of a package. */
367 ssize_t
368 OF_getproplen(phandle_t package, const char *propname)
369 {
370 
371 	if (ofw_def_impl == NULL)
372 		return (-1);
373 
374 	return (OFW_GETPROPLEN(ofw_obj, package, propname));
375 }
376 
377 /* Check existence of a property of a package. */
378 int
379 OF_hasprop(phandle_t package, const char *propname)
380 {
381 
382 	return (OF_getproplen(package, propname) >= 0 ? 1 : 0);
383 }
384 
385 /* Get the value of a property of a package. */
386 ssize_t
387 OF_getprop(phandle_t package, const char *propname, void *buf, size_t buflen)
388 {
389 
390 	if (ofw_def_impl == NULL)
391 		return (-1);
392 
393 	return (OFW_GETPROP(ofw_obj, package, propname, buf, buflen));
394 }
395 
396 ssize_t
397 OF_getencprop(phandle_t node, const char *propname, pcell_t *buf, size_t len)
398 {
399 	ssize_t retval;
400 	int i;
401 
402 	KASSERT(len % 4 == 0, ("Need a multiple of 4 bytes"));
403 
404 	retval = OF_getprop(node, propname, buf, len);
405 	if (retval <= 0)
406 		return (retval);
407 
408 	for (i = 0; i < len/4; i++)
409 		buf[i] = be32toh(buf[i]);
410 
411 	return (retval);
412 }
413 
414 /*
415  * Recursively search the node and its parent for the given property, working
416  * downward from the node to the device tree root.  Returns the value of the
417  * first match.
418  */
419 ssize_t
420 OF_searchprop(phandle_t node, const char *propname, void *buf, size_t len)
421 {
422 	ssize_t rv;
423 
424 	for (; node != 0; node = OF_parent(node))
425 		if ((rv = OF_getprop(node, propname, buf, len)) != -1)
426 			return (rv);
427 	return (-1);
428 }
429 
430 ssize_t
431 OF_searchencprop(phandle_t node, const char *propname, void *buf, size_t len)
432 {
433 	ssize_t rv;
434 
435 	for (; node != 0; node = OF_parent(node))
436 		if ((rv = OF_getencprop(node, propname, buf, len)) != -1)
437 			return (rv);
438 	return (-1);
439 }
440 
441 /*
442  * Store the value of a property of a package into newly allocated memory
443  * (using the M_OFWPROP malloc pool and M_WAITOK).  elsz is the size of a
444  * single element, the number of elements is return in number.
445  */
446 ssize_t
447 OF_getprop_alloc(phandle_t package, const char *propname, int elsz, void **buf)
448 {
449 	int len;
450 
451 	*buf = NULL;
452 	if ((len = OF_getproplen(package, propname)) == -1 ||
453 	    len % elsz != 0)
454 		return (-1);
455 
456 	*buf = malloc(len, M_OFWPROP, M_WAITOK);
457 	if (OF_getprop(package, propname, *buf, len) == -1) {
458 		free(*buf, M_OFWPROP);
459 		*buf = NULL;
460 		return (-1);
461 	}
462 	return (len / elsz);
463 }
464 
465 ssize_t
466 OF_getencprop_alloc(phandle_t package, const char *name, int elsz, void **buf)
467 {
468 	ssize_t retval;
469 	pcell_t *cell;
470 	int i;
471 
472 	retval = OF_getprop_alloc(package, name, elsz, buf);
473 	if (retval == -1)
474 		return (-1);
475  	if (retval * elsz % 4 != 0) {
476 		free(*buf, M_OFWPROP);
477 		*buf = NULL;
478 		return (-1);
479 	}
480 
481 	cell = *buf;
482 	for (i = 0; i < retval * elsz / 4; i++)
483 		cell[i] = be32toh(cell[i]);
484 
485 	return (retval);
486 }
487 
488 /* Free buffer allocated by OF_getencprop_alloc or OF_getprop_alloc */
489 void OF_prop_free(void *buf)
490 {
491 
492 	free(buf, M_OFWPROP);
493 }
494 
495 /* Get the next property of a package. */
496 int
497 OF_nextprop(phandle_t package, const char *previous, char *buf, size_t size)
498 {
499 
500 	if (ofw_def_impl == NULL)
501 		return (-1);
502 
503 	return (OFW_NEXTPROP(ofw_obj, package, previous, buf, size));
504 }
505 
506 /* Set the value of a property of a package. */
507 int
508 OF_setprop(phandle_t package, const char *propname, const void *buf, size_t len)
509 {
510 
511 	if (ofw_def_impl == NULL)
512 		return (-1);
513 
514 	return (OFW_SETPROP(ofw_obj, package, propname, buf,len));
515 }
516 
517 /* Convert a device specifier to a fully qualified pathname. */
518 ssize_t
519 OF_canon(const char *device, char *buf, size_t len)
520 {
521 
522 	if (ofw_def_impl == NULL)
523 		return (-1);
524 
525 	return (OFW_CANON(ofw_obj, device, buf, len));
526 }
527 
528 /* Return a package handle for the specified device. */
529 phandle_t
530 OF_finddevice(const char *device)
531 {
532 
533 	if (ofw_def_impl == NULL)
534 		return (-1);
535 
536 	return (OFW_FINDDEVICE(ofw_obj, device));
537 }
538 
539 /* Return the fully qualified pathname corresponding to an instance. */
540 ssize_t
541 OF_instance_to_path(ihandle_t instance, char *buf, size_t len)
542 {
543 
544 	if (ofw_def_impl == NULL)
545 		return (-1);
546 
547 	return (OFW_INSTANCE_TO_PATH(ofw_obj, instance, buf, len));
548 }
549 
550 /* Return the fully qualified pathname corresponding to a package. */
551 ssize_t
552 OF_package_to_path(phandle_t package, char *buf, size_t len)
553 {
554 
555 	if (ofw_def_impl == NULL)
556 		return (-1);
557 
558 	return (OFW_PACKAGE_TO_PATH(ofw_obj, package, buf, len));
559 }
560 
561 /* Look up effective phandle (see FDT/PAPR spec) */
562 static phandle_t
563 OF_child_xref_phandle(phandle_t parent, phandle_t xref)
564 {
565 	phandle_t child, rxref;
566 
567 	/*
568 	 * Recursively descend from parent, looking for a node with a property
569 	 * named either "phandle", "ibm,phandle", or "linux,phandle" that
570 	 * matches the xref we are looking for.
571 	 */
572 
573 	for (child = OF_child(parent); child != 0; child = OF_peer(child)) {
574 		rxref = OF_child_xref_phandle(child, xref);
575 		if (rxref != -1)
576 			return (rxref);
577 
578 		if (OF_getencprop(child, "phandle", &rxref, sizeof(rxref)) ==
579 		    -1 && OF_getencprop(child, "ibm,phandle", &rxref,
580 		    sizeof(rxref)) == -1 && OF_getencprop(child,
581 		    "linux,phandle", &rxref, sizeof(rxref)) == -1)
582 			continue;
583 
584 		if (rxref == xref)
585 			return (child);
586 	}
587 
588 	return (-1);
589 }
590 
591 phandle_t
592 OF_node_from_xref(phandle_t xref)
593 {
594 	struct xrefinfo *xi;
595 	phandle_t node;
596 
597 	if (xref_init_done) {
598 		if ((xi = xrefinfo_find(xref, FIND_BY_XREF)) == NULL)
599 			return (xref);
600 		return (xi->node);
601 	}
602 
603 	if ((node = OF_child_xref_phandle(OF_peer(0), xref)) == -1)
604 		return (xref);
605 	return (node);
606 }
607 
608 phandle_t
609 OF_xref_from_node(phandle_t node)
610 {
611 	struct xrefinfo *xi;
612 	phandle_t xref;
613 
614 	if (xref_init_done) {
615 		if ((xi = xrefinfo_find(node, FIND_BY_NODE)) == NULL)
616 			return (node);
617 		return (xi->xref);
618 	}
619 
620 	if (OF_getencprop(node, "phandle", &xref, sizeof(xref)) == -1 &&
621 	    OF_getencprop(node, "ibm,phandle", &xref, sizeof(xref)) == -1 &&
622 	    OF_getencprop(node, "linux,phandle", &xref, sizeof(xref)) == -1)
623 		return (node);
624 	return (xref);
625 }
626 
627 device_t
628 OF_device_from_xref(phandle_t xref)
629 {
630 	struct xrefinfo *xi;
631 
632 	if (xref_init_done) {
633 		if ((xi = xrefinfo_find(xref, FIND_BY_XREF)) == NULL)
634 			return (NULL);
635 		return (xi->dev);
636 	}
637 	panic("Attempt to find device before xreflist_init");
638 }
639 
640 phandle_t
641 OF_xref_from_device(device_t dev)
642 {
643 	struct xrefinfo *xi;
644 
645 	if (xref_init_done) {
646 		if ((xi = xrefinfo_find((uintptr_t)dev, FIND_BY_DEV)) == NULL)
647 			return (0);
648 		return (xi->xref);
649 	}
650 	panic("Attempt to find xref before xreflist_init");
651 }
652 
653 int
654 OF_device_register_xref(phandle_t xref, device_t dev)
655 {
656 	struct xrefinfo *xi;
657 
658 	/*
659 	 * If the given xref handle doesn't already exist in the list then we
660 	 * add a list entry.  In theory this can only happen on a system where
661 	 * nodes don't contain phandle properties and xref and node handles are
662 	 * synonymous, so the xref handle is added as the node handle as well.
663 	 */
664 	if (xref_init_done) {
665 		if ((xi = xrefinfo_find(xref, FIND_BY_XREF)) == NULL)
666 			xrefinfo_add(xref, xref, dev);
667 		else
668 			xi->dev = dev;
669 		return (0);
670 	}
671 	panic("Attempt to register device before xreflist_init");
672 }
673 
674 /*  Call the method in the scope of a given instance. */
675 int
676 OF_call_method(const char *method, ihandle_t instance, int nargs, int nreturns,
677     ...)
678 {
679 	va_list ap;
680 	cell_t args_n_results[12];
681 	int n, status;
682 
683 	if (nargs > 6 || ofw_def_impl == NULL)
684 		return (-1);
685 	va_start(ap, nreturns);
686 	for (n = 0; n < nargs; n++)
687 		args_n_results[n] = va_arg(ap, cell_t);
688 
689 	status = OFW_CALL_METHOD(ofw_obj, instance, method, nargs, nreturns,
690 	    args_n_results);
691 	if (status != 0)
692 		return (status);
693 
694 	for (; n < nargs + nreturns; n++)
695 		*va_arg(ap, cell_t *) = args_n_results[n];
696 	va_end(ap);
697 	return (0);
698 }
699 
700 /*
701  * Device I/O functions
702  */
703 
704 /* Open an instance for a device. */
705 ihandle_t
706 OF_open(const char *device)
707 {
708 
709 	if (ofw_def_impl == NULL)
710 		return (0);
711 
712 	return (OFW_OPEN(ofw_obj, device));
713 }
714 
715 /* Close an instance. */
716 void
717 OF_close(ihandle_t instance)
718 {
719 
720 	if (ofw_def_impl == NULL)
721 		return;
722 
723 	OFW_CLOSE(ofw_obj, instance);
724 }
725 
726 /* Read from an instance. */
727 ssize_t
728 OF_read(ihandle_t instance, void *addr, size_t len)
729 {
730 
731 	if (ofw_def_impl == NULL)
732 		return (-1);
733 
734 	return (OFW_READ(ofw_obj, instance, addr, len));
735 }
736 
737 /* Write to an instance. */
738 ssize_t
739 OF_write(ihandle_t instance, const void *addr, size_t len)
740 {
741 
742 	if (ofw_def_impl == NULL)
743 		return (-1);
744 
745 	return (OFW_WRITE(ofw_obj, instance, addr, len));
746 }
747 
748 /* Seek to a position. */
749 int
750 OF_seek(ihandle_t instance, uint64_t pos)
751 {
752 
753 	if (ofw_def_impl == NULL)
754 		return (-1);
755 
756 	return (OFW_SEEK(ofw_obj, instance, pos));
757 }
758 
759 /*
760  * Memory functions
761  */
762 
763 /* Claim an area of memory. */
764 void *
765 OF_claim(void *virt, size_t size, u_int align)
766 {
767 
768 	if (ofw_def_impl == NULL)
769 		return ((void *)-1);
770 
771 	return (OFW_CLAIM(ofw_obj, virt, size, align));
772 }
773 
774 /* Release an area of memory. */
775 void
776 OF_release(void *virt, size_t size)
777 {
778 
779 	if (ofw_def_impl == NULL)
780 		return;
781 
782 	OFW_RELEASE(ofw_obj, virt, size);
783 }
784 
785 /*
786  * Control transfer functions
787  */
788 
789 /* Suspend and drop back to the Open Firmware interface. */
790 void
791 OF_enter()
792 {
793 
794 	if (ofw_def_impl == NULL)
795 		return;
796 
797 	OFW_ENTER(ofw_obj);
798 }
799 
800 /* Shut down and drop back to the Open Firmware interface. */
801 void
802 OF_exit()
803 {
804 
805 	if (ofw_def_impl == NULL)
806 		panic("OF_exit: Open Firmware not available");
807 
808 	/* Should not return */
809 	OFW_EXIT(ofw_obj);
810 
811 	for (;;)			/* just in case */
812 		;
813 }
814