sysarch.h revision 121600
1121600Smarcel/*
2121600Smarcel * Copyright (c) 2003 Marcel Moolenaar
366458Sdfr * Copyright (c) 1993 The Regents of the University of California.
466458Sdfr * All rights reserved.
566458Sdfr *
666458Sdfr * Redistribution and use in source and binary forms, with or without
766458Sdfr * modification, are permitted provided that the following conditions
866458Sdfr * are met:
9121600Smarcel *
1066458Sdfr * 1. Redistributions of source code must retain the above copyright
1166458Sdfr *    notice, this list of conditions and the following disclaimer.
1266458Sdfr * 2. Redistributions in binary form must reproduce the above copyright
1366458Sdfr *    notice, this list of conditions and the following disclaimer in the
1466458Sdfr *    documentation and/or other materials provided with the distribution.
1566458Sdfr *
1666458Sdfr * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1766458Sdfr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1866458Sdfr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1966458Sdfr * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2066458Sdfr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2166458Sdfr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2266458Sdfr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2366458Sdfr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2466458Sdfr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2566458Sdfr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2666458Sdfr * SUCH DAMAGE.
2766458Sdfr *
2866458Sdfr * $FreeBSD: head/sys/ia64/include/sysarch.h 121600 2003-10-27 05:45:35Z marcel $
2966458Sdfr */
3066458Sdfr
3166458Sdfr#ifndef _MACHINE_SYSARCH_H_
32121600Smarcel#define	_MACHINE_SYSARCH_H_
3366458Sdfr
34121600Smarcel#define	IA64_IORD	0
35121600Smarcel#define	IA64_IOWR	1
36121600Smarcel
37121600Smarcelstruct ia64_iodesc {
38121600Smarcel	int port;
39121600Smarcel	int width;
40121600Smarcel	unsigned long val;
41121600Smarcel};
42121600Smarcel
4366458Sdfr#ifndef _KERNEL
4466458Sdfr#include <sys/cdefs.h>
4566458Sdfr
4666458Sdfr__BEGIN_DECLS
4766458Sdfr__END_DECLS
4866458Sdfr#endif
4966458Sdfr
5066458Sdfr#endif /* !_MACHINE_SYSARCH_H_ */
51