Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / dev / misc / puc / pucvar.h
1 /*      $NetBSD: pucvar.h,v 1.2 1999/02/06 06:29:54 cgd Exp $   */
2 /*      $FreeBSD: src/sys/dev/puc/pucvar.h,v 1.1.2.4 2003/04/04 08:42:17 sobomax Exp $ */
3
4 /*-
5  * Copyright (c) 2002 JF Hay.  All rights reserved.
6  * Copyright (c) 2000 M. Warner Losh.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice unmodified, this list of conditions, and the following
13  *    disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 /*
31  * Copyright (c) 1998, 1999 Christopher G. Demetriou.  All rights reserved.
32  *
33  * Redistribution and use in source and binary forms, with or without
34  * modification, are permitted provided that the following conditions
35  * are met:
36  * 1. Redistributions of source code must retain the above copyright
37  *    notice, this list of conditions and the following disclaimer.
38  * 2. Redistributions in binary form must reproduce the above copyright
39  *    notice, this list of conditions and the following disclaimer in the
40  *    documentation and/or other materials provided with the distribution.
41  * 3. All advertising materials mentioning features or use of this software
42  *    must display the following acknowledgement:
43  *      This product includes software developed by Christopher G. Demetriou
44  *      for the NetBSD Project.
45  * 4. The name of the author may not be used to endorse or promote products
46  *    derived from this software without specific prior written permission
47  *
48  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
49  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
50  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
51  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
52  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
53  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
54  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
55  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
56  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
57  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
58  */
59
60 /*
61  * Exported (or conveniently located) PCI "universal" communications card
62  * software structures.
63  *
64  * Author: Christopher G. Demetriou, May 14, 1998.
65  */
66
67 #define PUC_MAX_PORTS           16
68
69 struct puc_device_description {
70         const char      *name;
71         uint32_t        rval[4];
72         uint32_t        rmask[4];
73         struct {
74                 int     type;
75                 int     bar;
76                 int     offset;
77                 u_int   serialfreq;
78                 u_int   flags;
79         } ports[PUC_MAX_PORTS];
80         uint32_t        ilr_type;
81         uint32_t        ilr_offset[2];
82 };
83
84 #define PUC_REG_VEND            0
85 #define PUC_REG_PROD            1
86 #define PUC_REG_SVEND           2
87 #define PUC_REG_SPROD           3
88
89 #define PUC_PORT_TYPE_NONE      0
90 #define PUC_PORT_TYPE_COM       1
91 #define PUC_PORT_TYPE_LPT       2
92
93 /* Interrupt Latch Register (ILR) types */
94 #define PUC_ILR_TYPE_NONE       0
95 #define PUC_ILR_TYPE_DIGI       1
96
97 #define PUC_PORT_VALID(desc, port) \
98   ((port) < PUC_MAX_PORTS && (desc)->ports[(port)].type != PUC_PORT_TYPE_NONE)
99 #define PUC_PORT_BAR_INDEX(bar) (((bar) - PCIR_MAPS) / 4)
100
101 #define PUC_MAX_BAR             6
102
103 enum puc_device_ivars {
104         PUC_IVAR_FREQ
105 };
106
107 extern const struct puc_device_description puc_devices[];