This source file includes following definitions.
- iop_pci_match
- iop_pci_attach
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 #include <sys/param.h>
45 #include <sys/systm.h>
46 #include <sys/kernel.h>
47 #include <sys/device.h>
48 #include <sys/queue.h>
49 #include <sys/proc.h>
50
51 #include <machine/endian.h>
52 #include <machine/bus.h>
53
54 #include <dev/pci/pcidevs.h>
55 #include <dev/pci/pcivar.h>
56
57 #include <dev/i2o/i2o.h>
58 #include <dev/i2o/iopreg.h>
59 #include <dev/i2o/iopio.h>
60 #include <dev/i2o/iopvar.h>
61
62 #define PCI_INTERFACE_I2O_POLLED 0x00
63 #define PCI_INTERFACE_I2O_INTRDRIVEN 0x01
64
65 void iop_pci_attach(struct device *, struct device *, void *);
66 int iop_pci_match(struct device *, void *, void *);
67
68 struct cfattach iop_pci_ca = {
69 sizeof(struct iop_softc), iop_pci_match, iop_pci_attach
70 };
71
72 int
73 iop_pci_match(parent, match, aux)
74 struct device *parent;
75 void *match;
76 void *aux;
77 {
78 struct pci_attach_args *pa;
79
80 pa = aux;
81
82
83
84
85
86
87 if (PCI_CLASS(pa->pa_class) == PCI_CLASS_I2O &&
88 PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_I2O_STANDARD &&
89 PCI_INTERFACE(pa->pa_class) == PCI_INTERFACE_I2O_INTRDRIVEN)
90 return (1);
91
92 return (0);
93 }
94
95 void
96 iop_pci_attach(struct device *parent, struct device *self, void *aux)
97 {
98 struct pci_attach_args *pa;
99 struct iop_softc *sc;
100 pci_chipset_tag_t pc;
101 pci_intr_handle_t ih;
102 const char *intrstr;
103 pcireg_t reg;
104 int i;
105
106 sc = (struct iop_softc *)self;
107 pa = (struct pci_attach_args *)aux;
108 pc = pa->pa_pc;
109 printf(": ");
110
111
112
113
114
115 for (i = PCI_MAPREG_START; i < PCI_MAPREG_END; i += 4) {
116 reg = pci_conf_read(pc, pa->pa_tag, i);
117 if (PCI_MAPREG_TYPE(reg) == PCI_MAPREG_TYPE_MEM)
118 break;
119 }
120 if (i == PCI_MAPREG_END) {
121 printf("can't find mapping\n");
122 return;
123 }
124
125
126 if (pci_mapreg_map(pa, i, PCI_MAPREG_TYPE_MEM, 0, &sc->sc_iot,
127 &sc->sc_ioh, NULL, NULL, 0x40000)) {
128 printf("%s: can't map register window\n", sc->sc_dv.dv_xname);
129 return;
130 }
131
132 sc->sc_dmat = pa->pa_dmat;
133 sc->sc_bus_memt = pa->pa_memt;
134 sc->sc_bus_iot = pa->pa_iot;
135
136
137 if (pci_intr_map(pa, &ih)) {
138 printf("can't map interrupt\n");
139 return;
140 }
141 intrstr = pci_intr_string(pc, ih);
142 sc->sc_ih = pci_intr_establish(pc, ih, IPL_BIO, iop_intr, sc,
143 sc->sc_dv.dv_xname);
144 if (sc->sc_ih == NULL) {
145 printf("can't establish interrupt");
146 if (intrstr != NULL)
147 printf(" at %s", intrstr);
148 printf("\n");
149 return;
150 }
151
152
153 iop_init(sc, intrstr);
154 }