geodevar.h revision 1.2 1 1.2 kardel /* $NetBSD: geodevar.h,v 1.2 2006/06/07 22:37:59 kardel Exp $ */
2 1.2 kardel
3 1.2 kardel /*-
4 1.2 kardel * Copyright (c) 2006 Frank Kardel All rights reserved.
5 1.2 kardel *
6 1.2 kardel * This code was written by Frank Kardel
7 1.2 kardel *
8 1.2 kardel * Redistribution and use in source and binary forms, with or without
9 1.2 kardel * modification, are permitted provided that the following conditions
10 1.2 kardel * are met:
11 1.2 kardel * 1. Redistributions of source code must retain the above copyright
12 1.2 kardel * notice, this list of conditions and the following disclaimer.
13 1.2 kardel * 2. Redistributions in binary form must reproduce the above copyright
14 1.2 kardel * notice, this list of conditions and the following disclaimer in the
15 1.2 kardel * documentation and/or other materials provided with the distribution.
16 1.2 kardel * 3. All advertising materials mentioning features or use of this software
17 1.2 kardel * must display the following acknowledgement:
18 1.2 kardel * This product includes software developed by David Young.
19 1.2 kardel * 4. The name of David Young may not be used to endorse or promote
20 1.2 kardel * products derived from this software without specific prior
21 1.2 kardel * written permission.
22 1.2 kardel *
23 1.2 kardel * THIS SOFTWARE IS PROVIDED BY DAVID YOUNG ``AS IS'' AND ANY
24 1.2 kardel * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25 1.2 kardel * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
26 1.2 kardel * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DAVID
27 1.2 kardel * YOUNG BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28 1.2 kardel * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
29 1.2 kardel * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 1.2 kardel * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31 1.2 kardel * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32 1.2 kardel * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.2 kardel * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
34 1.2 kardel * OF SUCH DAMAGE.
35 1.2 kardel */
36 1.2 kardel
37 1.2 kardel /*
38 1.2 kardel * Register definitions for the AMD Geode SC1100.
39 1.2 kardel */
40 1.2 kardel
41 1.2 kardel #ifndef _I386_PCI_GEODEVAR_H_
42 1.2 kardel #define _I386_PCI_GEODEVAR_H_
43 1.2 kardel
44 1.2 kardel struct geode_gcb_softc {
45 1.2 kardel struct device sc_dev;
46 1.2 kardel
47 1.2 kardel bus_space_tag_t sc_iot;
48 1.2 kardel bus_space_handle_t sc_ioh;
49 1.2 kardel };
50 1.2 kardel
51 1.2 kardel #endif /* _I386_PCI_GEODEVAR_H_ */
52