xref: /netbsd/sys/arch/i386/pci/geodevar.h (revision c3263d7b)
1*c3263d7bSkardel /*	$NetBSD: geodevar.h,v 1.4 2009/10/20 17:29:06 kardel Exp $	*/
209b51ec9Skardel 
309b51ec9Skardel /*-
4*c3263d7bSkardel  * Copyright (c) 2006 The NetBSD Foundation, Inc.
5*c3263d7bSkardel  * All rights reserved.
609b51ec9Skardel  *
709b51ec9Skardel  * Redistribution and use in source and binary forms, with or without
809b51ec9Skardel  * modification, are permitted provided that the following conditions
909b51ec9Skardel  * are met:
1009b51ec9Skardel  * 1. Redistributions of source code must retain the above copyright
1109b51ec9Skardel  *    notice, this list of conditions and the following disclaimer.
1209b51ec9Skardel  * 2. Redistributions in binary form must reproduce the above copyright
1309b51ec9Skardel  *    notice, this list of conditions and the following disclaimer in the
1409b51ec9Skardel  *    documentation and/or other materials provided with the distribution.
1509b51ec9Skardel  *
16*c3263d7bSkardel  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17*c3263d7bSkardel  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18*c3263d7bSkardel  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19*c3263d7bSkardel  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20*c3263d7bSkardel  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21*c3263d7bSkardel  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22*c3263d7bSkardel  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23*c3263d7bSkardel  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24*c3263d7bSkardel  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25*c3263d7bSkardel  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26*c3263d7bSkardel  * POSSIBILITY OF SUCH DAMAGE.
2709b51ec9Skardel  */
2809b51ec9Skardel 
29*c3263d7bSkardel 
3009b51ec9Skardel /*
3109b51ec9Skardel  * Register definitions for the AMD Geode SC1100.
3209b51ec9Skardel  */
3309b51ec9Skardel 
3409b51ec9Skardel #ifndef _I386_PCI_GEODEVAR_H_
3509b51ec9Skardel #define	_I386_PCI_GEODEVAR_H_
3609b51ec9Skardel 
3709b51ec9Skardel struct geode_gcb_softc {
3809b51ec9Skardel 	bus_space_tag_t		sc_iot;
3909b51ec9Skardel 	bus_space_handle_t	sc_ioh;
4009b51ec9Skardel };
4109b51ec9Skardel 
4209b51ec9Skardel #endif /* _I386_PCI_GEODEVAR_H_ */
43