Home | History | Annotate | Line # | Download | only in ofctl
ofctl.c revision 1.14
      1  1.14       wiz /*	$NetBSD: ofctl.c,v 1.14 2018/05/28 12:42:45 wiz Exp $	*/
      2   1.1  macallan 
      3   1.1  macallan /*-
      4   1.7      jmmv  * Copyright (c) 2006, 2007 The NetBSD Foundation, Inc.
      5   1.1  macallan  * All rights reserved.
      6   1.1  macallan  *
      7   1.1  macallan  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1  macallan  * by Matt Thomas.
      9   1.1  macallan  *
     10   1.1  macallan  * Redistribution and use in source and binary forms, with or without
     11   1.1  macallan  * modification, are permitted provided that the following conditions
     12   1.1  macallan  * are met:
     13   1.1  macallan  * 1. Redistributions of source code must retain the above copyright
     14   1.1  macallan  *    notice, this list of conditions and the following disclaimer.
     15   1.1  macallan  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1  macallan  *    notice, this list of conditions and the following disclaimer in the
     17   1.1  macallan  *    documentation and/or other materials provided with the distribution.
     18   1.1  macallan  *
     19   1.1  macallan  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1  macallan  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1  macallan  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1  macallan  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1  macallan  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1  macallan  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1  macallan  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1  macallan  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1  macallan  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1  macallan  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1  macallan  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1  macallan  */
     31   1.1  macallan 
     32   1.7      jmmv #include <sys/cdefs.h>
     33   1.7      jmmv 
     34   1.7      jmmv #ifndef lint
     35   1.9     lukem __COPYRIGHT("@(#) Copyright (c) 2006, 2007\
     36   1.9     lukem  The NetBSD Foundation, Inc.  All rights reserved.");
     37  1.14       wiz __RCSID("$NetBSD: ofctl.c,v 1.14 2018/05/28 12:42:45 wiz Exp $");
     38   1.7      jmmv #endif /* not lint */
     39   1.7      jmmv 
     40   1.1  macallan #include <stdio.h>
     41   1.1  macallan #include <stdlib.h>
     42   1.1  macallan #include <unistd.h>
     43   1.1  macallan #include <errno.h>
     44   1.1  macallan #include <ctype.h>
     45   1.1  macallan #include <string.h>
     46   1.1  macallan #include <assert.h>
     47   1.1  macallan #include <err.h>
     48   1.1  macallan #include <sys/types.h>
     49   1.1  macallan #include <sys/ioctl.h>
     50   1.1  macallan #include <sys/file.h>
     51   1.1  macallan #include <sys/queue.h>
     52   1.1  macallan #include <dev/ofw/openfirmio.h>
     53   1.1  macallan 
     54   1.4      matt #include <prop/proplib.h>
     55   1.4      matt 
     56   1.1  macallan static void oflist(int, const char *, int, void *, size_t);
     57   1.1  macallan static void ofprop(int);
     58  1.10     lukem static void ofgetprop(int, const char *);
     59   1.1  macallan #if 0
     60   1.1  macallan static int isstrprint(const char *, size_t, int);
     61   1.1  macallan #endif
     62   1.1  macallan 
     63   1.1  macallan static int lflag;
     64   1.1  macallan static int pflag;
     65  1.13  jmcneill static int vflag;
     66   1.1  macallan 
     67   1.1  macallan struct of_node {
     68   1.1  macallan 	TAILQ_ENTRY(of_node) of_sibling;
     69   1.1  macallan 	TAILQ_HEAD(,of_node) of_children;
     70   1.1  macallan 	TAILQ_HEAD(,of_prop) of_properties;
     71   1.1  macallan 	struct of_node *of_parent;
     72   1.1  macallan 	struct of_prop *of_name;
     73   1.1  macallan 	struct of_prop *of_device_type;
     74   1.1  macallan 	struct of_prop *of_reg;
     75   1.1  macallan 	int of_nodeid;
     76   1.1  macallan };
     77   1.1  macallan 
     78   1.1  macallan struct of_prop {
     79   1.1  macallan 	TAILQ_ENTRY(of_prop) prop_sibling;
     80   1.1  macallan 	char *prop_name;
     81   1.1  macallan 	u_int8_t *prop_data;
     82   1.1  macallan 	size_t prop_length;
     83   1.1  macallan 	size_t prop_namelen;
     84   1.1  macallan };
     85   1.1  macallan 
     86   1.1  macallan struct of_node of_root;
     87   1.1  macallan unsigned long of_node_count;
     88   1.1  macallan unsigned long of_prop_count;
     89   1.4      matt prop_dictionary_t of_proplib;
     90   1.1  macallan 
     91   1.1  macallan int OF_parent(int);
     92   1.1  macallan int OF_child(int);
     93   1.1  macallan int OF_peer(int);
     94   1.1  macallan int OF_finddevice(const char *);
     95  1.10     lukem int OF_getproplen(int, const char *);
     96  1.10     lukem int OF_getprop(int, const char *, void *, size_t);
     97  1.10     lukem int OF_nextprop(int, const char *, void *);
     98   1.1  macallan 
     99  1.10     lukem struct of_prop *of_tree_getprop(int, const char *);
    100   1.1  macallan 
    101  1.12  jmcneill static int of_fd = -1;
    102  1.12  jmcneill 
    103   1.1  macallan static void
    104   1.4      matt of_tree_mkprop(struct of_node *node, prop_dictionary_t propdict,
    105   1.4      matt     prop_dictionary_keysym_t key)
    106   1.1  macallan {
    107   1.1  macallan 	struct of_prop *prop;
    108   1.4      matt 	prop_data_t obj;
    109   1.4      matt 	const char *name;
    110   1.4      matt 
    111   1.4      matt 	name = prop_dictionary_keysym_cstring_nocopy(key);
    112   1.4      matt 	obj = prop_dictionary_get_keysym(propdict, key);
    113   1.1  macallan 
    114   1.1  macallan 	prop = malloc(sizeof(*prop) + strlen(name) + 1);
    115   1.1  macallan 	if (prop == NULL)
    116   1.4      matt 		err(1, "malloc(%zu)", sizeof(*prop) + strlen(name) + 1);
    117   1.1  macallan 
    118   1.1  macallan 	memset(prop, 0, sizeof(*prop));
    119   1.1  macallan 	prop->prop_name = (char *) (prop + 1);
    120   1.1  macallan 	prop->prop_namelen = strlen(name);
    121   1.1  macallan 	memcpy(prop->prop_name, name, prop->prop_namelen+1);
    122   1.1  macallan 	TAILQ_INSERT_TAIL(&node->of_properties, prop, prop_sibling);
    123   1.1  macallan 
    124   1.1  macallan 	if (!strcmp(name, "name"))
    125   1.1  macallan 		node->of_name = prop;
    126   1.1  macallan 	else if (!strcmp(name, "device_type"))
    127   1.1  macallan 		node->of_device_type = prop;
    128   1.1  macallan 	else if (!strcmp(name, "reg"))
    129   1.1  macallan 		node->of_reg = prop;
    130   1.1  macallan 
    131   1.1  macallan 	of_prop_count++;
    132   1.1  macallan 
    133   1.4      matt 	prop->prop_length = prop_data_size(obj);
    134   1.4      matt 	if (prop->prop_length)
    135   1.4      matt 		prop->prop_data = prop_data_data(obj);
    136   1.1  macallan }
    137   1.1  macallan 
    138   1.1  macallan static struct of_node *
    139   1.4      matt of_tree_mknode(struct of_node *parent)
    140   1.1  macallan {
    141   1.1  macallan 	struct of_node *newnode;
    142   1.1  macallan 	newnode = malloc(sizeof(*newnode));
    143   1.1  macallan 	if (newnode == NULL)
    144   1.4      matt 		err(1, "malloc(%zu)", sizeof(*newnode));
    145   1.1  macallan 
    146   1.1  macallan 	of_node_count++;
    147   1.1  macallan 
    148   1.1  macallan 	memset(newnode, 0, sizeof(*newnode));
    149   1.1  macallan 	TAILQ_INIT(&newnode->of_children);
    150   1.1  macallan 	TAILQ_INIT(&newnode->of_properties);
    151   1.1  macallan 	newnode->of_parent = parent;
    152   1.1  macallan 
    153   1.1  macallan 	TAILQ_INSERT_TAIL(&parent->of_children, newnode, of_sibling);
    154   1.1  macallan 
    155   1.1  macallan 	return newnode;
    156   1.1  macallan }
    157   1.1  macallan 
    158   1.1  macallan static void
    159   1.4      matt of_tree_fill(prop_dictionary_t dict, struct of_node *node)
    160   1.4      matt {
    161   1.4      matt 	prop_dictionary_t propdict;
    162   1.4      matt 	prop_array_t propkeys;
    163   1.4      matt 	prop_array_t children;
    164   1.4      matt 	unsigned int i, count;
    165   1.4      matt 
    166   1.4      matt 	node->of_nodeid = prop_number_unsigned_integer_value(
    167   1.4      matt 	    prop_dictionary_get(dict, "node"));
    168   1.4      matt 
    169   1.4      matt 	propdict = prop_dictionary_get(dict, "properties");
    170   1.4      matt 	propkeys = prop_dictionary_all_keys(propdict);
    171   1.4      matt 	count = prop_array_count(propkeys);
    172   1.4      matt 
    173   1.4      matt 	for (i = 0; i < count; i++)
    174   1.4      matt 		of_tree_mkprop(node, propdict, prop_array_get(propkeys, i));
    175   1.4      matt 
    176   1.4      matt 	children = prop_dictionary_get(dict, "children");
    177   1.4      matt 	if (children) {
    178   1.4      matt 		count = prop_array_count(children);
    179   1.4      matt 
    180   1.4      matt 		for (i = 0; i < count; i++) {
    181   1.4      matt 			of_tree_fill(
    182   1.4      matt 			    prop_array_get(children, i),
    183   1.4      matt 			    of_tree_mknode(node));
    184   1.4      matt 		}
    185   1.4      matt 	}
    186   1.4      matt }
    187   1.4      matt 
    188   1.4      matt static void
    189   1.4      matt of_tree_init(prop_dictionary_t dict)
    190   1.4      matt {
    191   1.4      matt 	/*
    192   1.4      matt 	 * Initialize the root node of the OFW tree.
    193   1.4      matt 	 */
    194   1.4      matt 	TAILQ_INIT(&of_root.of_children);
    195   1.4      matt 	TAILQ_INIT(&of_root.of_properties);
    196   1.4      matt 
    197   1.4      matt 	of_tree_fill(dict, &of_root);
    198   1.4      matt }
    199   1.4      matt 
    200   1.4      matt static prop_object_t
    201   1.4      matt of_proplib_mkprop(int fd, int nodeid, char *name)
    202   1.1  macallan {
    203   1.4      matt 	struct ofiocdesc ofio;
    204   1.4      matt 	prop_object_t obj;
    205   1.4      matt 
    206   1.4      matt 	ofio.of_nodeid = nodeid;
    207   1.4      matt 	ofio.of_name = name;
    208   1.4      matt 	ofio.of_namelen = strlen(name);
    209   1.4      matt 	ofio.of_buf = NULL;
    210   1.4      matt 	ofio.of_buflen = 32;
    211   1.4      matt 
    212   1.4      matt    again:
    213   1.4      matt 	if (ofio.of_buf != NULL)
    214   1.4      matt 		free(ofio.of_buf);
    215   1.4      matt 	ofio.of_buf = malloc(ofio.of_buflen);
    216   1.4      matt 	if (ofio.of_buf == NULL)
    217   1.5       rjs 		err(1, "malloc(%d)", ofio.of_buflen);
    218   1.4      matt 	if (ioctl(fd, OFIOCGET, &ofio) < 0) {
    219   1.4      matt 		if (errno == ENOMEM) {
    220   1.4      matt 			ofio.of_buflen *= 2;
    221   1.4      matt 			goto again;
    222   1.4      matt 		}
    223   1.4      matt 		warn("OFIOCGET(%d, \"%s\")", fd, name);
    224   1.4      matt 		free(ofio.of_buf);
    225   1.4      matt 		return NULL;
    226   1.4      matt 	}
    227   1.4      matt 	obj = prop_data_create_data(ofio.of_buf, ofio.of_buflen);
    228   1.4      matt 	free(ofio.of_buf);
    229   1.4      matt 	return obj;
    230   1.4      matt }
    231   1.4      matt 
    232   1.4      matt static prop_dictionary_t
    233   1.4      matt of_proplib_tree_fill(int fd, int nodeid)
    234   1.4      matt {
    235   1.4      matt 	int childid = nodeid;
    236   1.1  macallan 	struct ofiocdesc ofio;
    237   1.1  macallan 	char namebuf[33];
    238   1.1  macallan 	char newnamebuf[33];
    239   1.4      matt 	prop_array_t children;
    240   1.4      matt 	prop_dictionary_t dict, propdict;
    241   1.4      matt 	prop_object_t obj;
    242   1.1  macallan 
    243   1.4      matt 	ofio.of_nodeid = nodeid;
    244   1.1  macallan 	ofio.of_name = namebuf;
    245   1.1  macallan 	ofio.of_namelen = 1;
    246   1.1  macallan 	ofio.of_buf = newnamebuf;
    247   1.1  macallan 
    248   1.1  macallan 	namebuf[0] = '\0';
    249   1.1  macallan 
    250   1.4      matt 	dict = prop_dictionary_create();
    251   1.4      matt 	prop_dictionary_set(dict, "node",
    252   1.4      matt 	    prop_number_create_unsigned_integer(nodeid));
    253   1.4      matt 
    254   1.4      matt 	propdict = prop_dictionary_create();
    255   1.1  macallan 	for (;;) {
    256   1.1  macallan 		ofio.of_buflen = sizeof(newnamebuf);
    257   1.1  macallan 
    258   1.1  macallan 		if (ioctl(fd, OFIOCNEXTPROP, &ofio) < 0) {
    259   1.1  macallan 			if (errno == ENOENT)
    260   1.1  macallan 				break;
    261   1.1  macallan 			err(1, "OFIOCNEXTPROP(%d, %#x, \"%s\")", fd,
    262   1.1  macallan 			    ofio.of_nodeid, ofio.of_name);
    263   1.1  macallan 		}
    264   1.1  macallan 
    265   1.1  macallan 		ofio.of_namelen = ofio.of_buflen;
    266   1.1  macallan 		if (ofio.of_namelen == 0)
    267   1.1  macallan 			break;
    268   1.1  macallan 		newnamebuf[ofio.of_buflen] = '\0';
    269   1.1  macallan 		strcpy(namebuf, newnamebuf);
    270   1.4      matt 		obj = of_proplib_mkprop(fd, nodeid, namebuf);
    271   1.4      matt 		if (obj)
    272   1.4      matt 			prop_dictionary_set(propdict, namebuf, obj);
    273   1.1  macallan 	}
    274   1.4      matt 	prop_dictionary_set(dict, "properties", propdict);
    275   1.1  macallan 
    276   1.1  macallan 	if (ioctl(fd, OFIOCGETCHILD, &childid) < 0)
    277   1.1  macallan 		err(1, "OFIOCGETCHILD(%d, %#x)", fd, childid);
    278   1.1  macallan 
    279   1.4      matt 	children = NULL;
    280   1.1  macallan 	while (childid != 0) {
    281   1.4      matt 		if (children == NULL)
    282   1.4      matt 			children = prop_array_create();
    283   1.4      matt 		prop_array_add(children, of_proplib_tree_fill(fd, childid));
    284   1.1  macallan 		if (ioctl(fd, OFIOCGETNEXT, &childid) < 0)
    285   1.1  macallan 			err(1, "OFIOCGETNEXT(%d, %#x)", fd, childid);
    286   1.1  macallan 	}
    287   1.4      matt 	if (children != NULL) {
    288   1.4      matt 		prop_array_make_immutable(children);
    289   1.4      matt 		prop_dictionary_set(dict, "children", children);
    290   1.4      matt 	}
    291   1.1  macallan 
    292   1.4      matt 	return dict;
    293   1.1  macallan }
    294   1.1  macallan 
    295   1.4      matt static prop_dictionary_t
    296   1.4      matt of_proplib_init(const char *file)
    297   1.1  macallan {
    298   1.4      matt 	prop_dictionary_t dict;
    299   1.1  macallan 	int rootid = 0;
    300   1.4      matt 	int fd;
    301   1.4      matt 
    302   1.4      matt 	fd = open(file, O_RDONLY);
    303   1.4      matt 	if (fd < 0)
    304   1.4      matt 		err(1, "%s", file);
    305   1.1  macallan 
    306   1.1  macallan 	if (ioctl(fd, OFIOCGETNEXT, &rootid) < 0)
    307   1.1  macallan 		err(1, "OFIOCGETNEXT(%d, %#x)", fd, rootid);
    308   1.1  macallan 
    309   1.4      matt 	dict = of_proplib_tree_fill(fd, rootid);
    310  1.12  jmcneill 
    311  1.12  jmcneill 	/* keep the device open for the benefit of OF_finddevice */
    312  1.12  jmcneill 	of_fd = fd;
    313  1.12  jmcneill 
    314   1.4      matt 	return dict;
    315   1.1  macallan }
    316   1.1  macallan 
    317   1.1  macallan static struct of_node *
    318   1.1  macallan of_tree_walk(struct of_node *node,
    319   1.1  macallan 	struct of_node *(*fn)(struct of_node *, const void *),
    320   1.1  macallan 	const void *ctx)
    321   1.1  macallan {
    322   1.1  macallan 	struct of_node *child, *match;
    323   1.1  macallan 
    324   1.1  macallan 	if ((match = (*fn)(node, ctx)) != NULL)
    325   1.1  macallan 		return match;
    326   1.1  macallan 
    327   1.1  macallan 	TAILQ_FOREACH(child, &node->of_children, of_sibling) {
    328   1.1  macallan 		if ((match = of_tree_walk(child, fn, ctx)) != NULL)
    329   1.1  macallan 			return match;
    330   1.1  macallan 	}
    331   1.1  macallan 	return NULL;
    332   1.1  macallan }
    333   1.1  macallan 
    334   1.1  macallan static struct of_node *
    335   1.1  macallan of_match_by_nodeid(struct of_node *node, const void *ctx)
    336   1.1  macallan {
    337   1.1  macallan 	return (node->of_nodeid == *(const int *) ctx) ? node : NULL;
    338   1.1  macallan }
    339   1.1  macallan 
    340   1.1  macallan static struct of_node *
    341   1.1  macallan of_match_by_parentid(struct of_node *node, const void *ctx)
    342   1.1  macallan {
    343   1.1  macallan 	if (node->of_parent == NULL)
    344   1.1  macallan 		return NULL;
    345   1.1  macallan 	return (node->of_parent->of_nodeid == *(const int *) ctx) ? node : NULL;
    346   1.1  macallan }
    347   1.1  macallan 
    348   1.1  macallan int
    349   1.1  macallan OF_parent(int childid)
    350   1.1  macallan {
    351   1.1  macallan 	struct of_node *child;
    352   1.1  macallan 
    353   1.1  macallan 	if (childid == 0)
    354   1.1  macallan 		return 0;
    355   1.1  macallan 
    356   1.1  macallan 	child = of_tree_walk(&of_root, of_match_by_nodeid, &childid);
    357   1.1  macallan 	if (child == NULL || child->of_parent == NULL)
    358   1.1  macallan 		return 0;
    359   1.1  macallan 	return child->of_parent->of_nodeid;
    360   1.1  macallan }
    361   1.1  macallan 
    362   1.1  macallan int
    363   1.1  macallan OF_child(int parentid)
    364   1.1  macallan {
    365   1.1  macallan 	struct of_node *child;
    366   1.1  macallan 
    367   1.1  macallan 	child = of_tree_walk(&of_root, of_match_by_parentid, &parentid);
    368   1.1  macallan 	if (child == NULL)
    369   1.1  macallan 		return 0;
    370   1.1  macallan 	return child->of_nodeid;
    371   1.1  macallan }
    372   1.1  macallan 
    373   1.1  macallan int
    374   1.1  macallan OF_peer(int peerid)
    375   1.1  macallan {
    376   1.1  macallan 	struct of_node *node, *match;
    377   1.1  macallan 
    378   1.1  macallan 	if (peerid == 0)
    379   1.1  macallan 		return of_root.of_nodeid;
    380   1.1  macallan 
    381   1.1  macallan 	node = of_tree_walk(&of_root, of_match_by_nodeid, &peerid);
    382   1.1  macallan 	if (node == NULL || node->of_parent == NULL)
    383   1.1  macallan 		return 0;
    384   1.1  macallan 
    385   1.1  macallan 	/*
    386   1.1  macallan 	 * The peer should be our next sibling (if one exists).
    387   1.1  macallan 	 */
    388   1.1  macallan 	match = TAILQ_NEXT(node, of_sibling);
    389   1.1  macallan 	return (match != NULL) ? match->of_nodeid : 0;
    390   1.1  macallan }
    391   1.1  macallan 
    392   1.1  macallan int
    393   1.1  macallan OF_finddevice(const char *name)
    394   1.1  macallan {
    395   1.1  macallan 	struct ofiocdesc ofio;
    396   1.1  macallan 
    397   1.1  macallan 	ofio.of_nodeid = 0;
    398  1.12  jmcneill 	ofio.of_name = __UNCONST(name);
    399  1.12  jmcneill 	ofio.of_namelen = strlen(name);
    400   1.1  macallan 	ofio.of_buf = NULL;
    401   1.1  macallan 	ofio.of_buflen = 0;
    402  1.12  jmcneill 	if (ioctl(of_fd, OFIOCFINDDEVICE, &ofio) < 0) {
    403  1.12  jmcneill 		if (errno == ENOENT) {
    404  1.12  jmcneill 			err(1, "OF node '%s' not found", name);
    405  1.12  jmcneill 		} else {
    406  1.12  jmcneill 			err(1, "OFIOCFINDDEVICE(%d, \"%s\")", of_fd, name);
    407  1.12  jmcneill 		}
    408  1.12  jmcneill 	}
    409  1.12  jmcneill 
    410  1.12  jmcneill 	return ofio.of_nodeid;
    411   1.1  macallan }
    412   1.1  macallan 
    413   1.1  macallan struct of_prop *
    414  1.10     lukem of_tree_getprop(int nodeid, const char *name)
    415   1.1  macallan {
    416   1.1  macallan 	struct of_node *node;
    417   1.1  macallan 	struct of_prop *prop;
    418   1.1  macallan 
    419   1.1  macallan 	if (nodeid == 0)
    420   1.1  macallan 		return 0;
    421   1.1  macallan 
    422   1.1  macallan 	node = of_tree_walk(&of_root, of_match_by_nodeid, &nodeid);
    423   1.1  macallan 	if (node == NULL)
    424   1.1  macallan 		return NULL;
    425   1.1  macallan 
    426   1.1  macallan 	if (name[0] == '\0')
    427   1.1  macallan 		return TAILQ_FIRST(&node->of_properties);
    428   1.1  macallan 
    429   1.1  macallan 	if (!strcmp(name, "name"))
    430   1.1  macallan 		return node->of_name;
    431   1.1  macallan 	if (!strcmp(name, "device_type"))
    432   1.1  macallan 		return node->of_device_type;
    433   1.1  macallan 	if (!strcmp(name, "reg"))
    434   1.1  macallan 		return node->of_reg;
    435   1.1  macallan 
    436   1.1  macallan 	TAILQ_FOREACH(prop, &node->of_properties, prop_sibling) {
    437   1.1  macallan 		if (!strcmp(name, prop->prop_name))
    438   1.1  macallan 			break;
    439   1.1  macallan 	}
    440   1.1  macallan 	return prop;
    441   1.1  macallan }
    442   1.1  macallan 
    443   1.1  macallan int
    444  1.10     lukem OF_getproplen(int nodeid, const char *name)
    445   1.1  macallan {
    446   1.1  macallan 	struct of_prop *prop = of_tree_getprop(nodeid, name);
    447  1.10     lukem 	return (prop != NULL) ? (int)prop->prop_length : -1;
    448   1.1  macallan }
    449   1.1  macallan 
    450   1.1  macallan int
    451  1.10     lukem OF_getprop(int nodeid, const char *name, void *buf, size_t len)
    452   1.1  macallan {
    453   1.1  macallan 	struct of_prop *prop = of_tree_getprop(nodeid, name);
    454   1.1  macallan 	if (prop == NULL)
    455   1.1  macallan 		return -1;
    456   1.1  macallan 	if (len > prop->prop_length)
    457   1.1  macallan 		len = prop->prop_length;
    458   1.1  macallan 	memcpy(buf, prop->prop_data, len);
    459   1.1  macallan 	return len;
    460   1.1  macallan }
    461   1.1  macallan 
    462   1.1  macallan int
    463  1.10     lukem OF_nextprop(int nodeid, const char *name, void *nextname)
    464   1.1  macallan {
    465   1.1  macallan 	struct of_prop *prop = of_tree_getprop(nodeid, name);
    466   1.1  macallan 	if (prop == NULL)
    467   1.1  macallan 		return -1;
    468   1.1  macallan 	if (name[0] != '\0') {
    469   1.1  macallan 		prop = TAILQ_NEXT(prop, prop_sibling);
    470   1.1  macallan 		if (prop == NULL)
    471   1.1  macallan 			return -1;
    472   1.1  macallan 	}
    473   1.1  macallan 	strcpy(nextname, prop->prop_name);
    474   1.1  macallan 	return strlen(prop->prop_name);
    475   1.1  macallan }
    476   1.1  macallan 
    477   1.1  macallan static u_int32_t
    478   1.1  macallan of_decode_int(const u_int8_t *p)
    479   1.1  macallan {
    480   1.1  macallan 	return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3];
    481   1.1  macallan }
    482   1.1  macallan 
    483   1.1  macallan /*
    484   1.1  macallan  * Now we start the real program
    485   1.1  macallan  */
    486   1.1  macallan 
    487   1.1  macallan int
    488   1.1  macallan main(int argc, char **argv)
    489   1.1  macallan {
    490   1.1  macallan 	u_long of_buf[256];
    491   1.1  macallan 	char device_type[33];
    492   1.1  macallan 	int phandle;
    493   1.1  macallan 	int errflag = 0;
    494   1.1  macallan 	int c;
    495   1.1  macallan 	int len;
    496   1.1  macallan #if defined(__sparc__) || defined(__sparc64__)
    497   1.1  macallan 	const char *file = "/dev/openprom";
    498   1.1  macallan #else
    499   1.1  macallan 	const char *file = "/dev/openfirm";
    500   1.1  macallan #endif
    501   1.4      matt 	const char *propfilein = NULL;
    502   1.4      matt 	const char *propfileout = NULL;
    503   1.1  macallan 
    504  1.13  jmcneill 	while ((c = getopt(argc, argv, "f:lpr:vw:")) != EOF) {
    505   1.1  macallan 		switch (c) {
    506   1.1  macallan 		case 'l': lflag++; break;
    507   1.1  macallan 		case 'p': pflag++; break;
    508  1.13  jmcneill 		case 'v': vflag++; break;
    509   1.1  macallan 		case 'f': file = optarg; break;
    510   1.4      matt 		case 'r': propfilein = optarg; break;
    511   1.4      matt 		case 'w': propfileout = optarg; break;
    512   1.1  macallan 		default: errflag++; break;
    513   1.1  macallan 		}
    514   1.1  macallan 	}
    515   1.1  macallan 	if (errflag)
    516  1.14       wiz 		errx(1, "usage: ofctl [-lpv] [-f file] [-r propfile] [-w propfile] [node...]");
    517   1.4      matt 
    518   1.4      matt 	if (propfilein != NULL) {
    519   1.4      matt 		of_proplib = prop_dictionary_internalize_from_file(propfilein);
    520   1.4      matt 	} else {
    521   1.4      matt 		of_proplib = of_proplib_init(file);
    522   1.4      matt 	}
    523   1.4      matt 
    524   1.4      matt 	if (propfileout)
    525   1.4      matt 		prop_dictionary_externalize_to_file(of_proplib, propfileout);
    526   1.1  macallan 
    527   1.4      matt 	of_tree_init(of_proplib);
    528   1.1  macallan 	printf("[Caching %lu nodes and %lu properties]\n",
    529   1.1  macallan 		of_node_count, of_prop_count);
    530   1.1  macallan 
    531   1.1  macallan 	if (argc == optind) {
    532   1.1  macallan 		phandle = OF_peer(0);
    533   1.1  macallan 		device_type[0] = '\0';
    534   1.1  macallan 		len = OF_getprop(phandle, "device_type", device_type,
    535   1.1  macallan 		    sizeof(device_type));
    536   1.1  macallan 		if (len <= 0)
    537   1.1  macallan 			len = OF_getprop(phandle, "name", device_type,
    538   1.1  macallan 			    sizeof(device_type));
    539   1.1  macallan 		if (len >= 0)
    540   1.1  macallan 			device_type[len] = '\0';
    541   1.1  macallan 		oflist(phandle, device_type, 0, of_buf, sizeof(of_buf));
    542   1.1  macallan 	} else {
    543  1.12  jmcneill 		phandle = OF_finddevice(argv[optind++]);
    544  1.12  jmcneill 		device_type[0] = '\0';
    545  1.12  jmcneill 		len = OF_getprop(phandle, "device_type", device_type,
    546  1.12  jmcneill 		    sizeof(device_type));
    547  1.12  jmcneill 		if (len <= 0)
    548  1.12  jmcneill 			len = OF_getprop(phandle, "name", device_type,
    549  1.12  jmcneill 			    sizeof(device_type));
    550  1.12  jmcneill 		if (len >= 0)
    551  1.12  jmcneill 			device_type[len] = '\0';
    552   1.1  macallan 
    553   1.1  macallan 		if (argc == optind) {
    554   1.1  macallan 			if (lflag)
    555  1.12  jmcneill 				oflist(phandle, device_type, 0, of_buf, sizeof(of_buf));
    556   1.1  macallan 			else
    557   1.1  macallan 				ofprop(phandle);
    558   1.1  macallan 		} else {
    559   1.1  macallan 			for (; optind < argc; optind++) {
    560   1.1  macallan 				ofgetprop(phandle, argv[optind]);
    561   1.1  macallan 			}
    562   1.1  macallan 		}
    563   1.1  macallan 	}
    564   1.1  macallan 	exit(0);
    565   1.1  macallan }
    566   1.1  macallan 
    567   1.1  macallan static size_t
    568   1.1  macallan ofname(int node, char *buf, size_t buflen)
    569   1.1  macallan {
    570   1.1  macallan 	u_int8_t address_cells_buf[4];
    571   1.1  macallan 	u_int8_t reg_buf[4096];
    572   1.1  macallan 	char name[33];
    573   1.1  macallan 	char device_type[33];
    574   1.1  macallan 	size_t off = 0;
    575   1.1  macallan 	int parent = OF_parent(node);
    576   1.1  macallan 	int reglen;
    577   1.1  macallan 	int reg[sizeof(reg_buf)/sizeof(int)];
    578   1.1  macallan 	int address_cells;
    579   1.1  macallan 	int len;
    580   1.1  macallan 
    581   1.1  macallan 	len = OF_getprop(node, "name", name, sizeof(name));
    582  1.11       mrg 	if (len <= 0)
    583  1.11       mrg 		name[0] = '\0';
    584   1.1  macallan 	off += snprintf(buf + off, buflen - off, "/%s", name);
    585   1.1  macallan 
    586   1.1  macallan 	reglen = OF_getprop(node, "reg", reg_buf, sizeof(reg_buf));
    587   1.1  macallan 	if (reglen <= 0)
    588   1.1  macallan 		return off;
    589   1.1  macallan 
    590   1.1  macallan 	len = OF_getprop(parent, "device_type",
    591   1.1  macallan 	    device_type, sizeof(device_type));
    592   1.1  macallan 	if (len <= 0)
    593   1.1  macallan 		len = OF_getprop(parent, "name",
    594   1.1  macallan 		    device_type, sizeof(device_type));
    595   1.1  macallan 	device_type[len] = '\0';
    596   1.1  macallan 
    597   1.1  macallan 	for (;;) {
    598   1.1  macallan 		len = OF_getprop(parent, "#address-cells",
    599   1.1  macallan 		    address_cells_buf, sizeof(address_cells_buf));
    600   1.1  macallan 		if (len >= 0) {
    601   1.1  macallan 			assert(len == 4);
    602   1.1  macallan 			break;
    603   1.1  macallan 		}
    604   1.1  macallan 		parent = OF_parent(parent);
    605   1.1  macallan 		if (parent == 0)
    606   1.1  macallan 			break;
    607   1.1  macallan 	}
    608   1.1  macallan 
    609   1.1  macallan 	if (parent == 0) {
    610   1.1  macallan 
    611   1.1  macallan 		parent = OF_parent(node);
    612   1.3  macallan 
    613   1.1  macallan 		for (;;) {
    614   1.1  macallan 			len = OF_getprop(parent, "#size-cells",
    615   1.1  macallan 			    address_cells_buf, sizeof(address_cells_buf));
    616   1.1  macallan 			if (len >= 0) {
    617   1.1  macallan 				assert(len == 4);
    618   1.1  macallan 				break;
    619   1.1  macallan 			}
    620   1.1  macallan 			parent = OF_parent(parent);
    621   1.1  macallan 			if (parent == 0)
    622   1.1  macallan 				break;
    623   1.1  macallan 		}
    624   1.3  macallan 		/* no #size-cells */
    625   1.3  macallan 		len = 0;
    626   1.3  macallan 	}
    627   1.3  macallan 
    628   1.3  macallan 	if (len == 0) {
    629   1.3  macallan 		/* looks like we're on an OBP2 system */
    630   1.3  macallan 		if (reglen > 12)
    631   1.3  macallan 			return off;
    632   1.3  macallan 		off += snprintf(buf + off, buflen - off, "@");
    633   1.3  macallan 		memcpy(reg, reg_buf, 8);
    634   1.3  macallan 		off += snprintf(buf + off, buflen - off, "%x,%x", reg[0],
    635   1.3  macallan 		    reg[1]);
    636   1.3  macallan 		return off;
    637   1.1  macallan 	}
    638   1.1  macallan 
    639   1.1  macallan 	off += snprintf(buf + off, buflen - off, "@");
    640   1.1  macallan 	address_cells = of_decode_int(address_cells_buf);
    641   1.1  macallan 	for (len = 0; len < address_cells; len ++)
    642   1.1  macallan 		reg[len] = of_decode_int(&reg_buf[len * 4]);
    643   1.1  macallan 
    644   1.1  macallan 	if (!strcmp(device_type,"pci")) {
    645   1.1  macallan 		off += snprintf(buf + off, buflen - off,
    646   1.1  macallan 		    "%x", (reg[0] >> 11) & 31);
    647   1.1  macallan 		if (reg[0] & 0x700)
    648   1.1  macallan 			off += snprintf(buf + off, buflen - off,
    649   1.1  macallan 			    ",%x", (reg[0] >> 8) & 7);
    650   1.1  macallan 	} else if (!strcmp(device_type,"upa")) {
    651   1.1  macallan 		off += snprintf(buf + off, buflen - off,
    652   1.1  macallan 		    "%x", (reg[0] >> 4) & 63);
    653   1.1  macallan 		for (len = 1; len < address_cells; len++)
    654   1.1  macallan 			off += snprintf(buf + off, buflen - off,
    655   1.1  macallan 			    ",%x", reg[len]);
    656   1.1  macallan #if !defined(__sparc__) && !defined(__sparc64__)
    657   1.1  macallan 	} else if (!strcmp(device_type,"isa")) {
    658   1.1  macallan #endif
    659   1.1  macallan 	} else {
    660   1.1  macallan 		off += snprintf(buf + off, buflen - off, "%x", reg[0]);
    661   1.1  macallan 		for (len = 1; len < address_cells; len++)
    662   1.1  macallan 			off += snprintf(buf + off, buflen - off,
    663   1.1  macallan 			    ",%x", reg[len]);
    664   1.1  macallan 	}
    665   1.1  macallan 	return off;
    666   1.1  macallan }
    667   1.1  macallan 
    668   1.1  macallan static size_t
    669   1.1  macallan offullname2(int node, char *buf, size_t len)
    670   1.1  macallan {
    671   1.1  macallan 	size_t off;
    672   1.1  macallan 	int parent = OF_parent(node);
    673   1.1  macallan 	if (parent == 0)
    674   1.1  macallan 		return 0;
    675   1.1  macallan 
    676   1.1  macallan 	off = offullname2(parent, buf, len);
    677   1.1  macallan 	off += ofname(node, buf + off, len - off);
    678   1.1  macallan 	return off;
    679   1.1  macallan }
    680   1.1  macallan 
    681   1.1  macallan static size_t
    682   1.1  macallan offullname(int node, char *buf, size_t len)
    683   1.1  macallan {
    684   1.1  macallan 	if (node == OF_peer(0)) {
    685   1.1  macallan 		size_t off = snprintf(buf, len, "/");
    686   1.1  macallan 		off += OF_getprop(node, "name", buf + off, len - off);
    687   1.1  macallan 		return off;
    688   1.1  macallan 	}
    689   1.1  macallan 	return offullname2(node, buf, len);
    690   1.1  macallan }
    691   1.1  macallan 
    692   1.1  macallan static void
    693   1.1  macallan oflist(int node, const char *parent_device_type, int depth,
    694   1.1  macallan 	void *of_buf, size_t of_buflen)
    695   1.1  macallan {
    696   1.1  macallan 	int len;
    697   1.1  macallan 	while (node != 0) {
    698   1.1  macallan 		int child;
    699  1.13  jmcneill 		if (pflag == 0 && vflag == 0) {
    700   1.1  macallan 			len = ofname(node, of_buf, of_buflen-1);
    701   1.1  macallan 			printf("%08x: %*s%s", node, depth * 2, "",
    702   1.1  macallan 			    (char *) of_buf);
    703   1.1  macallan 		} else {
    704   1.1  macallan 			len = offullname(node, of_buf, of_buflen-1);
    705   1.1  macallan 			printf("%08x: %s", node, (char *) of_buf);
    706   1.1  macallan 		}
    707   1.1  macallan 		putchar('\n');
    708   1.1  macallan 		if (pflag) {
    709   1.1  macallan 			putchar('\n');
    710   1.1  macallan 			ofprop(node);
    711   1.1  macallan 			puts("\n----------------------------------------"
    712   1.1  macallan 			    "----------------------------------------\n\n");
    713   1.1  macallan 		}
    714   1.1  macallan 		child = OF_child(node);
    715   1.1  macallan 		if (child != -1 && child != 0) {
    716   1.1  macallan 			char device_type[33];
    717   1.1  macallan 			len = OF_getprop(node, "device_type",
    718   1.1  macallan 			    device_type, sizeof(device_type));
    719   1.1  macallan 			if (len <= 0)
    720   1.1  macallan 				len = OF_getprop(node, "name",
    721   1.1  macallan 				    device_type, sizeof(device_type));
    722   1.1  macallan 			if (len >= 0)
    723   1.1  macallan 				device_type[len] = '\0';
    724   1.1  macallan 			depth++;
    725   1.1  macallan 			oflist(child, device_type, depth, of_buf, of_buflen);
    726   1.1  macallan 			depth--;
    727   1.1  macallan 		}
    728   1.1  macallan 		if (depth == 0)
    729   1.1  macallan 			break;
    730   1.1  macallan 		node = OF_peer(node);
    731   1.1  macallan 	}
    732   1.1  macallan }
    733   1.1  macallan 
    734   1.1  macallan static void
    735   1.1  macallan print_line(const u_int8_t *buf, size_t off, size_t len)
    736   1.1  macallan {
    737   1.1  macallan 	if (len - off > 16)
    738   1.1  macallan 		len = off + 16;
    739   1.1  macallan 
    740   1.1  macallan 	for (; off < ((len + 15) & ~15); off++) {
    741   1.1  macallan 		if (off > 0) {
    742   1.1  macallan 			if ((off & 15) == 0)
    743   1.1  macallan 				printf("%12s%04lx:%7s", "",
    744   1.1  macallan 				    (unsigned long int) off, "");
    745   1.1  macallan 			else if ((off & 3) == 0)
    746   1.1  macallan 				putchar(' ');
    747   1.1  macallan 		}
    748   1.1  macallan 		if (off < len)
    749   1.1  macallan 			printf("%02x", buf[off]);
    750   1.1  macallan #if 0
    751   1.1  macallan 		else if (off >= ((len + 3) & ~3))
    752   1.1  macallan 			printf("  ");
    753   1.1  macallan #endif
    754   1.1  macallan 		else
    755   1.1  macallan 			printf("..");
    756   1.1  macallan 	}
    757   1.1  macallan }
    758   1.1  macallan 
    759   1.1  macallan static void
    760   1.1  macallan default_format(int node, const u_int8_t *buf, size_t len)
    761   1.1  macallan {
    762   1.1  macallan 	size_t off = 0;
    763   1.1  macallan 	while (off < len) {
    764   1.1  macallan 		size_t end;
    765   1.1  macallan 		print_line(buf, off, len);
    766   1.1  macallan 		printf("   ");	/* 24 + 32 + 3 = 59, so +3 makes 62 */
    767   1.1  macallan 		end = len;
    768   1.1  macallan 		if (end > off + 16)
    769   1.1  macallan 			end = off + 16;
    770   1.1  macallan 		for (; off < end; off++) {
    771   1.1  macallan 			char ch = buf[off];
    772   1.1  macallan 			if (isascii(ch) &&
    773   1.1  macallan 			    (isalnum((int)ch) || ispunct((int)ch) || ch == ' '))
    774   1.1  macallan 				putchar(ch);
    775   1.1  macallan 			else
    776   1.1  macallan 				putchar('.');
    777   1.1  macallan 		}
    778   1.1  macallan 		putchar('\n');
    779   1.1  macallan 	}
    780   1.1  macallan }
    781   1.1  macallan 
    782   1.1  macallan static void
    783   1.1  macallan reg_format(int node, const u_int8_t *buf, size_t len)
    784   1.1  macallan {
    785   1.1  macallan 	/* parent = OF_parent(node); */
    786   1.1  macallan 	default_format(node, buf, len);
    787   1.1  macallan }
    788   1.1  macallan 
    789   1.1  macallan static void
    790   1.1  macallan frequency_format(int node, const u_int8_t *buf, size_t len)
    791   1.1  macallan {
    792   1.1  macallan 	if (len == 4) {
    793   1.1  macallan 		u_int32_t freq = of_decode_int(buf);
    794   1.1  macallan 		u_int32_t divisor, whole, frac;
    795   1.1  macallan 		const char *units = "";
    796   1.1  macallan 		print_line(buf, 0, len);
    797   1.1  macallan 		for (divisor = 1000000000; divisor > 1; divisor /= 1000) {
    798   1.1  macallan 			if (freq >= divisor)
    799   1.1  macallan 				break;
    800   1.1  macallan 		}
    801   1.1  macallan 		whole = freq / divisor;
    802   1.1  macallan 		if (divisor == 1)
    803   1.1  macallan 			frac = 0;
    804   1.1  macallan 		else
    805   1.1  macallan 			frac = (freq / (divisor / 1000)) % 1000;
    806   1.1  macallan 
    807   1.1  macallan 		switch (divisor) {
    808   1.1  macallan 		case 1000000000: units = "GHz"; break;
    809   1.1  macallan 		case    1000000: units = "MHz"; break;
    810   1.1  macallan 		case       1000: units = "KHz"; break;
    811   1.1  macallan 		case          1: units =  "Hz"; break;
    812   1.1  macallan 		}
    813   1.1  macallan 		if (frac > 0)
    814   1.1  macallan 			printf("   %u.%03u%s\n", whole, frac, units);
    815   1.1  macallan 		else
    816   1.1  macallan 			printf("   %u%s\n", whole, units);
    817   1.1  macallan 	} else
    818   1.1  macallan 		default_format(node, buf, len);
    819   1.1  macallan }
    820   1.1  macallan 
    821   1.1  macallan static void
    822   1.1  macallan size_format(int node, const u_int8_t *buf, size_t len)
    823   1.1  macallan {
    824   1.1  macallan 	if (len == 4) {
    825   1.1  macallan 		u_int32_t freq = of_decode_int(buf);
    826   1.1  macallan 		u_int32_t divisor, whole, frac;
    827   1.1  macallan 		const char *units = "";
    828   1.1  macallan 		print_line(buf, 0, len);
    829   1.1  macallan 		for (divisor = 0x40000000; divisor > 1; divisor >>= 10) {
    830   1.1  macallan 			if (freq >= divisor)
    831   1.1  macallan 				break;
    832   1.1  macallan 		}
    833   1.1  macallan 		whole = freq / divisor;
    834   1.1  macallan 		if (divisor == 1)
    835   1.1  macallan 			frac = 0;
    836   1.1  macallan 		else
    837   1.1  macallan 			frac = (freq / (divisor >> 10)) & 1023;
    838   1.1  macallan 
    839   1.1  macallan 		switch (divisor) {
    840   1.1  macallan 		case 0x40000000: units = "G"; break;
    841   1.1  macallan 		case   0x100000: units = "M"; break;
    842   1.1  macallan 		case      0x400: units = "K"; break;
    843   1.1  macallan 		case          1: units =  ""; break;
    844   1.1  macallan 		}
    845   1.1  macallan 		if (frac > 0)
    846   1.1  macallan 			printf("   %3u.%03u%s\n", whole, frac, units);
    847   1.1  macallan 		else
    848   1.1  macallan 			printf("   %3u%s\n", whole, units);
    849   1.1  macallan 	} else
    850   1.1  macallan 		default_format(node, buf, len);
    851   1.1  macallan }
    852   1.1  macallan 
    853   1.1  macallan static void
    854   1.1  macallan string_format(int node, const u_int8_t *buf, size_t len)
    855   1.1  macallan {
    856   1.1  macallan 	size_t off = 0;
    857   1.1  macallan 	int first_line = 1;
    858   1.1  macallan 	while (off < len) {
    859   1.1  macallan 		size_t string_len = 0;
    860   1.1  macallan 		int leading = 1;
    861   1.1  macallan 		for (; off + string_len < len; string_len++) {
    862   1.1  macallan 			if (buf[off+string_len] == '\0') {
    863   1.1  macallan 				string_len++;
    864   1.1  macallan 				break;
    865   1.1  macallan 			}
    866   1.1  macallan 		}
    867   1.1  macallan 		while (string_len > 0) {
    868   1.1  macallan 			size_t line_len = string_len;
    869   1.1  macallan 			if (line_len > 16)
    870   1.1  macallan 				line_len = 16;
    871   1.1  macallan 			if (!first_line)
    872   1.1  macallan 				printf("%12s%04lx:%7s", "",
    873   1.1  macallan 				    (unsigned long int) off, "");
    874   1.1  macallan 			print_line(buf + off, 0, line_len);
    875   1.1  macallan 			printf("   ");
    876   1.1  macallan 			if (leading)
    877   1.1  macallan 				putchar('"');
    878   1.1  macallan 			first_line = 0;
    879   1.1  macallan 			leading = 0;
    880   1.1  macallan 			string_len -= line_len;
    881   1.1  macallan 			for (; line_len > 0; line_len--, off++) {
    882   1.1  macallan 				if (buf[off] != '\0')
    883   1.1  macallan 					putchar(buf[off]);
    884   1.1  macallan 			}
    885   1.1  macallan 			if (string_len == 0)
    886   1.1  macallan 				putchar('"');
    887   1.1  macallan 			putchar('\n');
    888   1.1  macallan 		}
    889   1.1  macallan 	}
    890   1.1  macallan }
    891   1.1  macallan 
    892   1.1  macallan static const struct {
    893   1.1  macallan 	const char *prop_name;
    894   1.1  macallan 	void (*prop_format)(int, const u_int8_t *, size_t);
    895   1.1  macallan } formatters[] = {
    896   1.1  macallan 	{ "reg", reg_format },
    897   1.1  macallan #if 0
    898   1.1  macallan 	{ "assigned-addresses", assigned_addresses_format },
    899   1.1  macallan 	{ "ranges", ranges_format },
    900   1.1  macallan 	{ "interrupt-map", interrup_map_format },
    901   1.1  macallan 	{ "interrupt", interrupt_format },
    902   1.1  macallan #endif
    903   1.1  macallan 	{ "model", string_format },
    904   1.1  macallan 	{ "name", string_format },
    905   1.1  macallan 	{ "device_type", string_format },
    906   1.1  macallan 	{ "compatible", string_format },
    907   1.1  macallan 	{ "*frequency", frequency_format },
    908   1.1  macallan 	{ "*-size", size_format },
    909   1.1  macallan 	{ "*-cells", size_format },
    910   1.1  macallan 	{ "*-entries", size_format },
    911   1.1  macallan 	{ "*-associativity", size_format },
    912   1.1  macallan 	{ NULL, default_format }
    913   1.1  macallan };
    914   1.1  macallan 
    915   1.1  macallan static void
    916  1.10     lukem ofgetprop(int node, const char *name)
    917   1.1  macallan {
    918   1.1  macallan 	u_int8_t of_buf[4097];
    919   1.1  macallan 	int len;
    920   1.1  macallan 	int i;
    921   1.1  macallan 
    922   1.1  macallan 	len = OF_getprop(node, name, of_buf, sizeof(of_buf) - 1);
    923   1.1  macallan 	if (len < 0)
    924   1.1  macallan 		return;
    925   1.1  macallan 	of_buf[len] = '\0';
    926   1.1  macallan 	printf("%-24s", name);
    927   1.1  macallan 	if (len == 0) {
    928   1.1  macallan 		putchar('\n');
    929   1.1  macallan 		return;
    930   1.1  macallan 	}
    931   1.1  macallan 	if (strlen(name) >= 24)
    932   1.1  macallan 		printf("\n%24s", "");
    933   1.1  macallan 
    934   1.1  macallan 	for (i = 0; formatters[i].prop_name != NULL; i++) {
    935   1.1  macallan 		if (formatters[i].prop_name[0] == '*') {
    936   1.1  macallan 			if (strstr(name, &formatters[i].prop_name[1]) != NULL) {
    937   1.1  macallan 				(*formatters[i].prop_format)(node, of_buf, len);
    938   1.1  macallan 				return;
    939   1.1  macallan 			}
    940   1.1  macallan 			continue;
    941   1.1  macallan 		}
    942   1.1  macallan 		if (strcmp(name, formatters[i].prop_name) == 0) {
    943   1.1  macallan 			(*formatters[i].prop_format)(node, of_buf, len);
    944   1.1  macallan 			return;
    945   1.1  macallan 		}
    946   1.1  macallan 	}
    947   1.1  macallan 	(*formatters[i].prop_format)(node, of_buf, len);
    948   1.1  macallan }
    949   1.1  macallan 
    950   1.1  macallan static void
    951   1.1  macallan ofprop(int node)
    952   1.1  macallan {
    953   1.1  macallan 	char namebuf[33];
    954   1.1  macallan 	char newnamebuf[33];
    955   1.1  macallan 	int len;
    956   1.1  macallan 
    957   1.1  macallan 	namebuf[0] = '\0';
    958   1.1  macallan 
    959   1.1  macallan 	for (;;) {
    960   1.1  macallan 		len = OF_nextprop(node, namebuf, newnamebuf);
    961   1.1  macallan 		if (len <= 0)
    962   1.1  macallan 			break;
    963   1.1  macallan 
    964   1.1  macallan 		newnamebuf[len] = '\0';
    965   1.1  macallan 		strcpy(namebuf, newnamebuf);
    966   1.1  macallan 		ofgetprop(node, newnamebuf);
    967   1.1  macallan 	}
    968   1.1  macallan }
    969   1.1  macallan #if 0
    970   1.1  macallan static int
    971   1.1  macallan isstrprint(const char *str, size_t len, int ignorenulls)
    972   1.1  macallan {
    973   1.1  macallan 	if (*str == '\0')
    974   1.1  macallan 		return 0;
    975   1.1  macallan 	for (; len-- > 0; str++) {
    976   1.1  macallan 		if (*str == '\0' && len > 0 && str[1] == '\0')
    977   1.1  macallan 			return 0;
    978   1.1  macallan 		if (len == 0 && *str == '\0')
    979   1.1  macallan 			return 1;
    980   1.1  macallan 		if (ignorenulls) {
    981   1.1  macallan 			if (*str == '\0')
    982   1.1  macallan 				continue;
    983   1.1  macallan 			if (isalnum(*str) || ispunct(*str) || *str == ' ')
    984   1.1  macallan 				continue;
    985   1.1  macallan 			return 0;
    986   1.1  macallan 		}
    987   1.1  macallan 		if (!isprint(*str))
    988   1.1  macallan 			return 0;
    989   1.1  macallan 	}
    990   1.1  macallan 	return 1;
    991   1.1  macallan }
    992   1.1  macallan #endif
    993