blob: 79232c6c1f01955a02a3c5e9d72359962caadde7 [file] [log] [blame]
Alan Coxda9091e2005-06-27 15:24:30 -07001/*
Alan Coxda9091e2005-06-27 15:24:30 -07002 * Copyright (C) 2004 Red Hat <alan@redhat.com>
Bartlomiej Zolnierkiewicz0e9b4e52007-05-05 22:03:50 +02003 * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
Alan Coxda9091e2005-06-27 15:24:30 -07004 *
5 * May be copied or modified under the terms of the GNU General Public License
6 * Based in part on the ITE vendor provided SCSI driver.
7 *
8 * Documentation available from
9 * http://www.ite.com.tw/pc/IT8212F_V04.pdf
10 * Some other documents are NDA.
11 *
12 * The ITE8212 isn't exactly a standard IDE controller. It has two
13 * modes. In pass through mode then it is an IDE controller. In its smart
14 * mode its actually quite a capable hardware raid controller disguised
15 * as an IDE controller. Smart mode only understands DMA read/write and
16 * identify, none of the fancier commands apply. The IT8211 is identical
17 * in other respects but lacks the raid mode.
18 *
19 * Errata:
20 * o Rev 0x10 also requires master/slave hold the same DMA timings and
21 * cannot do ATAPI MWDMA.
22 * o The identify data for raid volumes lacks CHS info (technically ok)
23 * but also fails to set the LBA28 and other bits. We fix these in
24 * the IDE probe quirk code.
25 * o If you write LBA48 sized I/O's (ie > 256 sector) in smart mode
26 * raid then the controller firmware dies
27 * o Smart mode without RAID doesn't clear all the necessary identify
28 * bits to reduce the command set to the one used
29 *
30 * This has a few impacts on the driver
31 * - In pass through mode we do all the work you would expect
32 * - In smart mode the clocking set up is done by the controller generally
33 * but we must watch the other limits and filter.
34 * - There are a few extra vendor commands that actually talk to the
35 * controller but only work PIO with no IRQ.
36 *
37 * Vendor areas of the identify block in smart mode are used for the
38 * timing and policy set up. Each HDD in raid mode also has a serial
39 * block on the disk. The hardware extra commands are get/set chip status,
40 * rebuild, get rebuild status.
41 *
42 * In Linux the driver supports pass through mode as if the device was
43 * just another IDE controller. If the smart mode is running then
44 * volumes are managed by the controller firmware and each IDE "disk"
45 * is a raid volume. Even more cute - the controller can do automated
46 * hotplug and rebuild.
47 *
48 * The pass through controller itself is a little demented. It has a
49 * flaw that it has a single set of PIO/MWDMA timings per channel so
50 * non UDMA devices restrict each others performance. It also has a
51 * single clock source per channel so mixed UDMA100/133 performance
52 * isn't perfect and we have to pick a clock. Thankfully none of this
53 * matters in smart mode. ATAPI DMA is not currently supported.
54 *
55 * It seems the smart mode is a win for RAID1/RAID10 but otherwise not.
56 *
57 * TODO
58 * - ATAPI UDMA is ok but not MWDMA it seems
59 * - RAID configuration ioctls
60 * - Move to libata once it grows up
61 */
62
Alan Coxda9091e2005-06-27 15:24:30 -070063#include <linux/types.h>
64#include <linux/module.h>
65#include <linux/pci.h>
66#include <linux/delay.h>
67#include <linux/hdreg.h>
68#include <linux/ide.h>
69#include <linux/init.h>
70
71#include <asm/io.h>
72
73struct it821x_dev
74{
75 unsigned int smart:1, /* Are we in smart raid mode */
76 timing10:1; /* Rev 0x10 */
77 u8 clock_mode; /* 0, ATA_50 or ATA_66 */
78 u8 want[2][2]; /* Mode/Pri log for master slave */
79 /* We need these for switching the clock when DMA goes on/off
80 The high byte is the 66Mhz timing */
81 u16 pio[2]; /* Cached PIO values */
82 u16 mwdma[2]; /* Cached MWDMA values */
83 u16 udma[2]; /* Cached UDMA values (per drive) */
84};
85
86#define ATA_66 0
87#define ATA_50 1
88#define ATA_ANY 2
89
90#define UDMA_OFF 0
91#define MWDMA_OFF 0
92
93/*
94 * We allow users to force the card into non raid mode without
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +020095 * flashing the alternative BIOS. This is also necessary right now
Alan Coxda9091e2005-06-27 15:24:30 -070096 * for embedded platforms that cannot run a PC BIOS but are using this
97 * device.
98 */
99
100static int it8212_noraid;
101
102/**
103 * it821x_program - program the PIO/MWDMA registers
104 * @drive: drive to tune
Bartlomiej Zolnierkiewicz0e9b4e52007-05-05 22:03:50 +0200105 * @timing: timing info
Alan Coxda9091e2005-06-27 15:24:30 -0700106 *
107 * Program the PIO/MWDMA timing for this channel according to the
108 * current clock.
109 */
110
111static void it821x_program(ide_drive_t *drive, u16 timing)
112{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100113 ide_hwif_t *hwif = drive->hwif;
114 struct pci_dev *dev = to_pci_dev(hwif->dev);
Alan Coxda9091e2005-06-27 15:24:30 -0700115 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
116 int channel = hwif->channel;
117 u8 conf;
118
119 /* Program PIO/MWDMA timing bits */
120 if(itdev->clock_mode == ATA_66)
121 conf = timing >> 8;
122 else
123 conf = timing & 0xFF;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100124
125 pci_write_config_byte(dev, 0x54 + 4 * channel, conf);
Alan Coxda9091e2005-06-27 15:24:30 -0700126}
127
128/**
129 * it821x_program_udma - program the UDMA registers
130 * @drive: drive to tune
Bartlomiej Zolnierkiewicz0e9b4e52007-05-05 22:03:50 +0200131 * @timing: timing info
Alan Coxda9091e2005-06-27 15:24:30 -0700132 *
133 * Program the UDMA timing for this drive according to the
134 * current clock.
135 */
136
137static void it821x_program_udma(ide_drive_t *drive, u16 timing)
138{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100139 ide_hwif_t *hwif = drive->hwif;
140 struct pci_dev *dev = to_pci_dev(hwif->dev);
Alan Coxda9091e2005-06-27 15:24:30 -0700141 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
142 int channel = hwif->channel;
143 int unit = drive->select.b.unit;
144 u8 conf;
145
146 /* Program UDMA timing bits */
147 if(itdev->clock_mode == ATA_66)
148 conf = timing >> 8;
149 else
150 conf = timing & 0xFF;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100151
152 if (itdev->timing10 == 0)
153 pci_write_config_byte(dev, 0x56 + 4 * channel + unit, conf);
Alan Coxda9091e2005-06-27 15:24:30 -0700154 else {
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100155 pci_write_config_byte(dev, 0x56 + 4 * channel, conf);
156 pci_write_config_byte(dev, 0x56 + 4 * channel + 1, conf);
Alan Coxda9091e2005-06-27 15:24:30 -0700157 }
158}
159
Alan Coxda9091e2005-06-27 15:24:30 -0700160/**
161 * it821x_clock_strategy
Bartlomiej Zolnierkiewicz0e9b4e52007-05-05 22:03:50 +0200162 * @drive: drive to set up
Alan Coxda9091e2005-06-27 15:24:30 -0700163 *
164 * Select between the 50 and 66Mhz base clocks to get the best
165 * results for this interface.
166 */
167
168static void it821x_clock_strategy(ide_drive_t *drive)
169{
170 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100171 struct pci_dev *dev = to_pci_dev(hwif->dev);
Alan Coxda9091e2005-06-27 15:24:30 -0700172 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
173
174 u8 unit = drive->select.b.unit;
175 ide_drive_t *pair = &hwif->drives[1-unit];
176
177 int clock, altclock;
178 u8 v;
179 int sel = 0;
180
181 if(itdev->want[0][0] > itdev->want[1][0]) {
182 clock = itdev->want[0][1];
183 altclock = itdev->want[1][1];
184 } else {
185 clock = itdev->want[1][1];
186 altclock = itdev->want[0][1];
187 }
188
Bartlomiej Zolnierkiewicz0e9b4e52007-05-05 22:03:50 +0200189 /*
190 * if both clocks can be used for the mode with the higher priority
191 * use the clock needed by the mode with the lower priority
192 */
193 if (clock == ATA_ANY)
Alan Coxda9091e2005-06-27 15:24:30 -0700194 clock = altclock;
195
196 /* Nobody cares - keep the same clock */
197 if(clock == ATA_ANY)
198 return;
199 /* No change */
200 if(clock == itdev->clock_mode)
201 return;
202
203 /* Load this into the controller ? */
204 if(clock == ATA_66)
205 itdev->clock_mode = ATA_66;
206 else {
207 itdev->clock_mode = ATA_50;
208 sel = 1;
209 }
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100210
211 pci_read_config_byte(dev, 0x50, &v);
Alan Coxda9091e2005-06-27 15:24:30 -0700212 v &= ~(1 << (1 + hwif->channel));
213 v |= sel << (1 + hwif->channel);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100214 pci_write_config_byte(dev, 0x50, v);
Alan Coxda9091e2005-06-27 15:24:30 -0700215
216 /*
217 * Reprogram the UDMA/PIO of the pair drive for the switch
218 * MWDMA will be dealt with by the dma switcher
219 */
220 if(pair && itdev->udma[1-unit] != UDMA_OFF) {
221 it821x_program_udma(pair, itdev->udma[1-unit]);
222 it821x_program(pair, itdev->pio[1-unit]);
223 }
224 /*
225 * Reprogram the UDMA/PIO of our drive for the switch.
226 * MWDMA will be dealt with by the dma switcher
227 */
228 if(itdev->udma[unit] != UDMA_OFF) {
229 it821x_program_udma(drive, itdev->udma[unit]);
230 it821x_program(drive, itdev->pio[unit]);
231 }
232}
233
234/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200235 * it821x_set_pio_mode - set host controller for PIO mode
236 * @drive: drive
237 * @pio: PIO mode number
Alan Coxda9091e2005-06-27 15:24:30 -0700238 *
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200239 * Tune the host to the desired PIO mode taking into the consideration
240 * the maximum PIO mode supported by the other device on the cable.
Alan Coxda9091e2005-06-27 15:24:30 -0700241 */
242
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200243static void it821x_set_pio_mode(ide_drive_t *drive, const u8 pio)
Alan Coxda9091e2005-06-27 15:24:30 -0700244{
245 ide_hwif_t *hwif = drive->hwif;
246 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
247 int unit = drive->select.b.unit;
Bartlomiej Zolnierkiewicz0e9b4e52007-05-05 22:03:50 +0200248 ide_drive_t *pair = &hwif->drives[1 - unit];
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200249 u8 set_pio = pio;
Alan Coxda9091e2005-06-27 15:24:30 -0700250
251 /* Spec says 89 ref driver uses 88 */
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200252 static u16 pio_timings[]= { 0xAA88, 0xA382, 0xA181, 0x3332, 0x3121 };
Alan Coxda9091e2005-06-27 15:24:30 -0700253 static u8 pio_want[] = { ATA_66, ATA_66, ATA_66, ATA_66, ATA_ANY };
254
Bartlomiej Zolnierkiewicz0e9b4e52007-05-05 22:03:50 +0200255 /*
256 * Compute the best PIO mode we can for a given device. We must
257 * pick a speed that does not cause problems with the other device
258 * on the cable.
259 */
260 if (pair) {
Bartlomiej Zolnierkiewicz21347582007-07-20 01:11:58 +0200261 u8 pair_pio = ide_get_best_pio_mode(pair, 255, 4);
Bartlomiej Zolnierkiewicz0e9b4e52007-05-05 22:03:50 +0200262 /* trim PIO to the slowest of the master/slave */
263 if (pair_pio < set_pio)
264 set_pio = pair_pio;
265 }
266
Alan Coxda9091e2005-06-27 15:24:30 -0700267 /* We prefer 66Mhz clock for PIO 0-3, don't care for PIO4 */
Bartlomiej Zolnierkiewicz0e9b4e52007-05-05 22:03:50 +0200268 itdev->want[unit][1] = pio_want[set_pio];
Alan Coxda9091e2005-06-27 15:24:30 -0700269 itdev->want[unit][0] = 1; /* PIO is lowest priority */
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200270 itdev->pio[unit] = pio_timings[set_pio];
Alan Coxda9091e2005-06-27 15:24:30 -0700271 it821x_clock_strategy(drive);
272 it821x_program(drive, itdev->pio[unit]);
273}
274
275/**
276 * it821x_tune_mwdma - tune a channel for MWDMA
277 * @drive: drive to set up
278 * @mode_wanted: the target operating mode
279 *
280 * Load the timing settings for this device mode into the
281 * controller when doing MWDMA in pass through mode. The caller
282 * must manage the whole lack of per device MWDMA/PIO timings and
283 * the shared MWDMA/PIO timing register.
284 */
285
286static void it821x_tune_mwdma (ide_drive_t *drive, byte mode_wanted)
287{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100288 ide_hwif_t *hwif = drive->hwif;
289 struct pci_dev *dev = to_pci_dev(hwif->dev);
Alan Coxda9091e2005-06-27 15:24:30 -0700290 struct it821x_dev *itdev = (void *)ide_get_hwifdata(hwif);
291 int unit = drive->select.b.unit;
292 int channel = hwif->channel;
293 u8 conf;
294
295 static u16 dma[] = { 0x8866, 0x3222, 0x3121 };
296 static u8 mwdma_want[] = { ATA_ANY, ATA_66, ATA_ANY };
297
298 itdev->want[unit][1] = mwdma_want[mode_wanted];
299 itdev->want[unit][0] = 2; /* MWDMA is low priority */
300 itdev->mwdma[unit] = dma[mode_wanted];
301 itdev->udma[unit] = UDMA_OFF;
302
303 /* UDMA bits off - Revision 0x10 do them in pairs */
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100304 pci_read_config_byte(dev, 0x50, &conf);
305 if (itdev->timing10)
Alan Coxda9091e2005-06-27 15:24:30 -0700306 conf |= channel ? 0x60: 0x18;
307 else
308 conf |= 1 << (3 + 2 * channel + unit);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100309 pci_write_config_byte(dev, 0x50, conf);
Alan Coxda9091e2005-06-27 15:24:30 -0700310
311 it821x_clock_strategy(drive);
312 /* FIXME: do we need to program this ? */
313 /* it821x_program(drive, itdev->mwdma[unit]); */
314}
315
316/**
317 * it821x_tune_udma - tune a channel for UDMA
318 * @drive: drive to set up
319 * @mode_wanted: the target operating mode
320 *
321 * Load the timing settings for this device mode into the
322 * controller when doing UDMA modes in pass through.
323 */
324
325static void it821x_tune_udma (ide_drive_t *drive, byte mode_wanted)
326{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100327 ide_hwif_t *hwif = drive->hwif;
328 struct pci_dev *dev = to_pci_dev(hwif->dev);
Alan Coxda9091e2005-06-27 15:24:30 -0700329 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
330 int unit = drive->select.b.unit;
331 int channel = hwif->channel;
332 u8 conf;
333
334 static u16 udma[] = { 0x4433, 0x4231, 0x3121, 0x2121, 0x1111, 0x2211, 0x1111 };
335 static u8 udma_want[] = { ATA_ANY, ATA_50, ATA_ANY, ATA_66, ATA_66, ATA_50, ATA_66 };
336
337 itdev->want[unit][1] = udma_want[mode_wanted];
338 itdev->want[unit][0] = 3; /* UDMA is high priority */
339 itdev->mwdma[unit] = MWDMA_OFF;
340 itdev->udma[unit] = udma[mode_wanted];
341 if(mode_wanted >= 5)
342 itdev->udma[unit] |= 0x8080; /* UDMA 5/6 select on */
343
344 /* UDMA on. Again revision 0x10 must do the pair */
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100345 pci_read_config_byte(dev, 0x50, &conf);
346 if (itdev->timing10)
Alan Coxda9091e2005-06-27 15:24:30 -0700347 conf &= channel ? 0x9F: 0xE7;
348 else
349 conf &= ~ (1 << (3 + 2 * channel + unit));
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100350 pci_write_config_byte(dev, 0x50, conf);
Alan Coxda9091e2005-06-27 15:24:30 -0700351
352 it821x_clock_strategy(drive);
353 it821x_program_udma(drive, itdev->udma[unit]);
354
355}
356
357/**
Alan Coxda9091e2005-06-27 15:24:30 -0700358 * it821x_dma_read - DMA hook
359 * @drive: drive for DMA
360 *
361 * The IT821x has a single timing register for MWDMA and for PIO
362 * operations. As we flip back and forth we have to reload the
363 * clock. In addition the rev 0x10 device only works if the same
364 * timing value is loaded into the master and slave UDMA clock
365 * so we must also reload that.
366 *
367 * FIXME: we could figure out in advance if we need to do reloads
368 */
369
370static void it821x_dma_start(ide_drive_t *drive)
371{
372 ide_hwif_t *hwif = drive->hwif;
373 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
374 int unit = drive->select.b.unit;
375 if(itdev->mwdma[unit] != MWDMA_OFF)
376 it821x_program(drive, itdev->mwdma[unit]);
377 else if(itdev->udma[unit] != UDMA_OFF && itdev->timing10)
378 it821x_program_udma(drive, itdev->udma[unit]);
379 ide_dma_start(drive);
380}
381
382/**
383 * it821x_dma_write - DMA hook
384 * @drive: drive for DMA stop
385 *
386 * The IT821x has a single timing register for MWDMA and for PIO
387 * operations. As we flip back and forth we have to reload the
388 * clock.
389 */
390
391static int it821x_dma_end(ide_drive_t *drive)
392{
393 ide_hwif_t *hwif = drive->hwif;
394 int unit = drive->select.b.unit;
395 struct it821x_dev *itdev = ide_get_hwifdata(hwif);
396 int ret = __ide_dma_end(drive);
397 if(itdev->mwdma[unit] != MWDMA_OFF)
398 it821x_program(drive, itdev->pio[unit]);
399 return ret;
400}
401
Alan Coxda9091e2005-06-27 15:24:30 -0700402/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200403 * it821x_set_dma_mode - set host controller for DMA mode
404 * @drive: drive
405 * @speed: DMA mode
Alan Coxda9091e2005-06-27 15:24:30 -0700406 *
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200407 * Tune the ITE chipset for the desired DMA mode.
Alan Coxda9091e2005-06-27 15:24:30 -0700408 */
409
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200410static void it821x_set_dma_mode(ide_drive_t *drive, const u8 speed)
Alan Coxda9091e2005-06-27 15:24:30 -0700411{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200412 /*
413 * MWDMA tuning is really hard because our MWDMA and PIO
414 * timings are kept in the same place. We can switch in the
415 * host dma on/off callbacks.
416 */
417 if (speed >= XFER_UDMA_0 && speed <= XFER_UDMA_6)
418 it821x_tune_udma(drive, speed - XFER_UDMA_0);
419 else if (speed >= XFER_MW_DMA_0 && speed <= XFER_MW_DMA_2)
420 it821x_tune_mwdma(drive, speed - XFER_MW_DMA_0);
Alan Coxda9091e2005-06-27 15:24:30 -0700421}
422
423/**
Alan Coxda9091e2005-06-27 15:24:30 -0700424 * ata66_it821x - check for 80 pin cable
425 * @hwif: interface to check
426 *
427 * Check for the presence of an ATA66 capable cable on the
428 * interface. Problematic as it seems some cards don't have
429 * the needed logic onboard.
430 */
431
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200432static u8 __devinit ata66_it821x(ide_hwif_t *hwif)
Alan Coxda9091e2005-06-27 15:24:30 -0700433{
434 /* The reference driver also only does disk side */
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200435 return ATA_CBL_PATA80;
Alan Coxda9091e2005-06-27 15:24:30 -0700436}
437
438/**
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100439 * it821x_quirkproc - post init callback
440 * @drive: drive
Alan Coxda9091e2005-06-27 15:24:30 -0700441 *
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100442 * This callback is run after the drive has been probed but
Alan Coxda9091e2005-06-27 15:24:30 -0700443 * before anything gets attached. It allows drivers to do any
444 * final tuning that is needed, or fixups to work around bugs.
445 */
446
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100447static void __devinit it821x_quirkproc(ide_drive_t *drive)
Alan Coxda9091e2005-06-27 15:24:30 -0700448{
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100449 struct it821x_dev *itdev = ide_get_hwifdata(drive->hwif);
450 struct hd_driveid *id = drive->id;
451 u16 *idbits = (u16 *)drive->id;
Alan Coxda9091e2005-06-27 15:24:30 -0700452
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100453 if (!itdev->smart) {
Alan Coxda9091e2005-06-27 15:24:30 -0700454 /*
455 * If we are in pass through mode then not much
456 * needs to be done, but we do bother to clear the
457 * IRQ mask as we may well be in PIO (eg rev 0x10)
458 * for now and we know unmasking is safe on this chipset.
459 */
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100460 drive->unmask = 1;
461 } else {
Alan Coxda9091e2005-06-27 15:24:30 -0700462 /*
463 * Perform fixups on smart mode. We need to "lose" some
464 * capabilities the firmware lacks but does not filter, and
465 * also patch up some capability bits that it forgets to set
466 * in RAID mode.
467 */
468
Alan Coxda9091e2005-06-27 15:24:30 -0700469 /* Check for RAID v native */
470 if(strstr(id->model, "Integrated Technology Express")) {
471 /* In raid mode the ident block is slightly buggy
472 We need to set the bits so that the IDE layer knows
473 LBA28. LBA48 and DMA ar valid */
474 id->capability |= 3; /* LBA28, DMA */
475 id->command_set_2 |= 0x0400; /* LBA48 valid */
476 id->cfs_enable_2 |= 0x0400; /* LBA48 on */
477 /* Reporting logic */
478 printk(KERN_INFO "%s: IT8212 %sRAID %d volume",
479 drive->name,
480 idbits[147] ? "Bootable ":"",
481 idbits[129]);
482 if(idbits[129] != 1)
483 printk("(%dK stripe)", idbits[146]);
484 printk(".\n");
Alan Coxda9091e2005-06-27 15:24:30 -0700485 } else {
486 /* Non RAID volume. Fixups to stop the core code
487 doing unsupported things */
Bartlomiej Zolnierkiewicz0380dad2007-06-08 15:14:29 +0200488 id->field_valid &= 3;
Alan Coxda9091e2005-06-27 15:24:30 -0700489 id->queue_depth = 0;
490 id->command_set_1 = 0;
491 id->command_set_2 &= 0xC400;
492 id->cfsse &= 0xC000;
493 id->cfs_enable_1 = 0;
494 id->cfs_enable_2 &= 0xC400;
495 id->csf_default &= 0xC000;
496 id->word127 = 0;
497 id->dlf = 0;
498 id->csfo = 0;
499 id->cfa_power = 0;
500 printk(KERN_INFO "%s: Performing identify fixups.\n",
501 drive->name);
502 }
Bartlomiej Zolnierkiewicz0380dad2007-06-08 15:14:29 +0200503
504 /*
505 * Set MWDMA0 mode as enabled/support - just to tell
506 * IDE core that DMA is supported (it821x hardware
507 * takes care of DMA mode programming).
508 */
509 if (id->capability & 1) {
510 id->dma_mword |= 0x0101;
511 drive->current_speed = XFER_MW_DMA_0;
512 }
Alan Coxda9091e2005-06-27 15:24:30 -0700513 }
514
515}
516
517/**
518 * init_hwif_it821x - set up hwif structs
519 * @hwif: interface to set up
520 *
521 * We do the basic set up of the interface structure. The IT8212
522 * requires several custom handlers so we override the default
523 * ide DMA handlers appropriately
524 */
525
526static void __devinit init_hwif_it821x(ide_hwif_t *hwif)
527{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100528 struct pci_dev *dev = to_pci_dev(hwif->dev);
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800529 struct it821x_dev *idev = kzalloc(sizeof(struct it821x_dev), GFP_KERNEL);
Alan Coxda9091e2005-06-27 15:24:30 -0700530 u8 conf;
531
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100532 hwif->quirkproc = &it821x_quirkproc;
533
Bartlomiej Zolnierkiewicz9ff6f722007-10-16 22:29:58 +0200534 if (idev == NULL) {
Alan Coxda9091e2005-06-27 15:24:30 -0700535 printk(KERN_ERR "it821x: out of memory, falling back to legacy behaviour.\n");
Bartlomiej Zolnierkiewicz9ff6f722007-10-16 22:29:58 +0200536 return;
Alan Coxda9091e2005-06-27 15:24:30 -0700537 }
Bartlomiej Zolnierkiewicz9ff6f722007-10-16 22:29:58 +0200538
Alan Coxda9091e2005-06-27 15:24:30 -0700539 ide_set_hwifdata(hwif, idev);
540
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100541 pci_read_config_byte(dev, 0x50, &conf);
Bartlomiej Zolnierkiewicz33c10022007-10-19 00:30:06 +0200542 if (conf & 1) {
Alan Coxda9091e2005-06-27 15:24:30 -0700543 idev->smart = 1;
Bartlomiej Zolnierkiewicz33c10022007-10-19 00:30:06 +0200544 hwif->host_flags |= IDE_HFLAG_NO_ATAPI_DMA;
Alan Coxda9091e2005-06-27 15:24:30 -0700545 /* Long I/O's although allowed in LBA48 space cause the
546 onboard firmware to enter the twighlight zone */
547 hwif->rqsize = 256;
548 }
549
550 /* Pull the current clocks from 0x50 also */
551 if (conf & (1 << (1 + hwif->channel)))
552 idev->clock_mode = ATA_50;
553 else
554 idev->clock_mode = ATA_66;
555
556 idev->want[0][1] = ATA_ANY;
557 idev->want[1][1] = ATA_ANY;
558
559 /*
560 * Not in the docs but according to the reference driver
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200561 * this is necessary.
Alan Coxda9091e2005-06-27 15:24:30 -0700562 */
563
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100564 pci_read_config_byte(dev, 0x08, &conf);
Bartlomiej Zolnierkiewicz33c10022007-10-19 00:30:06 +0200565 if (conf == 0x10) {
Alan Coxda9091e2005-06-27 15:24:30 -0700566 idev->timing10 = 1;
Bartlomiej Zolnierkiewicz33c10022007-10-19 00:30:06 +0200567 hwif->host_flags |= IDE_HFLAG_NO_ATAPI_DMA;
568 if (idev->smart == 0)
Alan Coxda9091e2005-06-27 15:24:30 -0700569 printk(KERN_WARNING "it821x: Revision 0x10, workarounds activated.\n");
570 }
571
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200572 if (idev->smart == 0) {
573 hwif->set_pio_mode = &it821x_set_pio_mode;
574 hwif->set_dma_mode = &it821x_set_dma_mode;
Alan Coxda9091e2005-06-27 15:24:30 -0700575
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200576 /* MWDMA/PIO clock switching for pass through mode */
Alan Coxda9091e2005-06-27 15:24:30 -0700577 hwif->dma_start = &it821x_dma_start;
578 hwif->ide_dma_end = &it821x_dma_end;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200579 } else
580 hwif->host_flags |= IDE_HFLAG_NO_SET_MODE;
Alan Coxda9091e2005-06-27 15:24:30 -0700581
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +0100582 hwif->cable_detect = ata66_it821x;
583
Bartlomiej Zolnierkiewicz9ff6f722007-10-16 22:29:58 +0200584 if (hwif->dma_base == 0)
585 return;
Alan Coxda9091e2005-06-27 15:24:30 -0700586
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200587 hwif->ultra_mask = ATA_UDMA6;
588 hwif->mwdma_mask = ATA_MWDMA2;
Alan Coxda9091e2005-06-27 15:24:30 -0700589}
590
591static void __devinit it8212_disable_raid(struct pci_dev *dev)
592{
593 /* Reset local CPU, and set BIOS not ready */
594 pci_write_config_byte(dev, 0x5E, 0x01);
595
596 /* Set to bypass mode, and reset PCI bus */
597 pci_write_config_byte(dev, 0x50, 0x00);
598 pci_write_config_word(dev, PCI_COMMAND,
599 PCI_COMMAND_PARITY | PCI_COMMAND_IO |
600 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
601 pci_write_config_word(dev, 0x40, 0xA0F3);
602
603 pci_write_config_dword(dev,0x4C, 0x02040204);
604 pci_write_config_byte(dev, 0x42, 0x36);
Alan Cox0c866b52006-02-03 03:04:58 -0800605 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x20);
Alan Coxda9091e2005-06-27 15:24:30 -0700606}
607
608static unsigned int __devinit init_chipset_it821x(struct pci_dev *dev, const char *name)
609{
610 u8 conf;
611 static char *mode[2] = { "pass through", "smart" };
612
613 /* Force the card into bypass mode if so requested */
614 if (it8212_noraid) {
615 printk(KERN_INFO "it8212: forcing bypass mode.\n");
616 it8212_disable_raid(dev);
617 }
618 pci_read_config_byte(dev, 0x50, &conf);
619 printk(KERN_INFO "it821x: controller in %s mode.\n", mode[conf & 1]);
620 return 0;
621}
622
623
624#define DECLARE_ITE_DEV(name_str) \
625 { \
626 .name = name_str, \
627 .init_chipset = init_chipset_it821x, \
628 .init_hwif = init_hwif_it821x, \
Bartlomiej Zolnierkiewicz7cab14a2007-10-19 00:30:06 +0200629 .host_flags = IDE_HFLAG_BOOTABLE, \
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200630 .pio_mask = ATA_PIO4, \
Alan Coxda9091e2005-06-27 15:24:30 -0700631 }
632
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200633static const struct ide_port_info it821x_chipsets[] __devinitdata = {
Alan Coxda9091e2005-06-27 15:24:30 -0700634 /* 0 */ DECLARE_ITE_DEV("IT8212"),
635};
636
637/**
638 * it821x_init_one - pci layer discovery entry
639 * @dev: PCI device
640 * @id: ident table entry
641 *
642 * Called by the PCI code when it finds an ITE821x controller.
643 * We then use the IDE PCI generic helper to do most of the work.
644 */
645
646static int __devinit it821x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
647{
Bartlomiej Zolnierkiewicz24ffbd62007-11-13 22:09:16 +0100648 return ide_setup_pci_device(dev, &it821x_chipsets[id->driver_data]);
Alan Coxda9091e2005-06-27 15:24:30 -0700649}
650
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200651static const struct pci_device_id it821x_pci_tbl[] = {
652 { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8211), 0 },
653 { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8212), 0 },
Alan Coxda9091e2005-06-27 15:24:30 -0700654 { 0, },
655};
656
657MODULE_DEVICE_TABLE(pci, it821x_pci_tbl);
658
659static struct pci_driver driver = {
660 .name = "ITE821x IDE",
661 .id_table = it821x_pci_tbl,
662 .probe = it821x_init_one,
663};
664
665static int __init it821x_ide_init(void)
666{
667 return ide_pci_register_driver(&driver);
668}
669
670module_init(it821x_ide_init);
671
672module_param_named(noraid, it8212_noraid, int, S_IRUGO);
673MODULE_PARM_DESC(it8212_noraid, "Force card into bypass mode");
674
675MODULE_AUTHOR("Alan Cox");
676MODULE_DESCRIPTION("PCI driver module for the ITE 821x");
677MODULE_LICENSE("GPL");