Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * sata_promise.c - Promise SATA | |
3 | * | |
8c3d3d4b | 4 | * Maintained by: Tejun Heo <tj@kernel.org> |
743a7ecb | 5 | * Mikael Pettersson |
1da177e4 LT |
6 | * Please ALWAYS copy linux-ide@vger.kernel.org |
7 | * on emails. | |
8 | * | |
9 | * Copyright 2003-2004 Red Hat, Inc. | |
10 | * | |
1da177e4 | 11 | * |
af36d7f0 JG |
12 | * This program is free software; you can redistribute it and/or modify |
13 | * it under the terms of the GNU General Public License as published by | |
14 | * the Free Software Foundation; either version 2, or (at your option) | |
15 | * any later version. | |
16 | * | |
17 | * This program is distributed in the hope that it will be useful, | |
18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 | * GNU General Public License for more details. | |
21 | * | |
22 | * You should have received a copy of the GNU General Public License | |
23 | * along with this program; see the file COPYING. If not, write to | |
24 | * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
25 | * | |
26 | * | |
27 | * libata documentation is available via 'make {ps|pdf}docs', | |
28 | * as Documentation/DocBook/libata.* | |
29 | * | |
30 | * Hardware information only available under NDA. | |
1da177e4 LT |
31 | * |
32 | */ | |
33 | ||
34 | #include <linux/kernel.h> | |
35 | #include <linux/module.h> | |
5a0e3ad6 | 36 | #include <linux/gfp.h> |
1da177e4 | 37 | #include <linux/pci.h> |
1da177e4 LT |
38 | #include <linux/blkdev.h> |
39 | #include <linux/delay.h> | |
40 | #include <linux/interrupt.h> | |
a9524a76 | 41 | #include <linux/device.h> |
95006188 | 42 | #include <scsi/scsi.h> |
1da177e4 | 43 | #include <scsi/scsi_host.h> |
193515d5 | 44 | #include <scsi/scsi_cmnd.h> |
1da177e4 | 45 | #include <linux/libata.h> |
1da177e4 LT |
46 | #include "sata_promise.h" |
47 | ||
48 | #define DRV_NAME "sata_promise" | |
c07a9c49 | 49 | #define DRV_VERSION "2.12" |
1da177e4 LT |
50 | |
51 | enum { | |
eca25dca | 52 | PDC_MAX_PORTS = 4, |
0d5ff566 | 53 | PDC_MMIO_BAR = 3, |
b9ccd4a9 | 54 | PDC_MAX_PRD = LIBATA_MAX_PRD - 1, /* -1 for ASIC PRD bug workaround */ |
0d5ff566 | 55 | |
821d22cd MP |
56 | /* host register offsets (from host->iomap[PDC_MMIO_BAR]) */ |
57 | PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */ | |
58 | PDC_FLASH_CTL = 0x44, /* Flash control register */ | |
ff7cddf5 | 59 | PDC_PCI_CTL = 0x48, /* PCI control/status reg */ |
821d22cd MP |
60 | PDC_SATA_PLUG_CSR = 0x6C, /* SATA Plug control/status reg */ |
61 | PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */ | |
62 | PDC_TBG_MODE = 0x41C, /* TBG mode (not SATAII) */ | |
63 | PDC_SLEW_CTL = 0x470, /* slew rate control reg (not SATAII) */ | |
64 | ||
65 | /* per-port ATA register offsets (from ap->ioaddr.cmd_addr) */ | |
95006188 MP |
66 | PDC_FEATURE = 0x04, /* Feature/Error reg (per port) */ |
67 | PDC_SECTOR_COUNT = 0x08, /* Sector count reg (per port) */ | |
68 | PDC_SECTOR_NUMBER = 0x0C, /* Sector number reg (per port) */ | |
69 | PDC_CYLINDER_LOW = 0x10, /* Cylinder low reg (per port) */ | |
70 | PDC_CYLINDER_HIGH = 0x14, /* Cylinder high reg (per port) */ | |
71 | PDC_DEVICE = 0x18, /* Device/Head reg (per port) */ | |
72 | PDC_COMMAND = 0x1C, /* Command/status reg (per port) */ | |
73fd456b | 73 | PDC_ALTSTATUS = 0x38, /* Alternate-status/device-control reg (per port) */ |
1da177e4 | 74 | PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */ |
1da177e4 LT |
75 | PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */ |
76 | PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */ | |
821d22cd MP |
77 | |
78 | /* per-port SATA register offsets (from ap->ioaddr.scr_addr) */ | |
ff7cddf5 | 79 | PDC_SATA_ERROR = 0x04, |
821d22cd | 80 | PDC_PHYMODE4 = 0x14, |
ff7cddf5 MP |
81 | PDC_LINK_LAYER_ERRORS = 0x6C, |
82 | PDC_FPDMA_CTLSTAT = 0xD8, | |
83 | PDC_INTERNAL_DEBUG_1 = 0xF8, /* also used for PATA */ | |
84 | PDC_INTERNAL_DEBUG_2 = 0xFC, /* also used for PATA */ | |
85 | ||
86 | /* PDC_FPDMA_CTLSTAT bit definitions */ | |
87 | PDC_FPDMA_CTLSTAT_RESET = 1 << 3, | |
88 | PDC_FPDMA_CTLSTAT_DMASETUP_INT_FLAG = 1 << 10, | |
89 | PDC_FPDMA_CTLSTAT_SETDB_INT_FLAG = 1 << 11, | |
1da177e4 | 90 | |
176efb05 MP |
91 | /* PDC_GLOBAL_CTL bit definitions */ |
92 | PDC_PH_ERR = (1 << 8), /* PCI error while loading packet */ | |
93 | PDC_SH_ERR = (1 << 9), /* PCI error while loading S/G table */ | |
94 | PDC_DH_ERR = (1 << 10), /* PCI error while loading data */ | |
95 | PDC2_HTO_ERR = (1 << 12), /* host bus timeout */ | |
96 | PDC2_ATA_HBA_ERR = (1 << 13), /* error during SATA DATA FIS transmission */ | |
97 | PDC2_ATA_DMA_CNT_ERR = (1 << 14), /* DMA DATA FIS size differs from S/G count */ | |
98 | PDC_OVERRUN_ERR = (1 << 19), /* S/G byte count larger than HD requires */ | |
99 | PDC_UNDERRUN_ERR = (1 << 20), /* S/G byte count less than HD requires */ | |
100 | PDC_DRIVE_ERR = (1 << 21), /* drive error */ | |
101 | PDC_PCI_SYS_ERR = (1 << 22), /* PCI system error */ | |
102 | PDC1_PCI_PARITY_ERR = (1 << 23), /* PCI parity error (from SATA150 driver) */ | |
103 | PDC1_ERR_MASK = PDC1_PCI_PARITY_ERR, | |
5796d1c4 JG |
104 | PDC2_ERR_MASK = PDC2_HTO_ERR | PDC2_ATA_HBA_ERR | |
105 | PDC2_ATA_DMA_CNT_ERR, | |
106 | PDC_ERR_MASK = PDC_PH_ERR | PDC_SH_ERR | PDC_DH_ERR | | |
107 | PDC_OVERRUN_ERR | PDC_UNDERRUN_ERR | | |
108 | PDC_DRIVE_ERR | PDC_PCI_SYS_ERR | | |
109 | PDC1_ERR_MASK | PDC2_ERR_MASK, | |
1da177e4 LT |
110 | |
111 | board_2037x = 0, /* FastTrak S150 TX2plus */ | |
eca25dca TH |
112 | board_2037x_pata = 1, /* FastTrak S150 TX2plus PATA port */ |
113 | board_20319 = 2, /* FastTrak S150 TX4 */ | |
114 | board_20619 = 3, /* FastTrak TX4000 */ | |
115 | board_2057x = 4, /* SATAII150 Tx2plus */ | |
d0e58031 | 116 | board_2057x_pata = 5, /* SATAII150 Tx2plus PATA port */ |
eca25dca | 117 | board_40518 = 6, /* SATAII150 Tx4 */ |
1da177e4 | 118 | |
6340f019 | 119 | PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */ |
1da177e4 | 120 | |
95006188 MP |
121 | /* Sequence counter control registers bit definitions */ |
122 | PDC_SEQCNTRL_INT_MASK = (1 << 5), /* Sequence Interrupt Mask */ | |
123 | ||
124 | /* Feature register values */ | |
125 | PDC_FEATURE_ATAPI_PIO = 0x00, /* ATAPI data xfer by PIO */ | |
126 | PDC_FEATURE_ATAPI_DMA = 0x01, /* ATAPI data xfer by DMA */ | |
127 | ||
128 | /* Device/Head register values */ | |
129 | PDC_DEVICE_SATA = 0xE0, /* Device/Head value for SATA devices */ | |
130 | ||
25b93d81 MP |
131 | /* PDC_CTLSTAT bit definitions */ |
132 | PDC_DMA_ENABLE = (1 << 7), | |
133 | PDC_IRQ_DISABLE = (1 << 10), | |
1da177e4 | 134 | PDC_RESET = (1 << 11), /* HDMA reset */ |
50630195 | 135 | |
9cbe056f | 136 | PDC_COMMON_FLAGS = ATA_FLAG_PIO_POLLING, |
b2d1eee1 | 137 | |
eca25dca TH |
138 | /* ap->flags bits */ |
139 | PDC_FLAG_GEN_II = (1 << 24), | |
140 | PDC_FLAG_SATA_PATA = (1 << 25), /* supports SATA + PATA */ | |
141 | PDC_FLAG_4_PORTS = (1 << 26), /* 4 ports */ | |
1da177e4 LT |
142 | }; |
143 | ||
1da177e4 LT |
144 | struct pdc_port_priv { |
145 | u8 *pkt; | |
146 | dma_addr_t pkt_dma; | |
147 | }; | |
148 | ||
3100d49d MP |
149 | struct pdc_host_priv { |
150 | spinlock_t hard_reset_lock; | |
151 | }; | |
152 | ||
82ef04fb TH |
153 | static int pdc_sata_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val); |
154 | static int pdc_sata_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val); | |
7715a6f9 | 155 | static int pdc_ata_init_one(struct pci_dev *pdev, const struct pci_device_id *ent); |
eca25dca TH |
156 | static int pdc_common_port_start(struct ata_port *ap); |
157 | static int pdc_sata_port_start(struct ata_port *ap); | |
1da177e4 | 158 | static void pdc_qc_prep(struct ata_queued_cmd *qc); |
057ace5e JG |
159 | static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf); |
160 | static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf); | |
95006188 | 161 | static int pdc_check_atapi_dma(struct ata_queued_cmd *qc); |
724114a5 | 162 | static int pdc_old_sata_check_atapi_dma(struct ata_queued_cmd *qc); |
1da177e4 | 163 | static void pdc_irq_clear(struct ata_port *ap); |
9363c382 | 164 | static unsigned int pdc_qc_issue(struct ata_queued_cmd *qc); |
25b93d81 | 165 | static void pdc_freeze(struct ata_port *ap); |
c07a9c49 | 166 | static void pdc_sata_freeze(struct ata_port *ap); |
25b93d81 | 167 | static void pdc_thaw(struct ata_port *ap); |
c07a9c49 | 168 | static void pdc_sata_thaw(struct ata_port *ap); |
cadef677 MP |
169 | static int pdc_pata_softreset(struct ata_link *link, unsigned int *class, |
170 | unsigned long deadline); | |
171 | static int pdc_sata_hardreset(struct ata_link *link, unsigned int *class, | |
172 | unsigned long deadline); | |
a1efdaba | 173 | static void pdc_error_handler(struct ata_port *ap); |
25b93d81 | 174 | static void pdc_post_internal_cmd(struct ata_queued_cmd *qc); |
724114a5 MP |
175 | static int pdc_pata_cable_detect(struct ata_port *ap); |
176 | static int pdc_sata_cable_detect(struct ata_port *ap); | |
374b1873 | 177 | |
193515d5 | 178 | static struct scsi_host_template pdc_ata_sht = { |
68d1d07b | 179 | ATA_BASE_SHT(DRV_NAME), |
b9ccd4a9 | 180 | .sg_tablesize = PDC_MAX_PRD, |
1da177e4 | 181 | .dma_boundary = ATA_DMA_BOUNDARY, |
1da177e4 LT |
182 | }; |
183 | ||
029cfd6b TH |
184 | static const struct ata_port_operations pdc_common_ops = { |
185 | .inherits = &ata_sff_port_ops, | |
186 | ||
5682ed33 TH |
187 | .sff_tf_load = pdc_tf_load_mmio, |
188 | .sff_exec_command = pdc_exec_command_mmio, | |
95006188 | 189 | .check_atapi_dma = pdc_check_atapi_dma, |
95006188 | 190 | .qc_prep = pdc_qc_prep, |
9363c382 | 191 | .qc_issue = pdc_qc_issue, |
c96f1732 | 192 | |
5682ed33 | 193 | .sff_irq_clear = pdc_irq_clear, |
c96f1732 | 194 | .lost_interrupt = ATA_OP_NULL, |
95006188 | 195 | |
029cfd6b | 196 | .post_internal_cmd = pdc_post_internal_cmd, |
a1efdaba | 197 | .error_handler = pdc_error_handler, |
95006188 MP |
198 | }; |
199 | ||
029cfd6b TH |
200 | static struct ata_port_operations pdc_sata_ops = { |
201 | .inherits = &pdc_common_ops, | |
202 | .cable_detect = pdc_sata_cable_detect, | |
c07a9c49 MP |
203 | .freeze = pdc_sata_freeze, |
204 | .thaw = pdc_sata_thaw, | |
1da177e4 LT |
205 | .scr_read = pdc_sata_scr_read, |
206 | .scr_write = pdc_sata_scr_write, | |
eca25dca | 207 | .port_start = pdc_sata_port_start, |
cadef677 | 208 | .hardreset = pdc_sata_hardreset, |
1da177e4 LT |
209 | }; |
210 | ||
0ae6654d MP |
211 | /* First-generation chips need a more restrictive ->check_atapi_dma op, |
212 | and ->freeze/thaw that ignore the hotplug controls. */ | |
029cfd6b TH |
213 | static struct ata_port_operations pdc_old_sata_ops = { |
214 | .inherits = &pdc_sata_ops, | |
0ae6654d MP |
215 | .freeze = pdc_freeze, |
216 | .thaw = pdc_thaw, | |
029cfd6b TH |
217 | .check_atapi_dma = pdc_old_sata_check_atapi_dma, |
218 | }; | |
2cba582a | 219 | |
029cfd6b TH |
220 | static struct ata_port_operations pdc_pata_ops = { |
221 | .inherits = &pdc_common_ops, | |
222 | .cable_detect = pdc_pata_cable_detect, | |
5387373b MP |
223 | .freeze = pdc_freeze, |
224 | .thaw = pdc_thaw, | |
eca25dca | 225 | .port_start = pdc_common_port_start, |
cadef677 | 226 | .softreset = pdc_pata_softreset, |
2cba582a JG |
227 | }; |
228 | ||
98ac62de | 229 | static const struct ata_port_info pdc_port_info[] = { |
5595ddf9 | 230 | [board_2037x] = |
1da177e4 | 231 | { |
eca25dca TH |
232 | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA | |
233 | PDC_FLAG_SATA_PATA, | |
14bdef98 EIB |
234 | .pio_mask = ATA_PIO4, |
235 | .mwdma_mask = ATA_MWDMA2, | |
469248ab | 236 | .udma_mask = ATA_UDMA6, |
95006188 | 237 | .port_ops = &pdc_old_sata_ops, |
1da177e4 LT |
238 | }, |
239 | ||
5595ddf9 | 240 | [board_2037x_pata] = |
eca25dca TH |
241 | { |
242 | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS, | |
14bdef98 EIB |
243 | .pio_mask = ATA_PIO4, |
244 | .mwdma_mask = ATA_MWDMA2, | |
469248ab | 245 | .udma_mask = ATA_UDMA6, |
eca25dca TH |
246 | .port_ops = &pdc_pata_ops, |
247 | }, | |
248 | ||
5595ddf9 | 249 | [board_20319] = |
1da177e4 | 250 | { |
eca25dca TH |
251 | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA | |
252 | PDC_FLAG_4_PORTS, | |
14bdef98 EIB |
253 | .pio_mask = ATA_PIO4, |
254 | .mwdma_mask = ATA_MWDMA2, | |
469248ab | 255 | .udma_mask = ATA_UDMA6, |
95006188 | 256 | .port_ops = &pdc_old_sata_ops, |
1da177e4 | 257 | }, |
f497ba73 | 258 | |
5595ddf9 | 259 | [board_20619] = |
f497ba73 | 260 | { |
eca25dca TH |
261 | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS | |
262 | PDC_FLAG_4_PORTS, | |
14bdef98 EIB |
263 | .pio_mask = ATA_PIO4, |
264 | .mwdma_mask = ATA_MWDMA2, | |
469248ab | 265 | .udma_mask = ATA_UDMA6, |
2cba582a | 266 | .port_ops = &pdc_pata_ops, |
f497ba73 | 267 | }, |
5a46fe89 | 268 | |
5595ddf9 | 269 | [board_2057x] = |
6340f019 | 270 | { |
eca25dca TH |
271 | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA | |
272 | PDC_FLAG_GEN_II | PDC_FLAG_SATA_PATA, | |
14bdef98 EIB |
273 | .pio_mask = ATA_PIO4, |
274 | .mwdma_mask = ATA_MWDMA2, | |
469248ab | 275 | .udma_mask = ATA_UDMA6, |
6340f019 LK |
276 | .port_ops = &pdc_sata_ops, |
277 | }, | |
278 | ||
5595ddf9 | 279 | [board_2057x_pata] = |
eca25dca | 280 | { |
bb312235 | 281 | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS | |
eca25dca | 282 | PDC_FLAG_GEN_II, |
14bdef98 EIB |
283 | .pio_mask = ATA_PIO4, |
284 | .mwdma_mask = ATA_MWDMA2, | |
469248ab | 285 | .udma_mask = ATA_UDMA6, |
eca25dca TH |
286 | .port_ops = &pdc_pata_ops, |
287 | }, | |
288 | ||
5595ddf9 | 289 | [board_40518] = |
6340f019 | 290 | { |
eca25dca TH |
291 | .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA | |
292 | PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS, | |
14bdef98 EIB |
293 | .pio_mask = ATA_PIO4, |
294 | .mwdma_mask = ATA_MWDMA2, | |
469248ab | 295 | .udma_mask = ATA_UDMA6, |
6340f019 LK |
296 | .port_ops = &pdc_sata_ops, |
297 | }, | |
1da177e4 LT |
298 | }; |
299 | ||
3b7d697d | 300 | static const struct pci_device_id pdc_ata_pci_tbl[] = { |
54bb3a94 | 301 | { PCI_VDEVICE(PROMISE, 0x3371), board_2037x }, |
54bb3a94 JG |
302 | { PCI_VDEVICE(PROMISE, 0x3373), board_2037x }, |
303 | { PCI_VDEVICE(PROMISE, 0x3375), board_2037x }, | |
304 | { PCI_VDEVICE(PROMISE, 0x3376), board_2037x }, | |
b2d1eee1 MP |
305 | { PCI_VDEVICE(PROMISE, 0x3570), board_2057x }, |
306 | { PCI_VDEVICE(PROMISE, 0x3571), board_2057x }, | |
54bb3a94 | 307 | { PCI_VDEVICE(PROMISE, 0x3574), board_2057x }, |
d324d462 | 308 | { PCI_VDEVICE(PROMISE, 0x3577), board_2057x }, |
b2d1eee1 | 309 | { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x }, |
54bb3a94 | 310 | { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x }, |
54bb3a94 JG |
311 | |
312 | { PCI_VDEVICE(PROMISE, 0x3318), board_20319 }, | |
313 | { PCI_VDEVICE(PROMISE, 0x3319), board_20319 }, | |
7f9992a2 MP |
314 | { PCI_VDEVICE(PROMISE, 0x3515), board_40518 }, |
315 | { PCI_VDEVICE(PROMISE, 0x3519), board_40518 }, | |
b2d1eee1 | 316 | { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 }, |
54bb3a94 JG |
317 | { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 }, |
318 | ||
319 | { PCI_VDEVICE(PROMISE, 0x6629), board_20619 }, | |
f497ba73 | 320 | |
1da177e4 LT |
321 | { } /* terminate list */ |
322 | }; | |
323 | ||
1da177e4 LT |
324 | static struct pci_driver pdc_ata_pci_driver = { |
325 | .name = DRV_NAME, | |
326 | .id_table = pdc_ata_pci_tbl, | |
327 | .probe = pdc_ata_init_one, | |
328 | .remove = ata_pci_remove_one, | |
329 | }; | |
330 | ||
724114a5 | 331 | static int pdc_common_port_start(struct ata_port *ap) |
1da177e4 | 332 | { |
cca3974e | 333 | struct device *dev = ap->host->dev; |
1da177e4 LT |
334 | struct pdc_port_priv *pp; |
335 | int rc; | |
336 | ||
c7087652 TH |
337 | /* we use the same prd table as bmdma, allocate it */ |
338 | rc = ata_bmdma_port_start(ap); | |
1da177e4 LT |
339 | if (rc) |
340 | return rc; | |
341 | ||
24dc5f33 TH |
342 | pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL); |
343 | if (!pp) | |
344 | return -ENOMEM; | |
1da177e4 | 345 | |
24dc5f33 TH |
346 | pp->pkt = dmam_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL); |
347 | if (!pp->pkt) | |
348 | return -ENOMEM; | |
1da177e4 LT |
349 | |
350 | ap->private_data = pp; | |
351 | ||
724114a5 MP |
352 | return 0; |
353 | } | |
354 | ||
355 | static int pdc_sata_port_start(struct ata_port *ap) | |
356 | { | |
724114a5 MP |
357 | int rc; |
358 | ||
359 | rc = pdc_common_port_start(ap); | |
360 | if (rc) | |
361 | return rc; | |
362 | ||
599b7202 | 363 | /* fix up PHYMODE4 align timing */ |
eca25dca | 364 | if (ap->flags & PDC_FLAG_GEN_II) { |
821d22cd | 365 | void __iomem *sata_mmio = ap->ioaddr.scr_addr; |
599b7202 MP |
366 | unsigned int tmp; |
367 | ||
821d22cd | 368 | tmp = readl(sata_mmio + PDC_PHYMODE4); |
599b7202 | 369 | tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */ |
821d22cd | 370 | writel(tmp, sata_mmio + PDC_PHYMODE4); |
599b7202 MP |
371 | } |
372 | ||
1da177e4 | 373 | return 0; |
1da177e4 LT |
374 | } |
375 | ||
ff7cddf5 MP |
376 | static void pdc_fpdma_clear_interrupt_flag(struct ata_port *ap) |
377 | { | |
378 | void __iomem *sata_mmio = ap->ioaddr.scr_addr; | |
379 | u32 tmp; | |
380 | ||
381 | tmp = readl(sata_mmio + PDC_FPDMA_CTLSTAT); | |
382 | tmp |= PDC_FPDMA_CTLSTAT_DMASETUP_INT_FLAG; | |
383 | tmp |= PDC_FPDMA_CTLSTAT_SETDB_INT_FLAG; | |
384 | ||
385 | /* It's not allowed to write to the entire FPDMA_CTLSTAT register | |
386 | when NCQ is running. So do a byte-sized write to bits 10 and 11. */ | |
387 | writeb(tmp >> 8, sata_mmio + PDC_FPDMA_CTLSTAT + 1); | |
388 | readb(sata_mmio + PDC_FPDMA_CTLSTAT + 1); /* flush */ | |
389 | } | |
390 | ||
391 | static void pdc_fpdma_reset(struct ata_port *ap) | |
392 | { | |
393 | void __iomem *sata_mmio = ap->ioaddr.scr_addr; | |
394 | u8 tmp; | |
395 | ||
396 | tmp = (u8)readl(sata_mmio + PDC_FPDMA_CTLSTAT); | |
397 | tmp &= 0x7F; | |
398 | tmp |= PDC_FPDMA_CTLSTAT_RESET; | |
399 | writeb(tmp, sata_mmio + PDC_FPDMA_CTLSTAT); | |
400 | readl(sata_mmio + PDC_FPDMA_CTLSTAT); /* flush */ | |
401 | udelay(100); | |
402 | tmp &= ~PDC_FPDMA_CTLSTAT_RESET; | |
403 | writeb(tmp, sata_mmio + PDC_FPDMA_CTLSTAT); | |
404 | readl(sata_mmio + PDC_FPDMA_CTLSTAT); /* flush */ | |
405 | ||
406 | pdc_fpdma_clear_interrupt_flag(ap); | |
407 | } | |
408 | ||
409 | static void pdc_not_at_command_packet_phase(struct ata_port *ap) | |
410 | { | |
411 | void __iomem *sata_mmio = ap->ioaddr.scr_addr; | |
412 | unsigned int i; | |
413 | u32 tmp; | |
414 | ||
415 | /* check not at ASIC packet command phase */ | |
416 | for (i = 0; i < 100; ++i) { | |
417 | writel(0, sata_mmio + PDC_INTERNAL_DEBUG_1); | |
418 | tmp = readl(sata_mmio + PDC_INTERNAL_DEBUG_2); | |
419 | if ((tmp & 0xF) != 1) | |
420 | break; | |
421 | udelay(100); | |
422 | } | |
423 | } | |
424 | ||
425 | static void pdc_clear_internal_debug_record_error_register(struct ata_port *ap) | |
426 | { | |
427 | void __iomem *sata_mmio = ap->ioaddr.scr_addr; | |
428 | ||
429 | writel(0xffffffff, sata_mmio + PDC_SATA_ERROR); | |
430 | writel(0xffff0000, sata_mmio + PDC_LINK_LAYER_ERRORS); | |
431 | } | |
432 | ||
1da177e4 LT |
433 | static void pdc_reset_port(struct ata_port *ap) |
434 | { | |
821d22cd | 435 | void __iomem *ata_ctlstat_mmio = ap->ioaddr.cmd_addr + PDC_CTLSTAT; |
1da177e4 LT |
436 | unsigned int i; |
437 | u32 tmp; | |
438 | ||
ff7cddf5 MP |
439 | if (ap->flags & PDC_FLAG_GEN_II) |
440 | pdc_not_at_command_packet_phase(ap); | |
441 | ||
442 | tmp = readl(ata_ctlstat_mmio); | |
443 | tmp |= PDC_RESET; | |
444 | writel(tmp, ata_ctlstat_mmio); | |
445 | ||
1da177e4 | 446 | for (i = 11; i > 0; i--) { |
821d22cd | 447 | tmp = readl(ata_ctlstat_mmio); |
1da177e4 LT |
448 | if (tmp & PDC_RESET) |
449 | break; | |
450 | ||
451 | udelay(100); | |
452 | ||
453 | tmp |= PDC_RESET; | |
821d22cd | 454 | writel(tmp, ata_ctlstat_mmio); |
1da177e4 LT |
455 | } |
456 | ||
457 | tmp &= ~PDC_RESET; | |
821d22cd MP |
458 | writel(tmp, ata_ctlstat_mmio); |
459 | readl(ata_ctlstat_mmio); /* flush */ | |
ff7cddf5 MP |
460 | |
461 | if (sata_scr_valid(&ap->link) && (ap->flags & PDC_FLAG_GEN_II)) { | |
462 | pdc_fpdma_reset(ap); | |
463 | pdc_clear_internal_debug_record_error_register(ap); | |
464 | } | |
1da177e4 LT |
465 | } |
466 | ||
724114a5 | 467 | static int pdc_pata_cable_detect(struct ata_port *ap) |
2cba582a | 468 | { |
d3fb4e8d | 469 | u8 tmp; |
821d22cd | 470 | void __iomem *ata_mmio = ap->ioaddr.cmd_addr; |
d3fb4e8d | 471 | |
821d22cd | 472 | tmp = readb(ata_mmio + PDC_CTLSTAT + 3); |
724114a5 MP |
473 | if (tmp & 0x01) |
474 | return ATA_CBL_PATA40; | |
475 | return ATA_CBL_PATA80; | |
476 | } | |
477 | ||
478 | static int pdc_sata_cable_detect(struct ata_port *ap) | |
479 | { | |
e2a9752a | 480 | return ATA_CBL_SATA; |
d3fb4e8d | 481 | } |
2cba582a | 482 | |
82ef04fb TH |
483 | static int pdc_sata_scr_read(struct ata_link *link, |
484 | unsigned int sc_reg, u32 *val) | |
1da177e4 | 485 | { |
724114a5 | 486 | if (sc_reg > SCR_CONTROL) |
da3dbb17 | 487 | return -EINVAL; |
82ef04fb | 488 | *val = readl(link->ap->ioaddr.scr_addr + (sc_reg * 4)); |
da3dbb17 | 489 | return 0; |
1da177e4 LT |
490 | } |
491 | ||
82ef04fb TH |
492 | static int pdc_sata_scr_write(struct ata_link *link, |
493 | unsigned int sc_reg, u32 val) | |
1da177e4 | 494 | { |
724114a5 | 495 | if (sc_reg > SCR_CONTROL) |
da3dbb17 | 496 | return -EINVAL; |
82ef04fb | 497 | writel(val, link->ap->ioaddr.scr_addr + (sc_reg * 4)); |
da3dbb17 | 498 | return 0; |
1da177e4 LT |
499 | } |
500 | ||
fba6edbd | 501 | static void pdc_atapi_pkt(struct ata_queued_cmd *qc) |
95006188 | 502 | { |
4113bb6b | 503 | struct ata_port *ap = qc->ap; |
f60d7011 | 504 | dma_addr_t sg_table = ap->bmdma_prd_dma; |
4113bb6b MP |
505 | unsigned int cdb_len = qc->dev->cdb_len; |
506 | u8 *cdb = qc->cdb; | |
507 | struct pdc_port_priv *pp = ap->private_data; | |
508 | u8 *buf = pp->pkt; | |
826cd156 | 509 | __le32 *buf32 = (__le32 *) buf; |
46a67143 | 510 | unsigned int dev_sel, feature; |
95006188 MP |
511 | |
512 | /* set control bits (byte 0), zero delay seq id (byte 3), | |
513 | * and seq id (byte 2) | |
514 | */ | |
fba6edbd | 515 | switch (qc->tf.protocol) { |
0dc36888 | 516 | case ATAPI_PROT_DMA: |
fba6edbd MP |
517 | if (!(qc->tf.flags & ATA_TFLAG_WRITE)) |
518 | buf32[0] = cpu_to_le32(PDC_PKT_READ); | |
519 | else | |
520 | buf32[0] = 0; | |
521 | break; | |
0dc36888 | 522 | case ATAPI_PROT_NODATA: |
fba6edbd MP |
523 | buf32[0] = cpu_to_le32(PDC_PKT_NODATA); |
524 | break; | |
525 | default: | |
526 | BUG(); | |
527 | break; | |
528 | } | |
95006188 MP |
529 | buf32[1] = cpu_to_le32(sg_table); /* S/G table addr */ |
530 | buf32[2] = 0; /* no next-packet */ | |
531 | ||
4113bb6b | 532 | /* select drive */ |
46a67143 | 533 | if (sata_scr_valid(&ap->link)) |
4113bb6b | 534 | dev_sel = PDC_DEVICE_SATA; |
46a67143 TH |
535 | else |
536 | dev_sel = qc->tf.device; | |
537 | ||
4113bb6b MP |
538 | buf[12] = (1 << 5) | ATA_REG_DEVICE; |
539 | buf[13] = dev_sel; | |
540 | buf[14] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_CLEAR_BSY; | |
541 | buf[15] = dev_sel; /* once more, waiting for BSY to clear */ | |
542 | ||
543 | buf[16] = (1 << 5) | ATA_REG_NSECT; | |
46a67143 | 544 | buf[17] = qc->tf.nsect; |
4113bb6b | 545 | buf[18] = (1 << 5) | ATA_REG_LBAL; |
46a67143 | 546 | buf[19] = qc->tf.lbal; |
4113bb6b MP |
547 | |
548 | /* set feature and byte counter registers */ | |
0dc36888 | 549 | if (qc->tf.protocol != ATAPI_PROT_DMA) |
4113bb6b | 550 | feature = PDC_FEATURE_ATAPI_PIO; |
46a67143 | 551 | else |
4113bb6b | 552 | feature = PDC_FEATURE_ATAPI_DMA; |
46a67143 | 553 | |
4113bb6b MP |
554 | buf[20] = (1 << 5) | ATA_REG_FEATURE; |
555 | buf[21] = feature; | |
556 | buf[22] = (1 << 5) | ATA_REG_BYTEL; | |
46a67143 | 557 | buf[23] = qc->tf.lbam; |
4113bb6b | 558 | buf[24] = (1 << 5) | ATA_REG_BYTEH; |
46a67143 | 559 | buf[25] = qc->tf.lbah; |
4113bb6b MP |
560 | |
561 | /* send ATAPI packet command 0xA0 */ | |
562 | buf[26] = (1 << 5) | ATA_REG_CMD; | |
46a67143 | 563 | buf[27] = qc->tf.command; |
4113bb6b MP |
564 | |
565 | /* select drive and check DRQ */ | |
566 | buf[28] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_WAIT_DRDY; | |
567 | buf[29] = dev_sel; | |
568 | ||
95006188 MP |
569 | /* we can represent cdb lengths 2/4/6/8/10/12/14/16 */ |
570 | BUG_ON(cdb_len & ~0x1E); | |
571 | ||
4113bb6b MP |
572 | /* append the CDB as the final part */ |
573 | buf[30] = (((cdb_len >> 1) & 7) << 5) | ATA_REG_DATA | PDC_LAST_REG; | |
574 | memcpy(buf+31, cdb, cdb_len); | |
95006188 MP |
575 | } |
576 | ||
b9ccd4a9 MP |
577 | /** |
578 | * pdc_fill_sg - Fill PCI IDE PRD table | |
579 | * @qc: Metadata associated with taskfile to be transferred | |
580 | * | |
581 | * Fill PCI IDE PRD (scatter-gather) table with segments | |
582 | * associated with the current disk command. | |
583 | * Make sure hardware does not choke on it. | |
584 | * | |
585 | * LOCKING: | |
586 | * spin_lock_irqsave(host lock) | |
587 | * | |
588 | */ | |
589 | static void pdc_fill_sg(struct ata_queued_cmd *qc) | |
590 | { | |
591 | struct ata_port *ap = qc->ap; | |
f60d7011 | 592 | struct ata_bmdma_prd *prd = ap->bmdma_prd; |
b9ccd4a9 | 593 | struct scatterlist *sg; |
b9ccd4a9 | 594 | const u32 SG_COUNT_ASIC_BUG = 41*4; |
ff2aeb1e TH |
595 | unsigned int si, idx; |
596 | u32 len; | |
b9ccd4a9 MP |
597 | |
598 | if (!(qc->flags & ATA_QCFLAG_DMAMAP)) | |
599 | return; | |
600 | ||
b9ccd4a9 | 601 | idx = 0; |
ff2aeb1e | 602 | for_each_sg(qc->sg, sg, qc->n_elem, si) { |
b9ccd4a9 | 603 | u32 addr, offset; |
6903c0f7 | 604 | u32 sg_len; |
b9ccd4a9 MP |
605 | |
606 | /* determine if physical DMA addr spans 64K boundary. | |
607 | * Note h/w doesn't support 64-bit, so we unconditionally | |
608 | * truncate dma_addr_t to u32. | |
609 | */ | |
610 | addr = (u32) sg_dma_address(sg); | |
611 | sg_len = sg_dma_len(sg); | |
612 | ||
613 | while (sg_len) { | |
614 | offset = addr & 0xffff; | |
615 | len = sg_len; | |
616 | if ((offset + sg_len) > 0x10000) | |
617 | len = 0x10000 - offset; | |
618 | ||
f60d7011 TH |
619 | prd[idx].addr = cpu_to_le32(addr); |
620 | prd[idx].flags_len = cpu_to_le32(len & 0xffff); | |
b9ccd4a9 MP |
621 | VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len); |
622 | ||
623 | idx++; | |
624 | sg_len -= len; | |
625 | addr += len; | |
626 | } | |
627 | } | |
628 | ||
f60d7011 | 629 | len = le32_to_cpu(prd[idx - 1].flags_len); |
b9ccd4a9 | 630 | |
ff2aeb1e TH |
631 | if (len > SG_COUNT_ASIC_BUG) { |
632 | u32 addr; | |
b9ccd4a9 | 633 | |
ff2aeb1e | 634 | VPRINTK("Splitting last PRD.\n"); |
b9ccd4a9 | 635 | |
f60d7011 TH |
636 | addr = le32_to_cpu(prd[idx - 1].addr); |
637 | prd[idx - 1].flags_len = cpu_to_le32(len - SG_COUNT_ASIC_BUG); | |
ff2aeb1e | 638 | VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx - 1, addr, SG_COUNT_ASIC_BUG); |
b9ccd4a9 | 639 | |
ff2aeb1e TH |
640 | addr = addr + len - SG_COUNT_ASIC_BUG; |
641 | len = SG_COUNT_ASIC_BUG; | |
f60d7011 TH |
642 | prd[idx].addr = cpu_to_le32(addr); |
643 | prd[idx].flags_len = cpu_to_le32(len); | |
ff2aeb1e | 644 | VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len); |
b9ccd4a9 | 645 | |
ff2aeb1e | 646 | idx++; |
b9ccd4a9 | 647 | } |
ff2aeb1e | 648 | |
f60d7011 | 649 | prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT); |
b9ccd4a9 MP |
650 | } |
651 | ||
1da177e4 LT |
652 | static void pdc_qc_prep(struct ata_queued_cmd *qc) |
653 | { | |
654 | struct pdc_port_priv *pp = qc->ap->private_data; | |
655 | unsigned int i; | |
656 | ||
657 | VPRINTK("ENTER\n"); | |
658 | ||
659 | switch (qc->tf.protocol) { | |
660 | case ATA_PROT_DMA: | |
b9ccd4a9 | 661 | pdc_fill_sg(qc); |
7715a6f9 | 662 | /*FALLTHROUGH*/ |
1da177e4 | 663 | case ATA_PROT_NODATA: |
f60d7011 | 664 | i = pdc_pkt_header(&qc->tf, qc->ap->bmdma_prd_dma, |
1da177e4 | 665 | qc->dev->devno, pp->pkt); |
1da177e4 LT |
666 | if (qc->tf.flags & ATA_TFLAG_LBA48) |
667 | i = pdc_prep_lba48(&qc->tf, pp->pkt, i); | |
668 | else | |
669 | i = pdc_prep_lba28(&qc->tf, pp->pkt, i); | |
1da177e4 LT |
670 | pdc_pkt_footer(&qc->tf, pp->pkt, i); |
671 | break; | |
0dc36888 | 672 | case ATAPI_PROT_PIO: |
b9ccd4a9 | 673 | pdc_fill_sg(qc); |
95006188 | 674 | break; |
0dc36888 | 675 | case ATAPI_PROT_DMA: |
b9ccd4a9 | 676 | pdc_fill_sg(qc); |
fba6edbd | 677 | /*FALLTHROUGH*/ |
0dc36888 | 678 | case ATAPI_PROT_NODATA: |
fba6edbd | 679 | pdc_atapi_pkt(qc); |
95006188 | 680 | break; |
1da177e4 LT |
681 | default: |
682 | break; | |
683 | } | |
684 | } | |
685 | ||
c07a9c49 MP |
686 | static int pdc_is_sataii_tx4(unsigned long flags) |
687 | { | |
688 | const unsigned long mask = PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS; | |
689 | return (flags & mask) == mask; | |
690 | } | |
691 | ||
692 | static unsigned int pdc_port_no_to_ata_no(unsigned int port_no, | |
693 | int is_sataii_tx4) | |
694 | { | |
695 | static const unsigned char sataii_tx4_port_remap[4] = { 3, 1, 0, 2}; | |
696 | return is_sataii_tx4 ? sataii_tx4_port_remap[port_no] : port_no; | |
697 | } | |
698 | ||
699 | static unsigned int pdc_sata_nr_ports(const struct ata_port *ap) | |
700 | { | |
701 | return (ap->flags & PDC_FLAG_4_PORTS) ? 4 : 2; | |
702 | } | |
703 | ||
704 | static unsigned int pdc_sata_ata_port_to_ata_no(const struct ata_port *ap) | |
705 | { | |
706 | const struct ata_host *host = ap->host; | |
707 | unsigned int nr_ports = pdc_sata_nr_ports(ap); | |
708 | unsigned int i; | |
709 | ||
7715a6f9 | 710 | for (i = 0; i < nr_ports && host->ports[i] != ap; ++i) |
c07a9c49 MP |
711 | ; |
712 | BUG_ON(i >= nr_ports); | |
713 | return pdc_port_no_to_ata_no(i, pdc_is_sataii_tx4(ap->flags)); | |
714 | } | |
715 | ||
25b93d81 MP |
716 | static void pdc_freeze(struct ata_port *ap) |
717 | { | |
821d22cd | 718 | void __iomem *ata_mmio = ap->ioaddr.cmd_addr; |
25b93d81 MP |
719 | u32 tmp; |
720 | ||
821d22cd | 721 | tmp = readl(ata_mmio + PDC_CTLSTAT); |
25b93d81 MP |
722 | tmp |= PDC_IRQ_DISABLE; |
723 | tmp &= ~PDC_DMA_ENABLE; | |
821d22cd MP |
724 | writel(tmp, ata_mmio + PDC_CTLSTAT); |
725 | readl(ata_mmio + PDC_CTLSTAT); /* flush */ | |
25b93d81 MP |
726 | } |
727 | ||
c07a9c49 MP |
728 | static void pdc_sata_freeze(struct ata_port *ap) |
729 | { | |
730 | struct ata_host *host = ap->host; | |
731 | void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR]; | |
0ae6654d | 732 | unsigned int hotplug_offset = PDC2_SATA_PLUG_CSR; |
c07a9c49 MP |
733 | unsigned int ata_no = pdc_sata_ata_port_to_ata_no(ap); |
734 | u32 hotplug_status; | |
735 | ||
736 | /* Disable hotplug events on this port. | |
737 | * | |
738 | * Locking: | |
739 | * 1) hotplug register accesses must be serialised via host->lock | |
740 | * 2) ap->lock == &ap->host->lock | |
741 | * 3) ->freeze() and ->thaw() are called with ap->lock held | |
742 | */ | |
743 | hotplug_status = readl(host_mmio + hotplug_offset); | |
744 | hotplug_status |= 0x11 << (ata_no + 16); | |
745 | writel(hotplug_status, host_mmio + hotplug_offset); | |
746 | readl(host_mmio + hotplug_offset); /* flush */ | |
747 | ||
748 | pdc_freeze(ap); | |
749 | } | |
750 | ||
25b93d81 MP |
751 | static void pdc_thaw(struct ata_port *ap) |
752 | { | |
821d22cd | 753 | void __iomem *ata_mmio = ap->ioaddr.cmd_addr; |
25b93d81 MP |
754 | u32 tmp; |
755 | ||
756 | /* clear IRQ */ | |
821d22cd | 757 | readl(ata_mmio + PDC_COMMAND); |
25b93d81 MP |
758 | |
759 | /* turn IRQ back on */ | |
821d22cd | 760 | tmp = readl(ata_mmio + PDC_CTLSTAT); |
25b93d81 | 761 | tmp &= ~PDC_IRQ_DISABLE; |
821d22cd MP |
762 | writel(tmp, ata_mmio + PDC_CTLSTAT); |
763 | readl(ata_mmio + PDC_CTLSTAT); /* flush */ | |
25b93d81 MP |
764 | } |
765 | ||
c07a9c49 MP |
766 | static void pdc_sata_thaw(struct ata_port *ap) |
767 | { | |
768 | struct ata_host *host = ap->host; | |
769 | void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR]; | |
0ae6654d | 770 | unsigned int hotplug_offset = PDC2_SATA_PLUG_CSR; |
c07a9c49 MP |
771 | unsigned int ata_no = pdc_sata_ata_port_to_ata_no(ap); |
772 | u32 hotplug_status; | |
773 | ||
774 | pdc_thaw(ap); | |
775 | ||
776 | /* Enable hotplug events on this port. | |
777 | * Locking: see pdc_sata_freeze(). | |
778 | */ | |
779 | hotplug_status = readl(host_mmio + hotplug_offset); | |
780 | hotplug_status |= 0x11 << ata_no; | |
781 | hotplug_status &= ~(0x11 << (ata_no + 16)); | |
782 | writel(hotplug_status, host_mmio + hotplug_offset); | |
783 | readl(host_mmio + hotplug_offset); /* flush */ | |
784 | } | |
785 | ||
cadef677 MP |
786 | static int pdc_pata_softreset(struct ata_link *link, unsigned int *class, |
787 | unsigned long deadline) | |
788 | { | |
789 | pdc_reset_port(link->ap); | |
790 | return ata_sff_softreset(link, class, deadline); | |
791 | } | |
792 | ||
ff7cddf5 MP |
793 | static unsigned int pdc_ata_port_to_ata_no(const struct ata_port *ap) |
794 | { | |
795 | void __iomem *ata_mmio = ap->ioaddr.cmd_addr; | |
796 | void __iomem *host_mmio = ap->host->iomap[PDC_MMIO_BAR]; | |
797 | ||
798 | /* ata_mmio == host_mmio + 0x200 + ata_no * 0x80 */ | |
799 | return (ata_mmio - host_mmio - 0x200) / 0x80; | |
800 | } | |
801 | ||
802 | static void pdc_hard_reset_port(struct ata_port *ap) | |
803 | { | |
804 | void __iomem *host_mmio = ap->host->iomap[PDC_MMIO_BAR]; | |
805 | void __iomem *pcictl_b1_mmio = host_mmio + PDC_PCI_CTL + 1; | |
806 | unsigned int ata_no = pdc_ata_port_to_ata_no(ap); | |
3100d49d | 807 | struct pdc_host_priv *hpriv = ap->host->private_data; |
ff7cddf5 MP |
808 | u8 tmp; |
809 | ||
3100d49d | 810 | spin_lock(&hpriv->hard_reset_lock); |
ff7cddf5 MP |
811 | |
812 | tmp = readb(pcictl_b1_mmio); | |
813 | tmp &= ~(0x10 << ata_no); | |
814 | writeb(tmp, pcictl_b1_mmio); | |
815 | readb(pcictl_b1_mmio); /* flush */ | |
816 | udelay(100); | |
817 | tmp |= (0x10 << ata_no); | |
818 | writeb(tmp, pcictl_b1_mmio); | |
819 | readb(pcictl_b1_mmio); /* flush */ | |
820 | ||
3100d49d | 821 | spin_unlock(&hpriv->hard_reset_lock); |
ff7cddf5 MP |
822 | } |
823 | ||
cadef677 MP |
824 | static int pdc_sata_hardreset(struct ata_link *link, unsigned int *class, |
825 | unsigned long deadline) | |
826 | { | |
ff7cddf5 MP |
827 | if (link->ap->flags & PDC_FLAG_GEN_II) |
828 | pdc_not_at_command_packet_phase(link->ap); | |
829 | /* hotplug IRQs should have been masked by pdc_sata_freeze() */ | |
830 | pdc_hard_reset_port(link->ap); | |
cadef677 | 831 | pdc_reset_port(link->ap); |
ff7cddf5 MP |
832 | |
833 | /* sata_promise can't reliably acquire the first D2H Reg FIS | |
834 | * after hardreset. Do non-waiting hardreset and request | |
835 | * follow-up SRST. | |
836 | */ | |
837 | return sata_std_hardreset(link, class, deadline); | |
cadef677 MP |
838 | } |
839 | ||
a1efdaba | 840 | static void pdc_error_handler(struct ata_port *ap) |
25b93d81 | 841 | { |
25b93d81 MP |
842 | if (!(ap->pflags & ATA_PFLAG_FROZEN)) |
843 | pdc_reset_port(ap); | |
844 | ||
fe06e5f9 | 845 | ata_sff_error_handler(ap); |
724114a5 MP |
846 | } |
847 | ||
25b93d81 MP |
848 | static void pdc_post_internal_cmd(struct ata_queued_cmd *qc) |
849 | { | |
850 | struct ata_port *ap = qc->ap; | |
851 | ||
25b93d81 | 852 | /* make DMA engine forget about the failed command */ |
a51d644a | 853 | if (qc->flags & ATA_QCFLAG_FAILED) |
25b93d81 MP |
854 | pdc_reset_port(ap); |
855 | } | |
856 | ||
176efb05 MP |
857 | static void pdc_error_intr(struct ata_port *ap, struct ata_queued_cmd *qc, |
858 | u32 port_status, u32 err_mask) | |
859 | { | |
9af5c9c9 | 860 | struct ata_eh_info *ehi = &ap->link.eh_info; |
176efb05 MP |
861 | unsigned int ac_err_mask = 0; |
862 | ||
863 | ata_ehi_clear_desc(ehi); | |
864 | ata_ehi_push_desc(ehi, "port_status 0x%08x", port_status); | |
865 | port_status &= err_mask; | |
866 | ||
867 | if (port_status & PDC_DRIVE_ERR) | |
868 | ac_err_mask |= AC_ERR_DEV; | |
869 | if (port_status & (PDC_OVERRUN_ERR | PDC_UNDERRUN_ERR)) | |
a2342f46 | 870 | ac_err_mask |= AC_ERR_OTHER; |
176efb05 MP |
871 | if (port_status & (PDC2_ATA_HBA_ERR | PDC2_ATA_DMA_CNT_ERR)) |
872 | ac_err_mask |= AC_ERR_ATA_BUS; | |
873 | if (port_status & (PDC_PH_ERR | PDC_SH_ERR | PDC_DH_ERR | PDC2_HTO_ERR | |
874 | | PDC_PCI_SYS_ERR | PDC1_PCI_PARITY_ERR)) | |
875 | ac_err_mask |= AC_ERR_HOST_BUS; | |
876 | ||
936fd732 | 877 | if (sata_scr_valid(&ap->link)) { |
da3dbb17 TH |
878 | u32 serror; |
879 | ||
82ef04fb | 880 | pdc_sata_scr_read(&ap->link, SCR_ERROR, &serror); |
da3dbb17 TH |
881 | ehi->serror |= serror; |
882 | } | |
ce2d3abc | 883 | |
176efb05 | 884 | qc->err_mask |= ac_err_mask; |
ce2d3abc MP |
885 | |
886 | pdc_reset_port(ap); | |
8ffcfd9d MP |
887 | |
888 | ata_port_abort(ap); | |
176efb05 MP |
889 | } |
890 | ||
7715a6f9 MP |
891 | static unsigned int pdc_host_intr(struct ata_port *ap, |
892 | struct ata_queued_cmd *qc) | |
1da177e4 | 893 | { |
a22e2eb0 | 894 | unsigned int handled = 0; |
821d22cd | 895 | void __iomem *ata_mmio = ap->ioaddr.cmd_addr; |
176efb05 MP |
896 | u32 port_status, err_mask; |
897 | ||
898 | err_mask = PDC_ERR_MASK; | |
eca25dca | 899 | if (ap->flags & PDC_FLAG_GEN_II) |
176efb05 MP |
900 | err_mask &= ~PDC1_ERR_MASK; |
901 | else | |
902 | err_mask &= ~PDC2_ERR_MASK; | |
821d22cd | 903 | port_status = readl(ata_mmio + PDC_GLOBAL_CTL); |
176efb05 MP |
904 | if (unlikely(port_status & err_mask)) { |
905 | pdc_error_intr(ap, qc, port_status, err_mask); | |
906 | return 1; | |
1da177e4 LT |
907 | } |
908 | ||
909 | switch (qc->tf.protocol) { | |
910 | case ATA_PROT_DMA: | |
911 | case ATA_PROT_NODATA: | |
0dc36888 TH |
912 | case ATAPI_PROT_DMA: |
913 | case ATAPI_PROT_NODATA: | |
a22e2eb0 AL |
914 | qc->err_mask |= ac_err_mask(ata_wait_idle(ap)); |
915 | ata_qc_complete(qc); | |
1da177e4 LT |
916 | handled = 1; |
917 | break; | |
d0e58031 | 918 | default: |
ee500aab AL |
919 | ap->stats.idle_irq++; |
920 | break; | |
d0e58031 | 921 | } |
1da177e4 | 922 | |
ee500aab | 923 | return handled; |
1da177e4 LT |
924 | } |
925 | ||
926 | static void pdc_irq_clear(struct ata_port *ap) | |
927 | { | |
821d22cd | 928 | void __iomem *ata_mmio = ap->ioaddr.cmd_addr; |
1da177e4 | 929 | |
821d22cd | 930 | readl(ata_mmio + PDC_COMMAND); |
1da177e4 LT |
931 | } |
932 | ||
5796d1c4 | 933 | static irqreturn_t pdc_interrupt(int irq, void *dev_instance) |
1da177e4 | 934 | { |
cca3974e | 935 | struct ata_host *host = dev_instance; |
1da177e4 LT |
936 | struct ata_port *ap; |
937 | u32 mask = 0; | |
938 | unsigned int i, tmp; | |
939 | unsigned int handled = 0; | |
821d22cd | 940 | void __iomem *host_mmio; |
a77720ad MP |
941 | unsigned int hotplug_offset, ata_no; |
942 | u32 hotplug_status; | |
943 | int is_sataii_tx4; | |
1da177e4 LT |
944 | |
945 | VPRINTK("ENTER\n"); | |
946 | ||
0d5ff566 | 947 | if (!host || !host->iomap[PDC_MMIO_BAR]) { |
1da177e4 LT |
948 | VPRINTK("QUICK EXIT\n"); |
949 | return IRQ_NONE; | |
950 | } | |
951 | ||
821d22cd | 952 | host_mmio = host->iomap[PDC_MMIO_BAR]; |
1da177e4 | 953 | |
c07a9c49 MP |
954 | spin_lock(&host->lock); |
955 | ||
a77720ad | 956 | /* read and clear hotplug flags for all ports */ |
0ae6654d | 957 | if (host->ports[0]->flags & PDC_FLAG_GEN_II) { |
a77720ad | 958 | hotplug_offset = PDC2_SATA_PLUG_CSR; |
0ae6654d MP |
959 | hotplug_status = readl(host_mmio + hotplug_offset); |
960 | if (hotplug_status & 0xff) | |
961 | writel(hotplug_status | 0xff, host_mmio + hotplug_offset); | |
962 | hotplug_status &= 0xff; /* clear uninteresting bits */ | |
963 | } else | |
964 | hotplug_status = 0; | |
a77720ad | 965 | |
1da177e4 | 966 | /* reading should also clear interrupts */ |
821d22cd | 967 | mask = readl(host_mmio + PDC_INT_SEQMASK); |
1da177e4 | 968 | |
a77720ad | 969 | if (mask == 0xffffffff && hotplug_status == 0) { |
1da177e4 | 970 | VPRINTK("QUICK EXIT 2\n"); |
c07a9c49 | 971 | goto done_irq; |
1da177e4 | 972 | } |
6340f019 | 973 | |
7715a6f9 | 974 | mask &= 0xffff; /* only 16 SEQIDs possible */ |
a77720ad | 975 | if (mask == 0 && hotplug_status == 0) { |
1da177e4 | 976 | VPRINTK("QUICK EXIT 3\n"); |
6340f019 | 977 | goto done_irq; |
1da177e4 LT |
978 | } |
979 | ||
821d22cd | 980 | writel(mask, host_mmio + PDC_INT_SEQMASK); |
1da177e4 | 981 | |
a77720ad MP |
982 | is_sataii_tx4 = pdc_is_sataii_tx4(host->ports[0]->flags); |
983 | ||
cca3974e | 984 | for (i = 0; i < host->n_ports; i++) { |
1da177e4 | 985 | VPRINTK("port %u\n", i); |
cca3974e | 986 | ap = host->ports[i]; |
a77720ad MP |
987 | |
988 | /* check for a plug or unplug event */ | |
989 | ata_no = pdc_port_no_to_ata_no(i, is_sataii_tx4); | |
990 | tmp = hotplug_status & (0x11 << ata_no); | |
3e4ec344 | 991 | if (tmp) { |
9af5c9c9 | 992 | struct ata_eh_info *ehi = &ap->link.eh_info; |
a77720ad MP |
993 | ata_ehi_clear_desc(ehi); |
994 | ata_ehi_hotplugged(ehi); | |
995 | ata_ehi_push_desc(ehi, "hotplug_status %#x", tmp); | |
996 | ata_port_freeze(ap); | |
997 | ++handled; | |
998 | continue; | |
999 | } | |
1000 | ||
1001 | /* check for a packet interrupt */ | |
1da177e4 | 1002 | tmp = mask & (1 << (i + 1)); |
3e4ec344 | 1003 | if (tmp) { |
1da177e4 LT |
1004 | struct ata_queued_cmd *qc; |
1005 | ||
9af5c9c9 | 1006 | qc = ata_qc_from_tag(ap, ap->link.active_tag); |
e50362ec | 1007 | if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING))) |
1da177e4 LT |
1008 | handled += pdc_host_intr(ap, qc); |
1009 | } | |
1010 | } | |
1011 | ||
1da177e4 LT |
1012 | VPRINTK("EXIT\n"); |
1013 | ||
6340f019 | 1014 | done_irq: |
cca3974e | 1015 | spin_unlock(&host->lock); |
1da177e4 LT |
1016 | return IRQ_RETVAL(handled); |
1017 | } | |
1018 | ||
7715a6f9 | 1019 | static void pdc_packet_start(struct ata_queued_cmd *qc) |
1da177e4 LT |
1020 | { |
1021 | struct ata_port *ap = qc->ap; | |
1022 | struct pdc_port_priv *pp = ap->private_data; | |
821d22cd MP |
1023 | void __iomem *host_mmio = ap->host->iomap[PDC_MMIO_BAR]; |
1024 | void __iomem *ata_mmio = ap->ioaddr.cmd_addr; | |
1da177e4 LT |
1025 | unsigned int port_no = ap->port_no; |
1026 | u8 seq = (u8) (port_no + 1); | |
1027 | ||
1028 | VPRINTK("ENTER, ap %p\n", ap); | |
1029 | ||
821d22cd MP |
1030 | writel(0x00000001, host_mmio + (seq * 4)); |
1031 | readl(host_mmio + (seq * 4)); /* flush */ | |
1da177e4 LT |
1032 | |
1033 | pp->pkt[2] = seq; | |
1034 | wmb(); /* flush PRD, pkt writes */ | |
821d22cd MP |
1035 | writel(pp->pkt_dma, ata_mmio + PDC_PKT_SUBMIT); |
1036 | readl(ata_mmio + PDC_PKT_SUBMIT); /* flush */ | |
1da177e4 LT |
1037 | } |
1038 | ||
9363c382 | 1039 | static unsigned int pdc_qc_issue(struct ata_queued_cmd *qc) |
1da177e4 LT |
1040 | { |
1041 | switch (qc->tf.protocol) { | |
0dc36888 | 1042 | case ATAPI_PROT_NODATA: |
fba6edbd MP |
1043 | if (qc->dev->flags & ATA_DFLAG_CDB_INTR) |
1044 | break; | |
1045 | /*FALLTHROUGH*/ | |
51b94d2a TH |
1046 | case ATA_PROT_NODATA: |
1047 | if (qc->tf.flags & ATA_TFLAG_POLLING) | |
1048 | break; | |
1049 | /*FALLTHROUGH*/ | |
0dc36888 | 1050 | case ATAPI_PROT_DMA: |
1da177e4 | 1051 | case ATA_PROT_DMA: |
1da177e4 LT |
1052 | pdc_packet_start(qc); |
1053 | return 0; | |
1da177e4 LT |
1054 | default: |
1055 | break; | |
1056 | } | |
9363c382 | 1057 | return ata_sff_qc_issue(qc); |
1da177e4 LT |
1058 | } |
1059 | ||
057ace5e | 1060 | static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf) |
1da177e4 | 1061 | { |
0dc36888 | 1062 | WARN_ON(tf->protocol == ATA_PROT_DMA || tf->protocol == ATAPI_PROT_DMA); |
9363c382 | 1063 | ata_sff_tf_load(ap, tf); |
1da177e4 LT |
1064 | } |
1065 | ||
5796d1c4 JG |
1066 | static void pdc_exec_command_mmio(struct ata_port *ap, |
1067 | const struct ata_taskfile *tf) | |
1da177e4 | 1068 | { |
0dc36888 | 1069 | WARN_ON(tf->protocol == ATA_PROT_DMA || tf->protocol == ATAPI_PROT_DMA); |
9363c382 | 1070 | ata_sff_exec_command(ap, tf); |
1da177e4 LT |
1071 | } |
1072 | ||
95006188 MP |
1073 | static int pdc_check_atapi_dma(struct ata_queued_cmd *qc) |
1074 | { | |
1075 | u8 *scsicmd = qc->scsicmd->cmnd; | |
1076 | int pio = 1; /* atapi dma off by default */ | |
1077 | ||
1078 | /* Whitelist commands that may use DMA. */ | |
1079 | switch (scsicmd[0]) { | |
1080 | case WRITE_12: | |
1081 | case WRITE_10: | |
1082 | case WRITE_6: | |
1083 | case READ_12: | |
1084 | case READ_10: | |
1085 | case READ_6: | |
1086 | case 0xad: /* READ_DVD_STRUCTURE */ | |
1087 | case 0xbe: /* READ_CD */ | |
1088 | pio = 0; | |
1089 | } | |
1090 | /* -45150 (FFFF4FA2) to -1 (FFFFFFFF) shall use PIO mode */ | |
1091 | if (scsicmd[0] == WRITE_10) { | |
5796d1c4 JG |
1092 | unsigned int lba = |
1093 | (scsicmd[2] << 24) | | |
1094 | (scsicmd[3] << 16) | | |
1095 | (scsicmd[4] << 8) | | |
1096 | scsicmd[5]; | |
95006188 MP |
1097 | if (lba >= 0xFFFF4FA2) |
1098 | pio = 1; | |
1099 | } | |
1100 | return pio; | |
1101 | } | |
1102 | ||
724114a5 | 1103 | static int pdc_old_sata_check_atapi_dma(struct ata_queued_cmd *qc) |
95006188 | 1104 | { |
95006188 | 1105 | /* First generation chips cannot use ATAPI DMA on SATA ports */ |
724114a5 | 1106 | return 1; |
95006188 | 1107 | } |
1da177e4 | 1108 | |
eca25dca TH |
1109 | static void pdc_ata_setup_port(struct ata_port *ap, |
1110 | void __iomem *base, void __iomem *scr_addr) | |
1da177e4 | 1111 | { |
eca25dca TH |
1112 | ap->ioaddr.cmd_addr = base; |
1113 | ap->ioaddr.data_addr = base; | |
1114 | ap->ioaddr.feature_addr = | |
1115 | ap->ioaddr.error_addr = base + 0x4; | |
1116 | ap->ioaddr.nsect_addr = base + 0x8; | |
1117 | ap->ioaddr.lbal_addr = base + 0xc; | |
1118 | ap->ioaddr.lbam_addr = base + 0x10; | |
1119 | ap->ioaddr.lbah_addr = base + 0x14; | |
1120 | ap->ioaddr.device_addr = base + 0x18; | |
1121 | ap->ioaddr.command_addr = | |
1122 | ap->ioaddr.status_addr = base + 0x1c; | |
1123 | ap->ioaddr.altstatus_addr = | |
1124 | ap->ioaddr.ctl_addr = base + 0x38; | |
1125 | ap->ioaddr.scr_addr = scr_addr; | |
1da177e4 LT |
1126 | } |
1127 | ||
eca25dca | 1128 | static void pdc_host_init(struct ata_host *host) |
1da177e4 | 1129 | { |
821d22cd | 1130 | void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR]; |
eca25dca | 1131 | int is_gen2 = host->ports[0]->flags & PDC_FLAG_GEN_II; |
d324d462 | 1132 | int hotplug_offset; |
1da177e4 LT |
1133 | u32 tmp; |
1134 | ||
eca25dca | 1135 | if (is_gen2) |
d324d462 MP |
1136 | hotplug_offset = PDC2_SATA_PLUG_CSR; |
1137 | else | |
1138 | hotplug_offset = PDC_SATA_PLUG_CSR; | |
1139 | ||
1da177e4 LT |
1140 | /* |
1141 | * Except for the hotplug stuff, this is voodoo from the | |
1142 | * Promise driver. Label this entire section | |
1143 | * "TODO: figure out why we do this" | |
1144 | */ | |
1145 | ||
b2d1eee1 | 1146 | /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */ |
821d22cd | 1147 | tmp = readl(host_mmio + PDC_FLASH_CTL); |
b2d1eee1 | 1148 | tmp |= 0x02000; /* bit 13 (enable bmr burst) */ |
eca25dca | 1149 | if (!is_gen2) |
b2d1eee1 | 1150 | tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */ |
821d22cd | 1151 | writel(tmp, host_mmio + PDC_FLASH_CTL); |
1da177e4 LT |
1152 | |
1153 | /* clear plug/unplug flags for all ports */ | |
821d22cd MP |
1154 | tmp = readl(host_mmio + hotplug_offset); |
1155 | writel(tmp | 0xff, host_mmio + hotplug_offset); | |
1da177e4 | 1156 | |
821d22cd | 1157 | tmp = readl(host_mmio + hotplug_offset); |
0ae6654d MP |
1158 | if (is_gen2) /* unmask plug/unplug ints */ |
1159 | writel(tmp & ~0xff0000, host_mmio + hotplug_offset); | |
1160 | else /* mask plug/unplug ints */ | |
1161 | writel(tmp | 0xff0000, host_mmio + hotplug_offset); | |
1da177e4 | 1162 | |
b2d1eee1 | 1163 | /* don't initialise TBG or SLEW on 2nd generation chips */ |
eca25dca | 1164 | if (is_gen2) |
b2d1eee1 MP |
1165 | return; |
1166 | ||
1da177e4 | 1167 | /* reduce TBG clock to 133 Mhz. */ |
821d22cd | 1168 | tmp = readl(host_mmio + PDC_TBG_MODE); |
1da177e4 LT |
1169 | tmp &= ~0x30000; /* clear bit 17, 16*/ |
1170 | tmp |= 0x10000; /* set bit 17:16 = 0:1 */ | |
821d22cd | 1171 | writel(tmp, host_mmio + PDC_TBG_MODE); |
1da177e4 | 1172 | |
821d22cd | 1173 | readl(host_mmio + PDC_TBG_MODE); /* flush */ |
1da177e4 LT |
1174 | msleep(10); |
1175 | ||
1176 | /* adjust slew rate control register. */ | |
821d22cd | 1177 | tmp = readl(host_mmio + PDC_SLEW_CTL); |
1da177e4 LT |
1178 | tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */ |
1179 | tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */ | |
821d22cd | 1180 | writel(tmp, host_mmio + PDC_SLEW_CTL); |
1da177e4 LT |
1181 | } |
1182 | ||
5796d1c4 JG |
1183 | static int pdc_ata_init_one(struct pci_dev *pdev, |
1184 | const struct pci_device_id *ent) | |
1da177e4 | 1185 | { |
eca25dca TH |
1186 | const struct ata_port_info *pi = &pdc_port_info[ent->driver_data]; |
1187 | const struct ata_port_info *ppi[PDC_MAX_PORTS]; | |
1188 | struct ata_host *host; | |
3100d49d | 1189 | struct pdc_host_priv *hpriv; |
821d22cd | 1190 | void __iomem *host_mmio; |
eca25dca | 1191 | int n_ports, i, rc; |
5ac2fe57 | 1192 | int is_sataii_tx4; |
1da177e4 | 1193 | |
06296a1e | 1194 | ata_print_version_once(&pdev->dev, DRV_VERSION); |
1da177e4 | 1195 | |
eca25dca | 1196 | /* enable and acquire resources */ |
24dc5f33 | 1197 | rc = pcim_enable_device(pdev); |
1da177e4 LT |
1198 | if (rc) |
1199 | return rc; | |
1200 | ||
0d5ff566 TH |
1201 | rc = pcim_iomap_regions(pdev, 1 << PDC_MMIO_BAR, DRV_NAME); |
1202 | if (rc == -EBUSY) | |
24dc5f33 | 1203 | pcim_pin_device(pdev); |
0d5ff566 | 1204 | if (rc) |
24dc5f33 | 1205 | return rc; |
821d22cd | 1206 | host_mmio = pcim_iomap_table(pdev)[PDC_MMIO_BAR]; |
1da177e4 | 1207 | |
eca25dca TH |
1208 | /* determine port configuration and setup host */ |
1209 | n_ports = 2; | |
1210 | if (pi->flags & PDC_FLAG_4_PORTS) | |
1211 | n_ports = 4; | |
1212 | for (i = 0; i < n_ports; i++) | |
1213 | ppi[i] = pi; | |
1da177e4 | 1214 | |
eca25dca | 1215 | if (pi->flags & PDC_FLAG_SATA_PATA) { |
821d22cd | 1216 | u8 tmp = readb(host_mmio + PDC_FLASH_CTL + 1); |
d0e58031 | 1217 | if (!(tmp & 0x80)) |
eca25dca | 1218 | ppi[n_ports++] = pi + 1; |
eca25dca | 1219 | } |
1da177e4 | 1220 | |
eca25dca TH |
1221 | host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports); |
1222 | if (!host) { | |
a44fec1f | 1223 | dev_err(&pdev->dev, "failed to allocate host\n"); |
24dc5f33 | 1224 | return -ENOMEM; |
1da177e4 | 1225 | } |
3100d49d MP |
1226 | hpriv = devm_kzalloc(&pdev->dev, sizeof *hpriv, GFP_KERNEL); |
1227 | if (!hpriv) | |
1228 | return -ENOMEM; | |
1229 | spin_lock_init(&hpriv->hard_reset_lock); | |
1230 | host->private_data = hpriv; | |
eca25dca | 1231 | host->iomap = pcim_iomap_table(pdev); |
1da177e4 | 1232 | |
d0e58031 | 1233 | is_sataii_tx4 = pdc_is_sataii_tx4(pi->flags); |
5ac2fe57 | 1234 | for (i = 0; i < host->n_ports; i++) { |
cbcdd875 | 1235 | struct ata_port *ap = host->ports[i]; |
d0e58031 | 1236 | unsigned int ata_no = pdc_port_no_to_ata_no(i, is_sataii_tx4); |
821d22cd | 1237 | unsigned int ata_offset = 0x200 + ata_no * 0x80; |
cbcdd875 TH |
1238 | unsigned int scr_offset = 0x400 + ata_no * 0x100; |
1239 | ||
821d22cd | 1240 | pdc_ata_setup_port(ap, host_mmio + ata_offset, host_mmio + scr_offset); |
cbcdd875 TH |
1241 | |
1242 | ata_port_pbar_desc(ap, PDC_MMIO_BAR, -1, "mmio"); | |
821d22cd | 1243 | ata_port_pbar_desc(ap, PDC_MMIO_BAR, ata_offset, "ata"); |
5ac2fe57 | 1244 | } |
1da177e4 LT |
1245 | |
1246 | /* initialize adapter */ | |
eca25dca | 1247 | pdc_host_init(host); |
1da177e4 | 1248 | |
c54c719b | 1249 | rc = dma_set_mask(&pdev->dev, ATA_DMA_MASK); |
eca25dca TH |
1250 | if (rc) |
1251 | return rc; | |
c54c719b | 1252 | rc = dma_set_coherent_mask(&pdev->dev, ATA_DMA_MASK); |
eca25dca TH |
1253 | if (rc) |
1254 | return rc; | |
1da177e4 | 1255 | |
eca25dca TH |
1256 | /* start host, request IRQ and attach */ |
1257 | pci_set_master(pdev); | |
1258 | return ata_host_activate(host, pdev->irq, pdc_interrupt, IRQF_SHARED, | |
1259 | &pdc_ata_sht); | |
1da177e4 LT |
1260 | } |
1261 | ||
2fc75da0 | 1262 | module_pci_driver(pdc_ata_pci_driver); |
1da177e4 | 1263 | |
1da177e4 | 1264 | MODULE_AUTHOR("Jeff Garzik"); |
f497ba73 | 1265 | MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver"); |
1da177e4 LT |
1266 | MODULE_LICENSE("GPL"); |
1267 | MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl); | |
1268 | MODULE_VERSION(DRV_VERSION); |