1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/* $OpenBSD: pucvar.h,v 1.16 2018/05/02 19:11:01 phessler Exp $ */
/* $NetBSD: pucvar.h,v 1.2 1999/02/06 06:29:54 cgd Exp $ */
/*
* Copyright (c) 1998, 1999 Christopher G. Demetriou. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Christopher G. Demetriou
* for the NetBSD Project.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Exported (or conveniently located) PCI "universal" communications card
* software structures.
*
* Author: Christopher G. Demetriou, May 14, 1998.
*/
#include <dev/ic/comreg.h>
#define PUC_MAX_PORTS 16
struct puc_device_description {
u_int16_t rval[4];
u_int16_t rmask[4];
struct {
u_char type;
u_char bar;
u_short offset;
} ports[PUC_MAX_PORTS];
};
struct puc_port_type {
enum {
PUC_PORT_LPT = 1,
PUC_PORT_COM,
PUC_PORT_COM_MUL4,
PUC_PORT_COM_MUL8,
PUC_PORT_COM_MUL10,
PUC_PORT_COM_MUL128,
PUC_PORT_COM_125MHZ,
} type;
u_int32_t freq;
};
static const struct puc_port_type puc_port_types[] = {
{ PUC_PORT_LPT, 0 },
{ PUC_PORT_COM, COM_FREQ },
{ PUC_PORT_COM_MUL4, COM_FREQ * 4 },
{ PUC_PORT_COM_MUL8, COM_FREQ * 8 },
{ PUC_PORT_COM_MUL10, COM_FREQ * 10 },
{ PUC_PORT_COM_MUL128, COM_FREQ * 128 },
};
#define PUC_IS_LPT(type) ((type) == PUC_PORT_LPT)
#define PUC_IS_COM(type) ((type) != PUC_PORT_LPT)
#define PUC_PORT_BAR_INDEX(bar) (((bar) - PCI_MAPREG_START) / 4)
struct puc_attach_args {
int port;
int type;
void *puc;
bus_addr_t a;
bus_space_tag_t t;
bus_space_handle_t h;
const char *(*intr_string)(struct puc_attach_args *);
void *(*intr_establish)(struct puc_attach_args *, int, int (*)(void *),
void *, char *);
};
extern const struct puc_device_description puc_devs[];
extern int puc_ndevs;
#define PUC_NBARS 6
struct puc_softc {
struct device sc_dev;
/* static configuration data */
const struct puc_device_description *sc_desc;
/* card-global dynamic data */
struct {
int mapped;
bus_addr_t a;
bus_size_t s;
bus_space_tag_t t;
bus_space_handle_t h;
} sc_bar_mappings[PUC_NBARS];
/* per-port dynamic data */
struct {
struct device *dev;
/* filled in by port attachments */
void *intrhand;
} sc_ports[PUC_MAX_PORTS];
};
const struct puc_device_description *
puc_find_description(u_int16_t, u_int16_t, u_int16_t, u_int16_t);
void puc_print_ports(const struct puc_device_description *);
void puc_common_attach(struct puc_softc *, struct puc_attach_args *);
int puc_print(void *, const char *);
int puc_submatch(struct device *, void *, void *);
|