autoconf.h revision 1.1
11.1Shikaru/*	$NetBSD: autoconf.h,v 1.1 2015/04/29 08:32:00 hikaru Exp $	*/
21.1Shikaru
31.1Shikaru/*
41.1Shikaru * Copyright 2002 Wasabi Systems, Inc.
51.1Shikaru * All rights reserved.
61.1Shikaru *
71.1Shikaru * Written by Simon Burge for Wasabi Systems, Inc.
81.1Shikaru *
91.1Shikaru * Redistribution and use in source and binary forms, with or without
101.1Shikaru * modification, are permitted provided that the following conditions
111.1Shikaru * are met:
121.1Shikaru * 1. Redistributions of source code must retain the above copyright
131.1Shikaru *    notice, this list of conditions and the following disclaimer.
141.1Shikaru * 2. Redistributions in binary form must reproduce the above copyright
151.1Shikaru *    notice, this list of conditions and the following disclaimer in the
161.1Shikaru *    documentation and/or other materials provided with the distribution.
171.1Shikaru * 3. All advertising materials mentioning features or use of this software
181.1Shikaru *    must display the following acknowledgement:
191.1Shikaru *      This product includes software developed for the NetBSD Project by
201.1Shikaru *      Wasabi Systems, Inc.
211.1Shikaru * 4. The name of Wasabi Systems, Inc. may not be used to endorse
221.1Shikaru *    or promote products derived from this software without specific prior
231.1Shikaru *    written permission.
241.1Shikaru *
251.1Shikaru * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
261.1Shikaru * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
271.1Shikaru * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
281.1Shikaru * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
291.1Shikaru * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
301.1Shikaru * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
311.1Shikaru * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
321.1Shikaru * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
331.1Shikaru * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
341.1Shikaru * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
351.1Shikaru * POSSIBILITY OF SUCH DAMAGE.
361.1Shikaru */
371.1Shikaru
381.1Shikaru#include <sys/bus.h>
391.1Shikaru
401.1Shikarustruct mainbus_attach_args {
411.1Shikaru	const char	*ma_name;
421.1Shikaru	unsigned long	ma_addr;
431.1Shikaru	int		ma_intr;
441.1Shikaru	bus_space_tag_t	ma_iot;
451.1Shikaru	bus_space_handle_t ma_ioh;
461.1Shikaru};
47