geodeide.c revision 1.3 1 /* $NetBSD: geodeide.c,v 1.3 2004/08/13 03:12:59 thorpej Exp $ */
2
3 /*
4 * Copyright (c) 2004 Manuel Bouyer.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by Manuel Bouyer.
17 * 4. The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 */
32
33 /*
34 * Driver for the IDE part of the AMD Geode CS5530A companion chip
35 * and AMD Geode SC1100.
36 * Docs available from AMD's web site
37 */
38
39 #include <sys/cdefs.h>
40 __KERNEL_RCSID(0, "$NetBSD: geodeide.c,v 1.3 2004/08/13 03:12:59 thorpej Exp $");
41
42 #include <sys/param.h>
43 #include <sys/systm.h>
44
45 #include <uvm/uvm_extern.h>
46
47 #include <dev/pci/pcivar.h>
48 #include <dev/pci/pcidevs.h>
49 #include <dev/pci/pciidereg.h>
50 #include <dev/pci/pciidevar.h>
51
52 #include <dev/pci/pciide_geode_reg.h>
53
54 static void geodeide_chip_map(struct pciide_softc *,
55 struct pci_attach_args *);
56 static void geodeide_setup_channel(struct wdc_channel *);
57
58 static int geodeide_match(struct device *, struct cfdata *, void *);
59 static void geodeide_attach(struct device *, struct device *, void *);
60
61 CFATTACH_DECL(geodeide, sizeof(struct pciide_softc),
62 geodeide_match, geodeide_attach, NULL, NULL);
63
64 static const struct pciide_product_desc pciide_geode_products[] = {
65 { PCI_PRODUCT_CYRIX_CX5530_IDE,
66 0,
67 "AMD Geode CX5530 IDE controller",
68 geodeide_chip_map,
69 },
70 { PCI_PRODUCT_NS_SC1100_IDE,
71 0,
72 "AMD Geode SC1100 IDE controller",
73 geodeide_chip_map,
74 },
75 { 0,
76 0,
77 NULL,
78 NULL,
79 },
80 };
81
82 static int
83 geodeide_match(struct device *parent, struct cfdata *match, void *aux)
84 {
85 struct pci_attach_args *pa = aux;
86
87 if ((PCI_VENDOR(pa->pa_id) == PCI_VENDOR_CYRIX ||
88 PCI_VENDOR(pa->pa_id) == PCI_VENDOR_NS) &&
89 PCI_CLASS(pa->pa_class) == PCI_CLASS_MASS_STORAGE &&
90 PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_IDE &&
91 pciide_lookup_product(pa->pa_id, pciide_geode_products))
92 return(2);
93 return (0);
94 }
95
96 static void
97 geodeide_attach(struct device *parent, struct device *self, void *aux)
98 {
99 struct pci_attach_args *pa = aux;
100 struct pciide_softc *sc = (void *)self;
101
102 pciide_common_attach(sc, pa,
103 pciide_lookup_product(pa->pa_id, pciide_geode_products));
104 }
105
106 static void
107 geodeide_chip_map(struct pciide_softc *sc, struct pci_attach_args *pa)
108 {
109 struct pciide_channel *cp;
110 int channel;
111 bus_size_t cmdsize, ctlsize;
112
113 if (pciide_chipen(sc, pa) == 0)
114 return;
115
116 aprint_normal("%s: bus-master DMA support present",
117 sc->sc_wdcdev.sc_dev.dv_xname);
118 pciide_mapreg_dma(sc, pa);
119 aprint_normal("\n");
120 if (sc->sc_dma_ok) {
121 sc->sc_wdcdev.cap = WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
122 sc->sc_wdcdev.irqack = pciide_irqack;
123 }
124 sc->sc_wdcdev.PIO_cap = 4;
125 sc->sc_wdcdev.DMA_cap = 2;
126 sc->sc_wdcdev.UDMA_cap = 2;
127 sc->sc_wdcdev.set_modes = geodeide_setup_channel;
128 sc->sc_wdcdev.channels = sc->wdc_chanarray;
129 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
130 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32;
131
132 /*
133 * Soekris Engineering Issue #0003:
134 * "The SC1100 built in busmaster IDE controller is pretty
135 * standard, but have two bugs: data transfers need to be
136 * dword aligned and it cannot do an exact 64Kbyte data
137 * transfer."
138 */
139 if (sc->sc_pp->ide_product == PCI_PRODUCT_NS_SC1100_IDE) {
140 if (sc->sc_dma_boundary == 0x10000)
141 sc->sc_dma_boundary -= PAGE_SIZE;
142
143 if (sc->sc_dma_maxsegsz == 0x10000)
144 sc->sc_dma_maxsegsz -= PAGE_SIZE;
145 }
146
147 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
148 cp = &sc->pciide_channels[channel];
149 /* controller is compat-only */
150 if (pciide_chansetup(sc, channel, 0) == 0)
151 continue;
152 pciide_mapchan(pa, cp, 0, &cmdsize, &ctlsize, pciide_pci_intr);
153 }
154 }
155
156 static void
157 geodeide_setup_channel(struct wdc_channel *chp)
158 {
159 struct ata_drive_datas *drvp;
160 struct pciide_channel *cp = (struct pciide_channel*)chp;
161 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.ch_wdc;
162 int channel = chp->ch_channel;
163 int drive;
164 u_int32_t dma_timing;
165 u_int8_t idedma_ctl;
166 const int32_t *geode_pio;
167 const int32_t *geode_dma;
168 const int32_t *geode_udma;
169 bus_size_t dmaoff, piooff;
170
171 switch (sc->sc_pp->ide_product) {
172 case PCI_PRODUCT_CYRIX_CX5530_IDE:
173 geode_pio = geode_cs5530_pio;
174 geode_dma = geode_cs5530_dma;
175 geode_udma = geode_cs5530_udma;
176 break;
177
178 case PCI_PRODUCT_NS_SC1100_IDE:
179 default: /* XXX gcc */
180 geode_pio = geode_sc1100_pio;
181 geode_dma = geode_sc1100_dma;
182 geode_udma = geode_sc1100_udma;
183 break;
184 }
185
186 /* setup DMA if needed */
187 pciide_channel_dma_setup(cp);
188
189 idedma_ctl = 0;
190
191 /* Per drive settings */
192 for (drive = 0; drive < 2; drive++) {
193 drvp = &chp->ch_drive[drive];
194 /* If no drive, skip */
195 if ((drvp->drive_flags & DRIVE) == 0)
196 continue;
197
198 switch (sc->sc_pp->ide_product) {
199 case PCI_PRODUCT_CYRIX_CX5530_IDE:
200 dmaoff = CS5530_DMA_REG(channel, drive);
201 piooff = CS5530_PIO_REG(channel, drive);
202 dma_timing = CS5530_DMA_REG_PIO_FORMAT;
203 break;
204
205 case PCI_PRODUCT_NS_SC1100_IDE:
206 default: /* XXX gcc */
207 dmaoff = SC1100_DMA_REG(channel, drive);
208 piooff = SC1100_PIO_REG(channel, drive);
209 dma_timing = 0;
210 break;
211 }
212
213 /* add timing values, setup DMA if needed */
214 if (drvp->drive_flags & DRIVE_UDMA) {
215 /* Use Ultra-DMA */
216 dma_timing |= geode_udma[drvp->UDMA_mode];
217 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
218 } else if (drvp->drive_flags & DRIVE_DMA) {
219 /* use Multiword DMA */
220 dma_timing |= geode_dma[drvp->DMA_mode];
221 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
222 } else {
223 /* PIO only */
224 drvp->drive_flags &= ~(DRIVE_UDMA | DRIVE_DMA);
225 }
226
227 switch (sc->sc_pp->ide_product) {
228 case PCI_PRODUCT_CYRIX_CX5530_IDE:
229 bus_space_write_4(sc->sc_dma_iot, sc->sc_dma_ioh,
230 dmaoff, dma_timing);
231 bus_space_write_4(sc->sc_dma_iot, sc->sc_dma_ioh,
232 piooff, geode_pio[drvp->PIO_mode]);
233 break;
234
235 case PCI_PRODUCT_NS_SC1100_IDE:
236 pci_conf_write(sc->sc_pc, sc->sc_tag, dmaoff,
237 dma_timing);
238 pci_conf_write(sc->sc_pc, sc->sc_tag, piooff,
239 geode_pio[drvp->PIO_mode]);
240 break;
241 }
242 }
243
244 if (idedma_ctl != 0) {
245 /* Add software bits in status register */
246 bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
247 idedma_ctl);
248 }
249 }
250