[libata] fix 'if(' and similar areas that lack whitespace
[deliverable/linux.git] / drivers / ata / sata_promise.c
CommitLineData
1da177e4
LT
1/*
2 * sata_promise.c - Promise SATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc.
9 *
1da177e4 10 *
af36d7f0
JG
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 *
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
28 *
29 * Hardware information only available under NDA.
1da177e4
LT
30 *
31 */
32
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/pci.h>
36#include <linux/init.h>
37#include <linux/blkdev.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
a9524a76 40#include <linux/device.h>
95006188 41#include <scsi/scsi.h>
1da177e4 42#include <scsi/scsi_host.h>
193515d5 43#include <scsi/scsi_cmnd.h>
1da177e4 44#include <linux/libata.h>
1da177e4
LT
45#include "sata_promise.h"
46
47#define DRV_NAME "sata_promise"
7f9992a2 48#define DRV_VERSION "2.10"
1da177e4
LT
49
50enum {
eca25dca 51 PDC_MAX_PORTS = 4,
0d5ff566
TH
52 PDC_MMIO_BAR = 3,
53
95006188
MP
54 /* register offsets */
55 PDC_FEATURE = 0x04, /* Feature/Error reg (per port) */
56 PDC_SECTOR_COUNT = 0x08, /* Sector count reg (per port) */
57 PDC_SECTOR_NUMBER = 0x0C, /* Sector number reg (per port) */
58 PDC_CYLINDER_LOW = 0x10, /* Cylinder low reg (per port) */
59 PDC_CYLINDER_HIGH = 0x14, /* Cylinder high reg (per port) */
60 PDC_DEVICE = 0x18, /* Device/Head reg (per port) */
61 PDC_COMMAND = 0x1C, /* Command/status reg (per port) */
73fd456b 62 PDC_ALTSTATUS = 0x38, /* Alternate-status/device-control reg (per port) */
1da177e4
LT
63 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
64 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
1da177e4 65 PDC_FLASH_CTL = 0x44, /* Flash control register */
1da177e4
LT
66 PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */
67 PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */
68 PDC_SATA_PLUG_CSR = 0x6C, /* SATA Plug control/status reg */
6340f019 69 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
b2d1eee1
MP
70 PDC_TBG_MODE = 0x41C, /* TBG mode (not SATAII) */
71 PDC_SLEW_CTL = 0x470, /* slew rate control reg (not SATAII) */
1da177e4 72
176efb05
MP
73 /* PDC_GLOBAL_CTL bit definitions */
74 PDC_PH_ERR = (1 << 8), /* PCI error while loading packet */
75 PDC_SH_ERR = (1 << 9), /* PCI error while loading S/G table */
76 PDC_DH_ERR = (1 << 10), /* PCI error while loading data */
77 PDC2_HTO_ERR = (1 << 12), /* host bus timeout */
78 PDC2_ATA_HBA_ERR = (1 << 13), /* error during SATA DATA FIS transmission */
79 PDC2_ATA_DMA_CNT_ERR = (1 << 14), /* DMA DATA FIS size differs from S/G count */
80 PDC_OVERRUN_ERR = (1 << 19), /* S/G byte count larger than HD requires */
81 PDC_UNDERRUN_ERR = (1 << 20), /* S/G byte count less than HD requires */
82 PDC_DRIVE_ERR = (1 << 21), /* drive error */
83 PDC_PCI_SYS_ERR = (1 << 22), /* PCI system error */
84 PDC1_PCI_PARITY_ERR = (1 << 23), /* PCI parity error (from SATA150 driver) */
85 PDC1_ERR_MASK = PDC1_PCI_PARITY_ERR,
86 PDC2_ERR_MASK = PDC2_HTO_ERR | PDC2_ATA_HBA_ERR | PDC2_ATA_DMA_CNT_ERR,
87 PDC_ERR_MASK = (PDC_PH_ERR | PDC_SH_ERR | PDC_DH_ERR | PDC_OVERRUN_ERR
88 | PDC_UNDERRUN_ERR | PDC_DRIVE_ERR | PDC_PCI_SYS_ERR
89 | PDC1_ERR_MASK | PDC2_ERR_MASK),
1da177e4
LT
90
91 board_2037x = 0, /* FastTrak S150 TX2plus */
eca25dca
TH
92 board_2037x_pata = 1, /* FastTrak S150 TX2plus PATA port */
93 board_20319 = 2, /* FastTrak S150 TX4 */
94 board_20619 = 3, /* FastTrak TX4000 */
95 board_2057x = 4, /* SATAII150 Tx2plus */
d0e58031 96 board_2057x_pata = 5, /* SATAII150 Tx2plus PATA port */
eca25dca 97 board_40518 = 6, /* SATAII150 Tx4 */
1da177e4 98
6340f019 99 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
1da177e4 100
95006188
MP
101 /* Sequence counter control registers bit definitions */
102 PDC_SEQCNTRL_INT_MASK = (1 << 5), /* Sequence Interrupt Mask */
103
104 /* Feature register values */
105 PDC_FEATURE_ATAPI_PIO = 0x00, /* ATAPI data xfer by PIO */
106 PDC_FEATURE_ATAPI_DMA = 0x01, /* ATAPI data xfer by DMA */
107
108 /* Device/Head register values */
109 PDC_DEVICE_SATA = 0xE0, /* Device/Head value for SATA devices */
110
25b93d81
MP
111 /* PDC_CTLSTAT bit definitions */
112 PDC_DMA_ENABLE = (1 << 7),
113 PDC_IRQ_DISABLE = (1 << 10),
1da177e4 114 PDC_RESET = (1 << 11), /* HDMA reset */
50630195 115
25b93d81 116 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY |
95006188 117 ATA_FLAG_MMIO |
3d0a59c0 118 ATA_FLAG_PIO_POLLING,
b2d1eee1 119
eca25dca
TH
120 /* ap->flags bits */
121 PDC_FLAG_GEN_II = (1 << 24),
122 PDC_FLAG_SATA_PATA = (1 << 25), /* supports SATA + PATA */
123 PDC_FLAG_4_PORTS = (1 << 26), /* 4 ports */
1da177e4
LT
124};
125
1da177e4
LT
126struct pdc_port_priv {
127 u8 *pkt;
128 dma_addr_t pkt_dma;
129};
130
da3dbb17
TH
131static int pdc_sata_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val);
132static int pdc_sata_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val);
1da177e4 133static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
eca25dca
TH
134static int pdc_common_port_start(struct ata_port *ap);
135static int pdc_sata_port_start(struct ata_port *ap);
1da177e4 136static void pdc_qc_prep(struct ata_queued_cmd *qc);
057ace5e
JG
137static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
138static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
95006188 139static int pdc_check_atapi_dma(struct ata_queued_cmd *qc);
724114a5 140static int pdc_old_sata_check_atapi_dma(struct ata_queued_cmd *qc);
1da177e4 141static void pdc_irq_clear(struct ata_port *ap);
9a3d9eb0 142static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
25b93d81
MP
143static void pdc_freeze(struct ata_port *ap);
144static void pdc_thaw(struct ata_port *ap);
724114a5
MP
145static void pdc_pata_error_handler(struct ata_port *ap);
146static void pdc_sata_error_handler(struct ata_port *ap);
25b93d81 147static void pdc_post_internal_cmd(struct ata_queued_cmd *qc);
724114a5
MP
148static int pdc_pata_cable_detect(struct ata_port *ap);
149static int pdc_sata_cable_detect(struct ata_port *ap);
374b1873 150
193515d5 151static struct scsi_host_template pdc_ata_sht = {
1da177e4
LT
152 .module = THIS_MODULE,
153 .name = DRV_NAME,
154 .ioctl = ata_scsi_ioctl,
155 .queuecommand = ata_scsi_queuecmd,
1da177e4
LT
156 .can_queue = ATA_DEF_QUEUE,
157 .this_id = ATA_SHT_THIS_ID,
158 .sg_tablesize = LIBATA_MAX_PRD,
1da177e4
LT
159 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
160 .emulated = ATA_SHT_EMULATED,
161 .use_clustering = ATA_SHT_USE_CLUSTERING,
162 .proc_name = DRV_NAME,
163 .dma_boundary = ATA_DMA_BOUNDARY,
164 .slave_configure = ata_scsi_slave_config,
ccf68c34 165 .slave_destroy = ata_scsi_slave_destroy,
1da177e4 166 .bios_param = ata_std_bios_param,
1da177e4
LT
167};
168
057ace5e 169static const struct ata_port_operations pdc_sata_ops = {
1da177e4
LT
170 .tf_load = pdc_tf_load_mmio,
171 .tf_read = ata_tf_read,
172 .check_status = ata_check_status,
173 .exec_command = pdc_exec_command_mmio,
174 .dev_select = ata_std_dev_select,
95006188
MP
175 .check_atapi_dma = pdc_check_atapi_dma,
176
177 .qc_prep = pdc_qc_prep,
178 .qc_issue = pdc_qc_issue_prot,
179 .freeze = pdc_freeze,
180 .thaw = pdc_thaw,
724114a5 181 .error_handler = pdc_sata_error_handler,
95006188 182 .post_internal_cmd = pdc_post_internal_cmd,
724114a5 183 .cable_detect = pdc_sata_cable_detect,
0d5ff566 184 .data_xfer = ata_data_xfer,
95006188 185 .irq_clear = pdc_irq_clear,
246ce3b6 186 .irq_on = ata_irq_on,
95006188
MP
187
188 .scr_read = pdc_sata_scr_read,
189 .scr_write = pdc_sata_scr_write,
eca25dca 190 .port_start = pdc_sata_port_start,
95006188
MP
191};
192
193/* First-generation chips need a more restrictive ->check_atapi_dma op */
194static const struct ata_port_operations pdc_old_sata_ops = {
95006188
MP
195 .tf_load = pdc_tf_load_mmio,
196 .tf_read = ata_tf_read,
197 .check_status = ata_check_status,
198 .exec_command = pdc_exec_command_mmio,
199 .dev_select = ata_std_dev_select,
724114a5 200 .check_atapi_dma = pdc_old_sata_check_atapi_dma,
2cba582a 201
1da177e4
LT
202 .qc_prep = pdc_qc_prep,
203 .qc_issue = pdc_qc_issue_prot,
25b93d81
MP
204 .freeze = pdc_freeze,
205 .thaw = pdc_thaw,
724114a5 206 .error_handler = pdc_sata_error_handler,
25b93d81 207 .post_internal_cmd = pdc_post_internal_cmd,
724114a5 208 .cable_detect = pdc_sata_cable_detect,
0d5ff566 209 .data_xfer = ata_data_xfer,
1da177e4 210 .irq_clear = pdc_irq_clear,
246ce3b6 211 .irq_on = ata_irq_on,
2cba582a 212
1da177e4
LT
213 .scr_read = pdc_sata_scr_read,
214 .scr_write = pdc_sata_scr_write,
eca25dca 215 .port_start = pdc_sata_port_start,
1da177e4
LT
216};
217
057ace5e 218static const struct ata_port_operations pdc_pata_ops = {
2cba582a
JG
219 .tf_load = pdc_tf_load_mmio,
220 .tf_read = ata_tf_read,
221 .check_status = ata_check_status,
222 .exec_command = pdc_exec_command_mmio,
223 .dev_select = ata_std_dev_select,
95006188 224 .check_atapi_dma = pdc_check_atapi_dma,
2cba582a 225
2cba582a
JG
226 .qc_prep = pdc_qc_prep,
227 .qc_issue = pdc_qc_issue_prot,
5387373b
MP
228 .freeze = pdc_freeze,
229 .thaw = pdc_thaw,
724114a5 230 .error_handler = pdc_pata_error_handler,
540477b4 231 .post_internal_cmd = pdc_post_internal_cmd,
724114a5 232 .cable_detect = pdc_pata_cable_detect,
0d5ff566 233 .data_xfer = ata_data_xfer,
2cba582a 234 .irq_clear = pdc_irq_clear,
246ce3b6 235 .irq_on = ata_irq_on,
2cba582a 236
eca25dca 237 .port_start = pdc_common_port_start,
2cba582a
JG
238};
239
98ac62de 240static const struct ata_port_info pdc_port_info[] = {
1da177e4
LT
241 /* board_2037x */
242 {
eca25dca
TH
243 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
244 PDC_FLAG_SATA_PATA,
1da177e4
LT
245 .pio_mask = 0x1f, /* pio0-4 */
246 .mwdma_mask = 0x07, /* mwdma0-2 */
469248ab 247 .udma_mask = ATA_UDMA6,
95006188 248 .port_ops = &pdc_old_sata_ops,
1da177e4
LT
249 },
250
eca25dca
TH
251 /* board_2037x_pata */
252 {
253 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
254 .pio_mask = 0x1f, /* pio0-4 */
255 .mwdma_mask = 0x07, /* mwdma0-2 */
469248ab 256 .udma_mask = ATA_UDMA6,
eca25dca
TH
257 .port_ops = &pdc_pata_ops,
258 },
259
1da177e4
LT
260 /* board_20319 */
261 {
eca25dca
TH
262 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
263 PDC_FLAG_4_PORTS,
1da177e4
LT
264 .pio_mask = 0x1f, /* pio0-4 */
265 .mwdma_mask = 0x07, /* mwdma0-2 */
469248ab 266 .udma_mask = ATA_UDMA6,
95006188 267 .port_ops = &pdc_old_sata_ops,
1da177e4 268 },
f497ba73
TL
269
270 /* board_20619 */
271 {
eca25dca
TH
272 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS |
273 PDC_FLAG_4_PORTS,
f497ba73
TL
274 .pio_mask = 0x1f, /* pio0-4 */
275 .mwdma_mask = 0x07, /* mwdma0-2 */
469248ab 276 .udma_mask = ATA_UDMA6,
2cba582a 277 .port_ops = &pdc_pata_ops,
f497ba73 278 },
5a46fe89 279
6340f019
LK
280 /* board_2057x */
281 {
eca25dca
TH
282 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
283 PDC_FLAG_GEN_II | PDC_FLAG_SATA_PATA,
6340f019
LK
284 .pio_mask = 0x1f, /* pio0-4 */
285 .mwdma_mask = 0x07, /* mwdma0-2 */
469248ab 286 .udma_mask = ATA_UDMA6,
6340f019
LK
287 .port_ops = &pdc_sata_ops,
288 },
289
eca25dca
TH
290 /* board_2057x_pata */
291 {
bb312235 292 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS |
eca25dca
TH
293 PDC_FLAG_GEN_II,
294 .pio_mask = 0x1f, /* pio0-4 */
295 .mwdma_mask = 0x07, /* mwdma0-2 */
469248ab 296 .udma_mask = ATA_UDMA6,
eca25dca
TH
297 .port_ops = &pdc_pata_ops,
298 },
299
6340f019
LK
300 /* board_40518 */
301 {
eca25dca
TH
302 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
303 PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS,
6340f019
LK
304 .pio_mask = 0x1f, /* pio0-4 */
305 .mwdma_mask = 0x07, /* mwdma0-2 */
469248ab 306 .udma_mask = ATA_UDMA6,
6340f019
LK
307 .port_ops = &pdc_sata_ops,
308 },
1da177e4
LT
309};
310
3b7d697d 311static const struct pci_device_id pdc_ata_pci_tbl[] = {
54bb3a94 312 { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
54bb3a94
JG
313 { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
314 { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
315 { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
b2d1eee1
MP
316 { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
317 { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
54bb3a94 318 { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
d324d462 319 { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
b2d1eee1 320 { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
54bb3a94 321 { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
54bb3a94
JG
322
323 { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
324 { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
7f9992a2
MP
325 { PCI_VDEVICE(PROMISE, 0x3515), board_40518 },
326 { PCI_VDEVICE(PROMISE, 0x3519), board_40518 },
b2d1eee1 327 { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
54bb3a94
JG
328 { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
329
330 { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
f497ba73 331
1da177e4
LT
332 { } /* terminate list */
333};
334
1da177e4
LT
335static struct pci_driver pdc_ata_pci_driver = {
336 .name = DRV_NAME,
337 .id_table = pdc_ata_pci_tbl,
338 .probe = pdc_ata_init_one,
339 .remove = ata_pci_remove_one,
340};
341
724114a5 342static int pdc_common_port_start(struct ata_port *ap)
1da177e4 343{
cca3974e 344 struct device *dev = ap->host->dev;
1da177e4
LT
345 struct pdc_port_priv *pp;
346 int rc;
347
348 rc = ata_port_start(ap);
349 if (rc)
350 return rc;
351
24dc5f33
TH
352 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
353 if (!pp)
354 return -ENOMEM;
1da177e4 355
24dc5f33
TH
356 pp->pkt = dmam_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
357 if (!pp->pkt)
358 return -ENOMEM;
1da177e4
LT
359
360 ap->private_data = pp;
361
724114a5
MP
362 return 0;
363}
364
365static int pdc_sata_port_start(struct ata_port *ap)
366{
724114a5
MP
367 int rc;
368
369 rc = pdc_common_port_start(ap);
370 if (rc)
371 return rc;
372
599b7202 373 /* fix up PHYMODE4 align timing */
eca25dca 374 if (ap->flags & PDC_FLAG_GEN_II) {
59f99880 375 void __iomem *mmio = ap->ioaddr.scr_addr;
599b7202
MP
376 unsigned int tmp;
377
378 tmp = readl(mmio + 0x014);
379 tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */
380 writel(tmp, mmio + 0x014);
381 }
382
1da177e4 383 return 0;
1da177e4
LT
384}
385
1da177e4
LT
386static void pdc_reset_port(struct ata_port *ap)
387{
0d5ff566 388 void __iomem *mmio = ap->ioaddr.cmd_addr + PDC_CTLSTAT;
1da177e4
LT
389 unsigned int i;
390 u32 tmp;
391
392 for (i = 11; i > 0; i--) {
393 tmp = readl(mmio);
394 if (tmp & PDC_RESET)
395 break;
396
397 udelay(100);
398
399 tmp |= PDC_RESET;
400 writel(tmp, mmio);
401 }
402
403 tmp &= ~PDC_RESET;
404 writel(tmp, mmio);
405 readl(mmio); /* flush */
406}
407
724114a5 408static int pdc_pata_cable_detect(struct ata_port *ap)
2cba582a 409{
d3fb4e8d 410 u8 tmp;
59f99880 411 void __iomem *mmio = ap->ioaddr.cmd_addr + PDC_CTLSTAT + 0x03;
d3fb4e8d 412
724114a5
MP
413 tmp = readb(mmio);
414 if (tmp & 0x01)
415 return ATA_CBL_PATA40;
416 return ATA_CBL_PATA80;
417}
418
419static int pdc_sata_cable_detect(struct ata_port *ap)
420{
e2a9752a 421 return ATA_CBL_SATA;
d3fb4e8d 422}
2cba582a 423
da3dbb17 424static int pdc_sata_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val)
1da177e4 425{
724114a5 426 if (sc_reg > SCR_CONTROL)
da3dbb17
TH
427 return -EINVAL;
428 *val = readl(ap->ioaddr.scr_addr + (sc_reg * 4));
429 return 0;
1da177e4
LT
430}
431
da3dbb17 432static int pdc_sata_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val)
1da177e4 433{
724114a5 434 if (sc_reg > SCR_CONTROL)
da3dbb17 435 return -EINVAL;
0d5ff566 436 writel(val, ap->ioaddr.scr_addr + (sc_reg * 4));
da3dbb17 437 return 0;
1da177e4
LT
438}
439
fba6edbd 440static void pdc_atapi_pkt(struct ata_queued_cmd *qc)
95006188 441{
4113bb6b
MP
442 struct ata_port *ap = qc->ap;
443 dma_addr_t sg_table = ap->prd_dma;
444 unsigned int cdb_len = qc->dev->cdb_len;
445 u8 *cdb = qc->cdb;
446 struct pdc_port_priv *pp = ap->private_data;
447 u8 *buf = pp->pkt;
95006188 448 u32 *buf32 = (u32 *) buf;
4113bb6b 449 unsigned int dev_sel, feature, nbytes;
95006188
MP
450
451 /* set control bits (byte 0), zero delay seq id (byte 3),
452 * and seq id (byte 2)
453 */
fba6edbd
MP
454 switch (qc->tf.protocol) {
455 case ATA_PROT_ATAPI_DMA:
456 if (!(qc->tf.flags & ATA_TFLAG_WRITE))
457 buf32[0] = cpu_to_le32(PDC_PKT_READ);
458 else
459 buf32[0] = 0;
460 break;
461 case ATA_PROT_ATAPI_NODATA:
462 buf32[0] = cpu_to_le32(PDC_PKT_NODATA);
463 break;
464 default:
465 BUG();
466 break;
467 }
95006188
MP
468 buf32[1] = cpu_to_le32(sg_table); /* S/G table addr */
469 buf32[2] = 0; /* no next-packet */
470
4113bb6b 471 /* select drive */
936fd732 472 if (sata_scr_valid(&ap->link)) {
4113bb6b
MP
473 dev_sel = PDC_DEVICE_SATA;
474 } else {
475 dev_sel = ATA_DEVICE_OBS;
476 if (qc->dev->devno != 0)
477 dev_sel |= ATA_DEV1;
478 }
479 buf[12] = (1 << 5) | ATA_REG_DEVICE;
480 buf[13] = dev_sel;
481 buf[14] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_CLEAR_BSY;
482 buf[15] = dev_sel; /* once more, waiting for BSY to clear */
483
484 buf[16] = (1 << 5) | ATA_REG_NSECT;
485 buf[17] = 0x00;
486 buf[18] = (1 << 5) | ATA_REG_LBAL;
487 buf[19] = 0x00;
488
489 /* set feature and byte counter registers */
490 if (qc->tf.protocol != ATA_PROT_ATAPI_DMA) {
491 feature = PDC_FEATURE_ATAPI_PIO;
492 /* set byte counter register to real transfer byte count */
493 nbytes = qc->nbytes;
4113bb6b
MP
494 if (nbytes > 0xffff)
495 nbytes = 0xffff;
496 } else {
497 feature = PDC_FEATURE_ATAPI_DMA;
498 /* set byte counter register to 0 */
499 nbytes = 0;
500 }
501 buf[20] = (1 << 5) | ATA_REG_FEATURE;
502 buf[21] = feature;
503 buf[22] = (1 << 5) | ATA_REG_BYTEL;
504 buf[23] = nbytes & 0xFF;
505 buf[24] = (1 << 5) | ATA_REG_BYTEH;
506 buf[25] = (nbytes >> 8) & 0xFF;
507
508 /* send ATAPI packet command 0xA0 */
509 buf[26] = (1 << 5) | ATA_REG_CMD;
510 buf[27] = ATA_CMD_PACKET;
511
512 /* select drive and check DRQ */
513 buf[28] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_WAIT_DRDY;
514 buf[29] = dev_sel;
515
95006188
MP
516 /* we can represent cdb lengths 2/4/6/8/10/12/14/16 */
517 BUG_ON(cdb_len & ~0x1E);
518
4113bb6b
MP
519 /* append the CDB as the final part */
520 buf[30] = (((cdb_len >> 1) & 7) << 5) | ATA_REG_DATA | PDC_LAST_REG;
521 memcpy(buf+31, cdb, cdb_len);
95006188
MP
522}
523
1da177e4
LT
524static void pdc_qc_prep(struct ata_queued_cmd *qc)
525{
526 struct pdc_port_priv *pp = qc->ap->private_data;
527 unsigned int i;
528
529 VPRINTK("ENTER\n");
530
531 switch (qc->tf.protocol) {
532 case ATA_PROT_DMA:
533 ata_qc_prep(qc);
534 /* fall through */
535
536 case ATA_PROT_NODATA:
537 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
538 qc->dev->devno, pp->pkt);
539
540 if (qc->tf.flags & ATA_TFLAG_LBA48)
541 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
542 else
543 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
544
545 pdc_pkt_footer(&qc->tf, pp->pkt, i);
546 break;
547
95006188 548 case ATA_PROT_ATAPI:
95006188
MP
549 ata_qc_prep(qc);
550 break;
551
552 case ATA_PROT_ATAPI_DMA:
553 ata_qc_prep(qc);
fba6edbd
MP
554 /*FALLTHROUGH*/
555 case ATA_PROT_ATAPI_NODATA:
556 pdc_atapi_pkt(qc);
95006188
MP
557 break;
558
1da177e4
LT
559 default:
560 break;
561 }
562}
563
25b93d81
MP
564static void pdc_freeze(struct ata_port *ap)
565{
59f99880 566 void __iomem *mmio = ap->ioaddr.cmd_addr;
25b93d81
MP
567 u32 tmp;
568
569 tmp = readl(mmio + PDC_CTLSTAT);
570 tmp |= PDC_IRQ_DISABLE;
571 tmp &= ~PDC_DMA_ENABLE;
572 writel(tmp, mmio + PDC_CTLSTAT);
573 readl(mmio + PDC_CTLSTAT); /* flush */
574}
575
576static void pdc_thaw(struct ata_port *ap)
577{
59f99880 578 void __iomem *mmio = ap->ioaddr.cmd_addr;
25b93d81
MP
579 u32 tmp;
580
581 /* clear IRQ */
582 readl(mmio + PDC_INT_SEQMASK);
583
584 /* turn IRQ back on */
585 tmp = readl(mmio + PDC_CTLSTAT);
586 tmp &= ~PDC_IRQ_DISABLE;
587 writel(tmp, mmio + PDC_CTLSTAT);
588 readl(mmio + PDC_CTLSTAT); /* flush */
589}
590
724114a5 591static void pdc_common_error_handler(struct ata_port *ap, ata_reset_fn_t hardreset)
25b93d81 592{
25b93d81
MP
593 if (!(ap->pflags & ATA_PFLAG_FROZEN))
594 pdc_reset_port(ap);
595
25b93d81 596 /* perform recovery */
e2a9752a 597 ata_do_eh(ap, ata_std_prereset, ata_std_softreset, hardreset,
25b93d81
MP
598 ata_std_postreset);
599}
600
724114a5
MP
601static void pdc_pata_error_handler(struct ata_port *ap)
602{
603 pdc_common_error_handler(ap, NULL);
604}
605
606static void pdc_sata_error_handler(struct ata_port *ap)
607{
608 pdc_common_error_handler(ap, sata_std_hardreset);
609}
610
25b93d81
MP
611static void pdc_post_internal_cmd(struct ata_queued_cmd *qc)
612{
613 struct ata_port *ap = qc->ap;
614
25b93d81 615 /* make DMA engine forget about the failed command */
a51d644a 616 if (qc->flags & ATA_QCFLAG_FAILED)
25b93d81
MP
617 pdc_reset_port(ap);
618}
619
176efb05
MP
620static void pdc_error_intr(struct ata_port *ap, struct ata_queued_cmd *qc,
621 u32 port_status, u32 err_mask)
622{
9af5c9c9 623 struct ata_eh_info *ehi = &ap->link.eh_info;
176efb05
MP
624 unsigned int ac_err_mask = 0;
625
626 ata_ehi_clear_desc(ehi);
627 ata_ehi_push_desc(ehi, "port_status 0x%08x", port_status);
628 port_status &= err_mask;
629
630 if (port_status & PDC_DRIVE_ERR)
631 ac_err_mask |= AC_ERR_DEV;
632 if (port_status & (PDC_OVERRUN_ERR | PDC_UNDERRUN_ERR))
633 ac_err_mask |= AC_ERR_HSM;
634 if (port_status & (PDC2_ATA_HBA_ERR | PDC2_ATA_DMA_CNT_ERR))
635 ac_err_mask |= AC_ERR_ATA_BUS;
636 if (port_status & (PDC_PH_ERR | PDC_SH_ERR | PDC_DH_ERR | PDC2_HTO_ERR
637 | PDC_PCI_SYS_ERR | PDC1_PCI_PARITY_ERR))
638 ac_err_mask |= AC_ERR_HOST_BUS;
639
936fd732 640 if (sata_scr_valid(&ap->link)) {
da3dbb17
TH
641 u32 serror;
642
643 pdc_sata_scr_read(ap, SCR_ERROR, &serror);
644 ehi->serror |= serror;
645 }
ce2d3abc 646
176efb05 647 qc->err_mask |= ac_err_mask;
ce2d3abc
MP
648
649 pdc_reset_port(ap);
8ffcfd9d
MP
650
651 ata_port_abort(ap);
176efb05
MP
652}
653
d0e58031
MP
654static inline unsigned int pdc_host_intr(struct ata_port *ap,
655 struct ata_queued_cmd *qc)
1da177e4 656{
a22e2eb0 657 unsigned int handled = 0;
176efb05 658 void __iomem *port_mmio = ap->ioaddr.cmd_addr;
176efb05
MP
659 u32 port_status, err_mask;
660
661 err_mask = PDC_ERR_MASK;
eca25dca 662 if (ap->flags & PDC_FLAG_GEN_II)
176efb05
MP
663 err_mask &= ~PDC1_ERR_MASK;
664 else
665 err_mask &= ~PDC2_ERR_MASK;
666 port_status = readl(port_mmio + PDC_GLOBAL_CTL);
667 if (unlikely(port_status & err_mask)) {
668 pdc_error_intr(ap, qc, port_status, err_mask);
669 return 1;
1da177e4
LT
670 }
671
672 switch (qc->tf.protocol) {
673 case ATA_PROT_DMA:
674 case ATA_PROT_NODATA:
95006188 675 case ATA_PROT_ATAPI_DMA:
fba6edbd 676 case ATA_PROT_ATAPI_NODATA:
a22e2eb0
AL
677 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
678 ata_qc_complete(qc);
1da177e4
LT
679 handled = 1;
680 break;
681
d0e58031 682 default:
ee500aab
AL
683 ap->stats.idle_irq++;
684 break;
d0e58031 685 }
1da177e4 686
ee500aab 687 return handled;
1da177e4
LT
688}
689
690static void pdc_irq_clear(struct ata_port *ap)
691{
cca3974e 692 struct ata_host *host = ap->host;
0d5ff566 693 void __iomem *mmio = host->iomap[PDC_MMIO_BAR];
1da177e4
LT
694
695 readl(mmio + PDC_INT_SEQMASK);
696}
697
d0e58031
MP
698static inline int pdc_is_sataii_tx4(unsigned long flags)
699{
700 const unsigned long mask = PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS;
701 return (flags & mask) == mask;
702}
703
704static inline unsigned int pdc_port_no_to_ata_no(unsigned int port_no, int is_sataii_tx4)
705{
706 static const unsigned char sataii_tx4_port_remap[4] = { 3, 1, 0, 2};
707 return is_sataii_tx4 ? sataii_tx4_port_remap[port_no] : port_no;
708}
709
7d12e780 710static irqreturn_t pdc_interrupt (int irq, void *dev_instance)
1da177e4 711{
cca3974e 712 struct ata_host *host = dev_instance;
1da177e4
LT
713 struct ata_port *ap;
714 u32 mask = 0;
715 unsigned int i, tmp;
716 unsigned int handled = 0;
ea6ba10b 717 void __iomem *mmio_base;
a77720ad
MP
718 unsigned int hotplug_offset, ata_no;
719 u32 hotplug_status;
720 int is_sataii_tx4;
1da177e4
LT
721
722 VPRINTK("ENTER\n");
723
0d5ff566 724 if (!host || !host->iomap[PDC_MMIO_BAR]) {
1da177e4
LT
725 VPRINTK("QUICK EXIT\n");
726 return IRQ_NONE;
727 }
728
0d5ff566 729 mmio_base = host->iomap[PDC_MMIO_BAR];
1da177e4 730
a77720ad
MP
731 /* read and clear hotplug flags for all ports */
732 if (host->ports[0]->flags & PDC_FLAG_GEN_II)
733 hotplug_offset = PDC2_SATA_PLUG_CSR;
734 else
735 hotplug_offset = PDC_SATA_PLUG_CSR;
736 hotplug_status = readl(mmio_base + hotplug_offset);
737 if (hotplug_status & 0xff)
738 writel(hotplug_status | 0xff, mmio_base + hotplug_offset);
739 hotplug_status &= 0xff; /* clear uninteresting bits */
740
1da177e4
LT
741 /* reading should also clear interrupts */
742 mask = readl(mmio_base + PDC_INT_SEQMASK);
743
a77720ad 744 if (mask == 0xffffffff && hotplug_status == 0) {
1da177e4
LT
745 VPRINTK("QUICK EXIT 2\n");
746 return IRQ_NONE;
747 }
6340f019 748
cca3974e 749 spin_lock(&host->lock);
6340f019 750
1da177e4 751 mask &= 0xffff; /* only 16 tags possible */
a77720ad 752 if (mask == 0 && hotplug_status == 0) {
1da177e4 753 VPRINTK("QUICK EXIT 3\n");
6340f019 754 goto done_irq;
1da177e4
LT
755 }
756
1da177e4
LT
757 writel(mask, mmio_base + PDC_INT_SEQMASK);
758
a77720ad
MP
759 is_sataii_tx4 = pdc_is_sataii_tx4(host->ports[0]->flags);
760
cca3974e 761 for (i = 0; i < host->n_ports; i++) {
1da177e4 762 VPRINTK("port %u\n", i);
cca3974e 763 ap = host->ports[i];
a77720ad
MP
764
765 /* check for a plug or unplug event */
766 ata_no = pdc_port_no_to_ata_no(i, is_sataii_tx4);
767 tmp = hotplug_status & (0x11 << ata_no);
768 if (tmp && ap &&
769 !(ap->flags & ATA_FLAG_DISABLED)) {
9af5c9c9 770 struct ata_eh_info *ehi = &ap->link.eh_info;
a77720ad
MP
771 ata_ehi_clear_desc(ehi);
772 ata_ehi_hotplugged(ehi);
773 ata_ehi_push_desc(ehi, "hotplug_status %#x", tmp);
774 ata_port_freeze(ap);
775 ++handled;
776 continue;
777 }
778
779 /* check for a packet interrupt */
1da177e4 780 tmp = mask & (1 << (i + 1));
c1389503 781 if (tmp && ap &&
029f5468 782 !(ap->flags & ATA_FLAG_DISABLED)) {
1da177e4
LT
783 struct ata_queued_cmd *qc;
784
9af5c9c9 785 qc = ata_qc_from_tag(ap, ap->link.active_tag);
e50362ec 786 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
1da177e4
LT
787 handled += pdc_host_intr(ap, qc);
788 }
789 }
790
1da177e4
LT
791 VPRINTK("EXIT\n");
792
6340f019 793done_irq:
cca3974e 794 spin_unlock(&host->lock);
1da177e4
LT
795 return IRQ_RETVAL(handled);
796}
797
798static inline void pdc_packet_start(struct ata_queued_cmd *qc)
799{
800 struct ata_port *ap = qc->ap;
801 struct pdc_port_priv *pp = ap->private_data;
0d5ff566 802 void __iomem *mmio = ap->host->iomap[PDC_MMIO_BAR];
1da177e4
LT
803 unsigned int port_no = ap->port_no;
804 u8 seq = (u8) (port_no + 1);
805
806 VPRINTK("ENTER, ap %p\n", ap);
807
0d5ff566
TH
808 writel(0x00000001, mmio + (seq * 4));
809 readl(mmio + (seq * 4)); /* flush */
1da177e4
LT
810
811 pp->pkt[2] = seq;
812 wmb(); /* flush PRD, pkt writes */
0d5ff566
TH
813 writel(pp->pkt_dma, ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
814 readl(ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
1da177e4
LT
815}
816
9a3d9eb0 817static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
1da177e4
LT
818{
819 switch (qc->tf.protocol) {
fba6edbd
MP
820 case ATA_PROT_ATAPI_NODATA:
821 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
822 break;
823 /*FALLTHROUGH*/
51b94d2a
TH
824 case ATA_PROT_NODATA:
825 if (qc->tf.flags & ATA_TFLAG_POLLING)
826 break;
827 /*FALLTHROUGH*/
95006188 828 case ATA_PROT_ATAPI_DMA:
1da177e4 829 case ATA_PROT_DMA:
1da177e4
LT
830 pdc_packet_start(qc);
831 return 0;
832
1da177e4
LT
833 default:
834 break;
835 }
836
837 return ata_qc_issue_prot(qc);
838}
839
057ace5e 840static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
1da177e4
LT
841{
842 WARN_ON (tf->protocol == ATA_PROT_DMA ||
51b94d2a 843 tf->protocol == ATA_PROT_ATAPI_DMA);
1da177e4
LT
844 ata_tf_load(ap, tf);
845}
846
057ace5e 847static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
1da177e4
LT
848{
849 WARN_ON (tf->protocol == ATA_PROT_DMA ||
51b94d2a 850 tf->protocol == ATA_PROT_ATAPI_DMA);
1da177e4
LT
851 ata_exec_command(ap, tf);
852}
853
95006188
MP
854static int pdc_check_atapi_dma(struct ata_queued_cmd *qc)
855{
856 u8 *scsicmd = qc->scsicmd->cmnd;
857 int pio = 1; /* atapi dma off by default */
858
859 /* Whitelist commands that may use DMA. */
860 switch (scsicmd[0]) {
861 case WRITE_12:
862 case WRITE_10:
863 case WRITE_6:
864 case READ_12:
865 case READ_10:
866 case READ_6:
867 case 0xad: /* READ_DVD_STRUCTURE */
868 case 0xbe: /* READ_CD */
869 pio = 0;
870 }
871 /* -45150 (FFFF4FA2) to -1 (FFFFFFFF) shall use PIO mode */
872 if (scsicmd[0] == WRITE_10) {
873 unsigned int lba;
874 lba = (scsicmd[2] << 24) | (scsicmd[3] << 16) | (scsicmd[4] << 8) | scsicmd[5];
875 if (lba >= 0xFFFF4FA2)
876 pio = 1;
877 }
878 return pio;
879}
880
724114a5 881static int pdc_old_sata_check_atapi_dma(struct ata_queued_cmd *qc)
95006188 882{
95006188 883 /* First generation chips cannot use ATAPI DMA on SATA ports */
724114a5 884 return 1;
95006188 885}
1da177e4 886
eca25dca
TH
887static void pdc_ata_setup_port(struct ata_port *ap,
888 void __iomem *base, void __iomem *scr_addr)
1da177e4 889{
eca25dca
TH
890 ap->ioaddr.cmd_addr = base;
891 ap->ioaddr.data_addr = base;
892 ap->ioaddr.feature_addr =
893 ap->ioaddr.error_addr = base + 0x4;
894 ap->ioaddr.nsect_addr = base + 0x8;
895 ap->ioaddr.lbal_addr = base + 0xc;
896 ap->ioaddr.lbam_addr = base + 0x10;
897 ap->ioaddr.lbah_addr = base + 0x14;
898 ap->ioaddr.device_addr = base + 0x18;
899 ap->ioaddr.command_addr =
900 ap->ioaddr.status_addr = base + 0x1c;
901 ap->ioaddr.altstatus_addr =
902 ap->ioaddr.ctl_addr = base + 0x38;
903 ap->ioaddr.scr_addr = scr_addr;
1da177e4
LT
904}
905
eca25dca 906static void pdc_host_init(struct ata_host *host)
1da177e4 907{
eca25dca
TH
908 void __iomem *mmio = host->iomap[PDC_MMIO_BAR];
909 int is_gen2 = host->ports[0]->flags & PDC_FLAG_GEN_II;
d324d462 910 int hotplug_offset;
1da177e4
LT
911 u32 tmp;
912
eca25dca 913 if (is_gen2)
d324d462
MP
914 hotplug_offset = PDC2_SATA_PLUG_CSR;
915 else
916 hotplug_offset = PDC_SATA_PLUG_CSR;
917
1da177e4
LT
918 /*
919 * Except for the hotplug stuff, this is voodoo from the
920 * Promise driver. Label this entire section
921 * "TODO: figure out why we do this"
922 */
923
b2d1eee1 924 /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
1da177e4 925 tmp = readl(mmio + PDC_FLASH_CTL);
b2d1eee1 926 tmp |= 0x02000; /* bit 13 (enable bmr burst) */
eca25dca 927 if (!is_gen2)
b2d1eee1 928 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
1da177e4
LT
929 writel(tmp, mmio + PDC_FLASH_CTL);
930
931 /* clear plug/unplug flags for all ports */
6340f019
LK
932 tmp = readl(mmio + hotplug_offset);
933 writel(tmp | 0xff, mmio + hotplug_offset);
1da177e4 934
a77720ad 935 /* unmask plug/unplug ints */
6340f019 936 tmp = readl(mmio + hotplug_offset);
a77720ad 937 writel(tmp & ~0xff0000, mmio + hotplug_offset);
1da177e4 938
b2d1eee1 939 /* don't initialise TBG or SLEW on 2nd generation chips */
eca25dca 940 if (is_gen2)
b2d1eee1
MP
941 return;
942
1da177e4
LT
943 /* reduce TBG clock to 133 Mhz. */
944 tmp = readl(mmio + PDC_TBG_MODE);
945 tmp &= ~0x30000; /* clear bit 17, 16*/
946 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
947 writel(tmp, mmio + PDC_TBG_MODE);
948
949 readl(mmio + PDC_TBG_MODE); /* flush */
950 msleep(10);
951
952 /* adjust slew rate control register. */
953 tmp = readl(mmio + PDC_SLEW_CTL);
954 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
955 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
956 writel(tmp, mmio + PDC_SLEW_CTL);
957}
958
959static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
960{
961 static int printed_version;
eca25dca
TH
962 const struct ata_port_info *pi = &pdc_port_info[ent->driver_data];
963 const struct ata_port_info *ppi[PDC_MAX_PORTS];
964 struct ata_host *host;
0d5ff566 965 void __iomem *base;
eca25dca 966 int n_ports, i, rc;
5ac2fe57 967 int is_sataii_tx4;
1da177e4
LT
968
969 if (!printed_version++)
a9524a76 970 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
1da177e4 971
eca25dca 972 /* enable and acquire resources */
24dc5f33 973 rc = pcim_enable_device(pdev);
1da177e4
LT
974 if (rc)
975 return rc;
976
0d5ff566
TH
977 rc = pcim_iomap_regions(pdev, 1 << PDC_MMIO_BAR, DRV_NAME);
978 if (rc == -EBUSY)
24dc5f33 979 pcim_pin_device(pdev);
0d5ff566 980 if (rc)
24dc5f33 981 return rc;
eca25dca 982 base = pcim_iomap_table(pdev)[PDC_MMIO_BAR];
1da177e4 983
eca25dca
TH
984 /* determine port configuration and setup host */
985 n_ports = 2;
986 if (pi->flags & PDC_FLAG_4_PORTS)
987 n_ports = 4;
988 for (i = 0; i < n_ports; i++)
989 ppi[i] = pi;
1da177e4 990
eca25dca
TH
991 if (pi->flags & PDC_FLAG_SATA_PATA) {
992 u8 tmp = readb(base + PDC_FLASH_CTL+1);
d0e58031 993 if (!(tmp & 0x80))
eca25dca 994 ppi[n_ports++] = pi + 1;
eca25dca 995 }
1da177e4 996
eca25dca
TH
997 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
998 if (!host) {
999 dev_printk(KERN_ERR, &pdev->dev, "failed to allocate host\n");
24dc5f33 1000 return -ENOMEM;
1da177e4 1001 }
eca25dca 1002 host->iomap = pcim_iomap_table(pdev);
1da177e4 1003
d0e58031 1004 is_sataii_tx4 = pdc_is_sataii_tx4(pi->flags);
5ac2fe57 1005 for (i = 0; i < host->n_ports; i++) {
cbcdd875 1006 struct ata_port *ap = host->ports[i];
d0e58031 1007 unsigned int ata_no = pdc_port_no_to_ata_no(i, is_sataii_tx4);
cbcdd875
TH
1008 unsigned int port_offset = 0x200 + ata_no * 0x80;
1009 unsigned int scr_offset = 0x400 + ata_no * 0x100;
1010
1011 pdc_ata_setup_port(ap, base + port_offset, base + scr_offset);
1012
1013 ata_port_pbar_desc(ap, PDC_MMIO_BAR, -1, "mmio");
1014 ata_port_pbar_desc(ap, PDC_MMIO_BAR, port_offset, "port");
5ac2fe57 1015 }
1da177e4
LT
1016
1017 /* initialize adapter */
eca25dca 1018 pdc_host_init(host);
1da177e4 1019
eca25dca
TH
1020 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
1021 if (rc)
1022 return rc;
1023 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
1024 if (rc)
1025 return rc;
1da177e4 1026
eca25dca
TH
1027 /* start host, request IRQ and attach */
1028 pci_set_master(pdev);
1029 return ata_host_activate(host, pdev->irq, pdc_interrupt, IRQF_SHARED,
1030 &pdc_ata_sht);
1da177e4
LT
1031}
1032
1da177e4
LT
1033static int __init pdc_ata_init(void)
1034{
b7887196 1035 return pci_register_driver(&pdc_ata_pci_driver);
1da177e4
LT
1036}
1037
1da177e4
LT
1038static void __exit pdc_ata_exit(void)
1039{
1040 pci_unregister_driver(&pdc_ata_pci_driver);
1041}
1042
1da177e4 1043MODULE_AUTHOR("Jeff Garzik");
f497ba73 1044MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
1da177e4
LT
1045MODULE_LICENSE("GPL");
1046MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
1047MODULE_VERSION(DRV_VERSION);
1048
1049module_init(pdc_ata_init);
1050module_exit(pdc_ata_exit);
This page took 0.4854 seconds and 5 git commands to generate.