xref: /netbsd-src/sys/arch/emips/include/autoconf.h (revision 5f7e80a8347a06224e3d98023e437667ed7b47d5)
1*5f7e80a8Spooka /*	$NetBSD: autoconf.h,v 1.1 2011/01/26 01:18:51 pooka Exp $ */
2*5f7e80a8Spooka 
3*5f7e80a8Spooka /*
4*5f7e80a8Spooka  * Copyright (c) 1994, 1995 Carnegie-Mellon University.
5*5f7e80a8Spooka  * All rights reserved.
6*5f7e80a8Spooka  *
7*5f7e80a8Spooka  * Author: Chris G. Demetriou
8*5f7e80a8Spooka  *
9*5f7e80a8Spooka  * Permission to use, copy, modify and distribute this software and
10*5f7e80a8Spooka  * its documentation is hereby granted, provided that both the copyright
11*5f7e80a8Spooka  * notice and this permission notice appear in all copies of the
12*5f7e80a8Spooka  * software, derivative works or modified versions, and any portions
13*5f7e80a8Spooka  * thereof, and that both notices appear in supporting documentation.
14*5f7e80a8Spooka  *
15*5f7e80a8Spooka  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
16*5f7e80a8Spooka  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
17*5f7e80a8Spooka  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
18*5f7e80a8Spooka  *
19*5f7e80a8Spooka  * Carnegie Mellon requests users of this software to return to
20*5f7e80a8Spooka  *
21*5f7e80a8Spooka  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
22*5f7e80a8Spooka  *  School of Computer Science
23*5f7e80a8Spooka  *  Carnegie Mellon University
24*5f7e80a8Spooka  *  Pittsburgh PA 15213-3890
25*5f7e80a8Spooka  *
26*5f7e80a8Spooka  * any improvements or extensions that they make and grant Carnegie the
27*5f7e80a8Spooka  * rights to redistribute these changes.
28*5f7e80a8Spooka  */
29*5f7e80a8Spooka 
30*5f7e80a8Spooka #ifndef _EMIPS_AUTOCONF_H_
31*5f7e80a8Spooka #define	_EMIPS_AUTOCONF_H_
32*5f7e80a8Spooka 
33*5f7e80a8Spooka /*
34*5f7e80a8Spooka  * Machine-dependent structures for autoconfiguration
35*5f7e80a8Spooka  */
36*5f7e80a8Spooka 
37*5f7e80a8Spooka struct mainbus_attach_args {
38*5f7e80a8Spooka 	const char *ma_name;		/* device name */
39*5f7e80a8Spooka 	int	    ma_slot;		/* CPU "slot" number; only meaningful
40*5f7e80a8Spooka 					   when attaching CPUs */
41*5f7e80a8Spooka };
42*5f7e80a8Spooka 
43*5f7e80a8Spooka void	makebootdev __P((char *));
44*5f7e80a8Spooka 
45*5f7e80a8Spooka #endif	/* !_EMIPS_AUTOCONF_H_ */
46