Home | History | Annotate | Line # | Download | only in include
bsd_openprom.h revision 1.22.2.2
      1  1.22.2.2      yamt /*	$NetBSD: bsd_openprom.h,v 1.22.2.2 2008/01/21 09:39:22 yamt Exp $ */
      2       1.2   deraadt 
      3       1.1   deraadt /*
      4       1.1   deraadt  * Copyright (c) 1992, 1993
      5       1.1   deraadt  *	The Regents of the University of California.  All rights reserved.
      6       1.1   deraadt  *
      7       1.1   deraadt  * This code is derived from software contributed to Berkeley by
      8       1.1   deraadt  * Jan-Simon Pendry.
      9       1.1   deraadt  *
     10       1.1   deraadt  * Redistribution and use in source and binary forms, with or without
     11       1.1   deraadt  * modification, are permitted provided that the following conditions
     12       1.1   deraadt  * are met:
     13       1.1   deraadt  * 1. Redistributions of source code must retain the above copyright
     14       1.1   deraadt  *    notice, this list of conditions and the following disclaimer.
     15       1.1   deraadt  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1   deraadt  *    notice, this list of conditions and the following disclaimer in the
     17       1.1   deraadt  *    documentation and/or other materials provided with the distribution.
     18      1.20       agc  * 3. Neither the name of the University nor the names of its contributors
     19       1.1   deraadt  *    may be used to endorse or promote products derived from this software
     20       1.1   deraadt  *    without specific prior written permission.
     21       1.1   deraadt  *
     22       1.1   deraadt  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23       1.1   deraadt  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24       1.1   deraadt  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25       1.1   deraadt  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26       1.1   deraadt  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27       1.1   deraadt  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28       1.1   deraadt  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29       1.1   deraadt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30       1.1   deraadt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31       1.1   deraadt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32       1.1   deraadt  * SUCH DAMAGE.
     33       1.1   deraadt  *
     34       1.1   deraadt  *	@(#)bsd_openprom.h	8.1 (Berkeley) 6/11/93
     35       1.1   deraadt  */
     36       1.1   deraadt 
     37       1.1   deraadt /*
     38      1.10    abrown  * Sun4m support by Aaron Brown, Harvard University.
     39       1.8        pk  * Changes Copyright (c) 1995 The President and Fellows of Harvard College.
     40       1.8        pk  * All rights reserved.
     41       1.8        pk  */
     42       1.8        pk 
     43      1.13        pk #ifndef _BSD_OPENPROM_H_
     44      1.13        pk #define _BSD_OPENPROM_H_
     45      1.13        pk 
     46       1.8        pk /*
     47       1.1   deraadt  * This file defines the interface between the kernel and the Openboot PROM.
     48       1.1   deraadt  * N.B.: this has been tested only on interface versions 0 and 2 (we have
     49       1.1   deraadt  * never seen interface version 1).
     50       1.1   deraadt  */
     51       1.1   deraadt 
     52       1.1   deraadt /*
     53       1.1   deraadt  * The v0 interface tells us what virtual memory to scan to avoid PMEG
     54       1.1   deraadt  * conflicts, but the v2 interface fails to do so, and we must `magically'
     55       1.1   deraadt  * know where the OPENPROM lives in virtual space.
     56       1.1   deraadt  */
     57       1.1   deraadt #define	OPENPROM_STARTVADDR	0xffd00000
     58       1.1   deraadt #define	OPENPROM_ENDVADDR	0xfff00000
     59       1.1   deraadt 
     60       1.1   deraadt #define	OPENPROM_MAGIC 0x10010407
     61       1.1   deraadt 
     62       1.1   deraadt /*
     63       1.1   deraadt  * Version 0 PROM vector device operations (collected here to emphasise that
     64       1.1   deraadt  * they are deprecated).  Open and close are obvious.  Read and write are
     65       1.1   deraadt  * segregated according to the device type (block, network, or character);
     66       1.1   deraadt  * this is unnecessary and was eliminated from the v2 device operations, but
     67       1.1   deraadt  * we are stuck with it.
     68       1.1   deraadt  *
     69       1.1   deraadt  * Seek is probably only useful on tape devices, since the only character
     70       1.1   deraadt  * devices are the serial ports.
     71       1.1   deraadt  *
     72       1.1   deraadt  * Note that a v0 device name is always exactly two characters ("sd", "le",
     73       1.1   deraadt  * and so forth).
     74       1.1   deraadt  */
     75       1.1   deraadt struct v0devops {
     76      1.22  christos 	int	(*v0_open)(const char *);
     77      1.22  christos 	int	(*v0_close)(int);
     78      1.22  christos 	int	(*v0_rbdev)(int, int, int, void *);
     79      1.22  christos 	int	(*v0_wbdev)(int, int, int, void *);
     80      1.22  christos 	int	(*v0_wnet)(int, int, void *);
     81      1.22  christos 	int	(*v0_rnet)(int, int, void *);
     82      1.22  christos 	int	(*v0_rcdev)(int, int, int, void *);
     83      1.22  christos 	int	(*v0_wcdev)(int, int, int, void *);
     84      1.22  christos 	int	(*v0_seek)(int, long, int);
     85       1.1   deraadt };
     86       1.1   deraadt 
     87       1.1   deraadt /*
     88       1.1   deraadt  * Version 2 device operations.  Open takes a device `path' such as
     89       1.1   deraadt  * /sbus/le@0,c00000,0 or /sbus/esp@.../sd@0,0, which means it can open
     90       1.1   deraadt  * anything anywhere, without any magic translation.
     91       1.1   deraadt  *
     92       1.1   deraadt  * The memory allocator and map functions are included here even though
     93       1.1   deraadt  * they relate only indirectly to devices (e.g., mmap is good for mapping
     94       1.1   deraadt  * device memory, and drivers need to allocate space in which to record
     95       1.1   deraadt  * the device state).
     96       1.1   deraadt  */
     97       1.1   deraadt struct v2devops {
     98       1.3        pk 	/*
     99       1.3        pk 	 * Convert an `instance handle' (acquired through v2_open()) to
    100       1.3        pk 	 * a `package handle', a.k.a. a `node'.
    101       1.3        pk 	 */
    102      1.22  christos 	int	(*v2_fd_phandle)(int);
    103       1.1   deraadt 
    104       1.1   deraadt 	/* Memory allocation and release. */
    105  1.22.2.1      yamt 	void	*(*v2_malloc)(void *, u_int);
    106  1.22.2.1      yamt 	void	(*v2_free)(void *, u_int);
    107       1.1   deraadt 
    108       1.1   deraadt 	/* Device memory mapper. */
    109  1.22.2.1      yamt 	void *	(*v2_mmap)(void *, int, u_int, u_int);
    110  1.22.2.1      yamt 	void	(*v2_munmap)(void *, u_int);
    111       1.1   deraadt 
    112       1.1   deraadt 	/* Device open, close, etc. */
    113      1.22  christos 	int	(*v2_open)(const char *);
    114      1.22  christos 	void	(*v2_close)(int);
    115      1.22  christos 	int	(*v2_read)(int, void *, int);
    116      1.22  christos 	int	(*v2_write)(int, const void *, int);
    117      1.22  christos 	void	(*v2_seek)(int, int, int);
    118       1.1   deraadt 
    119      1.22  christos 	void	(*v2_chain)(void);	/* ??? */
    120      1.22  christos 	void	(*v2_release)(void);	/* ??? */
    121       1.1   deraadt };
    122       1.1   deraadt 
    123       1.1   deraadt /*
    124       1.1   deraadt  * The v0 interface describes memory regions with these linked lists.
    125       1.1   deraadt  * (The !$&@#+ v2 interface reformats these as properties, so that we
    126       1.1   deraadt  * have to extract them into local temporary memory and reinterpret them.)
    127       1.1   deraadt  */
    128       1.1   deraadt struct v0mlist {
    129       1.1   deraadt 	struct	v0mlist *next;
    130  1.22.2.1      yamt 	void *	addr;
    131       1.1   deraadt 	u_int	nbytes;
    132       1.1   deraadt };
    133       1.1   deraadt 
    134       1.1   deraadt /*
    135       1.1   deraadt  * V0 gives us three memory lists:  Total physical memory, VM reserved to
    136       1.1   deraadt  * the PROM, and available physical memory (which, presumably, is just the
    137       1.1   deraadt  * total minus any pages mapped in the PROM's VM region).  We can find the
    138       1.1   deraadt  * reserved PMEGs by scanning the taken VM.  Unfortunately, the V2 prom
    139       1.1   deraadt  * forgot to provide taken VM, and we are stuck with scanning ``magic''
    140       1.1   deraadt  * addresses.
    141       1.1   deraadt  */
    142       1.1   deraadt struct v0mem {
    143       1.1   deraadt 	struct	v0mlist **v0_phystot;	/* physical memory */
    144       1.1   deraadt 	struct	v0mlist **v0_vmprom;	/* VM used by PROM */
    145       1.1   deraadt 	struct	v0mlist **v0_physavail;	/* available physical memory */
    146       1.1   deraadt };
    147       1.1   deraadt 
    148       1.1   deraadt /*
    149       1.1   deraadt  * The version 0 PROM breaks up the string given to the boot command and
    150       1.1   deraadt  * leaves the decoded version behind.
    151       1.1   deraadt  */
    152       1.1   deraadt struct v0bootargs {
    153       1.1   deraadt 	char	*ba_argv[8];		/* argv format for boot string */
    154       1.1   deraadt 	char	ba_args[100];		/* string space */
    155       1.1   deraadt 	char	ba_bootdev[2];		/* e.g., "sd" for `b sd(...' */
    156       1.1   deraadt 	int	ba_ctlr;		/* controller # */
    157       1.1   deraadt 	int	ba_unit;		/* unit # */
    158       1.1   deraadt 	int	ba_part;		/* partition # */
    159       1.1   deraadt 	char	*ba_kernel;		/* kernel to boot, e.g., "vmunix" */
    160       1.1   deraadt 	void	*ba_spare0;		/* not decoded here	XXX */
    161       1.1   deraadt };
    162       1.1   deraadt 
    163       1.1   deraadt /*
    164       1.1   deraadt  * The version 2 PROM interface uses the more general, if less convenient,
    165       1.1   deraadt  * approach of passing the boot strings unchanged.  We also get open file
    166       1.1   deraadt  * numbers for stdin and stdout (keyboard and screen, or whatever), for use
    167       1.1   deraadt  * with the v2 device ops.
    168       1.1   deraadt  */
    169       1.1   deraadt struct v2bootargs {
    170       1.1   deraadt 	char	**v2_bootpath;		/* V2: Path to boot device */
    171       1.1   deraadt 	char	**v2_bootargs;		/* V2: Boot args */
    172       1.1   deraadt 	int	*v2_fd0;		/* V2: Stdin descriptor */
    173       1.1   deraadt 	int	*v2_fd1;		/* V2: Stdout descriptor */
    174       1.1   deraadt };
    175       1.1   deraadt 
    176       1.1   deraadt /*
    177      1.18   thorpej  * The format used by the PROM to describe a physical address.  These
    178      1.18   thorpej  * are typically found in a "reg" property.
    179      1.13        pk  */
    180      1.13        pk struct openprom_addr {
    181      1.13        pk 	int	oa_space;		/* address space (may be relative) */
    182      1.13        pk 	u_int	oa_base;		/* address within space */
    183      1.13        pk 	u_int	oa_size;		/* extent (number of bytes) */
    184      1.18   thorpej };
    185      1.18   thorpej 
    186      1.18   thorpej /*
    187      1.18   thorpej  * The format used by the PROM to describe an address space window.  These
    188      1.18   thorpej  * are typically found in a "range" property.
    189      1.18   thorpej  */
    190      1.18   thorpej struct openprom_range {
    191      1.18   thorpej 	int	or_child_space;		/* address space of child */
    192      1.18   thorpej 	u_int	or_child_base;		/* offset in child's view of bus */
    193      1.18   thorpej 	int	or_parent_space;	/* address space of parent */
    194      1.18   thorpej 	u_int	or_parent_base;		/* offset in parent's view of bus */
    195      1.18   thorpej 	u_int	or_size;		/* extent (number of bytes) */
    196      1.18   thorpej };
    197      1.18   thorpej 
    198      1.18   thorpej /*
    199      1.18   thorpej  * The format used by the PROM to describe an interrupt.  These are
    200      1.18   thorpej  * typically found in an "intr" property.
    201      1.18   thorpej  */
    202      1.18   thorpej struct openprom_intr {
    203      1.18   thorpej 	int	oi_pri;			/* interrupt priority */
    204      1.18   thorpej 	int	oi_vec;			/* interrupt vector */
    205      1.13        pk };
    206      1.13        pk 
    207      1.13        pk /*
    208       1.1   deraadt  * The following structure defines the primary PROM vector interface.
    209       1.1   deraadt  * The Boot PROM hands the kernel a pointer to this structure in %o0.
    210       1.1   deraadt  * There are numerous substructures defined below.
    211       1.1   deraadt  */
    212       1.1   deraadt struct promvec {
    213       1.1   deraadt 	/* Version numbers. */
    214       1.1   deraadt 	u_int	pv_magic;		/* Magic number */
    215      1.15        pk #define OBP_MAGIC	0x10010407
    216       1.1   deraadt 	u_int	pv_romvec_vers;		/* interface version (0, 2) */
    217       1.1   deraadt 	u_int	pv_plugin_vers;		/* ??? */
    218       1.1   deraadt 	u_int	pv_printrev;		/* PROM rev # (* 10, e.g 1.9 = 19) */
    219       1.1   deraadt 
    220       1.1   deraadt 	/* Version 0 memory descriptors (see below). */
    221       1.1   deraadt 	struct	v0mem pv_v0mem;		/* V0: Memory description lists. */
    222       1.1   deraadt 
    223       1.1   deraadt 	/* Node operations (see below). */
    224       1.1   deraadt 	struct	nodeops *pv_nodeops;	/* node functions */
    225       1.1   deraadt 
    226       1.1   deraadt 	char	**pv_bootstr;		/* Boot command, eg sd(0,0,0)vmunix */
    227       1.1   deraadt 
    228       1.1   deraadt 	struct	v0devops pv_v0devops;	/* V0: device ops */
    229       1.1   deraadt 
    230       1.1   deraadt 	/*
    231       1.1   deraadt 	 * PROMDEV_* cookies.  I fear these may vanish in lieu of fd0/fd1
    232       1.1   deraadt 	 * (see below) in future PROMs, but for now they work fine.
    233       1.1   deraadt 	 */
    234       1.1   deraadt 	char	*pv_stdin;		/* stdin cookie */
    235       1.1   deraadt 	char	*pv_stdout;		/* stdout cookie */
    236       1.1   deraadt #define	PROMDEV_KBD	0		/* input from keyboard */
    237       1.1   deraadt #define	PROMDEV_SCREEN	0		/* output to screen */
    238       1.1   deraadt #define	PROMDEV_TTYA	1		/* in/out to ttya */
    239       1.1   deraadt #define	PROMDEV_TTYB	2		/* in/out to ttyb */
    240       1.1   deraadt 
    241       1.1   deraadt 	/* Blocking getchar/putchar.  NOT REENTRANT! (grr) */
    242      1.22  christos 	int	(*pv_getchar)(void);
    243      1.22  christos 	void	(*pv_putchar)(int);
    244       1.1   deraadt 
    245       1.1   deraadt 	/* Non-blocking variants that return -1 on error. */
    246      1.22  christos 	int	(*pv_nbgetchar)(void);
    247      1.22  christos 	int	(*pv_nbputchar)(int);
    248       1.1   deraadt 
    249       1.1   deraadt 	/* Put counted string (can be very slow). */
    250      1.22  christos 	void	(*pv_putstr)(const char *, int);
    251       1.1   deraadt 
    252       1.1   deraadt 	/* Miscellany. */
    253      1.22  christos 	void	(*pv_reboot)(const char *) __attribute__((__noreturn__));
    254      1.22  christos 	void	(*pv_printf)(const char *, ...);
    255      1.22  christos 	void	(*pv_abort)(void);	/* L1-A abort */
    256       1.1   deraadt 	int	*pv_ticks;		/* Ticks since last reset */
    257  1.22.2.2      yamt 	__dead void (*pv_halt)(void);	/* Halt! */
    258      1.22  christos 	void	(**pv_synchook)(void);	/* "sync" command hook */
    259       1.1   deraadt 
    260       1.1   deraadt 	/*
    261       1.1   deraadt 	 * This eval's a FORTH string.  Unfortunately, its interface
    262       1.1   deraadt 	 * changed between V0 and V2, which gave us much pain.
    263       1.1   deraadt 	 */
    264       1.1   deraadt 	union {
    265      1.22  christos 		void	(*v0_eval)(int, const char *);
    266      1.22  christos 		void	(*v2_eval)(const char *);
    267       1.1   deraadt 	} pv_fortheval;
    268       1.1   deraadt 
    269       1.1   deraadt 	struct	v0bootargs **pv_v0bootargs;	/* V0: Boot args */
    270       1.1   deraadt 
    271       1.1   deraadt 	/* Extract Ethernet address from network device. */
    272      1.22  christos 	u_int	(*pv_enaddr)(int, char *);
    273       1.1   deraadt 
    274       1.1   deraadt 	struct	v2bootargs pv_v2bootargs;	/* V2: Boot args + std in/out */
    275       1.1   deraadt 	struct	v2devops pv_v2devops;	/* V2: device operations */
    276       1.1   deraadt 
    277       1.1   deraadt 	int	pv_spare[15];
    278       1.1   deraadt 
    279       1.1   deraadt 	/*
    280       1.1   deraadt 	 * The following is machine-dependent.
    281       1.1   deraadt 	 *
    282       1.1   deraadt 	 * The sun4c needs a PROM function to set a PMEG for another
    283       1.1   deraadt 	 * context, so that the kernel can map itself in all contexts.
    284       1.1   deraadt 	 * It is not possible simply to set the context register, because
    285       1.1   deraadt 	 * contexts 1 through N may have invalid translations for the
    286       1.1   deraadt 	 * current program counter.  The hardware has a mode in which
    287       1.1   deraadt 	 * all memory references go to the PROM, so the PROM can do it
    288       1.1   deraadt 	 * easily.
    289       1.1   deraadt 	 */
    290  1.22.2.1      yamt 	void	(*pv_setctxt)(int, void *, int);
    291      1.12        pk 
    292       1.8        pk 	/*
    293       1.4        pk 	 * The following are V3 ROM functions to handle MP machines in the
    294       1.4        pk 	 * Sun4m series. They have undefined results when run on a uniprocessor!
    295       1.4        pk 	 */
    296  1.22.2.1      yamt 	int	(*pv_v3cpustart)(int, struct openprom_addr *, int, void *);
    297      1.22  christos 	int 	(*pv_v3cpustop)(int);
    298      1.22  christos 	int	(*pv_v3cpuidle)(int);
    299      1.22  christos 	int 	(*pv_v3cpuresume)(int);
    300       1.1   deraadt };
    301       1.1   deraadt 
    302       1.1   deraadt /*
    303       1.1   deraadt  * In addition to the global stuff defined in the PROM vectors above,
    304       1.1   deraadt  * the PROM has quite a collection of `nodes'.  A node is described by
    305       1.1   deraadt  * an integer---these seem to be internal pointers, actually---and the
    306       1.1   deraadt  * nodes are arranged into an N-ary tree.  Each node implements a fixed
    307       1.1   deraadt  * set of functions, as described below.  The first two deal with the tree
    308       1.1   deraadt  * structure, allowing traversals in either breadth- or depth-first fashion.
    309       1.1   deraadt  * The rest deal with `properties'.
    310       1.1   deraadt  *
    311       1.1   deraadt  * A node property is simply a name/value pair.  The names are C strings
    312       1.1   deraadt  * (NUL-terminated); the values are arbitrary byte strings (counted strings).
    313       1.1   deraadt  * Many values are really just C strings.  Sometimes these are NUL-terminated,
    314      1.16     soren  * sometimes not, depending on the interface version; v0 seems to terminate
    315      1.16     soren  * and v2 not.  Many others are simply integers stored as four bytes in
    316      1.16     soren  * machine order: you just get them and go.  The third popular format is
    317      1.16     soren  * an `physical address', which is made up of one or more sets of three
    318      1.16     soren  * integers as defined above.
    319       1.1   deraadt  *
    320       1.1   deraadt  * N.B.: for the `next' functions, next(0) = first, and next(last) = 0.
    321       1.1   deraadt  * Whoever designed this part had good taste.  On the other hand, these
    322       1.1   deraadt  * operation vectors are global, rather than per-node, yet the pointers
    323       1.1   deraadt  * are not in the openprom vectors but rather found by indirection from
    324       1.1   deraadt  * there.  So the taste balances out.
    325       1.1   deraadt  */
    326       1.1   deraadt 
    327       1.1   deraadt struct nodeops {
    328       1.1   deraadt 	/*
    329       1.1   deraadt 	 * Tree traversal.
    330       1.1   deraadt 	 */
    331      1.22  christos 	int	(*no_nextnode)(int);	/* next(node) */
    332      1.22  christos 	int	(*no_child)(int);	/* first child */
    333       1.1   deraadt 
    334       1.1   deraadt 	/*
    335       1.1   deraadt 	 * Property functions.  Proper use of getprop requires calling
    336       1.1   deraadt 	 * proplen first to make sure it fits.  Kind of a pain, but no
    337       1.1   deraadt 	 * doubt more convenient for the PROM coder.
    338       1.1   deraadt 	 */
    339      1.22  christos 	int	(*no_proplen)(int, const char *);
    340      1.22  christos 	int	(*no_getprop)(int, const char *, void *);
    341      1.22  christos 	int	(*no_setprop)(int, const char *, const void *, int);
    342      1.22  christos 	char	*(*no_nextprop)(int, const char *);
    343       1.1   deraadt };
    344       1.7  christos 
    345      1.19        pk /*
    346      1.19        pk  *  OBP Module mailbox messages for multi processor machines.
    347      1.19        pk  *
    348      1.19        pk  *	00..7F	: power-on self test
    349      1.19        pk  *	80..8F	: active in boot prom (at the "ok" prompt)
    350      1.19        pk  *	90..EF	: idle in boot prom
    351      1.19        pk  *	F0	: active in application
    352      1.19        pk  *	F1..FA	: reserved for future use
    353      1.19        pk  *
    354      1.19        pk  *	FB	: pv_v3cpustop(node) was called for this CPU,
    355      1.19        pk  *		  respond by calling pv_v3cpustop(0).
    356      1.19        pk  *
    357      1.19        pk  *	FC	: pv_v3cpuidle(node) was called for this CPU,
    358      1.19        pk  *		  respond by calling pv_v3cpuidle(0).
    359      1.19        pk  *
    360      1.19        pk  *	FD	: One processor hit a BREAKPOINT, call pv_v3cpuidle(0).
    361      1.19        pk  *		  [According to SunOS4 header; but what breakpoint?]
    362      1.19        pk  *
    363      1.19        pk  *	FE	: One processor got a WATCHDOG RESET, call pv_v3cpustop(0).
    364      1.19        pk  *		  [According to SunOS4 header; never seen this, although
    365      1.19        pk  *		   I've had plenty of watchdogs already]
    366      1.19        pk  *
    367      1.19        pk  *	FF	: This processor is not available.
    368      1.19        pk  */
    369      1.19        pk 
    370      1.19        pk #define OPENPROM_MBX_STOP	0xfb
    371      1.19        pk #define OPENPROM_MBX_ABORT	0xfc
    372      1.19        pk #define OPENPROM_MBX_BPT	0xfd
    373      1.19        pk #define OPENPROM_MBX_WD		0xfe
    374      1.13        pk 
    375      1.13        pk #endif /* _BSD_OPENPROM_H_ */
    376