]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/scsi/sata_mv.c
[libata] add timeout to commands for which we call wait_completion()
[mirror_ubuntu-artful-kernel.git] / drivers / scsi / sata_mv.c
CommitLineData
20f733e7
BR
1/*
2 * sata_mv.c - Marvell SATA support
3 *
8b260248 4 * Copyright 2005: EMC Corporation, all rights reserved.
20f733e7
BR
5 *
6 * Please ALWAYS copy linux-ide@vger.kernel.org on emails.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/pci.h>
26#include <linux/init.h>
27#include <linux/blkdev.h>
28#include <linux/delay.h>
29#include <linux/interrupt.h>
30#include <linux/sched.h>
31#include <linux/dma-mapping.h>
a9524a76 32#include <linux/device.h>
20f733e7 33#include <scsi/scsi_host.h>
193515d5 34#include <scsi/scsi_cmnd.h>
20f733e7
BR
35#include <linux/libata.h>
36#include <asm/io.h>
37
38#define DRV_NAME "sata_mv"
7e6c1208 39#define DRV_VERSION "0.25"
20f733e7
BR
40
41enum {
42 /* BAR's are enumerated in terms of pci_resource_start() terms */
43 MV_PRIMARY_BAR = 0, /* offset 0x10: memory space */
44 MV_IO_BAR = 2, /* offset 0x18: IO space */
45 MV_MISC_BAR = 3, /* offset 0x1c: FLASH, NVRAM, SRAM */
46
47 MV_MAJOR_REG_AREA_SZ = 0x10000, /* 64KB */
48 MV_MINOR_REG_AREA_SZ = 0x2000, /* 8KB */
49
50 MV_PCI_REG_BASE = 0,
51 MV_IRQ_COAL_REG_BASE = 0x18000, /* 6xxx part only */
52 MV_SATAHC0_REG_BASE = 0x20000,
522479fb 53 MV_FLASH_CTL = 0x1046c,
bca1c4eb
JG
54 MV_GPIO_PORT_CTL = 0x104f0,
55 MV_RESET_CFG = 0x180d8,
20f733e7
BR
56
57 MV_PCI_REG_SZ = MV_MAJOR_REG_AREA_SZ,
58 MV_SATAHC_REG_SZ = MV_MAJOR_REG_AREA_SZ,
59 MV_SATAHC_ARBTR_REG_SZ = MV_MINOR_REG_AREA_SZ, /* arbiter */
60 MV_PORT_REG_SZ = MV_MINOR_REG_AREA_SZ,
61
31961943 62 MV_USE_Q_DEPTH = ATA_DEF_QUEUE,
20f733e7 63
31961943
BR
64 MV_MAX_Q_DEPTH = 32,
65 MV_MAX_Q_DEPTH_MASK = MV_MAX_Q_DEPTH - 1,
66
67 /* CRQB needs alignment on a 1KB boundary. Size == 1KB
68 * CRPB needs alignment on a 256B boundary. Size == 256B
69 * SG count of 176 leads to MV_PORT_PRIV_DMA_SZ == 4KB
70 * ePRD (SG) entries need alignment on a 16B boundary. Size == 16B
71 */
72 MV_CRQB_Q_SZ = (32 * MV_MAX_Q_DEPTH),
73 MV_CRPB_Q_SZ = (8 * MV_MAX_Q_DEPTH),
74 MV_MAX_SG_CT = 176,
75 MV_SG_TBL_SZ = (16 * MV_MAX_SG_CT),
76 MV_PORT_PRIV_DMA_SZ = (MV_CRQB_Q_SZ + MV_CRPB_Q_SZ + MV_SG_TBL_SZ),
77
20f733e7
BR
78 MV_PORTS_PER_HC = 4,
79 /* == (port / MV_PORTS_PER_HC) to determine HC from 0-7 port */
80 MV_PORT_HC_SHIFT = 2,
31961943 81 /* == (port % MV_PORTS_PER_HC) to determine hard port from 0-7 port */
20f733e7
BR
82 MV_PORT_MASK = 3,
83
84 /* Host Flags */
85 MV_FLAG_DUAL_HC = (1 << 30), /* two SATA Host Controllers */
86 MV_FLAG_IRQ_COALESCE = (1 << 29), /* IRQ coalescing capability */
31961943
BR
87 MV_COMMON_FLAGS = (ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
88 ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO),
47c2b677 89 MV_6XXX_FLAGS = MV_FLAG_IRQ_COALESCE,
20f733e7 90
31961943
BR
91 CRQB_FLAG_READ = (1 << 0),
92 CRQB_TAG_SHIFT = 1,
93 CRQB_CMD_ADDR_SHIFT = 8,
94 CRQB_CMD_CS = (0x2 << 11),
95 CRQB_CMD_LAST = (1 << 15),
96
97 CRPB_FLAG_STATUS_SHIFT = 8,
98
99 EPRD_FLAG_END_OF_TBL = (1 << 31),
100
20f733e7
BR
101 /* PCI interface registers */
102
31961943
BR
103 PCI_COMMAND_OFS = 0xc00,
104
20f733e7
BR
105 PCI_MAIN_CMD_STS_OFS = 0xd30,
106 STOP_PCI_MASTER = (1 << 2),
107 PCI_MASTER_EMPTY = (1 << 3),
108 GLOB_SFT_RST = (1 << 4),
109
522479fb
JG
110 MV_PCI_MODE = 0xd00,
111 MV_PCI_EXP_ROM_BAR_CTL = 0xd2c,
112 MV_PCI_DISC_TIMER = 0xd04,
113 MV_PCI_MSI_TRIGGER = 0xc38,
114 MV_PCI_SERR_MASK = 0xc28,
115 MV_PCI_XBAR_TMOUT = 0x1d04,
116 MV_PCI_ERR_LOW_ADDRESS = 0x1d40,
117 MV_PCI_ERR_HIGH_ADDRESS = 0x1d44,
118 MV_PCI_ERR_ATTRIBUTE = 0x1d48,
119 MV_PCI_ERR_COMMAND = 0x1d50,
120
121 PCI_IRQ_CAUSE_OFS = 0x1d58,
122 PCI_IRQ_MASK_OFS = 0x1d5c,
20f733e7
BR
123 PCI_UNMASK_ALL_IRQS = 0x7fffff, /* bits 22-0 */
124
125 HC_MAIN_IRQ_CAUSE_OFS = 0x1d60,
126 HC_MAIN_IRQ_MASK_OFS = 0x1d64,
127 PORT0_ERR = (1 << 0), /* shift by port # */
128 PORT0_DONE = (1 << 1), /* shift by port # */
129 HC0_IRQ_PEND = 0x1ff, /* bits 0-8 = HC0's ports */
130 HC_SHIFT = 9, /* bits 9-17 = HC1's ports */
131 PCI_ERR = (1 << 18),
132 TRAN_LO_DONE = (1 << 19), /* 6xxx: IRQ coalescing */
133 TRAN_HI_DONE = (1 << 20), /* 6xxx: IRQ coalescing */
134 PORTS_0_7_COAL_DONE = (1 << 21), /* 6xxx: IRQ coalescing */
135 GPIO_INT = (1 << 22),
136 SELF_INT = (1 << 23),
137 TWSI_INT = (1 << 24),
138 HC_MAIN_RSVD = (0x7f << 25), /* bits 31-25 */
8b260248 139 HC_MAIN_MASKED_IRQS = (TRAN_LO_DONE | TRAN_HI_DONE |
20f733e7
BR
140 PORTS_0_7_COAL_DONE | GPIO_INT | TWSI_INT |
141 HC_MAIN_RSVD),
142
143 /* SATAHC registers */
144 HC_CFG_OFS = 0,
145
146 HC_IRQ_CAUSE_OFS = 0x14,
31961943 147 CRPB_DMA_DONE = (1 << 0), /* shift by port # */
20f733e7
BR
148 HC_IRQ_COAL = (1 << 4), /* IRQ coalescing */
149 DEV_IRQ = (1 << 8), /* shift by port # */
150
151 /* Shadow block registers */
31961943
BR
152 SHD_BLK_OFS = 0x100,
153 SHD_CTL_AST_OFS = 0x20, /* ofs from SHD_BLK_OFS */
20f733e7
BR
154
155 /* SATA registers */
156 SATA_STATUS_OFS = 0x300, /* ctrl, err regs follow status */
157 SATA_ACTIVE_OFS = 0x350,
47c2b677 158 PHY_MODE3 = 0x310,
bca1c4eb
JG
159 PHY_MODE4 = 0x314,
160 PHY_MODE2 = 0x330,
c9d39130
JG
161 MV5_PHY_MODE = 0x74,
162 MV5_LT_MODE = 0x30,
163 MV5_PHY_CTL = 0x0C,
bca1c4eb
JG
164 SATA_INTERFACE_CTL = 0x050,
165
166 MV_M2_PREAMP_MASK = 0x7e0,
20f733e7
BR
167
168 /* Port registers */
169 EDMA_CFG_OFS = 0,
31961943
BR
170 EDMA_CFG_Q_DEPTH = 0, /* queueing disabled */
171 EDMA_CFG_NCQ = (1 << 5),
172 EDMA_CFG_NCQ_GO_ON_ERR = (1 << 14), /* continue on error */
173 EDMA_CFG_RD_BRST_EXT = (1 << 11), /* read burst 512B */
174 EDMA_CFG_WR_BUFF_LEN = (1 << 13), /* write buffer 512B */
20f733e7
BR
175
176 EDMA_ERR_IRQ_CAUSE_OFS = 0x8,
177 EDMA_ERR_IRQ_MASK_OFS = 0xc,
178 EDMA_ERR_D_PAR = (1 << 0),
179 EDMA_ERR_PRD_PAR = (1 << 1),
180 EDMA_ERR_DEV = (1 << 2),
181 EDMA_ERR_DEV_DCON = (1 << 3),
182 EDMA_ERR_DEV_CON = (1 << 4),
183 EDMA_ERR_SERR = (1 << 5),
184 EDMA_ERR_SELF_DIS = (1 << 7),
185 EDMA_ERR_BIST_ASYNC = (1 << 8),
186 EDMA_ERR_CRBQ_PAR = (1 << 9),
187 EDMA_ERR_CRPB_PAR = (1 << 10),
188 EDMA_ERR_INTRL_PAR = (1 << 11),
189 EDMA_ERR_IORDY = (1 << 12),
190 EDMA_ERR_LNK_CTRL_RX = (0xf << 13),
191 EDMA_ERR_LNK_CTRL_RX_2 = (1 << 15),
192 EDMA_ERR_LNK_DATA_RX = (0xf << 17),
193 EDMA_ERR_LNK_CTRL_TX = (0x1f << 21),
194 EDMA_ERR_LNK_DATA_TX = (0x1f << 26),
195 EDMA_ERR_TRANS_PROTO = (1 << 31),
8b260248 196 EDMA_ERR_FATAL = (EDMA_ERR_D_PAR | EDMA_ERR_PRD_PAR |
20f733e7
BR
197 EDMA_ERR_DEV_DCON | EDMA_ERR_CRBQ_PAR |
198 EDMA_ERR_CRPB_PAR | EDMA_ERR_INTRL_PAR |
8b260248 199 EDMA_ERR_IORDY | EDMA_ERR_LNK_CTRL_RX_2 |
20f733e7 200 EDMA_ERR_LNK_DATA_RX |
8b260248 201 EDMA_ERR_LNK_DATA_TX |
20f733e7
BR
202 EDMA_ERR_TRANS_PROTO),
203
31961943
BR
204 EDMA_REQ_Q_BASE_HI_OFS = 0x10,
205 EDMA_REQ_Q_IN_PTR_OFS = 0x14, /* also contains BASE_LO */
31961943
BR
206
207 EDMA_REQ_Q_OUT_PTR_OFS = 0x18,
208 EDMA_REQ_Q_PTR_SHIFT = 5,
209
210 EDMA_RSP_Q_BASE_HI_OFS = 0x1c,
211 EDMA_RSP_Q_IN_PTR_OFS = 0x20,
212 EDMA_RSP_Q_OUT_PTR_OFS = 0x24, /* also contains BASE_LO */
31961943
BR
213 EDMA_RSP_Q_PTR_SHIFT = 3,
214
20f733e7
BR
215 EDMA_CMD_OFS = 0x28,
216 EDMA_EN = (1 << 0),
217 EDMA_DS = (1 << 1),
218 ATA_RST = (1 << 2),
219
c9d39130 220 EDMA_IORDY_TMOUT = 0x34,
bca1c4eb 221 EDMA_ARB_CFG = 0x38,
bca1c4eb 222
31961943
BR
223 /* Host private flags (hp_flags) */
224 MV_HP_FLAG_MSI = (1 << 0),
47c2b677
JG
225 MV_HP_ERRATA_50XXB0 = (1 << 1),
226 MV_HP_ERRATA_50XXB2 = (1 << 2),
227 MV_HP_ERRATA_60X1B2 = (1 << 3),
228 MV_HP_ERRATA_60X1C0 = (1 << 4),
229 MV_HP_50XX = (1 << 5),
20f733e7 230
31961943
BR
231 /* Port private flags (pp_flags) */
232 MV_PP_FLAG_EDMA_EN = (1 << 0),
233 MV_PP_FLAG_EDMA_DS_ACT = (1 << 1),
20f733e7
BR
234};
235
c9d39130 236#define IS_50XX(hpriv) ((hpriv)->hp_flags & MV_HP_50XX)
bca1c4eb
JG
237#define IS_60XX(hpriv) (((hpriv)->hp_flags & MV_HP_50XX) == 0)
238
095fec88
JG
239enum {
240 /* Our DMA boundary is determined by an ePRD being unable to handle
241 * anything larger than 64KB
242 */
243 MV_DMA_BOUNDARY = 0xffffU,
244
245 EDMA_REQ_Q_BASE_LO_MASK = 0xfffffc00U,
246
247 EDMA_RSP_Q_BASE_LO_MASK = 0xffffff00U,
248};
249
522479fb
JG
250enum chip_type {
251 chip_504x,
252 chip_508x,
253 chip_5080,
254 chip_604x,
255 chip_608x,
256};
257
31961943
BR
258/* Command ReQuest Block: 32B */
259struct mv_crqb {
260 u32 sg_addr;
261 u32 sg_addr_hi;
262 u16 ctrl_flags;
263 u16 ata_cmd[11];
264};
20f733e7 265
31961943
BR
266/* Command ResPonse Block: 8B */
267struct mv_crpb {
268 u16 id;
269 u16 flags;
270 u32 tmstmp;
20f733e7
BR
271};
272
31961943
BR
273/* EDMA Physical Region Descriptor (ePRD); A.K.A. SG */
274struct mv_sg {
275 u32 addr;
276 u32 flags_size;
277 u32 addr_hi;
278 u32 reserved;
279};
20f733e7 280
31961943
BR
281struct mv_port_priv {
282 struct mv_crqb *crqb;
283 dma_addr_t crqb_dma;
284 struct mv_crpb *crpb;
285 dma_addr_t crpb_dma;
286 struct mv_sg *sg_tbl;
287 dma_addr_t sg_tbl_dma;
288
289 unsigned req_producer; /* cp of req_in_ptr */
290 unsigned rsp_consumer; /* cp of rsp_out_ptr */
291 u32 pp_flags;
292};
293
bca1c4eb
JG
294struct mv_port_signal {
295 u32 amps;
296 u32 pre;
297};
298
47c2b677
JG
299struct mv_host_priv;
300struct mv_hw_ops {
2a47ce06
JG
301 void (*phy_errata)(struct mv_host_priv *hpriv, void __iomem *mmio,
302 unsigned int port);
47c2b677
JG
303 void (*enable_leds)(struct mv_host_priv *hpriv, void __iomem *mmio);
304 void (*read_preamp)(struct mv_host_priv *hpriv, int idx,
305 void __iomem *mmio);
c9d39130
JG
306 int (*reset_hc)(struct mv_host_priv *hpriv, void __iomem *mmio,
307 unsigned int n_hc);
522479fb
JG
308 void (*reset_flash)(struct mv_host_priv *hpriv, void __iomem *mmio);
309 void (*reset_bus)(struct pci_dev *pdev, void __iomem *mmio);
47c2b677
JG
310};
311
31961943
BR
312struct mv_host_priv {
313 u32 hp_flags;
bca1c4eb 314 struct mv_port_signal signal[8];
47c2b677 315 const struct mv_hw_ops *ops;
20f733e7
BR
316};
317
318static void mv_irq_clear(struct ata_port *ap);
319static u32 mv_scr_read(struct ata_port *ap, unsigned int sc_reg_in);
320static void mv_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val);
c9d39130
JG
321static u32 mv5_scr_read(struct ata_port *ap, unsigned int sc_reg_in);
322static void mv5_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val);
20f733e7 323static void mv_phy_reset(struct ata_port *ap);
31961943
BR
324static void mv_host_stop(struct ata_host_set *host_set);
325static int mv_port_start(struct ata_port *ap);
326static void mv_port_stop(struct ata_port *ap);
327static void mv_qc_prep(struct ata_queued_cmd *qc);
328static int mv_qc_issue(struct ata_queued_cmd *qc);
20f733e7
BR
329static irqreturn_t mv_interrupt(int irq, void *dev_instance,
330 struct pt_regs *regs);
31961943 331static void mv_eng_timeout(struct ata_port *ap);
20f733e7
BR
332static int mv_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
333
2a47ce06
JG
334static void mv5_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
335 unsigned int port);
47c2b677
JG
336static void mv5_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio);
337static void mv5_read_preamp(struct mv_host_priv *hpriv, int idx,
338 void __iomem *mmio);
c9d39130
JG
339static int mv5_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
340 unsigned int n_hc);
522479fb
JG
341static void mv5_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio);
342static void mv5_reset_bus(struct pci_dev *pdev, void __iomem *mmio);
47c2b677 343
2a47ce06
JG
344static void mv6_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
345 unsigned int port);
47c2b677
JG
346static void mv6_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio);
347static void mv6_read_preamp(struct mv_host_priv *hpriv, int idx,
348 void __iomem *mmio);
c9d39130
JG
349static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
350 unsigned int n_hc);
522479fb
JG
351static void mv6_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio);
352static void mv_reset_pci_bus(struct pci_dev *pdev, void __iomem *mmio);
c9d39130
JG
353static void mv_channel_reset(struct mv_host_priv *hpriv, void __iomem *mmio,
354 unsigned int port_no);
355static void mv_stop_and_reset(struct ata_port *ap);
47c2b677 356
193515d5 357static struct scsi_host_template mv_sht = {
20f733e7
BR
358 .module = THIS_MODULE,
359 .name = DRV_NAME,
360 .ioctl = ata_scsi_ioctl,
361 .queuecommand = ata_scsi_queuecmd,
362 .eh_strategy_handler = ata_scsi_error,
31961943 363 .can_queue = MV_USE_Q_DEPTH,
20f733e7 364 .this_id = ATA_SHT_THIS_ID,
31961943 365 .sg_tablesize = MV_MAX_SG_CT,
20f733e7
BR
366 .max_sectors = ATA_MAX_SECTORS,
367 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
368 .emulated = ATA_SHT_EMULATED,
31961943 369 .use_clustering = ATA_SHT_USE_CLUSTERING,
20f733e7
BR
370 .proc_name = DRV_NAME,
371 .dma_boundary = MV_DMA_BOUNDARY,
372 .slave_configure = ata_scsi_slave_config,
373 .bios_param = ata_std_bios_param,
374 .ordered_flush = 1,
375};
376
c9d39130
JG
377static const struct ata_port_operations mv5_ops = {
378 .port_disable = ata_port_disable,
379
380 .tf_load = ata_tf_load,
381 .tf_read = ata_tf_read,
382 .check_status = ata_check_status,
383 .exec_command = ata_exec_command,
384 .dev_select = ata_std_dev_select,
385
386 .phy_reset = mv_phy_reset,
387
388 .qc_prep = mv_qc_prep,
389 .qc_issue = mv_qc_issue,
390
391 .eng_timeout = mv_eng_timeout,
392
393 .irq_handler = mv_interrupt,
394 .irq_clear = mv_irq_clear,
395
396 .scr_read = mv5_scr_read,
397 .scr_write = mv5_scr_write,
398
399 .port_start = mv_port_start,
400 .port_stop = mv_port_stop,
401 .host_stop = mv_host_stop,
402};
403
404static const struct ata_port_operations mv6_ops = {
20f733e7
BR
405 .port_disable = ata_port_disable,
406
407 .tf_load = ata_tf_load,
408 .tf_read = ata_tf_read,
409 .check_status = ata_check_status,
410 .exec_command = ata_exec_command,
411 .dev_select = ata_std_dev_select,
412
413 .phy_reset = mv_phy_reset,
414
31961943
BR
415 .qc_prep = mv_qc_prep,
416 .qc_issue = mv_qc_issue,
20f733e7 417
31961943 418 .eng_timeout = mv_eng_timeout,
20f733e7
BR
419
420 .irq_handler = mv_interrupt,
421 .irq_clear = mv_irq_clear,
422
423 .scr_read = mv_scr_read,
424 .scr_write = mv_scr_write,
425
31961943
BR
426 .port_start = mv_port_start,
427 .port_stop = mv_port_stop,
428 .host_stop = mv_host_stop,
20f733e7
BR
429};
430
431static struct ata_port_info mv_port_info[] = {
432 { /* chip_504x */
433 .sht = &mv_sht,
31961943
BR
434 .host_flags = MV_COMMON_FLAGS,
435 .pio_mask = 0x1f, /* pio0-4 */
c9d39130
JG
436 .udma_mask = 0x7f, /* udma0-6 */
437 .port_ops = &mv5_ops,
20f733e7
BR
438 },
439 { /* chip_508x */
440 .sht = &mv_sht,
31961943
BR
441 .host_flags = (MV_COMMON_FLAGS | MV_FLAG_DUAL_HC),
442 .pio_mask = 0x1f, /* pio0-4 */
c9d39130
JG
443 .udma_mask = 0x7f, /* udma0-6 */
444 .port_ops = &mv5_ops,
20f733e7 445 },
47c2b677
JG
446 { /* chip_5080 */
447 .sht = &mv_sht,
448 .host_flags = (MV_COMMON_FLAGS | MV_FLAG_DUAL_HC),
449 .pio_mask = 0x1f, /* pio0-4 */
c9d39130
JG
450 .udma_mask = 0x7f, /* udma0-6 */
451 .port_ops = &mv5_ops,
47c2b677 452 },
20f733e7
BR
453 { /* chip_604x */
454 .sht = &mv_sht,
31961943
BR
455 .host_flags = (MV_COMMON_FLAGS | MV_6XXX_FLAGS),
456 .pio_mask = 0x1f, /* pio0-4 */
457 .udma_mask = 0x7f, /* udma0-6 */
c9d39130 458 .port_ops = &mv6_ops,
20f733e7
BR
459 },
460 { /* chip_608x */
461 .sht = &mv_sht,
8b260248 462 .host_flags = (MV_COMMON_FLAGS | MV_6XXX_FLAGS |
31961943
BR
463 MV_FLAG_DUAL_HC),
464 .pio_mask = 0x1f, /* pio0-4 */
465 .udma_mask = 0x7f, /* udma0-6 */
c9d39130 466 .port_ops = &mv6_ops,
20f733e7
BR
467 },
468};
469
3b7d697d 470static const struct pci_device_id mv_pci_tbl[] = {
20f733e7
BR
471 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5040), 0, 0, chip_504x},
472 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5041), 0, 0, chip_504x},
47c2b677 473 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5080), 0, 0, chip_5080},
20f733e7
BR
474 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5081), 0, 0, chip_508x},
475
476 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6040), 0, 0, chip_604x},
477 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6041), 0, 0, chip_604x},
478 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6080), 0, 0, chip_608x},
479 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6081), 0, 0, chip_608x},
29179539
JG
480
481 {PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x0241), 0, 0, chip_604x},
20f733e7
BR
482 {} /* terminate list */
483};
484
485static struct pci_driver mv_pci_driver = {
486 .name = DRV_NAME,
487 .id_table = mv_pci_tbl,
488 .probe = mv_init_one,
489 .remove = ata_pci_remove_one,
490};
491
47c2b677
JG
492static const struct mv_hw_ops mv5xxx_ops = {
493 .phy_errata = mv5_phy_errata,
494 .enable_leds = mv5_enable_leds,
495 .read_preamp = mv5_read_preamp,
496 .reset_hc = mv5_reset_hc,
522479fb
JG
497 .reset_flash = mv5_reset_flash,
498 .reset_bus = mv5_reset_bus,
47c2b677
JG
499};
500
501static const struct mv_hw_ops mv6xxx_ops = {
502 .phy_errata = mv6_phy_errata,
503 .enable_leds = mv6_enable_leds,
504 .read_preamp = mv6_read_preamp,
505 .reset_hc = mv6_reset_hc,
522479fb
JG
506 .reset_flash = mv6_reset_flash,
507 .reset_bus = mv_reset_pci_bus,
47c2b677
JG
508};
509
20f733e7
BR
510/*
511 * Functions
512 */
513
514static inline void writelfl(unsigned long data, void __iomem *addr)
515{
516 writel(data, addr);
517 (void) readl(addr); /* flush to avoid PCI posted write */
518}
519
20f733e7
BR
520static inline void __iomem *mv_hc_base(void __iomem *base, unsigned int hc)
521{
522 return (base + MV_SATAHC0_REG_BASE + (hc * MV_SATAHC_REG_SZ));
523}
524
c9d39130
JG
525static inline unsigned int mv_hc_from_port(unsigned int port)
526{
527 return port >> MV_PORT_HC_SHIFT;
528}
529
530static inline unsigned int mv_hardport_from_port(unsigned int port)
531{
532 return port & MV_PORT_MASK;
533}
534
535static inline void __iomem *mv_hc_base_from_port(void __iomem *base,
536 unsigned int port)
537{
538 return mv_hc_base(base, mv_hc_from_port(port));
539}
540
20f733e7
BR
541static inline void __iomem *mv_port_base(void __iomem *base, unsigned int port)
542{
c9d39130 543 return mv_hc_base_from_port(base, port) +
8b260248 544 MV_SATAHC_ARBTR_REG_SZ +
c9d39130 545 (mv_hardport_from_port(port) * MV_PORT_REG_SZ);
20f733e7
BR
546}
547
548static inline void __iomem *mv_ap_base(struct ata_port *ap)
549{
550 return mv_port_base(ap->host_set->mmio_base, ap->port_no);
551}
552
bca1c4eb 553static inline int mv_get_hc_count(unsigned long host_flags)
31961943 554{
bca1c4eb 555 return ((host_flags & MV_FLAG_DUAL_HC) ? 2 : 1);
31961943
BR
556}
557
558static void mv_irq_clear(struct ata_port *ap)
20f733e7 559{
20f733e7
BR
560}
561
05b308e1
BR
562/**
563 * mv_start_dma - Enable eDMA engine
564 * @base: port base address
565 * @pp: port private data
566 *
567 * Verify the local cache of the eDMA state is accurate with an
568 * assert.
569 *
570 * LOCKING:
571 * Inherited from caller.
572 */
afb0edd9 573static void mv_start_dma(void __iomem *base, struct mv_port_priv *pp)
20f733e7 574{
afb0edd9
BR
575 if (!(MV_PP_FLAG_EDMA_EN & pp->pp_flags)) {
576 writelfl(EDMA_EN, base + EDMA_CMD_OFS);
577 pp->pp_flags |= MV_PP_FLAG_EDMA_EN;
578 }
579 assert(EDMA_EN & readl(base + EDMA_CMD_OFS));
20f733e7
BR
580}
581
05b308e1
BR
582/**
583 * mv_stop_dma - Disable eDMA engine
584 * @ap: ATA channel to manipulate
585 *
586 * Verify the local cache of the eDMA state is accurate with an
587 * assert.
588 *
589 * LOCKING:
590 * Inherited from caller.
591 */
31961943 592static void mv_stop_dma(struct ata_port *ap)
20f733e7 593{
31961943
BR
594 void __iomem *port_mmio = mv_ap_base(ap);
595 struct mv_port_priv *pp = ap->private_data;
31961943
BR
596 u32 reg;
597 int i;
598
afb0edd9
BR
599 if (MV_PP_FLAG_EDMA_EN & pp->pp_flags) {
600 /* Disable EDMA if active. The disable bit auto clears.
31961943 601 */
31961943
BR
602 writelfl(EDMA_DS, port_mmio + EDMA_CMD_OFS);
603 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
afb0edd9
BR
604 } else {
605 assert(!(EDMA_EN & readl(port_mmio + EDMA_CMD_OFS)));
606 }
8b260248 607
31961943
BR
608 /* now properly wait for the eDMA to stop */
609 for (i = 1000; i > 0; i--) {
610 reg = readl(port_mmio + EDMA_CMD_OFS);
611 if (!(EDMA_EN & reg)) {
612 break;
613 }
614 udelay(100);
615 }
616
31961943
BR
617 if (EDMA_EN & reg) {
618 printk(KERN_ERR "ata%u: Unable to stop eDMA\n", ap->id);
afb0edd9 619 /* FIXME: Consider doing a reset here to recover */
31961943 620 }
20f733e7
BR
621}
622
8a70f8dc 623#ifdef ATA_DEBUG
31961943 624static void mv_dump_mem(void __iomem *start, unsigned bytes)
20f733e7 625{
31961943
BR
626 int b, w;
627 for (b = 0; b < bytes; ) {
628 DPRINTK("%p: ", start + b);
629 for (w = 0; b < bytes && w < 4; w++) {
630 printk("%08x ",readl(start + b));
631 b += sizeof(u32);
632 }
633 printk("\n");
634 }
31961943 635}
8a70f8dc
JG
636#endif
637
31961943
BR
638static void mv_dump_pci_cfg(struct pci_dev *pdev, unsigned bytes)
639{
640#ifdef ATA_DEBUG
641 int b, w;
642 u32 dw;
643 for (b = 0; b < bytes; ) {
644 DPRINTK("%02x: ", b);
645 for (w = 0; b < bytes && w < 4; w++) {
646 (void) pci_read_config_dword(pdev,b,&dw);
647 printk("%08x ",dw);
648 b += sizeof(u32);
649 }
650 printk("\n");
651 }
652#endif
653}
654static void mv_dump_all_regs(void __iomem *mmio_base, int port,
655 struct pci_dev *pdev)
656{
657#ifdef ATA_DEBUG
8b260248 658 void __iomem *hc_base = mv_hc_base(mmio_base,
31961943
BR
659 port >> MV_PORT_HC_SHIFT);
660 void __iomem *port_base;
661 int start_port, num_ports, p, start_hc, num_hcs, hc;
662
663 if (0 > port) {
664 start_hc = start_port = 0;
665 num_ports = 8; /* shld be benign for 4 port devs */
666 num_hcs = 2;
667 } else {
668 start_hc = port >> MV_PORT_HC_SHIFT;
669 start_port = port;
670 num_ports = num_hcs = 1;
671 }
8b260248 672 DPRINTK("All registers for port(s) %u-%u:\n", start_port,
31961943
BR
673 num_ports > 1 ? num_ports - 1 : start_port);
674
675 if (NULL != pdev) {
676 DPRINTK("PCI config space regs:\n");
677 mv_dump_pci_cfg(pdev, 0x68);
678 }
679 DPRINTK("PCI regs:\n");
680 mv_dump_mem(mmio_base+0xc00, 0x3c);
681 mv_dump_mem(mmio_base+0xd00, 0x34);
682 mv_dump_mem(mmio_base+0xf00, 0x4);
683 mv_dump_mem(mmio_base+0x1d00, 0x6c);
684 for (hc = start_hc; hc < start_hc + num_hcs; hc++) {
685 hc_base = mv_hc_base(mmio_base, port >> MV_PORT_HC_SHIFT);
686 DPRINTK("HC regs (HC %i):\n", hc);
687 mv_dump_mem(hc_base, 0x1c);
688 }
689 for (p = start_port; p < start_port + num_ports; p++) {
690 port_base = mv_port_base(mmio_base, p);
691 DPRINTK("EDMA regs (port %i):\n",p);
692 mv_dump_mem(port_base, 0x54);
693 DPRINTK("SATA regs (port %i):\n",p);
694 mv_dump_mem(port_base+0x300, 0x60);
695 }
696#endif
20f733e7
BR
697}
698
699static unsigned int mv_scr_offset(unsigned int sc_reg_in)
700{
701 unsigned int ofs;
702
703 switch (sc_reg_in) {
704 case SCR_STATUS:
705 case SCR_CONTROL:
706 case SCR_ERROR:
707 ofs = SATA_STATUS_OFS + (sc_reg_in * sizeof(u32));
708 break;
709 case SCR_ACTIVE:
710 ofs = SATA_ACTIVE_OFS; /* active is not with the others */
711 break;
712 default:
713 ofs = 0xffffffffU;
714 break;
715 }
716 return ofs;
717}
718
719static u32 mv_scr_read(struct ata_port *ap, unsigned int sc_reg_in)
720{
721 unsigned int ofs = mv_scr_offset(sc_reg_in);
722
723 if (0xffffffffU != ofs) {
724 return readl(mv_ap_base(ap) + ofs);
725 } else {
726 return (u32) ofs;
727 }
728}
729
730static void mv_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val)
731{
732 unsigned int ofs = mv_scr_offset(sc_reg_in);
733
734 if (0xffffffffU != ofs) {
735 writelfl(val, mv_ap_base(ap) + ofs);
736 }
737}
738
05b308e1
BR
739/**
740 * mv_host_stop - Host specific cleanup/stop routine.
741 * @host_set: host data structure
742 *
743 * Disable ints, cleanup host memory, call general purpose
744 * host_stop.
745 *
746 * LOCKING:
747 * Inherited from caller.
748 */
31961943 749static void mv_host_stop(struct ata_host_set *host_set)
20f733e7 750{
31961943
BR
751 struct mv_host_priv *hpriv = host_set->private_data;
752 struct pci_dev *pdev = to_pci_dev(host_set->dev);
753
754 if (hpriv->hp_flags & MV_HP_FLAG_MSI) {
755 pci_disable_msi(pdev);
756 } else {
757 pci_intx(pdev, 0);
758 }
759 kfree(hpriv);
760 ata_host_stop(host_set);
761}
762
6037d6bb
JG
763static inline void mv_priv_free(struct mv_port_priv *pp, struct device *dev)
764{
765 dma_free_coherent(dev, MV_PORT_PRIV_DMA_SZ, pp->crpb, pp->crpb_dma);
766}
767
05b308e1
BR
768/**
769 * mv_port_start - Port specific init/start routine.
770 * @ap: ATA channel to manipulate
771 *
772 * Allocate and point to DMA memory, init port private memory,
773 * zero indices.
774 *
775 * LOCKING:
776 * Inherited from caller.
777 */
31961943
BR
778static int mv_port_start(struct ata_port *ap)
779{
780 struct device *dev = ap->host_set->dev;
781 struct mv_port_priv *pp;
782 void __iomem *port_mmio = mv_ap_base(ap);
783 void *mem;
784 dma_addr_t mem_dma;
6037d6bb 785 int rc = -ENOMEM;
31961943
BR
786
787 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
6037d6bb
JG
788 if (!pp)
789 goto err_out;
31961943
BR
790 memset(pp, 0, sizeof(*pp));
791
8b260248 792 mem = dma_alloc_coherent(dev, MV_PORT_PRIV_DMA_SZ, &mem_dma,
31961943 793 GFP_KERNEL);
6037d6bb
JG
794 if (!mem)
795 goto err_out_pp;
31961943
BR
796 memset(mem, 0, MV_PORT_PRIV_DMA_SZ);
797
6037d6bb
JG
798 rc = ata_pad_alloc(ap, dev);
799 if (rc)
800 goto err_out_priv;
801
8b260248 802 /* First item in chunk of DMA memory:
31961943
BR
803 * 32-slot command request table (CRQB), 32 bytes each in size
804 */
805 pp->crqb = mem;
806 pp->crqb_dma = mem_dma;
807 mem += MV_CRQB_Q_SZ;
808 mem_dma += MV_CRQB_Q_SZ;
809
8b260248 810 /* Second item:
31961943
BR
811 * 32-slot command response table (CRPB), 8 bytes each in size
812 */
813 pp->crpb = mem;
814 pp->crpb_dma = mem_dma;
815 mem += MV_CRPB_Q_SZ;
816 mem_dma += MV_CRPB_Q_SZ;
817
818 /* Third item:
819 * Table of scatter-gather descriptors (ePRD), 16 bytes each
820 */
821 pp->sg_tbl = mem;
822 pp->sg_tbl_dma = mem_dma;
823
8b260248 824 writelfl(EDMA_CFG_Q_DEPTH | EDMA_CFG_RD_BRST_EXT |
31961943
BR
825 EDMA_CFG_WR_BUFF_LEN, port_mmio + EDMA_CFG_OFS);
826
827 writel((pp->crqb_dma >> 16) >> 16, port_mmio + EDMA_REQ_Q_BASE_HI_OFS);
8b260248 828 writelfl(pp->crqb_dma & EDMA_REQ_Q_BASE_LO_MASK,
31961943
BR
829 port_mmio + EDMA_REQ_Q_IN_PTR_OFS);
830
831 writelfl(0, port_mmio + EDMA_REQ_Q_OUT_PTR_OFS);
832 writelfl(0, port_mmio + EDMA_RSP_Q_IN_PTR_OFS);
833
834 writel((pp->crpb_dma >> 16) >> 16, port_mmio + EDMA_RSP_Q_BASE_HI_OFS);
8b260248 835 writelfl(pp->crpb_dma & EDMA_RSP_Q_BASE_LO_MASK,
31961943
BR
836 port_mmio + EDMA_RSP_Q_OUT_PTR_OFS);
837
838 pp->req_producer = pp->rsp_consumer = 0;
839
840 /* Don't turn on EDMA here...do it before DMA commands only. Else
841 * we'll be unable to send non-data, PIO, etc due to restricted access
842 * to shadow regs.
843 */
844 ap->private_data = pp;
845 return 0;
6037d6bb
JG
846
847err_out_priv:
848 mv_priv_free(pp, dev);
849err_out_pp:
850 kfree(pp);
851err_out:
852 return rc;
31961943
BR
853}
854
05b308e1
BR
855/**
856 * mv_port_stop - Port specific cleanup/stop routine.
857 * @ap: ATA channel to manipulate
858 *
859 * Stop DMA, cleanup port memory.
860 *
861 * LOCKING:
862 * This routine uses the host_set lock to protect the DMA stop.
863 */
31961943
BR
864static void mv_port_stop(struct ata_port *ap)
865{
866 struct device *dev = ap->host_set->dev;
867 struct mv_port_priv *pp = ap->private_data;
afb0edd9 868 unsigned long flags;
31961943 869
afb0edd9 870 spin_lock_irqsave(&ap->host_set->lock, flags);
31961943 871 mv_stop_dma(ap);
afb0edd9 872 spin_unlock_irqrestore(&ap->host_set->lock, flags);
31961943
BR
873
874 ap->private_data = NULL;
6037d6bb
JG
875 ata_pad_free(ap, dev);
876 mv_priv_free(pp, dev);
31961943
BR
877 kfree(pp);
878}
879
05b308e1
BR
880/**
881 * mv_fill_sg - Fill out the Marvell ePRD (scatter gather) entries
882 * @qc: queued command whose SG list to source from
883 *
884 * Populate the SG list and mark the last entry.
885 *
886 * LOCKING:
887 * Inherited from caller.
888 */
31961943
BR
889static void mv_fill_sg(struct ata_queued_cmd *qc)
890{
891 struct mv_port_priv *pp = qc->ap->private_data;
972c26bd
JG
892 unsigned int i = 0;
893 struct scatterlist *sg;
31961943 894
972c26bd 895 ata_for_each_sg(sg, qc) {
31961943
BR
896 u32 sg_len;
897 dma_addr_t addr;
898
972c26bd
JG
899 addr = sg_dma_address(sg);
900 sg_len = sg_dma_len(sg);
31961943
BR
901
902 pp->sg_tbl[i].addr = cpu_to_le32(addr & 0xffffffff);
903 pp->sg_tbl[i].addr_hi = cpu_to_le32((addr >> 16) >> 16);
904 assert(0 == (sg_len & ~MV_DMA_BOUNDARY));
905 pp->sg_tbl[i].flags_size = cpu_to_le32(sg_len);
972c26bd
JG
906 if (ata_sg_is_last(sg, qc))
907 pp->sg_tbl[i].flags_size |= cpu_to_le32(EPRD_FLAG_END_OF_TBL);
908
909 i++;
31961943
BR
910 }
911}
912
913static inline unsigned mv_inc_q_index(unsigned *index)
914{
915 *index = (*index + 1) & MV_MAX_Q_DEPTH_MASK;
916 return *index;
917}
918
919static inline void mv_crqb_pack_cmd(u16 *cmdw, u8 data, u8 addr, unsigned last)
920{
921 *cmdw = data | (addr << CRQB_CMD_ADDR_SHIFT) | CRQB_CMD_CS |
922 (last ? CRQB_CMD_LAST : 0);
923}
924
05b308e1
BR
925/**
926 * mv_qc_prep - Host specific command preparation.
927 * @qc: queued command to prepare
928 *
929 * This routine simply redirects to the general purpose routine
930 * if command is not DMA. Else, it handles prep of the CRQB
931 * (command request block), does some sanity checking, and calls
932 * the SG load routine.
933 *
934 * LOCKING:
935 * Inherited from caller.
936 */
31961943
BR
937static void mv_qc_prep(struct ata_queued_cmd *qc)
938{
939 struct ata_port *ap = qc->ap;
940 struct mv_port_priv *pp = ap->private_data;
941 u16 *cw;
942 struct ata_taskfile *tf;
943 u16 flags = 0;
944
945 if (ATA_PROT_DMA != qc->tf.protocol) {
946 return;
947 }
20f733e7 948
31961943 949 /* the req producer index should be the same as we remember it */
8b260248 950 assert(((readl(mv_ap_base(qc->ap) + EDMA_REQ_Q_IN_PTR_OFS) >>
31961943
BR
951 EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
952 pp->req_producer);
953
954 /* Fill in command request block
955 */
956 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
957 flags |= CRQB_FLAG_READ;
958 }
959 assert(MV_MAX_Q_DEPTH > qc->tag);
960 flags |= qc->tag << CRQB_TAG_SHIFT;
961
8b260248 962 pp->crqb[pp->req_producer].sg_addr =
31961943 963 cpu_to_le32(pp->sg_tbl_dma & 0xffffffff);
8b260248 964 pp->crqb[pp->req_producer].sg_addr_hi =
31961943
BR
965 cpu_to_le32((pp->sg_tbl_dma >> 16) >> 16);
966 pp->crqb[pp->req_producer].ctrl_flags = cpu_to_le16(flags);
967
968 cw = &pp->crqb[pp->req_producer].ata_cmd[0];
969 tf = &qc->tf;
970
971 /* Sadly, the CRQB cannot accomodate all registers--there are
972 * only 11 bytes...so we must pick and choose required
973 * registers based on the command. So, we drop feature and
974 * hob_feature for [RW] DMA commands, but they are needed for
975 * NCQ. NCQ will drop hob_nsect.
20f733e7 976 */
31961943
BR
977 switch (tf->command) {
978 case ATA_CMD_READ:
979 case ATA_CMD_READ_EXT:
980 case ATA_CMD_WRITE:
981 case ATA_CMD_WRITE_EXT:
982 mv_crqb_pack_cmd(cw++, tf->hob_nsect, ATA_REG_NSECT, 0);
983 break;
984#ifdef LIBATA_NCQ /* FIXME: remove this line when NCQ added */
985 case ATA_CMD_FPDMA_READ:
986 case ATA_CMD_FPDMA_WRITE:
8b260248 987 mv_crqb_pack_cmd(cw++, tf->hob_feature, ATA_REG_FEATURE, 0);
31961943
BR
988 mv_crqb_pack_cmd(cw++, tf->feature, ATA_REG_FEATURE, 0);
989 break;
990#endif /* FIXME: remove this line when NCQ added */
991 default:
992 /* The only other commands EDMA supports in non-queued and
993 * non-NCQ mode are: [RW] STREAM DMA and W DMA FUA EXT, none
994 * of which are defined/used by Linux. If we get here, this
995 * driver needs work.
996 *
997 * FIXME: modify libata to give qc_prep a return value and
998 * return error here.
999 */
1000 BUG_ON(tf->command);
1001 break;
1002 }
1003 mv_crqb_pack_cmd(cw++, tf->nsect, ATA_REG_NSECT, 0);
1004 mv_crqb_pack_cmd(cw++, tf->hob_lbal, ATA_REG_LBAL, 0);
1005 mv_crqb_pack_cmd(cw++, tf->lbal, ATA_REG_LBAL, 0);
1006 mv_crqb_pack_cmd(cw++, tf->hob_lbam, ATA_REG_LBAM, 0);
1007 mv_crqb_pack_cmd(cw++, tf->lbam, ATA_REG_LBAM, 0);
1008 mv_crqb_pack_cmd(cw++, tf->hob_lbah, ATA_REG_LBAH, 0);
1009 mv_crqb_pack_cmd(cw++, tf->lbah, ATA_REG_LBAH, 0);
1010 mv_crqb_pack_cmd(cw++, tf->device, ATA_REG_DEVICE, 0);
1011 mv_crqb_pack_cmd(cw++, tf->command, ATA_REG_CMD, 1); /* last */
1012
1013 if (!(qc->flags & ATA_QCFLAG_DMAMAP)) {
1014 return;
1015 }
1016 mv_fill_sg(qc);
1017}
1018
05b308e1
BR
1019/**
1020 * mv_qc_issue - Initiate a command to the host
1021 * @qc: queued command to start
1022 *
1023 * This routine simply redirects to the general purpose routine
1024 * if command is not DMA. Else, it sanity checks our local
1025 * caches of the request producer/consumer indices then enables
1026 * DMA and bumps the request producer index.
1027 *
1028 * LOCKING:
1029 * Inherited from caller.
1030 */
31961943
BR
1031static int mv_qc_issue(struct ata_queued_cmd *qc)
1032{
1033 void __iomem *port_mmio = mv_ap_base(qc->ap);
1034 struct mv_port_priv *pp = qc->ap->private_data;
1035 u32 in_ptr;
1036
1037 if (ATA_PROT_DMA != qc->tf.protocol) {
1038 /* We're about to send a non-EDMA capable command to the
1039 * port. Turn off EDMA so there won't be problems accessing
1040 * shadow block, etc registers.
1041 */
1042 mv_stop_dma(qc->ap);
1043 return ata_qc_issue_prot(qc);
1044 }
1045
1046 in_ptr = readl(port_mmio + EDMA_REQ_Q_IN_PTR_OFS);
1047
1048 /* the req producer index should be the same as we remember it */
1049 assert(((in_ptr >> EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
1050 pp->req_producer);
1051 /* until we do queuing, the queue should be empty at this point */
1052 assert(((in_ptr >> EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
8b260248 1053 ((readl(port_mmio + EDMA_REQ_Q_OUT_PTR_OFS) >>
31961943
BR
1054 EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK));
1055
1056 mv_inc_q_index(&pp->req_producer); /* now incr producer index */
1057
afb0edd9 1058 mv_start_dma(port_mmio, pp);
31961943
BR
1059
1060 /* and write the request in pointer to kick the EDMA to life */
1061 in_ptr &= EDMA_REQ_Q_BASE_LO_MASK;
1062 in_ptr |= pp->req_producer << EDMA_REQ_Q_PTR_SHIFT;
1063 writelfl(in_ptr, port_mmio + EDMA_REQ_Q_IN_PTR_OFS);
1064
1065 return 0;
1066}
1067
05b308e1
BR
1068/**
1069 * mv_get_crpb_status - get status from most recently completed cmd
1070 * @ap: ATA channel to manipulate
1071 *
1072 * This routine is for use when the port is in DMA mode, when it
1073 * will be using the CRPB (command response block) method of
1074 * returning command completion information. We assert indices
1075 * are good, grab status, and bump the response consumer index to
1076 * prove that we're up to date.
1077 *
1078 * LOCKING:
1079 * Inherited from caller.
1080 */
31961943
BR
1081static u8 mv_get_crpb_status(struct ata_port *ap)
1082{
1083 void __iomem *port_mmio = mv_ap_base(ap);
1084 struct mv_port_priv *pp = ap->private_data;
1085 u32 out_ptr;
1086
1087 out_ptr = readl(port_mmio + EDMA_RSP_Q_OUT_PTR_OFS);
1088
1089 /* the response consumer index should be the same as we remember it */
8b260248 1090 assert(((out_ptr >> EDMA_RSP_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
31961943
BR
1091 pp->rsp_consumer);
1092
1093 /* increment our consumer index... */
1094 pp->rsp_consumer = mv_inc_q_index(&pp->rsp_consumer);
8b260248 1095
31961943 1096 /* and, until we do NCQ, there should only be 1 CRPB waiting */
8b260248
JG
1097 assert(((readl(port_mmio + EDMA_RSP_Q_IN_PTR_OFS) >>
1098 EDMA_RSP_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
31961943
BR
1099 pp->rsp_consumer);
1100
1101 /* write out our inc'd consumer index so EDMA knows we're caught up */
1102 out_ptr &= EDMA_RSP_Q_BASE_LO_MASK;
1103 out_ptr |= pp->rsp_consumer << EDMA_RSP_Q_PTR_SHIFT;
1104 writelfl(out_ptr, port_mmio + EDMA_RSP_Q_OUT_PTR_OFS);
1105
1106 /* Return ATA status register for completed CRPB */
1107 return (pp->crpb[pp->rsp_consumer].flags >> CRPB_FLAG_STATUS_SHIFT);
1108}
1109
05b308e1
BR
1110/**
1111 * mv_err_intr - Handle error interrupts on the port
1112 * @ap: ATA channel to manipulate
1113 *
1114 * In most cases, just clear the interrupt and move on. However,
1115 * some cases require an eDMA reset, which is done right before
1116 * the COMRESET in mv_phy_reset(). The SERR case requires a
1117 * clear of pending errors in the SATA SERROR register. Finally,
1118 * if the port disabled DMA, update our cached copy to match.
1119 *
1120 * LOCKING:
1121 * Inherited from caller.
1122 */
31961943
BR
1123static void mv_err_intr(struct ata_port *ap)
1124{
1125 void __iomem *port_mmio = mv_ap_base(ap);
1126 u32 edma_err_cause, serr = 0;
20f733e7
BR
1127
1128 edma_err_cause = readl(port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
1129
1130 if (EDMA_ERR_SERR & edma_err_cause) {
1131 serr = scr_read(ap, SCR_ERROR);
1132 scr_write_flush(ap, SCR_ERROR, serr);
1133 }
afb0edd9
BR
1134 if (EDMA_ERR_SELF_DIS & edma_err_cause) {
1135 struct mv_port_priv *pp = ap->private_data;
1136 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
1137 }
1138 DPRINTK(KERN_ERR "ata%u: port error; EDMA err cause: 0x%08x "
1139 "SERR: 0x%08x\n", ap->id, edma_err_cause, serr);
20f733e7
BR
1140
1141 /* Clear EDMA now that SERR cleanup done */
1142 writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
1143
1144 /* check for fatal here and recover if needed */
1145 if (EDMA_ERR_FATAL & edma_err_cause) {
c9d39130 1146 mv_stop_and_reset(ap);
20f733e7
BR
1147 }
1148}
1149
05b308e1
BR
1150/**
1151 * mv_host_intr - Handle all interrupts on the given host controller
1152 * @host_set: host specific structure
1153 * @relevant: port error bits relevant to this host controller
1154 * @hc: which host controller we're to look at
1155 *
1156 * Read then write clear the HC interrupt status then walk each
1157 * port connected to the HC and see if it needs servicing. Port
1158 * success ints are reported in the HC interrupt status reg, the
1159 * port error ints are reported in the higher level main
1160 * interrupt status register and thus are passed in via the
1161 * 'relevant' argument.
1162 *
1163 * LOCKING:
1164 * Inherited from caller.
1165 */
20f733e7
BR
1166static void mv_host_intr(struct ata_host_set *host_set, u32 relevant,
1167 unsigned int hc)
1168{
1169 void __iomem *mmio = host_set->mmio_base;
1170 void __iomem *hc_mmio = mv_hc_base(mmio, hc);
1171 struct ata_port *ap;
1172 struct ata_queued_cmd *qc;
1173 u32 hc_irq_cause;
31961943 1174 int shift, port, port0, hard_port, handled;
a7dac447 1175 unsigned int err_mask;
31961943 1176 u8 ata_status = 0;
20f733e7
BR
1177
1178 if (hc == 0) {
1179 port0 = 0;
1180 } else {
1181 port0 = MV_PORTS_PER_HC;
1182 }
1183
1184 /* we'll need the HC success int register in most cases */
1185 hc_irq_cause = readl(hc_mmio + HC_IRQ_CAUSE_OFS);
1186 if (hc_irq_cause) {
31961943 1187 writelfl(~hc_irq_cause, hc_mmio + HC_IRQ_CAUSE_OFS);
20f733e7
BR
1188 }
1189
1190 VPRINTK("ENTER, hc%u relevant=0x%08x HC IRQ cause=0x%08x\n",
1191 hc,relevant,hc_irq_cause);
1192
1193 for (port = port0; port < port0 + MV_PORTS_PER_HC; port++) {
1194 ap = host_set->ports[port];
1195 hard_port = port & MV_PORT_MASK; /* range 0-3 */
31961943 1196 handled = 0; /* ensure ata_status is set if handled++ */
20f733e7 1197
31961943
BR
1198 if ((CRPB_DMA_DONE << hard_port) & hc_irq_cause) {
1199 /* new CRPB on the queue; just one at a time until NCQ
1200 */
1201 ata_status = mv_get_crpb_status(ap);
1202 handled++;
1203 } else if ((DEV_IRQ << hard_port) & hc_irq_cause) {
1204 /* received ATA IRQ; read the status reg to clear INTRQ
20f733e7
BR
1205 */
1206 ata_status = readb((void __iomem *)
1207 ap->ioaddr.status_addr);
31961943 1208 handled++;
20f733e7
BR
1209 }
1210
a7dac447
JG
1211 err_mask = ac_err_mask(ata_status);
1212
31961943 1213 shift = port << 1; /* (port * 2) */
20f733e7
BR
1214 if (port >= MV_PORTS_PER_HC) {
1215 shift++; /* skip bit 8 in the HC Main IRQ reg */
1216 }
1217 if ((PORT0_ERR << shift) & relevant) {
1218 mv_err_intr(ap);
a7dac447 1219 err_mask |= AC_ERR_OTHER;
31961943 1220 handled++;
20f733e7 1221 }
8b260248 1222
31961943 1223 if (handled && ap) {
20f733e7
BR
1224 qc = ata_qc_from_tag(ap, ap->active_tag);
1225 if (NULL != qc) {
1226 VPRINTK("port %u IRQ found for qc, "
1227 "ata_status 0x%x\n", port,ata_status);
20f733e7 1228 /* mark qc status appropriately */
a7dac447 1229 ata_qc_complete(qc, err_mask);
20f733e7
BR
1230 }
1231 }
1232 }
1233 VPRINTK("EXIT\n");
1234}
1235
05b308e1 1236/**
8b260248 1237 * mv_interrupt -
05b308e1
BR
1238 * @irq: unused
1239 * @dev_instance: private data; in this case the host structure
1240 * @regs: unused
1241 *
1242 * Read the read only register to determine if any host
1243 * controllers have pending interrupts. If so, call lower level
1244 * routine to handle. Also check for PCI errors which are only
1245 * reported here.
1246 *
8b260248 1247 * LOCKING:
05b308e1
BR
1248 * This routine holds the host_set lock while processing pending
1249 * interrupts.
1250 */
20f733e7
BR
1251static irqreturn_t mv_interrupt(int irq, void *dev_instance,
1252 struct pt_regs *regs)
1253{
1254 struct ata_host_set *host_set = dev_instance;
1255 unsigned int hc, handled = 0, n_hcs;
31961943 1256 void __iomem *mmio = host_set->mmio_base;
20f733e7
BR
1257 u32 irq_stat;
1258
20f733e7 1259 irq_stat = readl(mmio + HC_MAIN_IRQ_CAUSE_OFS);
20f733e7
BR
1260
1261 /* check the cases where we either have nothing pending or have read
1262 * a bogus register value which can indicate HW removal or PCI fault
1263 */
1264 if (!irq_stat || (0xffffffffU == irq_stat)) {
1265 return IRQ_NONE;
1266 }
1267
31961943 1268 n_hcs = mv_get_hc_count(host_set->ports[0]->flags);
20f733e7
BR
1269 spin_lock(&host_set->lock);
1270
1271 for (hc = 0; hc < n_hcs; hc++) {
1272 u32 relevant = irq_stat & (HC0_IRQ_PEND << (hc * HC_SHIFT));
1273 if (relevant) {
1274 mv_host_intr(host_set, relevant, hc);
31961943 1275 handled++;
20f733e7
BR
1276 }
1277 }
1278 if (PCI_ERR & irq_stat) {
31961943
BR
1279 printk(KERN_ERR DRV_NAME ": PCI ERROR; PCI IRQ cause=0x%08x\n",
1280 readl(mmio + PCI_IRQ_CAUSE_OFS));
1281
afb0edd9 1282 DPRINTK("All regs @ PCI error\n");
31961943 1283 mv_dump_all_regs(mmio, -1, to_pci_dev(host_set->dev));
20f733e7 1284
31961943
BR
1285 writelfl(0, mmio + PCI_IRQ_CAUSE_OFS);
1286 handled++;
1287 }
20f733e7
BR
1288 spin_unlock(&host_set->lock);
1289
1290 return IRQ_RETVAL(handled);
1291}
1292
c9d39130
JG
1293static void __iomem *mv5_phy_base(void __iomem *mmio, unsigned int port)
1294{
1295 void __iomem *hc_mmio = mv_hc_base_from_port(mmio, port);
1296 unsigned long ofs = (mv_hardport_from_port(port) + 1) * 0x100UL;
1297
1298 return hc_mmio + ofs;
1299}
1300
1301static unsigned int mv5_scr_offset(unsigned int sc_reg_in)
1302{
1303 unsigned int ofs;
1304
1305 switch (sc_reg_in) {
1306 case SCR_STATUS:
1307 case SCR_ERROR:
1308 case SCR_CONTROL:
1309 ofs = sc_reg_in * sizeof(u32);
1310 break;
1311 default:
1312 ofs = 0xffffffffU;
1313 break;
1314 }
1315 return ofs;
1316}
1317
1318static u32 mv5_scr_read(struct ata_port *ap, unsigned int sc_reg_in)
1319{
1320 void __iomem *mmio = mv5_phy_base(ap->host_set->mmio_base, ap->port_no);
1321 unsigned int ofs = mv5_scr_offset(sc_reg_in);
1322
1323 if (ofs != 0xffffffffU)
1324 return readl(mmio + ofs);
1325 else
1326 return (u32) ofs;
1327}
1328
1329static void mv5_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val)
1330{
1331 void __iomem *mmio = mv5_phy_base(ap->host_set->mmio_base, ap->port_no);
1332 unsigned int ofs = mv5_scr_offset(sc_reg_in);
1333
1334 if (ofs != 0xffffffffU)
1335 writelfl(val, mmio + ofs);
1336}
1337
522479fb
JG
1338static void mv5_reset_bus(struct pci_dev *pdev, void __iomem *mmio)
1339{
1340 u8 rev_id;
1341 int early_5080;
1342
1343 pci_read_config_byte(pdev, PCI_REVISION_ID, &rev_id);
1344
1345 early_5080 = (pdev->device == 0x5080) && (rev_id == 0);
1346
1347 if (!early_5080) {
1348 u32 tmp = readl(mmio + MV_PCI_EXP_ROM_BAR_CTL);
1349 tmp |= (1 << 0);
1350 writel(tmp, mmio + MV_PCI_EXP_ROM_BAR_CTL);
1351 }
1352
1353 mv_reset_pci_bus(pdev, mmio);
1354}
1355
1356static void mv5_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio)
1357{
1358 writel(0x0fcfffff, mmio + MV_FLASH_CTL);
1359}
1360
47c2b677 1361static void mv5_read_preamp(struct mv_host_priv *hpriv, int idx,
ba3fe8fb
JG
1362 void __iomem *mmio)
1363{
c9d39130
JG
1364 void __iomem *phy_mmio = mv5_phy_base(mmio, idx);
1365 u32 tmp;
1366
1367 tmp = readl(phy_mmio + MV5_PHY_MODE);
1368
1369 hpriv->signal[idx].pre = tmp & 0x1800; /* bits 12:11 */
1370 hpriv->signal[idx].amps = tmp & 0xe0; /* bits 7:5 */
ba3fe8fb
JG
1371}
1372
47c2b677 1373static void mv5_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio)
ba3fe8fb 1374{
522479fb
JG
1375 u32 tmp;
1376
1377 writel(0, mmio + MV_GPIO_PORT_CTL);
1378
1379 /* FIXME: handle MV_HP_ERRATA_50XXB2 errata */
1380
1381 tmp = readl(mmio + MV_PCI_EXP_ROM_BAR_CTL);
1382 tmp |= ~(1 << 0);
1383 writel(tmp, mmio + MV_PCI_EXP_ROM_BAR_CTL);
ba3fe8fb
JG
1384}
1385
2a47ce06
JG
1386static void mv5_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
1387 unsigned int port)
bca1c4eb 1388{
c9d39130
JG
1389 void __iomem *phy_mmio = mv5_phy_base(mmio, port);
1390 const u32 mask = (1<<12) | (1<<11) | (1<<7) | (1<<6) | (1<<5);
1391 u32 tmp;
1392 int fix_apm_sq = (hpriv->hp_flags & MV_HP_ERRATA_50XXB0);
1393
1394 if (fix_apm_sq) {
1395 tmp = readl(phy_mmio + MV5_LT_MODE);
1396 tmp |= (1 << 19);
1397 writel(tmp, phy_mmio + MV5_LT_MODE);
1398
1399 tmp = readl(phy_mmio + MV5_PHY_CTL);
1400 tmp &= ~0x3;
1401 tmp |= 0x1;
1402 writel(tmp, phy_mmio + MV5_PHY_CTL);
1403 }
1404
1405 tmp = readl(phy_mmio + MV5_PHY_MODE);
1406 tmp &= ~mask;
1407 tmp |= hpriv->signal[port].pre;
1408 tmp |= hpriv->signal[port].amps;
1409 writel(tmp, phy_mmio + MV5_PHY_MODE);
bca1c4eb
JG
1410}
1411
c9d39130
JG
1412
1413#undef ZERO
1414#define ZERO(reg) writel(0, port_mmio + (reg))
1415static void mv5_reset_hc_port(struct mv_host_priv *hpriv, void __iomem *mmio,
1416 unsigned int port)
1417{
1418 void __iomem *port_mmio = mv_port_base(mmio, port);
1419
1420 writelfl(EDMA_DS, port_mmio + EDMA_CMD_OFS);
1421
1422 mv_channel_reset(hpriv, mmio, port);
1423
1424 ZERO(0x028); /* command */
1425 writel(0x11f, port_mmio + EDMA_CFG_OFS);
1426 ZERO(0x004); /* timer */
1427 ZERO(0x008); /* irq err cause */
1428 ZERO(0x00c); /* irq err mask */
1429 ZERO(0x010); /* rq bah */
1430 ZERO(0x014); /* rq inp */
1431 ZERO(0x018); /* rq outp */
1432 ZERO(0x01c); /* respq bah */
1433 ZERO(0x024); /* respq outp */
1434 ZERO(0x020); /* respq inp */
1435 ZERO(0x02c); /* test control */
1436 writel(0xbc, port_mmio + EDMA_IORDY_TMOUT);
1437}
1438#undef ZERO
1439
1440#define ZERO(reg) writel(0, hc_mmio + (reg))
1441static void mv5_reset_one_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
1442 unsigned int hc)
47c2b677 1443{
c9d39130
JG
1444 void __iomem *hc_mmio = mv_hc_base(mmio, hc);
1445 u32 tmp;
1446
1447 ZERO(0x00c);
1448 ZERO(0x010);
1449 ZERO(0x014);
1450 ZERO(0x018);
1451
1452 tmp = readl(hc_mmio + 0x20);
1453 tmp &= 0x1c1c1c1c;
1454 tmp |= 0x03030303;
1455 writel(tmp, hc_mmio + 0x20);
1456}
1457#undef ZERO
1458
1459static int mv5_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
1460 unsigned int n_hc)
1461{
1462 unsigned int hc, port;
1463
1464 for (hc = 0; hc < n_hc; hc++) {
1465 for (port = 0; port < MV_PORTS_PER_HC; port++)
1466 mv5_reset_hc_port(hpriv, mmio,
1467 (hc * MV_PORTS_PER_HC) + port);
1468
1469 mv5_reset_one_hc(hpriv, mmio, hc);
1470 }
1471
1472 return 0;
47c2b677
JG
1473}
1474
101ffae2
JG
1475#undef ZERO
1476#define ZERO(reg) writel(0, mmio + (reg))
1477static void mv_reset_pci_bus(struct pci_dev *pdev, void __iomem *mmio)
1478{
1479 u32 tmp;
1480
1481 tmp = readl(mmio + MV_PCI_MODE);
1482 tmp &= 0xff00ffff;
1483 writel(tmp, mmio + MV_PCI_MODE);
1484
1485 ZERO(MV_PCI_DISC_TIMER);
1486 ZERO(MV_PCI_MSI_TRIGGER);
1487 writel(0x000100ff, mmio + MV_PCI_XBAR_TMOUT);
1488 ZERO(HC_MAIN_IRQ_MASK_OFS);
1489 ZERO(MV_PCI_SERR_MASK);
1490 ZERO(PCI_IRQ_CAUSE_OFS);
1491 ZERO(PCI_IRQ_MASK_OFS);
1492 ZERO(MV_PCI_ERR_LOW_ADDRESS);
1493 ZERO(MV_PCI_ERR_HIGH_ADDRESS);
1494 ZERO(MV_PCI_ERR_ATTRIBUTE);
1495 ZERO(MV_PCI_ERR_COMMAND);
1496}
1497#undef ZERO
1498
1499static void mv6_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio)
1500{
1501 u32 tmp;
1502
1503 mv5_reset_flash(hpriv, mmio);
1504
1505 tmp = readl(mmio + MV_GPIO_PORT_CTL);
1506 tmp &= 0x3;
1507 tmp |= (1 << 5) | (1 << 6);
1508 writel(tmp, mmio + MV_GPIO_PORT_CTL);
1509}
1510
1511/**
1512 * mv6_reset_hc - Perform the 6xxx global soft reset
1513 * @mmio: base address of the HBA
1514 *
1515 * This routine only applies to 6xxx parts.
1516 *
1517 * LOCKING:
1518 * Inherited from caller.
1519 */
c9d39130
JG
1520static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
1521 unsigned int n_hc)
101ffae2
JG
1522{
1523 void __iomem *reg = mmio + PCI_MAIN_CMD_STS_OFS;
1524 int i, rc = 0;
1525 u32 t;
1526
1527 /* Following procedure defined in PCI "main command and status
1528 * register" table.
1529 */
1530 t = readl(reg);
1531 writel(t | STOP_PCI_MASTER, reg);
1532
1533 for (i = 0; i < 1000; i++) {
1534 udelay(1);
1535 t = readl(reg);
1536 if (PCI_MASTER_EMPTY & t) {
1537 break;
1538 }
1539 }
1540 if (!(PCI_MASTER_EMPTY & t)) {
1541 printk(KERN_ERR DRV_NAME ": PCI master won't flush\n");
1542 rc = 1;
1543 goto done;
1544 }
1545
1546 /* set reset */
1547 i = 5;
1548 do {
1549 writel(t | GLOB_SFT_RST, reg);
1550 t = readl(reg);
1551 udelay(1);
1552 } while (!(GLOB_SFT_RST & t) && (i-- > 0));
1553
1554 if (!(GLOB_SFT_RST & t)) {
1555 printk(KERN_ERR DRV_NAME ": can't set global reset\n");
1556 rc = 1;
1557 goto done;
1558 }
1559
1560 /* clear reset and *reenable the PCI master* (not mentioned in spec) */
1561 i = 5;
1562 do {
1563 writel(t & ~(GLOB_SFT_RST | STOP_PCI_MASTER), reg);
1564 t = readl(reg);
1565 udelay(1);
1566 } while ((GLOB_SFT_RST & t) && (i-- > 0));
1567
1568 if (GLOB_SFT_RST & t) {
1569 printk(KERN_ERR DRV_NAME ": can't clear global reset\n");
1570 rc = 1;
1571 }
1572done:
1573 return rc;
1574}
1575
47c2b677 1576static void mv6_read_preamp(struct mv_host_priv *hpriv, int idx,
ba3fe8fb
JG
1577 void __iomem *mmio)
1578{
1579 void __iomem *port_mmio;
1580 u32 tmp;
1581
ba3fe8fb
JG
1582 tmp = readl(mmio + MV_RESET_CFG);
1583 if ((tmp & (1 << 0)) == 0) {
47c2b677 1584 hpriv->signal[idx].amps = 0x7 << 8;
ba3fe8fb
JG
1585 hpriv->signal[idx].pre = 0x1 << 5;
1586 return;
1587 }
1588
1589 port_mmio = mv_port_base(mmio, idx);
1590 tmp = readl(port_mmio + PHY_MODE2);
1591
1592 hpriv->signal[idx].amps = tmp & 0x700; /* bits 10:8 */
1593 hpriv->signal[idx].pre = tmp & 0xe0; /* bits 7:5 */
1594}
1595
47c2b677 1596static void mv6_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio)
ba3fe8fb 1597{
47c2b677 1598 writel(0x00000060, mmio + MV_GPIO_PORT_CTL);
ba3fe8fb
JG
1599}
1600
c9d39130 1601static void mv6_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
2a47ce06 1602 unsigned int port)
bca1c4eb 1603{
c9d39130
JG
1604 void __iomem *port_mmio = mv_port_base(mmio, port);
1605
bca1c4eb 1606 u32 hp_flags = hpriv->hp_flags;
47c2b677
JG
1607 int fix_phy_mode2 =
1608 hp_flags & (MV_HP_ERRATA_60X1B2 | MV_HP_ERRATA_60X1C0);
bca1c4eb 1609 int fix_phy_mode4 =
47c2b677
JG
1610 hp_flags & (MV_HP_ERRATA_60X1B2 | MV_HP_ERRATA_60X1C0);
1611 u32 m2, tmp;
1612
1613 if (fix_phy_mode2) {
1614 m2 = readl(port_mmio + PHY_MODE2);
1615 m2 &= ~(1 << 16);
1616 m2 |= (1 << 31);
1617 writel(m2, port_mmio + PHY_MODE2);
1618
1619 udelay(200);
1620
1621 m2 = readl(port_mmio + PHY_MODE2);
1622 m2 &= ~((1 << 16) | (1 << 31));
1623 writel(m2, port_mmio + PHY_MODE2);
1624
1625 udelay(200);
1626 }
1627
1628 /* who knows what this magic does */
1629 tmp = readl(port_mmio + PHY_MODE3);
1630 tmp &= ~0x7F800000;
1631 tmp |= 0x2A800000;
1632 writel(tmp, port_mmio + PHY_MODE3);
bca1c4eb
JG
1633
1634 if (fix_phy_mode4) {
47c2b677 1635 u32 m4;
bca1c4eb
JG
1636
1637 m4 = readl(port_mmio + PHY_MODE4);
47c2b677
JG
1638
1639 if (hp_flags & MV_HP_ERRATA_60X1B2)
1640 tmp = readl(port_mmio + 0x310);
bca1c4eb
JG
1641
1642 m4 = (m4 & ~(1 << 1)) | (1 << 0);
1643
1644 writel(m4, port_mmio + PHY_MODE4);
47c2b677
JG
1645
1646 if (hp_flags & MV_HP_ERRATA_60X1B2)
1647 writel(tmp, port_mmio + 0x310);
bca1c4eb
JG
1648 }
1649
1650 /* Revert values of pre-emphasis and signal amps to the saved ones */
1651 m2 = readl(port_mmio + PHY_MODE2);
1652
1653 m2 &= ~MV_M2_PREAMP_MASK;
2a47ce06
JG
1654 m2 |= hpriv->signal[port].amps;
1655 m2 |= hpriv->signal[port].pre;
47c2b677 1656 m2 &= ~(1 << 16);
bca1c4eb
JG
1657
1658 writel(m2, port_mmio + PHY_MODE2);
1659}
1660
c9d39130
JG
1661static void mv_channel_reset(struct mv_host_priv *hpriv, void __iomem *mmio,
1662 unsigned int port_no)
1663{
1664 void __iomem *port_mmio = mv_port_base(mmio, port_no);
1665
1666 writelfl(ATA_RST, port_mmio + EDMA_CMD_OFS);
1667
1668 if (IS_60XX(hpriv)) {
1669 u32 ifctl = readl(port_mmio + SATA_INTERFACE_CTL);
1670 ifctl |= (1 << 12) | (1 << 7);
1671 writelfl(ifctl, port_mmio + SATA_INTERFACE_CTL);
1672 }
1673
1674 udelay(25); /* allow reset propagation */
1675
1676 /* Spec never mentions clearing the bit. Marvell's driver does
1677 * clear the bit, however.
1678 */
1679 writelfl(0, port_mmio + EDMA_CMD_OFS);
1680
1681 hpriv->ops->phy_errata(hpriv, mmio, port_no);
1682
1683 if (IS_50XX(hpriv))
1684 mdelay(1);
1685}
1686
1687static void mv_stop_and_reset(struct ata_port *ap)
1688{
1689 struct mv_host_priv *hpriv = ap->host_set->private_data;
1690 void __iomem *mmio = ap->host_set->mmio_base;
1691
1692 mv_stop_dma(ap);
1693
1694 mv_channel_reset(hpriv, mmio, ap->port_no);
1695
1696 mv_phy_reset(ap);
1697}
1698
05b308e1
BR
1699/**
1700 * mv_phy_reset - Perform eDMA reset followed by COMRESET
1701 * @ap: ATA channel to manipulate
1702 *
1703 * Part of this is taken from __sata_phy_reset and modified to
1704 * not sleep since this routine gets called from interrupt level.
1705 *
1706 * LOCKING:
1707 * Inherited from caller. This is coded to safe to call at
1708 * interrupt level, i.e. it does not sleep.
31961943 1709 */
20f733e7
BR
1710static void mv_phy_reset(struct ata_port *ap)
1711{
095fec88 1712 struct mv_port_priv *pp = ap->private_data;
20f733e7
BR
1713 void __iomem *port_mmio = mv_ap_base(ap);
1714 struct ata_taskfile tf;
1715 struct ata_device *dev = &ap->device[0];
31961943 1716 unsigned long timeout;
20f733e7
BR
1717
1718 VPRINTK("ENTER, port %u, mmio 0x%p\n", ap->port_no, port_mmio);
1719
095fec88 1720 DPRINTK("S-regs after ATA_RST: SStat 0x%08x SErr 0x%08x "
31961943
BR
1721 "SCtrl 0x%08x\n", mv_scr_read(ap, SCR_STATUS),
1722 mv_scr_read(ap, SCR_ERROR), mv_scr_read(ap, SCR_CONTROL));
20f733e7
BR
1723
1724 /* proceed to init communications via the scr_control reg */
31961943
BR
1725 scr_write_flush(ap, SCR_CONTROL, 0x301);
1726 mdelay(1);
1727 scr_write_flush(ap, SCR_CONTROL, 0x300);
1728 timeout = jiffies + (HZ * 1);
1729 do {
1730 mdelay(10);
1731 if ((scr_read(ap, SCR_STATUS) & 0xf) != 1)
1732 break;
1733 } while (time_before(jiffies, timeout));
20f733e7 1734
095fec88
JG
1735 mv_scr_write(ap, SCR_ERROR, mv_scr_read(ap, SCR_ERROR));
1736
1737 DPRINTK("S-regs after PHY wake: SStat 0x%08x SErr 0x%08x "
31961943
BR
1738 "SCtrl 0x%08x\n", mv_scr_read(ap, SCR_STATUS),
1739 mv_scr_read(ap, SCR_ERROR), mv_scr_read(ap, SCR_CONTROL));
1740
1741 if (sata_dev_present(ap)) {
1742 ata_port_probe(ap);
1743 } else {
1744 printk(KERN_INFO "ata%u: no device found (phy stat %08x)\n",
1745 ap->id, scr_read(ap, SCR_STATUS));
1746 ata_port_disable(ap);
20f733e7
BR
1747 return;
1748 }
31961943 1749 ap->cbl = ATA_CBL_SATA;
20f733e7
BR
1750
1751 tf.lbah = readb((void __iomem *) ap->ioaddr.lbah_addr);
1752 tf.lbam = readb((void __iomem *) ap->ioaddr.lbam_addr);
1753 tf.lbal = readb((void __iomem *) ap->ioaddr.lbal_addr);
1754 tf.nsect = readb((void __iomem *) ap->ioaddr.nsect_addr);
1755
1756 dev->class = ata_dev_classify(&tf);
1757 if (!ata_dev_present(dev)) {
1758 VPRINTK("Port disabled post-sig: No device present.\n");
1759 ata_port_disable(ap);
1760 }
095fec88
JG
1761
1762 writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
1763
1764 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
1765
bca1c4eb 1766 VPRINTK("EXIT\n");
20f733e7
BR
1767}
1768
05b308e1
BR
1769/**
1770 * mv_eng_timeout - Routine called by libata when SCSI times out I/O
1771 * @ap: ATA channel to manipulate
1772 *
1773 * Intent is to clear all pending error conditions, reset the
1774 * chip/bus, fail the command, and move on.
1775 *
1776 * LOCKING:
1777 * This routine holds the host_set lock while failing the command.
1778 */
31961943
BR
1779static void mv_eng_timeout(struct ata_port *ap)
1780{
1781 struct ata_queued_cmd *qc;
1782 unsigned long flags;
1783
1784 printk(KERN_ERR "ata%u: Entering mv_eng_timeout\n",ap->id);
1785 DPRINTK("All regs @ start of eng_timeout\n");
8b260248 1786 mv_dump_all_regs(ap->host_set->mmio_base, ap->port_no,
31961943
BR
1787 to_pci_dev(ap->host_set->dev));
1788
1789 qc = ata_qc_from_tag(ap, ap->active_tag);
1790 printk(KERN_ERR "mmio_base %p ap %p qc %p scsi_cmnd %p &cmnd %p\n",
8b260248 1791 ap->host_set->mmio_base, ap, qc, qc->scsicmd,
31961943
BR
1792 &qc->scsicmd->cmnd);
1793
1794 mv_err_intr(ap);
c9d39130 1795 mv_stop_and_reset(ap);
31961943
BR
1796
1797 if (!qc) {
1798 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
1799 ap->id);
1800 } else {
1801 /* hack alert! We cannot use the supplied completion
1802 * function from inside the ->eh_strategy_handler() thread.
1803 * libata is the only user of ->eh_strategy_handler() in
1804 * any kernel, so the default scsi_done() assumes it is
1805 * not being called from the SCSI EH.
1806 */
1807 spin_lock_irqsave(&ap->host_set->lock, flags);
1808 qc->scsidone = scsi_finish_command;
a7dac447 1809 ata_qc_complete(qc, AC_ERR_OTHER);
31961943
BR
1810 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1811 }
1812}
1813
05b308e1
BR
1814/**
1815 * mv_port_init - Perform some early initialization on a single port.
1816 * @port: libata data structure storing shadow register addresses
1817 * @port_mmio: base address of the port
1818 *
1819 * Initialize shadow register mmio addresses, clear outstanding
1820 * interrupts on the port, and unmask interrupts for the future
1821 * start of the port.
1822 *
1823 * LOCKING:
1824 * Inherited from caller.
1825 */
31961943 1826static void mv_port_init(struct ata_ioports *port, void __iomem *port_mmio)
20f733e7 1827{
31961943
BR
1828 unsigned long shd_base = (unsigned long) port_mmio + SHD_BLK_OFS;
1829 unsigned serr_ofs;
1830
8b260248 1831 /* PIO related setup
31961943
BR
1832 */
1833 port->data_addr = shd_base + (sizeof(u32) * ATA_REG_DATA);
8b260248 1834 port->error_addr =
31961943
BR
1835 port->feature_addr = shd_base + (sizeof(u32) * ATA_REG_ERR);
1836 port->nsect_addr = shd_base + (sizeof(u32) * ATA_REG_NSECT);
1837 port->lbal_addr = shd_base + (sizeof(u32) * ATA_REG_LBAL);
1838 port->lbam_addr = shd_base + (sizeof(u32) * ATA_REG_LBAM);
1839 port->lbah_addr = shd_base + (sizeof(u32) * ATA_REG_LBAH);
1840 port->device_addr = shd_base + (sizeof(u32) * ATA_REG_DEVICE);
8b260248 1841 port->status_addr =
31961943
BR
1842 port->command_addr = shd_base + (sizeof(u32) * ATA_REG_STATUS);
1843 /* special case: control/altstatus doesn't have ATA_REG_ address */
1844 port->altstatus_addr = port->ctl_addr = shd_base + SHD_CTL_AST_OFS;
1845
1846 /* unused: */
20f733e7
BR
1847 port->cmd_addr = port->bmdma_addr = port->scr_addr = 0;
1848
31961943
BR
1849 /* Clear any currently outstanding port interrupt conditions */
1850 serr_ofs = mv_scr_offset(SCR_ERROR);
1851 writelfl(readl(port_mmio + serr_ofs), port_mmio + serr_ofs);
1852 writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
1853
20f733e7 1854 /* unmask all EDMA error interrupts */
31961943 1855 writelfl(~0, port_mmio + EDMA_ERR_IRQ_MASK_OFS);
20f733e7 1856
8b260248 1857 VPRINTK("EDMA cfg=0x%08x EDMA IRQ err cause/mask=0x%08x/0x%08x\n",
31961943
BR
1858 readl(port_mmio + EDMA_CFG_OFS),
1859 readl(port_mmio + EDMA_ERR_IRQ_CAUSE_OFS),
1860 readl(port_mmio + EDMA_ERR_IRQ_MASK_OFS));
20f733e7
BR
1861}
1862
47c2b677 1863static int mv_chip_id(struct pci_dev *pdev, struct mv_host_priv *hpriv,
522479fb 1864 unsigned int board_idx)
bca1c4eb
JG
1865{
1866 u8 rev_id;
1867 u32 hp_flags = hpriv->hp_flags;
1868
1869 pci_read_config_byte(pdev, PCI_REVISION_ID, &rev_id);
1870
1871 switch(board_idx) {
47c2b677
JG
1872 case chip_5080:
1873 hpriv->ops = &mv5xxx_ops;
1874 hp_flags |= MV_HP_50XX;
1875
1876 switch (rev_id) {
1877 case 0x1:
1878 hp_flags |= MV_HP_ERRATA_50XXB0;
1879 break;
1880 case 0x3:
1881 hp_flags |= MV_HP_ERRATA_50XXB2;
1882 break;
1883 default:
1884 dev_printk(KERN_WARNING, &pdev->dev,
1885 "Applying 50XXB2 workarounds to unknown rev\n");
1886 hp_flags |= MV_HP_ERRATA_50XXB2;
1887 break;
1888 }
1889 break;
1890
bca1c4eb
JG
1891 case chip_504x:
1892 case chip_508x:
47c2b677 1893 hpriv->ops = &mv5xxx_ops;
bca1c4eb
JG
1894 hp_flags |= MV_HP_50XX;
1895
47c2b677
JG
1896 switch (rev_id) {
1897 case 0x0:
1898 hp_flags |= MV_HP_ERRATA_50XXB0;
1899 break;
1900 case 0x3:
1901 hp_flags |= MV_HP_ERRATA_50XXB2;
1902 break;
1903 default:
1904 dev_printk(KERN_WARNING, &pdev->dev,
1905 "Applying B2 workarounds to unknown rev\n");
1906 hp_flags |= MV_HP_ERRATA_50XXB2;
1907 break;
bca1c4eb
JG
1908 }
1909 break;
1910
1911 case chip_604x:
1912 case chip_608x:
47c2b677
JG
1913 hpriv->ops = &mv6xxx_ops;
1914
bca1c4eb 1915 switch (rev_id) {
47c2b677
JG
1916 case 0x7:
1917 hp_flags |= MV_HP_ERRATA_60X1B2;
1918 break;
1919 case 0x9:
1920 hp_flags |= MV_HP_ERRATA_60X1C0;
bca1c4eb
JG
1921 break;
1922 default:
1923 dev_printk(KERN_WARNING, &pdev->dev,
47c2b677
JG
1924 "Applying B2 workarounds to unknown rev\n");
1925 hp_flags |= MV_HP_ERRATA_60X1B2;
bca1c4eb
JG
1926 break;
1927 }
1928 break;
1929
1930 default:
1931 printk(KERN_ERR DRV_NAME ": BUG: invalid board index %u\n", board_idx);
1932 return 1;
1933 }
1934
1935 hpriv->hp_flags = hp_flags;
1936
1937 return 0;
1938}
1939
05b308e1 1940/**
47c2b677 1941 * mv_init_host - Perform some early initialization of the host.
bca1c4eb 1942 * @pdev: host PCI device
05b308e1
BR
1943 * @probe_ent: early data struct representing the host
1944 *
1945 * If possible, do an early global reset of the host. Then do
1946 * our port init and clear/unmask all/relevant host interrupts.
1947 *
1948 * LOCKING:
1949 * Inherited from caller.
1950 */
47c2b677 1951static int mv_init_host(struct pci_dev *pdev, struct ata_probe_ent *probe_ent,
bca1c4eb 1952 unsigned int board_idx)
20f733e7
BR
1953{
1954 int rc = 0, n_hc, port, hc;
1955 void __iomem *mmio = probe_ent->mmio_base;
bca1c4eb
JG
1956 struct mv_host_priv *hpriv = probe_ent->private_data;
1957
47c2b677
JG
1958 /* global interrupt mask */
1959 writel(0, mmio + HC_MAIN_IRQ_MASK_OFS);
1960
1961 rc = mv_chip_id(pdev, hpriv, board_idx);
bca1c4eb
JG
1962 if (rc)
1963 goto done;
1964
1965 n_hc = mv_get_hc_count(probe_ent->host_flags);
1966 probe_ent->n_ports = MV_PORTS_PER_HC * n_hc;
1967
47c2b677
JG
1968 for (port = 0; port < probe_ent->n_ports; port++)
1969 hpriv->ops->read_preamp(hpriv, port, mmio);
20f733e7 1970
c9d39130 1971 rc = hpriv->ops->reset_hc(hpriv, mmio, n_hc);
47c2b677 1972 if (rc)
20f733e7 1973 goto done;
20f733e7 1974
522479fb
JG
1975 hpriv->ops->reset_flash(hpriv, mmio);
1976 hpriv->ops->reset_bus(pdev, mmio);
47c2b677 1977 hpriv->ops->enable_leds(hpriv, mmio);
20f733e7
BR
1978
1979 for (port = 0; port < probe_ent->n_ports; port++) {
2a47ce06 1980 if (IS_60XX(hpriv)) {
c9d39130
JG
1981 void __iomem *port_mmio = mv_port_base(mmio, port);
1982
2a47ce06
JG
1983 u32 ifctl = readl(port_mmio + SATA_INTERFACE_CTL);
1984 ifctl |= (1 << 12);
1985 writelfl(ifctl, port_mmio + SATA_INTERFACE_CTL);
1986 }
1987
c9d39130 1988 hpriv->ops->phy_errata(hpriv, mmio, port);
2a47ce06
JG
1989 }
1990
1991 for (port = 0; port < probe_ent->n_ports; port++) {
1992 void __iomem *port_mmio = mv_port_base(mmio, port);
31961943 1993 mv_port_init(&probe_ent->port[port], port_mmio);
20f733e7
BR
1994 }
1995
1996 for (hc = 0; hc < n_hc; hc++) {
31961943
BR
1997 void __iomem *hc_mmio = mv_hc_base(mmio, hc);
1998
1999 VPRINTK("HC%i: HC config=0x%08x HC IRQ cause "
2000 "(before clear)=0x%08x\n", hc,
2001 readl(hc_mmio + HC_CFG_OFS),
2002 readl(hc_mmio + HC_IRQ_CAUSE_OFS));
2003
2004 /* Clear any currently outstanding hc interrupt conditions */
2005 writelfl(0, hc_mmio + HC_IRQ_CAUSE_OFS);
20f733e7
BR
2006 }
2007
31961943
BR
2008 /* Clear any currently outstanding host interrupt conditions */
2009 writelfl(0, mmio + PCI_IRQ_CAUSE_OFS);
2010
2011 /* and unmask interrupt generation for host regs */
2012 writelfl(PCI_UNMASK_ALL_IRQS, mmio + PCI_IRQ_MASK_OFS);
2013 writelfl(~HC_MAIN_MASKED_IRQS, mmio + HC_MAIN_IRQ_MASK_OFS);
20f733e7
BR
2014
2015 VPRINTK("HC MAIN IRQ cause/mask=0x%08x/0x%08x "
8b260248 2016 "PCI int cause/mask=0x%08x/0x%08x\n",
20f733e7
BR
2017 readl(mmio + HC_MAIN_IRQ_CAUSE_OFS),
2018 readl(mmio + HC_MAIN_IRQ_MASK_OFS),
2019 readl(mmio + PCI_IRQ_CAUSE_OFS),
2020 readl(mmio + PCI_IRQ_MASK_OFS));
bca1c4eb 2021
31961943 2022done:
20f733e7
BR
2023 return rc;
2024}
2025
05b308e1
BR
2026/**
2027 * mv_print_info - Dump key info to kernel log for perusal.
2028 * @probe_ent: early data struct representing the host
2029 *
2030 * FIXME: complete this.
2031 *
2032 * LOCKING:
2033 * Inherited from caller.
2034 */
31961943
BR
2035static void mv_print_info(struct ata_probe_ent *probe_ent)
2036{
2037 struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
2038 struct mv_host_priv *hpriv = probe_ent->private_data;
2039 u8 rev_id, scc;
2040 const char *scc_s;
2041
2042 /* Use this to determine the HW stepping of the chip so we know
2043 * what errata to workaround
2044 */
2045 pci_read_config_byte(pdev, PCI_REVISION_ID, &rev_id);
2046
2047 pci_read_config_byte(pdev, PCI_CLASS_DEVICE, &scc);
2048 if (scc == 0)
2049 scc_s = "SCSI";
2050 else if (scc == 0x01)
2051 scc_s = "RAID";
2052 else
2053 scc_s = "unknown";
2054
a9524a76
JG
2055 dev_printk(KERN_INFO, &pdev->dev,
2056 "%u slots %u ports %s mode IRQ via %s\n",
8b260248 2057 (unsigned)MV_MAX_Q_DEPTH, probe_ent->n_ports,
31961943
BR
2058 scc_s, (MV_HP_FLAG_MSI & hpriv->hp_flags) ? "MSI" : "INTx");
2059}
2060
05b308e1
BR
2061/**
2062 * mv_init_one - handle a positive probe of a Marvell host
2063 * @pdev: PCI device found
2064 * @ent: PCI device ID entry for the matched host
2065 *
2066 * LOCKING:
2067 * Inherited from caller.
2068 */
20f733e7
BR
2069static int mv_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
2070{
2071 static int printed_version = 0;
2072 struct ata_probe_ent *probe_ent = NULL;
2073 struct mv_host_priv *hpriv;
2074 unsigned int board_idx = (unsigned int)ent->driver_data;
2075 void __iomem *mmio_base;
31961943 2076 int pci_dev_busy = 0, rc;
20f733e7 2077
a9524a76
JG
2078 if (!printed_version++)
2079 dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");
20f733e7 2080
20f733e7
BR
2081 rc = pci_enable_device(pdev);
2082 if (rc) {
2083 return rc;
2084 }
2085
2086 rc = pci_request_regions(pdev, DRV_NAME);
2087 if (rc) {
2088 pci_dev_busy = 1;
2089 goto err_out;
2090 }
2091
20f733e7
BR
2092 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
2093 if (probe_ent == NULL) {
2094 rc = -ENOMEM;
2095 goto err_out_regions;
2096 }
2097
2098 memset(probe_ent, 0, sizeof(*probe_ent));
2099 probe_ent->dev = pci_dev_to_dev(pdev);
2100 INIT_LIST_HEAD(&probe_ent->node);
2101
31961943 2102 mmio_base = pci_iomap(pdev, MV_PRIMARY_BAR, 0);
20f733e7
BR
2103 if (mmio_base == NULL) {
2104 rc = -ENOMEM;
2105 goto err_out_free_ent;
2106 }
2107
2108 hpriv = kmalloc(sizeof(*hpriv), GFP_KERNEL);
2109 if (!hpriv) {
2110 rc = -ENOMEM;
2111 goto err_out_iounmap;
2112 }
2113 memset(hpriv, 0, sizeof(*hpriv));
2114
2115 probe_ent->sht = mv_port_info[board_idx].sht;
2116 probe_ent->host_flags = mv_port_info[board_idx].host_flags;
2117 probe_ent->pio_mask = mv_port_info[board_idx].pio_mask;
2118 probe_ent->udma_mask = mv_port_info[board_idx].udma_mask;
2119 probe_ent->port_ops = mv_port_info[board_idx].port_ops;
2120
2121 probe_ent->irq = pdev->irq;
2122 probe_ent->irq_flags = SA_SHIRQ;
2123 probe_ent->mmio_base = mmio_base;
2124 probe_ent->private_data = hpriv;
2125
2126 /* initialize adapter */
47c2b677 2127 rc = mv_init_host(pdev, probe_ent, board_idx);
20f733e7
BR
2128 if (rc) {
2129 goto err_out_hpriv;
2130 }
20f733e7 2131
31961943
BR
2132 /* Enable interrupts */
2133 if (pci_enable_msi(pdev) == 0) {
2134 hpriv->hp_flags |= MV_HP_FLAG_MSI;
2135 } else {
2136 pci_intx(pdev, 1);
20f733e7
BR
2137 }
2138
31961943
BR
2139 mv_dump_pci_cfg(pdev, 0x68);
2140 mv_print_info(probe_ent);
2141
2142 if (ata_device_add(probe_ent) == 0) {
2143 rc = -ENODEV; /* No devices discovered */
2144 goto err_out_dev_add;
2145 }
20f733e7 2146
31961943 2147 kfree(probe_ent);
20f733e7
BR
2148 return 0;
2149
31961943
BR
2150err_out_dev_add:
2151 if (MV_HP_FLAG_MSI & hpriv->hp_flags) {
2152 pci_disable_msi(pdev);
2153 } else {
2154 pci_intx(pdev, 0);
2155 }
2156err_out_hpriv:
20f733e7 2157 kfree(hpriv);
31961943
BR
2158err_out_iounmap:
2159 pci_iounmap(pdev, mmio_base);
2160err_out_free_ent:
20f733e7 2161 kfree(probe_ent);
31961943 2162err_out_regions:
20f733e7 2163 pci_release_regions(pdev);
31961943 2164err_out:
20f733e7
BR
2165 if (!pci_dev_busy) {
2166 pci_disable_device(pdev);
2167 }
2168
2169 return rc;
2170}
2171
2172static int __init mv_init(void)
2173{
2174 return pci_module_init(&mv_pci_driver);
2175}
2176
2177static void __exit mv_exit(void)
2178{
2179 pci_unregister_driver(&mv_pci_driver);
2180}
2181
2182MODULE_AUTHOR("Brett Russ");
2183MODULE_DESCRIPTION("SCSI low-level driver for Marvell SATA controllers");
2184MODULE_LICENSE("GPL");
2185MODULE_DEVICE_TABLE(pci, mv_pci_tbl);
2186MODULE_VERSION(DRV_VERSION);
2187
2188module_init(mv_init);
2189module_exit(mv_exit);