intiovar.h revision 1.1
11.1Sdbj/*	$NetBSD: intiovar.h,v 1.1 1998/06/09 07:53:05 dbj Exp $	*/
21.1Sdbj
31.1Sdbj/*-
41.1Sdbj * Copyright (c) 1996 The NetBSD Foundation, Inc.
51.1Sdbj * All rights reserved.
61.1Sdbj *
71.1Sdbj * This code is derived from software contributed to The NetBSD Foundation
81.1Sdbj * by Jason R. Thorpe.
91.1Sdbj *
101.1Sdbj * Redistribution and use in source and binary forms, with or without
111.1Sdbj * modification, are permitted provided that the following conditions
121.1Sdbj * are met:
131.1Sdbj * 1. Redistributions of source code must retain the above copyright
141.1Sdbj *    notice, this list of conditions and the following disclaimer.
151.1Sdbj * 2. Redistributions in binary form must reproduce the above copyright
161.1Sdbj *    notice, this list of conditions and the following disclaimer in the
171.1Sdbj *    documentation and/or other materials provided with the distribution.
181.1Sdbj * 3. All advertising materials mentioning features or use of this software
191.1Sdbj *    must display the following acknowledgement:
201.1Sdbj *        This product includes software developed by the NetBSD
211.1Sdbj *        Foundation, Inc. and its contributors.
221.1Sdbj * 4. Neither the name of The NetBSD Foundation nor the names of its
231.1Sdbj *    contributors may be used to endorse or promote products derived
241.1Sdbj *    from this software without specific prior written permission.
251.1Sdbj *
261.1Sdbj * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
271.1Sdbj * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
281.1Sdbj * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
291.1Sdbj * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
301.1Sdbj * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
311.1Sdbj * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
321.1Sdbj * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
331.1Sdbj * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
341.1Sdbj * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
351.1Sdbj * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
361.1Sdbj * POSSIBILITY OF SUCH DAMAGE.
371.1Sdbj */
381.1Sdbj
391.1Sdbj/*
401.1Sdbj * Autoconfiguration definitions and prototypes for the next68k
411.1Sdbj * internal i/o space.
421.1Sdbj */
431.1Sdbj
441.1Sdbj/*
451.1Sdbj * Arguments used to attach a device to the internal i/o space.
461.1Sdbj */
471.1Sdbjstruct intio_attach_args {
481.1Sdbj	caddr_t	ia_addr;		/* physical address */
491.1Sdbj};
50