]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sparc64/pci/schizovar.h
add -n option to suppress clearing the build tree and add -DNO_CLEAN
[FreeBSD/FreeBSD.git] / sys / sparc64 / pci / schizovar.h
1 /*-
2  * Copyright (c) 2005 by Marius Strobl <marius@FreeBSD.org>.
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  *    without modification, immediately at the beginning of the file.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in
13  *    the documentation and/or other materials provided with the
14  *    distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
20  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30
31 #ifndef _SPARC64_PCI_SCHIZOVAR_H_
32 #define _SPARC64_PCI_SCHIZOVAR_H_
33
34 struct schizo_softc {
35         device_t                        sc_dev;
36
37         struct mtx                      *sc_mtx;
38
39         phandle_t                       sc_node;
40
41         u_int                           sc_mode;
42 #define SCHIZO_MODE_SCZ         1
43 #define SCHIZO_MODE_TOM         2
44 #define SCHIZO_MODE_XMS         3
45
46         u_int                           sc_half;
47         uint32_t                        sc_ign;
48         uint32_t                        sc_ver;
49
50         struct resource                 *sc_mem_res[TOM_NREG];
51         struct resource                 *sc_irq_res[STX_NINTR];
52         void                            *sc_ihand[STX_NINTR];
53
54         struct iommu_state              sc_is;
55
56         struct rman                     sc_pci_mem_rman;
57         struct rman                     sc_pci_io_rman;
58         bus_space_handle_t              sc_pci_bh[STX_NRANGE];
59         bus_space_tag_t                 sc_pci_cfgt;
60         bus_space_tag_t                 sc_pci_iot;
61         bus_space_tag_t                 sc_pci_memt;
62         bus_dma_tag_t                   sc_pci_dmat;
63
64         uint8_t                         sc_pci_secbus;
65
66         struct ofw_bus_iinfo            sc_pci_iinfo;
67
68         SLIST_ENTRY(schizo_softc)       sc_link;
69 };
70
71 #endif /* !_SPARC64_PCI_SCHIZOVAR_H_ */