blob: ff9a6fd366577af8a36a83765ae66b231eb26dfd [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * ata-it821x.c - IT821x PATA for new ATA layer
3 * (C) 2005 Red Hat Inc
4 * Alan Cox <alan@redhat.com>
5 *
6 * based upon
7 *
8 * it821x.c
Jeff Garzik85cd7252006-08-31 00:03:49 -04009 *
Jeff Garzik669a5db2006-08-29 18:12:40 -040010 * linux/drivers/ide/pci/it821x.c Version 0.09 December 2004
11 *
12 * Copyright (C) 2004 Red Hat <alan@redhat.com>
13 *
14 * May be copied or modified under the terms of the GNU General Public License
15 * Based in part on the ITE vendor provided SCSI driver.
16 *
17 * Documentation available from
18 * http://www.ite.com.tw/pc/IT8212F_V04.pdf
19 * Some other documents are NDA.
20 *
21 * The ITE8212 isn't exactly a standard IDE controller. It has two
22 * modes. In pass through mode then it is an IDE controller. In its smart
23 * mode its actually quite a capable hardware raid controller disguised
24 * as an IDE controller. Smart mode only understands DMA read/write and
25 * identify, none of the fancier commands apply. The IT8211 is identical
26 * in other respects but lacks the raid mode.
27 *
28 * Errata:
29 * o Rev 0x10 also requires master/slave hold the same DMA timings and
30 * cannot do ATAPI MWDMA.
31 * o The identify data for raid volumes lacks CHS info (technically ok)
32 * but also fails to set the LBA28 and other bits. We fix these in
33 * the IDE probe quirk code.
34 * o If you write LBA48 sized I/O's (ie > 256 sector) in smart mode
35 * raid then the controller firmware dies
36 * o Smart mode without RAID doesn't clear all the necessary identify
37 * bits to reduce the command set to the one used
38 *
39 * This has a few impacts on the driver
40 * - In pass through mode we do all the work you would expect
41 * - In smart mode the clocking set up is done by the controller generally
42 * but we must watch the other limits and filter.
43 * - There are a few extra vendor commands that actually talk to the
44 * controller but only work PIO with no IRQ.
45 *
46 * Vendor areas of the identify block in smart mode are used for the
47 * timing and policy set up. Each HDD in raid mode also has a serial
48 * block on the disk. The hardware extra commands are get/set chip status,
49 * rebuild, get rebuild status.
50 *
51 * In Linux the driver supports pass through mode as if the device was
52 * just another IDE controller. If the smart mode is running then
53 * volumes are managed by the controller firmware and each IDE "disk"
54 * is a raid volume. Even more cute - the controller can do automated
55 * hotplug and rebuild.
56 *
57 * The pass through controller itself is a little demented. It has a
58 * flaw that it has a single set of PIO/MWDMA timings per channel so
59 * non UDMA devices restrict each others performance. It also has a
60 * single clock source per channel so mixed UDMA100/133 performance
61 * isn't perfect and we have to pick a clock. Thankfully none of this
62 * matters in smart mode. ATAPI DMA is not currently supported.
63 *
64 * It seems the smart mode is a win for RAID1/RAID10 but otherwise not.
65 *
66 * TODO
67 * - ATAPI and other speed filtering
68 * - Command filter in smart mode
69 * - RAID configuration ioctls
70 */
71
72#include <linux/kernel.h>
73#include <linux/module.h>
74#include <linux/pci.h>
75#include <linux/init.h>
76#include <linux/blkdev.h>
77#include <linux/delay.h>
78#include <scsi/scsi_host.h>
79#include <linux/libata.h>
80
81
82#define DRV_NAME "pata_it821x"
Jeff Garzika0fcdc02007-03-09 07:24:15 -050083#define DRV_VERSION "0.3.6"
Jeff Garzik669a5db2006-08-29 18:12:40 -040084
85struct it821x_dev
86{
87 unsigned int smart:1, /* Are we in smart raid mode */
88 timing10:1; /* Rev 0x10 */
89 u8 clock_mode; /* 0, ATA_50 or ATA_66 */
90 u8 want[2][2]; /* Mode/Pri log for master slave */
91 /* We need these for switching the clock when DMA goes on/off
92 The high byte is the 66Mhz timing */
93 u16 pio[2]; /* Cached PIO values */
94 u16 mwdma[2]; /* Cached MWDMA values */
95 u16 udma[2]; /* Cached UDMA values (per drive) */
96 u16 last_device; /* Master or slave loaded ? */
97};
98
99#define ATA_66 0
100#define ATA_50 1
101#define ATA_ANY 2
102
103#define UDMA_OFF 0
104#define MWDMA_OFF 0
105
106/*
107 * We allow users to force the card into non raid mode without
108 * flashing the alternative BIOS. This is also neccessary right now
109 * for embedded platforms that cannot run a PC BIOS but are using this
110 * device.
111 */
112
113static int it8212_noraid;
114
115/**
Jeff Garzik669a5db2006-08-29 18:12:40 -0400116 * it821x_program - program the PIO/MWDMA registers
117 * @ap: ATA port
118 * @adev: Device to program
119 * @timing: Timing value (66Mhz in top 8bits, 50 in the low 8)
120 *
121 * Program the PIO/MWDMA timing for this channel according to the
122 * current clock. These share the same register so are managed by
123 * the DMA start/stop sequence as with the old driver.
124 */
125
126static void it821x_program(struct ata_port *ap, struct ata_device *adev, u16 timing)
127{
128 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
129 struct it821x_dev *itdev = ap->private_data;
130 int channel = ap->port_no;
131 u8 conf;
132
133 /* Program PIO/MWDMA timing bits */
134 if (itdev->clock_mode == ATA_66)
135 conf = timing >> 8;
136 else
137 conf = timing & 0xFF;
138 pci_write_config_byte(pdev, 0x54 + 4 * channel, conf);
139}
140
141
142/**
143 * it821x_program_udma - program the UDMA registers
144 * @ap: ATA port
145 * @adev: ATA device to update
146 * @timing: Timing bits. Top 8 are for 66Mhz bottom for 50Mhz
147 *
148 * Program the UDMA timing for this drive according to the
149 * current clock. Handles the dual clocks and also knows about
150 * the errata on the 0x10 revision. The UDMA errata is partly handled
151 * here and partly in start_dma.
152 */
153
154static void it821x_program_udma(struct ata_port *ap, struct ata_device *adev, u16 timing)
155{
156 struct it821x_dev *itdev = ap->private_data;
157 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
158 int channel = ap->port_no;
159 int unit = adev->devno;
160 u8 conf;
161
162 /* Program UDMA timing bits */
163 if (itdev->clock_mode == ATA_66)
164 conf = timing >> 8;
165 else
166 conf = timing & 0xFF;
167 if (itdev->timing10 == 0)
168 pci_write_config_byte(pdev, 0x56 + 4 * channel + unit, conf);
169 else {
170 /* Early revision must be programmed for both together */
171 pci_write_config_byte(pdev, 0x56 + 4 * channel, conf);
172 pci_write_config_byte(pdev, 0x56 + 4 * channel + 1, conf);
173 }
174}
175
176/**
177 * it821x_clock_strategy
178 * @ap: ATA interface
179 * @adev: ATA device being updated
180 *
181 * Select between the 50 and 66Mhz base clocks to get the best
182 * results for this interface.
183 */
184
185static void it821x_clock_strategy(struct ata_port *ap, struct ata_device *adev)
186{
187 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
188 struct it821x_dev *itdev = ap->private_data;
189 u8 unit = adev->devno;
190 struct ata_device *pair = ata_dev_pair(adev);
191
192 int clock, altclock;
193 u8 v;
194 int sel = 0;
195
196 /* Look for the most wanted clocking */
197 if (itdev->want[0][0] > itdev->want[1][0]) {
198 clock = itdev->want[0][1];
199 altclock = itdev->want[1][1];
200 } else {
201 clock = itdev->want[1][1];
202 altclock = itdev->want[0][1];
203 }
204
205 /* Master doesn't care does the slave ? */
206 if (clock == ATA_ANY)
207 clock = altclock;
208
209 /* Nobody cares - keep the same clock */
210 if (clock == ATA_ANY)
211 return;
212 /* No change */
213 if (clock == itdev->clock_mode)
214 return;
215
216 /* Load this into the controller */
217 if (clock == ATA_66)
218 itdev->clock_mode = ATA_66;
219 else {
220 itdev->clock_mode = ATA_50;
221 sel = 1;
222 }
223 pci_read_config_byte(pdev, 0x50, &v);
224 v &= ~(1 << (1 + ap->port_no));
225 v |= sel << (1 + ap->port_no);
226 pci_write_config_byte(pdev, 0x50, v);
227
228 /*
229 * Reprogram the UDMA/PIO of the pair drive for the switch
230 * MWDMA will be dealt with by the dma switcher
231 */
232 if (pair && itdev->udma[1-unit] != UDMA_OFF) {
233 it821x_program_udma(ap, pair, itdev->udma[1-unit]);
234 it821x_program(ap, pair, itdev->pio[1-unit]);
235 }
236 /*
237 * Reprogram the UDMA/PIO of our drive for the switch.
238 * MWDMA will be dealt with by the dma switcher
239 */
240 if (itdev->udma[unit] != UDMA_OFF) {
241 it821x_program_udma(ap, adev, itdev->udma[unit]);
242 it821x_program(ap, adev, itdev->pio[unit]);
243 }
244}
245
246/**
247 * it821x_passthru_set_piomode - set PIO mode data
248 * @ap: ATA interface
249 * @adev: ATA device
250 *
251 * Configure for PIO mode. This is complicated as the register is
252 * shared by PIO and MWDMA and for both channels.
253 */
254
255static void it821x_passthru_set_piomode(struct ata_port *ap, struct ata_device *adev)
256{
257 /* Spec says 89 ref driver uses 88 */
258 static const u16 pio[] = { 0xAA88, 0xA382, 0xA181, 0x3332, 0x3121 };
259 static const u8 pio_want[] = { ATA_66, ATA_66, ATA_66, ATA_66, ATA_ANY };
260
261 struct it821x_dev *itdev = ap->private_data;
262 int unit = adev->devno;
263 int mode_wanted = adev->pio_mode - XFER_PIO_0;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400264
Jeff Garzik669a5db2006-08-29 18:12:40 -0400265 /* We prefer 66Mhz clock for PIO 0-3, don't care for PIO4 */
266 itdev->want[unit][1] = pio_want[mode_wanted];
267 itdev->want[unit][0] = 1; /* PIO is lowest priority */
268 itdev->pio[unit] = pio[mode_wanted];
269 it821x_clock_strategy(ap, adev);
270 it821x_program(ap, adev, itdev->pio[unit]);
271}
272
273/**
274 * it821x_passthru_set_dmamode - set initial DMA mode data
275 * @ap: ATA interface
276 * @adev: ATA device
277 *
278 * Set up the DMA modes. The actions taken depend heavily on the mode
Jeff Garzik85cd7252006-08-31 00:03:49 -0400279 * to use. If UDMA is used as is hopefully the usual case then the
Jeff Garzik669a5db2006-08-29 18:12:40 -0400280 * timing register is private and we need only consider the clock. If
281 * we are using MWDMA then we have to manage the setting ourself as
282 * we switch devices and mode.
283 */
284
285static void it821x_passthru_set_dmamode(struct ata_port *ap, struct ata_device *adev)
286{
287 static const u16 dma[] = { 0x8866, 0x3222, 0x3121 };
288 static const u8 mwdma_want[] = { ATA_ANY, ATA_66, ATA_ANY };
289 static const u16 udma[] = { 0x4433, 0x4231, 0x3121, 0x2121, 0x1111, 0x2211, 0x1111 };
290 static const u8 udma_want[] = { ATA_ANY, ATA_50, ATA_ANY, ATA_66, ATA_66, ATA_50, ATA_66 };
291
292 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
293 struct it821x_dev *itdev = ap->private_data;
294 int channel = ap->port_no;
295 int unit = adev->devno;
296 u8 conf;
297
298 if (adev->dma_mode >= XFER_UDMA_0) {
299 int mode_wanted = adev->dma_mode - XFER_UDMA_0;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400300
Jeff Garzik669a5db2006-08-29 18:12:40 -0400301 itdev->want[unit][1] = udma_want[mode_wanted];
302 itdev->want[unit][0] = 3; /* UDMA is high priority */
303 itdev->mwdma[unit] = MWDMA_OFF;
304 itdev->udma[unit] = udma[mode_wanted];
305 if (mode_wanted >= 5)
306 itdev->udma[unit] |= 0x8080; /* UDMA 5/6 select on */
307
308 /* UDMA on. Again revision 0x10 must do the pair */
309 pci_read_config_byte(pdev, 0x50, &conf);
310 if (itdev->timing10)
311 conf &= channel ? 0x9F: 0xE7;
312 else
313 conf &= ~ (1 << (3 + 2 * channel + unit));
314 pci_write_config_byte(pdev, 0x50, conf);
315 it821x_clock_strategy(ap, adev);
316 it821x_program_udma(ap, adev, itdev->udma[unit]);
317 } else {
318 int mode_wanted = adev->dma_mode - XFER_MW_DMA_0;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400319
Jeff Garzik669a5db2006-08-29 18:12:40 -0400320 itdev->want[unit][1] = mwdma_want[mode_wanted];
321 itdev->want[unit][0] = 2; /* MWDMA is low priority */
322 itdev->mwdma[unit] = dma[mode_wanted];
323 itdev->udma[unit] = UDMA_OFF;
324
325 /* UDMA bits off - Revision 0x10 do them in pairs */
326 pci_read_config_byte(pdev, 0x50, &conf);
327 if (itdev->timing10)
328 conf |= channel ? 0x60: 0x18;
329 else
330 conf |= 1 << (3 + 2 * channel + unit);
331 pci_write_config_byte(pdev, 0x50, conf);
332 it821x_clock_strategy(ap, adev);
333 }
334}
335
336/**
337 * it821x_passthru_dma_start - DMA start callback
338 * @qc: Command in progress
339 *
340 * Usually drivers set the DMA timing at the point the set_dmamode call
Jeff Garzik85cd7252006-08-31 00:03:49 -0400341 * is made. IT821x however requires we load new timings on the
Jeff Garzik669a5db2006-08-29 18:12:40 -0400342 * transitions in some cases.
343 */
344
345static void it821x_passthru_bmdma_start(struct ata_queued_cmd *qc)
346{
347 struct ata_port *ap = qc->ap;
348 struct ata_device *adev = qc->dev;
349 struct it821x_dev *itdev = ap->private_data;
350 int unit = adev->devno;
351
352 if (itdev->mwdma[unit] != MWDMA_OFF)
353 it821x_program(ap, adev, itdev->mwdma[unit]);
354 else if (itdev->udma[unit] != UDMA_OFF && itdev->timing10)
355 it821x_program_udma(ap, adev, itdev->udma[unit]);
356 ata_bmdma_start(qc);
357}
358
359/**
360 * it821x_passthru_dma_stop - DMA stop callback
361 * @qc: ATA command
362 *
363 * We loaded new timings in dma_start, as a result we need to restore
364 * the PIO timings in dma_stop so that the next command issue gets the
365 * right clock values.
366 */
367
368static void it821x_passthru_bmdma_stop(struct ata_queued_cmd *qc)
369{
370 struct ata_port *ap = qc->ap;
371 struct ata_device *adev = qc->dev;
372 struct it821x_dev *itdev = ap->private_data;
373 int unit = adev->devno;
374
375 ata_bmdma_stop(qc);
376 if (itdev->mwdma[unit] != MWDMA_OFF)
377 it821x_program(ap, adev, itdev->pio[unit]);
378}
379
380
381/**
382 * it821x_passthru_dev_select - Select master/slave
383 * @ap: ATA port
384 * @device: Device number (not pointer)
385 *
386 * Device selection hook. If neccessary perform clock switching
387 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400388
Jeff Garzik669a5db2006-08-29 18:12:40 -0400389static void it821x_passthru_dev_select(struct ata_port *ap,
390 unsigned int device)
391{
392 struct it821x_dev *itdev = ap->private_data;
393 if (itdev && device != itdev->last_device) {
394 struct ata_device *adev = &ap->device[device];
395 it821x_program(ap, adev, itdev->pio[adev->devno]);
396 itdev->last_device = device;
397 }
398 ata_std_dev_select(ap, device);
399}
400
401/**
402 * it821x_smart_qc_issue_prot - wrap qc issue prot
403 * @qc: command
404 *
405 * Wrap the command issue sequence for the IT821x. We need to
406 * perform out own device selection timing loads before the
407 * usual happenings kick off
408 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400409
Jeff Garzik669a5db2006-08-29 18:12:40 -0400410static unsigned int it821x_smart_qc_issue_prot(struct ata_queued_cmd *qc)
411{
412 switch(qc->tf.command)
413 {
414 /* Commands the firmware supports */
415 case ATA_CMD_READ:
416 case ATA_CMD_READ_EXT:
417 case ATA_CMD_WRITE:
418 case ATA_CMD_WRITE_EXT:
419 case ATA_CMD_PIO_READ:
420 case ATA_CMD_PIO_READ_EXT:
421 case ATA_CMD_PIO_WRITE:
422 case ATA_CMD_PIO_WRITE_EXT:
423 case ATA_CMD_READ_MULTI:
424 case ATA_CMD_READ_MULTI_EXT:
425 case ATA_CMD_WRITE_MULTI:
426 case ATA_CMD_WRITE_MULTI_EXT:
427 case ATA_CMD_ID_ATA:
428 /* Arguably should just no-op this one */
429 case ATA_CMD_SET_FEATURES:
430 return ata_qc_issue_prot(qc);
431 }
432 printk(KERN_DEBUG "it821x: can't process command 0x%02X\n", qc->tf.command);
433 return AC_ERR_INVALID;
434}
435
436/**
437 * it821x_passthru_qc_issue_prot - wrap qc issue prot
438 * @qc: command
439 *
440 * Wrap the command issue sequence for the IT821x. We need to
441 * perform out own device selection timing loads before the
442 * usual happenings kick off
443 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400444
Jeff Garzik669a5db2006-08-29 18:12:40 -0400445static unsigned int it821x_passthru_qc_issue_prot(struct ata_queued_cmd *qc)
446{
447 it821x_passthru_dev_select(qc->ap, qc->dev->devno);
448 return ata_qc_issue_prot(qc);
449}
450
451/**
452 * it821x_smart_set_mode - mode setting
453 * @ap: interface to set up
Alanb229a7b2007-01-24 11:47:07 +0000454 * @unused: device that failed (error only)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400455 *
456 * Use a non standard set_mode function. We don't want to be tuned.
457 * The BIOS configured everything. Our job is not to fiddle. We
458 * read the dma enabled bits from the PCI configuration of the device
Jeff Garzik85cd7252006-08-31 00:03:49 -0400459 * and respect them.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400460 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400461
Alanb229a7b2007-01-24 11:47:07 +0000462static int it821x_smart_set_mode(struct ata_port *ap, struct ata_device **unused)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400463{
464 int dma_enabled = 0;
465 int i;
466
467 /* Bits 5 and 6 indicate if DMA is active on master/slave */
468 /* It is possible that BMDMA isn't allocated */
469 if (ap->ioaddr.bmdma_addr)
Tejun Heo0d5ff562007-02-01 15:06:36 +0900470 dma_enabled = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400471
Jeff Garzik669a5db2006-08-29 18:12:40 -0400472 for (i = 0; i < ATA_MAX_DEVICES; i++) {
473 struct ata_device *dev = &ap->device[i];
474 if (ata_dev_enabled(dev)) {
475 /* We don't really care */
476 dev->pio_mode = XFER_PIO_0;
477 dev->dma_mode = XFER_MW_DMA_0;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400478 /* We do need the right mode information for DMA or PIO
Jeff Garzik669a5db2006-08-29 18:12:40 -0400479 and this comes from the current configuration flags */
480 if (dma_enabled & (1 << (5 + i))) {
Alan616ece22007-02-20 18:15:03 +0000481 ata_dev_printk(dev, KERN_INFO, "configured for DMA\n");
Jeff Garzik669a5db2006-08-29 18:12:40 -0400482 dev->xfer_mode = XFER_MW_DMA_0;
483 dev->xfer_shift = ATA_SHIFT_MWDMA;
484 dev->flags &= ~ATA_DFLAG_PIO;
485 } else {
Alan616ece22007-02-20 18:15:03 +0000486 ata_dev_printk(dev, KERN_INFO, "configured for PIO\n");
Jeff Garzik669a5db2006-08-29 18:12:40 -0400487 dev->xfer_mode = XFER_PIO_0;
488 dev->xfer_shift = ATA_SHIFT_PIO;
489 dev->flags |= ATA_DFLAG_PIO;
490 }
491 }
492 }
Alanb229a7b2007-01-24 11:47:07 +0000493 return 0;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400494}
495
496/**
497 * it821x_dev_config - Called each device identify
Jeff Garzik669a5db2006-08-29 18:12:40 -0400498 * @adev: Device that has just been identified
499 *
500 * Perform the initial setup needed for each device that is chip
501 * special. In our case we need to lock the sector count to avoid
502 * blowing the brains out of the firmware with large LBA48 requests
503 *
504 * FIXME: When FUA appears we need to block FUA too. And SMART and
505 * basically we need to filter commands for this chip.
506 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400507
Alancd0d3bb2007-03-02 00:56:15 +0000508static void it821x_dev_config(struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400509{
Tejun Heo8bfa79f2007-01-02 20:19:40 +0900510 unsigned char model_num[ATA_ID_PROD_LEN + 1];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400511
Tejun Heo8bfa79f2007-01-02 20:19:40 +0900512 ata_id_c_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num));
Jeff Garzik669a5db2006-08-29 18:12:40 -0400513
514 if (adev->max_sectors > 255)
515 adev->max_sectors = 255;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400516
Jeff Garzik669a5db2006-08-29 18:12:40 -0400517 if (strstr(model_num, "Integrated Technology Express")) {
518 /* RAID mode */
519 printk(KERN_INFO "IT821x %sRAID%d volume",
520 adev->id[147]?"Bootable ":"",
521 adev->id[129]);
522 if (adev->id[129] != 1)
523 printk("(%dK stripe)", adev->id[146]);
524 printk(".\n");
525 }
526}
527
528
529/**
530 * it821x_check_atapi_dma - ATAPI DMA handler
531 * @qc: Command we are about to issue
532 *
533 * Decide if this ATAPI command can be issued by DMA on this
534 * controller. Return 0 if it can be.
535 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400536
Jeff Garzik669a5db2006-08-29 18:12:40 -0400537static int it821x_check_atapi_dma(struct ata_queued_cmd *qc)
538{
539 struct ata_port *ap = qc->ap;
540 struct it821x_dev *itdev = ap->private_data;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400541
Jeff Garzik669a5db2006-08-29 18:12:40 -0400542 /* No ATAPI DMA in smart mode */
543 if (itdev->smart)
544 return -EOPNOTSUPP;
545 /* No ATAPI DMA on rev 10 */
546 if (itdev->timing10)
547 return -EOPNOTSUPP;
548 /* Cool */
549 return 0;
550}
Jeff Garzik85cd7252006-08-31 00:03:49 -0400551
Jeff Garzik669a5db2006-08-29 18:12:40 -0400552
553/**
554 * it821x_port_start - port setup
555 * @ap: ATA port being set up
556 *
557 * The it821x needs to maintain private data structures and also to
558 * use the standard PCI interface which lacks support for this
Jeff Garzik85cd7252006-08-31 00:03:49 -0400559 * functionality. We instead set up the private data on the port
Jeff Garzik669a5db2006-08-29 18:12:40 -0400560 * start hook, and tear it down on port stop
561 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400562
Jeff Garzik669a5db2006-08-29 18:12:40 -0400563static int it821x_port_start(struct ata_port *ap)
564{
565 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
566 struct it821x_dev *itdev;
567 u8 conf;
568
569 int ret = ata_port_start(ap);
570 if (ret < 0)
571 return ret;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400572
Tejun Heo24dc5f32007-01-20 16:00:28 +0900573 itdev = devm_kzalloc(&pdev->dev, sizeof(struct it821x_dev), GFP_KERNEL);
574 if (itdev == NULL)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400575 return -ENOMEM;
Tejun Heo24dc5f32007-01-20 16:00:28 +0900576 ap->private_data = itdev;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400577
578 pci_read_config_byte(pdev, 0x50, &conf);
579
580 if (conf & 1) {
581 itdev->smart = 1;
582 /* Long I/O's although allowed in LBA48 space cause the
583 onboard firmware to enter the twighlight zone */
584 /* No ATAPI DMA in this mode either */
585 }
586 /* Pull the current clocks from 0x50 */
587 if (conf & (1 << (1 + ap->port_no)))
588 itdev->clock_mode = ATA_50;
589 else
590 itdev->clock_mode = ATA_66;
591
592 itdev->want[0][1] = ATA_ANY;
593 itdev->want[1][1] = ATA_ANY;
594 itdev->last_device = -1;
595
596 pci_read_config_byte(pdev, PCI_REVISION_ID, &conf);
597 if (conf == 0x10) {
598 itdev->timing10 = 1;
599 /* Need to disable ATAPI DMA for this case */
600 if (!itdev->smart)
601 printk(KERN_WARNING DRV_NAME": Revision 0x10, workarounds activated.\n");
602 }
603
604 return 0;
605}
606
Jeff Garzik669a5db2006-08-29 18:12:40 -0400607static struct scsi_host_template it821x_sht = {
608 .module = THIS_MODULE,
609 .name = DRV_NAME,
610 .ioctl = ata_scsi_ioctl,
611 .queuecommand = ata_scsi_queuecmd,
612 .can_queue = ATA_DEF_QUEUE,
613 .this_id = ATA_SHT_THIS_ID,
614 .sg_tablesize = LIBATA_MAX_PRD,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400615 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
616 .emulated = ATA_SHT_EMULATED,
617 .use_clustering = ATA_SHT_USE_CLUSTERING,
618 .proc_name = DRV_NAME,
619 .dma_boundary = ATA_DMA_BOUNDARY,
620 .slave_configure = ata_scsi_slave_config,
Tejun Heoafdfe892006-11-29 11:26:47 +0900621 .slave_destroy = ata_scsi_slave_destroy,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400622 .bios_param = ata_std_bios_param,
623};
624
625static struct ata_port_operations it821x_smart_port_ops = {
626 .set_mode = it821x_smart_set_mode,
627 .port_disable = ata_port_disable,
628 .tf_load = ata_tf_load,
629 .tf_read = ata_tf_read,
630 .mode_filter = ata_pci_default_filter,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400631
Jeff Garzik669a5db2006-08-29 18:12:40 -0400632 .check_status = ata_check_status,
633 .check_atapi_dma= it821x_check_atapi_dma,
634 .exec_command = ata_exec_command,
635 .dev_select = ata_std_dev_select,
636 .dev_config = it821x_dev_config,
637
638 .freeze = ata_bmdma_freeze,
639 .thaw = ata_bmdma_thaw,
Jeff Garzika0fcdc02007-03-09 07:24:15 -0500640 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400641 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Jeff Garzika0fcdc02007-03-09 07:24:15 -0500642 .cable_detect = ata_cable_unknown,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400643
644 .bmdma_setup = ata_bmdma_setup,
645 .bmdma_start = ata_bmdma_start,
646 .bmdma_stop = ata_bmdma_stop,
647 .bmdma_status = ata_bmdma_status,
648
649 .qc_prep = ata_qc_prep,
650 .qc_issue = it821x_smart_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400651
Tejun Heo0d5ff562007-02-01 15:06:36 +0900652 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400653
654 .irq_handler = ata_interrupt,
655 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900656 .irq_on = ata_irq_on,
657 .irq_ack = ata_irq_ack,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400658
659 .port_start = it821x_port_start,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400660};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400661
662static struct ata_port_operations it821x_passthru_port_ops = {
663 .port_disable = ata_port_disable,
664 .set_piomode = it821x_passthru_set_piomode,
665 .set_dmamode = it821x_passthru_set_dmamode,
666 .mode_filter = ata_pci_default_filter,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400667
Jeff Garzik669a5db2006-08-29 18:12:40 -0400668 .tf_load = ata_tf_load,
669 .tf_read = ata_tf_read,
670 .check_status = ata_check_status,
671 .exec_command = ata_exec_command,
672 .check_atapi_dma= it821x_check_atapi_dma,
673 .dev_select = it821x_passthru_dev_select,
674
675 .freeze = ata_bmdma_freeze,
676 .thaw = ata_bmdma_thaw,
Jeff Garzika0fcdc02007-03-09 07:24:15 -0500677 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400678 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Jeff Garzika0fcdc02007-03-09 07:24:15 -0500679 .cable_detect = ata_cable_unknown,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400680
681 .bmdma_setup = ata_bmdma_setup,
682 .bmdma_start = it821x_passthru_bmdma_start,
683 .bmdma_stop = it821x_passthru_bmdma_stop,
684 .bmdma_status = ata_bmdma_status,
685
686 .qc_prep = ata_qc_prep,
687 .qc_issue = it821x_passthru_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400688
Tejun Heo0d5ff562007-02-01 15:06:36 +0900689 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400690
691 .irq_clear = ata_bmdma_irq_clear,
692 .irq_handler = ata_interrupt,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900693 .irq_on = ata_irq_on,
694 .irq_ack = ata_irq_ack,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400695
696 .port_start = it821x_port_start,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400697};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400698
699static void __devinit it821x_disable_raid(struct pci_dev *pdev)
700{
701 /* Reset local CPU, and set BIOS not ready */
702 pci_write_config_byte(pdev, 0x5E, 0x01);
703
704 /* Set to bypass mode, and reset PCI bus */
705 pci_write_config_byte(pdev, 0x50, 0x00);
706 pci_write_config_word(pdev, PCI_COMMAND,
707 PCI_COMMAND_PARITY | PCI_COMMAND_IO |
708 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
709 pci_write_config_word(pdev, 0x40, 0xA0F3);
710
711 pci_write_config_dword(pdev,0x4C, 0x02040204);
712 pci_write_config_byte(pdev, 0x42, 0x36);
713 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x20);
714}
715
Jeff Garzik85cd7252006-08-31 00:03:49 -0400716
Jeff Garzik669a5db2006-08-29 18:12:40 -0400717static int it821x_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
718{
719 u8 conf;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400720
Tejun Heo1626aeb2007-05-04 12:43:58 +0200721 static const struct ata_port_info info_smart = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400722 .sht = &it821x_sht,
723 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
724 .pio_mask = 0x1f,
725 .mwdma_mask = 0x07,
726 .port_ops = &it821x_smart_port_ops
727 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200728 static const struct ata_port_info info_passthru = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400729 .sht = &it821x_sht,
730 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
731 .pio_mask = 0x1f,
732 .mwdma_mask = 0x07,
733 .udma_mask = 0x7f,
734 .port_ops = &it821x_passthru_port_ops
735 };
Jeff Garzik85cd7252006-08-31 00:03:49 -0400736
Tejun Heo1626aeb2007-05-04 12:43:58 +0200737 const struct ata_port_info *ppi[] = { NULL, NULL };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400738 static char *mode[2] = { "pass through", "smart" };
739
740 /* Force the card into bypass mode if so requested */
741 if (it8212_noraid) {
742 printk(KERN_INFO DRV_NAME ": forcing bypass mode.\n");
743 it821x_disable_raid(pdev);
744 }
745 pci_read_config_byte(pdev, 0x50, &conf);
746 conf &= 1;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400747
Jeff Garzik669a5db2006-08-29 18:12:40 -0400748 printk(KERN_INFO DRV_NAME ": controller in %s mode.\n", mode[conf]);
749 if (conf == 0)
Tejun Heo1626aeb2007-05-04 12:43:58 +0200750 ppi[0] = &info_passthru;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400751 else
Tejun Heo1626aeb2007-05-04 12:43:58 +0200752 ppi[0] = &info_smart;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400753
Tejun Heo1626aeb2007-05-04 12:43:58 +0200754 return ata_pci_init_one(pdev, ppi);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400755}
756
Tejun Heo438ac6d2007-03-02 17:31:26 +0900757#ifdef CONFIG_PM
Alanf535d532006-11-27 16:14:36 +0000758static int it821x_reinit_one(struct pci_dev *pdev)
759{
760 /* Resume - turn raid back off if need be */
761 if (it8212_noraid)
762 it821x_disable_raid(pdev);
763 return ata_pci_device_resume(pdev);
764}
Tejun Heo438ac6d2007-03-02 17:31:26 +0900765#endif
Alanf535d532006-11-27 16:14:36 +0000766
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400767static const struct pci_device_id it821x[] = {
768 { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8211), },
769 { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8212), },
770
771 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400772};
773
774static struct pci_driver it821x_pci_driver = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400775 .name = DRV_NAME,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400776 .id_table = it821x,
777 .probe = it821x_init_one,
Alanf535d532006-11-27 16:14:36 +0000778 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900779#ifdef CONFIG_PM
Alanf535d532006-11-27 16:14:36 +0000780 .suspend = ata_pci_device_suspend,
781 .resume = it821x_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900782#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400783};
784
785static int __init it821x_init(void)
786{
787 return pci_register_driver(&it821x_pci_driver);
788}
789
Jeff Garzik669a5db2006-08-29 18:12:40 -0400790static void __exit it821x_exit(void)
791{
792 pci_unregister_driver(&it821x_pci_driver);
793}
794
Jeff Garzik669a5db2006-08-29 18:12:40 -0400795MODULE_AUTHOR("Alan Cox");
796MODULE_DESCRIPTION("low-level driver for the IT8211/IT8212 IDE RAID controller");
797MODULE_LICENSE("GPL");
798MODULE_DEVICE_TABLE(pci, it821x);
799MODULE_VERSION(DRV_VERSION);
800
801
802module_param_named(noraid, it8212_noraid, int, S_IRUGO);
803MODULE_PARM_DESC(it8212_noraid, "Force card into bypass mode");
804
805module_init(it821x_init);
806module_exit(it821x_exit);