1292407Sbr/*-
2292407Sbr * Copyright 1998 Massachusetts Institute of Technology
3292407Sbr *
4292407Sbr * Permission to use, copy, modify, and distribute this software and
5292407Sbr * its documentation for any purpose and without fee is hereby
6292407Sbr * granted, provided that both the above copyright notice and this
7292407Sbr * permission notice appear in all copies, that both the above
8292407Sbr * copyright notice and this permission notice appear in all
9292407Sbr * supporting documentation, and that the name of M.I.T. not be used
10292407Sbr * in advertising or publicity pertaining to distribution of the
11292407Sbr * software without specific, written prior permission.  M.I.T. makes
12292407Sbr * no representations about the suitability of this software for any
13292407Sbr * purpose.  It is provided "as is" without express or implied
14292407Sbr * warranty.
15292407Sbr *
16292407Sbr * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
17292407Sbr * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
18292407Sbr * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19292407Sbr * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
20292407Sbr * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21292407Sbr * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22292407Sbr * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23292407Sbr * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24292407Sbr * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25292407Sbr * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26292407Sbr * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27292407Sbr * SUCH DAMAGE.
28292407Sbr *
29292407Sbr * $FreeBSD$
30292407Sbr */
31292407Sbr
32292407Sbr#ifndef _MACHINE_RESOURCE_H_
33292407Sbr#define	_MACHINE_RESOURCE_H_	1
34292407Sbr
35292407Sbr/*
36292407Sbr * Definitions of resource types for Intel Architecture machines
37292407Sbr * with support for legacy ISA devices and drivers.
38292407Sbr */
39292407Sbr
40292407Sbr#define	SYS_RES_IRQ	1	/* interrupt lines */
41292407Sbr#define	SYS_RES_DRQ	2	/* isa dma lines */
42292407Sbr#define	SYS_RES_MEMORY	3	/* i/o memory */
43292407Sbr#define	SYS_RES_IOPORT	4	/* i/o ports */
44292407Sbr#define	SYS_RES_GPIO	5	/* general purpose i/o */
45292407Sbr
46292407Sbr#endif /* !_MACHINE_RESOURCE_H_ */
47