Home | History | Annotate | Line # | Download | only in ofw
ofw_subr.c revision 1.26
      1  1.26  jmcneill /*	$NetBSD: ofw_subr.c,v 1.26 2015/12/13 11:51:13 jmcneill Exp $	*/
      2   1.1       cgd 
      3   1.1       cgd /*
      4   1.1       cgd  * Copyright 1998
      5   1.1       cgd  * Digital Equipment Corporation. All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * This software is furnished under license and may be used and
      8   1.1       cgd  * copied only in accordance with the following terms and conditions.
      9   1.1       cgd  * Subject to these conditions, you may download, copy, install,
     10   1.1       cgd  * use, modify and distribute this software in source and/or binary
     11   1.1       cgd  * form. No title or ownership is transferred hereby.
     12   1.1       cgd  *
     13   1.1       cgd  * 1) Any source code used, modified or distributed must reproduce
     14   1.1       cgd  *    and retain this copyright notice and list of conditions as
     15   1.1       cgd  *    they appear in the source file.
     16   1.1       cgd  *
     17   1.1       cgd  * 2) No right is granted to use any trade name, trademark, or logo of
     18   1.1       cgd  *    Digital Equipment Corporation. Neither the "Digital Equipment
     19   1.1       cgd  *    Corporation" name nor any trademark or logo of Digital Equipment
     20   1.1       cgd  *    Corporation may be used to endorse or promote products derived
     21   1.1       cgd  *    from this software without the prior written permission of
     22   1.1       cgd  *    Digital Equipment Corporation.
     23   1.1       cgd  *
     24   1.1       cgd  * 3) This software is provided "AS-IS" and any express or implied
     25   1.1       cgd  *    warranties, including but not limited to, any implied warranties
     26   1.1       cgd  *    of merchantability, fitness for a particular purpose, or
     27   1.1       cgd  *    non-infringement are disclaimed. In no event shall DIGITAL be
     28   1.1       cgd  *    liable for any damages whatsoever, and in particular, DIGITAL
     29   1.1       cgd  *    shall not be liable for special, indirect, consequential, or
     30   1.1       cgd  *    incidental damages or damages for lost profits, loss of
     31   1.1       cgd  *    revenue or loss of use, whether such damages arise in contract,
     32   1.1       cgd  *    negligence, tort, under statute, in equity, at law or otherwise,
     33   1.1       cgd  *    even if advised of the possibility of such damage.
     34   1.1       cgd  */
     35   1.7     lukem 
     36   1.7     lukem #include <sys/cdefs.h>
     37  1.26  jmcneill __KERNEL_RCSID(0, "$NetBSD: ofw_subr.c,v 1.26 2015/12/13 11:51:13 jmcneill Exp $");
     38   1.1       cgd 
     39   1.2       cgd #include <sys/param.h>
     40   1.2       cgd #include <sys/systm.h>
     41   1.2       cgd #include <sys/malloc.h>
     42   1.2       cgd #include <dev/ofw/openfirm.h>
     43   1.2       cgd 
     44   1.3       cgd #define	OFW_MAX_STACK_BUF_SIZE	256
     45   1.3       cgd #define	OFW_PATH_BUF_SIZE	512
     46   1.3       cgd 
     47   1.1       cgd /*
     48   1.3       cgd  * int of_decode_int(p)
     49   1.3       cgd  *
     50   1.3       cgd  * This routine converts OFW encoded-int datums
     51   1.3       cgd  * into the integer format of the host machine.
     52   1.1       cgd  *
     53   1.3       cgd  * It is primarily used to convert integer properties
     54   1.3       cgd  * returned by the OF_getprop routine.
     55   1.2       cgd  *
     56   1.2       cgd  * Arguments:
     57   1.2       cgd  *	p		pointer to unsigned char array which is an
     58   1.2       cgd  *			OFW-encoded integer.
     59   1.2       cgd  *
     60   1.2       cgd  * Return Value:
     61   1.2       cgd  *	Decoded integer value of argument p.
     62   1.3       cgd  *
     63   1.3       cgd  * Side Effects:
     64   1.3       cgd  *	None.
     65   1.1       cgd  */
     66   1.1       cgd int
     67  1.14       dsl of_decode_int(const unsigned char *p)
     68   1.1       cgd {
     69   1.1       cgd 	unsigned int i = *p++ << 8;
     70   1.1       cgd 	i = (i + *p++) << 8;
     71   1.1       cgd 	i = (i + *p++) << 8;
     72   1.1       cgd 	return (i + *p);
     73   1.2       cgd }
     74   1.2       cgd 
     75   1.2       cgd /*
     76   1.3       cgd  * int of_compatible(phandle, strings)
     77   1.3       cgd  *
     78   1.2       cgd  * This routine checks an OFW node's "compatible" entry to see if
     79   1.2       cgd  * it matches any of the provided strings.
     80   1.2       cgd  *
     81   1.2       cgd  * It should be used when determining whether a driver can drive
     82  1.24  jmcneill  * a particular device.
     83   1.2       cgd  *
     84   1.2       cgd  * Arguments:
     85   1.2       cgd  *	phandle		OFW phandle of device to be checked for
     86   1.2       cgd  *			compatibility.
     87   1.2       cgd  *	strings		Array of containing expected "compatibility"
     88   1.2       cgd  *			property values, presence of any of which
     89   1.2       cgd  *			indicates compatibility.
     90   1.2       cgd  *
     91   1.2       cgd  * Return Value:
     92   1.8       wiz  *	-1 if none of the strings are found in phandle's "compatibility"
     93  1.24  jmcneill  *	property, or the reverse index of the matching string in the
     94  1.24  jmcneill  *	phandle's "compatibility" property.
     95   1.3       cgd  *
     96   1.3       cgd  * Side Effects:
     97   1.3       cgd  *	None.
     98   1.2       cgd  */
     99   1.2       cgd int
    100  1.12   garbled of_compatible(int phandle, const char * const *strings)
    101   1.2       cgd {
    102  1.24  jmcneill 
    103  1.24  jmcneill 	int len, olen, allocated, nstr, cstr, rv;
    104   1.2       cgd 	char *buf;
    105   1.2       cgd 	const char *sp, *nsp;
    106   1.2       cgd 
    107   1.2       cgd 	len = OF_getproplen(phandle, "compatible");
    108   1.2       cgd 	if (len <= 0)
    109   1.2       cgd 		return (-1);
    110   1.2       cgd 
    111   1.3       cgd 	if (len > OFW_MAX_STACK_BUF_SIZE) {
    112   1.2       cgd 		buf = malloc(len, M_TEMP, M_WAITOK);
    113   1.2       cgd 		allocated = 1;
    114   1.2       cgd 	} else {
    115   1.2       cgd 		buf = alloca(len);
    116   1.2       cgd 		allocated = 0;
    117   1.2       cgd 	}
    118   1.2       cgd 
    119   1.2       cgd 	/* 'compatible' size should not change. */
    120   1.2       cgd 	if (OF_getprop(phandle, "compatible", buf, len) != len) {
    121   1.2       cgd 		rv = -1;
    122   1.2       cgd 		goto out;
    123   1.2       cgd 	}
    124   1.2       cgd 
    125  1.24  jmcneill 	/* count 'compatible' strings */
    126  1.24  jmcneill 	sp = buf;
    127  1.24  jmcneill 	nstr = 0;
    128  1.24  jmcneill 	olen = len;
    129  1.24  jmcneill 	while (len && (nsp = memchr(sp, 0, len)) != NULL) {
    130  1.24  jmcneill 		nsp++;			/* skip over NUL char */
    131  1.24  jmcneill 		len -= (nsp - sp);
    132  1.24  jmcneill 		sp = nsp;
    133  1.24  jmcneill 		nstr++;
    134  1.24  jmcneill 	}
    135  1.24  jmcneill 	len = olen;
    136  1.24  jmcneill 
    137   1.2       cgd 	sp = buf;
    138  1.24  jmcneill 	rv = nstr;
    139   1.2       cgd 	while (len && (nsp = memchr(sp, 0, len)) != NULL) {
    140  1.24  jmcneill 		rv--;
    141   1.2       cgd 		/* look for a match among the strings provided */
    142  1.24  jmcneill 		for (cstr = 0; strings[cstr] != NULL; cstr++)
    143  1.24  jmcneill 			if (strcmp(sp, strings[cstr]) == 0)
    144   1.2       cgd 				goto out;
    145   1.2       cgd 
    146   1.2       cgd 		nsp++;			/* skip over NUL char */
    147   1.2       cgd 		len -= (nsp - sp);
    148   1.2       cgd 		sp = nsp;
    149   1.2       cgd 	}
    150   1.2       cgd 	rv = -1;
    151   1.2       cgd 
    152   1.2       cgd out:
    153   1.2       cgd 	if (allocated)
    154   1.2       cgd 		free(buf, M_TEMP);
    155   1.2       cgd 	return (rv);
    156  1.24  jmcneill }
    157  1.10     perry 
    158  1.24  jmcneill /*
    159  1.24  jmcneill  * int of_match_compatible(phandle, strings)
    160  1.24  jmcneill  *
    161  1.24  jmcneill  * This routine checks an OFW node's "compatible" entry to see if
    162  1.24  jmcneill  * it matches any of the provided strings.
    163  1.24  jmcneill  *
    164  1.24  jmcneill  * It should be used when determining whether a driver can drive
    165  1.24  jmcneill  * a particular device.
    166  1.24  jmcneill  *
    167  1.24  jmcneill  * Arguments:
    168  1.24  jmcneill  *	phandle		OFW phandle of device to be checked for
    169  1.24  jmcneill  *			compatibility.
    170  1.24  jmcneill  *	strings		Array of containing expected "compatibility"
    171  1.24  jmcneill  *			property values, presence of any of which
    172  1.24  jmcneill  *			indicates compatibility.
    173  1.24  jmcneill  *
    174  1.24  jmcneill  * Return Value:
    175  1.24  jmcneill  *	0 if none of the strings are found in phandle's "compatibility"
    176  1.24  jmcneill  *	property, or a positive number based on the reverse index of the
    177  1.24  jmcneill  *	matching string in the phandle's "compatibility" property, plus 1.
    178  1.24  jmcneill  *
    179  1.24  jmcneill  * Side Effects:
    180  1.24  jmcneill  *	None.
    181  1.24  jmcneill  */
    182  1.24  jmcneill int
    183  1.24  jmcneill of_match_compatible(int phandle, const char * const *strings)
    184  1.24  jmcneill {
    185  1.24  jmcneill 	return of_compatible(phandle, strings) + 1;
    186   1.3       cgd }
    187   1.3       cgd 
    188   1.3       cgd /*
    189   1.4       cgd  * int of_packagename(phandle, buf, bufsize)
    190   1.3       cgd  *
    191   1.3       cgd  * This routine places the last component of an OFW node's name
    192   1.3       cgd  * into a user-provided buffer.
    193   1.3       cgd  *
    194   1.3       cgd  * It can be used during autoconfiguration to make printing of
    195   1.3       cgd  * device names more informative.
    196   1.3       cgd  *
    197   1.3       cgd  * Arguments:
    198   1.3       cgd  *	phandle		OFW phandle of device whose name name is
    199   1.3       cgd  *			desired.
    200   1.3       cgd  *	buf		Buffer to contain device name, provided by
    201   1.3       cgd  *			caller.  (For now, must be at least 4
    202   1.3       cgd  *			bytes long.)
    203   1.3       cgd  *	bufsize		Length of buffer referenced by 'buf', in
    204   1.3       cgd  *			bytes.
    205   1.3       cgd  *
    206   1.3       cgd  * Return Value:
    207   1.3       cgd  *	-1 if the device path name could not be obtained or would
    208   1.3       cgd  *	not fit in the allocated temporary buffer, or zero otherwise
    209   1.6     soren  *	(meaning that the leaf node name was successfully extracted).
    210   1.3       cgd  *
    211   1.3       cgd  * Side Effects:
    212   1.3       cgd  *	If the leaf node name was successfully extracted, 'buf' is
    213   1.3       cgd  *	filled in with at most 'bufsize' bytes of the leaf node
    214   1.3       cgd  *	name.  If the leaf node was not successfully extracted, a
    215   1.3       cgd  *	somewhat meaningful string is placed in the buffer.  In
    216   1.3       cgd  *	either case, the contents of 'buf' will be NUL-terminated.
    217   1.3       cgd  */
    218   1.3       cgd int
    219  1.12   garbled of_packagename(int phandle, char *buf, int bufsize)
    220   1.3       cgd {
    221   1.3       cgd 	char *pbuf;
    222   1.3       cgd 	const char *lastslash;
    223   1.3       cgd 	int l, rv;
    224   1.3       cgd 
    225   1.3       cgd 	pbuf = malloc(OFW_PATH_BUF_SIZE, M_TEMP, M_WAITOK);
    226   1.3       cgd 	l = OF_package_to_path(phandle, pbuf, OFW_PATH_BUF_SIZE);
    227   1.3       cgd 
    228   1.3       cgd 	/* check that we could get the name, and that it's not too long. */
    229   1.3       cgd 	if (l < 0 ||
    230   1.3       cgd 	    (l == OFW_PATH_BUF_SIZE && pbuf[OFW_PATH_BUF_SIZE - 1] != '\0')) {
    231   1.3       cgd 		if (bufsize >= 25)
    232   1.9    itojun 			snprintf(buf, bufsize, "??? (phandle 0x%x)", phandle);
    233   1.3       cgd 		else if (bufsize >= 4)
    234   1.9    itojun 			strlcpy(buf, "???", bufsize);
    235   1.3       cgd 		else
    236   1.4       cgd 			panic("of_packagename: bufsize = %d is silly",
    237   1.4       cgd 			    bufsize);
    238   1.3       cgd 		rv = -1;
    239   1.3       cgd 	} else {
    240   1.5   mycroft 		pbuf[l] = '\0';
    241   1.3       cgd 		lastslash = strrchr(pbuf, '/');
    242   1.9    itojun 		strlcpy(buf, (lastslash == NULL) ? pbuf : (lastslash + 1),
    243   1.3       cgd 		    bufsize);
    244   1.3       cgd 		rv = 0;
    245   1.3       cgd 	}
    246   1.3       cgd 
    247   1.3       cgd 	free(pbuf, M_TEMP);
    248   1.3       cgd 	return (rv);
    249   1.1       cgd }
    250  1.12   garbled 
    251  1.12   garbled /*
    252  1.13   garbled  * Find the first child of a given node that matches name. Does not recurse.
    253  1.12   garbled  */
    254  1.12   garbled int
    255  1.12   garbled of_find_firstchild_byname(int node, const char *name)
    256  1.12   garbled {
    257  1.12   garbled 	char namex[32];
    258  1.12   garbled 	int nn;
    259  1.12   garbled 
    260  1.12   garbled 	for (nn = OF_child(node); nn; nn = OF_peer(nn)) {
    261  1.12   garbled 		memset(namex, 0, sizeof(namex));
    262  1.12   garbled 		if (OF_getprop(nn, "name", namex, sizeof(namex)) == -1)
    263  1.12   garbled 			continue;
    264  1.12   garbled 		if (strcmp(name, namex) == 0)
    265  1.12   garbled 			return nn;
    266  1.12   garbled 	}
    267  1.12   garbled 	return -1;
    268  1.12   garbled }
    269  1.13   garbled 
    270  1.13   garbled /*
    271  1.13   garbled  * Find a give node by name.  Recurses, and seems to walk upwards too.
    272  1.13   garbled  */
    273  1.13   garbled 
    274  1.13   garbled int
    275  1.13   garbled of_getnode_byname(int start, const char *target)
    276  1.13   garbled {
    277  1.13   garbled 	int node, next;
    278  1.13   garbled 	char name[64];
    279  1.13   garbled 
    280  1.13   garbled 	if (start == 0)
    281  1.13   garbled 		start = OF_peer(0);
    282  1.13   garbled 
    283  1.13   garbled 	for (node = start; node; node = next) {
    284  1.13   garbled 		memset(name, 0, sizeof name);
    285  1.13   garbled 		OF_getprop(node, "name", name, sizeof name - 1);
    286  1.13   garbled 		if (strcmp(name, target) == 0)
    287  1.13   garbled 			break;
    288  1.13   garbled 
    289  1.13   garbled 		if ((next = OF_child(node)) != 0)
    290  1.13   garbled 			continue;
    291  1.13   garbled 
    292  1.13   garbled 		while (node) {
    293  1.13   garbled 			if ((next = OF_peer(node)) != 0)
    294  1.13   garbled 				break;
    295  1.13   garbled 			node = OF_parent(node);
    296  1.13   garbled 		}
    297  1.13   garbled 	}
    298  1.13   garbled 
    299  1.13   garbled 	/* XXX is this correct? */
    300  1.13   garbled 	return node;
    301  1.13   garbled }
    302  1.13   garbled 
    303  1.13   garbled /*
    304  1.13   garbled  * Create a uint32_t integer property from an OFW node property.
    305  1.13   garbled  */
    306  1.13   garbled 
    307  1.13   garbled boolean_t
    308  1.13   garbled of_to_uint32_prop(prop_dictionary_t dict, int node, const char *ofname,
    309  1.13   garbled     const char *propname)
    310  1.13   garbled {
    311  1.13   garbled 	uint32_t prop;
    312  1.13   garbled 
    313  1.13   garbled 	if (OF_getprop(node, ofname, &prop, sizeof(prop)) != sizeof(prop))
    314  1.13   garbled 		return FALSE;
    315  1.13   garbled 
    316  1.13   garbled 	return(prop_dictionary_set_uint32(dict, propname, prop));
    317  1.13   garbled }
    318  1.13   garbled 
    319  1.13   garbled /*
    320  1.13   garbled  * Create a data property from an OFW node property.  Max size of 256bytes.
    321  1.13   garbled  */
    322  1.13   garbled 
    323  1.13   garbled boolean_t
    324  1.13   garbled of_to_dataprop(prop_dictionary_t dict, int node, const char *ofname,
    325  1.13   garbled     const char *propname)
    326  1.13   garbled {
    327  1.13   garbled 	prop_data_t data;
    328  1.13   garbled 	int len;
    329  1.13   garbled 	uint8_t prop[256];
    330  1.16    martin 	boolean_t res;
    331  1.13   garbled 
    332  1.13   garbled 	len = OF_getprop(node, ofname, prop, 256);
    333  1.13   garbled 	if (len < 1)
    334  1.13   garbled 		return FALSE;
    335  1.13   garbled 
    336  1.13   garbled 	data = prop_data_create_data(prop, len);
    337  1.16    martin 	res = prop_dictionary_set(dict, propname, data);
    338  1.16    martin 	prop_object_release(data);
    339  1.16    martin 	return res;
    340  1.13   garbled }
    341  1.15  macallan 
    342  1.15  macallan /*
    343  1.15  macallan  * look at output-device, see if there's a Sun-typical video mode specifier as
    344  1.15  macallan  * in screen:r1024x768x60 attached. If found copy it into *buffer, otherwise
    345  1.15  macallan  * return NULL
    346  1.15  macallan  */
    347  1.15  macallan 
    348  1.15  macallan char *
    349  1.15  macallan of_get_mode_string(char *buffer, int len)
    350  1.15  macallan {
    351  1.15  macallan 	int options;
    352  1.15  macallan 	char *pos, output_device[256];
    353  1.15  macallan 
    354  1.15  macallan 	/*
    355  1.15  macallan 	 * finally, let's see if there's a video mode specified in
    356  1.15  macallan 	 * output-device and pass it on so there's at least some way
    357  1.15  macallan 	 * to program video modes
    358  1.15  macallan 	 */
    359  1.15  macallan 	options = OF_finddevice("/options");
    360  1.15  macallan 	if ((options == 0) || (options == -1))
    361  1.15  macallan 		return NULL;
    362  1.15  macallan 	if (OF_getprop(options, "output-device", output_device, 256) == 0)
    363  1.15  macallan 		return NULL;
    364  1.15  macallan 
    365  1.15  macallan 	/* find the mode string if there is one */
    366  1.15  macallan 	pos = strstr(output_device, ":r");
    367  1.15  macallan 	if (pos == NULL)
    368  1.15  macallan 		return NULL;
    369  1.15  macallan 	strncpy(buffer, pos + 2, len);
    370  1.15  macallan 	return buffer;
    371  1.15  macallan }
    372  1.17    martin 
    373  1.17    martin /*
    374  1.17    martin  * Iterate over the subtree of a i2c controller node.
    375  1.17    martin  * Add all sub-devices into an array as part of the controller's
    376  1.17    martin  * device properties.
    377  1.17    martin  * This is used by the i2c bus attach code to do direct configuration.
    378  1.17    martin  */
    379  1.17    martin void
    380  1.26  jmcneill of_enter_i2c_devs(prop_dictionary_t props, int ofnode, size_t cell_size,
    381  1.26  jmcneill     int addr_shift)
    382  1.17    martin {
    383  1.17    martin 	int node, len;
    384  1.21       jdc 	char name[32], compatible[32];
    385  1.18    martin 	uint64_t reg64;
    386  1.18    martin 	uint32_t reg32;
    387  1.18    martin 	uint64_t addr;
    388  1.19       jdc 	prop_array_t array = NULL;
    389  1.17    martin 	prop_dictionary_t dev;
    390  1.17    martin 
    391  1.17    martin 	for (node = OF_child(ofnode); node; node = OF_peer(node)) {
    392  1.17    martin 		if (OF_getprop(node, "name", name, sizeof(name)) <= 0)
    393  1.17    martin 			continue;
    394  1.17    martin 		len = OF_getproplen(node, "reg");
    395  1.18    martin 		addr = 0;
    396  1.18    martin 		if (cell_size == 8 && len >= sizeof(reg64)) {
    397  1.18    martin 			if (OF_getprop(node, "reg", &reg64, sizeof(reg64))
    398  1.18    martin 			    < sizeof(reg64))
    399  1.17    martin 				continue;
    400  1.25  jmcneill 			addr = be64toh(reg64);
    401  1.20       jdc 			/*
    402  1.20       jdc 			 * The i2c bus number (0 or 1) is encoded in bit 33
    403  1.20       jdc 			 * of the register, but we encode it in bit 8 of
    404  1.20       jdc 			 * i2c_addr_t.
    405  1.20       jdc 			 */
    406  1.20       jdc 			if (addr & 0x100000000)
    407  1.20       jdc 				addr = (addr & 0xff) | 0x100;
    408  1.18    martin 		} else if (cell_size == 4 && len >= sizeof(reg32)) {
    409  1.18    martin 			if (OF_getprop(node, "reg", &reg32, sizeof(reg32))
    410  1.18    martin 			    < sizeof(reg32))
    411  1.17    martin 				continue;
    412  1.25  jmcneill 			addr = be32toh(reg32);
    413  1.17    martin 		} else {
    414  1.18    martin 			continue;
    415  1.17    martin 		}
    416  1.26  jmcneill 		addr >>= addr_shift;
    417  1.18    martin 		if (addr == 0) continue;
    418  1.17    martin 
    419  1.19       jdc 		if (array == NULL)
    420  1.19       jdc 			array = prop_array_create();
    421  1.19       jdc 
    422  1.17    martin 		dev = prop_dictionary_create();
    423  1.17    martin 		prop_dictionary_set_cstring(dev, "name", name);
    424  1.18    martin 		prop_dictionary_set_uint32(dev, "addr", addr);
    425  1.17    martin 		prop_dictionary_set_uint64(dev, "cookie", node);
    426  1.17    martin 		of_to_dataprop(dev, node, "compatible", "compatible");
    427  1.21       jdc 		if (OF_getprop(node, "compatible", compatible,
    428  1.21       jdc 		    sizeof(compatible)) > 0) {
    429  1.21       jdc 			/* Set size for EEPROM's that we know about */
    430  1.21       jdc 			if (strcmp(compatible, "i2c-at24c64") == 0)
    431  1.21       jdc 				prop_dictionary_set_uint32(dev, "size", 8192);
    432  1.23       jdc 			if (strcmp(compatible, "i2c-at34c02") == 0)
    433  1.23       jdc 				prop_dictionary_set_uint32(dev, "size", 256);
    434  1.21       jdc 		}
    435  1.17    martin 		prop_array_add(array, dev);
    436  1.17    martin 		prop_object_release(dev);
    437  1.17    martin 	}
    438  1.17    martin 
    439  1.19       jdc 	if (array != NULL) {
    440  1.19       jdc 		prop_dictionary_set(props, "i2c-child-devices", array);
    441  1.19       jdc 		prop_object_release(array);
    442  1.19       jdc 	}
    443  1.22       jdc 
    444  1.22       jdc 	prop_dictionary_set_bool(props, "i2c-indirect-config", false);
    445  1.17    martin }
    446