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
|
/* $OpenBSD: cy_isa.c,v 1.7 2002/03/14 01:26:56 millert Exp $ */
/*
* cy_isa.c
*
* Driver for Cyclades Cyclom-8/16/32 multiport serial cards
* (currently not tested with Cyclom-32 cards)
*
* Timo Rossi, 1996
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <dev/isa/isavar.h>
#include <dev/isa/isareg.h>
#include <dev/ic/cd1400reg.h>
#include <dev/ic/cyreg.h>
static int cy_isa_probe(struct device *, void *, void *);
void cy_isa_attach(struct device *, struct device *, void *);
struct cfattach cy_isa_ca = {
sizeof(struct cy_softc), cy_isa_probe, cy_isa_attach
};
int
cy_isa_probe(parent, match, aux)
struct device *parent;
void *match, *aux;
{
int card = ((struct device *)match)->dv_unit;
struct isa_attach_args *ia = aux;
bus_space_tag_t memt;
bus_space_handle_t memh;
if (ia->ia_irq == IRQUNK) {
printf("cy%d error: interrupt not defined\n", card);
return (0);
}
memt = ia->ia_memt;
if (bus_space_map(memt, ia->ia_maddr, 0x2000, 0, &memh) != 0)
return (0);
if (cy_probe_common(card, memt, memh, CY_BUSTYPE_ISA) == 0) {
bus_space_unmap(memt, memh, 0x2000);
return (0);
}
ia->ia_iosize = 0;
ia->ia_msize = 0x2000;
return (1);
}
void
cy_isa_attach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
cy_attach(parent, self, aux);
}
|