]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - 6/sys/sparc64/fhc/fhcvar.h
Clone Kip's Xen on stable/6 tree so that I can work on improving FreeBSD/amd64
[FreeBSD/FreeBSD.git] / 6 / sys / sparc64 / fhc / fhcvar.h
1 /*-
2  * Copyright (c) 2003 Jake Burkholder.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #ifndef _SPARC64_FHC_FHCVAR_H_
30 #define _SPARC64_FHC_FHCVAR_H_
31
32 #define FHC_CENTRAL             (1<<0)
33
34 struct fhc_softc {
35         phandle_t               sc_node;
36         struct resource *       sc_memres[FHC_NREG];
37         bus_space_handle_t      sc_bh[FHC_NREG];
38         bus_space_tag_t         sc_bt[FHC_NREG];
39         int                     sc_nrange;
40         struct sbus_ranges      *sc_ranges;
41         int                     sc_board;
42         int                     sc_ign;
43         int                     sc_flags;
44         struct cdev             *sc_led_dev;
45 };
46
47 device_probe_t fhc_probe;
48 device_attach_t fhc_attach;
49
50 bus_print_child_t fhc_print_child;
51 bus_probe_nomatch_t fhc_probe_nomatch;
52 bus_setup_intr_t fhc_setup_intr;
53 bus_teardown_intr_t fhc_teardown_intr;
54 bus_alloc_resource_t fhc_alloc_resource;
55 bus_get_resource_list_t fhc_get_resource_list;
56
57 ofw_bus_get_compat_t fhc_get_compat;
58 ofw_bus_get_model_t fhc_get_model;
59 ofw_bus_get_name_t fhc_get_name;
60 ofw_bus_get_node_t fhc_get_node;
61 ofw_bus_get_type_t fhc_get_type;
62
63 #endif /* !_SPARC64_FHC_FHCVAR_H_ */