Home | History | Annotate | Line # | Download | only in oea
ofw_consinit.c revision 1.19.2.1
      1  1.19.2.1   thorpej /* $NetBSD: ofw_consinit.c,v 1.19.2.1 2021/04/03 22:28:35 thorpej Exp $ */
      2       1.2   garbled 
      3       1.2   garbled /*-
      4       1.2   garbled  * Copyright (c) 2007 The NetBSD Foundation, Inc.
      5       1.2   garbled  * All rights reserved.
      6       1.2   garbled  *
      7       1.2   garbled  * This code is derived from software contributed to The NetBSD Foundation
      8       1.2   garbled  * by Tim Rightnour
      9       1.2   garbled  *
     10       1.2   garbled  * Redistribution and use in source and binary forms, with or without
     11       1.2   garbled  * modification, are permitted provided that the following conditions
     12       1.2   garbled  * are met:
     13       1.2   garbled  * 1. Redistributions of source code must retain the above copyright
     14       1.2   garbled  *    notice, this list of conditions and the following disclaimer.
     15       1.2   garbled  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.2   garbled  *    notice, this list of conditions and the following disclaimer in the
     17       1.2   garbled  *    documentation and/or other materials provided with the distribution.
     18       1.2   garbled  *
     19       1.2   garbled  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.2   garbled  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.2   garbled  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.2   garbled  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.2   garbled  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.2   garbled  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.2   garbled  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.2   garbled  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.2   garbled  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.2   garbled  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.2   garbled  * POSSIBILITY OF SUCH DAMAGE.
     30       1.2   garbled  */
     31       1.2   garbled 
     32       1.2   garbled #include <sys/cdefs.h>
     33  1.19.2.1   thorpej __KERNEL_RCSID(0, "$NetBSD: ofw_consinit.c,v 1.19.2.1 2021/04/03 22:28:35 thorpej Exp $");
     34      1.19       rin 
     35      1.19       rin #include "adb.h"
     36      1.19       rin #include "adbkbd.h"
     37      1.19       rin #include "akbd.h"
     38      1.19       rin #include "isa.h"
     39      1.19       rin #include "ofb.h"
     40      1.19       rin #include "pckbc.h"
     41      1.19       rin #include "ukbd.h"
     42      1.19       rin #include "wsdisplay.h"
     43      1.19       rin #include "zsc.h"
     44      1.19       rin #include "zstty.h"
     45       1.2   garbled 
     46       1.2   garbled #include <sys/param.h>
     47       1.2   garbled #include <sys/buf.h>
     48       1.2   garbled #include <sys/tty.h>
     49       1.2   garbled 
     50      1.11  uebayasi #include <prop/proplib.h>
     51      1.11  uebayasi 
     52       1.2   garbled #include <machine/autoconf.h>
     53       1.2   garbled #include <machine/trap.h>
     54      1.12    dyoung #include <sys/bus.h>
     55       1.2   garbled 
     56       1.2   garbled #include <powerpc/ofw_cons.h>
     57  1.19.2.1   thorpej #include <powerpc/ofw_machdep.h>
     58       1.2   garbled 
     59       1.2   garbled #include <dev/cons.h>
     60       1.2   garbled #include <dev/ofw/openfirm.h>
     61       1.2   garbled 
     62       1.2   garbled #include <dev/wscons/wsksymvar.h>
     63       1.2   garbled #include <dev/wscons/wscons_callbacks.h>
     64       1.2   garbled 
     65       1.2   garbled #if NZSC > 0
     66       1.2   garbled #include <machine/z8530var.h>
     67       1.2   garbled #endif
     68       1.2   garbled 
     69       1.2   garbled #if (NADB > 0)
     70       1.2   garbled #include <macppc/dev/adbvar.h>
     71       1.2   garbled #endif
     72       1.2   garbled 
     73       1.2   garbled #if (NUKBD > 0)
     74       1.2   garbled #include <dev/usb/ukbdvar.h>
     75       1.2   garbled struct usb_kbd_ihandles {
     76       1.2   garbled 	struct usb_kbd_ihandles *next;
     77       1.2   garbled 	int ihandle;
     78       1.2   garbled };
     79       1.2   garbled #endif
     80       1.2   garbled 
     81       1.2   garbled #if (NZSTTY > 0)
     82       1.2   garbled #include <dev/ic/z8530reg.h>
     83       1.2   garbled extern struct consdev consdev_zs;
     84       1.2   garbled #endif
     85       1.2   garbled 
     86       1.2   garbled #if (NPCKBC > 0)
     87       1.2   garbled #include <dev/isa/isareg.h>
     88       1.2   garbled #include <dev/ic/i8042reg.h>
     89       1.2   garbled #include <dev/ic/pckbcvar.h>
     90       1.2   garbled #endif
     91       1.2   garbled 
     92  1.19.2.1   thorpej extern int console_node, console_instance;
     93       1.2   garbled 
     94  1.19.2.1   thorpej int ofkbd_ihandle = -1;
     95       1.2   garbled 
     96  1.19.2.1   thorpej static void ofwoea_cnprobe_keyboard(void);
     97       1.2   garbled 
     98       1.2   garbled /*#define OFDEBUG*/
     99       1.2   garbled 
    100       1.2   garbled #ifdef OFDEBUG
    101       1.2   garbled void ofprint(const char *, ...);
    102       1.2   garbled 
    103       1.2   garbled void ofprint(const char *blah, ...)
    104       1.2   garbled {
    105       1.2   garbled 	va_list va;
    106       1.2   garbled 	char buf[256];
    107       1.2   garbled 	int len;
    108       1.2   garbled 
    109       1.2   garbled 	va_start(va, blah);
    110       1.2   garbled 	len = vsnprintf(buf, sizeof(buf), blah, va);
    111      1.17  dholland 	va_end(va);
    112       1.2   garbled 	OF_write(console_instance, buf, len);
    113       1.2   garbled }
    114       1.2   garbled 
    115       1.2   garbled #define OFPRINTF ofprint
    116       1.2   garbled #else
    117       1.2   garbled #define OFPRINTF while(0) printf
    118       1.2   garbled #endif
    119       1.2   garbled 
    120  1.19.2.1   thorpej static bool use_serial_console;
    121  1.19.2.1   thorpej static struct consdev *selected_serial_consdev;
    122  1.19.2.1   thorpej 
    123  1.19.2.1   thorpej static int (*selected_keyboard)(void);
    124  1.19.2.1   thorpej 
    125  1.19.2.1   thorpej /* XXX Gross. */
    126  1.19.2.1   thorpej #if NPCKBC > 0
    127  1.19.2.1   thorpej static int
    128  1.19.2.1   thorpej ofwoea_pckbd_cnattach(void)
    129  1.19.2.1   thorpej {
    130  1.19.2.1   thorpej 	return pckbc_cnattach(&genppc_isa_io_space_tag, IO_KBD, KBCMDP,
    131  1.19.2.1   thorpej 	    PCKBC_KBD_SLOT, 0);
    132  1.19.2.1   thorpej }
    133  1.19.2.1   thorpej #endif
    134  1.19.2.1   thorpej 
    135       1.2   garbled void
    136  1.19.2.1   thorpej ofwoea_cnprobe(void)
    137       1.2   garbled {
    138       1.6   garbled 	char name[32];
    139       1.2   garbled 
    140       1.2   garbled 	OFPRINTF("console node: %08x\n", console_node);
    141       1.9  kiyohara 
    142       1.2   garbled 	if (console_node == -1)
    143  1.19.2.1   thorpej 		return;
    144       1.2   garbled 
    145       1.6   garbled 	memset(name, 0, sizeof(name));
    146       1.6   garbled 	if (OF_getprop(console_node, "device_type", name, sizeof(name)) == -1)
    147  1.19.2.1   thorpej 		return;
    148       1.2   garbled 
    149       1.6   garbled 	OFPRINTF("console type: %s\n", name);
    150       1.2   garbled 
    151       1.6   garbled 	if (strcmp(name, "serial") == 0) {
    152  1.19.2.1   thorpej 		use_serial_console = true;
    153       1.3   garbled #ifdef PMAC_G5
    154       1.2   garbled 		/* The MMU hasn't been initialized yet, use failsafe for now */
    155      1.15       chs 		extern struct consdev failsafe_cons;
    156  1.19.2.1   thorpej 		selected_serial_consdev = &failsafe_cons;
    157  1.19.2.1   thorpej 		aprint_verbose("Early G5 console selected\n");
    158       1.3   garbled 		return;
    159       1.3   garbled #endif /* PMAC_G5 */
    160       1.3   garbled 
    161       1.3   garbled #if (NZSTTY > 0) && !defined(MAMBO)
    162       1.2   garbled 		OF_getprop(console_node, "name", name, sizeof(name));
    163       1.2   garbled 		if (strcmp(name, "ch-a") == 0 || strcmp(name, "ch-b") == 0) {
    164  1.19.2.1   thorpej 			selected_serial_consdev = &consdev_zs;
    165       1.2   garbled 		}
    166       1.2   garbled 		return;
    167       1.2   garbled #endif /* NZTTY */
    168       1.2   garbled 
    169  1.19.2.1   thorpej 		/* fallback to OFW boot console (already set) */
    170       1.2   garbled 		return;
    171       1.2   garbled 	}
    172       1.2   garbled 
    173  1.19.2.1   thorpej 	/*
    174  1.19.2.1   thorpej 	 * We're going to use a display console.  Probe for the keyboard
    175  1.19.2.1   thorpej 	 * we'll use.
    176  1.19.2.1   thorpej 	 */
    177  1.19.2.1   thorpej 	ofwoea_cnprobe_keyboard();
    178  1.19.2.1   thorpej }
    179       1.2   garbled 
    180  1.19.2.1   thorpej /*
    181  1.19.2.1   thorpej  * XXX This routine is a complete disaster, filled with platform-specific
    182  1.19.2.1   thorpej  * XXX stuff.  Fix, plz.
    183  1.19.2.1   thorpej  */
    184       1.2   garbled static void
    185  1.19.2.1   thorpej ofwoea_cnprobe_keyboard(void)
    186       1.2   garbled {
    187  1.19.2.1   thorpej 	extern int ofw_stdin;
    188  1.19.2.1   thorpej 
    189  1.19.2.1   thorpej 	int node, kstdin = ofw_stdin;
    190       1.2   garbled 	char name[16];
    191       1.2   garbled #if (NAKBD > 0) || (NADBKBD > 0)
    192       1.2   garbled 	int akbd;
    193       1.2   garbled #endif
    194       1.2   garbled #if NUKBD > 0
    195       1.2   garbled 	struct usb_kbd_ihandles *ukbds;
    196       1.2   garbled 	int ukbd;
    197       1.2   garbled #endif
    198       1.2   garbled 
    199       1.2   garbled 	/*
    200       1.2   garbled 	 * We must determine which keyboard type we have.
    201       1.2   garbled 	 */
    202       1.3   garbled 	node = OF_instance_to_package(kstdin);
    203       1.2   garbled 	memset(name, 0, sizeof(name));
    204       1.2   garbled 	OF_getprop(node, "name", name, sizeof(name));
    205       1.2   garbled 	if (strcmp(name, "keyboard") != 0) {
    206       1.2   garbled 		printf("WARNING: stdin is not a keyboard: %s\n", name);
    207       1.2   garbled 		return;
    208       1.2   garbled 	}
    209       1.2   garbled 
    210       1.2   garbled 	memset(name, 0, sizeof(name));
    211       1.2   garbled 	OF_getprop(OF_parent(node), "name", name, sizeof(name));
    212      1.10  kiyohara #if NAKBD > 0
    213       1.2   garbled 	if (strcmp(name, "adb") == 0) {
    214       1.2   garbled 		printf("console keyboard type: ADB\n");
    215  1.19.2.1   thorpej 		selected_keyboard = akbd_cnattach;
    216       1.2   garbled 		goto kbd_found;
    217       1.2   garbled 	}
    218       1.2   garbled #endif
    219       1.2   garbled #if NADBKBD > 0
    220       1.2   garbled 	if (strcmp(name, "adb") == 0) {
    221       1.2   garbled 		printf("console keyboard type: ADB\n");
    222  1.19.2.1   thorpej 		selected_keyboard = adbkbd_cnattach;
    223       1.2   garbled 		goto kbd_found;
    224       1.2   garbled 	}
    225       1.2   garbled #endif
    226       1.2   garbled #if NPCKBC > 0
    227      1.10  kiyohara 	if (strcmp(name, "isa") == 0) {
    228       1.2   garbled 		printf("console keyboard type: PC Keyboard\n");
    229  1.19.2.1   thorpej 		selected_keyboard = ofwoea_pckbd_cnattach;
    230       1.2   garbled 		goto kbd_found;
    231       1.2   garbled 	}
    232       1.2   garbled #endif
    233       1.2   garbled 
    234       1.2   garbled 	/*
    235       1.2   garbled 	 * It is not obviously an ADB/PC keyboard. Could be USB,
    236       1.2   garbled 	 * or ADB on some firmware versions (e.g.: iBook G4)
    237       1.2   garbled 	 * This is not enough, we have a few more problems:
    238       1.2   garbled 	 *
    239       1.2   garbled 	 *	(1) The stupid Macintosh firmware uses a
    240       1.9  kiyohara 	 *	    `psuedo-hid' (no typo) or `pseudo-hid',
    241       1.9  kiyohara 	 *	    which apparently merges all keyboards
    242       1.9  kiyohara 	 *	    input into a single input stream.
    243       1.9  kiyohara 	 *	    Because of this, we can't actually
    244       1.9  kiyohara 	 *	    determine which controller or keyboard
    245       1.2   garbled 	 *	    is really the console keyboard!
    246       1.2   garbled 	 *
    247       1.2   garbled 	 *	(2) Even if we could, the keyboard can be USB,
    248       1.9  kiyohara 	 *	    and this requires a lot of the kernel to
    249       1.2   garbled 	 *	    be running in order for it to work.
    250       1.2   garbled 	 *
    251       1.2   garbled 	 *      (3) If the keyboard is behind isa, we don't have enough
    252       1.2   garbled 	 * 	    kernel setup to use it yet, so punt to the ofroutines.
    253       1.2   garbled 	 *
    254       1.2   garbled 	 * So, what we do is this:
    255       1.2   garbled 	 *
    256       1.2   garbled 	 *	(1) First check for OpenFirmware implementation
    257       1.9  kiyohara 	 *	    that will not let us distinguish between
    258       1.9  kiyohara 	 *	    USB and ADB. In that situation, try attaching
    259       1.9  kiyohara 	 *	    anything as we can, and hope things get better
    260       1.2   garbled 	 *	    at autoconfiguration time.
    261       1.2   garbled 	 *
    262       1.2   garbled 	 *	(2) Assume the keyboard is USB.
    263       1.2   garbled 	 *	    Tell the ukbd driver that it is the console.
    264       1.2   garbled 	 *	    At autoconfiguration time, it will attach the
    265       1.2   garbled 	 *	    first USB keyboard instance as the console
    266       1.2   garbled 	 *	    keyboard.
    267       1.2   garbled 	 *
    268       1.2   garbled 	 *	(3) Until then, so that we have _something_, we
    269       1.2   garbled 	 *	    use the OpenFirmware I/O facilities to read
    270       1.2   garbled 	 *	    the keyboard.
    271       1.2   garbled 	 */
    272       1.2   garbled 
    273       1.2   garbled 	/*
    274       1.9  kiyohara 	 * stdin is /pseudo-hid/keyboard.  There is no
    275       1.2   garbled 	 * `adb-kbd-ihandle or `usb-kbd-ihandles methods
    276       1.2   garbled 	 * available. Try attaching as ADB.
    277       1.8  macallan 	 * But only if ADB support is actually present.
    278       1.2   garbled 	 *
    279       1.2   garbled 	 * XXX This must be called before pmap_bootstrap().
    280       1.2   garbled 	 */
    281       1.2   garbled 	if (strcmp(name, "pseudo-hid") == 0) {
    282       1.8  macallan 		int adb_node;
    283       1.8  macallan 
    284       1.8  macallan 		adb_node = OF_finddevice("/pci/mac-io/via-pmu/adb");
    285       1.8  macallan 		if (adb_node > 0) {
    286       1.8  macallan 			printf("ADB support found\n");
    287       1.2   garbled #if NAKBD > 0
    288  1.19.2.1   thorpej 			selected_keyboard = akbd_cnattach;
    289       1.2   garbled #endif
    290       1.2   garbled #if NADBKBD > 0
    291  1.19.2.1   thorpej 			selected_keyboard = adbkbd_cnattach;
    292       1.8  macallan #endif
    293       1.8  macallan 		} else {
    294       1.8  macallan 			/* must be USB */
    295       1.9  kiyohara 			printf("No ADB support present, assuming USB "
    296       1.8  macallan 			       "keyboard\n");
    297       1.8  macallan #if NUKBD > 0
    298  1.19.2.1   thorpej 			selected_keyboard = ukbd_cnattach;
    299       1.2   garbled #endif
    300       1.8  macallan 		}
    301       1.2   garbled 		goto kbd_found;
    302       1.2   garbled 	}
    303       1.2   garbled 
    304       1.2   garbled 	/*
    305       1.2   garbled 	 * stdin is /psuedo-hid/keyboard.  Test `adb-kbd-ihandle and
    306       1.2   garbled 	 * `usb-kbd-ihandles to figure out the real keyboard(s).
    307       1.2   garbled 	 *
    308       1.2   garbled 	 * XXX This must be called before pmap_bootstrap().
    309       1.2   garbled 	 */
    310       1.2   garbled 
    311       1.2   garbled #if NUKBD > 0
    312  1.19.2.1   thorpej 	if (OF_call_method("`usb-kbd-ihandles", kstdin, 0, 1, &ukbds) >= 0 &&
    313       1.2   garbled 	    ukbds != NULL && ukbds->ihandle != 0 &&
    314       1.2   garbled 	    OF_instance_to_package(ukbds->ihandle) != -1) {
    315       1.2   garbled 		printf("usb-kbd-ihandles matches\n");
    316       1.2   garbled 		printf("console keyboard type: USB\n");
    317  1.19.2.1   thorpej 		selected_keyboard = ukbd_cnattach;
    318       1.2   garbled 		goto kbd_found;
    319       1.2   garbled 	}
    320       1.2   garbled 	/* Try old method name. */
    321       1.3   garbled 	if (OF_call_method("`usb-kbd-ihandle", kstdin, 0, 1, &ukbd) >= 0 &&
    322       1.2   garbled 	    ukbd != 0 &&
    323       1.2   garbled 	    OF_instance_to_package(ukbd) != -1) {
    324       1.2   garbled 		printf("usb-kbd-ihandle matches\n");
    325       1.2   garbled 		printf("console keyboard type: USB\n");
    326       1.3   garbled 		kstdin = ukbd;
    327  1.19.2.1   thorpej 		selected_keyboard = ukbd_cnattach;
    328       1.2   garbled 		goto kbd_found;
    329       1.2   garbled 	}
    330       1.2   garbled #endif
    331       1.2   garbled 
    332       1.2   garbled #if (NAKBD > 0) || (NADBKBD > 0)
    333       1.3   garbled 	if (OF_call_method("`adb-kbd-ihandle", kstdin, 0, 1, &akbd) >= 0 &&
    334       1.2   garbled 	    akbd != 0 &&
    335       1.2   garbled 	    OF_instance_to_package(akbd) != -1) {
    336       1.2   garbled 		printf("adb-kbd-ihandle matches\n");
    337       1.2   garbled 		printf("console keyboard type: ADB\n");
    338       1.3   garbled 		kstdin = akbd;
    339       1.2   garbled #if NAKBD > 0
    340  1.19.2.1   thorpej 		selected_keyboard = akbd_cnattach;
    341       1.2   garbled #endif
    342       1.2   garbled #if NADBKBD > 0
    343  1.19.2.1   thorpej 		selected_keyboard = adbkbd_cnattach;
    344       1.2   garbled #endif
    345       1.2   garbled 		goto kbd_found;
    346       1.2   garbled 	}
    347       1.2   garbled #endif
    348       1.2   garbled 
    349       1.2   garbled #if NUKBD > 0
    350       1.2   garbled 	/*
    351       1.2   garbled 	 * XXX Old firmware does not have `usb-kbd-ihandles method.  Assume
    352       1.2   garbled 	 * XXX USB keyboard anyway.
    353       1.2   garbled 	 */
    354       1.2   garbled 	printf("defaulting to USB...");
    355       1.2   garbled 	printf("console keyboard type: USB\n");
    356  1.19.2.1   thorpej 	selected_keyboard = ukbd_cnattach;
    357       1.2   garbled 	goto kbd_found;
    358       1.2   garbled #endif
    359       1.2   garbled 
    360       1.2   garbled 	/*
    361       1.2   garbled 	 * No keyboard is found.  Just return.
    362       1.2   garbled 	 */
    363       1.2   garbled 	printf("no console keyboard\n");
    364       1.2   garbled 	return;
    365       1.2   garbled 
    366  1.19.2.1   thorpej kbd_found:
    367       1.3   garbled 	ofkbd_ihandle = kstdin;
    368       1.2   garbled }
    369       1.2   garbled 
    370       1.2   garbled /*
    371       1.2   garbled  * Bootstrap console keyboard routines, using OpenFirmware I/O.
    372       1.2   garbled  */
    373       1.2   garbled int
    374       1.2   garbled ofkbd_cngetc(dev_t dev)
    375       1.2   garbled {
    376       1.2   garbled 	u_char c = '\0';
    377       1.2   garbled 	int len;
    378       1.2   garbled 
    379  1.19.2.1   thorpej 	KASSERT(ofkbd_ihandle != -1);
    380  1.19.2.1   thorpej 
    381       1.2   garbled 	do {
    382       1.2   garbled 		len = OF_read(ofkbd_ihandle, &c, 1);
    383       1.2   garbled 	} while (len != 1);
    384       1.2   garbled 
    385       1.2   garbled 	return c;
    386       1.2   garbled }
    387       1.2   garbled 
    388  1.19.2.1   thorpej void
    389  1.19.2.1   thorpej cninit(void)
    390       1.3   garbled {
    391  1.19.2.1   thorpej 	if (use_serial_console) {
    392  1.19.2.1   thorpej 		if (selected_serial_consdev != NULL) {
    393  1.19.2.1   thorpej 			cn_tab = selected_serial_consdev;
    394  1.19.2.1   thorpej 			(*cn_tab->cn_probe)(cn_tab);
    395  1.19.2.1   thorpej 			(*cn_tab->cn_init)(cn_tab);
    396  1.19.2.1   thorpej 		}
    397  1.19.2.1   thorpej 		return;
    398  1.19.2.1   thorpej 	}
    399       1.3   garbled 
    400  1.19.2.1   thorpej #if NWSDISPLAY > 0
    401  1.19.2.1   thorpej 	rascons_cnattach();
    402  1.19.2.1   thorpej #endif
    403  1.19.2.1   thorpej 	if (selected_keyboard != NULL) {
    404  1.19.2.1   thorpej 		(*selected_keyboard)();
    405       1.3   garbled 
    406  1.19.2.1   thorpej #if NWSDISPLAY > 0
    407  1.19.2.1   thorpej 		/*
    408  1.19.2.1   thorpej 		 * XXX This is a little gross, but we don't get to call
    409  1.19.2.1   thorpej 		 * XXX wskbd_cnattach() twice.
    410  1.19.2.1   thorpej 		 */
    411  1.19.2.1   thorpej 		wsdisplay_set_cons_kbd(ofkbd_cngetc, NULL, NULL);
    412  1.19.2.1   thorpej #endif
    413  1.19.2.1   thorpej 	}
    414       1.3   garbled }
    415       1.3   garbled 
    416       1.2   garbled void
    417       1.2   garbled ofwoea_consinit(void)
    418       1.2   garbled {
    419       1.2   garbled 	static int initted = 0;
    420       1.2   garbled 
    421       1.2   garbled 	if (initted)
    422       1.2   garbled 		return;
    423       1.2   garbled 
    424       1.2   garbled 	initted = 1;
    425       1.2   garbled 	cninit();
    426       1.2   garbled }
    427