blob: 7317defd8210a5c8ae75dbc62fd02d2b3b6262f1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01002 * linux/drivers/ide/pci/hpt366.c Version 0.51 Jun 04, 2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1999-2003 Andre Hedrick <andre@linux-ide.org>
5 * Portions Copyright (C) 2001 Sun Microsystems, Inc.
6 * Portions Copyright (C) 2003 Red Hat Inc
Sergei Shtylyov836c0062006-12-13 00:35:47 -08007 * Portions Copyright (C) 2005-2006 MontaVista Software, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Thanks to HighPoint Technologies for their assistance, and hardware.
10 * Special Thanks to Jon Burchmore in SanDiego for the deep pockets, his
11 * donation of an ABit BP6 mainboard, processor, and memory acellerated
12 * development and support.
13 *
Alan Coxb39b01f2005-06-27 15:24:27 -070014 *
Sergei Shtylyov836c0062006-12-13 00:35:47 -080015 * HighPoint has its own drivers (open source except for the RAID part)
16 * available from http://www.highpoint-tech.com/BIOS%20+%20Driver/.
17 * This may be useful to anyone wanting to work on this driver, however do not
18 * trust them too much since the code tends to become less and less meaningful
19 * as the time passes... :-/
Alan Coxb39b01f2005-06-27 15:24:27 -070020 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * Note that final HPT370 support was done by force extraction of GPL.
22 *
23 * - add function for getting/setting power status of drive
24 * - the HPT370's state machine can get confused. reset it before each dma
25 * xfer to prevent that from happening.
26 * - reset state engine whenever we get an error.
27 * - check for busmaster state at end of dma.
28 * - use new highpoint timings.
29 * - detect bus speed using highpoint register.
30 * - use pll if we don't have a clock table. added a 66MHz table that's
31 * just 2x the 33MHz table.
32 * - removed turnaround. NOTE: we never want to switch between pll and
33 * pci clocks as the chip can glitch in those cases. the highpoint
34 * approved workaround slows everything down too much to be useful. in
35 * addition, we would have to serialize access to each chip.
36 * Adrian Sun <a.sun@sun.com>
37 *
38 * add drive timings for 66MHz PCI bus,
39 * fix ATA Cable signal detection, fix incorrect /proc info
40 * add /proc display for per-drive PIO/DMA/UDMA mode and
41 * per-channel ATA-33/66 Cable detect.
42 * Duncan Laurie <void@sun.com>
43 *
44 * fixup /proc output for multiple controllers
45 * Tim Hockin <thockin@sun.com>
46 *
47 * On hpt366:
48 * Reset the hpt366 on error, reset on dma
49 * Fix disabling Fast Interrupt hpt366.
50 * Mike Waychison <crlf@sun.com>
51 *
52 * Added support for 372N clocking and clock switching. The 372N needs
53 * different clocks on read/write. This requires overloading rw_disk and
54 * other deeply crazy things. Thanks to <http://www.hoerstreich.de> for
55 * keeping me sane.
56 * Alan Cox <alan@redhat.com>
57 *
Sergei Shtylyov836c0062006-12-13 00:35:47 -080058 * - fix the clock turnaround code: it was writing to the wrong ports when
59 * called for the secondary channel, caching the current clock mode per-
60 * channel caused the cached register value to get out of sync with the
61 * actual one, the channels weren't serialized, the turnaround shouldn't
62 * be done on 66 MHz PCI bus
63 * - avoid calibrating PLL twice as the second time results in a wrong PCI
64 * frequency and thus in the wrong timings for the secondary channel
Sergei Shtylyove139b0b2007-02-07 18:17:37 +010065 * - disable UltraATA/133 for HPT372 and UltraATA/100 for HPT370 by default
66 * as the ATA clock being used does not allow for this speed anyway
Sergei Shtylyov836c0062006-12-13 00:35:47 -080067 * - add support for HPT302N and HPT371N clocking (the same as for HPT372N)
68 * - HPT371/N are single channel chips, so avoid touching the primary channel
69 * which exists only virtually (there's no pins for it)
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -080070 * - fix/remove bad/unused timing tables and use one set of tables for the whole
71 * HPT37x chip family; save space by introducing the separate transfer mode
72 * table in which the mode lookup is done
Sergei Shtylyov26c068d2006-12-13 00:35:52 -080073 * - use f_CNT value saved by the HighPoint BIOS as reading it directly gives
74 * the wrong PCI frequency since DPLL has already been calibrated by BIOS
Sergei Shtylyov33b18a62006-12-13 00:35:50 -080075 * - fix the hotswap code: it caused RESET- to glitch when tristating the bus,
76 * and for HPT36x the obsolete HDIO_TRISTATE_HWIF handler was called instead
Sergei Shtylyov73d1dd92006-12-13 00:35:51 -080077 * - pass to init_chipset() handlers a copy of the IDE PCI device structure as
78 * they tamper with its fields
Sergei Shtylyov90778572007-02-07 18:17:51 +010079 * - prefix the driver startup messages with the real chip name
80 * - claim the extra 240 bytes of I/O space for all chips
Sergei Shtylyove139b0b2007-02-07 18:17:37 +010081 * - optimize the rate masking/filtering and the drive list lookup code
Sergei Shtylyovb4586712007-02-07 18:17:54 +010082 * - use pci_get_slot() to get to the function 1 of HPT36x/374
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +010083 * - cache the channel's MCRs' offset; only touch the relevant MCR when detecting
84 * the cable type on HPT374's function 1
85 * - rename all the register related variables consistently
Sergei Shtylyov26ccb802007-02-07 18:18:11 +010086 * - move the interrupt twiddling code from the speedproc handlers into the
87 * init_hwif handler, also grouping all the DMA related code together there;
88 * simplify the init_chipset handler
89 * - merge two HPT37x speedproc handlers and fix the PIO timing register mask
90 * there; make HPT36x speedproc handler look the same way as the HPT37x one
91 * - fix the tuneproc handler to always set the PIO mode requested, not the
92 * best possible one
Sergei Shtylyov836c0062006-12-13 00:35:47 -080093 * <source@mvista.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 */
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <linux/types.h>
97#include <linux/module.h>
98#include <linux/kernel.h>
99#include <linux/delay.h>
100#include <linux/timer.h>
101#include <linux/mm.h>
102#include <linux/ioport.h>
103#include <linux/blkdev.h>
104#include <linux/hdreg.h>
105
106#include <linux/interrupt.h>
107#include <linux/pci.h>
108#include <linux/init.h>
109#include <linux/ide.h>
110
111#include <asm/uaccess.h>
112#include <asm/io.h>
113#include <asm/irq.h>
114
115/* various tuning parameters */
116#define HPT_RESET_STATE_ENGINE
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800117#undef HPT_DELAY_INTERRUPT
118#define HPT_SERIALIZE_IO 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120static const char *quirk_drives[] = {
121 "QUANTUM FIREBALLlct08 08",
122 "QUANTUM FIREBALLP KA6.4",
123 "QUANTUM FIREBALLP LM20.4",
124 "QUANTUM FIREBALLP LM20.5",
125 NULL
126};
127
128static const char *bad_ata100_5[] = {
129 "IBM-DTLA-307075",
130 "IBM-DTLA-307060",
131 "IBM-DTLA-307045",
132 "IBM-DTLA-307030",
133 "IBM-DTLA-307020",
134 "IBM-DTLA-307015",
135 "IBM-DTLA-305040",
136 "IBM-DTLA-305030",
137 "IBM-DTLA-305020",
138 "IC35L010AVER07-0",
139 "IC35L020AVER07-0",
140 "IC35L030AVER07-0",
141 "IC35L040AVER07-0",
142 "IC35L060AVER07-0",
143 "WDC AC310200R",
144 NULL
145};
146
147static const char *bad_ata66_4[] = {
148 "IBM-DTLA-307075",
149 "IBM-DTLA-307060",
150 "IBM-DTLA-307045",
151 "IBM-DTLA-307030",
152 "IBM-DTLA-307020",
153 "IBM-DTLA-307015",
154 "IBM-DTLA-305040",
155 "IBM-DTLA-305030",
156 "IBM-DTLA-305020",
157 "IC35L010AVER07-0",
158 "IC35L020AVER07-0",
159 "IC35L030AVER07-0",
160 "IC35L040AVER07-0",
161 "IC35L060AVER07-0",
162 "WDC AC310200R",
163 NULL
164};
165
166static const char *bad_ata66_3[] = {
167 "WDC AC310200R",
168 NULL
169};
170
171static const char *bad_ata33[] = {
172 "Maxtor 92720U8", "Maxtor 92040U6", "Maxtor 91360U4", "Maxtor 91020U3", "Maxtor 90845U3", "Maxtor 90650U2",
173 "Maxtor 91360D8", "Maxtor 91190D7", "Maxtor 91020D6", "Maxtor 90845D5", "Maxtor 90680D4", "Maxtor 90510D3", "Maxtor 90340D2",
174 "Maxtor 91152D8", "Maxtor 91008D7", "Maxtor 90845D6", "Maxtor 90840D6", "Maxtor 90720D5", "Maxtor 90648D5", "Maxtor 90576D4",
175 "Maxtor 90510D4",
176 "Maxtor 90432D3", "Maxtor 90288D2", "Maxtor 90256D2",
177 "Maxtor 91000D8", "Maxtor 90910D8", "Maxtor 90875D7", "Maxtor 90840D7", "Maxtor 90750D6", "Maxtor 90625D5", "Maxtor 90500D4",
178 "Maxtor 91728D8", "Maxtor 91512D7", "Maxtor 91303D6", "Maxtor 91080D5", "Maxtor 90845D4", "Maxtor 90680D4", "Maxtor 90648D3", "Maxtor 90432D2",
179 NULL
180};
181
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800182static u8 xfer_speeds[] = {
183 XFER_UDMA_6,
184 XFER_UDMA_5,
185 XFER_UDMA_4,
186 XFER_UDMA_3,
187 XFER_UDMA_2,
188 XFER_UDMA_1,
189 XFER_UDMA_0,
190
191 XFER_MW_DMA_2,
192 XFER_MW_DMA_1,
193 XFER_MW_DMA_0,
194
195 XFER_PIO_4,
196 XFER_PIO_3,
197 XFER_PIO_2,
198 XFER_PIO_1,
199 XFER_PIO_0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200};
201
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800202/* Key for bus clock timings
203 * 36x 37x
204 * bits bits
205 * 0:3 0:3 data_high_time. Inactive time of DIOW_/DIOR_ for PIO and MW DMA.
206 * cycles = value + 1
207 * 4:7 4:8 data_low_time. Active time of DIOW_/DIOR_ for PIO and MW DMA.
208 * cycles = value + 1
209 * 8:11 9:12 cmd_high_time. Inactive time of DIOW_/DIOR_ during task file
210 * register access.
211 * 12:15 13:17 cmd_low_time. Active time of DIOW_/DIOR_ during task file
212 * register access.
213 * 16:18 18:20 udma_cycle_time. Clock cycles for UDMA xfer.
214 * - 21 CLK frequency: 0=ATA clock, 1=dual ATA clock.
215 * 19:21 22:24 pre_high_time. Time to initialize the 1st cycle for PIO and
216 * MW DMA xfer.
217 * 22:24 25:27 cmd_pre_high_time. Time to initialize the 1st PIO cycle for
218 * task file register access.
219 * 28 28 UDMA enable.
220 * 29 29 DMA enable.
221 * 30 30 PIO MST enable. If set, the chip is in bus master mode during
222 * PIO xfer.
223 * 31 31 FIFO enable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800226static u32 forty_base_hpt36x[] = {
227 /* XFER_UDMA_6 */ 0x900fd943,
228 /* XFER_UDMA_5 */ 0x900fd943,
229 /* XFER_UDMA_4 */ 0x900fd943,
230 /* XFER_UDMA_3 */ 0x900ad943,
231 /* XFER_UDMA_2 */ 0x900bd943,
232 /* XFER_UDMA_1 */ 0x9008d943,
233 /* XFER_UDMA_0 */ 0x9008d943,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800235 /* XFER_MW_DMA_2 */ 0xa008d943,
236 /* XFER_MW_DMA_1 */ 0xa010d955,
237 /* XFER_MW_DMA_0 */ 0xa010d9fc,
238
239 /* XFER_PIO_4 */ 0xc008d963,
240 /* XFER_PIO_3 */ 0xc010d974,
241 /* XFER_PIO_2 */ 0xc010d997,
242 /* XFER_PIO_1 */ 0xc010d9c7,
243 /* XFER_PIO_0 */ 0xc018d9d9
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244};
245
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800246static u32 thirty_three_base_hpt36x[] = {
247 /* XFER_UDMA_6 */ 0x90c9a731,
248 /* XFER_UDMA_5 */ 0x90c9a731,
249 /* XFER_UDMA_4 */ 0x90c9a731,
250 /* XFER_UDMA_3 */ 0x90cfa731,
251 /* XFER_UDMA_2 */ 0x90caa731,
252 /* XFER_UDMA_1 */ 0x90cba731,
253 /* XFER_UDMA_0 */ 0x90c8a731,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800255 /* XFER_MW_DMA_2 */ 0xa0c8a731,
256 /* XFER_MW_DMA_1 */ 0xa0c8a732, /* 0xa0c8a733 */
257 /* XFER_MW_DMA_0 */ 0xa0c8a797,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800259 /* XFER_PIO_4 */ 0xc0c8a731,
260 /* XFER_PIO_3 */ 0xc0c8a742,
261 /* XFER_PIO_2 */ 0xc0d0a753,
262 /* XFER_PIO_1 */ 0xc0d0a7a3, /* 0xc0d0a793 */
263 /* XFER_PIO_0 */ 0xc0d0a7aa /* 0xc0d0a7a7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264};
265
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800266static u32 twenty_five_base_hpt36x[] = {
267 /* XFER_UDMA_6 */ 0x90c98521,
268 /* XFER_UDMA_5 */ 0x90c98521,
269 /* XFER_UDMA_4 */ 0x90c98521,
270 /* XFER_UDMA_3 */ 0x90cf8521,
271 /* XFER_UDMA_2 */ 0x90cf8521,
272 /* XFER_UDMA_1 */ 0x90cb8521,
273 /* XFER_UDMA_0 */ 0x90cb8521,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800275 /* XFER_MW_DMA_2 */ 0xa0ca8521,
276 /* XFER_MW_DMA_1 */ 0xa0ca8532,
277 /* XFER_MW_DMA_0 */ 0xa0ca8575,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800279 /* XFER_PIO_4 */ 0xc0ca8521,
280 /* XFER_PIO_3 */ 0xc0ca8532,
281 /* XFER_PIO_2 */ 0xc0ca8542,
282 /* XFER_PIO_1 */ 0xc0d08572,
283 /* XFER_PIO_0 */ 0xc0d08585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800286static u32 thirty_three_base_hpt37x[] = {
287 /* XFER_UDMA_6 */ 0x12446231, /* 0x12646231 ?? */
288 /* XFER_UDMA_5 */ 0x12446231,
289 /* XFER_UDMA_4 */ 0x12446231,
290 /* XFER_UDMA_3 */ 0x126c6231,
291 /* XFER_UDMA_2 */ 0x12486231,
292 /* XFER_UDMA_1 */ 0x124c6233,
293 /* XFER_UDMA_0 */ 0x12506297,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800295 /* XFER_MW_DMA_2 */ 0x22406c31,
296 /* XFER_MW_DMA_1 */ 0x22406c33,
297 /* XFER_MW_DMA_0 */ 0x22406c97,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800299 /* XFER_PIO_4 */ 0x06414e31,
300 /* XFER_PIO_3 */ 0x06414e42,
301 /* XFER_PIO_2 */ 0x06414e53,
302 /* XFER_PIO_1 */ 0x06814e93,
303 /* XFER_PIO_0 */ 0x06814ea7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304};
305
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800306static u32 fifty_base_hpt37x[] = {
307 /* XFER_UDMA_6 */ 0x12848242,
308 /* XFER_UDMA_5 */ 0x12848242,
309 /* XFER_UDMA_4 */ 0x12ac8242,
310 /* XFER_UDMA_3 */ 0x128c8242,
311 /* XFER_UDMA_2 */ 0x120c8242,
312 /* XFER_UDMA_1 */ 0x12148254,
313 /* XFER_UDMA_0 */ 0x121882ea,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800315 /* XFER_MW_DMA_2 */ 0x22808242,
316 /* XFER_MW_DMA_1 */ 0x22808254,
317 /* XFER_MW_DMA_0 */ 0x228082ea,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800319 /* XFER_PIO_4 */ 0x0a81f442,
320 /* XFER_PIO_3 */ 0x0a81f443,
321 /* XFER_PIO_2 */ 0x0a81f454,
322 /* XFER_PIO_1 */ 0x0ac1f465,
323 /* XFER_PIO_0 */ 0x0ac1f48a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324};
325
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800326static u32 sixty_six_base_hpt37x[] = {
327 /* XFER_UDMA_6 */ 0x1c869c62,
328 /* XFER_UDMA_5 */ 0x1cae9c62, /* 0x1c8a9c62 */
329 /* XFER_UDMA_4 */ 0x1c8a9c62,
330 /* XFER_UDMA_3 */ 0x1c8e9c62,
331 /* XFER_UDMA_2 */ 0x1c929c62,
332 /* XFER_UDMA_1 */ 0x1c9a9c62,
333 /* XFER_UDMA_0 */ 0x1c829c62,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800335 /* XFER_MW_DMA_2 */ 0x2c829c62,
336 /* XFER_MW_DMA_1 */ 0x2c829c66,
337 /* XFER_MW_DMA_0 */ 0x2c829d2e,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800339 /* XFER_PIO_4 */ 0x0c829c62,
340 /* XFER_PIO_3 */ 0x0c829c84,
341 /* XFER_PIO_2 */ 0x0c829ca6,
342 /* XFER_PIO_1 */ 0x0d029d26,
343 /* XFER_PIO_0 */ 0x0d029d5e
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344};
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346#define HPT366_DEBUG_DRIVE_INFO 0
347#define HPT374_ALLOW_ATA133_6 0
348#define HPT371_ALLOW_ATA133_6 0
349#define HPT302_ALLOW_ATA133_6 0
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800350#define HPT372_ALLOW_ATA133_6 0
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100351#define HPT370_ALLOW_ATA100_5 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#define HPT366_ALLOW_ATA66_4 1
353#define HPT366_ALLOW_ATA66_3 1
354#define HPT366_MAX_DEVS 8
355
356#define F_LOW_PCI_33 0x23
357#define F_LOW_PCI_40 0x29
358#define F_LOW_PCI_50 0x2d
359#define F_LOW_PCI_66 0x42
360
Alan Coxb39b01f2005-06-27 15:24:27 -0700361/*
362 * Hold all the highpoint quirks and revision information in one
363 * place.
364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Alan Coxb39b01f2005-06-27 15:24:27 -0700366struct hpt_info
367{
368 u8 max_mode; /* Speeds allowed */
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100369 u8 revision; /* Chipset revision */
370 u8 flags; /* Chipset properties */
Alan Coxb39b01f2005-06-27 15:24:27 -0700371#define PLL_MODE 1
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800372#define IS_3xxN 2
373#define PCI_66MHZ 4
Alan Coxb39b01f2005-06-27 15:24:27 -0700374 /* Speed table */
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800375 u32 *speed;
Alan Coxb39b01f2005-06-27 15:24:27 -0700376};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Alan Coxb39b01f2005-06-27 15:24:27 -0700378/*
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100379 * This wants fixing so that we do everything not by revision
Alan Coxb39b01f2005-06-27 15:24:27 -0700380 * (which breaks on the newest chips) but by creating an
381 * enumeration of chip variants and using that
382 */
383
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100384static __devinit u8 hpt_revision(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100386 u8 rev = 0;
387
388 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 switch(dev->device) {
391 /* Remap new 372N onto 372 */
392 case PCI_DEVICE_ID_TTI_HPT372N:
Andrew Mortonf36702b2007-02-07 18:17:37 +0100393 rev = PCI_DEVICE_ID_TTI_HPT372;
394 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 case PCI_DEVICE_ID_TTI_HPT374:
Andrew Mortonf36702b2007-02-07 18:17:37 +0100396 rev = PCI_DEVICE_ID_TTI_HPT374;
397 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 case PCI_DEVICE_ID_TTI_HPT371:
Andrew Mortonf36702b2007-02-07 18:17:37 +0100399 rev = PCI_DEVICE_ID_TTI_HPT371;
400 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 case PCI_DEVICE_ID_TTI_HPT302:
Andrew Mortonf36702b2007-02-07 18:17:37 +0100402 rev = PCI_DEVICE_ID_TTI_HPT302;
403 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 case PCI_DEVICE_ID_TTI_HPT372:
Andrew Mortonf36702b2007-02-07 18:17:37 +0100405 rev = PCI_DEVICE_ID_TTI_HPT372;
406 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 default:
408 break;
409 }
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100410 return rev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100413static int check_in_drive_list(ide_drive_t *drive, const char **list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100415 struct hd_driveid *id = drive->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100417 while (*list)
418 if (!strcmp(*list++,id->model))
419 return 1;
420 return 0;
421}
Alan Coxb39b01f2005-06-27 15:24:27 -0700422
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100423static u8 hpt3xx_ratemask(ide_drive_t *drive)
424{
425 struct hpt_info *info = ide_get_hwifdata(HWIF(drive));
426 u8 mode = info->max_mode;
427
Alan Coxb39b01f2005-06-27 15:24:27 -0700428 if (!eighty_ninty_three(drive) && mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 mode = min(mode, (u8)1);
430 return mode;
431}
432
433/*
434 * Note for the future; the SATA hpt37x we must set
435 * either PIO or UDMA modes 0,4,5
436 */
437
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100438static u8 hpt3xx_ratefilter(ide_drive_t *drive, u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100440 struct hpt_info *info = ide_get_hwifdata(HWIF(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 u8 mode = hpt3xx_ratemask(drive);
442
443 if (drive->media != ide_disk)
444 return min(speed, (u8)XFER_PIO_4);
445
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100446 switch (mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 case 0x04:
448 speed = min(speed, (u8)XFER_UDMA_6);
449 break;
450 case 0x03:
451 speed = min(speed, (u8)XFER_UDMA_5);
Alan Coxb39b01f2005-06-27 15:24:27 -0700452 if (info->revision >= 5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100454 if (!check_in_drive_list(drive, bad_ata100_5))
455 goto check_bad_ata33;
456 /* fall thru */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 case 0x02:
Andrew Mortonf36702b2007-02-07 18:17:37 +0100458 speed = min_t(u8, speed, XFER_UDMA_4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 /*
460 * CHECK ME, Does this need to be set to 5 ??
461 */
Alan Coxb39b01f2005-06-27 15:24:27 -0700462 if (info->revision >= 3)
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100463 goto check_bad_ata33;
464 if (HPT366_ALLOW_ATA66_4 &&
465 !check_in_drive_list(drive, bad_ata66_4))
466 goto check_bad_ata33;
467
Andrew Mortonf36702b2007-02-07 18:17:37 +0100468 speed = min_t(u8, speed, XFER_UDMA_3);
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100469 if (HPT366_ALLOW_ATA66_3 &&
470 !check_in_drive_list(drive, bad_ata66_3))
471 goto check_bad_ata33;
472 /* fall thru */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 case 0x01:
Andrew Mortonf36702b2007-02-07 18:17:37 +0100474 speed = min_t(u8, speed, XFER_UDMA_2);
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100475
476 check_bad_ata33:
477 if (info->revision >= 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 break;
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100479 if (!check_in_drive_list(drive, bad_ata33))
480 break;
481 /* fall thru */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 case 0x00:
483 default:
Andrew Mortonf36702b2007-02-07 18:17:37 +0100484 speed = min_t(u8, speed, XFER_MW_DMA_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 break;
486 }
487 return speed;
488}
489
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800490static u32 pci_bus_clock_list(u8 speed, u32 *chipset_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800492 int i;
493
494 /*
495 * Lookup the transfer mode table to get the index into
496 * the timing table.
497 *
498 * NOTE: For XFER_PIO_SLOW, PIO mode 0 timings will be used.
499 */
500 for (i = 0; i < ARRAY_SIZE(xfer_speeds) - 1; i++)
501 if (xfer_speeds[i] == speed)
502 break;
503 return chipset_table[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
506static int hpt36x_tune_chipset(ide_drive_t *drive, u8 xferspeed)
507{
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100508 ide_hwif_t *hwif = HWIF(drive);
509 struct pci_dev *dev = hwif->pci_dev;
510 struct hpt_info *info = ide_get_hwifdata (hwif);
511 u8 speed = hpt3xx_ratefilter(drive, xferspeed);
512 u8 itr_addr = drive->dn ? 0x44 : 0x40;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100513 u32 itr_mask = (speed < XFER_MW_DMA_0) ? 0x30070000 : 0xc0000000;
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100514 u32 new_itr = pci_bus_clock_list(speed, info->speed);
515 u32 old_itr = 0;
Alan Coxb39b01f2005-06-27 15:24:27 -0700516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /*
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100518 * Disable on-chip PIO FIFO/buffer (and PIO MST mode as well)
519 * to avoid problems handling I/O errors later
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 */
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100521 pci_read_config_dword(dev, itr_addr, &old_itr);
522 new_itr = (new_itr & ~itr_mask) | (old_itr & itr_mask);
523 new_itr &= ~0xc0000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100525 pci_write_config_dword(dev, itr_addr, new_itr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 return ide_config_drive_speed(drive, speed);
528}
529
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100530static int hpt37x_tune_chipset(ide_drive_t *drive, u8 xferspeed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100532 ide_hwif_t *hwif = HWIF(drive);
533 struct pci_dev *dev = hwif->pci_dev;
534 struct hpt_info *info = ide_get_hwifdata (hwif);
535 u8 speed = hpt3xx_ratefilter(drive, xferspeed);
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100536 u8 itr_addr = 0x40 + (drive->dn * 4);
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100537 u32 itr_mask = (speed < XFER_MW_DMA_0) ? 0x303c0000 : 0xc0000000;
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100538 u32 new_itr = pci_bus_clock_list(speed, info->speed);
539 u32 old_itr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100541 pci_read_config_dword(dev, itr_addr, &old_itr);
542 new_itr = (new_itr & ~itr_mask) | (old_itr & itr_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Alan Coxb39b01f2005-06-27 15:24:27 -0700544 if (speed < XFER_MW_DMA_0)
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100545 new_itr &= ~0x80000000; /* Disable on-chip PIO FIFO/buffer */
546 pci_write_config_dword(dev, itr_addr, new_itr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 return ide_config_drive_speed(drive, speed);
549}
550
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100551static int hpt3xx_tune_chipset(ide_drive_t *drive, u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100553 ide_hwif_t *hwif = HWIF(drive);
Alan Coxb39b01f2005-06-27 15:24:27 -0700554 struct hpt_info *info = ide_get_hwifdata(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100556 if (info->revision >= 3)
557 return hpt37x_tune_chipset(drive, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 else /* hpt368: hpt_minimum_revision(dev, 2) */
559 return hpt36x_tune_chipset(drive, speed);
560}
561
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100562static void hpt3xx_tune_drive(ide_drive_t *drive, u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100564 pio = ide_get_best_pio_mode(drive, pio, 4, NULL);
565 (void) hpt3xx_tune_chipset (drive, XFER_PIO_0 + pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568/*
569 * This allows the configuration of ide_pci chipset registers
570 * for cards that learn about the drive's UDMA, DMA, PIO capabilities
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100571 * after the drive is reported by the OS. Initially designed for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 * HPT366 UDMA chipset by HighPoint|Triones Technologies, Inc.
573 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 */
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100575static int config_chipset_for_dma(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 u8 speed = ide_dma_speed(drive, hpt3xx_ratemask(drive));
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100578 ide_hwif_t *hwif = HWIF(drive);
Alan Coxb39b01f2005-06-27 15:24:27 -0700579 struct hpt_info *info = ide_get_hwifdata(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Alan Coxb39b01f2005-06-27 15:24:27 -0700581 if (!speed)
582 return 0;
583
584 /* If we don't have any timings we can't do a lot */
585 if (info->speed == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return 0;
587
588 (void) hpt3xx_tune_chipset(drive, speed);
589 return ide_dma_enable(drive);
590}
591
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100592static int hpt3xx_quirkproc(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Sergei Shtylyove139b0b2007-02-07 18:17:37 +0100594 struct hd_driveid *id = drive->id;
595 const char **list = quirk_drives;
596
597 while (*list)
598 if (strstr(id->model, *list++))
599 return 1;
600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100603static void hpt3xx_intrproc(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100605 ide_hwif_t *hwif = HWIF(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 if (drive->quirk_list)
608 return;
609 /* drives in the quirk_list may not like intr setups/cleanups */
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100610 hwif->OUTB(drive->ctl | 2, IDE_CONTROL_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100613static void hpt3xx_maskproc(ide_drive_t *drive, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100615 ide_hwif_t *hwif = HWIF(drive);
616 struct pci_dev *dev = hwif->pci_dev;
617 struct hpt_info *info = ide_get_hwifdata(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 if (drive->quirk_list) {
Alan Coxb39b01f2005-06-27 15:24:27 -0700620 if (info->revision >= 3) {
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100621 u8 scr1 = 0;
622
623 pci_read_config_byte(dev, 0x5a, &scr1);
624 if (((scr1 & 0x10) >> 4) != mask) {
625 if (mask)
626 scr1 |= 0x10;
627 else
628 scr1 &= ~0x10;
629 pci_write_config_byte(dev, 0x5a, scr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100631 } else {
632 if (mask)
633 disable_irq(hwif->irq);
634 else
635 enable_irq (hwif->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100637 } else
638 hwif->OUTB(mask ? (drive->ctl | 2) : (drive->ctl & ~2),
639 IDE_CONTROL_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100642static int hpt366_config_drive_xfer_rate(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100644 ide_hwif_t *hwif = HWIF(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 struct hd_driveid *id = drive->id;
646
647 drive->init_speed = 0;
648
Alan Coxb39b01f2005-06-27 15:24:27 -0700649 if ((id->capability & 1) && drive->autodma) {
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100650 if (ide_use_dma(drive) && config_chipset_for_dma(drive))
651 return hwif->ide_dma_on(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 goto fast_ata_pio;
654
655 } else if ((id->capability & 8) || (id->field_valid & 2)) {
656fast_ata_pio:
Sergei Shtylyov26ccb802007-02-07 18:18:11 +0100657 hpt3xx_tune_drive(drive, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return hwif->ide_dma_off_quietly(drive);
659 }
660 /* IORDY not supported */
661 return 0;
662}
663
664/*
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100665 * This is specific to the HPT366 UDMA chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 * by HighPoint|Triones Technologies, Inc.
667 */
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100668static int hpt366_ide_dma_lostirq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100670 struct pci_dev *dev = HWIF(drive)->pci_dev;
671 u8 mcr1 = 0, mcr3 = 0, scr1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100673 pci_read_config_byte(dev, 0x50, &mcr1);
674 pci_read_config_byte(dev, 0x52, &mcr3);
675 pci_read_config_byte(dev, 0x5a, &scr1);
676 printk("%s: (%s) mcr1=0x%02x, mcr3=0x%02x, scr1=0x%02x\n",
677 drive->name, __FUNCTION__, mcr1, mcr3, scr1);
678 if (scr1 & 0x10)
679 pci_write_config_byte(dev, 0x5a, scr1 & ~0x10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return __ide_dma_lostirq(drive);
681}
682
683static void hpt370_clear_engine (ide_drive_t *drive)
684{
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100685 ide_hwif_t *hwif = HWIF(drive);
686
687 pci_write_config_byte(hwif->pci_dev, hwif->select_data, 0x37);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 udelay(10);
689}
690
691static void hpt370_ide_dma_start(ide_drive_t *drive)
692{
693#ifdef HPT_RESET_STATE_ENGINE
694 hpt370_clear_engine(drive);
695#endif
696 ide_dma_start(drive);
697}
698
699static int hpt370_ide_dma_end (ide_drive_t *drive)
700{
701 ide_hwif_t *hwif = HWIF(drive);
702 u8 dma_stat = hwif->INB(hwif->dma_status);
703
704 if (dma_stat & 0x01) {
705 /* wait a little */
706 udelay(20);
707 dma_stat = hwif->INB(hwif->dma_status);
708 }
709 if ((dma_stat & 0x01) != 0)
710 /* fallthrough */
711 (void) HWIF(drive)->ide_dma_timeout(drive);
712
713 return __ide_dma_end(drive);
714}
715
716static void hpt370_lostirq_timeout (ide_drive_t *drive)
717{
718 ide_hwif_t *hwif = HWIF(drive);
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100719 u8 bfifo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 u8 dma_stat = 0, dma_cmd = 0;
721
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100722 pci_read_config_byte(HWIF(drive)->pci_dev, hwif->select_data + 2, &bfifo);
Alan Coxb39b01f2005-06-27 15:24:27 -0700723 printk(KERN_DEBUG "%s: %d bytes in FIFO\n", drive->name, bfifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 hpt370_clear_engine(drive);
725 /* get dma command mode */
726 dma_cmd = hwif->INB(hwif->dma_command);
727 /* stop dma */
728 hwif->OUTB(dma_cmd & ~0x1, hwif->dma_command);
729 dma_stat = hwif->INB(hwif->dma_status);
730 /* clear errors */
731 hwif->OUTB(dma_stat | 0x6, hwif->dma_status);
732}
733
734static int hpt370_ide_dma_timeout (ide_drive_t *drive)
735{
736 hpt370_lostirq_timeout(drive);
737 hpt370_clear_engine(drive);
738 return __ide_dma_timeout(drive);
739}
740
741static int hpt370_ide_dma_lostirq (ide_drive_t *drive)
742{
743 hpt370_lostirq_timeout(drive);
744 hpt370_clear_engine(drive);
745 return __ide_dma_lostirq(drive);
746}
747
748/* returns 1 if DMA IRQ issued, 0 otherwise */
749static int hpt374_ide_dma_test_irq(ide_drive_t *drive)
750{
751 ide_hwif_t *hwif = HWIF(drive);
752 u16 bfifo = 0;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100753 u8 dma_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100755 pci_read_config_word(hwif->pci_dev, hwif->select_data + 2, &bfifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (bfifo & 0x1FF) {
757// printk("%s: %d bytes in FIFO\n", drive->name, bfifo);
758 return 0;
759 }
760
761 dma_stat = hwif->INB(hwif->dma_status);
762 /* return 1 if INTR asserted */
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100763 if (dma_stat & 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return 1;
765
766 if (!drive->waiting_for_dma)
767 printk(KERN_WARNING "%s: (%s) called while not waiting\n",
768 drive->name, __FUNCTION__);
769 return 0;
770}
771
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100772static int hpt374_ide_dma_end(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 ide_hwif_t *hwif = HWIF(drive);
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100775 struct pci_dev *dev = hwif->pci_dev;
776 u8 mcr = 0, mcr_addr = hwif->select_data;
777 u8 bwsr = 0, mask = hwif->channel ? 0x02 : 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100779 pci_read_config_byte(dev, 0x6a, &bwsr);
780 pci_read_config_byte(dev, mcr_addr, &mcr);
781 if (bwsr & mask)
782 pci_write_config_byte(dev, mcr_addr, mcr | 0x30);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 return __ide_dma_end(drive);
784}
785
786/**
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800787 * hpt3xxn_set_clock - perform clock switching dance
788 * @hwif: hwif to switch
789 * @mode: clocking mode (0x21 for write, 0x23 otherwise)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 *
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800791 * Switch the DPLL clock on the HPT3xxN devices. This is a right mess.
792 * NOTE: avoid touching the disabled primary channel on HPT371N -- it
793 * doesn't physically exist anyway...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 */
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800795
796static void hpt3xxn_set_clock(ide_hwif_t *hwif, u8 mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800798 u8 mcr1, scr2 = hwif->INB(hwif->dma_master + 0x7b);
799
800 if ((scr2 & 0x7f) == mode)
801 return;
802
803 /* MISC. control register 1 has the channel enable bit... */
804 mcr1 = hwif->INB(hwif->dma_master + 0x70);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* Tristate the bus */
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800807 if (mcr1 & 0x04)
808 hwif->OUTB(0x80, hwif->dma_master + 0x73);
809 hwif->OUTB(0x80, hwif->dma_master + 0x77);
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 /* Switch clock and reset channels */
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800812 hwif->OUTB(mode, hwif->dma_master + 0x7b);
813 hwif->OUTB(0xc0, hwif->dma_master + 0x79);
814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /* Reset state machines */
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800816 if (mcr1 & 0x04)
817 hwif->OUTB(0x37, hwif->dma_master + 0x70);
818 hwif->OUTB(0x37, hwif->dma_master + 0x74);
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 /* Complete reset */
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800821 hwif->OUTB(0x00, hwif->dma_master + 0x79);
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* Reconnect channels to bus */
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800824 if (mcr1 & 0x04)
825 hwif->OUTB(0x00, hwif->dma_master + 0x73);
826 hwif->OUTB(0x00, hwif->dma_master + 0x77);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
829/**
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800830 * hpt3xxn_rw_disk - prepare for I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 * @drive: drive for command
832 * @rq: block request structure
833 *
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800834 * This is called when a disk I/O is issued to HPT3xxN.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 * We need it because of the clock switching.
836 */
837
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800838static void hpt3xxn_rw_disk(ide_drive_t *drive, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800840 ide_hwif_t *hwif = HWIF(drive);
841 u8 wantclock = rq_data_dir(rq) ? 0x23 : 0x21;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800843 hpt3xxn_set_clock(hwif, wantclock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846/*
Sergei Shtylyov33b18a62006-12-13 00:35:50 -0800847 * Set/get power state for a drive.
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100848 * NOTE: affects both drives on each channel.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 *
Sergei Shtylyov33b18a62006-12-13 00:35:50 -0800850 * When we turn the power back on, we need to re-initialize things.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 */
852#define TRISTATE_BIT 0x8000
Sergei Shtylyov33b18a62006-12-13 00:35:50 -0800853
854static int hpt3xx_busproc(ide_drive_t *drive, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100856 ide_hwif_t *hwif = HWIF(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 struct pci_dev *dev = hwif->pci_dev;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100858 u8 mcr_addr = hwif->select_data + 2;
859 u8 resetmask = hwif->channel ? 0x80 : 0x40;
860 u8 bsr2 = 0;
861 u16 mcr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 hwif->bus_state = state;
864
Sergei Shtylyov33b18a62006-12-13 00:35:50 -0800865 /* Grab the status. */
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100866 pci_read_config_word(dev, mcr_addr, &mcr);
867 pci_read_config_byte(dev, 0x59, &bsr2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Sergei Shtylyov33b18a62006-12-13 00:35:50 -0800869 /*
870 * Set the state. We don't set it if we don't need to do so.
871 * Make sure that the drive knows that it has failed if it's off.
872 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 switch (state) {
874 case BUSSTATE_ON:
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100875 if (!(bsr2 & resetmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return 0;
Sergei Shtylyov33b18a62006-12-13 00:35:50 -0800877 hwif->drives[0].failures = hwif->drives[1].failures = 0;
878
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100879 pci_write_config_byte(dev, 0x59, bsr2 & ~resetmask);
880 pci_write_config_word(dev, mcr_addr, mcr & ~TRISTATE_BIT);
Sergei Shtylyov33b18a62006-12-13 00:35:50 -0800881 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 case BUSSTATE_OFF:
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100883 if ((bsr2 & resetmask) && !(mcr & TRISTATE_BIT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return 0;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100885 mcr &= ~TRISTATE_BIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 break;
887 case BUSSTATE_TRISTATE:
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100888 if ((bsr2 & resetmask) && (mcr & TRISTATE_BIT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return 0;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100890 mcr |= TRISTATE_BIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 break;
Sergei Shtylyov33b18a62006-12-13 00:35:50 -0800892 default:
893 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Sergei Shtylyov33b18a62006-12-13 00:35:50 -0800896 hwif->drives[0].failures = hwif->drives[0].max_failures + 1;
897 hwif->drives[1].failures = hwif->drives[1].max_failures + 1;
898
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100899 pci_write_config_word(dev, mcr_addr, mcr);
900 pci_write_config_byte(dev, 0x59, bsr2 | resetmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return 0;
902}
903
Alan Coxb39b01f2005-06-27 15:24:27 -0700904static void __devinit hpt366_clocking(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100906 u32 itr1 = 0;
Alan Coxb39b01f2005-06-27 15:24:27 -0700907 struct hpt_info *info = ide_get_hwifdata(hwif);
908
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100909 pci_read_config_dword(hwif->pci_dev, 0x40, &itr1);
Alan Coxb39b01f2005-06-27 15:24:27 -0700910
911 /* detect bus speed by looking at control reg timing: */
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100912 switch((itr1 >> 8) & 7) {
Alan Coxb39b01f2005-06-27 15:24:27 -0700913 case 5:
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800914 info->speed = forty_base_hpt36x;
Alan Coxb39b01f2005-06-27 15:24:27 -0700915 break;
916 case 9:
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800917 info->speed = twenty_five_base_hpt36x;
Alan Coxb39b01f2005-06-27 15:24:27 -0700918 break;
919 case 7:
920 default:
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -0800921 info->speed = thirty_three_base_hpt36x;
Alan Coxb39b01f2005-06-27 15:24:27 -0700922 break;
923 }
924}
925
926static void __devinit hpt37x_clocking(ide_hwif_t *hwif)
927{
Sergei Shtylyov90778572007-02-07 18:17:51 +0100928 struct hpt_info *info = ide_get_hwifdata(hwif);
929 struct pci_dev *dev = hwif->pci_dev;
930 char *name = hwif->cds->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 int adjust, i;
Sergei Shtylyov26c068d2006-12-13 00:35:52 -0800932 u16 freq = 0;
933 u32 pll, temp = 0;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +0100934 u8 scr2 = 0, mcr1 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /*
937 * default to pci clock. make sure MA15/16 are set to output
Alan Coxb39b01f2005-06-27 15:24:27 -0700938 * to prevent drives having problems with 40-pin cables. Needed
939 * for some drives such as IBM-DTLA which will not enter ready
940 * state on reset when PDIAG is a input.
941 *
942 * ToDo: should we set 0x21 when using PLL mode ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 */
944 pci_write_config_byte(dev, 0x5b, 0x23);
945
946 /*
Sergei Shtylyov26c068d2006-12-13 00:35:52 -0800947 * We'll have to read f_CNT value in order to determine
948 * the PCI clock frequency according to the following ratio:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 *
Sergei Shtylyov26c068d2006-12-13 00:35:52 -0800950 * f_CNT = Fpci * 192 / Fdpll
951 *
952 * First try reading the register in which the HighPoint BIOS
953 * saves f_CNT value before reprogramming the DPLL from its
954 * default setting (which differs for the various chips).
Sergei Shtylyovf13c1522006-12-13 00:35:53 -0800955 * NOTE: This register is only accessible via I/O space.
956 *
Sergei Shtylyov26c068d2006-12-13 00:35:52 -0800957 * In case the signature check fails, we'll have to resort to
958 * reading the f_CNT register itself in hopes that nobody has
959 * touched the DPLL yet...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 */
Sergei Shtylyovf13c1522006-12-13 00:35:53 -0800961 temp = inl(pci_resource_start(dev, 4) + 0x90);
Sergei Shtylyov26c068d2006-12-13 00:35:52 -0800962 if ((temp & 0xFFFFF000) != 0xABCDE000) {
Sergei Shtylyov90778572007-02-07 18:17:51 +0100963 printk(KERN_WARNING "%s: no clock data saved by BIOS\n", name);
Sergei Shtylyov26c068d2006-12-13 00:35:52 -0800964
965 /* Calculate the average value of f_CNT */
966 for (temp = i = 0; i < 128; i++) {
967 pci_read_config_word(dev, 0x78, &freq);
968 temp += freq & 0x1ff;
969 mdelay(1);
970 }
971 freq = temp / 128;
972 } else
973 freq = temp & 0x1ff;
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /*
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800976 * HPT3xxN chips use different PCI clock information.
977 * Currently we always set up the PLL for them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 */
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800979
980 if (info->flags & IS_3xxN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if(freq < 0x55)
982 pll = F_LOW_PCI_33;
983 else if(freq < 0x70)
984 pll = F_LOW_PCI_40;
985 else if(freq < 0x7F)
986 pll = F_LOW_PCI_50;
987 else
988 pll = F_LOW_PCI_66;
Sergei Shtylyov836c0062006-12-13 00:35:47 -0800989
Sergei Shtylyov90778572007-02-07 18:17:51 +0100990 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if(freq < 0x9C)
992 pll = F_LOW_PCI_33;
993 else if(freq < 0xb0)
994 pll = F_LOW_PCI_40;
995 else if(freq <0xc8)
996 pll = F_LOW_PCI_50;
997 else
998 pll = F_LOW_PCI_66;
Sergei Shtylyov90778572007-02-07 18:17:51 +0100999 }
1000 printk(KERN_INFO "%s: FREQ: %d, PLL: %d\n", name, freq, pll);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Sergei Shtylyov90778572007-02-07 18:17:51 +01001002 if (!(info->flags & IS_3xxN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (pll == F_LOW_PCI_33) {
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -08001004 info->speed = thirty_three_base_hpt37x;
Sergei Shtylyov90778572007-02-07 18:17:51 +01001005 printk(KERN_DEBUG "%s: using 33MHz PCI clock\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 } else if (pll == F_LOW_PCI_40) {
1007 /* Unsupported */
1008 } else if (pll == F_LOW_PCI_50) {
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -08001009 info->speed = fifty_base_hpt37x;
Sergei Shtylyov90778572007-02-07 18:17:51 +01001010 printk(KERN_DEBUG "%s: using 50MHz PCI clock\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 } else {
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -08001012 info->speed = sixty_six_base_hpt37x;
Sergei Shtylyov90778572007-02-07 18:17:51 +01001013 printk(KERN_DEBUG "%s: using 66MHz PCI clock\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015 }
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001016
1017 if (pll == F_LOW_PCI_66)
1018 info->flags |= PCI_66MHZ;
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /*
1021 * only try the pll if we don't have a table for the clock
1022 * speed that we're running at. NOTE: the internal PLL will
1023 * result in slow reads when using a 33MHz PCI clock. we also
1024 * don't like to use the PLL because it will cause glitches
1025 * on PRST/SRST when the HPT state engine gets reset.
Alan Coxb39b01f2005-06-27 15:24:27 -07001026 *
1027 * ToDo: Use 66MHz PLL when ATA133 devices are present on a
1028 * 372 device so we can get ATA133 support
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
Alan Coxb39b01f2005-06-27 15:24:27 -07001030 if (info->speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 goto init_hpt37X_done;
Alan Coxb39b01f2005-06-27 15:24:27 -07001032
1033 info->flags |= PLL_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 /*
Sergei Shtylyov26c068d2006-12-13 00:35:52 -08001036 * Adjust the PLL based upon the PCI clock, enable it, and
1037 * wait for stabilization...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 */
1039 adjust = 0;
1040 freq = (pll < F_LOW_PCI_50) ? 2 : 4;
1041 while (adjust++ < 6) {
1042 pci_write_config_dword(dev, 0x5c, (freq + pll) << 16 |
1043 pll | 0x100);
1044
1045 /* wait for clock stabilization */
1046 for (i = 0; i < 0x50000; i++) {
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001047 pci_read_config_byte(dev, 0x5b, &scr2);
1048 if (scr2 & 0x80) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 /* spin looking for the clock to destabilize */
1050 for (i = 0; i < 0x1000; ++i) {
1051 pci_read_config_byte(dev, 0x5b,
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001052 &scr2);
1053 if ((scr2 & 0x80) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 goto pll_recal;
1055 }
1056 pci_read_config_dword(dev, 0x5c, &pll);
1057 pci_write_config_dword(dev, 0x5c,
1058 pll & ~0x100);
1059 pci_write_config_byte(dev, 0x5b, 0x21);
Sergei Shtylyov471a0bd2006-12-13 00:35:49 -08001060
1061 info->speed = fifty_base_hpt37x;
Sergei Shtylyov90778572007-02-07 18:17:51 +01001062 printk("%s: using 50MHz internal PLL\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 goto init_hpt37X_done;
1064 }
1065 }
1066pll_recal:
1067 if (adjust & 1)
1068 pll -= (adjust >> 1);
1069 else
1070 pll += (adjust >> 1);
1071 }
1072
1073init_hpt37X_done:
Alan Coxb39b01f2005-06-27 15:24:27 -07001074 if (!info->speed)
Sergei Shtylyov90778572007-02-07 18:17:51 +01001075 printk(KERN_ERR "%s: unknown bus timing [%d %d].\n",
1076 name, pll, freq);
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001077 /*
1078 * Reset the state engines.
1079 * NOTE: avoid accidentally enabling the primary channel on HPT371N.
1080 */
1081 pci_read_config_byte(dev, 0x50, &mcr1);
1082 if (mcr1 & 0x04)
1083 pci_write_config_byte(dev, 0x50, 0x37);
1084 pci_write_config_byte(dev, 0x54, 0x37);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 udelay(100);
Alan Coxb39b01f2005-06-27 15:24:27 -07001086}
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088static unsigned int __devinit init_chipset_hpt366(struct pci_dev *dev, const char *name)
1089{
Linus Torvalds9ec4ff42005-09-11 09:22:50 -07001090 /*
1091 * FIXME: Not portable. Also, why do we enable the ROM in the first place?
1092 * We don't seem to be using it.
1093 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (dev->resource[PCI_ROM_RESOURCE].start)
Linus Torvalds9ec4ff42005-09-11 09:22:50 -07001095 pci_write_config_dword(dev, PCI_ROM_ADDRESS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 dev->resource[PCI_ROM_RESOURCE].start | PCI_ROM_ADDRESS_ENABLE);
1097
Alan Coxb39b01f2005-06-27 15:24:27 -07001098 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, (L1_CACHE_BYTES / 4));
1099 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x78);
1100 pci_write_config_byte(dev, PCI_MIN_GNT, 0x08);
1101 pci_write_config_byte(dev, PCI_MAX_LAT, 0x08);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001103 if (hpt_revision(dev) >= 3) {
1104 u8 scr1 = 0;
Alan Coxb39b01f2005-06-27 15:24:27 -07001105
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001106 /* Interrupt force enable. */
1107 pci_read_config_byte(dev, 0x5a, &scr1);
1108 if (scr1 & 0x10)
1109 pci_write_config_byte(dev, 0x5a, scr1 & ~0x10);
1110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 return dev->irq;
1113}
1114
1115static void __devinit init_hwif_hpt366(ide_hwif_t *hwif)
1116{
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001117 struct pci_dev *dev = hwif->pci_dev;
Alan Coxb39b01f2005-06-27 15:24:27 -07001118 struct hpt_info *info = ide_get_hwifdata(hwif);
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001119 int serialize = HPT_SERIALIZE_IO;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001120 u8 scr1 = 0, ata66 = (hwif->channel) ? 0x01 : 0x02;
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001121 u8 new_mcr, old_mcr = 0;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001122
1123 /* Cache the channel's MISC. control registers' offset */
1124 hwif->select_data = hwif->channel ? 0x54 : 0x50;
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 hwif->tuneproc = &hpt3xx_tune_drive;
1127 hwif->speedproc = &hpt3xx_tune_chipset;
1128 hwif->quirkproc = &hpt3xx_quirkproc;
1129 hwif->intrproc = &hpt3xx_intrproc;
1130 hwif->maskproc = &hpt3xx_maskproc;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001131 hwif->busproc = &hpt3xx_busproc;
1132
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001133 /*
1134 * HPT3xxN chips have some complications:
1135 *
1136 * - on 33 MHz PCI we must clock switch
1137 * - on 66 MHz PCI we must NOT use the PCI clock
1138 */
1139 if ((info->flags & (IS_3xxN | PCI_66MHZ)) == IS_3xxN) {
1140 /*
1141 * Clock is shared between the channels,
1142 * so we'll have to serialize them... :-(
1143 */
1144 serialize = 1;
1145 hwif->rw_disk = &hpt3xxn_rw_disk;
1146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001148 /* Serialize access to this device if needed */
1149 if (serialize && hwif->mate)
1150 hwif->serialized = hwif->mate->serialized = 1;
1151
1152 /*
1153 * Disable the "fast interrupt" prediction. Don't hold off
1154 * on interrupts. (== 0x01 despite what the docs say)
1155 */
1156 pci_read_config_byte(dev, hwif->select_data + 1, &old_mcr);
1157
1158 if (info->revision >= 5) /* HPT372 and newer */
1159 new_mcr = old_mcr & ~0x07;
1160 else if (info->revision >= 3) { /* HPT370 and HPT370A */
1161 new_mcr = old_mcr;
1162 new_mcr &= ~0x02;
1163
1164#ifdef HPT_DELAY_INTERRUPT
1165 new_mcr &= ~0x01;
1166#else
1167 new_mcr |= 0x01;
1168#endif
1169 } else /* HPT366 and HPT368 */
1170 new_mcr = old_mcr & ~0x80;
1171
1172 if (new_mcr != old_mcr)
1173 pci_write_config_byte(dev, hwif->select_data + 1, new_mcr);
1174
1175 if (!hwif->dma_base) {
1176 hwif->drives[0].autotune = hwif->drives[1].autotune = 1;
1177 return;
1178 }
1179
1180 hwif->ultra_mask = 0x7f;
1181 hwif->mwdma_mask = 0x07;
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 /*
1184 * The HPT37x uses the CBLID pins as outputs for MA15/MA16
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001185 * address lines to access an external EEPROM. To read valid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 * cable detect state the pins must be enabled as inputs.
1187 */
Alan Coxb39b01f2005-06-27 15:24:27 -07001188 if (info->revision >= 8 && (PCI_FUNC(dev->devfn) & 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /*
1190 * HPT374 PCI function 1
1191 * - set bit 15 of reg 0x52 to enable TCBLID as input
1192 * - set bit 15 of reg 0x56 to enable FCBLID as input
1193 */
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001194 u8 mcr_addr = hwif->select_data + 2;
1195 u16 mcr;
1196
1197 pci_read_config_word (dev, mcr_addr, &mcr);
1198 pci_write_config_word(dev, mcr_addr, (mcr | 0x8000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 /* now read cable id register */
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001200 pci_read_config_byte (dev, 0x5a, &scr1);
1201 pci_write_config_word(dev, mcr_addr, mcr);
Alan Coxb39b01f2005-06-27 15:24:27 -07001202 } else if (info->revision >= 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 /*
1204 * HPT370/372 and 374 pcifn 0
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001205 * - clear bit 0 of reg 0x5b to enable P/SCBLID as inputs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 */
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001207 u8 scr2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001209 pci_read_config_byte (dev, 0x5b, &scr2);
1210 pci_write_config_byte(dev, 0x5b, (scr2 & ~1));
1211 /* now read cable id register */
1212 pci_read_config_byte (dev, 0x5a, &scr1);
1213 pci_write_config_byte(dev, 0x5b, scr2);
1214 } else
1215 pci_read_config_byte (dev, 0x5a, &scr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001217 if (!hwif->udma_four)
1218 hwif->udma_four = (scr1 & ata66) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001220 hwif->ide_dma_check = &hpt366_config_drive_xfer_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001222 if (info->revision >= 5) {
1223 hwif->ide_dma_test_irq = &hpt374_ide_dma_test_irq;
1224 hwif->ide_dma_end = &hpt374_ide_dma_end;
Alan Coxb39b01f2005-06-27 15:24:27 -07001225 } else if (info->revision >= 3) {
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001226 hwif->dma_start = &hpt370_ide_dma_start;
1227 hwif->ide_dma_end = &hpt370_ide_dma_end;
1228 hwif->ide_dma_timeout = &hpt370_ide_dma_timeout;
1229 hwif->ide_dma_lostirq = &hpt370_ide_dma_lostirq;
1230 } else
1231 hwif->ide_dma_lostirq = &hpt366_ide_dma_lostirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 if (!noautodma)
1234 hwif->autodma = 1;
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001235 hwif->drives[0].autodma = hwif->drives[1].autodma = hwif->autodma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
1238static void __devinit init_dma_hpt366(ide_hwif_t *hwif, unsigned long dmabase)
1239{
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001240 struct pci_dev *dev = hwif->pci_dev;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001241 struct hpt_info *info = ide_get_hwifdata(hwif);
1242 u8 masterdma = 0, slavedma = 0;
1243 u8 dma_new = 0, dma_old = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 unsigned long flags;
1245
1246 if (!dmabase)
1247 return;
1248
Alan Coxb39b01f2005-06-27 15:24:27 -07001249 if(info->speed == NULL) {
Sergei Shtylyov90778572007-02-07 18:17:51 +01001250 printk(KERN_WARNING "%s: no known IDE timings, disabling DMA.\n",
1251 hwif->cds->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 return;
1253 }
1254
Sergei Shtylyov26ccb802007-02-07 18:18:11 +01001255 dma_old = hwif->INB(dmabase + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 local_irq_save(flags);
1258
1259 dma_new = dma_old;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001260 pci_read_config_byte(dev, hwif->channel ? 0x4b : 0x43, &masterdma);
1261 pci_read_config_byte(dev, hwif->channel ? 0x4f : 0x47, &slavedma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 if (masterdma & 0x30) dma_new |= 0x20;
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001264 if ( slavedma & 0x30) dma_new |= 0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if (dma_new != dma_old)
Sergei Shtylyovabc4ad42007-02-07 18:18:05 +01001266 hwif->OUTB(dma_new, dmabase + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 local_irq_restore(flags);
1269
1270 ide_setup_dma(hwif, dmabase, 8);
1271}
1272
Alan Coxb39b01f2005-06-27 15:24:27 -07001273/*
1274 * We "borrow" this hook in order to set the data structures
1275 * up early enough before dma or init_hwif calls are made.
1276 */
1277
1278static void __devinit init_iops_hpt366(ide_hwif_t *hwif)
1279{
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001280 struct hpt_info *info = kzalloc(sizeof(struct hpt_info), GFP_KERNEL);
1281 struct pci_dev *dev = hwif->pci_dev;
1282 u16 did = dev->device;
Sergei Shtylyove139b0b2007-02-07 18:17:37 +01001283 u8 mode, rid = 0;
Alan Coxb39b01f2005-06-27 15:24:27 -07001284
1285 if(info == NULL) {
Sergei Shtylyov90778572007-02-07 18:17:51 +01001286 printk(KERN_WARNING "%s: out of memory.\n", hwif->cds->name);
Alan Coxb39b01f2005-06-27 15:24:27 -07001287 return;
1288 }
Alan Coxb39b01f2005-06-27 15:24:27 -07001289 ide_set_hwifdata(hwif, info);
1290
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001291 /* Avoid doing the same thing twice. */
1292 if (hwif->channel && hwif->mate) {
1293 memcpy(info, ide_get_hwifdata(hwif->mate), sizeof(struct hpt_info));
1294 return;
Alan Coxb39b01f2005-06-27 15:24:27 -07001295 }
1296
Sergei Shtylyove139b0b2007-02-07 18:17:37 +01001297 pci_read_config_byte(dev, PCI_REVISION_ID, &rid);
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001298
1299 if (( did == PCI_DEVICE_ID_TTI_HPT366 && rid == 6) ||
1300 ((did == PCI_DEVICE_ID_TTI_HPT372 ||
1301 did == PCI_DEVICE_ID_TTI_HPT302 ||
1302 did == PCI_DEVICE_ID_TTI_HPT371) && rid > 1) ||
1303 did == PCI_DEVICE_ID_TTI_HPT372N)
1304 info->flags |= IS_3xxN;
1305
Sergei Shtylyove139b0b2007-02-07 18:17:37 +01001306 rid = info->revision = hpt_revision(dev);
1307 if (rid >= 8) /* HPT374 */
1308 mode = HPT374_ALLOW_ATA133_6 ? 4 : 3;
1309 else if (rid >= 7) /* HPT371 and HPT371N */
1310 mode = HPT371_ALLOW_ATA133_6 ? 4 : 3;
1311 else if (rid >= 6) /* HPT302 and HPT302N */
1312 mode = HPT302_ALLOW_ATA133_6 ? 4 : 3;
1313 else if (rid >= 5) /* HPT372, HPT372A, and HPT372N */
1314 mode = HPT372_ALLOW_ATA133_6 ? 4 : 3;
1315 else if (rid >= 3) /* HPT370 and HPT370A */
1316 mode = HPT370_ALLOW_ATA100_5 ? 3 : 2;
1317 else /* HPT366 and HPT368 */
1318 mode = (HPT366_ALLOW_ATA66_4 || HPT366_ALLOW_ATA66_3) ? 2 : 1;
1319 info->max_mode = mode;
Alan Coxb39b01f2005-06-27 15:24:27 -07001320
Sergei Shtylyove139b0b2007-02-07 18:17:37 +01001321 if (rid >= 3)
Alan Coxb39b01f2005-06-27 15:24:27 -07001322 hpt37x_clocking(hwif);
1323 else
1324 hpt366_clocking(hwif);
1325}
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327static int __devinit init_setup_hpt374(struct pci_dev *dev, ide_pci_device_t *d)
1328{
Sergei Shtylyovb4586712007-02-07 18:17:54 +01001329 struct pci_dev *dev2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 if (PCI_FUNC(dev->devfn) & 1)
1332 return -ENODEV;
1333
Sergei Shtylyovb4586712007-02-07 18:17:54 +01001334 if ((dev2 = pci_get_slot(dev->bus, dev->devfn + 1)) != NULL) {
1335 int ret;
1336
1337 if (dev2->irq != dev->irq) {
1338 /* FIXME: we need a core pci_set_interrupt() */
1339 dev2->irq = dev->irq;
1340 printk(KERN_WARNING "%s: PCI config space interrupt "
1341 "fixed.\n", d->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
Sergei Shtylyovb4586712007-02-07 18:17:54 +01001343 ret = ide_setup_pci_devices(dev, dev2, d);
1344 if (ret < 0)
1345 pci_dev_put(dev2);
1346 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
1348 return ide_setup_pci_device(dev, d);
1349}
1350
Sergei Shtylyov90778572007-02-07 18:17:51 +01001351static int __devinit init_setup_hpt372n(struct pci_dev *dev, ide_pci_device_t *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 return ide_setup_pci_device(dev, d);
1354}
1355
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001356static int __devinit init_setup_hpt371(struct pci_dev *dev, ide_pci_device_t *d)
1357{
Sergei Shtylyov90778572007-02-07 18:17:51 +01001358 u8 rev = 0, mcr1 = 0;
1359
1360 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
1361
1362 if (rev > 1)
1363 d->name = "HPT371N";
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001364
1365 /*
1366 * HPT371 chips physically have only one channel, the secondary one,
1367 * but the primary channel registers do exist! Go figure...
1368 * So, we manually disable the non-existing channel here
1369 * (if the BIOS hasn't done this already).
1370 */
1371 pci_read_config_byte(dev, 0x50, &mcr1);
1372 if (mcr1 & 0x04)
Sergei Shtylyov90778572007-02-07 18:17:51 +01001373 pci_write_config_byte(dev, 0x50, mcr1 & ~0x04);
1374
1375 return ide_setup_pci_device(dev, d);
1376}
1377
1378static int __devinit init_setup_hpt372a(struct pci_dev *dev, ide_pci_device_t *d)
1379{
1380 u8 rev = 0;
1381
1382 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
1383
1384 if (rev > 1)
1385 d->name = "HPT372N";
1386
1387 return ide_setup_pci_device(dev, d);
1388}
1389
1390static int __devinit init_setup_hpt302(struct pci_dev *dev, ide_pci_device_t *d)
1391{
1392 u8 rev = 0;
1393
1394 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
1395
1396 if (rev > 1)
1397 d->name = "HPT302N";
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001398
1399 return ide_setup_pci_device(dev, d);
1400}
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402static int __devinit init_setup_hpt366(struct pci_dev *dev, ide_pci_device_t *d)
1403{
Sergei Shtylyovb4586712007-02-07 18:17:54 +01001404 struct pci_dev *dev2;
1405 u8 rev = 0;
Sergei Shtylyov90778572007-02-07 18:17:51 +01001406 static char *chipset_names[] = { "HPT366", "HPT366", "HPT368",
1407 "HPT370", "HPT370A", "HPT372",
1408 "HPT372N" };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 if (PCI_FUNC(dev->devfn) & 1)
1411 return -ENODEV;
1412
Sergei Shtylyove139b0b2007-02-07 18:17:37 +01001413 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Sergei Shtylyov90778572007-02-07 18:17:51 +01001415 if (rev > 6)
Sergei Shtylyove139b0b2007-02-07 18:17:37 +01001416 rev = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Sergei Shtylyov90778572007-02-07 18:17:51 +01001418 d->name = chipset_names[rev];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Sergei Shtylyov90778572007-02-07 18:17:51 +01001420 if (rev > 2)
1421 goto init_single;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 d->channels = 1;
1424
Sergei Shtylyovb4586712007-02-07 18:17:54 +01001425 if ((dev2 = pci_get_slot(dev->bus, dev->devfn + 1)) != NULL) {
1426 u8 pin1 = 0, pin2 = 0;
1427 int ret;
1428
1429 pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin1);
1430 pci_read_config_byte(dev2, PCI_INTERRUPT_PIN, &pin2);
1431 if (pin1 != pin2 && dev->irq == dev2->irq) {
1432 d->bootable = ON_BOARD;
1433 printk("%s: onboard version of chipset, pin1=%d pin2=%d\n",
1434 d->name, pin1, pin2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
Sergei Shtylyovb4586712007-02-07 18:17:54 +01001436 ret = ide_setup_pci_devices(dev, dev2, d);
1437 if (ret < 0)
1438 pci_dev_put(dev2);
1439 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
1441init_single:
1442 return ide_setup_pci_device(dev, d);
1443}
1444
1445static ide_pci_device_t hpt366_chipsets[] __devinitdata = {
1446 { /* 0 */
1447 .name = "HPT366",
1448 .init_setup = init_setup_hpt366,
1449 .init_chipset = init_chipset_hpt366,
Alan Coxb39b01f2005-06-27 15:24:27 -07001450 .init_iops = init_iops_hpt366,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 .init_hwif = init_hwif_hpt366,
1452 .init_dma = init_dma_hpt366,
1453 .channels = 2,
1454 .autodma = AUTODMA,
1455 .bootable = OFF_BOARD,
1456 .extra = 240
1457 },{ /* 1 */
1458 .name = "HPT372A",
Sergei Shtylyov90778572007-02-07 18:17:51 +01001459 .init_setup = init_setup_hpt372a,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 .init_chipset = init_chipset_hpt366,
Alan Coxb39b01f2005-06-27 15:24:27 -07001461 .init_iops = init_iops_hpt366,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 .init_hwif = init_hwif_hpt366,
1463 .init_dma = init_dma_hpt366,
1464 .channels = 2,
1465 .autodma = AUTODMA,
1466 .bootable = OFF_BOARD,
Sergei Shtylyov90778572007-02-07 18:17:51 +01001467 .extra = 240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 },{ /* 2 */
1469 .name = "HPT302",
Sergei Shtylyov90778572007-02-07 18:17:51 +01001470 .init_setup = init_setup_hpt302,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 .init_chipset = init_chipset_hpt366,
Alan Coxb39b01f2005-06-27 15:24:27 -07001472 .init_iops = init_iops_hpt366,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 .init_hwif = init_hwif_hpt366,
1474 .init_dma = init_dma_hpt366,
1475 .channels = 2,
1476 .autodma = AUTODMA,
1477 .bootable = OFF_BOARD,
Sergei Shtylyov90778572007-02-07 18:17:51 +01001478 .extra = 240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 },{ /* 3 */
1480 .name = "HPT371",
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001481 .init_setup = init_setup_hpt371,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 .init_chipset = init_chipset_hpt366,
Alan Coxb39b01f2005-06-27 15:24:27 -07001483 .init_iops = init_iops_hpt366,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 .init_hwif = init_hwif_hpt366,
1485 .init_dma = init_dma_hpt366,
1486 .channels = 2,
1487 .autodma = AUTODMA,
Sergei Shtylyov836c0062006-12-13 00:35:47 -08001488 .enablebits = {{0x50,0x04,0x04}, {0x54,0x04,0x04}},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 .bootable = OFF_BOARD,
Sergei Shtylyov90778572007-02-07 18:17:51 +01001490 .extra = 240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 },{ /* 4 */
1492 .name = "HPT374",
1493 .init_setup = init_setup_hpt374,
1494 .init_chipset = init_chipset_hpt366,
Alan Coxb39b01f2005-06-27 15:24:27 -07001495 .init_iops = init_iops_hpt366,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 .init_hwif = init_hwif_hpt366,
1497 .init_dma = init_dma_hpt366,
1498 .channels = 2, /* 4 */
1499 .autodma = AUTODMA,
1500 .bootable = OFF_BOARD,
Sergei Shtylyov90778572007-02-07 18:17:51 +01001501 .extra = 240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 },{ /* 5 */
1503 .name = "HPT372N",
Sergei Shtylyov90778572007-02-07 18:17:51 +01001504 .init_setup = init_setup_hpt372n,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 .init_chipset = init_chipset_hpt366,
Alan Coxb39b01f2005-06-27 15:24:27 -07001506 .init_iops = init_iops_hpt366,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 .init_hwif = init_hwif_hpt366,
1508 .init_dma = init_dma_hpt366,
1509 .channels = 2, /* 4 */
1510 .autodma = AUTODMA,
1511 .bootable = OFF_BOARD,
Sergei Shtylyov90778572007-02-07 18:17:51 +01001512 .extra = 240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
1514};
1515
1516/**
1517 * hpt366_init_one - called when an HPT366 is found
1518 * @dev: the hpt366 device
1519 * @id: the matching pci id
1520 *
1521 * Called when the PCI registration layer (or the IDE initialization)
1522 * finds a device matching our IDE device tables.
Sergei Shtylyov73d1dd92006-12-13 00:35:51 -08001523 *
1524 * NOTE: since we'll have to modify some fields of the ide_pci_device_t
1525 * structure depending on the chip's revision, we'd better pass a local
1526 * copy down the call chain...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528static int __devinit hpt366_init_one(struct pci_dev *dev, const struct pci_device_id *id)
1529{
Sergei Shtylyov73d1dd92006-12-13 00:35:51 -08001530 ide_pci_device_t d = hpt366_chipsets[id->driver_data];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Sergei Shtylyov73d1dd92006-12-13 00:35:51 -08001532 return d.init_setup(dev, &d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
1535static struct pci_device_id hpt366_pci_tbl[] = {
1536 { PCI_VENDOR_ID_TTI, PCI_DEVICE_ID_TTI_HPT366, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
1537 { PCI_VENDOR_ID_TTI, PCI_DEVICE_ID_TTI_HPT372, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
1538 { PCI_VENDOR_ID_TTI, PCI_DEVICE_ID_TTI_HPT302, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2},
1539 { PCI_VENDOR_ID_TTI, PCI_DEVICE_ID_TTI_HPT371, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3},
1540 { PCI_VENDOR_ID_TTI, PCI_DEVICE_ID_TTI_HPT374, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4},
1541 { PCI_VENDOR_ID_TTI, PCI_DEVICE_ID_TTI_HPT372N, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 5},
1542 { 0, },
1543};
1544MODULE_DEVICE_TABLE(pci, hpt366_pci_tbl);
1545
1546static struct pci_driver driver = {
1547 .name = "HPT366_IDE",
1548 .id_table = hpt366_pci_tbl,
1549 .probe = hpt366_init_one,
1550};
1551
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +01001552static int __init hpt366_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
1554 return ide_pci_register_driver(&driver);
1555}
1556
1557module_init(hpt366_ide_init);
1558
1559MODULE_AUTHOR("Andre Hedrick");
1560MODULE_DESCRIPTION("PCI driver module for Highpoint HPT366 IDE");
1561MODULE_LICENSE("GPL");