ide: move ide_rate_filter() calls to the upper layer (take 2)
[cascardo/linux.git] / drivers / ide / pci / it8213.c
1 /*
2  * ITE 8213 IDE driver
3  *
4  * Copyright (C) 2006 Jack Lee
5  * Copyright (C) 2006 Alan Cox
6  * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
7  */
8
9 #include <linux/kernel.h>
10 #include <linux/types.h>
11 #include <linux/module.h>
12 #include <linux/pci.h>
13 #include <linux/delay.h>
14 #include <linux/hdreg.h>
15 #include <linux/ide.h>
16 #include <linux/init.h>
17
18 #include <asm/io.h>
19
20 /**
21  *      it8213_dma_2_pio                -       return the PIO mode matching DMA
22  *      @xfer_rate: transfer speed
23  *
24  *      Returns the nearest equivalent PIO timing for the DMA
25  *      mode requested by the controller.
26  */
27
28 static u8 it8213_dma_2_pio (u8 xfer_rate) {
29         switch(xfer_rate) {
30                 case XFER_UDMA_6:
31                 case XFER_UDMA_5:
32                 case XFER_UDMA_4:
33                 case XFER_UDMA_3:
34                 case XFER_UDMA_2:
35                 case XFER_UDMA_1:
36                 case XFER_UDMA_0:
37                 case XFER_MW_DMA_2:
38                         return 4;
39                 case XFER_MW_DMA_1:
40                         return 3;
41                 case XFER_SW_DMA_2:
42                         return 2;
43                 case XFER_MW_DMA_0:
44                 case XFER_SW_DMA_1:
45                 case XFER_SW_DMA_0:
46                 default:
47                         return 0;
48         }
49 }
50
51 /*
52  *      it8213_tune_pio -       tune a drive
53  *      @drive: drive to tune
54  *      @pio: desired PIO mode
55  *
56  *      Set the interface PIO mode.
57  */
58
59 static void it8213_tune_pio(ide_drive_t *drive, const u8 pio)
60 {
61         ide_hwif_t *hwif        = HWIF(drive);
62         struct pci_dev *dev     = hwif->pci_dev;
63         int is_slave            = drive->dn & 1;
64         int master_port         = 0x40;
65         int slave_port          = 0x44;
66         unsigned long flags;
67         u16 master_data;
68         u8 slave_data;
69         static DEFINE_SPINLOCK(tune_lock);
70         int control = 0;
71
72         static const u8 timings[][2]= {
73                                         { 0, 0 },
74                                         { 0, 0 },
75                                         { 1, 0 },
76                                         { 2, 1 },
77                                         { 2, 3 }, };
78
79         spin_lock_irqsave(&tune_lock, flags);
80         pci_read_config_word(dev, master_port, &master_data);
81
82         if (pio > 1)
83                 control |= 1;   /* Programmable timing on */
84         if (drive->media != ide_disk)
85                 control |= 4;   /* ATAPI */
86         if (pio > 2)
87                 control |= 2;   /* IORDY */
88         if (is_slave) {
89                 master_data |=  0x4000;
90                 master_data &= ~0x0070;
91                 if (pio > 1)
92                         master_data = master_data | (control << 4);
93                 pci_read_config_byte(dev, slave_port, &slave_data);
94                 slave_data = slave_data & 0xf0;
95                 slave_data = slave_data | (timings[pio][0] << 2) | timings[pio][1];
96         } else {
97                 master_data &= ~0x3307;
98                 if (pio > 1)
99                         master_data = master_data | control;
100                 master_data = master_data | (timings[pio][0] << 12) | (timings[pio][1] << 8);
101         }
102         pci_write_config_word(dev, master_port, master_data);
103         if (is_slave)
104                 pci_write_config_byte(dev, slave_port, slave_data);
105         spin_unlock_irqrestore(&tune_lock, flags);
106 }
107
108 static void it8213_tuneproc(ide_drive_t *drive, u8 pio)
109 {
110         pio = ide_get_best_pio_mode(drive, pio, 4);
111         it8213_tune_pio(drive, pio);
112         ide_config_drive_speed(drive, XFER_PIO_0 + pio);
113 }
114
115 /**
116  *      it8213_tune_chipset     -       set controller timings
117  *      @drive: Drive to set up
118  *      @speed: speed we want to achieve
119  *
120  *      Tune the ITE chipset for the desired mode.
121  */
122
123 static int it8213_tune_chipset(ide_drive_t *drive, const u8 speed)
124 {
125         ide_hwif_t *hwif        = HWIF(drive);
126         struct pci_dev *dev     = hwif->pci_dev;
127         u8 maslave              = 0x40;
128         int a_speed             = 3 << (drive->dn * 4);
129         int u_flag              = 1 << drive->dn;
130         int v_flag              = 0x01 << drive->dn;
131         int w_flag              = 0x10 << drive->dn;
132         int u_speed             = 0;
133         u16                     reg4042, reg4a;
134         u8                      reg48, reg54, reg55;
135
136         pci_read_config_word(dev, maslave, &reg4042);
137         pci_read_config_byte(dev, 0x48, &reg48);
138         pci_read_config_word(dev, 0x4a, &reg4a);
139         pci_read_config_byte(dev, 0x54, &reg54);
140         pci_read_config_byte(dev, 0x55, &reg55);
141
142         switch(speed) {
143                 case XFER_UDMA_6:
144                 case XFER_UDMA_4:
145                 case XFER_UDMA_2:       u_speed = 2 << (drive->dn * 4); break;
146                 case XFER_UDMA_5:
147                 case XFER_UDMA_3:
148                 case XFER_UDMA_1:       u_speed = 1 << (drive->dn * 4); break;
149                 case XFER_UDMA_0:       u_speed = 0 << (drive->dn * 4); break;
150                         break;
151                 case XFER_MW_DMA_2:
152                 case XFER_MW_DMA_1:
153                 case XFER_SW_DMA_2:
154                         break;
155                 case XFER_PIO_4:
156                 case XFER_PIO_3:
157                 case XFER_PIO_2:
158                 case XFER_PIO_1:
159                 case XFER_PIO_0:
160                         break;
161                 default:
162                         return -1;
163         }
164
165         if (speed >= XFER_UDMA_0) {
166                 if (!(reg48 & u_flag))
167                         pci_write_config_byte(dev, 0x48, reg48 | u_flag);
168                 if (speed >= XFER_UDMA_5) {
169                         pci_write_config_byte(dev, 0x55, (u8) reg55|w_flag);
170                 } else {
171                         pci_write_config_byte(dev, 0x55, (u8) reg55 & ~w_flag);
172                 }
173
174                 if ((reg4a & a_speed) != u_speed)
175                         pci_write_config_word(dev, 0x4a, (reg4a & ~a_speed) | u_speed);
176                 if (speed > XFER_UDMA_2) {
177                         if (!(reg54 & v_flag))
178                                 pci_write_config_byte(dev, 0x54, reg54 | v_flag);
179                 } else
180                         pci_write_config_byte(dev, 0x54, reg54 & ~v_flag);
181         } else {
182                 if (reg48 & u_flag)
183                         pci_write_config_byte(dev, 0x48, reg48 & ~u_flag);
184                 if (reg4a & a_speed)
185                         pci_write_config_word(dev, 0x4a, reg4a & ~a_speed);
186                 if (reg54 & v_flag)
187                         pci_write_config_byte(dev, 0x54, reg54 & ~v_flag);
188                 if (reg55 & w_flag)
189                         pci_write_config_byte(dev, 0x55, (u8) reg55 & ~w_flag);
190         }
191
192         if (speed > XFER_PIO_4)
193                 it8213_tune_pio(drive, it8213_dma_2_pio(speed));
194         else
195                 it8213_tune_pio(drive, speed - XFER_PIO_0);
196
197         return ide_config_drive_speed(drive, speed);
198 }
199
200 /**
201  *      it8213_configure_drive_for_dma  -       set up for DMA transfers
202  *      @drive: drive we are going to set up
203  *
204  *      Set up the drive for DMA, tune the controller and drive as
205  *      required. If the drive isn't suitable for DMA or we hit
206  *      other problems then we will drop down to PIO and set up
207  *      PIO appropriately
208  */
209
210 static int it8213_config_drive_for_dma (ide_drive_t *drive)
211 {
212         if (ide_tune_dma(drive))
213                 return 0;
214
215         it8213_tuneproc(drive, 255);
216
217         return -1;
218 }
219
220 /**
221  *      init_hwif_it8213        -       set up hwif structs
222  *      @hwif: interface to set up
223  *
224  *      We do the basic set up of the interface structure. The IT8212
225  *      requires several custom handlers so we override the default
226  *      ide DMA handlers appropriately
227  */
228
229 static void __devinit init_hwif_it8213(ide_hwif_t *hwif)
230 {
231         u8 reg42h = 0;
232
233         hwif->speedproc = &it8213_tune_chipset;
234         hwif->tuneproc  = &it8213_tuneproc;
235
236         hwif->autodma = 0;
237
238         hwif->drives[0].autotune = 1;
239         hwif->drives[1].autotune = 1;
240
241         if (!hwif->dma_base)
242                 return;
243
244         hwif->atapi_dma = 1;
245         hwif->ultra_mask = 0x7f;
246         hwif->mwdma_mask = 0x06;
247         hwif->swdma_mask = 0x04;
248
249         pci_read_config_byte(hwif->pci_dev, 0x42, &reg42h);
250
251         hwif->ide_dma_check = &it8213_config_drive_for_dma;
252
253         if (hwif->cbl != ATA_CBL_PATA40_SHORT)
254                 hwif->cbl = (reg42h & 0x02) ? ATA_CBL_PATA40 : ATA_CBL_PATA80;
255
256         /*
257          *      The BIOS often doesn't set up DMA on this controller
258          *      so we always do it.
259          */
260         if (!noautodma)
261                 hwif->autodma = 1;
262
263         hwif->drives[0].autodma = hwif->autodma;
264         hwif->drives[1].autodma = hwif->autodma;
265 }
266
267
268 #define DECLARE_ITE_DEV(name_str)                       \
269         {                                               \
270                 .name           = name_str,             \
271                 .init_hwif      = init_hwif_it8213,     \
272                 .autodma        = AUTODMA,              \
273                 .enablebits     = {{0x41,0x80,0x80}}, \
274                 .bootable       = ON_BOARD,             \
275                 .host_flags     = IDE_HFLAG_SINGLE,     \
276                 .pio_mask       = ATA_PIO4,             \
277         }
278
279 static ide_pci_device_t it8213_chipsets[] __devinitdata = {
280         /* 0 */ DECLARE_ITE_DEV("IT8213"),
281 };
282
283
284 /**
285  *      it8213_init_one -       pci layer discovery entry
286  *      @dev: PCI device
287  *      @id: ident table entry
288  *
289  *      Called by the PCI code when it finds an ITE8213 controller. As
290  *      this device follows the standard interfaces we can use the
291  *      standard helper functions to do almost all the work for us.
292  */
293
294 static int __devinit it8213_init_one(struct pci_dev *dev, const struct pci_device_id *id)
295 {
296         ide_setup_pci_device(dev, &it8213_chipsets[id->driver_data]);
297         return 0;
298 }
299
300
301 static struct pci_device_id it8213_pci_tbl[] = {
302         { PCI_VENDOR_ID_ITE, 0x8213, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
303         { 0, },
304 };
305
306 MODULE_DEVICE_TABLE(pci, it8213_pci_tbl);
307
308 static struct pci_driver driver = {
309         .name           = "ITE8213_IDE",
310         .id_table       = it8213_pci_tbl,
311         .probe          = it8213_init_one,
312 };
313
314 static int __init it8213_ide_init(void)
315 {
316         return ide_pci_register_driver(&driver);
317 }
318
319 module_init(it8213_ide_init);
320
321 MODULE_AUTHOR("Jack Lee, Alan Cox");
322 MODULE_DESCRIPTION("PCI driver module for the ITE 8213");
323 MODULE_LICENSE("GPL");