166458Sdfr/* $FreeBSD$ */
2139790Simp/*-
366458Sdfr * Copyright 1998 Massachusetts Institute of Technology
466458Sdfr *
566458Sdfr * Permission to use, copy, modify, and distribute this software and
666458Sdfr * its documentation for any purpose and without fee is hereby
766458Sdfr * granted, provided that both the above copyright notice and this
866458Sdfr * permission notice appear in all copies, that both the above
966458Sdfr * copyright notice and this permission notice appear in all
1066458Sdfr * supporting documentation, and that the name of M.I.T. not be used
1166458Sdfr * in advertising or publicity pertaining to distribution of the
1266458Sdfr * software without specific, written prior permission.  M.I.T. makes
1366458Sdfr * no representations about the suitability of this software for any
1466458Sdfr * purpose.  It is provided "as is" without express or implied
1566458Sdfr * warranty.
1666458Sdfr *
1766458Sdfr * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
1866458Sdfr * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
1966458Sdfr * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
2066458Sdfr * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
2166458Sdfr * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2266458Sdfr * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2366458Sdfr * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
2466458Sdfr * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
2566458Sdfr * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2666458Sdfr * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
2766458Sdfr * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2866458Sdfr * SUCH DAMAGE.
2966458Sdfr */
3066458Sdfr
3166458Sdfr#ifndef _MACHINE_RESOURCE_H_
3266458Sdfr#define	_MACHINE_RESOURCE_H_	1
3366458Sdfr
3466458Sdfr/*
3566458Sdfr * Definitions of resource types for Intel Architecture machines
3666458Sdfr * with support for legacy ISA devices and drivers.
3766458Sdfr */
3866458Sdfr
3966458Sdfr#define	SYS_RES_IRQ	1	/* interrupt lines */
4066458Sdfr#define	SYS_RES_DRQ	2	/* isa dma lines */
4166458Sdfr#define	SYS_RES_MEMORY	3	/* i/o memory */
4266458Sdfr#define	SYS_RES_IOPORT	4	/* i/o ports */
4366458Sdfr
4466458Sdfr#endif /* !_MACHINE_RESOURCE_H_ */
45