xref: /netbsd-src/sys/dev/pci/geodeide.c (revision df0caa2637da0538ecdf6b878c4d08e684b43d8f)
1 /*	$NetBSD: geodeide.c,v 1.9 2005/06/25 05:04:01 fair 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.9 2005/06/25 05:04:01 fair 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 ata_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_atac.atac_dev.dv_xname);
118 	pciide_mapreg_dma(sc, pa);
119 	aprint_normal("\n");
120 	if (sc->sc_dma_ok) {
121 		sc->sc_wdcdev.sc_atac.atac_cap = ATAC_CAP_DMA | ATAC_CAP_UDMA;
122 		sc->sc_wdcdev.irqack = pciide_irqack;
123 	}
124 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
125 	sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
126 	sc->sc_wdcdev.sc_atac.atac_udma_cap = 2;
127 	/*
128 	 * The 5530 is utterly swamped by UDMA mode 2, so limit to mode 1
129 	 * so that the chip is able to perform the other functions it has
130 	 * while IDE UDMA is going on.
131 	 */
132 	if (sc->sc_pp->ide_product == PCI_PRODUCT_CYRIX_CX5530_IDE) {
133 		sc->sc_wdcdev.sc_atac.atac_udma_cap = 1;
134 	}
135 	sc->sc_wdcdev.sc_atac.atac_set_modes = geodeide_setup_channel;
136 	sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
137 	sc->sc_wdcdev.sc_atac.atac_nchannels = PCIIDE_NUM_CHANNELS;
138 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
139 
140 	/*
141 	 * Soekris Engineering Issue #0003:
142 	 * 	"The SC1100 built in busmaster IDE controller is pretty
143 	 *	 standard, but have two bugs: data transfers need to be
144 	 *	 dword aligned and it cannot do an exact 64Kbyte data
145 	 *	 transfer."
146 	 */
147 	if (sc->sc_pp->ide_product == PCI_PRODUCT_NS_SC1100_IDE) {
148 		if (sc->sc_dma_boundary == 0x10000)
149 			sc->sc_dma_boundary -= PAGE_SIZE;
150 
151 		if (sc->sc_dma_maxsegsz == 0x10000)
152 			sc->sc_dma_maxsegsz -= PAGE_SIZE;
153 	}
154 
155 	wdc_allocate_regs(&sc->sc_wdcdev);
156 
157 	for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels;
158 	     channel++) {
159 		cp = &sc->pciide_channels[channel];
160 		/* controller is compat-only */
161 		if (pciide_chansetup(sc, channel, 0) == 0)
162 			continue;
163 		pciide_mapchan(pa, cp, 0, &cmdsize, &ctlsize, pciide_pci_intr);
164 	}
165 }
166 
167 static void
168 geodeide_setup_channel(struct ata_channel *chp)
169 {
170 	struct ata_drive_datas *drvp;
171 	struct pciide_channel *cp = CHAN_TO_PCHAN(chp);
172 	struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
173 	int channel = chp->ch_channel;
174 	int drive, s;
175 	u_int32_t dma_timing;
176 	u_int8_t idedma_ctl;
177 	const int32_t *geode_pio;
178 	const int32_t *geode_dma;
179 	const int32_t *geode_udma;
180 	bus_size_t dmaoff, piooff;
181 
182 	switch (sc->sc_pp->ide_product) {
183 	case PCI_PRODUCT_CYRIX_CX5530_IDE:
184 		geode_pio = geode_cs5530_pio;
185 		geode_dma = geode_cs5530_dma;
186 		geode_udma = geode_cs5530_udma;
187 		break;
188 
189 	case PCI_PRODUCT_NS_SC1100_IDE:
190 	default: /* XXX gcc */
191 		geode_pio = geode_sc1100_pio;
192 		geode_dma = geode_sc1100_dma;
193 		geode_udma = geode_sc1100_udma;
194 		break;
195 	}
196 
197 	/* setup DMA if needed */
198 	pciide_channel_dma_setup(cp);
199 
200 	idedma_ctl = 0;
201 
202 	/* Per drive settings */
203 	for (drive = 0; drive < 2; drive++) {
204 		drvp = &chp->ch_drive[drive];
205 		/* If no drive, skip */
206 		if ((drvp->drive_flags & DRIVE) == 0)
207 			continue;
208 
209 		switch (sc->sc_pp->ide_product) {
210 		case PCI_PRODUCT_CYRIX_CX5530_IDE:
211 			dmaoff = CS5530_DMA_REG(channel, drive);
212 			piooff = CS5530_PIO_REG(channel, drive);
213 			dma_timing = CS5530_DMA_REG_PIO_FORMAT;
214 			break;
215 
216 		case PCI_PRODUCT_NS_SC1100_IDE:
217 		default: /* XXX gcc */
218 			dmaoff = SC1100_DMA_REG(channel, drive);
219 			piooff = SC1100_PIO_REG(channel, drive);
220 			dma_timing = 0;
221 			break;
222 		}
223 
224 		/* add timing values, setup DMA if needed */
225 		if (drvp->drive_flags & DRIVE_UDMA) {
226 			/* Use Ultra-DMA */
227 			dma_timing |= geode_udma[drvp->UDMA_mode];
228 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
229 		} else if (drvp->drive_flags & DRIVE_DMA) {
230 			/* use Multiword DMA */
231 			dma_timing |= geode_dma[drvp->DMA_mode];
232 			idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
233 		} else {
234 			/* PIO only */
235 			s = splbio();
236 			drvp->drive_flags &= ~(DRIVE_UDMA | DRIVE_DMA);
237 			splx(s);
238 		}
239 
240 		switch (sc->sc_pp->ide_product) {
241 		case PCI_PRODUCT_CYRIX_CX5530_IDE:
242 			bus_space_write_4(sc->sc_dma_iot, sc->sc_dma_ioh,
243 			    dmaoff, dma_timing);
244 			bus_space_write_4(sc->sc_dma_iot, sc->sc_dma_ioh,
245 			    piooff, geode_pio[drvp->PIO_mode]);
246 			break;
247 
248 		case PCI_PRODUCT_NS_SC1100_IDE:
249 			pci_conf_write(sc->sc_pc, sc->sc_tag, dmaoff,
250 			    dma_timing);
251 			pci_conf_write(sc->sc_pc, sc->sc_tag, piooff,
252 			    geode_pio[drvp->PIO_mode]);
253 			break;
254 		}
255 	}
256 
257 	if (idedma_ctl != 0) {
258 		/* Add software bits in status register */
259 		bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
260 		    idedma_ctl);
261 	}
262 }
263