pciide.c revision 1.44.2.5 1 1.44.2.5 bouyer /* $NetBSD: pciide.c,v 1.44.2.5 2001/01/15 09:27:44 bouyer Exp $ */
2 1.41 bouyer
3 1.41 bouyer
4 1.41 bouyer /*
5 1.41 bouyer * Copyright (c) 1999 Manuel Bouyer.
6 1.41 bouyer *
7 1.41 bouyer * Redistribution and use in source and binary forms, with or without
8 1.41 bouyer * modification, are permitted provided that the following conditions
9 1.41 bouyer * are met:
10 1.41 bouyer * 1. Redistributions of source code must retain the above copyright
11 1.41 bouyer * notice, this list of conditions and the following disclaimer.
12 1.41 bouyer * 2. Redistributions in binary form must reproduce the above copyright
13 1.41 bouyer * notice, this list of conditions and the following disclaimer in the
14 1.41 bouyer * documentation and/or other materials provided with the distribution.
15 1.41 bouyer * 3. All advertising materials mentioning features or use of this software
16 1.41 bouyer * must display the following acknowledgement:
17 1.41 bouyer * This product includes software developed by the University of
18 1.41 bouyer * California, Berkeley and its contributors.
19 1.41 bouyer * 4. Neither the name of the University nor the names of its contributors
20 1.41 bouyer * may be used to endorse or promote products derived from this software
21 1.41 bouyer * without specific prior written permission.
22 1.41 bouyer *
23 1.44.2.1 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.44.2.1 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.44.2.1 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.44.2.1 bouyer * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.44.2.1 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.44.2.1 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.44.2.1 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.44.2.1 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.44.2.1 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.44.2.1 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.41 bouyer *
34 1.41 bouyer */
35 1.41 bouyer
36 1.1 cgd
37 1.1 cgd /*
38 1.1 cgd * Copyright (c) 1996, 1998 Christopher G. Demetriou. All rights reserved.
39 1.1 cgd *
40 1.1 cgd * Redistribution and use in source and binary forms, with or without
41 1.1 cgd * modification, are permitted provided that the following conditions
42 1.1 cgd * are met:
43 1.1 cgd * 1. Redistributions of source code must retain the above copyright
44 1.1 cgd * notice, this list of conditions and the following disclaimer.
45 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
46 1.1 cgd * notice, this list of conditions and the following disclaimer in the
47 1.1 cgd * documentation and/or other materials provided with the distribution.
48 1.1 cgd * 3. All advertising materials mentioning features or use of this software
49 1.1 cgd * must display the following acknowledgement:
50 1.1 cgd * This product includes software developed by Christopher G. Demetriou
51 1.1 cgd * for the NetBSD Project.
52 1.1 cgd * 4. The name of the author may not be used to endorse or promote products
53 1.1 cgd * derived from this software without specific prior written permission
54 1.1 cgd *
55 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
56 1.1 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
57 1.1 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
58 1.1 cgd * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
59 1.1 cgd * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
60 1.1 cgd * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 1.1 cgd * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 1.1 cgd * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 1.1 cgd * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
64 1.1 cgd * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 1.1 cgd */
66 1.1 cgd
67 1.1 cgd /*
68 1.1 cgd * PCI IDE controller driver.
69 1.1 cgd *
70 1.1 cgd * Author: Christopher G. Demetriou, March 2, 1998 (derived from NetBSD
71 1.1 cgd * sys/dev/pci/ppb.c, revision 1.16).
72 1.1 cgd *
73 1.2 cgd * See "PCI IDE Controller Specification, Revision 1.0 3/4/94" and
74 1.2 cgd * "Programming Interface for Bus Master IDE Controller, Revision 1.0
75 1.2 cgd * 5/16/94" from the PCI SIG.
76 1.1 cgd *
77 1.1 cgd */
78 1.1 cgd
79 1.36 ross #ifndef WDCDEBUG
80 1.26 bouyer #define WDCDEBUG
81 1.36 ross #endif
82 1.26 bouyer
83 1.9 bouyer #define DEBUG_DMA 0x01
84 1.9 bouyer #define DEBUG_XFERS 0x02
85 1.9 bouyer #define DEBUG_FUNCS 0x08
86 1.9 bouyer #define DEBUG_PROBE 0x10
87 1.9 bouyer #ifdef WDCDEBUG
88 1.26 bouyer int wdcdebug_pciide_mask = 0;
89 1.9 bouyer #define WDCDEBUG_PRINT(args, level) \
90 1.9 bouyer if (wdcdebug_pciide_mask & (level)) printf args
91 1.9 bouyer #else
92 1.9 bouyer #define WDCDEBUG_PRINT(args, level)
93 1.9 bouyer #endif
94 1.1 cgd #include <sys/param.h>
95 1.1 cgd #include <sys/systm.h>
96 1.1 cgd #include <sys/device.h>
97 1.9 bouyer #include <sys/malloc.h>
98 1.9 bouyer
99 1.44.2.2 bouyer #include <uvm/uvm_extern.h>
100 1.44.2.2 bouyer
101 1.44.2.1 bouyer #include <machine/endian.h>
102 1.1 cgd
103 1.1 cgd #include <dev/pci/pcireg.h>
104 1.1 cgd #include <dev/pci/pcivar.h>
105 1.9 bouyer #include <dev/pci/pcidevs.h>
106 1.1 cgd #include <dev/pci/pciidereg.h>
107 1.1 cgd #include <dev/pci/pciidevar.h>
108 1.9 bouyer #include <dev/pci/pciide_piix_reg.h>
109 1.44.2.1 bouyer #include <dev/pci/pciide_amd_reg.h>
110 1.9 bouyer #include <dev/pci/pciide_apollo_reg.h>
111 1.9 bouyer #include <dev/pci/pciide_cmd_reg.h>
112 1.18 drochner #include <dev/pci/pciide_cy693_reg.h>
113 1.18 drochner #include <dev/pci/pciide_sis_reg.h>
114 1.30 bouyer #include <dev/pci/pciide_acer_reg.h>
115 1.41 bouyer #include <dev/pci/pciide_pdc202xx_reg.h>
116 1.44.2.1 bouyer #include <dev/pci/pciide_opti_reg.h>
117 1.44.2.1 bouyer #include <dev/pci/pciide_hpt_reg.h>
118 1.44.2.1 bouyer #include <dev/pci/cy82c693var.h>
119 1.44.2.1 bouyer
120 1.44.2.1 bouyer #include "opt_pciide.h"
121 1.35 thorpej
122 1.14 bouyer /* inlines for reading/writing 8-bit PCI registers */
123 1.14 bouyer static __inline u_int8_t pciide_pci_read __P((pci_chipset_tag_t, pcitag_t,
124 1.39 mrg int));
125 1.39 mrg static __inline void pciide_pci_write __P((pci_chipset_tag_t, pcitag_t,
126 1.39 mrg int, u_int8_t));
127 1.39 mrg
128 1.14 bouyer static __inline u_int8_t
129 1.14 bouyer pciide_pci_read(pc, pa, reg)
130 1.14 bouyer pci_chipset_tag_t pc;
131 1.14 bouyer pcitag_t pa;
132 1.14 bouyer int reg;
133 1.14 bouyer {
134 1.39 mrg
135 1.39 mrg return (pci_conf_read(pc, pa, (reg & ~0x03)) >>
136 1.39 mrg ((reg & 0x03) * 8) & 0xff);
137 1.14 bouyer }
138 1.14 bouyer
139 1.14 bouyer static __inline void
140 1.14 bouyer pciide_pci_write(pc, pa, reg, val)
141 1.14 bouyer pci_chipset_tag_t pc;
142 1.14 bouyer pcitag_t pa;
143 1.14 bouyer int reg;
144 1.14 bouyer u_int8_t val;
145 1.14 bouyer {
146 1.14 bouyer pcireg_t pcival;
147 1.14 bouyer
148 1.14 bouyer pcival = pci_conf_read(pc, pa, (reg & ~0x03));
149 1.21 bouyer pcival &= ~(0xff << ((reg & 0x03) * 8));
150 1.21 bouyer pcival |= (val << ((reg & 0x03) * 8));
151 1.14 bouyer pci_conf_write(pc, pa, (reg & ~0x03), pcival);
152 1.14 bouyer }
153 1.14 bouyer
154 1.41 bouyer void default_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
155 1.9 bouyer
156 1.41 bouyer void piix_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
157 1.28 bouyer void piix_setup_channel __P((struct channel_softc*));
158 1.28 bouyer void piix3_4_setup_channel __P((struct channel_softc*));
159 1.9 bouyer static u_int32_t piix_setup_idetim_timings __P((u_int8_t, u_int8_t, u_int8_t));
160 1.9 bouyer static u_int32_t piix_setup_idetim_drvs __P((struct ata_drive_datas*));
161 1.9 bouyer static u_int32_t piix_setup_sidetim_timings __P((u_int8_t, u_int8_t, u_int8_t));
162 1.9 bouyer
163 1.44.2.1 bouyer void amd756_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
164 1.44.2.1 bouyer void amd756_setup_channel __P((struct channel_softc*));
165 1.44.2.1 bouyer
166 1.41 bouyer void apollo_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
167 1.28 bouyer void apollo_setup_channel __P((struct channel_softc*));
168 1.9 bouyer
169 1.41 bouyer void cmd_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
170 1.44.2.1 bouyer void cmd0643_9_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
171 1.44.2.1 bouyer void cmd0643_9_setup_channel __P((struct channel_softc*));
172 1.41 bouyer void cmd_channel_map __P((struct pci_attach_args *,
173 1.41 bouyer struct pciide_softc *, int));
174 1.41 bouyer int cmd_pci_intr __P((void *));
175 1.44.2.1 bouyer void cmd646_9_irqack __P((struct channel_softc *));
176 1.18 drochner
177 1.41 bouyer void cy693_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
178 1.28 bouyer void cy693_setup_channel __P((struct channel_softc*));
179 1.18 drochner
180 1.41 bouyer void sis_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
181 1.28 bouyer void sis_setup_channel __P((struct channel_softc*));
182 1.9 bouyer
183 1.41 bouyer void acer_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
184 1.30 bouyer void acer_setup_channel __P((struct channel_softc*));
185 1.41 bouyer int acer_pci_intr __P((void *));
186 1.41 bouyer
187 1.41 bouyer void pdc202xx_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
188 1.41 bouyer void pdc202xx_setup_channel __P((struct channel_softc*));
189 1.41 bouyer int pdc202xx_pci_intr __P((void *));
190 1.30 bouyer
191 1.44.2.1 bouyer void opti_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
192 1.44.2.1 bouyer void opti_setup_channel __P((struct channel_softc*));
193 1.44.2.1 bouyer
194 1.44.2.1 bouyer void hpt_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
195 1.44.2.1 bouyer void hpt_setup_channel __P((struct channel_softc*));
196 1.44.2.1 bouyer int hpt_pci_intr __P((void *));
197 1.44.2.1 bouyer
198 1.28 bouyer void pciide_channel_dma_setup __P((struct pciide_channel *));
199 1.9 bouyer int pciide_dma_table_setup __P((struct pciide_softc*, int, int));
200 1.9 bouyer int pciide_dma_init __P((void*, int, int, void *, size_t, int));
201 1.44.2.1 bouyer void pciide_dma_start __P((void*, int, int));
202 1.9 bouyer int pciide_dma_finish __P((void*, int, int, int));
203 1.44.2.1 bouyer void pciide_irqack __P((struct channel_softc *));
204 1.28 bouyer void pciide_print_modes __P((struct pciide_channel *));
205 1.9 bouyer
206 1.9 bouyer struct pciide_product_desc {
207 1.39 mrg u_int32_t ide_product;
208 1.39 mrg int ide_flags;
209 1.39 mrg const char *ide_name;
210 1.41 bouyer /* map and setup chip, probe drives */
211 1.41 bouyer void (*chip_map) __P((struct pciide_softc*, struct pci_attach_args*));
212 1.9 bouyer };
213 1.9 bouyer
214 1.9 bouyer /* Flags for ide_flags */
215 1.44.2.2 bouyer #define IDE_PCI_CLASS_OVERRIDE 0x0001 /* accept even if class != pciide */
216 1.44.2.2 bouyer #define IDE_16BIT_IOSPACE 0x0002 /* I/O space BARS ignore upper word */
217 1.9 bouyer
218 1.9 bouyer /* Default product description for devices not known from this controller */
219 1.9 bouyer const struct pciide_product_desc default_product_desc = {
220 1.39 mrg 0,
221 1.39 mrg 0,
222 1.39 mrg "Generic PCI IDE controller",
223 1.41 bouyer default_chip_map,
224 1.9 bouyer };
225 1.1 cgd
226 1.9 bouyer const struct pciide_product_desc pciide_intel_products[] = {
227 1.39 mrg { PCI_PRODUCT_INTEL_82092AA,
228 1.39 mrg 0,
229 1.39 mrg "Intel 82092AA IDE controller",
230 1.41 bouyer default_chip_map,
231 1.39 mrg },
232 1.39 mrg { PCI_PRODUCT_INTEL_82371FB_IDE,
233 1.39 mrg 0,
234 1.39 mrg "Intel 82371FB IDE controller (PIIX)",
235 1.41 bouyer piix_chip_map,
236 1.39 mrg },
237 1.39 mrg { PCI_PRODUCT_INTEL_82371SB_IDE,
238 1.39 mrg 0,
239 1.39 mrg "Intel 82371SB IDE Interface (PIIX3)",
240 1.41 bouyer piix_chip_map,
241 1.39 mrg },
242 1.39 mrg { PCI_PRODUCT_INTEL_82371AB_IDE,
243 1.39 mrg 0,
244 1.39 mrg "Intel 82371AB IDE controller (PIIX4)",
245 1.41 bouyer piix_chip_map,
246 1.39 mrg },
247 1.44.2.1 bouyer { PCI_PRODUCT_INTEL_82440MX_IDE,
248 1.44.2.1 bouyer 0,
249 1.44.2.1 bouyer "Intel 82440MX IDE controller",
250 1.44.2.1 bouyer piix_chip_map
251 1.44.2.1 bouyer },
252 1.42 bouyer { PCI_PRODUCT_INTEL_82801AA_IDE,
253 1.42 bouyer 0,
254 1.42 bouyer "Intel 82801AA IDE Controller (ICH)",
255 1.42 bouyer piix_chip_map,
256 1.42 bouyer },
257 1.42 bouyer { PCI_PRODUCT_INTEL_82801AB_IDE,
258 1.42 bouyer 0,
259 1.42 bouyer "Intel 82801AB IDE Controller (ICH0)",
260 1.42 bouyer piix_chip_map,
261 1.42 bouyer },
262 1.44.2.2 bouyer { PCI_PRODUCT_INTEL_82801BA_IDE,
263 1.44.2.2 bouyer 0,
264 1.44.2.2 bouyer "Intel 82801BA IDE Controller (ICH2)",
265 1.44.2.2 bouyer piix_chip_map,
266 1.44.2.2 bouyer },
267 1.39 mrg { 0,
268 1.39 mrg 0,
269 1.39 mrg NULL,
270 1.39 mrg }
271 1.9 bouyer };
272 1.39 mrg
273 1.44.2.1 bouyer const struct pciide_product_desc pciide_amd_products[] = {
274 1.44.2.1 bouyer { PCI_PRODUCT_AMD_PBC756_IDE,
275 1.44.2.1 bouyer 0,
276 1.44.2.1 bouyer "Advanced Micro Devices AMD756 IDE Controller",
277 1.44.2.1 bouyer amd756_chip_map
278 1.44.2.1 bouyer },
279 1.44.2.1 bouyer { 0,
280 1.44.2.1 bouyer 0,
281 1.44.2.1 bouyer NULL,
282 1.44.2.1 bouyer }
283 1.44.2.1 bouyer };
284 1.44.2.1 bouyer
285 1.9 bouyer const struct pciide_product_desc pciide_cmd_products[] = {
286 1.39 mrg { PCI_PRODUCT_CMDTECH_640,
287 1.41 bouyer 0,
288 1.39 mrg "CMD Technology PCI0640",
289 1.41 bouyer cmd_chip_map
290 1.39 mrg },
291 1.39 mrg { PCI_PRODUCT_CMDTECH_643,
292 1.41 bouyer 0,
293 1.39 mrg "CMD Technology PCI0643",
294 1.44.2.1 bouyer cmd0643_9_chip_map,
295 1.39 mrg },
296 1.39 mrg { PCI_PRODUCT_CMDTECH_646,
297 1.41 bouyer 0,
298 1.39 mrg "CMD Technology PCI0646",
299 1.44.2.1 bouyer cmd0643_9_chip_map,
300 1.44.2.1 bouyer },
301 1.44.2.1 bouyer { PCI_PRODUCT_CMDTECH_648,
302 1.44.2.1 bouyer IDE_PCI_CLASS_OVERRIDE,
303 1.44.2.1 bouyer "CMD Technology PCI0648",
304 1.44.2.1 bouyer cmd0643_9_chip_map,
305 1.44.2.1 bouyer },
306 1.44.2.1 bouyer { PCI_PRODUCT_CMDTECH_649,
307 1.44.2.1 bouyer IDE_PCI_CLASS_OVERRIDE,
308 1.44.2.1 bouyer "CMD Technology PCI0649",
309 1.44.2.1 bouyer cmd0643_9_chip_map,
310 1.39 mrg },
311 1.39 mrg { 0,
312 1.39 mrg 0,
313 1.39 mrg NULL,
314 1.39 mrg }
315 1.9 bouyer };
316 1.9 bouyer
317 1.9 bouyer const struct pciide_product_desc pciide_via_products[] = {
318 1.39 mrg { PCI_PRODUCT_VIATECH_VT82C586_IDE,
319 1.39 mrg 0,
320 1.44.2.1 bouyer "VIA Tech VT82C586 IDE Controller",
321 1.41 bouyer apollo_chip_map,
322 1.39 mrg },
323 1.39 mrg { PCI_PRODUCT_VIATECH_VT82C586A_IDE,
324 1.39 mrg 0,
325 1.44.2.1 bouyer "VIA Tech VT82C586A IDE Controller",
326 1.41 bouyer apollo_chip_map,
327 1.39 mrg },
328 1.39 mrg { 0,
329 1.39 mrg 0,
330 1.39 mrg NULL,
331 1.39 mrg }
332 1.18 drochner };
333 1.18 drochner
334 1.18 drochner const struct pciide_product_desc pciide_cypress_products[] = {
335 1.39 mrg { PCI_PRODUCT_CONTAQ_82C693,
336 1.44.2.2 bouyer IDE_16BIT_IOSPACE,
337 1.44.2.1 bouyer "Cypress 82C693 IDE Controller",
338 1.41 bouyer cy693_chip_map,
339 1.39 mrg },
340 1.39 mrg { 0,
341 1.39 mrg 0,
342 1.39 mrg NULL,
343 1.39 mrg }
344 1.18 drochner };
345 1.18 drochner
346 1.18 drochner const struct pciide_product_desc pciide_sis_products[] = {
347 1.39 mrg { PCI_PRODUCT_SIS_5597_IDE,
348 1.39 mrg 0,
349 1.39 mrg "Silicon Integrated System 5597/5598 IDE controller",
350 1.41 bouyer sis_chip_map,
351 1.39 mrg },
352 1.39 mrg { 0,
353 1.39 mrg 0,
354 1.39 mrg NULL,
355 1.39 mrg }
356 1.9 bouyer };
357 1.9 bouyer
358 1.30 bouyer const struct pciide_product_desc pciide_acer_products[] = {
359 1.39 mrg { PCI_PRODUCT_ALI_M5229,
360 1.39 mrg 0,
361 1.39 mrg "Acer Labs M5229 UDMA IDE Controller",
362 1.41 bouyer acer_chip_map,
363 1.39 mrg },
364 1.39 mrg { 0,
365 1.39 mrg 0,
366 1.41 bouyer NULL,
367 1.41 bouyer }
368 1.41 bouyer };
369 1.41 bouyer
370 1.41 bouyer const struct pciide_product_desc pciide_promise_products[] = {
371 1.41 bouyer { PCI_PRODUCT_PROMISE_ULTRA33,
372 1.44.2.4 bouyer IDE_PCI_CLASS_OVERRIDE,
373 1.41 bouyer "Promise Ultra33/ATA Bus Master IDE Accelerator",
374 1.41 bouyer pdc202xx_chip_map,
375 1.41 bouyer },
376 1.41 bouyer { PCI_PRODUCT_PROMISE_ULTRA66,
377 1.44.2.4 bouyer IDE_PCI_CLASS_OVERRIDE,
378 1.41 bouyer "Promise Ultra66/ATA Bus Master IDE Accelerator",
379 1.41 bouyer pdc202xx_chip_map,
380 1.41 bouyer },
381 1.44.2.1 bouyer { PCI_PRODUCT_PROMISE_ULTRA100,
382 1.44.2.4 bouyer IDE_PCI_CLASS_OVERRIDE,
383 1.44.2.1 bouyer "Promise Ultra100/ATA Bus Master IDE Accelerator",
384 1.44.2.1 bouyer pdc202xx_chip_map,
385 1.44.2.1 bouyer },
386 1.44.2.1 bouyer { PCI_PRODUCT_PROMISE_ULTRA100X,
387 1.44.2.4 bouyer IDE_PCI_CLASS_OVERRIDE,
388 1.44.2.1 bouyer "Promise Ultra100/ATA Bus Master IDE Accelerator",
389 1.44.2.1 bouyer pdc202xx_chip_map,
390 1.44.2.1 bouyer },
391 1.44.2.1 bouyer { 0,
392 1.44.2.1 bouyer 0,
393 1.44.2.1 bouyer NULL,
394 1.44.2.1 bouyer }
395 1.44.2.1 bouyer };
396 1.44.2.1 bouyer
397 1.44.2.1 bouyer const struct pciide_product_desc pciide_opti_products[] = {
398 1.44.2.1 bouyer { PCI_PRODUCT_OPTI_82C621,
399 1.44.2.1 bouyer 0,
400 1.44.2.1 bouyer "OPTi 82c621 PCI IDE controller",
401 1.44.2.1 bouyer opti_chip_map,
402 1.44.2.1 bouyer },
403 1.44.2.1 bouyer { PCI_PRODUCT_OPTI_82C568,
404 1.44.2.1 bouyer 0,
405 1.44.2.1 bouyer "OPTi 82c568 (82c621 compatible) PCI IDE controller",
406 1.44.2.1 bouyer opti_chip_map,
407 1.44.2.1 bouyer },
408 1.44.2.1 bouyer { PCI_PRODUCT_OPTI_82D568,
409 1.44.2.1 bouyer 0,
410 1.44.2.1 bouyer "OPTi 82d568 (82c621 compatible) PCI IDE controller",
411 1.44.2.1 bouyer opti_chip_map,
412 1.44.2.1 bouyer },
413 1.44.2.1 bouyer { 0,
414 1.44.2.1 bouyer 0,
415 1.44.2.1 bouyer NULL,
416 1.44.2.1 bouyer }
417 1.44.2.1 bouyer };
418 1.44.2.1 bouyer
419 1.44.2.1 bouyer const struct pciide_product_desc pciide_triones_products[] = {
420 1.44.2.1 bouyer { PCI_PRODUCT_TRIONES_HPT366,
421 1.44.2.1 bouyer IDE_PCI_CLASS_OVERRIDE,
422 1.44.2.1 bouyer "Triones/Highpoint HPT366/370 IDE Controller",
423 1.44.2.1 bouyer hpt_chip_map,
424 1.44.2.1 bouyer },
425 1.41 bouyer { 0,
426 1.39 mrg 0,
427 1.39 mrg NULL,
428 1.39 mrg }
429 1.30 bouyer };
430 1.30 bouyer
431 1.9 bouyer struct pciide_vendor_desc {
432 1.39 mrg u_int32_t ide_vendor;
433 1.39 mrg const struct pciide_product_desc *ide_products;
434 1.9 bouyer };
435 1.9 bouyer
436 1.9 bouyer const struct pciide_vendor_desc pciide_vendors[] = {
437 1.39 mrg { PCI_VENDOR_INTEL, pciide_intel_products },
438 1.39 mrg { PCI_VENDOR_CMDTECH, pciide_cmd_products },
439 1.39 mrg { PCI_VENDOR_VIATECH, pciide_via_products },
440 1.39 mrg { PCI_VENDOR_CONTAQ, pciide_cypress_products },
441 1.39 mrg { PCI_VENDOR_SIS, pciide_sis_products },
442 1.39 mrg { PCI_VENDOR_ALI, pciide_acer_products },
443 1.41 bouyer { PCI_VENDOR_PROMISE, pciide_promise_products },
444 1.44.2.1 bouyer { PCI_VENDOR_AMD, pciide_amd_products },
445 1.44.2.1 bouyer { PCI_VENDOR_OPTI, pciide_opti_products },
446 1.44.2.1 bouyer { PCI_VENDOR_TRIONES, pciide_triones_products },
447 1.39 mrg { 0, NULL }
448 1.1 cgd };
449 1.1 cgd
450 1.13 bouyer /* options passed via the 'flags' config keyword */
451 1.13 bouyer #define PCIIDE_OPTIONS_DMA 0x01
452 1.13 bouyer
453 1.1 cgd int pciide_match __P((struct device *, struct cfdata *, void *));
454 1.1 cgd void pciide_attach __P((struct device *, struct device *, void *));
455 1.1 cgd
456 1.1 cgd struct cfattach pciide_ca = {
457 1.1 cgd sizeof(struct pciide_softc), pciide_match, pciide_attach
458 1.1 cgd };
459 1.41 bouyer int pciide_chipen __P((struct pciide_softc *, struct pci_attach_args *));
460 1.28 bouyer int pciide_mapregs_compat __P(( struct pci_attach_args *,
461 1.28 bouyer struct pciide_channel *, int, bus_size_t *, bus_size_t*));
462 1.28 bouyer int pciide_mapregs_native __P((struct pci_attach_args *,
463 1.41 bouyer struct pciide_channel *, bus_size_t *, bus_size_t *,
464 1.41 bouyer int (*pci_intr) __P((void *))));
465 1.41 bouyer void pciide_mapreg_dma __P((struct pciide_softc *,
466 1.41 bouyer struct pci_attach_args *));
467 1.41 bouyer int pciide_chansetup __P((struct pciide_softc *, int, pcireg_t));
468 1.28 bouyer void pciide_mapchan __P((struct pci_attach_args *,
469 1.41 bouyer struct pciide_channel *, pcireg_t, bus_size_t *, bus_size_t *,
470 1.41 bouyer int (*pci_intr) __P((void *))));
471 1.44.2.1 bouyer int pciide_chan_candisable __P((struct pciide_channel *));
472 1.28 bouyer void pciide_map_compat_intr __P(( struct pci_attach_args *,
473 1.28 bouyer struct pciide_channel *, int, int));
474 1.5 cgd int pciide_print __P((void *, const char *pnp));
475 1.1 cgd int pciide_compat_intr __P((void *));
476 1.1 cgd int pciide_pci_intr __P((void *));
477 1.9 bouyer const struct pciide_product_desc* pciide_lookup_product __P((u_int32_t));
478 1.1 cgd
479 1.39 mrg const struct pciide_product_desc *
480 1.9 bouyer pciide_lookup_product(id)
481 1.39 mrg u_int32_t id;
482 1.9 bouyer {
483 1.39 mrg const struct pciide_product_desc *pp;
484 1.39 mrg const struct pciide_vendor_desc *vp;
485 1.9 bouyer
486 1.39 mrg for (vp = pciide_vendors; vp->ide_products != NULL; vp++)
487 1.39 mrg if (PCI_VENDOR(id) == vp->ide_vendor)
488 1.39 mrg break;
489 1.9 bouyer
490 1.39 mrg if ((pp = vp->ide_products) == NULL)
491 1.39 mrg return NULL;
492 1.9 bouyer
493 1.39 mrg for (; pp->ide_name != NULL; pp++)
494 1.39 mrg if (PCI_PRODUCT(id) == pp->ide_product)
495 1.39 mrg break;
496 1.9 bouyer
497 1.39 mrg if (pp->ide_name == NULL)
498 1.39 mrg return NULL;
499 1.39 mrg return pp;
500 1.9 bouyer }
501 1.6 cgd
502 1.1 cgd int
503 1.1 cgd pciide_match(parent, match, aux)
504 1.1 cgd struct device *parent;
505 1.1 cgd struct cfdata *match;
506 1.1 cgd void *aux;
507 1.1 cgd {
508 1.1 cgd struct pci_attach_args *pa = aux;
509 1.41 bouyer const struct pciide_product_desc *pp;
510 1.1 cgd
511 1.1 cgd /*
512 1.1 cgd * Check the ID register to see that it's a PCI IDE controller.
513 1.1 cgd * If it is, we assume that we can deal with it; it _should_
514 1.1 cgd * work in a standardized way...
515 1.1 cgd */
516 1.1 cgd if (PCI_CLASS(pa->pa_class) == PCI_CLASS_MASS_STORAGE &&
517 1.1 cgd PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_IDE) {
518 1.1 cgd return (1);
519 1.1 cgd }
520 1.1 cgd
521 1.41 bouyer /*
522 1.41 bouyer * Some controllers (e.g. promise Utra-33) don't claim to be PCI IDE
523 1.41 bouyer * controllers. Let see if we can deal with it anyway.
524 1.41 bouyer */
525 1.41 bouyer pp = pciide_lookup_product(pa->pa_id);
526 1.41 bouyer if (pp && (pp->ide_flags & IDE_PCI_CLASS_OVERRIDE)) {
527 1.41 bouyer return (1);
528 1.41 bouyer }
529 1.41 bouyer
530 1.1 cgd return (0);
531 1.1 cgd }
532 1.1 cgd
533 1.1 cgd void
534 1.1 cgd pciide_attach(parent, self, aux)
535 1.1 cgd struct device *parent, *self;
536 1.1 cgd void *aux;
537 1.1 cgd {
538 1.1 cgd struct pci_attach_args *pa = aux;
539 1.1 cgd pci_chipset_tag_t pc = pa->pa_pc;
540 1.9 bouyer pcitag_t tag = pa->pa_tag;
541 1.1 cgd struct pciide_softc *sc = (struct pciide_softc *)self;
542 1.41 bouyer pcireg_t csr;
543 1.1 cgd char devinfo[256];
544 1.44.2.1 bouyer const char *displaydev;
545 1.1 cgd
546 1.41 bouyer sc->sc_pp = pciide_lookup_product(pa->pa_id);
547 1.9 bouyer if (sc->sc_pp == NULL) {
548 1.9 bouyer sc->sc_pp = &default_product_desc;
549 1.9 bouyer pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo);
550 1.44.2.1 bouyer displaydev = devinfo;
551 1.44.2.1 bouyer } else
552 1.44.2.1 bouyer displaydev = sc->sc_pp->ide_name;
553 1.44.2.1 bouyer
554 1.44.2.1 bouyer printf(": %s (rev. 0x%02x)\n", displaydev, PCI_REVISION(pa->pa_class));
555 1.44.2.1 bouyer
556 1.28 bouyer sc->sc_pc = pa->pa_pc;
557 1.28 bouyer sc->sc_tag = pa->pa_tag;
558 1.41 bouyer #ifdef WDCDEBUG
559 1.41 bouyer if (wdcdebug_pciide_mask & DEBUG_PROBE)
560 1.41 bouyer pci_conf_print(sc->sc_pc, sc->sc_tag, NULL);
561 1.41 bouyer #endif
562 1.41 bouyer sc->sc_pp->chip_map(sc, pa);
563 1.1 cgd
564 1.16 bouyer if (sc->sc_dma_ok) {
565 1.16 bouyer csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
566 1.16 bouyer csr |= PCI_COMMAND_MASTER_ENABLE;
567 1.16 bouyer pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, csr);
568 1.16 bouyer }
569 1.9 bouyer WDCDEBUG_PRINT(("pciide: command/status register=%x\n",
570 1.9 bouyer pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG)), DEBUG_PROBE);
571 1.5 cgd }
572 1.5 cgd
573 1.41 bouyer /* tell wether the chip is enabled or not */
574 1.41 bouyer int
575 1.41 bouyer pciide_chipen(sc, pa)
576 1.41 bouyer struct pciide_softc *sc;
577 1.41 bouyer struct pci_attach_args *pa;
578 1.41 bouyer {
579 1.41 bouyer pcireg_t csr;
580 1.41 bouyer if ((pa->pa_flags & PCI_FLAGS_IO_ENABLED) == 0) {
581 1.41 bouyer csr = pci_conf_read(sc->sc_pc, sc->sc_tag,
582 1.41 bouyer PCI_COMMAND_STATUS_REG);
583 1.41 bouyer printf("%s: device disabled (at %s)\n",
584 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname,
585 1.41 bouyer (csr & PCI_COMMAND_IO_ENABLE) == 0 ?
586 1.41 bouyer "device" : "bridge");
587 1.41 bouyer return 0;
588 1.41 bouyer }
589 1.41 bouyer return 1;
590 1.41 bouyer }
591 1.41 bouyer
592 1.5 cgd int
593 1.28 bouyer pciide_mapregs_compat(pa, cp, compatchan, cmdsizep, ctlsizep)
594 1.5 cgd struct pci_attach_args *pa;
595 1.18 drochner struct pciide_channel *cp;
596 1.18 drochner int compatchan;
597 1.18 drochner bus_size_t *cmdsizep, *ctlsizep;
598 1.5 cgd {
599 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
600 1.18 drochner struct channel_softc *wdc_cp = &cp->wdc_channel;
601 1.5 cgd
602 1.5 cgd cp->compat = 1;
603 1.18 drochner *cmdsizep = PCIIDE_COMPAT_CMD_SIZE;
604 1.18 drochner *ctlsizep = PCIIDE_COMPAT_CTL_SIZE;
605 1.5 cgd
606 1.9 bouyer wdc_cp->cmd_iot = pa->pa_iot;
607 1.18 drochner if (bus_space_map(wdc_cp->cmd_iot, PCIIDE_COMPAT_CMD_BASE(compatchan),
608 1.9 bouyer PCIIDE_COMPAT_CMD_SIZE, 0, &wdc_cp->cmd_ioh) != 0) {
609 1.5 cgd printf("%s: couldn't map %s channel cmd regs\n",
610 1.18 drochner sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
611 1.43 bouyer return (0);
612 1.5 cgd }
613 1.5 cgd
614 1.9 bouyer wdc_cp->ctl_iot = pa->pa_iot;
615 1.18 drochner if (bus_space_map(wdc_cp->ctl_iot, PCIIDE_COMPAT_CTL_BASE(compatchan),
616 1.9 bouyer PCIIDE_COMPAT_CTL_SIZE, 0, &wdc_cp->ctl_ioh) != 0) {
617 1.5 cgd printf("%s: couldn't map %s channel ctl regs\n",
618 1.18 drochner sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
619 1.9 bouyer bus_space_unmap(wdc_cp->cmd_iot, wdc_cp->cmd_ioh,
620 1.5 cgd PCIIDE_COMPAT_CMD_SIZE);
621 1.43 bouyer return (0);
622 1.5 cgd }
623 1.5 cgd
624 1.43 bouyer return (1);
625 1.5 cgd }
626 1.5 cgd
627 1.9 bouyer int
628 1.41 bouyer pciide_mapregs_native(pa, cp, cmdsizep, ctlsizep, pci_intr)
629 1.28 bouyer struct pci_attach_args * pa;
630 1.18 drochner struct pciide_channel *cp;
631 1.18 drochner bus_size_t *cmdsizep, *ctlsizep;
632 1.41 bouyer int (*pci_intr) __P((void *));
633 1.9 bouyer {
634 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
635 1.18 drochner struct channel_softc *wdc_cp = &cp->wdc_channel;
636 1.29 bouyer const char *intrstr;
637 1.29 bouyer pci_intr_handle_t intrhandle;
638 1.9 bouyer
639 1.9 bouyer cp->compat = 0;
640 1.9 bouyer
641 1.29 bouyer if (sc->sc_pci_ih == NULL) {
642 1.44.2.4 bouyer if (pci_intr_map(pa, &intrhandle) != 0) {
643 1.29 bouyer printf("%s: couldn't map native-PCI interrupt\n",
644 1.29 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
645 1.29 bouyer return 0;
646 1.29 bouyer }
647 1.29 bouyer intrstr = pci_intr_string(pa->pa_pc, intrhandle);
648 1.29 bouyer sc->sc_pci_ih = pci_intr_establish(pa->pa_pc,
649 1.41 bouyer intrhandle, IPL_BIO, pci_intr, sc);
650 1.29 bouyer if (sc->sc_pci_ih != NULL) {
651 1.29 bouyer printf("%s: using %s for native-PCI interrupt\n",
652 1.29 bouyer sc->sc_wdcdev.sc_dev.dv_xname,
653 1.29 bouyer intrstr ? intrstr : "unknown interrupt");
654 1.29 bouyer } else {
655 1.29 bouyer printf("%s: couldn't establish native-PCI interrupt",
656 1.29 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
657 1.29 bouyer if (intrstr != NULL)
658 1.29 bouyer printf(" at %s", intrstr);
659 1.29 bouyer printf("\n");
660 1.29 bouyer return 0;
661 1.29 bouyer }
662 1.18 drochner }
663 1.29 bouyer cp->ih = sc->sc_pci_ih;
664 1.18 drochner if (pci_mapreg_map(pa, PCIIDE_REG_CMD_BASE(wdc_cp->channel),
665 1.18 drochner PCI_MAPREG_TYPE_IO, 0,
666 1.18 drochner &wdc_cp->cmd_iot, &wdc_cp->cmd_ioh, NULL, cmdsizep) != 0) {
667 1.9 bouyer printf("%s: couldn't map %s channel cmd regs\n",
668 1.18 drochner sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
669 1.18 drochner return 0;
670 1.9 bouyer }
671 1.9 bouyer
672 1.18 drochner if (pci_mapreg_map(pa, PCIIDE_REG_CTL_BASE(wdc_cp->channel),
673 1.18 drochner PCI_MAPREG_TYPE_IO, 0,
674 1.44.2.5 bouyer &wdc_cp->ctl_iot, &cp->ctl_baseioh, NULL, ctlsizep) != 0) {
675 1.9 bouyer printf("%s: couldn't map %s channel ctl regs\n",
676 1.18 drochner sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
677 1.18 drochner bus_space_unmap(wdc_cp->cmd_iot, wdc_cp->cmd_ioh, *cmdsizep);
678 1.44.2.5 bouyer return 0;
679 1.44.2.5 bouyer }
680 1.44.2.5 bouyer /*
681 1.44.2.5 bouyer * In native mode, 4 bytes of I/O space are mapped for the control
682 1.44.2.5 bouyer * register, the control register is at offset 2. Pass the generic
683 1.44.2.5 bouyer * code a handle for only one byte at the rigth offset.
684 1.44.2.5 bouyer */
685 1.44.2.5 bouyer if (bus_space_subregion(wdc_cp->ctl_iot, cp->ctl_baseioh, 2, 1,
686 1.44.2.5 bouyer &wdc_cp->ctl_ioh) != 0) {
687 1.44.2.5 bouyer printf("%s: unable to subregion %s channel ctl regs\n",
688 1.44.2.5 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
689 1.44.2.5 bouyer bus_space_unmap(wdc_cp->cmd_iot, wdc_cp->cmd_ioh, *cmdsizep);
690 1.44.2.5 bouyer bus_space_unmap(wdc_cp->cmd_iot, cp->ctl_baseioh, *ctlsizep);
691 1.18 drochner return 0;
692 1.9 bouyer }
693 1.18 drochner return (1);
694 1.9 bouyer }
695 1.9 bouyer
696 1.41 bouyer void
697 1.41 bouyer pciide_mapreg_dma(sc, pa)
698 1.41 bouyer struct pciide_softc *sc;
699 1.41 bouyer struct pci_attach_args *pa;
700 1.41 bouyer {
701 1.44.2.1 bouyer pcireg_t maptype;
702 1.44.2.2 bouyer bus_addr_t addr;
703 1.44.2.1 bouyer
704 1.41 bouyer /*
705 1.41 bouyer * Map DMA registers
706 1.41 bouyer *
707 1.41 bouyer * Note that sc_dma_ok is the right variable to test to see if
708 1.41 bouyer * DMA can be done. If the interface doesn't support DMA,
709 1.41 bouyer * sc_dma_ok will never be non-zero. If the DMA regs couldn't
710 1.41 bouyer * be mapped, it'll be zero. I.e., sc_dma_ok will only be
711 1.41 bouyer * non-zero if the interface supports DMA and the registers
712 1.41 bouyer * could be mapped.
713 1.41 bouyer *
714 1.41 bouyer * XXX Note that despite the fact that the Bus Master IDE specs
715 1.41 bouyer * XXX say that "The bus master IDE function uses 16 bytes of IO
716 1.41 bouyer * XXX space," some controllers (at least the United
717 1.41 bouyer * XXX Microelectronics UM8886BF) place it in memory space.
718 1.41 bouyer */
719 1.44.2.1 bouyer maptype = pci_mapreg_type(pa->pa_pc, pa->pa_tag,
720 1.44.2.1 bouyer PCIIDE_REG_BUS_MASTER_DMA);
721 1.44.2.1 bouyer
722 1.44.2.1 bouyer switch (maptype) {
723 1.44.2.1 bouyer case PCI_MAPREG_TYPE_IO:
724 1.44.2.2 bouyer sc->sc_dma_ok = (pci_mapreg_info(pa->pa_pc, pa->pa_tag,
725 1.44.2.2 bouyer PCIIDE_REG_BUS_MASTER_DMA, PCI_MAPREG_TYPE_IO,
726 1.44.2.2 bouyer &addr, NULL, NULL) == 0);
727 1.44.2.2 bouyer if (sc->sc_dma_ok == 0) {
728 1.44.2.2 bouyer printf(", but unused (couldn't query registers)");
729 1.44.2.2 bouyer break;
730 1.44.2.2 bouyer }
731 1.44.2.2 bouyer if ((sc->sc_pp->ide_flags & IDE_16BIT_IOSPACE)
732 1.44.2.2 bouyer && addr >= 0x10000) {
733 1.44.2.2 bouyer sc->sc_dma_ok = 0;
734 1.44.2.3 bouyer printf(", but unused (registers at unsafe address %#lx)", (unsigned long)addr);
735 1.44.2.2 bouyer break;
736 1.44.2.2 bouyer }
737 1.44.2.2 bouyer /* FALLTHROUGH */
738 1.44.2.2 bouyer
739 1.44.2.1 bouyer case PCI_MAPREG_MEM_TYPE_32BIT:
740 1.44.2.1 bouyer sc->sc_dma_ok = (pci_mapreg_map(pa,
741 1.44.2.1 bouyer PCIIDE_REG_BUS_MASTER_DMA, maptype, 0,
742 1.44.2.1 bouyer &sc->sc_dma_iot, &sc->sc_dma_ioh, NULL, NULL) == 0);
743 1.44.2.1 bouyer sc->sc_dmat = pa->pa_dmat;
744 1.44.2.1 bouyer if (sc->sc_dma_ok == 0) {
745 1.44.2.1 bouyer printf(", but unused (couldn't map registers)");
746 1.44.2.1 bouyer } else {
747 1.44.2.1 bouyer sc->sc_wdcdev.dma_arg = sc;
748 1.44.2.1 bouyer sc->sc_wdcdev.dma_init = pciide_dma_init;
749 1.44.2.1 bouyer sc->sc_wdcdev.dma_start = pciide_dma_start;
750 1.44.2.1 bouyer sc->sc_wdcdev.dma_finish = pciide_dma_finish;
751 1.44.2.1 bouyer }
752 1.44.2.1 bouyer break;
753 1.44.2.1 bouyer
754 1.44.2.1 bouyer default:
755 1.44.2.1 bouyer sc->sc_dma_ok = 0;
756 1.44.2.1 bouyer printf(", but unsupported register maptype (0x%x)", maptype);
757 1.41 bouyer }
758 1.41 bouyer }
759 1.44.2.1 bouyer
760 1.9 bouyer int
761 1.9 bouyer pciide_compat_intr(arg)
762 1.9 bouyer void *arg;
763 1.9 bouyer {
764 1.19 drochner struct pciide_channel *cp = arg;
765 1.9 bouyer
766 1.9 bouyer #ifdef DIAGNOSTIC
767 1.9 bouyer /* should only be called for a compat channel */
768 1.9 bouyer if (cp->compat == 0)
769 1.9 bouyer panic("pciide compat intr called for non-compat chan %p\n", cp);
770 1.9 bouyer #endif
771 1.19 drochner return (wdcintr(&cp->wdc_channel));
772 1.9 bouyer }
773 1.9 bouyer
774 1.9 bouyer int
775 1.9 bouyer pciide_pci_intr(arg)
776 1.9 bouyer void *arg;
777 1.9 bouyer {
778 1.9 bouyer struct pciide_softc *sc = arg;
779 1.9 bouyer struct pciide_channel *cp;
780 1.9 bouyer struct channel_softc *wdc_cp;
781 1.9 bouyer int i, rv, crv;
782 1.9 bouyer
783 1.9 bouyer rv = 0;
784 1.18 drochner for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
785 1.9 bouyer cp = &sc->pciide_channels[i];
786 1.18 drochner wdc_cp = &cp->wdc_channel;
787 1.9 bouyer
788 1.9 bouyer /* If a compat channel skip. */
789 1.9 bouyer if (cp->compat)
790 1.9 bouyer continue;
791 1.9 bouyer /* if this channel not waiting for intr, skip */
792 1.9 bouyer if ((wdc_cp->ch_flags & WDCF_IRQ_WAIT) == 0)
793 1.9 bouyer continue;
794 1.9 bouyer
795 1.9 bouyer crv = wdcintr(wdc_cp);
796 1.9 bouyer if (crv == 0)
797 1.9 bouyer ; /* leave rv alone */
798 1.9 bouyer else if (crv == 1)
799 1.9 bouyer rv = 1; /* claim the intr */
800 1.9 bouyer else if (rv == 0) /* crv should be -1 in this case */
801 1.9 bouyer rv = crv; /* if we've done no better, take it */
802 1.9 bouyer }
803 1.9 bouyer return (rv);
804 1.9 bouyer }
805 1.9 bouyer
806 1.28 bouyer void
807 1.28 bouyer pciide_channel_dma_setup(cp)
808 1.28 bouyer struct pciide_channel *cp;
809 1.28 bouyer {
810 1.28 bouyer int drive;
811 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
812 1.28 bouyer struct ata_drive_datas *drvp;
813 1.28 bouyer
814 1.28 bouyer for (drive = 0; drive < 2; drive++) {
815 1.28 bouyer drvp = &cp->wdc_channel.ch_drive[drive];
816 1.28 bouyer /* If no drive, skip */
817 1.28 bouyer if ((drvp->drive_flags & DRIVE) == 0)
818 1.28 bouyer continue;
819 1.28 bouyer /* setup DMA if needed */
820 1.28 bouyer if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
821 1.28 bouyer (drvp->drive_flags & DRIVE_UDMA) == 0) ||
822 1.28 bouyer sc->sc_dma_ok == 0) {
823 1.28 bouyer drvp->drive_flags &= ~(DRIVE_DMA | DRIVE_UDMA);
824 1.28 bouyer continue;
825 1.28 bouyer }
826 1.28 bouyer if (pciide_dma_table_setup(sc, cp->wdc_channel.channel, drive)
827 1.28 bouyer != 0) {
828 1.28 bouyer /* Abort DMA setup */
829 1.28 bouyer drvp->drive_flags &= ~(DRIVE_DMA | DRIVE_UDMA);
830 1.28 bouyer continue;
831 1.28 bouyer }
832 1.28 bouyer }
833 1.28 bouyer }
834 1.28 bouyer
835 1.18 drochner int
836 1.18 drochner pciide_dma_table_setup(sc, channel, drive)
837 1.9 bouyer struct pciide_softc *sc;
838 1.18 drochner int channel, drive;
839 1.9 bouyer {
840 1.18 drochner bus_dma_segment_t seg;
841 1.18 drochner int error, rseg;
842 1.18 drochner const bus_size_t dma_table_size =
843 1.18 drochner sizeof(struct idedma_table) * NIDEDMA_TABLES;
844 1.18 drochner struct pciide_dma_maps *dma_maps =
845 1.18 drochner &sc->pciide_channels[channel].dma_maps[drive];
846 1.18 drochner
847 1.28 bouyer /* If table was already allocated, just return */
848 1.28 bouyer if (dma_maps->dma_table)
849 1.28 bouyer return 0;
850 1.28 bouyer
851 1.18 drochner /* Allocate memory for the DMA tables and map it */
852 1.18 drochner if ((error = bus_dmamem_alloc(sc->sc_dmat, dma_table_size,
853 1.18 drochner IDEDMA_TBL_ALIGN, IDEDMA_TBL_ALIGN, &seg, 1, &rseg,
854 1.18 drochner BUS_DMA_NOWAIT)) != 0) {
855 1.18 drochner printf("%s:%d: unable to allocate table DMA for "
856 1.18 drochner "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
857 1.18 drochner channel, drive, error);
858 1.18 drochner return error;
859 1.18 drochner }
860 1.18 drochner if ((error = bus_dmamem_map(sc->sc_dmat, &seg, rseg,
861 1.18 drochner dma_table_size,
862 1.18 drochner (caddr_t *)&dma_maps->dma_table,
863 1.18 drochner BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) != 0) {
864 1.18 drochner printf("%s:%d: unable to map table DMA for"
865 1.18 drochner "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
866 1.18 drochner channel, drive, error);
867 1.18 drochner return error;
868 1.18 drochner }
869 1.44.2.3 bouyer WDCDEBUG_PRINT(("pciide_dma_table_setup: table at %p len %lu, "
870 1.44.2.3 bouyer "phy 0x%lx\n", dma_maps->dma_table, (u_long)dma_table_size,
871 1.44.2.3 bouyer (unsigned long)seg.ds_addr), DEBUG_PROBE);
872 1.18 drochner
873 1.18 drochner /* Create and load table DMA map for this disk */
874 1.18 drochner if ((error = bus_dmamap_create(sc->sc_dmat, dma_table_size,
875 1.18 drochner 1, dma_table_size, IDEDMA_TBL_ALIGN, BUS_DMA_NOWAIT,
876 1.18 drochner &dma_maps->dmamap_table)) != 0) {
877 1.18 drochner printf("%s:%d: unable to create table DMA map for "
878 1.18 drochner "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
879 1.18 drochner channel, drive, error);
880 1.18 drochner return error;
881 1.18 drochner }
882 1.18 drochner if ((error = bus_dmamap_load(sc->sc_dmat,
883 1.18 drochner dma_maps->dmamap_table,
884 1.18 drochner dma_maps->dma_table,
885 1.18 drochner dma_table_size, NULL, BUS_DMA_NOWAIT)) != 0) {
886 1.18 drochner printf("%s:%d: unable to load table DMA map for "
887 1.18 drochner "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
888 1.18 drochner channel, drive, error);
889 1.18 drochner return error;
890 1.18 drochner }
891 1.18 drochner WDCDEBUG_PRINT(("pciide_dma_table_setup: phy addr of table 0x%lx\n",
892 1.44.2.3 bouyer (unsigned long)dma_maps->dmamap_table->dm_segs[0].ds_addr),
893 1.44.2.3 bouyer DEBUG_PROBE);
894 1.18 drochner /* Create a xfer DMA map for this drive */
895 1.18 drochner if ((error = bus_dmamap_create(sc->sc_dmat, IDEDMA_BYTE_COUNT_MAX,
896 1.18 drochner NIDEDMA_TABLES, IDEDMA_BYTE_COUNT_MAX, IDEDMA_BYTE_COUNT_ALIGN,
897 1.18 drochner BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW,
898 1.18 drochner &dma_maps->dmamap_xfer)) != 0) {
899 1.18 drochner printf("%s:%d: unable to create xfer DMA map for "
900 1.18 drochner "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
901 1.18 drochner channel, drive, error);
902 1.18 drochner return error;
903 1.18 drochner }
904 1.18 drochner return 0;
905 1.9 bouyer }
906 1.9 bouyer
907 1.18 drochner int
908 1.18 drochner pciide_dma_init(v, channel, drive, databuf, datalen, flags)
909 1.18 drochner void *v;
910 1.18 drochner int channel, drive;
911 1.18 drochner void *databuf;
912 1.18 drochner size_t datalen;
913 1.18 drochner int flags;
914 1.9 bouyer {
915 1.18 drochner struct pciide_softc *sc = v;
916 1.18 drochner int error, seg;
917 1.18 drochner struct pciide_dma_maps *dma_maps =
918 1.18 drochner &sc->pciide_channels[channel].dma_maps[drive];
919 1.18 drochner
920 1.18 drochner error = bus_dmamap_load(sc->sc_dmat,
921 1.18 drochner dma_maps->dmamap_xfer,
922 1.18 drochner databuf, datalen, NULL, BUS_DMA_NOWAIT);
923 1.18 drochner if (error) {
924 1.18 drochner printf("%s:%d: unable to load xfer DMA map for"
925 1.18 drochner "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
926 1.18 drochner channel, drive, error);
927 1.18 drochner return error;
928 1.18 drochner }
929 1.9 bouyer
930 1.18 drochner bus_dmamap_sync(sc->sc_dmat, dma_maps->dmamap_xfer, 0,
931 1.18 drochner dma_maps->dmamap_xfer->dm_mapsize,
932 1.18 drochner (flags & WDC_DMA_READ) ?
933 1.18 drochner BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
934 1.9 bouyer
935 1.18 drochner for (seg = 0; seg < dma_maps->dmamap_xfer->dm_nsegs; seg++) {
936 1.18 drochner #ifdef DIAGNOSTIC
937 1.18 drochner /* A segment must not cross a 64k boundary */
938 1.18 drochner {
939 1.18 drochner u_long phys = dma_maps->dmamap_xfer->dm_segs[seg].ds_addr;
940 1.18 drochner u_long len = dma_maps->dmamap_xfer->dm_segs[seg].ds_len;
941 1.18 drochner if ((phys & ~IDEDMA_BYTE_COUNT_MASK) !=
942 1.18 drochner ((phys + len - 1) & ~IDEDMA_BYTE_COUNT_MASK)) {
943 1.18 drochner printf("pciide_dma: segment %d physical addr 0x%lx"
944 1.18 drochner " len 0x%lx not properly aligned\n",
945 1.18 drochner seg, phys, len);
946 1.18 drochner panic("pciide_dma: buf align");
947 1.9 bouyer }
948 1.9 bouyer }
949 1.18 drochner #endif
950 1.18 drochner dma_maps->dma_table[seg].base_addr =
951 1.44.2.1 bouyer htole32(dma_maps->dmamap_xfer->dm_segs[seg].ds_addr);
952 1.18 drochner dma_maps->dma_table[seg].byte_count =
953 1.44.2.1 bouyer htole32(dma_maps->dmamap_xfer->dm_segs[seg].ds_len &
954 1.35 thorpej IDEDMA_BYTE_COUNT_MASK);
955 1.18 drochner WDCDEBUG_PRINT(("\t seg %d len %d addr 0x%x\n",
956 1.44.2.1 bouyer seg, le32toh(dma_maps->dma_table[seg].byte_count),
957 1.44.2.1 bouyer le32toh(dma_maps->dma_table[seg].base_addr)), DEBUG_DMA);
958 1.18 drochner
959 1.9 bouyer }
960 1.18 drochner dma_maps->dma_table[dma_maps->dmamap_xfer->dm_nsegs -1].byte_count |=
961 1.44.2.1 bouyer htole32(IDEDMA_BYTE_COUNT_EOT);
962 1.9 bouyer
963 1.18 drochner bus_dmamap_sync(sc->sc_dmat, dma_maps->dmamap_table, 0,
964 1.18 drochner dma_maps->dmamap_table->dm_mapsize,
965 1.18 drochner BUS_DMASYNC_PREWRITE);
966 1.9 bouyer
967 1.18 drochner /* Maps are ready. Start DMA function */
968 1.18 drochner #ifdef DIAGNOSTIC
969 1.18 drochner if (dma_maps->dmamap_table->dm_segs[0].ds_addr & ~IDEDMA_TBL_MASK) {
970 1.18 drochner printf("pciide_dma_init: addr 0x%lx not properly aligned\n",
971 1.44.2.4 bouyer (u_long)dma_maps->dmamap_table->dm_segs[0].ds_addr);
972 1.18 drochner panic("pciide_dma_init: table align");
973 1.18 drochner }
974 1.18 drochner #endif
975 1.18 drochner
976 1.18 drochner /* Clear status bits */
977 1.18 drochner bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
978 1.18 drochner IDEDMA_CTL + IDEDMA_SCH_OFFSET * channel,
979 1.18 drochner bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
980 1.18 drochner IDEDMA_CTL + IDEDMA_SCH_OFFSET * channel));
981 1.18 drochner /* Write table addr */
982 1.18 drochner bus_space_write_4(sc->sc_dma_iot, sc->sc_dma_ioh,
983 1.18 drochner IDEDMA_TBL + IDEDMA_SCH_OFFSET * channel,
984 1.18 drochner dma_maps->dmamap_table->dm_segs[0].ds_addr);
985 1.18 drochner /* set read/write */
986 1.18 drochner bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
987 1.18 drochner IDEDMA_CMD + IDEDMA_SCH_OFFSET * channel,
988 1.18 drochner (flags & WDC_DMA_READ) ? IDEDMA_CMD_WRITE: 0);
989 1.44.2.1 bouyer /* remember flags */
990 1.44.2.1 bouyer dma_maps->dma_flags = flags;
991 1.18 drochner return 0;
992 1.18 drochner }
993 1.18 drochner
994 1.18 drochner void
995 1.44.2.1 bouyer pciide_dma_start(v, channel, drive)
996 1.18 drochner void *v;
997 1.44.2.1 bouyer int channel, drive;
998 1.18 drochner {
999 1.18 drochner struct pciide_softc *sc = v;
1000 1.18 drochner
1001 1.18 drochner WDCDEBUG_PRINT(("pciide_dma_start\n"),DEBUG_XFERS);
1002 1.18 drochner bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1003 1.18 drochner IDEDMA_CMD + IDEDMA_SCH_OFFSET * channel,
1004 1.18 drochner bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1005 1.18 drochner IDEDMA_CMD + IDEDMA_SCH_OFFSET * channel) | IDEDMA_CMD_START);
1006 1.18 drochner }
1007 1.18 drochner
1008 1.18 drochner int
1009 1.44.2.1 bouyer pciide_dma_finish(v, channel, drive, force)
1010 1.18 drochner void *v;
1011 1.18 drochner int channel, drive;
1012 1.44.2.1 bouyer int force;
1013 1.18 drochner {
1014 1.18 drochner struct pciide_softc *sc = v;
1015 1.18 drochner u_int8_t status;
1016 1.44.2.1 bouyer int error = 0;
1017 1.18 drochner struct pciide_dma_maps *dma_maps =
1018 1.18 drochner &sc->pciide_channels[channel].dma_maps[drive];
1019 1.18 drochner
1020 1.18 drochner status = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1021 1.18 drochner IDEDMA_CTL + IDEDMA_SCH_OFFSET * channel);
1022 1.18 drochner WDCDEBUG_PRINT(("pciide_dma_finish: status 0x%x\n", status),
1023 1.18 drochner DEBUG_XFERS);
1024 1.18 drochner
1025 1.44.2.1 bouyer if (force == 0 && (status & IDEDMA_CTL_INTR) == 0)
1026 1.44.2.1 bouyer return WDC_DMAST_NOIRQ;
1027 1.44.2.1 bouyer
1028 1.18 drochner /* stop DMA channel */
1029 1.18 drochner bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1030 1.18 drochner IDEDMA_CMD + IDEDMA_SCH_OFFSET * channel,
1031 1.18 drochner bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1032 1.18 drochner IDEDMA_CMD + IDEDMA_SCH_OFFSET * channel) & ~IDEDMA_CMD_START);
1033 1.18 drochner
1034 1.44.2.1 bouyer /* Unload the map of the data buffer */
1035 1.44.2.1 bouyer bus_dmamap_sync(sc->sc_dmat, dma_maps->dmamap_xfer, 0,
1036 1.44.2.1 bouyer dma_maps->dmamap_xfer->dm_mapsize,
1037 1.44.2.1 bouyer (dma_maps->dma_flags & WDC_DMA_READ) ?
1038 1.44.2.1 bouyer BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
1039 1.44.2.1 bouyer bus_dmamap_unload(sc->sc_dmat, dma_maps->dmamap_xfer);
1040 1.18 drochner
1041 1.18 drochner if ((status & IDEDMA_CTL_ERR) != 0) {
1042 1.44.2.1 bouyer printf("%s:%d:%d: bus-master DMA error: status=0x%x\n",
1043 1.18 drochner sc->sc_wdcdev.sc_dev.dv_xname, channel, drive, status);
1044 1.44.2.1 bouyer error |= WDC_DMAST_ERR;
1045 1.18 drochner }
1046 1.18 drochner
1047 1.44.2.1 bouyer if ((status & IDEDMA_CTL_INTR) == 0) {
1048 1.44.2.1 bouyer printf("%s:%d:%d: bus-master DMA error: missing interrupt, "
1049 1.18 drochner "status=0x%x\n", sc->sc_wdcdev.sc_dev.dv_xname, channel,
1050 1.18 drochner drive, status);
1051 1.44.2.1 bouyer error |= WDC_DMAST_NOIRQ;
1052 1.18 drochner }
1053 1.18 drochner
1054 1.18 drochner if ((status & IDEDMA_CTL_ACT) != 0) {
1055 1.18 drochner /* data underrun, may be a valid condition for ATAPI */
1056 1.44.2.1 bouyer error |= WDC_DMAST_UNDER;
1057 1.18 drochner }
1058 1.44.2.1 bouyer return error;
1059 1.44.2.1 bouyer }
1060 1.44.2.1 bouyer
1061 1.44.2.1 bouyer void
1062 1.44.2.1 bouyer pciide_irqack(chp)
1063 1.44.2.1 bouyer struct channel_softc *chp;
1064 1.44.2.1 bouyer {
1065 1.44.2.1 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
1066 1.44.2.1 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1067 1.44.2.1 bouyer
1068 1.44.2.1 bouyer /* clear status bits in IDE DMA registers */
1069 1.44.2.1 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1070 1.44.2.1 bouyer IDEDMA_CTL + IDEDMA_SCH_OFFSET * chp->channel,
1071 1.44.2.1 bouyer bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1072 1.44.2.1 bouyer IDEDMA_CTL + IDEDMA_SCH_OFFSET * chp->channel));
1073 1.18 drochner }
1074 1.18 drochner
1075 1.41 bouyer /* some common code used by several chip_map */
1076 1.41 bouyer int
1077 1.41 bouyer pciide_chansetup(sc, channel, interface)
1078 1.41 bouyer struct pciide_softc *sc;
1079 1.41 bouyer int channel;
1080 1.41 bouyer pcireg_t interface;
1081 1.41 bouyer {
1082 1.41 bouyer struct pciide_channel *cp = &sc->pciide_channels[channel];
1083 1.41 bouyer sc->wdc_chanarray[channel] = &cp->wdc_channel;
1084 1.41 bouyer cp->name = PCIIDE_CHANNEL_NAME(channel);
1085 1.41 bouyer cp->wdc_channel.channel = channel;
1086 1.41 bouyer cp->wdc_channel.wdc = &sc->sc_wdcdev;
1087 1.41 bouyer cp->wdc_channel.ch_queue =
1088 1.41 bouyer malloc(sizeof(struct channel_queue), M_DEVBUF, M_NOWAIT);
1089 1.41 bouyer if (cp->wdc_channel.ch_queue == NULL) {
1090 1.41 bouyer printf("%s %s channel: "
1091 1.41 bouyer "can't allocate memory for command queue",
1092 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1093 1.41 bouyer return 0;
1094 1.41 bouyer }
1095 1.41 bouyer printf("%s: %s channel %s to %s mode\n",
1096 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name,
1097 1.41 bouyer (interface & PCIIDE_INTERFACE_SETTABLE(channel)) ?
1098 1.41 bouyer "configured" : "wired",
1099 1.41 bouyer (interface & PCIIDE_INTERFACE_PCI(channel)) ?
1100 1.41 bouyer "native-PCI" : "compatibility");
1101 1.41 bouyer return 1;
1102 1.41 bouyer }
1103 1.41 bouyer
1104 1.18 drochner /* some common code used by several chip channel_map */
1105 1.18 drochner void
1106 1.41 bouyer pciide_mapchan(pa, cp, interface, cmdsizep, ctlsizep, pci_intr)
1107 1.18 drochner struct pci_attach_args *pa;
1108 1.18 drochner struct pciide_channel *cp;
1109 1.41 bouyer pcireg_t interface;
1110 1.18 drochner bus_size_t *cmdsizep, *ctlsizep;
1111 1.41 bouyer int (*pci_intr) __P((void *));
1112 1.18 drochner {
1113 1.18 drochner struct channel_softc *wdc_cp = &cp->wdc_channel;
1114 1.18 drochner
1115 1.18 drochner if (interface & PCIIDE_INTERFACE_PCI(wdc_cp->channel))
1116 1.41 bouyer cp->hw_ok = pciide_mapregs_native(pa, cp, cmdsizep, ctlsizep,
1117 1.41 bouyer pci_intr);
1118 1.41 bouyer else
1119 1.28 bouyer cp->hw_ok = pciide_mapregs_compat(pa, cp,
1120 1.28 bouyer wdc_cp->channel, cmdsizep, ctlsizep);
1121 1.41 bouyer
1122 1.18 drochner if (cp->hw_ok == 0)
1123 1.18 drochner return;
1124 1.18 drochner wdc_cp->data32iot = wdc_cp->cmd_iot;
1125 1.18 drochner wdc_cp->data32ioh = wdc_cp->cmd_ioh;
1126 1.18 drochner wdcattach(wdc_cp);
1127 1.18 drochner }
1128 1.18 drochner
1129 1.18 drochner /*
1130 1.18 drochner * Generic code to call to know if a channel can be disabled. Return 1
1131 1.18 drochner * if channel can be disabled, 0 if not
1132 1.18 drochner */
1133 1.18 drochner int
1134 1.44.2.1 bouyer pciide_chan_candisable(cp)
1135 1.18 drochner struct pciide_channel *cp;
1136 1.18 drochner {
1137 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1138 1.18 drochner struct channel_softc *wdc_cp = &cp->wdc_channel;
1139 1.18 drochner
1140 1.18 drochner if ((wdc_cp->ch_drive[0].drive_flags & DRIVE) == 0 &&
1141 1.18 drochner (wdc_cp->ch_drive[1].drive_flags & DRIVE) == 0) {
1142 1.18 drochner printf("%s: disabling %s channel (no drives)\n",
1143 1.18 drochner sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1144 1.18 drochner cp->hw_ok = 0;
1145 1.18 drochner return 1;
1146 1.18 drochner }
1147 1.18 drochner return 0;
1148 1.18 drochner }
1149 1.18 drochner
1150 1.18 drochner /*
1151 1.18 drochner * generic code to map the compat intr if hw_ok=1 and it is a compat channel.
1152 1.18 drochner * Set hw_ok=0 on failure
1153 1.18 drochner */
1154 1.18 drochner void
1155 1.28 bouyer pciide_map_compat_intr(pa, cp, compatchan, interface)
1156 1.5 cgd struct pci_attach_args *pa;
1157 1.18 drochner struct pciide_channel *cp;
1158 1.18 drochner int compatchan, interface;
1159 1.18 drochner {
1160 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1161 1.18 drochner struct channel_softc *wdc_cp = &cp->wdc_channel;
1162 1.18 drochner
1163 1.18 drochner if (cp->hw_ok == 0)
1164 1.18 drochner return;
1165 1.18 drochner if ((interface & PCIIDE_INTERFACE_PCI(wdc_cp->channel)) != 0)
1166 1.18 drochner return;
1167 1.18 drochner
1168 1.18 drochner cp->ih = pciide_machdep_compat_intr_establish(&sc->sc_wdcdev.sc_dev,
1169 1.19 drochner pa, compatchan, pciide_compat_intr, cp);
1170 1.18 drochner if (cp->ih == NULL) {
1171 1.18 drochner printf("%s: no compatibility interrupt for use by %s "
1172 1.18 drochner "channel\n", sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1173 1.18 drochner cp->hw_ok = 0;
1174 1.18 drochner }
1175 1.18 drochner }
1176 1.18 drochner
1177 1.18 drochner void
1178 1.28 bouyer pciide_print_modes(cp)
1179 1.28 bouyer struct pciide_channel *cp;
1180 1.18 drochner {
1181 1.44.2.2 bouyer wdc_print_modes(&cp->wdc_channel);
1182 1.18 drochner }
1183 1.18 drochner
1184 1.18 drochner void
1185 1.41 bouyer default_chip_map(sc, pa)
1186 1.18 drochner struct pciide_softc *sc;
1187 1.41 bouyer struct pci_attach_args *pa;
1188 1.18 drochner {
1189 1.41 bouyer struct pciide_channel *cp;
1190 1.44.2.1 bouyer pcireg_t interface = PCI_INTERFACE(pa->pa_class);
1191 1.41 bouyer pcireg_t csr;
1192 1.41 bouyer int channel, drive;
1193 1.41 bouyer struct ata_drive_datas *drvp;
1194 1.41 bouyer u_int8_t idedma_ctl;
1195 1.41 bouyer bus_size_t cmdsize, ctlsize;
1196 1.41 bouyer char *failreason;
1197 1.41 bouyer
1198 1.41 bouyer if (pciide_chipen(sc, pa) == 0)
1199 1.41 bouyer return;
1200 1.41 bouyer
1201 1.41 bouyer if (interface & PCIIDE_INTERFACE_BUS_MASTER_DMA) {
1202 1.41 bouyer printf("%s: bus-master DMA support present",
1203 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
1204 1.41 bouyer if (sc->sc_pp == &default_product_desc &&
1205 1.41 bouyer (sc->sc_wdcdev.sc_dev.dv_cfdata->cf_flags &
1206 1.41 bouyer PCIIDE_OPTIONS_DMA) == 0) {
1207 1.41 bouyer printf(", but unused (no driver support)");
1208 1.41 bouyer sc->sc_dma_ok = 0;
1209 1.41 bouyer } else {
1210 1.41 bouyer pciide_mapreg_dma(sc, pa);
1211 1.41 bouyer if (sc->sc_dma_ok != 0)
1212 1.41 bouyer printf(", used without full driver "
1213 1.41 bouyer "support");
1214 1.41 bouyer }
1215 1.41 bouyer } else {
1216 1.41 bouyer printf("%s: hardware does not support DMA",
1217 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
1218 1.41 bouyer sc->sc_dma_ok = 0;
1219 1.41 bouyer }
1220 1.41 bouyer printf("\n");
1221 1.44.2.1 bouyer if (sc->sc_dma_ok) {
1222 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
1223 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
1224 1.44.2.1 bouyer }
1225 1.27 bouyer sc->sc_wdcdev.PIO_cap = 0;
1226 1.27 bouyer sc->sc_wdcdev.DMA_cap = 0;
1227 1.18 drochner
1228 1.41 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
1229 1.41 bouyer sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
1230 1.41 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16;
1231 1.41 bouyer
1232 1.41 bouyer for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
1233 1.41 bouyer cp = &sc->pciide_channels[channel];
1234 1.41 bouyer if (pciide_chansetup(sc, channel, interface) == 0)
1235 1.41 bouyer continue;
1236 1.41 bouyer if (interface & PCIIDE_INTERFACE_PCI(channel)) {
1237 1.41 bouyer cp->hw_ok = pciide_mapregs_native(pa, cp, &cmdsize,
1238 1.41 bouyer &ctlsize, pciide_pci_intr);
1239 1.41 bouyer } else {
1240 1.41 bouyer cp->hw_ok = pciide_mapregs_compat(pa, cp,
1241 1.41 bouyer channel, &cmdsize, &ctlsize);
1242 1.41 bouyer }
1243 1.41 bouyer if (cp->hw_ok == 0)
1244 1.41 bouyer continue;
1245 1.41 bouyer /*
1246 1.41 bouyer * Check to see if something appears to be there.
1247 1.41 bouyer */
1248 1.41 bouyer failreason = NULL;
1249 1.41 bouyer if (!wdcprobe(&cp->wdc_channel)) {
1250 1.41 bouyer failreason = "not responding; disabled or no drives?";
1251 1.41 bouyer goto next;
1252 1.41 bouyer }
1253 1.41 bouyer /*
1254 1.41 bouyer * Now, make sure it's actually attributable to this PCI IDE
1255 1.41 bouyer * channel by trying to access the channel again while the
1256 1.41 bouyer * PCI IDE controller's I/O space is disabled. (If the
1257 1.41 bouyer * channel no longer appears to be there, it belongs to
1258 1.41 bouyer * this controller.) YUCK!
1259 1.41 bouyer */
1260 1.41 bouyer csr = pci_conf_read(sc->sc_pc, sc->sc_tag,
1261 1.41 bouyer PCI_COMMAND_STATUS_REG);
1262 1.41 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG,
1263 1.41 bouyer csr & ~PCI_COMMAND_IO_ENABLE);
1264 1.41 bouyer if (wdcprobe(&cp->wdc_channel))
1265 1.41 bouyer failreason = "other hardware responding at addresses";
1266 1.41 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag,
1267 1.41 bouyer PCI_COMMAND_STATUS_REG, csr);
1268 1.41 bouyer next:
1269 1.41 bouyer if (failreason) {
1270 1.41 bouyer printf("%s: %s channel ignored (%s)\n",
1271 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name,
1272 1.41 bouyer failreason);
1273 1.41 bouyer cp->hw_ok = 0;
1274 1.41 bouyer bus_space_unmap(cp->wdc_channel.cmd_iot,
1275 1.41 bouyer cp->wdc_channel.cmd_ioh, cmdsize);
1276 1.41 bouyer bus_space_unmap(cp->wdc_channel.ctl_iot,
1277 1.41 bouyer cp->wdc_channel.ctl_ioh, ctlsize);
1278 1.41 bouyer } else {
1279 1.41 bouyer pciide_map_compat_intr(pa, cp, channel, interface);
1280 1.41 bouyer }
1281 1.41 bouyer if (cp->hw_ok) {
1282 1.41 bouyer cp->wdc_channel.data32iot = cp->wdc_channel.cmd_iot;
1283 1.41 bouyer cp->wdc_channel.data32ioh = cp->wdc_channel.cmd_ioh;
1284 1.41 bouyer wdcattach(&cp->wdc_channel);
1285 1.41 bouyer }
1286 1.41 bouyer }
1287 1.18 drochner
1288 1.18 drochner if (sc->sc_dma_ok == 0)
1289 1.41 bouyer return;
1290 1.18 drochner
1291 1.18 drochner /* Allocate DMA maps */
1292 1.18 drochner for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
1293 1.18 drochner idedma_ctl = 0;
1294 1.41 bouyer cp = &sc->pciide_channels[channel];
1295 1.18 drochner for (drive = 0; drive < 2; drive++) {
1296 1.41 bouyer drvp = &cp->wdc_channel.ch_drive[drive];
1297 1.18 drochner /* If no drive, skip */
1298 1.18 drochner if ((drvp->drive_flags & DRIVE) == 0)
1299 1.18 drochner continue;
1300 1.18 drochner if ((drvp->drive_flags & DRIVE_DMA) == 0)
1301 1.18 drochner continue;
1302 1.18 drochner if (pciide_dma_table_setup(sc, channel, drive) != 0) {
1303 1.18 drochner /* Abort DMA setup */
1304 1.18 drochner printf("%s:%d:%d: can't allocate DMA maps, "
1305 1.18 drochner "using PIO transfers\n",
1306 1.18 drochner sc->sc_wdcdev.sc_dev.dv_xname,
1307 1.18 drochner channel, drive);
1308 1.18 drochner drvp->drive_flags &= ~DRIVE_DMA;
1309 1.18 drochner }
1310 1.40 bouyer printf("%s:%d:%d: using DMA data transfers\n",
1311 1.18 drochner sc->sc_wdcdev.sc_dev.dv_xname,
1312 1.18 drochner channel, drive);
1313 1.18 drochner idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
1314 1.18 drochner }
1315 1.18 drochner if (idedma_ctl != 0) {
1316 1.18 drochner /* Add software bits in status register */
1317 1.18 drochner bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1318 1.18 drochner IDEDMA_CTL + (IDEDMA_SCH_OFFSET * channel),
1319 1.18 drochner idedma_ctl);
1320 1.18 drochner }
1321 1.18 drochner }
1322 1.18 drochner }
1323 1.18 drochner
1324 1.18 drochner void
1325 1.41 bouyer piix_chip_map(sc, pa)
1326 1.41 bouyer struct pciide_softc *sc;
1327 1.18 drochner struct pci_attach_args *pa;
1328 1.41 bouyer {
1329 1.18 drochner struct pciide_channel *cp;
1330 1.41 bouyer int channel;
1331 1.42 bouyer u_int32_t idetim;
1332 1.42 bouyer bus_size_t cmdsize, ctlsize;
1333 1.18 drochner
1334 1.41 bouyer if (pciide_chipen(sc, pa) == 0)
1335 1.18 drochner return;
1336 1.6 cgd
1337 1.41 bouyer printf("%s: bus-master DMA support present",
1338 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
1339 1.41 bouyer pciide_mapreg_dma(sc, pa);
1340 1.41 bouyer printf("\n");
1341 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
1342 1.44.2.1 bouyer WDC_CAPABILITY_MODE;
1343 1.41 bouyer if (sc->sc_dma_ok) {
1344 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
1345 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
1346 1.42 bouyer switch(sc->sc_pp->ide_product) {
1347 1.42 bouyer case PCI_PRODUCT_INTEL_82371AB_IDE:
1348 1.44.2.1 bouyer case PCI_PRODUCT_INTEL_82440MX_IDE:
1349 1.42 bouyer case PCI_PRODUCT_INTEL_82801AA_IDE:
1350 1.42 bouyer case PCI_PRODUCT_INTEL_82801AB_IDE:
1351 1.44.2.2 bouyer case PCI_PRODUCT_INTEL_82801BA_IDE:
1352 1.41 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
1353 1.41 bouyer }
1354 1.18 drochner }
1355 1.27 bouyer sc->sc_wdcdev.PIO_cap = 4;
1356 1.27 bouyer sc->sc_wdcdev.DMA_cap = 2;
1357 1.44.2.2 bouyer switch(sc->sc_pp->ide_product) {
1358 1.44.2.2 bouyer case PCI_PRODUCT_INTEL_82801AA_IDE:
1359 1.44.2.2 bouyer sc->sc_wdcdev.UDMA_cap = 4;
1360 1.44.2.2 bouyer break;
1361 1.44.2.4 bouyer case PCI_PRODUCT_INTEL_82801BA_IDE:
1362 1.44.2.4 bouyer sc->sc_wdcdev.UDMA_cap = 5;
1363 1.44.2.4 bouyer break;
1364 1.44.2.2 bouyer default:
1365 1.44.2.2 bouyer sc->sc_wdcdev.UDMA_cap = 2;
1366 1.44.2.2 bouyer }
1367 1.41 bouyer if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82371FB_IDE)
1368 1.41 bouyer sc->sc_wdcdev.set_modes = piix_setup_channel;
1369 1.41 bouyer else
1370 1.28 bouyer sc->sc_wdcdev.set_modes = piix3_4_setup_channel;
1371 1.41 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
1372 1.41 bouyer sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
1373 1.9 bouyer
1374 1.41 bouyer WDCDEBUG_PRINT(("piix_setup_chip: old idetim=0x%x",
1375 1.41 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM)),
1376 1.41 bouyer DEBUG_PROBE);
1377 1.41 bouyer if (sc->sc_pp->ide_product != PCI_PRODUCT_INTEL_82371FB_IDE) {
1378 1.41 bouyer WDCDEBUG_PRINT((", sidetim=0x%x",
1379 1.41 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM)),
1380 1.41 bouyer DEBUG_PROBE);
1381 1.41 bouyer if (sc->sc_wdcdev.cap & WDC_CAPABILITY_UDMA) {
1382 1.41 bouyer WDCDEBUG_PRINT((", udamreg 0x%x",
1383 1.41 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG)),
1384 1.41 bouyer DEBUG_PROBE);
1385 1.41 bouyer }
1386 1.42 bouyer if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE ||
1387 1.44.2.4 bouyer sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AB_IDE ||
1388 1.44.2.4 bouyer sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE) {
1389 1.42 bouyer WDCDEBUG_PRINT((", IDE_CONTROL 0x%x",
1390 1.42 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_CONFIG)),
1391 1.42 bouyer DEBUG_PROBE);
1392 1.42 bouyer }
1393 1.42 bouyer
1394 1.41 bouyer }
1395 1.41 bouyer WDCDEBUG_PRINT(("\n"), DEBUG_PROBE);
1396 1.9 bouyer
1397 1.41 bouyer for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
1398 1.41 bouyer cp = &sc->pciide_channels[channel];
1399 1.41 bouyer /* PIIX is compat-only */
1400 1.41 bouyer if (pciide_chansetup(sc, channel, 0) == 0)
1401 1.41 bouyer continue;
1402 1.42 bouyer idetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM);
1403 1.42 bouyer if ((PIIX_IDETIM_READ(idetim, channel) &
1404 1.42 bouyer PIIX_IDETIM_IDE) == 0) {
1405 1.42 bouyer printf("%s: %s channel ignored (disabled)\n",
1406 1.42 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1407 1.44.2.1 bouyer continue;
1408 1.42 bouyer }
1409 1.42 bouyer /* PIIX are compat-only pciide devices */
1410 1.42 bouyer pciide_mapchan(pa, cp, 0, &cmdsize, &ctlsize, pciide_pci_intr);
1411 1.42 bouyer if (cp->hw_ok == 0)
1412 1.42 bouyer continue;
1413 1.44.2.1 bouyer if (pciide_chan_candisable(cp)) {
1414 1.42 bouyer idetim = PIIX_IDETIM_CLEAR(idetim, PIIX_IDETIM_IDE,
1415 1.42 bouyer channel);
1416 1.42 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_IDETIM,
1417 1.42 bouyer idetim);
1418 1.42 bouyer }
1419 1.42 bouyer pciide_map_compat_intr(pa, cp, channel, 0);
1420 1.41 bouyer if (cp->hw_ok == 0)
1421 1.41 bouyer continue;
1422 1.41 bouyer sc->sc_wdcdev.set_modes(&cp->wdc_channel);
1423 1.41 bouyer }
1424 1.9 bouyer
1425 1.41 bouyer WDCDEBUG_PRINT(("piix_setup_chip: idetim=0x%x",
1426 1.41 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM)),
1427 1.41 bouyer DEBUG_PROBE);
1428 1.41 bouyer if (sc->sc_pp->ide_product != PCI_PRODUCT_INTEL_82371FB_IDE) {
1429 1.41 bouyer WDCDEBUG_PRINT((", sidetim=0x%x",
1430 1.41 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM)),
1431 1.41 bouyer DEBUG_PROBE);
1432 1.41 bouyer if (sc->sc_wdcdev.cap & WDC_CAPABILITY_UDMA) {
1433 1.41 bouyer WDCDEBUG_PRINT((", udamreg 0x%x",
1434 1.41 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG)),
1435 1.41 bouyer DEBUG_PROBE);
1436 1.41 bouyer }
1437 1.42 bouyer if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE ||
1438 1.44.2.4 bouyer sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AB_IDE ||
1439 1.44.2.4 bouyer sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE) {
1440 1.42 bouyer WDCDEBUG_PRINT((", IDE_CONTROL 0x%x",
1441 1.42 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_CONFIG)),
1442 1.42 bouyer DEBUG_PROBE);
1443 1.42 bouyer }
1444 1.28 bouyer }
1445 1.41 bouyer WDCDEBUG_PRINT(("\n"), DEBUG_PROBE);
1446 1.28 bouyer }
1447 1.28 bouyer
1448 1.28 bouyer void
1449 1.28 bouyer piix_setup_channel(chp)
1450 1.28 bouyer struct channel_softc *chp;
1451 1.28 bouyer {
1452 1.28 bouyer u_int8_t mode[2], drive;
1453 1.28 bouyer u_int32_t oidetim, idetim, idedma_ctl;
1454 1.28 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
1455 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1456 1.28 bouyer struct ata_drive_datas *drvp = cp->wdc_channel.ch_drive;
1457 1.28 bouyer
1458 1.28 bouyer oidetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM);
1459 1.28 bouyer idetim = PIIX_IDETIM_CLEAR(oidetim, 0xffff, chp->channel);
1460 1.28 bouyer idedma_ctl = 0;
1461 1.28 bouyer
1462 1.28 bouyer /* set up new idetim: Enable IDE registers decode */
1463 1.28 bouyer idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE,
1464 1.28 bouyer chp->channel);
1465 1.9 bouyer
1466 1.28 bouyer /* setup DMA */
1467 1.28 bouyer pciide_channel_dma_setup(cp);
1468 1.9 bouyer
1469 1.28 bouyer /*
1470 1.28 bouyer * Here we have to mess up with drives mode: PIIX can't have
1471 1.28 bouyer * different timings for master and slave drives.
1472 1.28 bouyer * We need to find the best combination.
1473 1.28 bouyer */
1474 1.9 bouyer
1475 1.28 bouyer /* If both drives supports DMA, take the lower mode */
1476 1.28 bouyer if ((drvp[0].drive_flags & DRIVE_DMA) &&
1477 1.28 bouyer (drvp[1].drive_flags & DRIVE_DMA)) {
1478 1.28 bouyer mode[0] = mode[1] =
1479 1.28 bouyer min(drvp[0].DMA_mode, drvp[1].DMA_mode);
1480 1.28 bouyer drvp[0].DMA_mode = mode[0];
1481 1.38 bouyer drvp[1].DMA_mode = mode[1];
1482 1.28 bouyer goto ok;
1483 1.28 bouyer }
1484 1.28 bouyer /*
1485 1.28 bouyer * If only one drive supports DMA, use its mode, and
1486 1.28 bouyer * put the other one in PIO mode 0 if mode not compatible
1487 1.28 bouyer */
1488 1.28 bouyer if (drvp[0].drive_flags & DRIVE_DMA) {
1489 1.28 bouyer mode[0] = drvp[0].DMA_mode;
1490 1.28 bouyer mode[1] = drvp[1].PIO_mode;
1491 1.28 bouyer if (piix_isp_pio[mode[1]] != piix_isp_dma[mode[0]] ||
1492 1.28 bouyer piix_rtc_pio[mode[1]] != piix_rtc_dma[mode[0]])
1493 1.38 bouyer mode[1] = drvp[1].PIO_mode = 0;
1494 1.28 bouyer goto ok;
1495 1.28 bouyer }
1496 1.28 bouyer if (drvp[1].drive_flags & DRIVE_DMA) {
1497 1.28 bouyer mode[1] = drvp[1].DMA_mode;
1498 1.28 bouyer mode[0] = drvp[0].PIO_mode;
1499 1.28 bouyer if (piix_isp_pio[mode[0]] != piix_isp_dma[mode[1]] ||
1500 1.28 bouyer piix_rtc_pio[mode[0]] != piix_rtc_dma[mode[1]])
1501 1.38 bouyer mode[0] = drvp[0].PIO_mode = 0;
1502 1.28 bouyer goto ok;
1503 1.28 bouyer }
1504 1.28 bouyer /*
1505 1.28 bouyer * If both drives are not DMA, takes the lower mode, unless
1506 1.28 bouyer * one of them is PIO mode < 2
1507 1.28 bouyer */
1508 1.28 bouyer if (drvp[0].PIO_mode < 2) {
1509 1.38 bouyer mode[0] = drvp[0].PIO_mode = 0;
1510 1.28 bouyer mode[1] = drvp[1].PIO_mode;
1511 1.28 bouyer } else if (drvp[1].PIO_mode < 2) {
1512 1.38 bouyer mode[1] = drvp[1].PIO_mode = 0;
1513 1.28 bouyer mode[0] = drvp[0].PIO_mode;
1514 1.28 bouyer } else {
1515 1.28 bouyer mode[0] = mode[1] =
1516 1.28 bouyer min(drvp[1].PIO_mode, drvp[0].PIO_mode);
1517 1.38 bouyer drvp[0].PIO_mode = mode[0];
1518 1.38 bouyer drvp[1].PIO_mode = mode[1];
1519 1.28 bouyer }
1520 1.28 bouyer ok: /* The modes are setup */
1521 1.28 bouyer for (drive = 0; drive < 2; drive++) {
1522 1.28 bouyer if (drvp[drive].drive_flags & DRIVE_DMA) {
1523 1.9 bouyer idetim |= piix_setup_idetim_timings(
1524 1.28 bouyer mode[drive], 1, chp->channel);
1525 1.28 bouyer goto end;
1526 1.38 bouyer }
1527 1.28 bouyer }
1528 1.28 bouyer /* If we are there, none of the drives are DMA */
1529 1.28 bouyer if (mode[0] >= 2)
1530 1.28 bouyer idetim |= piix_setup_idetim_timings(
1531 1.28 bouyer mode[0], 0, chp->channel);
1532 1.28 bouyer else
1533 1.28 bouyer idetim |= piix_setup_idetim_timings(
1534 1.28 bouyer mode[1], 0, chp->channel);
1535 1.28 bouyer end: /*
1536 1.28 bouyer * timing mode is now set up in the controller. Enable
1537 1.28 bouyer * it per-drive
1538 1.28 bouyer */
1539 1.28 bouyer for (drive = 0; drive < 2; drive++) {
1540 1.28 bouyer /* If no drive, skip */
1541 1.28 bouyer if ((drvp[drive].drive_flags & DRIVE) == 0)
1542 1.28 bouyer continue;
1543 1.28 bouyer idetim |= piix_setup_idetim_drvs(&drvp[drive]);
1544 1.28 bouyer if (drvp[drive].drive_flags & DRIVE_DMA)
1545 1.28 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
1546 1.28 bouyer }
1547 1.28 bouyer if (idedma_ctl != 0) {
1548 1.28 bouyer /* Add software bits in status register */
1549 1.28 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1550 1.28 bouyer IDEDMA_CTL + (IDEDMA_SCH_OFFSET * chp->channel),
1551 1.28 bouyer idedma_ctl);
1552 1.9 bouyer }
1553 1.28 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_IDETIM, idetim);
1554 1.28 bouyer pciide_print_modes(cp);
1555 1.9 bouyer }
1556 1.9 bouyer
1557 1.9 bouyer void
1558 1.41 bouyer piix3_4_setup_channel(chp)
1559 1.41 bouyer struct channel_softc *chp;
1560 1.28 bouyer {
1561 1.28 bouyer struct ata_drive_datas *drvp;
1562 1.42 bouyer u_int32_t oidetim, idetim, sidetim, udmareg, ideconf, idedma_ctl;
1563 1.28 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
1564 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1565 1.28 bouyer int drive;
1566 1.42 bouyer int channel = chp->channel;
1567 1.28 bouyer
1568 1.28 bouyer oidetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM);
1569 1.28 bouyer sidetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM);
1570 1.28 bouyer udmareg = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG);
1571 1.42 bouyer ideconf = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_CONFIG);
1572 1.42 bouyer idetim = PIIX_IDETIM_CLEAR(oidetim, 0xffff, channel);
1573 1.42 bouyer sidetim &= ~(PIIX_SIDETIM_ISP_MASK(channel) |
1574 1.42 bouyer PIIX_SIDETIM_RTC_MASK(channel));
1575 1.28 bouyer
1576 1.28 bouyer idedma_ctl = 0;
1577 1.28 bouyer /* If channel disabled, no need to go further */
1578 1.42 bouyer if ((PIIX_IDETIM_READ(oidetim, channel) & PIIX_IDETIM_IDE) == 0)
1579 1.28 bouyer return;
1580 1.28 bouyer /* set up new idetim: Enable IDE registers decode */
1581 1.42 bouyer idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE, channel);
1582 1.28 bouyer
1583 1.28 bouyer /* setup DMA if needed */
1584 1.28 bouyer pciide_channel_dma_setup(cp);
1585 1.28 bouyer
1586 1.28 bouyer for (drive = 0; drive < 2; drive++) {
1587 1.42 bouyer udmareg &= ~(PIIX_UDMACTL_DRV_EN(channel, drive) |
1588 1.42 bouyer PIIX_UDMATIM_SET(0x3, channel, drive));
1589 1.28 bouyer drvp = &chp->ch_drive[drive];
1590 1.28 bouyer /* If no drive, skip */
1591 1.28 bouyer if ((drvp->drive_flags & DRIVE) == 0)
1592 1.9 bouyer continue;
1593 1.28 bouyer if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
1594 1.28 bouyer (drvp->drive_flags & DRIVE_UDMA) == 0))
1595 1.28 bouyer goto pio;
1596 1.28 bouyer
1597 1.42 bouyer if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE ||
1598 1.44.2.4 bouyer sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AB_IDE ||
1599 1.44.2.4 bouyer sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE) {
1600 1.42 bouyer ideconf |= PIIX_CONFIG_PINGPONG;
1601 1.42 bouyer }
1602 1.44.2.4 bouyer if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE) {
1603 1.44.2.4 bouyer /* setup Ultra/100 */
1604 1.44.2.4 bouyer if (drvp->UDMA_mode > 2 &&
1605 1.44.2.4 bouyer (ideconf & PIIX_CONFIG_CR(channel, drive)) == 0)
1606 1.44.2.4 bouyer drvp->UDMA_mode = 2;
1607 1.44.2.4 bouyer if (drvp->UDMA_mode > 4) {
1608 1.44.2.4 bouyer ideconf |= PIIX_CONFIG_UDMA100(channel, drive);
1609 1.44.2.4 bouyer } else {
1610 1.44.2.4 bouyer ideconf &= ~PIIX_CONFIG_UDMA100(channel, drive);
1611 1.44.2.4 bouyer if (drvp->UDMA_mode > 2) {
1612 1.44.2.4 bouyer ideconf |= PIIX_CONFIG_UDMA66(channel,
1613 1.44.2.4 bouyer drive);
1614 1.44.2.4 bouyer } else {
1615 1.44.2.4 bouyer ideconf &= ~PIIX_CONFIG_UDMA66(channel,
1616 1.44.2.4 bouyer drive);
1617 1.44.2.4 bouyer }
1618 1.44.2.4 bouyer }
1619 1.44.2.4 bouyer }
1620 1.42 bouyer if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE) {
1621 1.42 bouyer /* setup Ultra/66 */
1622 1.42 bouyer if (drvp->UDMA_mode > 2 &&
1623 1.42 bouyer (ideconf & PIIX_CONFIG_CR(channel, drive)) == 0)
1624 1.42 bouyer drvp->UDMA_mode = 2;
1625 1.42 bouyer if (drvp->UDMA_mode > 2)
1626 1.42 bouyer ideconf |= PIIX_CONFIG_UDMA66(channel, drive);
1627 1.42 bouyer else
1628 1.42 bouyer ideconf &= ~PIIX_CONFIG_UDMA66(channel, drive);
1629 1.42 bouyer }
1630 1.28 bouyer if ((chp->wdc->cap & WDC_CAPABILITY_UDMA) &&
1631 1.28 bouyer (drvp->drive_flags & DRIVE_UDMA)) {
1632 1.28 bouyer /* use Ultra/DMA */
1633 1.28 bouyer drvp->drive_flags &= ~DRIVE_DMA;
1634 1.42 bouyer udmareg |= PIIX_UDMACTL_DRV_EN( channel, drive);
1635 1.28 bouyer udmareg |= PIIX_UDMATIM_SET(
1636 1.42 bouyer piix4_sct_udma[drvp->UDMA_mode], channel, drive);
1637 1.28 bouyer } else {
1638 1.28 bouyer /* use Multiword DMA */
1639 1.28 bouyer drvp->drive_flags &= ~DRIVE_UDMA;
1640 1.9 bouyer if (drive == 0) {
1641 1.9 bouyer idetim |= piix_setup_idetim_timings(
1642 1.42 bouyer drvp->DMA_mode, 1, channel);
1643 1.9 bouyer } else {
1644 1.9 bouyer sidetim |= piix_setup_sidetim_timings(
1645 1.42 bouyer drvp->DMA_mode, 1, channel);
1646 1.9 bouyer idetim =PIIX_IDETIM_SET(idetim,
1647 1.42 bouyer PIIX_IDETIM_SITRE, channel);
1648 1.9 bouyer }
1649 1.9 bouyer }
1650 1.28 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
1651 1.28 bouyer
1652 1.28 bouyer pio: /* use PIO mode */
1653 1.28 bouyer idetim |= piix_setup_idetim_drvs(drvp);
1654 1.28 bouyer if (drive == 0) {
1655 1.28 bouyer idetim |= piix_setup_idetim_timings(
1656 1.42 bouyer drvp->PIO_mode, 0, channel);
1657 1.28 bouyer } else {
1658 1.28 bouyer sidetim |= piix_setup_sidetim_timings(
1659 1.42 bouyer drvp->PIO_mode, 0, channel);
1660 1.28 bouyer idetim =PIIX_IDETIM_SET(idetim,
1661 1.42 bouyer PIIX_IDETIM_SITRE, channel);
1662 1.9 bouyer }
1663 1.9 bouyer }
1664 1.28 bouyer if (idedma_ctl != 0) {
1665 1.28 bouyer /* Add software bits in status register */
1666 1.28 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1667 1.42 bouyer IDEDMA_CTL + (IDEDMA_SCH_OFFSET * channel),
1668 1.28 bouyer idedma_ctl);
1669 1.9 bouyer }
1670 1.28 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_IDETIM, idetim);
1671 1.28 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM, sidetim);
1672 1.28 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG, udmareg);
1673 1.42 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_CONFIG, ideconf);
1674 1.28 bouyer pciide_print_modes(cp);
1675 1.9 bouyer }
1676 1.8 drochner
1677 1.28 bouyer
1678 1.9 bouyer /* setup ISP and RTC fields, based on mode */
1679 1.9 bouyer static u_int32_t
1680 1.9 bouyer piix_setup_idetim_timings(mode, dma, channel)
1681 1.9 bouyer u_int8_t mode;
1682 1.9 bouyer u_int8_t dma;
1683 1.9 bouyer u_int8_t channel;
1684 1.9 bouyer {
1685 1.9 bouyer
1686 1.9 bouyer if (dma)
1687 1.9 bouyer return PIIX_IDETIM_SET(0,
1688 1.9 bouyer PIIX_IDETIM_ISP_SET(piix_isp_dma[mode]) |
1689 1.9 bouyer PIIX_IDETIM_RTC_SET(piix_rtc_dma[mode]),
1690 1.9 bouyer channel);
1691 1.9 bouyer else
1692 1.9 bouyer return PIIX_IDETIM_SET(0,
1693 1.9 bouyer PIIX_IDETIM_ISP_SET(piix_isp_pio[mode]) |
1694 1.9 bouyer PIIX_IDETIM_RTC_SET(piix_rtc_pio[mode]),
1695 1.9 bouyer channel);
1696 1.8 drochner }
1697 1.8 drochner
1698 1.9 bouyer /* setup DTE, PPE, IE and TIME field based on PIO mode */
1699 1.9 bouyer static u_int32_t
1700 1.9 bouyer piix_setup_idetim_drvs(drvp)
1701 1.9 bouyer struct ata_drive_datas *drvp;
1702 1.6 cgd {
1703 1.9 bouyer u_int32_t ret = 0;
1704 1.9 bouyer struct channel_softc *chp = drvp->chnl_softc;
1705 1.9 bouyer u_int8_t channel = chp->channel;
1706 1.9 bouyer u_int8_t drive = drvp->drive;
1707 1.9 bouyer
1708 1.9 bouyer /*
1709 1.9 bouyer * If drive is using UDMA, timings setups are independant
1710 1.9 bouyer * So just check DMA and PIO here.
1711 1.9 bouyer */
1712 1.9 bouyer if (drvp->drive_flags & DRIVE_DMA) {
1713 1.9 bouyer /* if mode = DMA mode 0, use compatible timings */
1714 1.9 bouyer if ((drvp->drive_flags & DRIVE_DMA) &&
1715 1.9 bouyer drvp->DMA_mode == 0) {
1716 1.9 bouyer drvp->PIO_mode = 0;
1717 1.9 bouyer return ret;
1718 1.9 bouyer }
1719 1.9 bouyer ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_TIME(drive), channel);
1720 1.9 bouyer /*
1721 1.9 bouyer * PIO and DMA timings are the same, use fast timings for PIO
1722 1.9 bouyer * too, else use compat timings.
1723 1.9 bouyer */
1724 1.9 bouyer if ((piix_isp_pio[drvp->PIO_mode] !=
1725 1.9 bouyer piix_isp_dma[drvp->DMA_mode]) ||
1726 1.9 bouyer (piix_rtc_pio[drvp->PIO_mode] !=
1727 1.9 bouyer piix_rtc_dma[drvp->DMA_mode]))
1728 1.9 bouyer drvp->PIO_mode = 0;
1729 1.9 bouyer /* if PIO mode <= 2, use compat timings for PIO */
1730 1.9 bouyer if (drvp->PIO_mode <= 2) {
1731 1.9 bouyer ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_DTE(drive),
1732 1.9 bouyer channel);
1733 1.9 bouyer return ret;
1734 1.9 bouyer }
1735 1.9 bouyer }
1736 1.6 cgd
1737 1.6 cgd /*
1738 1.9 bouyer * Now setup PIO modes. If mode < 2, use compat timings.
1739 1.9 bouyer * Else enable fast timings. Enable IORDY and prefetch/post
1740 1.9 bouyer * if PIO mode >= 3.
1741 1.6 cgd */
1742 1.6 cgd
1743 1.9 bouyer if (drvp->PIO_mode < 2)
1744 1.9 bouyer return ret;
1745 1.9 bouyer
1746 1.9 bouyer ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_TIME(drive), channel);
1747 1.9 bouyer if (drvp->PIO_mode >= 3) {
1748 1.9 bouyer ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_IE(drive), channel);
1749 1.9 bouyer ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_PPE(drive), channel);
1750 1.9 bouyer }
1751 1.9 bouyer return ret;
1752 1.9 bouyer }
1753 1.9 bouyer
1754 1.9 bouyer /* setup values in SIDETIM registers, based on mode */
1755 1.9 bouyer static u_int32_t
1756 1.9 bouyer piix_setup_sidetim_timings(mode, dma, channel)
1757 1.9 bouyer u_int8_t mode;
1758 1.9 bouyer u_int8_t dma;
1759 1.9 bouyer u_int8_t channel;
1760 1.9 bouyer {
1761 1.9 bouyer if (dma)
1762 1.9 bouyer return PIIX_SIDETIM_ISP_SET(piix_isp_dma[mode], channel) |
1763 1.9 bouyer PIIX_SIDETIM_RTC_SET(piix_rtc_dma[mode], channel);
1764 1.9 bouyer else
1765 1.9 bouyer return PIIX_SIDETIM_ISP_SET(piix_isp_pio[mode], channel) |
1766 1.9 bouyer PIIX_SIDETIM_RTC_SET(piix_rtc_pio[mode], channel);
1767 1.9 bouyer }
1768 1.9 bouyer
1769 1.9 bouyer void
1770 1.44.2.1 bouyer amd756_chip_map(sc, pa)
1771 1.44.2.1 bouyer struct pciide_softc *sc;
1772 1.44.2.1 bouyer struct pci_attach_args *pa;
1773 1.44.2.1 bouyer {
1774 1.44.2.1 bouyer struct pciide_channel *cp;
1775 1.44.2.1 bouyer pcireg_t interface = PCI_INTERFACE(pa->pa_class);
1776 1.44.2.1 bouyer int channel;
1777 1.44.2.1 bouyer pcireg_t chanenable;
1778 1.44.2.1 bouyer bus_size_t cmdsize, ctlsize;
1779 1.44.2.1 bouyer
1780 1.44.2.1 bouyer if (pciide_chipen(sc, pa) == 0)
1781 1.44.2.1 bouyer return;
1782 1.44.2.1 bouyer printf("%s: bus-master DMA support present",
1783 1.44.2.1 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
1784 1.44.2.1 bouyer pciide_mapreg_dma(sc, pa);
1785 1.44.2.1 bouyer printf("\n");
1786 1.44.2.1 bouyer sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
1787 1.44.2.1 bouyer WDC_CAPABILITY_MODE;
1788 1.44.2.1 bouyer if (sc->sc_dma_ok) {
1789 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
1790 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_IRQACK;
1791 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
1792 1.44.2.1 bouyer }
1793 1.44.2.1 bouyer sc->sc_wdcdev.PIO_cap = 4;
1794 1.44.2.1 bouyer sc->sc_wdcdev.DMA_cap = 2;
1795 1.44.2.1 bouyer sc->sc_wdcdev.UDMA_cap = 4;
1796 1.44.2.1 bouyer sc->sc_wdcdev.set_modes = amd756_setup_channel;
1797 1.44.2.1 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
1798 1.44.2.1 bouyer sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
1799 1.44.2.1 bouyer chanenable = pci_conf_read(sc->sc_pc, sc->sc_tag, AMD756_CHANSTATUS_EN);
1800 1.44.2.1 bouyer
1801 1.44.2.1 bouyer WDCDEBUG_PRINT(("amd756_chip_map: Channel enable=0x%x\n", chanenable),
1802 1.44.2.1 bouyer DEBUG_PROBE);
1803 1.44.2.1 bouyer for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
1804 1.44.2.1 bouyer cp = &sc->pciide_channels[channel];
1805 1.44.2.1 bouyer if (pciide_chansetup(sc, channel, interface) == 0)
1806 1.44.2.1 bouyer continue;
1807 1.44.2.1 bouyer
1808 1.44.2.1 bouyer if ((chanenable & AMD756_CHAN_EN(channel)) == 0) {
1809 1.44.2.1 bouyer printf("%s: %s channel ignored (disabled)\n",
1810 1.44.2.1 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1811 1.44.2.1 bouyer continue;
1812 1.44.2.1 bouyer }
1813 1.44.2.1 bouyer pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
1814 1.44.2.1 bouyer pciide_pci_intr);
1815 1.44.2.1 bouyer
1816 1.44.2.1 bouyer if (pciide_chan_candisable(cp))
1817 1.44.2.1 bouyer chanenable &= ~AMD756_CHAN_EN(channel);
1818 1.44.2.1 bouyer pciide_map_compat_intr(pa, cp, channel, interface);
1819 1.44.2.1 bouyer if (cp->hw_ok == 0)
1820 1.44.2.1 bouyer continue;
1821 1.44.2.1 bouyer
1822 1.44.2.1 bouyer amd756_setup_channel(&cp->wdc_channel);
1823 1.44.2.1 bouyer }
1824 1.44.2.1 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, AMD756_CHANSTATUS_EN,
1825 1.44.2.1 bouyer chanenable);
1826 1.44.2.1 bouyer return;
1827 1.44.2.1 bouyer }
1828 1.44.2.1 bouyer
1829 1.44.2.1 bouyer void
1830 1.44.2.1 bouyer amd756_setup_channel(chp)
1831 1.44.2.1 bouyer struct channel_softc *chp;
1832 1.44.2.1 bouyer {
1833 1.44.2.1 bouyer u_int32_t udmatim_reg, datatim_reg;
1834 1.44.2.1 bouyer u_int8_t idedma_ctl;
1835 1.44.2.1 bouyer int mode, drive;
1836 1.44.2.1 bouyer struct ata_drive_datas *drvp;
1837 1.44.2.1 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
1838 1.44.2.1 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1839 1.44.2.1 bouyer #ifndef PCIIDE_AMD756_ENABLEDMA
1840 1.44.2.1 bouyer int rev = PCI_REVISION(
1841 1.44.2.1 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG));
1842 1.44.2.1 bouyer #endif
1843 1.44.2.1 bouyer
1844 1.44.2.1 bouyer idedma_ctl = 0;
1845 1.44.2.1 bouyer datatim_reg = pci_conf_read(sc->sc_pc, sc->sc_tag, AMD756_DATATIM);
1846 1.44.2.1 bouyer udmatim_reg = pci_conf_read(sc->sc_pc, sc->sc_tag, AMD756_UDMA);
1847 1.44.2.1 bouyer datatim_reg &= ~AMD756_DATATIM_MASK(chp->channel);
1848 1.44.2.1 bouyer udmatim_reg &= ~AMD756_UDMA_MASK(chp->channel);
1849 1.44.2.1 bouyer
1850 1.44.2.1 bouyer /* setup DMA if needed */
1851 1.44.2.1 bouyer pciide_channel_dma_setup(cp);
1852 1.44.2.1 bouyer
1853 1.44.2.1 bouyer for (drive = 0; drive < 2; drive++) {
1854 1.44.2.1 bouyer drvp = &chp->ch_drive[drive];
1855 1.44.2.1 bouyer /* If no drive, skip */
1856 1.44.2.1 bouyer if ((drvp->drive_flags & DRIVE) == 0)
1857 1.44.2.1 bouyer continue;
1858 1.44.2.1 bouyer /* add timing values, setup DMA if needed */
1859 1.44.2.1 bouyer if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
1860 1.44.2.1 bouyer (drvp->drive_flags & DRIVE_UDMA) == 0)) {
1861 1.44.2.1 bouyer mode = drvp->PIO_mode;
1862 1.44.2.1 bouyer goto pio;
1863 1.44.2.1 bouyer }
1864 1.44.2.1 bouyer if ((chp->wdc->cap & WDC_CAPABILITY_UDMA) &&
1865 1.44.2.1 bouyer (drvp->drive_flags & DRIVE_UDMA)) {
1866 1.44.2.1 bouyer /* use Ultra/DMA */
1867 1.44.2.1 bouyer drvp->drive_flags &= ~DRIVE_DMA;
1868 1.44.2.1 bouyer udmatim_reg |= AMD756_UDMA_EN(chp->channel, drive) |
1869 1.44.2.1 bouyer AMD756_UDMA_EN_MTH(chp->channel, drive) |
1870 1.44.2.1 bouyer AMD756_UDMA_TIME(chp->channel, drive,
1871 1.44.2.1 bouyer amd756_udma_tim[drvp->UDMA_mode]);
1872 1.44.2.1 bouyer /* can use PIO timings, MW DMA unused */
1873 1.44.2.1 bouyer mode = drvp->PIO_mode;
1874 1.44.2.1 bouyer } else {
1875 1.44.2.1 bouyer /* use Multiword DMA, but only if revision is OK */
1876 1.44.2.1 bouyer drvp->drive_flags &= ~DRIVE_UDMA;
1877 1.44.2.1 bouyer #ifndef PCIIDE_AMD756_ENABLEDMA
1878 1.44.2.1 bouyer /*
1879 1.44.2.1 bouyer * The workaround doesn't seem to be necessary
1880 1.44.2.1 bouyer * with all drives, so it can be disabled by
1881 1.44.2.1 bouyer * PCIIDE_AMD756_ENABLEDMA. It causes a hard hang if
1882 1.44.2.1 bouyer * triggered.
1883 1.44.2.1 bouyer */
1884 1.44.2.1 bouyer if (AMD756_CHIPREV_DISABLEDMA(rev)) {
1885 1.44.2.1 bouyer printf("%s:%d:%d: multi-word DMA disabled due "
1886 1.44.2.1 bouyer "to chip revision\n",
1887 1.44.2.1 bouyer sc->sc_wdcdev.sc_dev.dv_xname,
1888 1.44.2.1 bouyer chp->channel, drive);
1889 1.44.2.1 bouyer mode = drvp->PIO_mode;
1890 1.44.2.1 bouyer drvp->drive_flags &= ~DRIVE_DMA;
1891 1.44.2.1 bouyer goto pio;
1892 1.44.2.1 bouyer }
1893 1.44.2.1 bouyer #endif
1894 1.44.2.1 bouyer /* mode = min(pio, dma+2) */
1895 1.44.2.1 bouyer if (drvp->PIO_mode <= (drvp->DMA_mode +2))
1896 1.44.2.1 bouyer mode = drvp->PIO_mode;
1897 1.44.2.1 bouyer else
1898 1.44.2.1 bouyer mode = drvp->DMA_mode + 2;
1899 1.44.2.1 bouyer }
1900 1.44.2.1 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
1901 1.44.2.1 bouyer
1902 1.44.2.1 bouyer pio: /* setup PIO mode */
1903 1.44.2.1 bouyer if (mode <= 2) {
1904 1.44.2.1 bouyer drvp->DMA_mode = 0;
1905 1.44.2.1 bouyer drvp->PIO_mode = 0;
1906 1.44.2.1 bouyer mode = 0;
1907 1.44.2.1 bouyer } else {
1908 1.44.2.1 bouyer drvp->PIO_mode = mode;
1909 1.44.2.1 bouyer drvp->DMA_mode = mode - 2;
1910 1.44.2.1 bouyer }
1911 1.44.2.1 bouyer datatim_reg |=
1912 1.44.2.1 bouyer AMD756_DATATIM_PULSE(chp->channel, drive,
1913 1.44.2.1 bouyer amd756_pio_set[mode]) |
1914 1.44.2.1 bouyer AMD756_DATATIM_RECOV(chp->channel, drive,
1915 1.44.2.1 bouyer amd756_pio_rec[mode]);
1916 1.44.2.1 bouyer }
1917 1.44.2.1 bouyer if (idedma_ctl != 0) {
1918 1.44.2.1 bouyer /* Add software bits in status register */
1919 1.44.2.1 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1920 1.44.2.1 bouyer IDEDMA_CTL + (IDEDMA_SCH_OFFSET * chp->channel),
1921 1.44.2.1 bouyer idedma_ctl);
1922 1.44.2.1 bouyer }
1923 1.44.2.1 bouyer pciide_print_modes(cp);
1924 1.44.2.1 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, AMD756_DATATIM, datatim_reg);
1925 1.44.2.1 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, AMD756_UDMA, udmatim_reg);
1926 1.44.2.1 bouyer }
1927 1.44.2.1 bouyer
1928 1.44.2.1 bouyer void
1929 1.41 bouyer apollo_chip_map(sc, pa)
1930 1.9 bouyer struct pciide_softc *sc;
1931 1.41 bouyer struct pci_attach_args *pa;
1932 1.9 bouyer {
1933 1.41 bouyer struct pciide_channel *cp;
1934 1.44.2.1 bouyer pcireg_t interface = PCI_INTERFACE(pa->pa_class);
1935 1.44.2.1 bouyer int rev = PCI_REVISION(pa->pa_class);
1936 1.41 bouyer int channel;
1937 1.41 bouyer u_int32_t ideconf;
1938 1.41 bouyer bus_size_t cmdsize, ctlsize;
1939 1.41 bouyer
1940 1.41 bouyer if (pciide_chipen(sc, pa) == 0)
1941 1.41 bouyer return;
1942 1.41 bouyer printf("%s: bus-master DMA support present",
1943 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
1944 1.41 bouyer pciide_mapreg_dma(sc, pa);
1945 1.41 bouyer printf("\n");
1946 1.44.2.1 bouyer sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
1947 1.44.2.1 bouyer WDC_CAPABILITY_MODE;
1948 1.41 bouyer if (sc->sc_dma_ok) {
1949 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
1950 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
1951 1.44.2.1 bouyer if (sc->sc_pp->ide_product == PCI_PRODUCT_VIATECH_VT82C586A_IDE
1952 1.44.2.1 bouyer && rev >= 6)
1953 1.41 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
1954 1.41 bouyer }
1955 1.27 bouyer sc->sc_wdcdev.PIO_cap = 4;
1956 1.27 bouyer sc->sc_wdcdev.DMA_cap = 2;
1957 1.27 bouyer sc->sc_wdcdev.UDMA_cap = 2;
1958 1.28 bouyer sc->sc_wdcdev.set_modes = apollo_setup_channel;
1959 1.41 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
1960 1.41 bouyer sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
1961 1.9 bouyer
1962 1.41 bouyer WDCDEBUG_PRINT(("apollo_chip_map: old APO_IDECONF=0x%x, "
1963 1.9 bouyer "APO_CTLMISC=0x%x, APO_DATATIM=0x%x, APO_UDMA=0x%x\n",
1964 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, APO_IDECONF),
1965 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, APO_CTLMISC),
1966 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, APO_DATATIM),
1967 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, APO_UDMA)),
1968 1.9 bouyer DEBUG_PROBE);
1969 1.9 bouyer
1970 1.18 drochner for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
1971 1.41 bouyer cp = &sc->pciide_channels[channel];
1972 1.41 bouyer if (pciide_chansetup(sc, channel, interface) == 0)
1973 1.41 bouyer continue;
1974 1.41 bouyer
1975 1.41 bouyer ideconf = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_IDECONF);
1976 1.41 bouyer if ((ideconf & APO_IDECONF_EN(channel)) == 0) {
1977 1.41 bouyer printf("%s: %s channel ignored (disabled)\n",
1978 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1979 1.44.2.1 bouyer continue;
1980 1.41 bouyer }
1981 1.41 bouyer pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
1982 1.41 bouyer pciide_pci_intr);
1983 1.41 bouyer if (cp->hw_ok == 0)
1984 1.41 bouyer continue;
1985 1.44.2.1 bouyer if (pciide_chan_candisable(cp)) {
1986 1.41 bouyer ideconf &= ~APO_IDECONF_EN(channel);
1987 1.41 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, APO_IDECONF,
1988 1.41 bouyer ideconf);
1989 1.41 bouyer }
1990 1.41 bouyer pciide_map_compat_intr(pa, cp, channel, interface);
1991 1.41 bouyer
1992 1.41 bouyer if (cp->hw_ok == 0)
1993 1.41 bouyer continue;
1994 1.28 bouyer apollo_setup_channel(&sc->pciide_channels[channel].wdc_channel);
1995 1.28 bouyer }
1996 1.41 bouyer WDCDEBUG_PRINT(("apollo_chip_map: APO_DATATIM=0x%x, APO_UDMA=0x%x\n",
1997 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, APO_DATATIM),
1998 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, APO_UDMA)), DEBUG_PROBE);
1999 1.28 bouyer }
2000 1.28 bouyer
2001 1.28 bouyer void
2002 1.28 bouyer apollo_setup_channel(chp)
2003 1.28 bouyer struct channel_softc *chp;
2004 1.28 bouyer {
2005 1.28 bouyer u_int32_t udmatim_reg, datatim_reg;
2006 1.28 bouyer u_int8_t idedma_ctl;
2007 1.28 bouyer int mode, drive;
2008 1.28 bouyer struct ata_drive_datas *drvp;
2009 1.28 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
2010 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2011 1.28 bouyer
2012 1.28 bouyer idedma_ctl = 0;
2013 1.28 bouyer datatim_reg = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_DATATIM);
2014 1.28 bouyer udmatim_reg = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_UDMA);
2015 1.28 bouyer datatim_reg &= ~APO_DATATIM_MASK(chp->channel);
2016 1.44.2.4 bouyer udmatim_reg &= ~APO_UDMA_MASK(chp->channel);
2017 1.28 bouyer
2018 1.28 bouyer /* setup DMA if needed */
2019 1.28 bouyer pciide_channel_dma_setup(cp);
2020 1.9 bouyer
2021 1.28 bouyer for (drive = 0; drive < 2; drive++) {
2022 1.28 bouyer drvp = &chp->ch_drive[drive];
2023 1.28 bouyer /* If no drive, skip */
2024 1.28 bouyer if ((drvp->drive_flags & DRIVE) == 0)
2025 1.28 bouyer continue;
2026 1.28 bouyer /* add timing values, setup DMA if needed */
2027 1.28 bouyer if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
2028 1.28 bouyer (drvp->drive_flags & DRIVE_UDMA) == 0)) {
2029 1.28 bouyer mode = drvp->PIO_mode;
2030 1.28 bouyer goto pio;
2031 1.8 drochner }
2032 1.28 bouyer if ((chp->wdc->cap & WDC_CAPABILITY_UDMA) &&
2033 1.28 bouyer (drvp->drive_flags & DRIVE_UDMA)) {
2034 1.28 bouyer /* use Ultra/DMA */
2035 1.28 bouyer drvp->drive_flags &= ~DRIVE_DMA;
2036 1.28 bouyer udmatim_reg |= APO_UDMA_EN(chp->channel, drive) |
2037 1.28 bouyer APO_UDMA_EN_MTH(chp->channel, drive) |
2038 1.28 bouyer APO_UDMA_TIME(chp->channel, drive,
2039 1.28 bouyer apollo_udma_tim[drvp->UDMA_mode]);
2040 1.28 bouyer /* can use PIO timings, MW DMA unused */
2041 1.28 bouyer mode = drvp->PIO_mode;
2042 1.28 bouyer } else {
2043 1.28 bouyer /* use Multiword DMA */
2044 1.28 bouyer drvp->drive_flags &= ~DRIVE_UDMA;
2045 1.28 bouyer /* mode = min(pio, dma+2) */
2046 1.28 bouyer if (drvp->PIO_mode <= (drvp->DMA_mode +2))
2047 1.28 bouyer mode = drvp->PIO_mode;
2048 1.28 bouyer else
2049 1.37 bouyer mode = drvp->DMA_mode + 2;
2050 1.8 drochner }
2051 1.28 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
2052 1.28 bouyer
2053 1.28 bouyer pio: /* setup PIO mode */
2054 1.37 bouyer if (mode <= 2) {
2055 1.37 bouyer drvp->DMA_mode = 0;
2056 1.37 bouyer drvp->PIO_mode = 0;
2057 1.37 bouyer mode = 0;
2058 1.37 bouyer } else {
2059 1.37 bouyer drvp->PIO_mode = mode;
2060 1.37 bouyer drvp->DMA_mode = mode - 2;
2061 1.37 bouyer }
2062 1.28 bouyer datatim_reg |=
2063 1.28 bouyer APO_DATATIM_PULSE(chp->channel, drive,
2064 1.28 bouyer apollo_pio_set[mode]) |
2065 1.28 bouyer APO_DATATIM_RECOV(chp->channel, drive,
2066 1.28 bouyer apollo_pio_rec[mode]);
2067 1.28 bouyer }
2068 1.28 bouyer if (idedma_ctl != 0) {
2069 1.28 bouyer /* Add software bits in status register */
2070 1.28 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
2071 1.28 bouyer IDEDMA_CTL + (IDEDMA_SCH_OFFSET * chp->channel),
2072 1.28 bouyer idedma_ctl);
2073 1.9 bouyer }
2074 1.28 bouyer pciide_print_modes(cp);
2075 1.28 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, APO_DATATIM, datatim_reg);
2076 1.28 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, APO_UDMA, udmatim_reg);
2077 1.9 bouyer }
2078 1.6 cgd
2079 1.18 drochner void
2080 1.41 bouyer cmd_channel_map(pa, sc, channel)
2081 1.9 bouyer struct pci_attach_args *pa;
2082 1.41 bouyer struct pciide_softc *sc;
2083 1.41 bouyer int channel;
2084 1.9 bouyer {
2085 1.41 bouyer struct pciide_channel *cp = &sc->pciide_channels[channel];
2086 1.18 drochner bus_size_t cmdsize, ctlsize;
2087 1.41 bouyer u_int8_t ctrl = pciide_pci_read(sc->sc_pc, sc->sc_tag, CMD_CTRL);
2088 1.44.2.1 bouyer int interface;
2089 1.44.2.1 bouyer
2090 1.44.2.1 bouyer /*
2091 1.44.2.1 bouyer * The 0648/0649 can be told to identify as a RAID controller.
2092 1.44.2.1 bouyer * In this case, we have to fake interface
2093 1.44.2.1 bouyer */
2094 1.44.2.1 bouyer if (PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_MASS_STORAGE_IDE) {
2095 1.44.2.1 bouyer interface = PCIIDE_INTERFACE_SETTABLE(0) |
2096 1.44.2.1 bouyer PCIIDE_INTERFACE_SETTABLE(1);
2097 1.44.2.1 bouyer if (pciide_pci_read(pa->pa_pc, pa->pa_tag, CMD_CONF) &
2098 1.44.2.1 bouyer CMD_CONF_DSA1)
2099 1.44.2.1 bouyer interface |= PCIIDE_INTERFACE_PCI(0) |
2100 1.44.2.1 bouyer PCIIDE_INTERFACE_PCI(1);
2101 1.44.2.1 bouyer } else {
2102 1.44.2.1 bouyer interface = PCI_INTERFACE(pa->pa_class);
2103 1.44.2.1 bouyer }
2104 1.6 cgd
2105 1.41 bouyer sc->wdc_chanarray[channel] = &cp->wdc_channel;
2106 1.41 bouyer cp->name = PCIIDE_CHANNEL_NAME(channel);
2107 1.41 bouyer cp->wdc_channel.channel = channel;
2108 1.41 bouyer cp->wdc_channel.wdc = &sc->sc_wdcdev;
2109 1.41 bouyer
2110 1.41 bouyer if (channel > 0) {
2111 1.41 bouyer cp->wdc_channel.ch_queue =
2112 1.41 bouyer sc->pciide_channels[0].wdc_channel.ch_queue;
2113 1.41 bouyer } else {
2114 1.41 bouyer cp->wdc_channel.ch_queue =
2115 1.41 bouyer malloc(sizeof(struct channel_queue), M_DEVBUF, M_NOWAIT);
2116 1.41 bouyer }
2117 1.41 bouyer if (cp->wdc_channel.ch_queue == NULL) {
2118 1.41 bouyer printf("%s %s channel: "
2119 1.41 bouyer "can't allocate memory for command queue",
2120 1.18 drochner sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
2121 1.41 bouyer return;
2122 1.18 drochner }
2123 1.18 drochner
2124 1.41 bouyer printf("%s: %s channel %s to %s mode\n",
2125 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name,
2126 1.41 bouyer (interface & PCIIDE_INTERFACE_SETTABLE(channel)) ?
2127 1.41 bouyer "configured" : "wired",
2128 1.41 bouyer (interface & PCIIDE_INTERFACE_PCI(channel)) ?
2129 1.41 bouyer "native-PCI" : "compatibility");
2130 1.5 cgd
2131 1.9 bouyer /*
2132 1.9 bouyer * with a CMD PCI64x, if we get here, the first channel is enabled:
2133 1.9 bouyer * there's no way to disable the first channel without disabling
2134 1.9 bouyer * the whole device
2135 1.9 bouyer */
2136 1.41 bouyer if (channel != 0 && (ctrl & CMD_CTRL_2PORT) == 0) {
2137 1.18 drochner printf("%s: %s channel ignored (disabled)\n",
2138 1.18 drochner sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
2139 1.18 drochner return;
2140 1.18 drochner }
2141 1.18 drochner
2142 1.41 bouyer pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize, cmd_pci_intr);
2143 1.18 drochner if (cp->hw_ok == 0)
2144 1.18 drochner return;
2145 1.41 bouyer if (channel == 1) {
2146 1.44.2.1 bouyer if (pciide_chan_candisable(cp)) {
2147 1.18 drochner ctrl &= ~CMD_CTRL_2PORT;
2148 1.18 drochner pciide_pci_write(pa->pa_pc, pa->pa_tag,
2149 1.24 bouyer CMD_CTRL, ctrl);
2150 1.18 drochner }
2151 1.18 drochner }
2152 1.41 bouyer pciide_map_compat_intr(pa, cp, channel, interface);
2153 1.41 bouyer }
2154 1.41 bouyer
2155 1.41 bouyer int
2156 1.41 bouyer cmd_pci_intr(arg)
2157 1.41 bouyer void *arg;
2158 1.41 bouyer {
2159 1.41 bouyer struct pciide_softc *sc = arg;
2160 1.41 bouyer struct pciide_channel *cp;
2161 1.41 bouyer struct channel_softc *wdc_cp;
2162 1.41 bouyer int i, rv, crv;
2163 1.41 bouyer u_int32_t priirq, secirq;
2164 1.41 bouyer
2165 1.41 bouyer rv = 0;
2166 1.41 bouyer priirq = pciide_pci_read(sc->sc_pc, sc->sc_tag, CMD_CONF);
2167 1.41 bouyer secirq = pciide_pci_read(sc->sc_pc, sc->sc_tag, CMD_ARTTIM23);
2168 1.41 bouyer for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
2169 1.41 bouyer cp = &sc->pciide_channels[i];
2170 1.41 bouyer wdc_cp = &cp->wdc_channel;
2171 1.41 bouyer /* If a compat channel skip. */
2172 1.41 bouyer if (cp->compat)
2173 1.41 bouyer continue;
2174 1.41 bouyer if ((i == 0 && (priirq & CMD_CONF_DRV0_INTR)) ||
2175 1.41 bouyer (i == 1 && (secirq & CMD_ARTTIM23_IRQ))) {
2176 1.41 bouyer crv = wdcintr(wdc_cp);
2177 1.41 bouyer if (crv == 0)
2178 1.41 bouyer printf("%s:%d: bogus intr\n",
2179 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, i);
2180 1.41 bouyer else
2181 1.41 bouyer rv = 1;
2182 1.41 bouyer }
2183 1.41 bouyer }
2184 1.41 bouyer return rv;
2185 1.14 bouyer }
2186 1.14 bouyer
2187 1.14 bouyer void
2188 1.41 bouyer cmd_chip_map(sc, pa)
2189 1.14 bouyer struct pciide_softc *sc;
2190 1.41 bouyer struct pci_attach_args *pa;
2191 1.14 bouyer {
2192 1.41 bouyer int channel;
2193 1.39 mrg
2194 1.41 bouyer /*
2195 1.41 bouyer * For a CMD PCI064x, the use of PCI_COMMAND_IO_ENABLE
2196 1.41 bouyer * and base adresses registers can be disabled at
2197 1.41 bouyer * hardware level. In this case, the device is wired
2198 1.41 bouyer * in compat mode and its first channel is always enabled,
2199 1.41 bouyer * but we can't rely on PCI_COMMAND_IO_ENABLE.
2200 1.41 bouyer * In fact, it seems that the first channel of the CMD PCI0640
2201 1.41 bouyer * can't be disabled.
2202 1.41 bouyer */
2203 1.41 bouyer
2204 1.41 bouyer #ifdef PCIIDE_CMD064x_DISABLE
2205 1.41 bouyer if (pciide_chipen(sc, pa) == 0)
2206 1.41 bouyer return;
2207 1.41 bouyer #endif
2208 1.41 bouyer
2209 1.44.2.1 bouyer printf("%s: hardware does not support DMA\n",
2210 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
2211 1.41 bouyer sc->sc_dma_ok = 0;
2212 1.41 bouyer
2213 1.41 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
2214 1.41 bouyer sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
2215 1.44.2.1 bouyer sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16;
2216 1.41 bouyer
2217 1.41 bouyer for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
2218 1.41 bouyer cmd_channel_map(pa, sc, channel);
2219 1.41 bouyer }
2220 1.14 bouyer }
2221 1.14 bouyer
2222 1.14 bouyer void
2223 1.44.2.1 bouyer cmd0643_9_chip_map(sc, pa)
2224 1.14 bouyer struct pciide_softc *sc;
2225 1.41 bouyer struct pci_attach_args *pa;
2226 1.41 bouyer {
2227 1.41 bouyer struct pciide_channel *cp;
2228 1.28 bouyer int channel;
2229 1.44.2.1 bouyer int rev = PCI_REVISION(
2230 1.44.2.1 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG));
2231 1.28 bouyer
2232 1.41 bouyer /*
2233 1.41 bouyer * For a CMD PCI064x, the use of PCI_COMMAND_IO_ENABLE
2234 1.41 bouyer * and base adresses registers can be disabled at
2235 1.41 bouyer * hardware level. In this case, the device is wired
2236 1.41 bouyer * in compat mode and its first channel is always enabled,
2237 1.41 bouyer * but we can't rely on PCI_COMMAND_IO_ENABLE.
2238 1.41 bouyer * In fact, it seems that the first channel of the CMD PCI0640
2239 1.41 bouyer * can't be disabled.
2240 1.41 bouyer */
2241 1.41 bouyer
2242 1.41 bouyer #ifdef PCIIDE_CMD064x_DISABLE
2243 1.41 bouyer if (pciide_chipen(sc, pa) == 0)
2244 1.41 bouyer return;
2245 1.41 bouyer #endif
2246 1.41 bouyer printf("%s: bus-master DMA support present",
2247 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
2248 1.41 bouyer pciide_mapreg_dma(sc, pa);
2249 1.41 bouyer printf("\n");
2250 1.44.2.1 bouyer sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
2251 1.44.2.1 bouyer WDC_CAPABILITY_MODE;
2252 1.44.2.1 bouyer if (sc->sc_dma_ok) {
2253 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
2254 1.44.2.1 bouyer switch (sc->sc_pp->ide_product) {
2255 1.44.2.1 bouyer case PCI_PRODUCT_CMDTECH_649:
2256 1.44.2.1 bouyer case PCI_PRODUCT_CMDTECH_648:
2257 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
2258 1.44.2.1 bouyer sc->sc_wdcdev.UDMA_cap = 4;
2259 1.44.2.1 bouyer sc->sc_wdcdev.irqack = cmd646_9_irqack;
2260 1.44.2.1 bouyer break;
2261 1.44.2.1 bouyer case PCI_PRODUCT_CMDTECH_646:
2262 1.44.2.1 bouyer if (rev >= CMD0646U2_REV) {
2263 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
2264 1.44.2.1 bouyer sc->sc_wdcdev.UDMA_cap = 2;
2265 1.44.2.1 bouyer } else if (rev >= CMD0646U_REV) {
2266 1.44.2.1 bouyer /*
2267 1.44.2.1 bouyer * Linux's driver claims that the 646U is broken
2268 1.44.2.1 bouyer * with UDMA. Only enable it if we know what we're
2269 1.44.2.1 bouyer * doing
2270 1.44.2.1 bouyer */
2271 1.44.2.1 bouyer #ifdef PCIIDE_CMD0646U_ENABLEUDMA
2272 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
2273 1.44.2.1 bouyer sc->sc_wdcdev.UDMA_cap = 2;
2274 1.44.2.1 bouyer #endif
2275 1.44.2.1 bouyer /* explicitely disable UDMA */
2276 1.44.2.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag,
2277 1.44.2.1 bouyer CMD_UDMATIM(0), 0);
2278 1.44.2.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag,
2279 1.44.2.1 bouyer CMD_UDMATIM(1), 0);
2280 1.44.2.1 bouyer }
2281 1.44.2.1 bouyer sc->sc_wdcdev.irqack = cmd646_9_irqack;
2282 1.44.2.1 bouyer break;
2283 1.44.2.1 bouyer default:
2284 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
2285 1.44.2.1 bouyer }
2286 1.44.2.1 bouyer }
2287 1.41 bouyer
2288 1.41 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
2289 1.41 bouyer sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
2290 1.41 bouyer sc->sc_wdcdev.PIO_cap = 4;
2291 1.41 bouyer sc->sc_wdcdev.DMA_cap = 2;
2292 1.44.2.1 bouyer sc->sc_wdcdev.set_modes = cmd0643_9_setup_channel;
2293 1.41 bouyer
2294 1.44.2.1 bouyer WDCDEBUG_PRINT(("cmd0643_9_chip_map: old timings reg 0x%x 0x%x\n",
2295 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, 0x54),
2296 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, 0x58)),
2297 1.28 bouyer DEBUG_PROBE);
2298 1.41 bouyer
2299 1.28 bouyer for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
2300 1.41 bouyer cp = &sc->pciide_channels[channel];
2301 1.41 bouyer cmd_channel_map(pa, sc, channel);
2302 1.41 bouyer if (cp->hw_ok == 0)
2303 1.41 bouyer continue;
2304 1.44.2.1 bouyer cmd0643_9_setup_channel(&cp->wdc_channel);
2305 1.28 bouyer }
2306 1.44.2.1 bouyer /*
2307 1.44.2.1 bouyer * note - this also makes sure we clear the irq disable and reset
2308 1.44.2.1 bouyer * bits
2309 1.44.2.1 bouyer */
2310 1.28 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, CMD_DMA_MODE, CMD_DMA_MULTIPLE);
2311 1.44.2.1 bouyer WDCDEBUG_PRINT(("cmd0643_9_chip_map: timings reg now 0x%x 0x%x\n",
2312 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, 0x54),
2313 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, 0x58)),
2314 1.28 bouyer DEBUG_PROBE);
2315 1.28 bouyer }
2316 1.28 bouyer
2317 1.28 bouyer void
2318 1.44.2.1 bouyer cmd0643_9_setup_channel(chp)
2319 1.14 bouyer struct channel_softc *chp;
2320 1.28 bouyer {
2321 1.14 bouyer struct ata_drive_datas *drvp;
2322 1.14 bouyer u_int8_t tim;
2323 1.44.2.1 bouyer u_int32_t idedma_ctl, udma_reg;
2324 1.28 bouyer int drive;
2325 1.28 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
2326 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2327 1.28 bouyer
2328 1.28 bouyer idedma_ctl = 0;
2329 1.28 bouyer /* setup DMA if needed */
2330 1.28 bouyer pciide_channel_dma_setup(cp);
2331 1.14 bouyer
2332 1.28 bouyer for (drive = 0; drive < 2; drive++) {
2333 1.28 bouyer drvp = &chp->ch_drive[drive];
2334 1.28 bouyer /* If no drive, skip */
2335 1.28 bouyer if ((drvp->drive_flags & DRIVE) == 0)
2336 1.28 bouyer continue;
2337 1.28 bouyer /* add timing values, setup DMA if needed */
2338 1.44.2.1 bouyer tim = cmd0643_9_data_tim_pio[drvp->PIO_mode];
2339 1.44.2.1 bouyer if (drvp->drive_flags & (DRIVE_DMA | DRIVE_UDMA)) {
2340 1.44.2.1 bouyer if (drvp->drive_flags & DRIVE_UDMA) {
2341 1.44.2.1 bouyer /* UltraDMA on a 646U2, 0648 or 0649 */
2342 1.44.2.4 bouyer drvp->drive_flags &= ~DRIVE_DMA;
2343 1.44.2.1 bouyer udma_reg = pciide_pci_read(sc->sc_pc,
2344 1.44.2.1 bouyer sc->sc_tag, CMD_UDMATIM(chp->channel));
2345 1.44.2.1 bouyer if (drvp->UDMA_mode > 2 &&
2346 1.44.2.1 bouyer (pciide_pci_read(sc->sc_pc, sc->sc_tag,
2347 1.44.2.1 bouyer CMD_BICSR) &
2348 1.44.2.1 bouyer CMD_BICSR_80(chp->channel)) == 0)
2349 1.44.2.1 bouyer drvp->UDMA_mode = 2;
2350 1.44.2.1 bouyer if (drvp->UDMA_mode > 2)
2351 1.44.2.1 bouyer udma_reg &= ~CMD_UDMATIM_UDMA33(drive);
2352 1.44.2.1 bouyer else if (sc->sc_wdcdev.UDMA_cap > 2)
2353 1.44.2.1 bouyer udma_reg |= CMD_UDMATIM_UDMA33(drive);
2354 1.44.2.1 bouyer udma_reg |= CMD_UDMATIM_UDMA(drive);
2355 1.44.2.1 bouyer udma_reg &= ~(CMD_UDMATIM_TIM_MASK <<
2356 1.44.2.1 bouyer CMD_UDMATIM_TIM_OFF(drive));
2357 1.44.2.1 bouyer udma_reg |=
2358 1.44.2.1 bouyer (cmd0646_9_tim_udma[drvp->UDMA_mode] <<
2359 1.44.2.1 bouyer CMD_UDMATIM_TIM_OFF(drive));
2360 1.44.2.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag,
2361 1.44.2.1 bouyer CMD_UDMATIM(chp->channel), udma_reg);
2362 1.44.2.1 bouyer } else {
2363 1.44.2.1 bouyer /*
2364 1.44.2.1 bouyer * use Multiword DMA.
2365 1.44.2.1 bouyer * Timings will be used for both PIO and DMA,
2366 1.44.2.1 bouyer * so adjust DMA mode if needed
2367 1.44.2.1 bouyer * if we have a 0646U2/8/9, turn off UDMA
2368 1.44.2.1 bouyer */
2369 1.44.2.1 bouyer if (sc->sc_wdcdev.cap & WDC_CAPABILITY_UDMA) {
2370 1.44.2.1 bouyer udma_reg = pciide_pci_read(sc->sc_pc,
2371 1.44.2.1 bouyer sc->sc_tag,
2372 1.44.2.1 bouyer CMD_UDMATIM(chp->channel));
2373 1.44.2.1 bouyer udma_reg &= ~CMD_UDMATIM_UDMA(drive);
2374 1.44.2.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag,
2375 1.44.2.1 bouyer CMD_UDMATIM(chp->channel),
2376 1.44.2.1 bouyer udma_reg);
2377 1.44.2.1 bouyer }
2378 1.44.2.1 bouyer if (drvp->PIO_mode >= 3 &&
2379 1.44.2.1 bouyer (drvp->DMA_mode + 2) > drvp->PIO_mode) {
2380 1.44.2.1 bouyer drvp->DMA_mode = drvp->PIO_mode - 2;
2381 1.44.2.1 bouyer }
2382 1.44.2.1 bouyer tim = cmd0643_9_data_tim_dma[drvp->DMA_mode];
2383 1.14 bouyer }
2384 1.14 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
2385 1.14 bouyer }
2386 1.28 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag,
2387 1.28 bouyer CMD_DATA_TIM(chp->channel, drive), tim);
2388 1.28 bouyer }
2389 1.28 bouyer if (idedma_ctl != 0) {
2390 1.28 bouyer /* Add software bits in status register */
2391 1.28 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
2392 1.28 bouyer IDEDMA_CTL + (IDEDMA_SCH_OFFSET * chp->channel),
2393 1.28 bouyer idedma_ctl);
2394 1.14 bouyer }
2395 1.28 bouyer pciide_print_modes(cp);
2396 1.1 cgd }
2397 1.1 cgd
2398 1.18 drochner void
2399 1.44.2.1 bouyer cmd646_9_irqack(chp)
2400 1.44.2.1 bouyer struct channel_softc *chp;
2401 1.44.2.1 bouyer {
2402 1.44.2.1 bouyer u_int32_t priirq, secirq;
2403 1.44.2.1 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
2404 1.44.2.1 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2405 1.44.2.1 bouyer
2406 1.44.2.1 bouyer if (chp->channel == 0) {
2407 1.44.2.1 bouyer priirq = pciide_pci_read(sc->sc_pc, sc->sc_tag, CMD_CONF);
2408 1.44.2.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, CMD_CONF, priirq);
2409 1.44.2.1 bouyer } else {
2410 1.44.2.1 bouyer secirq = pciide_pci_read(sc->sc_pc, sc->sc_tag, CMD_ARTTIM23);
2411 1.44.2.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, CMD_ARTTIM23, secirq);
2412 1.44.2.1 bouyer }
2413 1.44.2.1 bouyer pciide_irqack(chp);
2414 1.44.2.1 bouyer }
2415 1.44.2.1 bouyer
2416 1.44.2.1 bouyer void
2417 1.44.2.1 bouyer cy693_chip_map(sc, pa)
2418 1.44.2.1 bouyer struct pciide_softc *sc;
2419 1.41 bouyer struct pci_attach_args *pa;
2420 1.41 bouyer {
2421 1.41 bouyer struct pciide_channel *cp;
2422 1.44.2.1 bouyer pcireg_t interface = PCI_INTERFACE(pa->pa_class);
2423 1.41 bouyer bus_size_t cmdsize, ctlsize;
2424 1.41 bouyer
2425 1.41 bouyer if (pciide_chipen(sc, pa) == 0)
2426 1.41 bouyer return;
2427 1.41 bouyer /*
2428 1.41 bouyer * this chip has 2 PCI IDE functions, one for primary and one for
2429 1.41 bouyer * secondary. So we need to call pciide_mapregs_compat() with
2430 1.41 bouyer * the real channel
2431 1.41 bouyer */
2432 1.41 bouyer if (pa->pa_function == 1) {
2433 1.44.2.1 bouyer sc->sc_cy_compatchan = 0;
2434 1.41 bouyer } else if (pa->pa_function == 2) {
2435 1.44.2.1 bouyer sc->sc_cy_compatchan = 1;
2436 1.41 bouyer } else {
2437 1.41 bouyer printf("%s: unexpected PCI function %d\n",
2438 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, pa->pa_function);
2439 1.41 bouyer return;
2440 1.41 bouyer }
2441 1.41 bouyer if (interface & PCIIDE_INTERFACE_BUS_MASTER_DMA) {
2442 1.41 bouyer printf("%s: bus-master DMA support present",
2443 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
2444 1.41 bouyer pciide_mapreg_dma(sc, pa);
2445 1.41 bouyer } else {
2446 1.41 bouyer printf("%s: hardware does not support DMA",
2447 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
2448 1.41 bouyer sc->sc_dma_ok = 0;
2449 1.41 bouyer }
2450 1.41 bouyer printf("\n");
2451 1.39 mrg
2452 1.44.2.1 bouyer sc->sc_cy_handle = cy82c693_init(pa->pa_iot);
2453 1.44.2.1 bouyer if (sc->sc_cy_handle == NULL) {
2454 1.44.2.1 bouyer printf("%s: unable to map hyperCache control registers\n",
2455 1.44.2.1 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
2456 1.44.2.1 bouyer sc->sc_dma_ok = 0;
2457 1.44.2.1 bouyer }
2458 1.44.2.1 bouyer
2459 1.44.2.1 bouyer sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
2460 1.41 bouyer WDC_CAPABILITY_MODE;
2461 1.44.2.1 bouyer if (sc->sc_dma_ok) {
2462 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
2463 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
2464 1.44.2.1 bouyer }
2465 1.27 bouyer sc->sc_wdcdev.PIO_cap = 4;
2466 1.27 bouyer sc->sc_wdcdev.DMA_cap = 2;
2467 1.28 bouyer sc->sc_wdcdev.set_modes = cy693_setup_channel;
2468 1.18 drochner
2469 1.41 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
2470 1.41 bouyer sc->sc_wdcdev.nchannels = 1;
2471 1.39 mrg
2472 1.41 bouyer /* Only one channel for this chip; if we are here it's enabled */
2473 1.41 bouyer cp = &sc->pciide_channels[0];
2474 1.44.2.1 bouyer sc->wdc_chanarray[0] = &cp->wdc_channel;
2475 1.41 bouyer cp->name = PCIIDE_CHANNEL_NAME(0);
2476 1.41 bouyer cp->wdc_channel.channel = 0;
2477 1.41 bouyer cp->wdc_channel.wdc = &sc->sc_wdcdev;
2478 1.41 bouyer cp->wdc_channel.ch_queue =
2479 1.41 bouyer malloc(sizeof(struct channel_queue), M_DEVBUF, M_NOWAIT);
2480 1.41 bouyer if (cp->wdc_channel.ch_queue == NULL) {
2481 1.41 bouyer printf("%s primary channel: "
2482 1.41 bouyer "can't allocate memory for command queue",
2483 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
2484 1.41 bouyer return;
2485 1.41 bouyer }
2486 1.41 bouyer printf("%s: primary channel %s to ",
2487 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname,
2488 1.41 bouyer (interface & PCIIDE_INTERFACE_SETTABLE(0)) ?
2489 1.41 bouyer "configured" : "wired");
2490 1.41 bouyer if (interface & PCIIDE_INTERFACE_PCI(0)) {
2491 1.41 bouyer printf("native-PCI");
2492 1.41 bouyer cp->hw_ok = pciide_mapregs_native(pa, cp, &cmdsize, &ctlsize,
2493 1.41 bouyer pciide_pci_intr);
2494 1.41 bouyer } else {
2495 1.41 bouyer printf("compatibility");
2496 1.44.2.1 bouyer cp->hw_ok = pciide_mapregs_compat(pa, cp, sc->sc_cy_compatchan,
2497 1.41 bouyer &cmdsize, &ctlsize);
2498 1.41 bouyer }
2499 1.41 bouyer printf(" mode\n");
2500 1.41 bouyer cp->wdc_channel.data32iot = cp->wdc_channel.cmd_iot;
2501 1.41 bouyer cp->wdc_channel.data32ioh = cp->wdc_channel.cmd_ioh;
2502 1.41 bouyer wdcattach(&cp->wdc_channel);
2503 1.44.2.1 bouyer if (pciide_chan_candisable(cp)) {
2504 1.41 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag,
2505 1.41 bouyer PCI_COMMAND_STATUS_REG, 0);
2506 1.41 bouyer }
2507 1.44.2.1 bouyer pciide_map_compat_intr(pa, cp, sc->sc_cy_compatchan, interface);
2508 1.41 bouyer if (cp->hw_ok == 0)
2509 1.41 bouyer return;
2510 1.41 bouyer WDCDEBUG_PRINT(("cy693_chip_map: old timings reg 0x%x\n",
2511 1.41 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, CY_CMD_CTRL)),DEBUG_PROBE);
2512 1.41 bouyer cy693_setup_channel(&cp->wdc_channel);
2513 1.41 bouyer WDCDEBUG_PRINT(("cy693_chip_map: new timings reg 0x%x\n",
2514 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, CY_CMD_CTRL)), DEBUG_PROBE);
2515 1.28 bouyer }
2516 1.28 bouyer
2517 1.28 bouyer void
2518 1.28 bouyer cy693_setup_channel(chp)
2519 1.18 drochner struct channel_softc *chp;
2520 1.28 bouyer {
2521 1.18 drochner struct ata_drive_datas *drvp;
2522 1.18 drochner int drive;
2523 1.18 drochner u_int32_t cy_cmd_ctrl;
2524 1.18 drochner u_int32_t idedma_ctl;
2525 1.28 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
2526 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2527 1.41 bouyer int dma_mode = -1;
2528 1.9 bouyer
2529 1.18 drochner cy_cmd_ctrl = idedma_ctl = 0;
2530 1.28 bouyer
2531 1.28 bouyer /* setup DMA if needed */
2532 1.28 bouyer pciide_channel_dma_setup(cp);
2533 1.28 bouyer
2534 1.18 drochner for (drive = 0; drive < 2; drive++) {
2535 1.18 drochner drvp = &chp->ch_drive[drive];
2536 1.18 drochner /* If no drive, skip */
2537 1.18 drochner if ((drvp->drive_flags & DRIVE) == 0)
2538 1.18 drochner continue;
2539 1.18 drochner /* add timing values, setup DMA if needed */
2540 1.28 bouyer if (drvp->drive_flags & DRIVE_DMA) {
2541 1.28 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
2542 1.41 bouyer /* use Multiword DMA */
2543 1.41 bouyer if (dma_mode == -1 || dma_mode > drvp->DMA_mode)
2544 1.41 bouyer dma_mode = drvp->DMA_mode;
2545 1.18 drochner }
2546 1.28 bouyer cy_cmd_ctrl |= (cy_pio_pulse[drvp->PIO_mode] <<
2547 1.18 drochner CY_CMD_CTRL_IOW_PULSE_OFF(drive));
2548 1.18 drochner cy_cmd_ctrl |= (cy_pio_rec[drvp->PIO_mode] <<
2549 1.18 drochner CY_CMD_CTRL_IOW_REC_OFF(drive));
2550 1.33 bouyer cy_cmd_ctrl |= (cy_pio_pulse[drvp->PIO_mode] <<
2551 1.33 bouyer CY_CMD_CTRL_IOR_PULSE_OFF(drive));
2552 1.33 bouyer cy_cmd_ctrl |= (cy_pio_rec[drvp->PIO_mode] <<
2553 1.33 bouyer CY_CMD_CTRL_IOR_REC_OFF(drive));
2554 1.18 drochner }
2555 1.28 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, CY_CMD_CTRL, cy_cmd_ctrl);
2556 1.41 bouyer chp->ch_drive[0].DMA_mode = dma_mode;
2557 1.41 bouyer chp->ch_drive[1].DMA_mode = dma_mode;
2558 1.44.2.1 bouyer
2559 1.44.2.1 bouyer if (dma_mode == -1)
2560 1.44.2.1 bouyer dma_mode = 0;
2561 1.44.2.1 bouyer
2562 1.44.2.1 bouyer if (sc->sc_cy_handle != NULL) {
2563 1.44.2.1 bouyer /* Note: `multiple' is implied. */
2564 1.44.2.1 bouyer cy82c693_write(sc->sc_cy_handle,
2565 1.44.2.1 bouyer (sc->sc_cy_compatchan == 0) ?
2566 1.44.2.1 bouyer CY_DMA_IDX_PRIMARY : CY_DMA_IDX_SECONDARY, dma_mode);
2567 1.44.2.1 bouyer }
2568 1.44.2.1 bouyer
2569 1.28 bouyer pciide_print_modes(cp);
2570 1.44.2.1 bouyer
2571 1.18 drochner if (idedma_ctl != 0) {
2572 1.18 drochner /* Add software bits in status register */
2573 1.18 drochner bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
2574 1.18 drochner IDEDMA_CTL, idedma_ctl);
2575 1.9 bouyer }
2576 1.1 cgd }
2577 1.1 cgd
2578 1.18 drochner void
2579 1.41 bouyer sis_chip_map(sc, pa)
2580 1.41 bouyer struct pciide_softc *sc;
2581 1.18 drochner struct pci_attach_args *pa;
2582 1.41 bouyer {
2583 1.18 drochner struct pciide_channel *cp;
2584 1.41 bouyer int channel;
2585 1.41 bouyer u_int8_t sis_ctr0 = pciide_pci_read(sc->sc_pc, sc->sc_tag, SIS_CTRL0);
2586 1.44.2.1 bouyer pcireg_t interface = PCI_INTERFACE(pa->pa_class);
2587 1.44.2.1 bouyer pcireg_t rev = PCI_REVISION(pa->pa_class);
2588 1.18 drochner bus_size_t cmdsize, ctlsize;
2589 1.9 bouyer
2590 1.41 bouyer if (pciide_chipen(sc, pa) == 0)
2591 1.18 drochner return;
2592 1.41 bouyer printf("%s: bus-master DMA support present",
2593 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
2594 1.41 bouyer pciide_mapreg_dma(sc, pa);
2595 1.41 bouyer printf("\n");
2596 1.44.2.1 bouyer sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
2597 1.41 bouyer WDC_CAPABILITY_MODE;
2598 1.44.2.1 bouyer if (sc->sc_dma_ok) {
2599 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
2600 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
2601 1.44.2.3 bouyer if (rev > 0xd0)
2602 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
2603 1.44.2.1 bouyer }
2604 1.44.2.1 bouyer
2605 1.27 bouyer sc->sc_wdcdev.PIO_cap = 4;
2606 1.27 bouyer sc->sc_wdcdev.DMA_cap = 2;
2607 1.44.2.1 bouyer if (sc->sc_wdcdev.cap & WDC_CAPABILITY_UDMA)
2608 1.44.2.1 bouyer sc->sc_wdcdev.UDMA_cap = 2;
2609 1.28 bouyer sc->sc_wdcdev.set_modes = sis_setup_channel;
2610 1.15 bouyer
2611 1.41 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
2612 1.41 bouyer sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
2613 1.28 bouyer
2614 1.28 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, SIS_MISC,
2615 1.28 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag, SIS_MISC) |
2616 1.28 bouyer SIS_MISC_TIM_SEL | SIS_MISC_FIFO_SIZE);
2617 1.41 bouyer
2618 1.41 bouyer for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
2619 1.41 bouyer cp = &sc->pciide_channels[channel];
2620 1.41 bouyer if (pciide_chansetup(sc, channel, interface) == 0)
2621 1.41 bouyer continue;
2622 1.41 bouyer if ((channel == 0 && (sis_ctr0 & SIS_CTRL0_CHAN0_EN) == 0) ||
2623 1.41 bouyer (channel == 1 && (sis_ctr0 & SIS_CTRL0_CHAN1_EN) == 0)) {
2624 1.41 bouyer printf("%s: %s channel ignored (disabled)\n",
2625 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
2626 1.44.2.1 bouyer continue;
2627 1.41 bouyer }
2628 1.41 bouyer pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
2629 1.41 bouyer pciide_pci_intr);
2630 1.41 bouyer if (cp->hw_ok == 0)
2631 1.41 bouyer continue;
2632 1.44.2.1 bouyer if (pciide_chan_candisable(cp)) {
2633 1.41 bouyer if (channel == 0)
2634 1.41 bouyer sis_ctr0 &= ~SIS_CTRL0_CHAN0_EN;
2635 1.41 bouyer else
2636 1.41 bouyer sis_ctr0 &= ~SIS_CTRL0_CHAN1_EN;
2637 1.41 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, SIS_CTRL0,
2638 1.41 bouyer sis_ctr0);
2639 1.41 bouyer }
2640 1.41 bouyer pciide_map_compat_intr(pa, cp, channel, interface);
2641 1.41 bouyer if (cp->hw_ok == 0)
2642 1.41 bouyer continue;
2643 1.41 bouyer sis_setup_channel(&cp->wdc_channel);
2644 1.41 bouyer }
2645 1.28 bouyer }
2646 1.28 bouyer
2647 1.28 bouyer void
2648 1.28 bouyer sis_setup_channel(chp)
2649 1.15 bouyer struct channel_softc *chp;
2650 1.28 bouyer {
2651 1.15 bouyer struct ata_drive_datas *drvp;
2652 1.28 bouyer int drive;
2653 1.18 drochner u_int32_t sis_tim;
2654 1.18 drochner u_int32_t idedma_ctl;
2655 1.28 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
2656 1.28 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2657 1.15 bouyer
2658 1.41 bouyer WDCDEBUG_PRINT(("sis_setup_channel: old timings reg for "
2659 1.28 bouyer "channel %d 0x%x\n", chp->channel,
2660 1.28 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag, SIS_TIM(chp->channel))),
2661 1.28 bouyer DEBUG_PROBE);
2662 1.28 bouyer sis_tim = 0;
2663 1.18 drochner idedma_ctl = 0;
2664 1.28 bouyer /* setup DMA if needed */
2665 1.28 bouyer pciide_channel_dma_setup(cp);
2666 1.28 bouyer
2667 1.28 bouyer for (drive = 0; drive < 2; drive++) {
2668 1.28 bouyer drvp = &chp->ch_drive[drive];
2669 1.28 bouyer /* If no drive, skip */
2670 1.28 bouyer if ((drvp->drive_flags & DRIVE) == 0)
2671 1.28 bouyer continue;
2672 1.28 bouyer /* add timing values, setup DMA if needed */
2673 1.28 bouyer if ((drvp->drive_flags & DRIVE_DMA) == 0 &&
2674 1.28 bouyer (drvp->drive_flags & DRIVE_UDMA) == 0)
2675 1.28 bouyer goto pio;
2676 1.28 bouyer
2677 1.28 bouyer if (drvp->drive_flags & DRIVE_UDMA) {
2678 1.28 bouyer /* use Ultra/DMA */
2679 1.28 bouyer drvp->drive_flags &= ~DRIVE_DMA;
2680 1.28 bouyer sis_tim |= sis_udma_tim[drvp->UDMA_mode] <<
2681 1.28 bouyer SIS_TIM_UDMA_TIME_OFF(drive);
2682 1.28 bouyer sis_tim |= SIS_TIM_UDMA_EN(drive);
2683 1.28 bouyer } else {
2684 1.28 bouyer /*
2685 1.28 bouyer * use Multiword DMA
2686 1.28 bouyer * Timings will be used for both PIO and DMA,
2687 1.28 bouyer * so adjust DMA mode if needed
2688 1.28 bouyer */
2689 1.28 bouyer if (drvp->PIO_mode > (drvp->DMA_mode + 2))
2690 1.28 bouyer drvp->PIO_mode = drvp->DMA_mode + 2;
2691 1.32 bouyer if (drvp->DMA_mode + 2 > (drvp->PIO_mode))
2692 1.32 bouyer drvp->DMA_mode = (drvp->PIO_mode > 2) ?
2693 1.32 bouyer drvp->PIO_mode - 2 : 0;
2694 1.28 bouyer if (drvp->DMA_mode == 0)
2695 1.28 bouyer drvp->PIO_mode = 0;
2696 1.28 bouyer }
2697 1.28 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
2698 1.28 bouyer pio: sis_tim |= sis_pio_act[drvp->PIO_mode] <<
2699 1.28 bouyer SIS_TIM_ACT_OFF(drive);
2700 1.28 bouyer sis_tim |= sis_pio_rec[drvp->PIO_mode] <<
2701 1.28 bouyer SIS_TIM_REC_OFF(drive);
2702 1.28 bouyer }
2703 1.41 bouyer WDCDEBUG_PRINT(("sis_setup_channel: new timings reg for "
2704 1.28 bouyer "channel %d 0x%x\n", chp->channel, sis_tim), DEBUG_PROBE);
2705 1.28 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, SIS_TIM(chp->channel), sis_tim);
2706 1.18 drochner if (idedma_ctl != 0) {
2707 1.18 drochner /* Add software bits in status register */
2708 1.18 drochner bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
2709 1.18 drochner IDEDMA_CTL, idedma_ctl);
2710 1.18 drochner }
2711 1.28 bouyer pciide_print_modes(cp);
2712 1.18 drochner }
2713 1.18 drochner
2714 1.18 drochner void
2715 1.41 bouyer acer_chip_map(sc, pa)
2716 1.41 bouyer struct pciide_softc *sc;
2717 1.18 drochner struct pci_attach_args *pa;
2718 1.41 bouyer {
2719 1.18 drochner struct pciide_channel *cp;
2720 1.41 bouyer int channel;
2721 1.41 bouyer pcireg_t cr, interface;
2722 1.18 drochner bus_size_t cmdsize, ctlsize;
2723 1.18 drochner
2724 1.41 bouyer if (pciide_chipen(sc, pa) == 0)
2725 1.18 drochner return;
2726 1.41 bouyer printf("%s: bus-master DMA support present",
2727 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
2728 1.41 bouyer pciide_mapreg_dma(sc, pa);
2729 1.41 bouyer printf("\n");
2730 1.44.2.1 bouyer sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
2731 1.41 bouyer WDC_CAPABILITY_MODE;
2732 1.44.2.1 bouyer if (sc->sc_dma_ok) {
2733 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
2734 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_IRQACK;
2735 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
2736 1.44.2.1 bouyer }
2737 1.41 bouyer
2738 1.30 bouyer sc->sc_wdcdev.PIO_cap = 4;
2739 1.30 bouyer sc->sc_wdcdev.DMA_cap = 2;
2740 1.30 bouyer sc->sc_wdcdev.UDMA_cap = 2;
2741 1.30 bouyer sc->sc_wdcdev.set_modes = acer_setup_channel;
2742 1.41 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
2743 1.41 bouyer sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
2744 1.30 bouyer
2745 1.30 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CDRC,
2746 1.30 bouyer (pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CDRC) |
2747 1.30 bouyer ACER_CDRC_DMA_EN) & ~ACER_CDRC_FIFO_DISABLE);
2748 1.30 bouyer
2749 1.41 bouyer /* Enable "microsoft register bits" R/W. */
2750 1.41 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CCAR3,
2751 1.41 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CCAR3) | ACER_CCAR3_PI);
2752 1.41 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CCAR1,
2753 1.41 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CCAR1) &
2754 1.41 bouyer ~(ACER_CHANSTATUS_RO|PCIIDE_CHAN_RO(0)|PCIIDE_CHAN_RO(1)));
2755 1.41 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CCAR2,
2756 1.41 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CCAR2) &
2757 1.41 bouyer ~ACER_CHANSTATUSREGS_RO);
2758 1.41 bouyer cr = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG);
2759 1.41 bouyer cr |= (PCIIDE_CHANSTATUS_EN << PCI_INTERFACE_SHIFT);
2760 1.41 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG, cr);
2761 1.41 bouyer /* Don't use cr, re-read the real register content instead */
2762 1.41 bouyer interface = PCI_INTERFACE(pci_conf_read(sc->sc_pc, sc->sc_tag,
2763 1.41 bouyer PCI_CLASS_REG));
2764 1.41 bouyer
2765 1.30 bouyer for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
2766 1.41 bouyer cp = &sc->pciide_channels[channel];
2767 1.41 bouyer if (pciide_chansetup(sc, channel, interface) == 0)
2768 1.41 bouyer continue;
2769 1.41 bouyer if ((interface & PCIIDE_CHAN_EN(channel)) == 0) {
2770 1.41 bouyer printf("%s: %s channel ignored (disabled)\n",
2771 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
2772 1.41 bouyer continue;
2773 1.41 bouyer }
2774 1.41 bouyer pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
2775 1.41 bouyer acer_pci_intr);
2776 1.41 bouyer if (cp->hw_ok == 0)
2777 1.41 bouyer continue;
2778 1.44.2.1 bouyer if (pciide_chan_candisable(cp)) {
2779 1.41 bouyer cr &= ~(PCIIDE_CHAN_EN(channel) << PCI_INTERFACE_SHIFT);
2780 1.41 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag,
2781 1.41 bouyer PCI_CLASS_REG, cr);
2782 1.41 bouyer }
2783 1.41 bouyer pciide_map_compat_intr(pa, cp, channel, interface);
2784 1.41 bouyer acer_setup_channel(&cp->wdc_channel);
2785 1.30 bouyer }
2786 1.30 bouyer }
2787 1.30 bouyer
2788 1.30 bouyer void
2789 1.30 bouyer acer_setup_channel(chp)
2790 1.30 bouyer struct channel_softc *chp;
2791 1.30 bouyer {
2792 1.30 bouyer struct ata_drive_datas *drvp;
2793 1.30 bouyer int drive;
2794 1.30 bouyer u_int32_t acer_fifo_udma;
2795 1.30 bouyer u_int32_t idedma_ctl;
2796 1.30 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
2797 1.30 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2798 1.30 bouyer
2799 1.30 bouyer idedma_ctl = 0;
2800 1.30 bouyer acer_fifo_udma = pci_conf_read(sc->sc_pc, sc->sc_tag, ACER_FTH_UDMA);
2801 1.41 bouyer WDCDEBUG_PRINT(("acer_setup_channel: old fifo/udma reg 0x%x\n",
2802 1.30 bouyer acer_fifo_udma), DEBUG_PROBE);
2803 1.30 bouyer /* setup DMA if needed */
2804 1.30 bouyer pciide_channel_dma_setup(cp);
2805 1.30 bouyer
2806 1.30 bouyer for (drive = 0; drive < 2; drive++) {
2807 1.30 bouyer drvp = &chp->ch_drive[drive];
2808 1.30 bouyer /* If no drive, skip */
2809 1.30 bouyer if ((drvp->drive_flags & DRIVE) == 0)
2810 1.30 bouyer continue;
2811 1.41 bouyer WDCDEBUG_PRINT(("acer_setup_channel: old timings reg for "
2812 1.30 bouyer "channel %d drive %d 0x%x\n", chp->channel, drive,
2813 1.30 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag,
2814 1.30 bouyer ACER_IDETIM(chp->channel, drive))), DEBUG_PROBE);
2815 1.30 bouyer /* clear FIFO/DMA mode */
2816 1.30 bouyer acer_fifo_udma &= ~(ACER_FTH_OPL(chp->channel, drive, 0x3) |
2817 1.30 bouyer ACER_UDMA_EN(chp->channel, drive) |
2818 1.30 bouyer ACER_UDMA_TIM(chp->channel, drive, 0x7));
2819 1.30 bouyer
2820 1.30 bouyer /* add timing values, setup DMA if needed */
2821 1.30 bouyer if ((drvp->drive_flags & DRIVE_DMA) == 0 &&
2822 1.30 bouyer (drvp->drive_flags & DRIVE_UDMA) == 0) {
2823 1.30 bouyer acer_fifo_udma |=
2824 1.30 bouyer ACER_FTH_OPL(chp->channel, drive, 0x1);
2825 1.30 bouyer goto pio;
2826 1.30 bouyer }
2827 1.30 bouyer
2828 1.30 bouyer acer_fifo_udma |= ACER_FTH_OPL(chp->channel, drive, 0x2);
2829 1.30 bouyer if (drvp->drive_flags & DRIVE_UDMA) {
2830 1.30 bouyer /* use Ultra/DMA */
2831 1.30 bouyer drvp->drive_flags &= ~DRIVE_DMA;
2832 1.30 bouyer acer_fifo_udma |= ACER_UDMA_EN(chp->channel, drive);
2833 1.30 bouyer acer_fifo_udma |=
2834 1.30 bouyer ACER_UDMA_TIM(chp->channel, drive,
2835 1.30 bouyer acer_udma[drvp->UDMA_mode]);
2836 1.30 bouyer } else {
2837 1.30 bouyer /*
2838 1.30 bouyer * use Multiword DMA
2839 1.30 bouyer * Timings will be used for both PIO and DMA,
2840 1.30 bouyer * so adjust DMA mode if needed
2841 1.30 bouyer */
2842 1.30 bouyer if (drvp->PIO_mode > (drvp->DMA_mode + 2))
2843 1.30 bouyer drvp->PIO_mode = drvp->DMA_mode + 2;
2844 1.32 bouyer if (drvp->DMA_mode + 2 > (drvp->PIO_mode))
2845 1.32 bouyer drvp->DMA_mode = (drvp->PIO_mode > 2) ?
2846 1.32 bouyer drvp->PIO_mode - 2 : 0;
2847 1.30 bouyer if (drvp->DMA_mode == 0)
2848 1.30 bouyer drvp->PIO_mode = 0;
2849 1.30 bouyer }
2850 1.30 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
2851 1.30 bouyer pio: pciide_pci_write(sc->sc_pc, sc->sc_tag,
2852 1.30 bouyer ACER_IDETIM(chp->channel, drive),
2853 1.30 bouyer acer_pio[drvp->PIO_mode]);
2854 1.30 bouyer }
2855 1.41 bouyer WDCDEBUG_PRINT(("acer_setup_channel: new fifo/udma reg 0x%x\n",
2856 1.30 bouyer acer_fifo_udma), DEBUG_PROBE);
2857 1.30 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, ACER_FTH_UDMA, acer_fifo_udma);
2858 1.30 bouyer if (idedma_ctl != 0) {
2859 1.30 bouyer /* Add software bits in status register */
2860 1.30 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
2861 1.30 bouyer IDEDMA_CTL, idedma_ctl);
2862 1.30 bouyer }
2863 1.30 bouyer pciide_print_modes(cp);
2864 1.30 bouyer }
2865 1.30 bouyer
2866 1.41 bouyer int
2867 1.41 bouyer acer_pci_intr(arg)
2868 1.41 bouyer void *arg;
2869 1.41 bouyer {
2870 1.41 bouyer struct pciide_softc *sc = arg;
2871 1.41 bouyer struct pciide_channel *cp;
2872 1.41 bouyer struct channel_softc *wdc_cp;
2873 1.41 bouyer int i, rv, crv;
2874 1.41 bouyer u_int32_t chids;
2875 1.41 bouyer
2876 1.41 bouyer rv = 0;
2877 1.41 bouyer chids = pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CHIDS);
2878 1.41 bouyer for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
2879 1.41 bouyer cp = &sc->pciide_channels[i];
2880 1.41 bouyer wdc_cp = &cp->wdc_channel;
2881 1.41 bouyer /* If a compat channel skip. */
2882 1.41 bouyer if (cp->compat)
2883 1.41 bouyer continue;
2884 1.41 bouyer if (chids & ACER_CHIDS_INT(i)) {
2885 1.41 bouyer crv = wdcintr(wdc_cp);
2886 1.41 bouyer if (crv == 0)
2887 1.41 bouyer printf("%s:%d: bogus intr\n",
2888 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, i);
2889 1.41 bouyer else
2890 1.41 bouyer rv = 1;
2891 1.41 bouyer }
2892 1.41 bouyer }
2893 1.41 bouyer return rv;
2894 1.41 bouyer }
2895 1.41 bouyer
2896 1.30 bouyer void
2897 1.44.2.1 bouyer hpt_chip_map(sc, pa)
2898 1.44.2.1 bouyer struct pciide_softc *sc;
2899 1.44.2.1 bouyer struct pci_attach_args *pa;
2900 1.44.2.1 bouyer {
2901 1.44.2.1 bouyer struct pciide_channel *cp;
2902 1.44.2.1 bouyer int i, compatchan, revision;
2903 1.44.2.1 bouyer pcireg_t interface;
2904 1.44.2.1 bouyer bus_size_t cmdsize, ctlsize;
2905 1.44.2.1 bouyer
2906 1.44.2.1 bouyer if (pciide_chipen(sc, pa) == 0)
2907 1.44.2.1 bouyer return;
2908 1.44.2.1 bouyer revision = PCI_REVISION(pa->pa_class);
2909 1.44.2.1 bouyer
2910 1.44.2.1 bouyer /*
2911 1.44.2.1 bouyer * when the chip is in native mode it identifies itself as a
2912 1.44.2.1 bouyer * 'misc mass storage'. Fake interface in this case.
2913 1.44.2.1 bouyer */
2914 1.44.2.1 bouyer if (PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_IDE) {
2915 1.44.2.1 bouyer interface = PCI_INTERFACE(pa->pa_class);
2916 1.44.2.1 bouyer } else {
2917 1.44.2.1 bouyer interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
2918 1.44.2.1 bouyer PCIIDE_INTERFACE_PCI(0);
2919 1.44.2.1 bouyer if (revision == HPT370_REV)
2920 1.44.2.1 bouyer interface |= PCIIDE_INTERFACE_PCI(1);
2921 1.44.2.1 bouyer }
2922 1.44.2.1 bouyer
2923 1.44.2.1 bouyer printf("%s: bus-master DMA support present",
2924 1.44.2.1 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
2925 1.44.2.1 bouyer pciide_mapreg_dma(sc, pa);
2926 1.44.2.1 bouyer printf("\n");
2927 1.44.2.1 bouyer sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
2928 1.44.2.1 bouyer WDC_CAPABILITY_MODE;
2929 1.44.2.1 bouyer if (sc->sc_dma_ok) {
2930 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
2931 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_IRQACK;
2932 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
2933 1.44.2.1 bouyer }
2934 1.44.2.1 bouyer sc->sc_wdcdev.PIO_cap = 4;
2935 1.44.2.1 bouyer sc->sc_wdcdev.DMA_cap = 2;
2936 1.44.2.1 bouyer
2937 1.44.2.1 bouyer sc->sc_wdcdev.set_modes = hpt_setup_channel;
2938 1.44.2.1 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
2939 1.44.2.1 bouyer if (revision == HPT366_REV) {
2940 1.44.2.4 bouyer sc->sc_wdcdev.UDMA_cap = 4;
2941 1.44.2.1 bouyer /*
2942 1.44.2.1 bouyer * The 366 has 2 PCI IDE functions, one for primary and one
2943 1.44.2.1 bouyer * for secondary. So we need to call pciide_mapregs_compat()
2944 1.44.2.1 bouyer * with the real channel
2945 1.44.2.1 bouyer */
2946 1.44.2.1 bouyer if (pa->pa_function == 0) {
2947 1.44.2.1 bouyer compatchan = 0;
2948 1.44.2.1 bouyer } else if (pa->pa_function == 1) {
2949 1.44.2.1 bouyer compatchan = 1;
2950 1.44.2.1 bouyer } else {
2951 1.44.2.1 bouyer printf("%s: unexpected PCI function %d\n",
2952 1.44.2.1 bouyer sc->sc_wdcdev.sc_dev.dv_xname, pa->pa_function);
2953 1.44.2.1 bouyer return;
2954 1.44.2.1 bouyer }
2955 1.44.2.1 bouyer sc->sc_wdcdev.nchannels = 1;
2956 1.44.2.1 bouyer } else {
2957 1.44.2.1 bouyer sc->sc_wdcdev.nchannels = 2;
2958 1.44.2.4 bouyer sc->sc_wdcdev.UDMA_cap = 5;
2959 1.44.2.1 bouyer }
2960 1.44.2.1 bouyer for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
2961 1.44.2.1 bouyer cp = &sc->pciide_channels[i];
2962 1.44.2.1 bouyer if (sc->sc_wdcdev.nchannels > 1) {
2963 1.44.2.1 bouyer compatchan = i;
2964 1.44.2.1 bouyer if((pciide_pci_read(sc->sc_pc, sc->sc_tag,
2965 1.44.2.1 bouyer HPT370_CTRL1(i)) & HPT370_CTRL1_EN) == 0) {
2966 1.44.2.1 bouyer printf("%s: %s channel ignored (disabled)\n",
2967 1.44.2.1 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
2968 1.44.2.1 bouyer continue;
2969 1.44.2.1 bouyer }
2970 1.44.2.1 bouyer }
2971 1.44.2.1 bouyer if (pciide_chansetup(sc, i, interface) == 0)
2972 1.44.2.1 bouyer continue;
2973 1.44.2.1 bouyer if (interface & PCIIDE_INTERFACE_PCI(i)) {
2974 1.44.2.1 bouyer cp->hw_ok = pciide_mapregs_native(pa, cp, &cmdsize,
2975 1.44.2.1 bouyer &ctlsize, hpt_pci_intr);
2976 1.44.2.1 bouyer } else {
2977 1.44.2.1 bouyer cp->hw_ok = pciide_mapregs_compat(pa, cp, compatchan,
2978 1.44.2.1 bouyer &cmdsize, &ctlsize);
2979 1.44.2.1 bouyer }
2980 1.44.2.1 bouyer if (cp->hw_ok == 0)
2981 1.44.2.1 bouyer return;
2982 1.44.2.1 bouyer cp->wdc_channel.data32iot = cp->wdc_channel.cmd_iot;
2983 1.44.2.1 bouyer cp->wdc_channel.data32ioh = cp->wdc_channel.cmd_ioh;
2984 1.44.2.1 bouyer wdcattach(&cp->wdc_channel);
2985 1.44.2.1 bouyer hpt_setup_channel(&cp->wdc_channel);
2986 1.44.2.1 bouyer }
2987 1.44.2.1 bouyer if (revision == HPT370_REV) {
2988 1.44.2.1 bouyer /*
2989 1.44.2.1 bouyer * HPT370_REV has a bit to disable interrupts, make sure
2990 1.44.2.1 bouyer * to clear it
2991 1.44.2.1 bouyer */
2992 1.44.2.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, HPT_CSEL,
2993 1.44.2.1 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag, HPT_CSEL) &
2994 1.44.2.1 bouyer ~HPT_CSEL_IRQDIS);
2995 1.44.2.1 bouyer }
2996 1.44.2.1 bouyer return;
2997 1.44.2.1 bouyer }
2998 1.44.2.1 bouyer
2999 1.44.2.1 bouyer void
3000 1.44.2.1 bouyer hpt_setup_channel(chp)
3001 1.44.2.1 bouyer struct channel_softc *chp;
3002 1.44.2.1 bouyer {
3003 1.44.2.1 bouyer struct ata_drive_datas *drvp;
3004 1.44.2.1 bouyer int drive;
3005 1.44.2.1 bouyer int cable;
3006 1.44.2.1 bouyer u_int32_t before, after;
3007 1.44.2.1 bouyer u_int32_t idedma_ctl;
3008 1.44.2.1 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
3009 1.44.2.1 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
3010 1.44.2.1 bouyer
3011 1.44.2.1 bouyer cable = pciide_pci_read(sc->sc_pc, sc->sc_tag, HPT_CSEL);
3012 1.44.2.1 bouyer
3013 1.44.2.1 bouyer /* setup DMA if needed */
3014 1.44.2.1 bouyer pciide_channel_dma_setup(cp);
3015 1.44.2.1 bouyer
3016 1.44.2.1 bouyer idedma_ctl = 0;
3017 1.44.2.1 bouyer
3018 1.44.2.1 bouyer /* Per drive settings */
3019 1.44.2.1 bouyer for (drive = 0; drive < 2; drive++) {
3020 1.44.2.1 bouyer drvp = &chp->ch_drive[drive];
3021 1.44.2.1 bouyer /* If no drive, skip */
3022 1.44.2.1 bouyer if ((drvp->drive_flags & DRIVE) == 0)
3023 1.44.2.1 bouyer continue;
3024 1.44.2.1 bouyer before = pci_conf_read(sc->sc_pc, sc->sc_tag,
3025 1.44.2.1 bouyer HPT_IDETIM(chp->channel, drive));
3026 1.44.2.1 bouyer
3027 1.44.2.1 bouyer /* add timing values, setup DMA if needed */
3028 1.44.2.1 bouyer if (drvp->drive_flags & DRIVE_UDMA) {
3029 1.44.2.4 bouyer /* use Ultra/DMA */
3030 1.44.2.4 bouyer drvp->drive_flags &= ~DRIVE_DMA;
3031 1.44.2.1 bouyer if ((cable & HPT_CSEL_CBLID(chp->channel)) != 0 &&
3032 1.44.2.1 bouyer drvp->UDMA_mode > 2)
3033 1.44.2.1 bouyer drvp->UDMA_mode = 2;
3034 1.44.2.1 bouyer after = (sc->sc_wdcdev.nchannels == 2) ?
3035 1.44.2.1 bouyer hpt370_udma[drvp->UDMA_mode] :
3036 1.44.2.1 bouyer hpt366_udma[drvp->UDMA_mode];
3037 1.44.2.1 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
3038 1.44.2.1 bouyer } else if (drvp->drive_flags & DRIVE_DMA) {
3039 1.44.2.1 bouyer /*
3040 1.44.2.1 bouyer * use Multiword DMA.
3041 1.44.2.1 bouyer * Timings will be used for both PIO and DMA, so adjust
3042 1.44.2.1 bouyer * DMA mode if needed
3043 1.44.2.1 bouyer */
3044 1.44.2.1 bouyer if (drvp->PIO_mode >= 3 &&
3045 1.44.2.1 bouyer (drvp->DMA_mode + 2) > drvp->PIO_mode) {
3046 1.44.2.1 bouyer drvp->DMA_mode = drvp->PIO_mode - 2;
3047 1.44.2.1 bouyer }
3048 1.44.2.1 bouyer after = (sc->sc_wdcdev.nchannels == 2) ?
3049 1.44.2.1 bouyer hpt370_dma[drvp->DMA_mode] :
3050 1.44.2.1 bouyer hpt366_dma[drvp->DMA_mode];
3051 1.44.2.1 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
3052 1.44.2.1 bouyer } else {
3053 1.44.2.1 bouyer /* PIO only */
3054 1.44.2.1 bouyer after = (sc->sc_wdcdev.nchannels == 2) ?
3055 1.44.2.1 bouyer hpt370_pio[drvp->PIO_mode] :
3056 1.44.2.1 bouyer hpt366_pio[drvp->PIO_mode];
3057 1.44.2.1 bouyer }
3058 1.44.2.1 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag,
3059 1.44.2.1 bouyer HPT_IDETIM(chp->channel, drive), after);
3060 1.44.2.1 bouyer WDCDEBUG_PRINT(("%s: bus speed register set to 0x%08x "
3061 1.44.2.1 bouyer "(BIOS 0x%08x)\n", drvp->drv_softc->dv_xname,
3062 1.44.2.1 bouyer after, before), DEBUG_PROBE);
3063 1.44.2.1 bouyer }
3064 1.44.2.1 bouyer if (idedma_ctl != 0) {
3065 1.44.2.1 bouyer /* Add software bits in status register */
3066 1.44.2.1 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3067 1.44.2.1 bouyer IDEDMA_CTL, idedma_ctl);
3068 1.44.2.1 bouyer }
3069 1.44.2.1 bouyer pciide_print_modes(cp);
3070 1.44.2.1 bouyer }
3071 1.44.2.1 bouyer
3072 1.44.2.1 bouyer int
3073 1.44.2.1 bouyer hpt_pci_intr(arg)
3074 1.44.2.1 bouyer void *arg;
3075 1.44.2.1 bouyer {
3076 1.44.2.1 bouyer struct pciide_softc *sc = arg;
3077 1.44.2.1 bouyer struct pciide_channel *cp;
3078 1.44.2.1 bouyer struct channel_softc *wdc_cp;
3079 1.44.2.1 bouyer int rv = 0;
3080 1.44.2.1 bouyer int dmastat, i, crv;
3081 1.44.2.1 bouyer
3082 1.44.2.1 bouyer for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
3083 1.44.2.1 bouyer dmastat = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3084 1.44.2.1 bouyer IDEDMA_CTL + IDEDMA_SCH_OFFSET * i);
3085 1.44.2.1 bouyer if((dmastat & IDEDMA_CTL_INTR) == 0)
3086 1.44.2.1 bouyer continue;
3087 1.44.2.1 bouyer cp = &sc->pciide_channels[i];
3088 1.44.2.1 bouyer wdc_cp = &cp->wdc_channel;
3089 1.44.2.1 bouyer crv = wdcintr(wdc_cp);
3090 1.44.2.1 bouyer if (crv == 0) {
3091 1.44.2.1 bouyer printf("%s:%d: bogus intr\n",
3092 1.44.2.1 bouyer sc->sc_wdcdev.sc_dev.dv_xname, i);
3093 1.44.2.1 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3094 1.44.2.1 bouyer IDEDMA_CTL + IDEDMA_SCH_OFFSET * i, dmastat);
3095 1.44.2.1 bouyer } else
3096 1.44.2.1 bouyer rv = 1;
3097 1.44.2.1 bouyer }
3098 1.44.2.1 bouyer return rv;
3099 1.44.2.1 bouyer }
3100 1.44.2.1 bouyer
3101 1.44.2.1 bouyer
3102 1.44.2.1 bouyer /* A macro to test product */
3103 1.44.2.1 bouyer #define PDC_IS_262(sc) \
3104 1.44.2.1 bouyer ((sc)->sc_pp->ide_product == PCI_PRODUCT_PROMISE_ULTRA66 || \
3105 1.44.2.1 bouyer (sc)->sc_pp->ide_product == PCI_PRODUCT_PROMISE_ULTRA100 || \
3106 1.44.2.1 bouyer (sc)->sc_pp->ide_product == PCI_PRODUCT_PROMISE_ULTRA100X)
3107 1.44.2.1 bouyer
3108 1.44.2.1 bouyer void
3109 1.41 bouyer pdc202xx_chip_map(sc, pa)
3110 1.41 bouyer struct pciide_softc *sc;
3111 1.30 bouyer struct pci_attach_args *pa;
3112 1.41 bouyer {
3113 1.30 bouyer struct pciide_channel *cp;
3114 1.41 bouyer int channel;
3115 1.41 bouyer pcireg_t interface, st, mode;
3116 1.30 bouyer bus_size_t cmdsize, ctlsize;
3117 1.41 bouyer
3118 1.41 bouyer st = pci_conf_read(sc->sc_pc, sc->sc_tag, PDC2xx_STATE);
3119 1.41 bouyer WDCDEBUG_PRINT(("pdc202xx_setup_chip: controller state 0x%x\n", st),
3120 1.41 bouyer DEBUG_PROBE);
3121 1.41 bouyer if (pciide_chipen(sc, pa) == 0)
3122 1.41 bouyer return;
3123 1.41 bouyer
3124 1.41 bouyer /* turn off RAID mode */
3125 1.41 bouyer st &= ~PDC2xx_STATE_IDERAID;
3126 1.31 bouyer
3127 1.31 bouyer /*
3128 1.41 bouyer * can't rely on the PCI_CLASS_REG content if the chip was in raid
3129 1.41 bouyer * mode. We have to fake interface
3130 1.31 bouyer */
3131 1.41 bouyer interface = PCIIDE_INTERFACE_SETTABLE(0) | PCIIDE_INTERFACE_SETTABLE(1);
3132 1.41 bouyer if (st & PDC2xx_STATE_NATIVE)
3133 1.41 bouyer interface |= PCIIDE_INTERFACE_PCI(0) | PCIIDE_INTERFACE_PCI(1);
3134 1.41 bouyer
3135 1.41 bouyer printf("%s: bus-master DMA support present",
3136 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
3137 1.41 bouyer pciide_mapreg_dma(sc, pa);
3138 1.41 bouyer printf("\n");
3139 1.41 bouyer sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
3140 1.41 bouyer WDC_CAPABILITY_MODE;
3141 1.44.2.1 bouyer if (sc->sc_dma_ok) {
3142 1.41 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
3143 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_IRQACK;
3144 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
3145 1.44.2.1 bouyer }
3146 1.41 bouyer sc->sc_wdcdev.PIO_cap = 4;
3147 1.41 bouyer sc->sc_wdcdev.DMA_cap = 2;
3148 1.44.2.1 bouyer if (PDC_IS_262(sc))
3149 1.41 bouyer sc->sc_wdcdev.UDMA_cap = 4;
3150 1.41 bouyer else
3151 1.41 bouyer sc->sc_wdcdev.UDMA_cap = 2;
3152 1.41 bouyer sc->sc_wdcdev.set_modes = pdc202xx_setup_channel;
3153 1.41 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
3154 1.41 bouyer sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
3155 1.41 bouyer
3156 1.41 bouyer /* setup failsafe defaults */
3157 1.41 bouyer mode = 0;
3158 1.41 bouyer mode = PDC2xx_TIM_SET_PA(mode, pdc2xx_pa[0]);
3159 1.41 bouyer mode = PDC2xx_TIM_SET_PB(mode, pdc2xx_pb[0]);
3160 1.41 bouyer mode = PDC2xx_TIM_SET_MB(mode, pdc2xx_dma_mb[0]);
3161 1.41 bouyer mode = PDC2xx_TIM_SET_MC(mode, pdc2xx_dma_mc[0]);
3162 1.41 bouyer for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
3163 1.41 bouyer WDCDEBUG_PRINT(("pdc202xx_setup_chip: channel %d drive 0 "
3164 1.41 bouyer "initial timings 0x%x, now 0x%x\n", channel,
3165 1.41 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag,
3166 1.41 bouyer PDC2xx_TIM(channel, 0)), mode | PDC2xx_TIM_IORDYp),
3167 1.41 bouyer DEBUG_PROBE);
3168 1.41 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PDC2xx_TIM(channel, 0),
3169 1.41 bouyer mode | PDC2xx_TIM_IORDYp);
3170 1.41 bouyer WDCDEBUG_PRINT(("pdc202xx_setup_chip: channel %d drive 1 "
3171 1.41 bouyer "initial timings 0x%x, now 0x%x\n", channel,
3172 1.41 bouyer pci_conf_read(sc->sc_pc, sc->sc_tag,
3173 1.41 bouyer PDC2xx_TIM(channel, 1)), mode), DEBUG_PROBE);
3174 1.41 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PDC2xx_TIM(channel, 1),
3175 1.41 bouyer mode);
3176 1.41 bouyer }
3177 1.41 bouyer
3178 1.41 bouyer mode = PDC2xx_SCR_DMA;
3179 1.44.2.1 bouyer if (PDC_IS_262(sc)) {
3180 1.44.2.1 bouyer mode = PDC2xx_SCR_SET_GEN(mode, PDC262_SCR_GEN_LAT);
3181 1.44.2.1 bouyer } else {
3182 1.44.2.1 bouyer /* the BIOS set it up this way */
3183 1.44.2.1 bouyer mode = PDC2xx_SCR_SET_GEN(mode, 0x1);
3184 1.44.2.1 bouyer }
3185 1.41 bouyer mode = PDC2xx_SCR_SET_I2C(mode, 0x3); /* ditto */
3186 1.41 bouyer mode = PDC2xx_SCR_SET_POLL(mode, 0x1); /* ditto */
3187 1.41 bouyer WDCDEBUG_PRINT(("pdc202xx_setup_chip: initial SCR 0x%x, now 0x%x\n",
3188 1.41 bouyer bus_space_read_4(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_SCR), mode),
3189 1.41 bouyer DEBUG_PROBE);
3190 1.41 bouyer bus_space_write_4(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_SCR, mode);
3191 1.41 bouyer
3192 1.41 bouyer /* controller initial state register is OK even without BIOS */
3193 1.44.2.1 bouyer /* Set DMA mode to IDE DMA compatibility */
3194 1.41 bouyer mode = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_PM);
3195 1.41 bouyer WDCDEBUG_PRINT(("pdc202xx_setup_chip: primary mode 0x%x", mode ),
3196 1.41 bouyer DEBUG_PROBE);
3197 1.41 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_PM,
3198 1.41 bouyer mode | 0x1);
3199 1.41 bouyer mode = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_SM);
3200 1.41 bouyer WDCDEBUG_PRINT((", secondary mode 0x%x\n", mode ), DEBUG_PROBE);
3201 1.41 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_SM,
3202 1.41 bouyer mode | 0x1);
3203 1.41 bouyer
3204 1.41 bouyer for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
3205 1.41 bouyer cp = &sc->pciide_channels[channel];
3206 1.41 bouyer if (pciide_chansetup(sc, channel, interface) == 0)
3207 1.41 bouyer continue;
3208 1.44.2.1 bouyer if ((st & (PDC_IS_262(sc) ?
3209 1.44.2.1 bouyer PDC262_STATE_EN(channel):PDC246_STATE_EN(channel))) == 0) {
3210 1.41 bouyer printf("%s: %s channel ignored (disabled)\n",
3211 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
3212 1.41 bouyer continue;
3213 1.41 bouyer }
3214 1.41 bouyer pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
3215 1.41 bouyer pdc202xx_pci_intr);
3216 1.41 bouyer if (cp->hw_ok == 0)
3217 1.41 bouyer continue;
3218 1.44.2.1 bouyer if (pciide_chan_candisable(cp))
3219 1.44.2.1 bouyer st &= ~(PDC_IS_262(sc) ?
3220 1.44.2.1 bouyer PDC262_STATE_EN(channel):PDC246_STATE_EN(channel));
3221 1.41 bouyer pciide_map_compat_intr(pa, cp, channel, interface);
3222 1.41 bouyer pdc202xx_setup_channel(&cp->wdc_channel);
3223 1.41 bouyer }
3224 1.41 bouyer WDCDEBUG_PRINT(("pdc202xx_setup_chip: new controller state 0x%x\n", st),
3225 1.41 bouyer DEBUG_PROBE);
3226 1.41 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PDC2xx_STATE, st);
3227 1.41 bouyer return;
3228 1.41 bouyer }
3229 1.41 bouyer
3230 1.41 bouyer void
3231 1.41 bouyer pdc202xx_setup_channel(chp)
3232 1.41 bouyer struct channel_softc *chp;
3233 1.41 bouyer {
3234 1.41 bouyer struct ata_drive_datas *drvp;
3235 1.41 bouyer int drive;
3236 1.44.2.1 bouyer pcireg_t mode, st;
3237 1.44.2.1 bouyer u_int32_t idedma_ctl, scr, atapi;
3238 1.41 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
3239 1.41 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
3240 1.44.2.1 bouyer int channel = chp->channel;
3241 1.41 bouyer
3242 1.41 bouyer /* setup DMA if needed */
3243 1.41 bouyer pciide_channel_dma_setup(cp);
3244 1.30 bouyer
3245 1.41 bouyer idedma_ctl = 0;
3246 1.44.2.1 bouyer
3247 1.44.2.1 bouyer /* Per channel settings */
3248 1.44.2.1 bouyer if (PDC_IS_262(sc)) {
3249 1.44.2.1 bouyer scr = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3250 1.44.2.1 bouyer PDC262_U66);
3251 1.44.2.1 bouyer st = pci_conf_read(sc->sc_pc, sc->sc_tag, PDC2xx_STATE);
3252 1.44.2.1 bouyer /* Trimm UDMA mode */
3253 1.44.2.1 bouyer if ((st & PDC262_STATE_80P(channel)) != 0 ||
3254 1.44.2.1 bouyer (chp->ch_drive[0].drive_flags & DRIVE_UDMA &&
3255 1.44.2.1 bouyer chp->ch_drive[0].UDMA_mode <= 2) ||
3256 1.44.2.1 bouyer (chp->ch_drive[1].drive_flags & DRIVE_UDMA &&
3257 1.44.2.1 bouyer chp->ch_drive[1].UDMA_mode <= 2)) {
3258 1.44.2.1 bouyer if (chp->ch_drive[0].UDMA_mode > 2)
3259 1.44.2.1 bouyer chp->ch_drive[0].UDMA_mode = 2;
3260 1.44.2.1 bouyer if (chp->ch_drive[1].UDMA_mode > 2)
3261 1.44.2.1 bouyer chp->ch_drive[1].UDMA_mode = 2;
3262 1.44.2.1 bouyer }
3263 1.44.2.1 bouyer /* Set U66 if needed */
3264 1.44.2.1 bouyer if ((chp->ch_drive[0].drive_flags & DRIVE_UDMA &&
3265 1.44.2.1 bouyer chp->ch_drive[0].UDMA_mode > 2) ||
3266 1.44.2.1 bouyer (chp->ch_drive[1].drive_flags & DRIVE_UDMA &&
3267 1.44.2.1 bouyer chp->ch_drive[1].UDMA_mode > 2))
3268 1.44.2.1 bouyer scr |= PDC262_U66_EN(channel);
3269 1.44.2.1 bouyer else
3270 1.44.2.1 bouyer scr &= ~PDC262_U66_EN(channel);
3271 1.44.2.1 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3272 1.44.2.1 bouyer PDC262_U66, scr);
3273 1.44.2.1 bouyer if (chp->ch_drive[0].drive_flags & DRIVE_ATAPI ||
3274 1.44.2.1 bouyer chp->ch_drive[1].drive_flags & DRIVE_ATAPI) {
3275 1.44.2.1 bouyer if (((chp->ch_drive[0].drive_flags & DRIVE_UDMA) &&
3276 1.44.2.1 bouyer !(chp->ch_drive[1].drive_flags & DRIVE_UDMA) &&
3277 1.44.2.1 bouyer (chp->ch_drive[1].drive_flags & DRIVE_DMA)) ||
3278 1.44.2.1 bouyer ((chp->ch_drive[1].drive_flags & DRIVE_UDMA) &&
3279 1.44.2.1 bouyer !(chp->ch_drive[0].drive_flags & DRIVE_UDMA) &&
3280 1.44.2.1 bouyer (chp->ch_drive[0].drive_flags & DRIVE_DMA)))
3281 1.44.2.1 bouyer atapi = 0;
3282 1.44.2.1 bouyer else
3283 1.44.2.1 bouyer atapi = PDC262_ATAPI_UDMA;
3284 1.44.2.1 bouyer bus_space_write_4(sc->sc_dma_iot, sc->sc_dma_ioh,
3285 1.44.2.1 bouyer PDC262_ATAPI(channel), atapi);
3286 1.44.2.1 bouyer }
3287 1.44.2.1 bouyer }
3288 1.41 bouyer for (drive = 0; drive < 2; drive++) {
3289 1.41 bouyer drvp = &chp->ch_drive[drive];
3290 1.41 bouyer /* If no drive, skip */
3291 1.41 bouyer if ((drvp->drive_flags & DRIVE) == 0)
3292 1.41 bouyer continue;
3293 1.44.2.1 bouyer mode = 0;
3294 1.41 bouyer if (drvp->drive_flags & DRIVE_UDMA) {
3295 1.44.2.4 bouyer /* use Ultra/DMA */
3296 1.44.2.4 bouyer drvp->drive_flags &= ~DRIVE_DMA;
3297 1.41 bouyer mode = PDC2xx_TIM_SET_MB(mode,
3298 1.41 bouyer pdc2xx_udma_mb[drvp->UDMA_mode]);
3299 1.41 bouyer mode = PDC2xx_TIM_SET_MC(mode,
3300 1.41 bouyer pdc2xx_udma_mc[drvp->UDMA_mode]);
3301 1.41 bouyer drvp->drive_flags &= ~DRIVE_DMA;
3302 1.41 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
3303 1.41 bouyer } else if (drvp->drive_flags & DRIVE_DMA) {
3304 1.41 bouyer mode = PDC2xx_TIM_SET_MB(mode,
3305 1.41 bouyer pdc2xx_dma_mb[drvp->DMA_mode]);
3306 1.41 bouyer mode = PDC2xx_TIM_SET_MC(mode,
3307 1.41 bouyer pdc2xx_dma_mc[drvp->DMA_mode]);
3308 1.41 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
3309 1.41 bouyer } else {
3310 1.41 bouyer mode = PDC2xx_TIM_SET_MB(mode,
3311 1.41 bouyer pdc2xx_dma_mb[0]);
3312 1.41 bouyer mode = PDC2xx_TIM_SET_MC(mode,
3313 1.41 bouyer pdc2xx_dma_mc[0]);
3314 1.41 bouyer }
3315 1.41 bouyer mode = PDC2xx_TIM_SET_PA(mode, pdc2xx_pa[drvp->PIO_mode]);
3316 1.41 bouyer mode = PDC2xx_TIM_SET_PB(mode, pdc2xx_pb[drvp->PIO_mode]);
3317 1.44.2.1 bouyer if (drvp->drive_flags & DRIVE_ATA)
3318 1.44.2.1 bouyer mode |= PDC2xx_TIM_PRE;
3319 1.44.2.1 bouyer mode |= PDC2xx_TIM_SYNC | PDC2xx_TIM_ERRDY;
3320 1.44.2.1 bouyer if (drvp->PIO_mode >= 3) {
3321 1.44.2.1 bouyer mode |= PDC2xx_TIM_IORDY;
3322 1.44.2.1 bouyer if (drive == 0)
3323 1.44.2.1 bouyer mode |= PDC2xx_TIM_IORDYp;
3324 1.44.2.1 bouyer }
3325 1.41 bouyer WDCDEBUG_PRINT(("pdc202xx_setup_channel: %s:%d:%d "
3326 1.41 bouyer "timings 0x%x\n",
3327 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname,
3328 1.41 bouyer chp->channel, drive, mode), DEBUG_PROBE);
3329 1.41 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag,
3330 1.41 bouyer PDC2xx_TIM(chp->channel, drive), mode);
3331 1.41 bouyer }
3332 1.41 bouyer if (idedma_ctl != 0) {
3333 1.41 bouyer /* Add software bits in status register */
3334 1.41 bouyer bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3335 1.41 bouyer IDEDMA_CTL, idedma_ctl);
3336 1.30 bouyer }
3337 1.41 bouyer pciide_print_modes(cp);
3338 1.41 bouyer }
3339 1.41 bouyer
3340 1.41 bouyer int
3341 1.41 bouyer pdc202xx_pci_intr(arg)
3342 1.41 bouyer void *arg;
3343 1.41 bouyer {
3344 1.41 bouyer struct pciide_softc *sc = arg;
3345 1.41 bouyer struct pciide_channel *cp;
3346 1.41 bouyer struct channel_softc *wdc_cp;
3347 1.41 bouyer int i, rv, crv;
3348 1.41 bouyer u_int32_t scr;
3349 1.30 bouyer
3350 1.41 bouyer rv = 0;
3351 1.41 bouyer scr = bus_space_read_4(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_SCR);
3352 1.41 bouyer for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
3353 1.41 bouyer cp = &sc->pciide_channels[i];
3354 1.41 bouyer wdc_cp = &cp->wdc_channel;
3355 1.41 bouyer /* If a compat channel skip. */
3356 1.41 bouyer if (cp->compat)
3357 1.41 bouyer continue;
3358 1.41 bouyer if (scr & PDC2xx_SCR_INT(i)) {
3359 1.41 bouyer crv = wdcintr(wdc_cp);
3360 1.41 bouyer if (crv == 0)
3361 1.41 bouyer printf("%s:%d: bogus intr\n",
3362 1.41 bouyer sc->sc_wdcdev.sc_dev.dv_xname, i);
3363 1.41 bouyer else
3364 1.41 bouyer rv = 1;
3365 1.41 bouyer }
3366 1.15 bouyer }
3367 1.41 bouyer return rv;
3368 1.44.2.1 bouyer }
3369 1.44.2.1 bouyer
3370 1.44.2.1 bouyer void
3371 1.44.2.1 bouyer opti_chip_map(sc, pa)
3372 1.44.2.1 bouyer struct pciide_softc *sc;
3373 1.44.2.1 bouyer struct pci_attach_args *pa;
3374 1.44.2.1 bouyer {
3375 1.44.2.1 bouyer struct pciide_channel *cp;
3376 1.44.2.1 bouyer bus_size_t cmdsize, ctlsize;
3377 1.44.2.1 bouyer pcireg_t interface;
3378 1.44.2.1 bouyer u_int8_t init_ctrl;
3379 1.44.2.1 bouyer int channel;
3380 1.44.2.1 bouyer
3381 1.44.2.1 bouyer if (pciide_chipen(sc, pa) == 0)
3382 1.44.2.1 bouyer return;
3383 1.44.2.1 bouyer printf("%s: bus-master DMA support present",
3384 1.44.2.1 bouyer sc->sc_wdcdev.sc_dev.dv_xname);
3385 1.44.2.1 bouyer pciide_mapreg_dma(sc, pa);
3386 1.44.2.1 bouyer printf("\n");
3387 1.44.2.1 bouyer
3388 1.44.2.1 bouyer sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
3389 1.44.2.1 bouyer WDC_CAPABILITY_MODE;
3390 1.44.2.1 bouyer sc->sc_wdcdev.PIO_cap = 4;
3391 1.44.2.1 bouyer if (sc->sc_dma_ok) {
3392 1.44.2.1 bouyer sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
3393 1.44.2.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
3394 1.44.2.1 bouyer sc->sc_wdcdev.DMA_cap = 2;
3395 1.44.2.1 bouyer }
3396 1.44.2.1 bouyer sc->sc_wdcdev.set_modes = opti_setup_channel;
3397 1.44.2.1 bouyer
3398 1.44.2.1 bouyer sc->sc_wdcdev.channels = sc->wdc_chanarray;
3399 1.44.2.1 bouyer sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
3400 1.44.2.1 bouyer
3401 1.44.2.1 bouyer init_ctrl = pciide_pci_read(sc->sc_pc, sc->sc_tag,
3402 1.44.2.1 bouyer OPTI_REG_INIT_CONTROL);
3403 1.44.2.1 bouyer
3404 1.44.2.1 bouyer interface = PCI_INTERFACE(pa->pa_class);
3405 1.44.2.1 bouyer
3406 1.44.2.1 bouyer for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
3407 1.44.2.1 bouyer cp = &sc->pciide_channels[channel];
3408 1.44.2.1 bouyer if (pciide_chansetup(sc, channel, interface) == 0)
3409 1.44.2.1 bouyer continue;
3410 1.44.2.1 bouyer if (channel == 1 &&
3411 1.44.2.1 bouyer (init_ctrl & OPTI_INIT_CONTROL_CH2_DISABLE) != 0) {
3412 1.44.2.1 bouyer printf("%s: %s channel ignored (disabled)\n",
3413 1.44.2.1 bouyer sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
3414 1.44.2.1 bouyer continue;
3415 1.44.2.1 bouyer }
3416 1.44.2.1 bouyer pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
3417 1.44.2.1 bouyer pciide_pci_intr);
3418 1.44.2.1 bouyer if (cp->hw_ok == 0)
3419 1.44.2.1 bouyer continue;
3420 1.44.2.1 bouyer pciide_map_compat_intr(pa, cp, channel, interface);
3421 1.44.2.1 bouyer if (cp->hw_ok == 0)
3422 1.44.2.1 bouyer continue;
3423 1.44.2.1 bouyer opti_setup_channel(&cp->wdc_channel);
3424 1.44.2.1 bouyer }
3425 1.44.2.1 bouyer }
3426 1.44.2.1 bouyer
3427 1.44.2.1 bouyer void
3428 1.44.2.1 bouyer opti_setup_channel(chp)
3429 1.44.2.1 bouyer struct channel_softc *chp;
3430 1.44.2.1 bouyer {
3431 1.44.2.1 bouyer struct ata_drive_datas *drvp;
3432 1.44.2.1 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
3433 1.44.2.1 bouyer struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
3434 1.44.2.1 bouyer int drive, spd;
3435 1.44.2.1 bouyer int mode[2];
3436 1.44.2.1 bouyer u_int8_t rv, mr;
3437 1.44.2.1 bouyer
3438 1.44.2.1 bouyer /*
3439 1.44.2.1 bouyer * The `Delay' and `Address Setup Time' fields of the
3440 1.44.2.1 bouyer * Miscellaneous Register are always zero initially.
3441 1.44.2.1 bouyer */
3442 1.44.2.1 bouyer mr = opti_read_config(chp, OPTI_REG_MISC) & ~OPTI_MISC_INDEX_MASK;
3443 1.44.2.1 bouyer mr &= ~(OPTI_MISC_DELAY_MASK |
3444 1.44.2.1 bouyer OPTI_MISC_ADDR_SETUP_MASK |
3445 1.44.2.1 bouyer OPTI_MISC_INDEX_MASK);
3446 1.44.2.1 bouyer
3447 1.44.2.1 bouyer /* Prime the control register before setting timing values */
3448 1.44.2.1 bouyer opti_write_config(chp, OPTI_REG_CONTROL, OPTI_CONTROL_DISABLE);
3449 1.44.2.1 bouyer
3450 1.44.2.1 bouyer /* Determine the clockrate of the PCIbus the chip is attached to */
3451 1.44.2.1 bouyer spd = (int) opti_read_config(chp, OPTI_REG_STRAP);
3452 1.44.2.1 bouyer spd &= OPTI_STRAP_PCI_SPEED_MASK;
3453 1.44.2.1 bouyer
3454 1.44.2.1 bouyer /* setup DMA if needed */
3455 1.44.2.1 bouyer pciide_channel_dma_setup(cp);
3456 1.44.2.1 bouyer
3457 1.44.2.1 bouyer for (drive = 0; drive < 2; drive++) {
3458 1.44.2.1 bouyer drvp = &chp->ch_drive[drive];
3459 1.44.2.1 bouyer /* If no drive, skip */
3460 1.44.2.1 bouyer if ((drvp->drive_flags & DRIVE) == 0) {
3461 1.44.2.1 bouyer mode[drive] = -1;
3462 1.44.2.1 bouyer continue;
3463 1.44.2.1 bouyer }
3464 1.44.2.1 bouyer
3465 1.44.2.1 bouyer if ((drvp->drive_flags & DRIVE_DMA)) {
3466 1.44.2.1 bouyer /*
3467 1.44.2.1 bouyer * Timings will be used for both PIO and DMA,
3468 1.44.2.1 bouyer * so adjust DMA mode if needed
3469 1.44.2.1 bouyer */
3470 1.44.2.1 bouyer if (drvp->PIO_mode > (drvp->DMA_mode + 2))
3471 1.44.2.1 bouyer drvp->PIO_mode = drvp->DMA_mode + 2;
3472 1.44.2.1 bouyer if (drvp->DMA_mode + 2 > (drvp->PIO_mode))
3473 1.44.2.1 bouyer drvp->DMA_mode = (drvp->PIO_mode > 2) ?
3474 1.44.2.1 bouyer drvp->PIO_mode - 2 : 0;
3475 1.44.2.1 bouyer if (drvp->DMA_mode == 0)
3476 1.44.2.1 bouyer drvp->PIO_mode = 0;
3477 1.44.2.1 bouyer
3478 1.44.2.1 bouyer mode[drive] = drvp->DMA_mode + 5;
3479 1.44.2.1 bouyer } else
3480 1.44.2.1 bouyer mode[drive] = drvp->PIO_mode;
3481 1.44.2.1 bouyer
3482 1.44.2.1 bouyer if (drive && mode[0] >= 0 &&
3483 1.44.2.1 bouyer (opti_tim_as[spd][mode[0]] != opti_tim_as[spd][mode[1]])) {
3484 1.44.2.1 bouyer /*
3485 1.44.2.1 bouyer * Can't have two drives using different values
3486 1.44.2.1 bouyer * for `Address Setup Time'.
3487 1.44.2.1 bouyer * Slow down the faster drive to compensate.
3488 1.44.2.1 bouyer */
3489 1.44.2.1 bouyer int d = (opti_tim_as[spd][mode[0]] >
3490 1.44.2.1 bouyer opti_tim_as[spd][mode[1]]) ? 0 : 1;
3491 1.44.2.1 bouyer
3492 1.44.2.1 bouyer mode[d] = mode[1-d];
3493 1.44.2.1 bouyer chp->ch_drive[d].PIO_mode = chp->ch_drive[1-d].PIO_mode;
3494 1.44.2.1 bouyer chp->ch_drive[d].DMA_mode = 0;
3495 1.44.2.1 bouyer chp->ch_drive[d].drive_flags &= DRIVE_DMA;
3496 1.44.2.1 bouyer }
3497 1.44.2.1 bouyer }
3498 1.44.2.1 bouyer
3499 1.44.2.1 bouyer for (drive = 0; drive < 2; drive++) {
3500 1.44.2.1 bouyer int m;
3501 1.44.2.1 bouyer if ((m = mode[drive]) < 0)
3502 1.44.2.1 bouyer continue;
3503 1.44.2.1 bouyer
3504 1.44.2.1 bouyer /* Set the Address Setup Time and select appropriate index */
3505 1.44.2.1 bouyer rv = opti_tim_as[spd][m] << OPTI_MISC_ADDR_SETUP_SHIFT;
3506 1.44.2.1 bouyer rv |= OPTI_MISC_INDEX(drive);
3507 1.44.2.1 bouyer opti_write_config(chp, OPTI_REG_MISC, mr | rv);
3508 1.44.2.1 bouyer
3509 1.44.2.1 bouyer /* Set the pulse width and recovery timing parameters */
3510 1.44.2.1 bouyer rv = opti_tim_cp[spd][m] << OPTI_PULSE_WIDTH_SHIFT;
3511 1.44.2.1 bouyer rv |= opti_tim_rt[spd][m] << OPTI_RECOVERY_TIME_SHIFT;
3512 1.44.2.1 bouyer opti_write_config(chp, OPTI_REG_READ_CYCLE_TIMING, rv);
3513 1.44.2.1 bouyer opti_write_config(chp, OPTI_REG_WRITE_CYCLE_TIMING, rv);
3514 1.44.2.1 bouyer
3515 1.44.2.1 bouyer /* Set the Enhanced Mode register appropriately */
3516 1.44.2.1 bouyer rv = pciide_pci_read(sc->sc_pc, sc->sc_tag, OPTI_REG_ENH_MODE);
3517 1.44.2.1 bouyer rv &= ~OPTI_ENH_MODE_MASK(chp->channel, drive);
3518 1.44.2.1 bouyer rv |= OPTI_ENH_MODE(chp->channel, drive, opti_tim_em[m]);
3519 1.44.2.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, OPTI_REG_ENH_MODE, rv);
3520 1.44.2.1 bouyer }
3521 1.44.2.1 bouyer
3522 1.44.2.1 bouyer /* Finally, enable the timings */
3523 1.44.2.1 bouyer opti_write_config(chp, OPTI_REG_CONTROL, OPTI_CONTROL_ENABLE);
3524 1.44.2.1 bouyer
3525 1.44.2.1 bouyer pciide_print_modes(cp);
3526 1.1 cgd }
3527