pciide_pnpbios.c revision 1.17 1 1.17 thorpej /* $NetBSD: pciide_pnpbios.c,v 1.17 2004/08/14 15:08:04 thorpej Exp $ */
2 1.2 thorpej
3 1.1 soren /*
4 1.1 soren * Copyright (c) 1999 Soren S. Jorvang. All rights reserved.
5 1.1 soren *
6 1.1 soren * Redistribution and use in source and binary forms, with or without
7 1.1 soren * modification, are permitted provided that the following conditions
8 1.1 soren * are met:
9 1.1 soren * 1. Redistributions of source code must retain the above copyright
10 1.1 soren * notice, this list of conditions, and the following disclaimer.
11 1.1 soren * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 soren * notice, this list of conditions and the following disclaimer in the
13 1.1 soren * documentation and/or other materials provided with the distribution.
14 1.1 soren *
15 1.1 soren * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 1.1 soren * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 1.1 soren * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 1.1 soren * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 1.1 soren * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 1.1 soren * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 1.1 soren * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 1.1 soren * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 1.1 soren * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 1.1 soren * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 1.1 soren * SUCH DAMAGE.
26 1.1 soren */
27 1.1 soren
28 1.1 soren /*
29 1.1 soren * Handle the weird "almost PCI" IDE on Toshiba Porteges.
30 1.1 soren */
31 1.4 lukem
32 1.4 lukem #include <sys/cdefs.h>
33 1.17 thorpej __KERNEL_RCSID(0, "$NetBSD: pciide_pnpbios.c,v 1.17 2004/08/14 15:08:04 thorpej Exp $");
34 1.1 soren
35 1.1 soren #include <sys/param.h>
36 1.1 soren #include <sys/systm.h>
37 1.1 soren #include <sys/device.h>
38 1.1 soren #include <sys/malloc.h>
39 1.1 soren
40 1.1 soren #include <machine/bus.h>
41 1.1 soren
42 1.11 christos #include <dev/ic/wdcreg.h>
43 1.1 soren #include <dev/isa/isavar.h>
44 1.1 soren #include <dev/isa/isadmavar.h>
45 1.1 soren
46 1.1 soren #include <i386/pnpbios/pnpbiosvar.h>
47 1.1 soren
48 1.1 soren #include <dev/pci/pcireg.h>
49 1.1 soren #include <dev/pci/pcivar.h>
50 1.1 soren #include <dev/pci/pcidevs.h>
51 1.1 soren
52 1.1 soren #include <dev/pci/pciidereg.h>
53 1.1 soren #include <dev/pci/pciidevar.h>
54 1.1 soren
55 1.1 soren static int pciide_pnpbios_match(struct device *, struct cfdata *, void *);
56 1.1 soren static void pciide_pnpbios_attach(struct device *, struct device *, void *);
57 1.17 thorpej void pciide_pnpbios_setup_channel(struct ata_channel *);
58 1.1 soren
59 1.1 soren extern void pciide_channel_dma_setup(struct pciide_channel *);
60 1.1 soren extern int pciide_dma_init(void *, int, int, void *, size_t, int);
61 1.3 soren extern void pciide_dma_start(void *, int, int);
62 1.1 soren extern int pciide_dma_finish(void *, int, int, int);
63 1.1 soren extern int pciide_compat_intr (void *);
64 1.1 soren
65 1.7 thorpej CFATTACH_DECL(pciide_pnpbios, sizeof(struct pciide_softc),
66 1.7 thorpej pciide_pnpbios_match, pciide_pnpbios_attach, NULL, NULL);
67 1.1 soren
68 1.1 soren int
69 1.1 soren pciide_pnpbios_match(parent, match, aux)
70 1.1 soren struct device *parent;
71 1.1 soren struct cfdata *match;
72 1.1 soren void *aux;
73 1.1 soren {
74 1.1 soren struct pnpbiosdev_attach_args *aa = aux;
75 1.1 soren
76 1.1 soren if (strcmp(aa->idstr, "TOS7300") == 0)
77 1.1 soren return 1;
78 1.1 soren
79 1.1 soren return 0;
80 1.1 soren }
81 1.1 soren
82 1.1 soren void
83 1.1 soren pciide_pnpbios_attach(parent, self, aux)
84 1.1 soren struct device *parent, *self;
85 1.1 soren void *aux;
86 1.1 soren {
87 1.1 soren struct pciide_softc *sc = (void *)self;
88 1.1 soren struct pnpbiosdev_attach_args *aa = aux;
89 1.1 soren struct pciide_channel *cp;
90 1.17 thorpej struct ata_channel *wdc_cp;
91 1.17 thorpej struct wdc_regs *wdr;
92 1.1 soren bus_space_tag_t compat_iot;
93 1.11 christos bus_space_handle_t cmd_baseioh, ctl_ioh;
94 1.11 christos int i;
95 1.1 soren
96 1.2 thorpej printf("\n");
97 1.2 thorpej pnpbios_print_devres(self, aa);
98 1.2 thorpej
99 1.2 thorpej printf("%s: Toshiba Extended IDE Controller\n", self->dv_xname);
100 1.1 soren
101 1.1 soren if (pnpbios_io_map(aa->pbt, aa->resc, 2, &sc->sc_dma_iot,
102 1.1 soren &sc->sc_dma_ioh) != 0) {
103 1.1 soren printf("%s: unable to map DMA registers\n", self->dv_xname);
104 1.1 soren return;
105 1.1 soren }
106 1.1 soren if (pnpbios_io_map(aa->pbt, aa->resc, 0, &compat_iot,
107 1.11 christos &cmd_baseioh) != 0) {
108 1.1 soren printf("%s: unable to map command registers\n", self->dv_xname);
109 1.1 soren return;
110 1.1 soren }
111 1.1 soren if (pnpbios_io_map(aa->pbt, aa->resc, 1, &compat_iot,
112 1.1 soren &ctl_ioh) != 0) {
113 1.1 soren printf("%s: unable to map control register\n", self->dv_xname);
114 1.1 soren return;
115 1.1 soren }
116 1.1 soren
117 1.1 soren sc->sc_dmat = &pci_bus_dma_tag;
118 1.1 soren
119 1.1 soren sc->sc_dma_ok = 1;
120 1.1 soren sc->sc_wdcdev.dma_arg = sc;
121 1.1 soren sc->sc_wdcdev.dma_init = pciide_dma_init;
122 1.1 soren sc->sc_wdcdev.dma_start = pciide_dma_start;
123 1.1 soren sc->sc_wdcdev.dma_finish = pciide_dma_finish;
124 1.1 soren sc->sc_wdcdev.channels = sc->wdc_chanarray;
125 1.1 soren sc->sc_wdcdev.nchannels = 1;
126 1.1 soren sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32;
127 1.1 soren sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
128 1.1 soren sc->sc_wdcdev.PIO_cap = 4;
129 1.1 soren sc->sc_wdcdev.DMA_cap = 2; /* XXX */
130 1.1 soren sc->sc_wdcdev.UDMA_cap = 2; /* XXX */
131 1.16 thorpej #if 0 /* XXX */
132 1.8 mycroft sc->sc_wdcdev.set_modes = pciide_pnpbios_setup_channel;
133 1.16 thorpej #endif
134 1.1 soren
135 1.17 thorpej wdc_allocate_regs(&sc->sc_wdcdev);
136 1.17 thorpej
137 1.1 soren cp = &sc->pciide_channels[0];
138 1.17 thorpej wdr = &cp->ata_channel.ch_wdc->regs[0];
139 1.17 thorpej sc->wdc_chanarray[0] = &cp->ata_channel;
140 1.17 thorpej cp->ata_channel.ch_channel = 0;
141 1.17 thorpej cp->ata_channel.ch_wdc = &sc->sc_wdcdev;
142 1.17 thorpej cp->ata_channel.ch_queue = malloc(sizeof(struct ata_queue),
143 1.12 thorpej M_DEVBUF, M_NOWAIT);
144 1.17 thorpej if (cp->ata_channel.ch_queue == NULL) {
145 1.1 soren printf("%s: unable to allocate memory for command queue\n",
146 1.1 soren self->dv_xname);
147 1.1 soren return;
148 1.1 soren }
149 1.1 soren
150 1.17 thorpej wdc_cp = &cp->ata_channel;
151 1.17 thorpej wdr->cmd_iot = compat_iot;
152 1.17 thorpej wdr->cmd_baseioh = cmd_baseioh;
153 1.11 christos
154 1.11 christos for (i = 0; i < WDC_NREG; i++) {
155 1.17 thorpej if (bus_space_subregion(wdr->cmd_iot, wdr->cmd_baseioh, i,
156 1.17 thorpej i == 0 ? 4 : 1, &wdr->cmd_iohs[i]) != 0) {
157 1.11 christos printf("%s: unable to subregion control register\n",
158 1.11 christos self->dv_xname);
159 1.11 christos return;
160 1.11 christos }
161 1.11 christos }
162 1.15 thorpej wdc_init_shadow_regs(wdc_cp);
163 1.11 christos
164 1.17 thorpej wdr->ctl_iot = wdr->data32iot = compat_iot;
165 1.17 thorpej wdr->ctl_ioh = wdr->data32ioh = ctl_ioh;
166 1.1 soren
167 1.1 soren cp->compat = 1;
168 1.1 soren
169 1.1 soren cp->ih = pnpbios_intr_establish(aa->pbt, aa->resc, 0, IPL_BIO,
170 1.1 soren pciide_compat_intr, cp);
171 1.1 soren
172 1.10 bouyer wdcattach(wdc_cp);
173 1.8 mycroft }
174 1.8 mycroft
175 1.8 mycroft void
176 1.8 mycroft pciide_pnpbios_setup_channel(chp)
177 1.17 thorpej struct ata_channel *chp;
178 1.8 mycroft {
179 1.8 mycroft struct pciide_channel *cp = (struct pciide_channel *)chp;
180 1.1 soren
181 1.1 soren pciide_channel_dma_setup(cp);
182 1.1 soren }
183