blob: ef148acb5eeb34ccfb4964559cc866d54ea8f900 [file] [log] [blame]
Brett Russ20f733e2005-09-01 18:26:17 -04001/*
2 * sata_mv.c - Marvell SATA support
3 *
Jeff Garzik8b260242005-11-12 12:32:50 -05004 * Copyright 2005: EMC Corporation, all rights reserved.
Jeff Garzike2b1be52005-11-18 14:04:23 -05005 * Copyright 2005 Red Hat, Inc. All rights reserved.
Brett Russ20f733e2005-09-01 18:26:17 -04006 *
7 * Please ALWAYS copy linux-ide@vger.kernel.org on emails.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/pci.h>
27#include <linux/init.h>
28#include <linux/blkdev.h>
29#include <linux/delay.h>
30#include <linux/interrupt.h>
31#include <linux/sched.h>
32#include <linux/dma-mapping.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050033#include <linux/device.h>
Brett Russ20f733e2005-09-01 18:26:17 -040034#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050035#include <scsi/scsi_cmnd.h>
Brett Russ20f733e2005-09-01 18:26:17 -040036#include <linux/libata.h>
37#include <asm/io.h>
38
39#define DRV_NAME "sata_mv"
Jeff Garzike2b1be52005-11-18 14:04:23 -050040#define DRV_VERSION "0.5"
Brett Russ20f733e2005-09-01 18:26:17 -040041
42enum {
43 /* BAR's are enumerated in terms of pci_resource_start() terms */
44 MV_PRIMARY_BAR = 0, /* offset 0x10: memory space */
45 MV_IO_BAR = 2, /* offset 0x18: IO space */
46 MV_MISC_BAR = 3, /* offset 0x1c: FLASH, NVRAM, SRAM */
47
48 MV_MAJOR_REG_AREA_SZ = 0x10000, /* 64KB */
49 MV_MINOR_REG_AREA_SZ = 0x2000, /* 8KB */
50
51 MV_PCI_REG_BASE = 0,
52 MV_IRQ_COAL_REG_BASE = 0x18000, /* 6xxx part only */
53 MV_SATAHC0_REG_BASE = 0x20000,
Jeff Garzik522479f2005-11-12 22:14:02 -050054 MV_FLASH_CTL = 0x1046c,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -050055 MV_GPIO_PORT_CTL = 0x104f0,
56 MV_RESET_CFG = 0x180d8,
Brett Russ20f733e2005-09-01 18:26:17 -040057
58 MV_PCI_REG_SZ = MV_MAJOR_REG_AREA_SZ,
59 MV_SATAHC_REG_SZ = MV_MAJOR_REG_AREA_SZ,
60 MV_SATAHC_ARBTR_REG_SZ = MV_MINOR_REG_AREA_SZ, /* arbiter */
61 MV_PORT_REG_SZ = MV_MINOR_REG_AREA_SZ,
62
Brett Russ31961942005-09-30 01:36:00 -040063 MV_USE_Q_DEPTH = ATA_DEF_QUEUE,
Brett Russ20f733e2005-09-01 18:26:17 -040064
Brett Russ31961942005-09-30 01:36:00 -040065 MV_MAX_Q_DEPTH = 32,
66 MV_MAX_Q_DEPTH_MASK = MV_MAX_Q_DEPTH - 1,
67
68 /* CRQB needs alignment on a 1KB boundary. Size == 1KB
69 * CRPB needs alignment on a 256B boundary. Size == 256B
70 * SG count of 176 leads to MV_PORT_PRIV_DMA_SZ == 4KB
71 * ePRD (SG) entries need alignment on a 16B boundary. Size == 16B
72 */
73 MV_CRQB_Q_SZ = (32 * MV_MAX_Q_DEPTH),
74 MV_CRPB_Q_SZ = (8 * MV_MAX_Q_DEPTH),
75 MV_MAX_SG_CT = 176,
76 MV_SG_TBL_SZ = (16 * MV_MAX_SG_CT),
77 MV_PORT_PRIV_DMA_SZ = (MV_CRQB_Q_SZ + MV_CRPB_Q_SZ + MV_SG_TBL_SZ),
78
Brett Russ20f733e2005-09-01 18:26:17 -040079 MV_PORTS_PER_HC = 4,
80 /* == (port / MV_PORTS_PER_HC) to determine HC from 0-7 port */
81 MV_PORT_HC_SHIFT = 2,
Brett Russ31961942005-09-30 01:36:00 -040082 /* == (port % MV_PORTS_PER_HC) to determine hard port from 0-7 port */
Brett Russ20f733e2005-09-01 18:26:17 -040083 MV_PORT_MASK = 3,
84
85 /* Host Flags */
86 MV_FLAG_DUAL_HC = (1 << 30), /* two SATA Host Controllers */
87 MV_FLAG_IRQ_COALESCE = (1 << 29), /* IRQ coalescing capability */
Brett Russ31961942005-09-30 01:36:00 -040088 MV_COMMON_FLAGS = (ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Jeff Garzikf58f8be2005-10-09 09:44:07 -040089 ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO |
90 ATA_FLAG_PIO_POLLING),
Jeff Garzik47c2b672005-11-12 21:13:17 -050091 MV_6XXX_FLAGS = MV_FLAG_IRQ_COALESCE,
Brett Russ20f733e2005-09-01 18:26:17 -040092
Brett Russ31961942005-09-30 01:36:00 -040093 CRQB_FLAG_READ = (1 << 0),
94 CRQB_TAG_SHIFT = 1,
95 CRQB_CMD_ADDR_SHIFT = 8,
96 CRQB_CMD_CS = (0x2 << 11),
97 CRQB_CMD_LAST = (1 << 15),
98
99 CRPB_FLAG_STATUS_SHIFT = 8,
100
101 EPRD_FLAG_END_OF_TBL = (1 << 31),
102
Brett Russ20f733e2005-09-01 18:26:17 -0400103 /* PCI interface registers */
104
Brett Russ31961942005-09-30 01:36:00 -0400105 PCI_COMMAND_OFS = 0xc00,
106
Brett Russ20f733e2005-09-01 18:26:17 -0400107 PCI_MAIN_CMD_STS_OFS = 0xd30,
108 STOP_PCI_MASTER = (1 << 2),
109 PCI_MASTER_EMPTY = (1 << 3),
110 GLOB_SFT_RST = (1 << 4),
111
Jeff Garzik522479f2005-11-12 22:14:02 -0500112 MV_PCI_MODE = 0xd00,
113 MV_PCI_EXP_ROM_BAR_CTL = 0xd2c,
114 MV_PCI_DISC_TIMER = 0xd04,
115 MV_PCI_MSI_TRIGGER = 0xc38,
116 MV_PCI_SERR_MASK = 0xc28,
117 MV_PCI_XBAR_TMOUT = 0x1d04,
118 MV_PCI_ERR_LOW_ADDRESS = 0x1d40,
119 MV_PCI_ERR_HIGH_ADDRESS = 0x1d44,
120 MV_PCI_ERR_ATTRIBUTE = 0x1d48,
121 MV_PCI_ERR_COMMAND = 0x1d50,
122
123 PCI_IRQ_CAUSE_OFS = 0x1d58,
124 PCI_IRQ_MASK_OFS = 0x1d5c,
Brett Russ20f733e2005-09-01 18:26:17 -0400125 PCI_UNMASK_ALL_IRQS = 0x7fffff, /* bits 22-0 */
126
127 HC_MAIN_IRQ_CAUSE_OFS = 0x1d60,
128 HC_MAIN_IRQ_MASK_OFS = 0x1d64,
129 PORT0_ERR = (1 << 0), /* shift by port # */
130 PORT0_DONE = (1 << 1), /* shift by port # */
131 HC0_IRQ_PEND = 0x1ff, /* bits 0-8 = HC0's ports */
132 HC_SHIFT = 9, /* bits 9-17 = HC1's ports */
133 PCI_ERR = (1 << 18),
134 TRAN_LO_DONE = (1 << 19), /* 6xxx: IRQ coalescing */
135 TRAN_HI_DONE = (1 << 20), /* 6xxx: IRQ coalescing */
136 PORTS_0_7_COAL_DONE = (1 << 21), /* 6xxx: IRQ coalescing */
137 GPIO_INT = (1 << 22),
138 SELF_INT = (1 << 23),
139 TWSI_INT = (1 << 24),
140 HC_MAIN_RSVD = (0x7f << 25), /* bits 31-25 */
Jeff Garzik8b260242005-11-12 12:32:50 -0500141 HC_MAIN_MASKED_IRQS = (TRAN_LO_DONE | TRAN_HI_DONE |
Brett Russ20f733e2005-09-01 18:26:17 -0400142 PORTS_0_7_COAL_DONE | GPIO_INT | TWSI_INT |
143 HC_MAIN_RSVD),
144
145 /* SATAHC registers */
146 HC_CFG_OFS = 0,
147
148 HC_IRQ_CAUSE_OFS = 0x14,
Brett Russ31961942005-09-30 01:36:00 -0400149 CRPB_DMA_DONE = (1 << 0), /* shift by port # */
Brett Russ20f733e2005-09-01 18:26:17 -0400150 HC_IRQ_COAL = (1 << 4), /* IRQ coalescing */
151 DEV_IRQ = (1 << 8), /* shift by port # */
152
153 /* Shadow block registers */
Brett Russ31961942005-09-30 01:36:00 -0400154 SHD_BLK_OFS = 0x100,
155 SHD_CTL_AST_OFS = 0x20, /* ofs from SHD_BLK_OFS */
Brett Russ20f733e2005-09-01 18:26:17 -0400156
157 /* SATA registers */
158 SATA_STATUS_OFS = 0x300, /* ctrl, err regs follow status */
159 SATA_ACTIVE_OFS = 0x350,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500160 PHY_MODE3 = 0x310,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500161 PHY_MODE4 = 0x314,
162 PHY_MODE2 = 0x330,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500163 MV5_PHY_MODE = 0x74,
164 MV5_LT_MODE = 0x30,
165 MV5_PHY_CTL = 0x0C,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500166 SATA_INTERFACE_CTL = 0x050,
167
168 MV_M2_PREAMP_MASK = 0x7e0,
Brett Russ20f733e2005-09-01 18:26:17 -0400169
170 /* Port registers */
171 EDMA_CFG_OFS = 0,
Brett Russ31961942005-09-30 01:36:00 -0400172 EDMA_CFG_Q_DEPTH = 0, /* queueing disabled */
173 EDMA_CFG_NCQ = (1 << 5),
174 EDMA_CFG_NCQ_GO_ON_ERR = (1 << 14), /* continue on error */
175 EDMA_CFG_RD_BRST_EXT = (1 << 11), /* read burst 512B */
176 EDMA_CFG_WR_BUFF_LEN = (1 << 13), /* write buffer 512B */
Brett Russ20f733e2005-09-01 18:26:17 -0400177
178 EDMA_ERR_IRQ_CAUSE_OFS = 0x8,
179 EDMA_ERR_IRQ_MASK_OFS = 0xc,
180 EDMA_ERR_D_PAR = (1 << 0),
181 EDMA_ERR_PRD_PAR = (1 << 1),
182 EDMA_ERR_DEV = (1 << 2),
183 EDMA_ERR_DEV_DCON = (1 << 3),
184 EDMA_ERR_DEV_CON = (1 << 4),
185 EDMA_ERR_SERR = (1 << 5),
186 EDMA_ERR_SELF_DIS = (1 << 7),
187 EDMA_ERR_BIST_ASYNC = (1 << 8),
188 EDMA_ERR_CRBQ_PAR = (1 << 9),
189 EDMA_ERR_CRPB_PAR = (1 << 10),
190 EDMA_ERR_INTRL_PAR = (1 << 11),
191 EDMA_ERR_IORDY = (1 << 12),
192 EDMA_ERR_LNK_CTRL_RX = (0xf << 13),
193 EDMA_ERR_LNK_CTRL_RX_2 = (1 << 15),
194 EDMA_ERR_LNK_DATA_RX = (0xf << 17),
195 EDMA_ERR_LNK_CTRL_TX = (0x1f << 21),
196 EDMA_ERR_LNK_DATA_TX = (0x1f << 26),
197 EDMA_ERR_TRANS_PROTO = (1 << 31),
Jeff Garzik8b260242005-11-12 12:32:50 -0500198 EDMA_ERR_FATAL = (EDMA_ERR_D_PAR | EDMA_ERR_PRD_PAR |
Brett Russ20f733e2005-09-01 18:26:17 -0400199 EDMA_ERR_DEV_DCON | EDMA_ERR_CRBQ_PAR |
200 EDMA_ERR_CRPB_PAR | EDMA_ERR_INTRL_PAR |
Jeff Garzik8b260242005-11-12 12:32:50 -0500201 EDMA_ERR_IORDY | EDMA_ERR_LNK_CTRL_RX_2 |
Brett Russ20f733e2005-09-01 18:26:17 -0400202 EDMA_ERR_LNK_DATA_RX |
Jeff Garzik8b260242005-11-12 12:32:50 -0500203 EDMA_ERR_LNK_DATA_TX |
Brett Russ20f733e2005-09-01 18:26:17 -0400204 EDMA_ERR_TRANS_PROTO),
205
Brett Russ31961942005-09-30 01:36:00 -0400206 EDMA_REQ_Q_BASE_HI_OFS = 0x10,
207 EDMA_REQ_Q_IN_PTR_OFS = 0x14, /* also contains BASE_LO */
Brett Russ31961942005-09-30 01:36:00 -0400208
209 EDMA_REQ_Q_OUT_PTR_OFS = 0x18,
210 EDMA_REQ_Q_PTR_SHIFT = 5,
211
212 EDMA_RSP_Q_BASE_HI_OFS = 0x1c,
213 EDMA_RSP_Q_IN_PTR_OFS = 0x20,
214 EDMA_RSP_Q_OUT_PTR_OFS = 0x24, /* also contains BASE_LO */
Brett Russ31961942005-09-30 01:36:00 -0400215 EDMA_RSP_Q_PTR_SHIFT = 3,
216
Brett Russ20f733e2005-09-01 18:26:17 -0400217 EDMA_CMD_OFS = 0x28,
218 EDMA_EN = (1 << 0),
219 EDMA_DS = (1 << 1),
220 ATA_RST = (1 << 2),
221
Jeff Garzikc9d39132005-11-13 17:47:51 -0500222 EDMA_IORDY_TMOUT = 0x34,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500223 EDMA_ARB_CFG = 0x38,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500224
Brett Russ31961942005-09-30 01:36:00 -0400225 /* Host private flags (hp_flags) */
226 MV_HP_FLAG_MSI = (1 << 0),
Jeff Garzik47c2b672005-11-12 21:13:17 -0500227 MV_HP_ERRATA_50XXB0 = (1 << 1),
228 MV_HP_ERRATA_50XXB2 = (1 << 2),
229 MV_HP_ERRATA_60X1B2 = (1 << 3),
230 MV_HP_ERRATA_60X1C0 = (1 << 4),
231 MV_HP_50XX = (1 << 5),
Brett Russ20f733e2005-09-01 18:26:17 -0400232
Brett Russ31961942005-09-30 01:36:00 -0400233 /* Port private flags (pp_flags) */
234 MV_PP_FLAG_EDMA_EN = (1 << 0),
235 MV_PP_FLAG_EDMA_DS_ACT = (1 << 1),
236};
237
Jeff Garzikc9d39132005-11-13 17:47:51 -0500238#define IS_50XX(hpriv) ((hpriv)->hp_flags & MV_HP_50XX)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500239#define IS_60XX(hpriv) (((hpriv)->hp_flags & MV_HP_50XX) == 0)
240
Jeff Garzik095fec82005-11-12 09:50:49 -0500241enum {
242 /* Our DMA boundary is determined by an ePRD being unable to handle
243 * anything larger than 64KB
244 */
245 MV_DMA_BOUNDARY = 0xffffU,
246
247 EDMA_REQ_Q_BASE_LO_MASK = 0xfffffc00U,
248
249 EDMA_RSP_Q_BASE_LO_MASK = 0xffffff00U,
250};
251
Jeff Garzik522479f2005-11-12 22:14:02 -0500252enum chip_type {
253 chip_504x,
254 chip_508x,
255 chip_5080,
256 chip_604x,
257 chip_608x,
258};
259
Brett Russ31961942005-09-30 01:36:00 -0400260/* Command ReQuest Block: 32B */
261struct mv_crqb {
262 u32 sg_addr;
263 u32 sg_addr_hi;
264 u16 ctrl_flags;
265 u16 ata_cmd[11];
266};
267
268/* Command ResPonse Block: 8B */
269struct mv_crpb {
270 u16 id;
271 u16 flags;
272 u32 tmstmp;
273};
274
275/* EDMA Physical Region Descriptor (ePRD); A.K.A. SG */
276struct mv_sg {
277 u32 addr;
278 u32 flags_size;
279 u32 addr_hi;
280 u32 reserved;
Brett Russ20f733e2005-09-01 18:26:17 -0400281};
282
283struct mv_port_priv {
Brett Russ31961942005-09-30 01:36:00 -0400284 struct mv_crqb *crqb;
285 dma_addr_t crqb_dma;
286 struct mv_crpb *crpb;
287 dma_addr_t crpb_dma;
288 struct mv_sg *sg_tbl;
289 dma_addr_t sg_tbl_dma;
Brett Russ20f733e2005-09-01 18:26:17 -0400290
Brett Russ31961942005-09-30 01:36:00 -0400291 unsigned req_producer; /* cp of req_in_ptr */
292 unsigned rsp_consumer; /* cp of rsp_out_ptr */
293 u32 pp_flags;
Brett Russ20f733e2005-09-01 18:26:17 -0400294};
295
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500296struct mv_port_signal {
297 u32 amps;
298 u32 pre;
299};
300
Jeff Garzik47c2b672005-11-12 21:13:17 -0500301struct mv_host_priv;
302struct mv_hw_ops {
Jeff Garzik2a47ce02005-11-12 23:05:14 -0500303 void (*phy_errata)(struct mv_host_priv *hpriv, void __iomem *mmio,
304 unsigned int port);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500305 void (*enable_leds)(struct mv_host_priv *hpriv, void __iomem *mmio);
306 void (*read_preamp)(struct mv_host_priv *hpriv, int idx,
307 void __iomem *mmio);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500308 int (*reset_hc)(struct mv_host_priv *hpriv, void __iomem *mmio,
309 unsigned int n_hc);
Jeff Garzik522479f2005-11-12 22:14:02 -0500310 void (*reset_flash)(struct mv_host_priv *hpriv, void __iomem *mmio);
311 void (*reset_bus)(struct pci_dev *pdev, void __iomem *mmio);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500312};
313
Brett Russ20f733e2005-09-01 18:26:17 -0400314struct mv_host_priv {
Brett Russ31961942005-09-30 01:36:00 -0400315 u32 hp_flags;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500316 struct mv_port_signal signal[8];
Jeff Garzik47c2b672005-11-12 21:13:17 -0500317 const struct mv_hw_ops *ops;
Brett Russ20f733e2005-09-01 18:26:17 -0400318};
319
320static void mv_irq_clear(struct ata_port *ap);
321static u32 mv_scr_read(struct ata_port *ap, unsigned int sc_reg_in);
322static void mv_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500323static u32 mv5_scr_read(struct ata_port *ap, unsigned int sc_reg_in);
324static void mv5_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val);
Brett Russ20f733e2005-09-01 18:26:17 -0400325static void mv_phy_reset(struct ata_port *ap);
Jeff Garzik22374672005-11-17 10:59:48 -0500326static void __mv_phy_reset(struct ata_port *ap, int can_sleep);
Brett Russ31961942005-09-30 01:36:00 -0400327static void mv_host_stop(struct ata_host_set *host_set);
328static int mv_port_start(struct ata_port *ap);
329static void mv_port_stop(struct ata_port *ap);
330static void mv_qc_prep(struct ata_queued_cmd *qc);
331static int mv_qc_issue(struct ata_queued_cmd *qc);
Brett Russ20f733e2005-09-01 18:26:17 -0400332static irqreturn_t mv_interrupt(int irq, void *dev_instance,
333 struct pt_regs *regs);
Brett Russ31961942005-09-30 01:36:00 -0400334static void mv_eng_timeout(struct ata_port *ap);
Brett Russ20f733e2005-09-01 18:26:17 -0400335static int mv_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
336
Jeff Garzik2a47ce02005-11-12 23:05:14 -0500337static void mv5_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
338 unsigned int port);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500339static void mv5_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio);
340static void mv5_read_preamp(struct mv_host_priv *hpriv, int idx,
341 void __iomem *mmio);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500342static int mv5_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
343 unsigned int n_hc);
Jeff Garzik522479f2005-11-12 22:14:02 -0500344static void mv5_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio);
345static void mv5_reset_bus(struct pci_dev *pdev, void __iomem *mmio);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500346
Jeff Garzik2a47ce02005-11-12 23:05:14 -0500347static void mv6_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
348 unsigned int port);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500349static void mv6_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio);
350static void mv6_read_preamp(struct mv_host_priv *hpriv, int idx,
351 void __iomem *mmio);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500352static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
353 unsigned int n_hc);
Jeff Garzik522479f2005-11-12 22:14:02 -0500354static void mv6_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio);
355static void mv_reset_pci_bus(struct pci_dev *pdev, void __iomem *mmio);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500356static void mv_channel_reset(struct mv_host_priv *hpriv, void __iomem *mmio,
357 unsigned int port_no);
358static void mv_stop_and_reset(struct ata_port *ap);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500359
Jeff Garzik193515d2005-11-07 00:59:37 -0500360static struct scsi_host_template mv_sht = {
Brett Russ20f733e2005-09-01 18:26:17 -0400361 .module = THIS_MODULE,
362 .name = DRV_NAME,
363 .ioctl = ata_scsi_ioctl,
364 .queuecommand = ata_scsi_queuecmd,
365 .eh_strategy_handler = ata_scsi_error,
Brett Russ31961942005-09-30 01:36:00 -0400366 .can_queue = MV_USE_Q_DEPTH,
Brett Russ20f733e2005-09-01 18:26:17 -0400367 .this_id = ATA_SHT_THIS_ID,
Jeff Garzik22374672005-11-17 10:59:48 -0500368 .sg_tablesize = MV_MAX_SG_CT / 2,
Brett Russ20f733e2005-09-01 18:26:17 -0400369 .max_sectors = ATA_MAX_SECTORS,
370 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
371 .emulated = ATA_SHT_EMULATED,
Brett Russ31961942005-09-30 01:36:00 -0400372 .use_clustering = ATA_SHT_USE_CLUSTERING,
Brett Russ20f733e2005-09-01 18:26:17 -0400373 .proc_name = DRV_NAME,
374 .dma_boundary = MV_DMA_BOUNDARY,
375 .slave_configure = ata_scsi_slave_config,
376 .bios_param = ata_std_bios_param,
377 .ordered_flush = 1,
378};
379
Jeff Garzikc9d39132005-11-13 17:47:51 -0500380static const struct ata_port_operations mv5_ops = {
381 .port_disable = ata_port_disable,
382
383 .tf_load = ata_tf_load,
384 .tf_read = ata_tf_read,
385 .check_status = ata_check_status,
386 .exec_command = ata_exec_command,
387 .dev_select = ata_std_dev_select,
388
389 .phy_reset = mv_phy_reset,
390
391 .qc_prep = mv_qc_prep,
392 .qc_issue = mv_qc_issue,
393
394 .eng_timeout = mv_eng_timeout,
395
396 .irq_handler = mv_interrupt,
397 .irq_clear = mv_irq_clear,
398
399 .scr_read = mv5_scr_read,
400 .scr_write = mv5_scr_write,
401
402 .port_start = mv_port_start,
403 .port_stop = mv_port_stop,
404 .host_stop = mv_host_stop,
405};
406
407static const struct ata_port_operations mv6_ops = {
Brett Russ20f733e2005-09-01 18:26:17 -0400408 .port_disable = ata_port_disable,
409
410 .tf_load = ata_tf_load,
411 .tf_read = ata_tf_read,
412 .check_status = ata_check_status,
413 .exec_command = ata_exec_command,
414 .dev_select = ata_std_dev_select,
415
416 .phy_reset = mv_phy_reset,
417
Brett Russ31961942005-09-30 01:36:00 -0400418 .qc_prep = mv_qc_prep,
419 .qc_issue = mv_qc_issue,
Brett Russ20f733e2005-09-01 18:26:17 -0400420
Brett Russ31961942005-09-30 01:36:00 -0400421 .eng_timeout = mv_eng_timeout,
Brett Russ20f733e2005-09-01 18:26:17 -0400422
423 .irq_handler = mv_interrupt,
424 .irq_clear = mv_irq_clear,
425
426 .scr_read = mv_scr_read,
427 .scr_write = mv_scr_write,
428
Brett Russ31961942005-09-30 01:36:00 -0400429 .port_start = mv_port_start,
430 .port_stop = mv_port_stop,
431 .host_stop = mv_host_stop,
Brett Russ20f733e2005-09-01 18:26:17 -0400432};
433
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100434static const struct ata_port_info mv_port_info[] = {
Brett Russ20f733e2005-09-01 18:26:17 -0400435 { /* chip_504x */
436 .sht = &mv_sht,
Brett Russ31961942005-09-30 01:36:00 -0400437 .host_flags = MV_COMMON_FLAGS,
438 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikc9d39132005-11-13 17:47:51 -0500439 .udma_mask = 0x7f, /* udma0-6 */
440 .port_ops = &mv5_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400441 },
442 { /* chip_508x */
443 .sht = &mv_sht,
Brett Russ31961942005-09-30 01:36:00 -0400444 .host_flags = (MV_COMMON_FLAGS | MV_FLAG_DUAL_HC),
445 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikc9d39132005-11-13 17:47:51 -0500446 .udma_mask = 0x7f, /* udma0-6 */
447 .port_ops = &mv5_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400448 },
Jeff Garzik47c2b672005-11-12 21:13:17 -0500449 { /* chip_5080 */
450 .sht = &mv_sht,
451 .host_flags = (MV_COMMON_FLAGS | MV_FLAG_DUAL_HC),
452 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikc9d39132005-11-13 17:47:51 -0500453 .udma_mask = 0x7f, /* udma0-6 */
454 .port_ops = &mv5_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400455 },
456 { /* chip_604x */
457 .sht = &mv_sht,
Brett Russ31961942005-09-30 01:36:00 -0400458 .host_flags = (MV_COMMON_FLAGS | MV_6XXX_FLAGS),
459 .pio_mask = 0x1f, /* pio0-4 */
460 .udma_mask = 0x7f, /* udma0-6 */
Jeff Garzikc9d39132005-11-13 17:47:51 -0500461 .port_ops = &mv6_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400462 },
463 { /* chip_608x */
464 .sht = &mv_sht,
Jeff Garzik8b260242005-11-12 12:32:50 -0500465 .host_flags = (MV_COMMON_FLAGS | MV_6XXX_FLAGS |
Brett Russ31961942005-09-30 01:36:00 -0400466 MV_FLAG_DUAL_HC),
467 .pio_mask = 0x1f, /* pio0-4 */
468 .udma_mask = 0x7f, /* udma0-6 */
Jeff Garzikc9d39132005-11-13 17:47:51 -0500469 .port_ops = &mv6_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400470 },
471};
472
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500473static const struct pci_device_id mv_pci_tbl[] = {
Brett Russ20f733e2005-09-01 18:26:17 -0400474 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5040), 0, 0, chip_504x},
475 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5041), 0, 0, chip_504x},
Jeff Garzik47c2b672005-11-12 21:13:17 -0500476 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5080), 0, 0, chip_5080},
Brett Russ20f733e2005-09-01 18:26:17 -0400477 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5081), 0, 0, chip_508x},
478
479 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6040), 0, 0, chip_604x},
480 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6041), 0, 0, chip_604x},
481 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6080), 0, 0, chip_608x},
482 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6081), 0, 0, chip_608x},
Jeff Garzik29179532005-11-11 08:08:03 -0500483
484 {PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x0241), 0, 0, chip_604x},
Brett Russ20f733e2005-09-01 18:26:17 -0400485 {} /* terminate list */
486};
487
488static struct pci_driver mv_pci_driver = {
489 .name = DRV_NAME,
490 .id_table = mv_pci_tbl,
491 .probe = mv_init_one,
492 .remove = ata_pci_remove_one,
493};
494
Jeff Garzik47c2b672005-11-12 21:13:17 -0500495static const struct mv_hw_ops mv5xxx_ops = {
496 .phy_errata = mv5_phy_errata,
497 .enable_leds = mv5_enable_leds,
498 .read_preamp = mv5_read_preamp,
499 .reset_hc = mv5_reset_hc,
Jeff Garzik522479f2005-11-12 22:14:02 -0500500 .reset_flash = mv5_reset_flash,
501 .reset_bus = mv5_reset_bus,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500502};
503
504static const struct mv_hw_ops mv6xxx_ops = {
505 .phy_errata = mv6_phy_errata,
506 .enable_leds = mv6_enable_leds,
507 .read_preamp = mv6_read_preamp,
508 .reset_hc = mv6_reset_hc,
Jeff Garzik522479f2005-11-12 22:14:02 -0500509 .reset_flash = mv6_reset_flash,
510 .reset_bus = mv_reset_pci_bus,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500511};
512
Brett Russ20f733e2005-09-01 18:26:17 -0400513/*
514 * Functions
515 */
516
517static inline void writelfl(unsigned long data, void __iomem *addr)
518{
519 writel(data, addr);
520 (void) readl(addr); /* flush to avoid PCI posted write */
521}
522
Brett Russ20f733e2005-09-01 18:26:17 -0400523static inline void __iomem *mv_hc_base(void __iomem *base, unsigned int hc)
524{
525 return (base + MV_SATAHC0_REG_BASE + (hc * MV_SATAHC_REG_SZ));
526}
527
Jeff Garzikc9d39132005-11-13 17:47:51 -0500528static inline unsigned int mv_hc_from_port(unsigned int port)
529{
530 return port >> MV_PORT_HC_SHIFT;
531}
532
533static inline unsigned int mv_hardport_from_port(unsigned int port)
534{
535 return port & MV_PORT_MASK;
536}
537
538static inline void __iomem *mv_hc_base_from_port(void __iomem *base,
539 unsigned int port)
540{
541 return mv_hc_base(base, mv_hc_from_port(port));
542}
543
Brett Russ20f733e2005-09-01 18:26:17 -0400544static inline void __iomem *mv_port_base(void __iomem *base, unsigned int port)
545{
Jeff Garzikc9d39132005-11-13 17:47:51 -0500546 return mv_hc_base_from_port(base, port) +
Jeff Garzik8b260242005-11-12 12:32:50 -0500547 MV_SATAHC_ARBTR_REG_SZ +
Jeff Garzikc9d39132005-11-13 17:47:51 -0500548 (mv_hardport_from_port(port) * MV_PORT_REG_SZ);
Brett Russ20f733e2005-09-01 18:26:17 -0400549}
550
551static inline void __iomem *mv_ap_base(struct ata_port *ap)
552{
553 return mv_port_base(ap->host_set->mmio_base, ap->port_no);
554}
555
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500556static inline int mv_get_hc_count(unsigned long host_flags)
Brett Russ20f733e2005-09-01 18:26:17 -0400557{
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500558 return ((host_flags & MV_FLAG_DUAL_HC) ? 2 : 1);
Brett Russ20f733e2005-09-01 18:26:17 -0400559}
560
561static void mv_irq_clear(struct ata_port *ap)
562{
563}
564
Brett Russ05b308e2005-10-05 17:08:53 -0400565/**
566 * mv_start_dma - Enable eDMA engine
567 * @base: port base address
568 * @pp: port private data
569 *
570 * Verify the local cache of the eDMA state is accurate with an
571 * assert.
572 *
573 * LOCKING:
574 * Inherited from caller.
575 */
Brett Russafb0edd2005-10-05 17:08:42 -0400576static void mv_start_dma(void __iomem *base, struct mv_port_priv *pp)
Brett Russ31961942005-09-30 01:36:00 -0400577{
Brett Russafb0edd2005-10-05 17:08:42 -0400578 if (!(MV_PP_FLAG_EDMA_EN & pp->pp_flags)) {
579 writelfl(EDMA_EN, base + EDMA_CMD_OFS);
580 pp->pp_flags |= MV_PP_FLAG_EDMA_EN;
581 }
582 assert(EDMA_EN & readl(base + EDMA_CMD_OFS));
Brett Russ31961942005-09-30 01:36:00 -0400583}
584
Brett Russ05b308e2005-10-05 17:08:53 -0400585/**
586 * mv_stop_dma - Disable eDMA engine
587 * @ap: ATA channel to manipulate
588 *
589 * Verify the local cache of the eDMA state is accurate with an
590 * assert.
591 *
592 * LOCKING:
593 * Inherited from caller.
594 */
Brett Russ31961942005-09-30 01:36:00 -0400595static void mv_stop_dma(struct ata_port *ap)
596{
597 void __iomem *port_mmio = mv_ap_base(ap);
598 struct mv_port_priv *pp = ap->private_data;
Brett Russ31961942005-09-30 01:36:00 -0400599 u32 reg;
600 int i;
601
Brett Russafb0edd2005-10-05 17:08:42 -0400602 if (MV_PP_FLAG_EDMA_EN & pp->pp_flags) {
603 /* Disable EDMA if active. The disable bit auto clears.
Brett Russ31961942005-09-30 01:36:00 -0400604 */
Brett Russ31961942005-09-30 01:36:00 -0400605 writelfl(EDMA_DS, port_mmio + EDMA_CMD_OFS);
606 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
Brett Russafb0edd2005-10-05 17:08:42 -0400607 } else {
608 assert(!(EDMA_EN & readl(port_mmio + EDMA_CMD_OFS)));
609 }
Jeff Garzik8b260242005-11-12 12:32:50 -0500610
Brett Russ31961942005-09-30 01:36:00 -0400611 /* now properly wait for the eDMA to stop */
612 for (i = 1000; i > 0; i--) {
613 reg = readl(port_mmio + EDMA_CMD_OFS);
614 if (!(EDMA_EN & reg)) {
615 break;
616 }
617 udelay(100);
618 }
619
Brett Russ31961942005-09-30 01:36:00 -0400620 if (EDMA_EN & reg) {
621 printk(KERN_ERR "ata%u: Unable to stop eDMA\n", ap->id);
Brett Russafb0edd2005-10-05 17:08:42 -0400622 /* FIXME: Consider doing a reset here to recover */
Brett Russ31961942005-09-30 01:36:00 -0400623 }
624}
625
Jeff Garzik8a70f8d2005-10-05 17:19:47 -0400626#ifdef ATA_DEBUG
Brett Russ31961942005-09-30 01:36:00 -0400627static void mv_dump_mem(void __iomem *start, unsigned bytes)
628{
Brett Russ31961942005-09-30 01:36:00 -0400629 int b, w;
630 for (b = 0; b < bytes; ) {
631 DPRINTK("%p: ", start + b);
632 for (w = 0; b < bytes && w < 4; w++) {
633 printk("%08x ",readl(start + b));
634 b += sizeof(u32);
635 }
636 printk("\n");
637 }
Brett Russ31961942005-09-30 01:36:00 -0400638}
Jeff Garzik8a70f8d2005-10-05 17:19:47 -0400639#endif
640
Brett Russ31961942005-09-30 01:36:00 -0400641static void mv_dump_pci_cfg(struct pci_dev *pdev, unsigned bytes)
642{
643#ifdef ATA_DEBUG
644 int b, w;
645 u32 dw;
646 for (b = 0; b < bytes; ) {
647 DPRINTK("%02x: ", b);
648 for (w = 0; b < bytes && w < 4; w++) {
649 (void) pci_read_config_dword(pdev,b,&dw);
650 printk("%08x ",dw);
651 b += sizeof(u32);
652 }
653 printk("\n");
654 }
655#endif
656}
657static void mv_dump_all_regs(void __iomem *mmio_base, int port,
658 struct pci_dev *pdev)
659{
660#ifdef ATA_DEBUG
Jeff Garzik8b260242005-11-12 12:32:50 -0500661 void __iomem *hc_base = mv_hc_base(mmio_base,
Brett Russ31961942005-09-30 01:36:00 -0400662 port >> MV_PORT_HC_SHIFT);
663 void __iomem *port_base;
664 int start_port, num_ports, p, start_hc, num_hcs, hc;
665
666 if (0 > port) {
667 start_hc = start_port = 0;
668 num_ports = 8; /* shld be benign for 4 port devs */
669 num_hcs = 2;
670 } else {
671 start_hc = port >> MV_PORT_HC_SHIFT;
672 start_port = port;
673 num_ports = num_hcs = 1;
674 }
Jeff Garzik8b260242005-11-12 12:32:50 -0500675 DPRINTK("All registers for port(s) %u-%u:\n", start_port,
Brett Russ31961942005-09-30 01:36:00 -0400676 num_ports > 1 ? num_ports - 1 : start_port);
677
678 if (NULL != pdev) {
679 DPRINTK("PCI config space regs:\n");
680 mv_dump_pci_cfg(pdev, 0x68);
681 }
682 DPRINTK("PCI regs:\n");
683 mv_dump_mem(mmio_base+0xc00, 0x3c);
684 mv_dump_mem(mmio_base+0xd00, 0x34);
685 mv_dump_mem(mmio_base+0xf00, 0x4);
686 mv_dump_mem(mmio_base+0x1d00, 0x6c);
687 for (hc = start_hc; hc < start_hc + num_hcs; hc++) {
688 hc_base = mv_hc_base(mmio_base, port >> MV_PORT_HC_SHIFT);
689 DPRINTK("HC regs (HC %i):\n", hc);
690 mv_dump_mem(hc_base, 0x1c);
691 }
692 for (p = start_port; p < start_port + num_ports; p++) {
693 port_base = mv_port_base(mmio_base, p);
694 DPRINTK("EDMA regs (port %i):\n",p);
695 mv_dump_mem(port_base, 0x54);
696 DPRINTK("SATA regs (port %i):\n",p);
697 mv_dump_mem(port_base+0x300, 0x60);
698 }
699#endif
700}
701
Brett Russ20f733e2005-09-01 18:26:17 -0400702static unsigned int mv_scr_offset(unsigned int sc_reg_in)
703{
704 unsigned int ofs;
705
706 switch (sc_reg_in) {
707 case SCR_STATUS:
708 case SCR_CONTROL:
709 case SCR_ERROR:
710 ofs = SATA_STATUS_OFS + (sc_reg_in * sizeof(u32));
711 break;
712 case SCR_ACTIVE:
713 ofs = SATA_ACTIVE_OFS; /* active is not with the others */
714 break;
715 default:
716 ofs = 0xffffffffU;
717 break;
718 }
719 return ofs;
720}
721
722static u32 mv_scr_read(struct ata_port *ap, unsigned int sc_reg_in)
723{
724 unsigned int ofs = mv_scr_offset(sc_reg_in);
725
726 if (0xffffffffU != ofs) {
727 return readl(mv_ap_base(ap) + ofs);
728 } else {
729 return (u32) ofs;
730 }
731}
732
733static void mv_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val)
734{
735 unsigned int ofs = mv_scr_offset(sc_reg_in);
736
737 if (0xffffffffU != ofs) {
738 writelfl(val, mv_ap_base(ap) + ofs);
739 }
740}
741
Brett Russ05b308e2005-10-05 17:08:53 -0400742/**
Brett Russ05b308e2005-10-05 17:08:53 -0400743 * mv_host_stop - Host specific cleanup/stop routine.
744 * @host_set: host data structure
745 *
746 * Disable ints, cleanup host memory, call general purpose
747 * host_stop.
748 *
749 * LOCKING:
750 * Inherited from caller.
751 */
Brett Russ31961942005-09-30 01:36:00 -0400752static void mv_host_stop(struct ata_host_set *host_set)
753{
754 struct mv_host_priv *hpriv = host_set->private_data;
755 struct pci_dev *pdev = to_pci_dev(host_set->dev);
756
757 if (hpriv->hp_flags & MV_HP_FLAG_MSI) {
758 pci_disable_msi(pdev);
759 } else {
760 pci_intx(pdev, 0);
761 }
762 kfree(hpriv);
763 ata_host_stop(host_set);
764}
765
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500766static inline void mv_priv_free(struct mv_port_priv *pp, struct device *dev)
767{
768 dma_free_coherent(dev, MV_PORT_PRIV_DMA_SZ, pp->crpb, pp->crpb_dma);
769}
770
Brett Russ05b308e2005-10-05 17:08:53 -0400771/**
772 * mv_port_start - Port specific init/start routine.
773 * @ap: ATA channel to manipulate
774 *
775 * Allocate and point to DMA memory, init port private memory,
776 * zero indices.
777 *
778 * LOCKING:
779 * Inherited from caller.
780 */
Brett Russ31961942005-09-30 01:36:00 -0400781static int mv_port_start(struct ata_port *ap)
782{
783 struct device *dev = ap->host_set->dev;
784 struct mv_port_priv *pp;
785 void __iomem *port_mmio = mv_ap_base(ap);
786 void *mem;
787 dma_addr_t mem_dma;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500788 int rc = -ENOMEM;
Brett Russ31961942005-09-30 01:36:00 -0400789
790 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500791 if (!pp)
792 goto err_out;
Brett Russ31961942005-09-30 01:36:00 -0400793 memset(pp, 0, sizeof(*pp));
794
Jeff Garzik8b260242005-11-12 12:32:50 -0500795 mem = dma_alloc_coherent(dev, MV_PORT_PRIV_DMA_SZ, &mem_dma,
Brett Russ31961942005-09-30 01:36:00 -0400796 GFP_KERNEL);
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500797 if (!mem)
798 goto err_out_pp;
Brett Russ31961942005-09-30 01:36:00 -0400799 memset(mem, 0, MV_PORT_PRIV_DMA_SZ);
800
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500801 rc = ata_pad_alloc(ap, dev);
802 if (rc)
803 goto err_out_priv;
804
Jeff Garzik8b260242005-11-12 12:32:50 -0500805 /* First item in chunk of DMA memory:
Brett Russ31961942005-09-30 01:36:00 -0400806 * 32-slot command request table (CRQB), 32 bytes each in size
807 */
808 pp->crqb = mem;
809 pp->crqb_dma = mem_dma;
810 mem += MV_CRQB_Q_SZ;
811 mem_dma += MV_CRQB_Q_SZ;
812
Jeff Garzik8b260242005-11-12 12:32:50 -0500813 /* Second item:
Brett Russ31961942005-09-30 01:36:00 -0400814 * 32-slot command response table (CRPB), 8 bytes each in size
815 */
816 pp->crpb = mem;
817 pp->crpb_dma = mem_dma;
818 mem += MV_CRPB_Q_SZ;
819 mem_dma += MV_CRPB_Q_SZ;
820
821 /* Third item:
822 * Table of scatter-gather descriptors (ePRD), 16 bytes each
823 */
824 pp->sg_tbl = mem;
825 pp->sg_tbl_dma = mem_dma;
826
Jeff Garzik8b260242005-11-12 12:32:50 -0500827 writelfl(EDMA_CFG_Q_DEPTH | EDMA_CFG_RD_BRST_EXT |
Brett Russ31961942005-09-30 01:36:00 -0400828 EDMA_CFG_WR_BUFF_LEN, port_mmio + EDMA_CFG_OFS);
829
830 writel((pp->crqb_dma >> 16) >> 16, port_mmio + EDMA_REQ_Q_BASE_HI_OFS);
Jeff Garzik8b260242005-11-12 12:32:50 -0500831 writelfl(pp->crqb_dma & EDMA_REQ_Q_BASE_LO_MASK,
Brett Russ31961942005-09-30 01:36:00 -0400832 port_mmio + EDMA_REQ_Q_IN_PTR_OFS);
833
834 writelfl(0, port_mmio + EDMA_REQ_Q_OUT_PTR_OFS);
835 writelfl(0, port_mmio + EDMA_RSP_Q_IN_PTR_OFS);
836
837 writel((pp->crpb_dma >> 16) >> 16, port_mmio + EDMA_RSP_Q_BASE_HI_OFS);
Jeff Garzik8b260242005-11-12 12:32:50 -0500838 writelfl(pp->crpb_dma & EDMA_RSP_Q_BASE_LO_MASK,
Brett Russ31961942005-09-30 01:36:00 -0400839 port_mmio + EDMA_RSP_Q_OUT_PTR_OFS);
840
841 pp->req_producer = pp->rsp_consumer = 0;
842
843 /* Don't turn on EDMA here...do it before DMA commands only. Else
844 * we'll be unable to send non-data, PIO, etc due to restricted access
845 * to shadow regs.
846 */
847 ap->private_data = pp;
848 return 0;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500849
850err_out_priv:
851 mv_priv_free(pp, dev);
852err_out_pp:
853 kfree(pp);
854err_out:
855 return rc;
Brett Russ31961942005-09-30 01:36:00 -0400856}
857
Brett Russ05b308e2005-10-05 17:08:53 -0400858/**
859 * mv_port_stop - Port specific cleanup/stop routine.
860 * @ap: ATA channel to manipulate
861 *
862 * Stop DMA, cleanup port memory.
863 *
864 * LOCKING:
865 * This routine uses the host_set lock to protect the DMA stop.
866 */
Brett Russ31961942005-09-30 01:36:00 -0400867static void mv_port_stop(struct ata_port *ap)
868{
869 struct device *dev = ap->host_set->dev;
870 struct mv_port_priv *pp = ap->private_data;
Brett Russafb0edd2005-10-05 17:08:42 -0400871 unsigned long flags;
Brett Russ31961942005-09-30 01:36:00 -0400872
Brett Russafb0edd2005-10-05 17:08:42 -0400873 spin_lock_irqsave(&ap->host_set->lock, flags);
Brett Russ31961942005-09-30 01:36:00 -0400874 mv_stop_dma(ap);
Brett Russafb0edd2005-10-05 17:08:42 -0400875 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Brett Russ31961942005-09-30 01:36:00 -0400876
877 ap->private_data = NULL;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500878 ata_pad_free(ap, dev);
879 mv_priv_free(pp, dev);
Brett Russ31961942005-09-30 01:36:00 -0400880 kfree(pp);
881}
882
Brett Russ05b308e2005-10-05 17:08:53 -0400883/**
884 * mv_fill_sg - Fill out the Marvell ePRD (scatter gather) entries
885 * @qc: queued command whose SG list to source from
886 *
887 * Populate the SG list and mark the last entry.
888 *
889 * LOCKING:
890 * Inherited from caller.
891 */
Brett Russ31961942005-09-30 01:36:00 -0400892static void mv_fill_sg(struct ata_queued_cmd *qc)
893{
894 struct mv_port_priv *pp = qc->ap->private_data;
Jeff Garzik972c26b2005-10-18 22:14:54 -0400895 unsigned int i = 0;
896 struct scatterlist *sg;
Brett Russ31961942005-09-30 01:36:00 -0400897
Jeff Garzik972c26b2005-10-18 22:14:54 -0400898 ata_for_each_sg(sg, qc) {
Brett Russ31961942005-09-30 01:36:00 -0400899 dma_addr_t addr;
Jeff Garzik22374672005-11-17 10:59:48 -0500900 u32 sg_len, len, offset;
Brett Russ31961942005-09-30 01:36:00 -0400901
Jeff Garzik972c26b2005-10-18 22:14:54 -0400902 addr = sg_dma_address(sg);
903 sg_len = sg_dma_len(sg);
Brett Russ31961942005-09-30 01:36:00 -0400904
Jeff Garzik22374672005-11-17 10:59:48 -0500905 while (sg_len) {
906 offset = addr & MV_DMA_BOUNDARY;
907 len = sg_len;
908 if ((offset + sg_len) > 0x10000)
909 len = 0x10000 - offset;
Jeff Garzik972c26b2005-10-18 22:14:54 -0400910
Jeff Garzik22374672005-11-17 10:59:48 -0500911 pp->sg_tbl[i].addr = cpu_to_le32(addr & 0xffffffff);
912 pp->sg_tbl[i].addr_hi = cpu_to_le32((addr >> 16) >> 16);
913 pp->sg_tbl[i].flags_size = cpu_to_le32(len);
914
915 sg_len -= len;
916 addr += len;
917
918 if (!sg_len && ata_sg_is_last(sg, qc))
919 pp->sg_tbl[i].flags_size |= cpu_to_le32(EPRD_FLAG_END_OF_TBL);
920
921 i++;
922 }
Brett Russ31961942005-09-30 01:36:00 -0400923 }
924}
925
926static inline unsigned mv_inc_q_index(unsigned *index)
927{
928 *index = (*index + 1) & MV_MAX_Q_DEPTH_MASK;
929 return *index;
930}
931
932static inline void mv_crqb_pack_cmd(u16 *cmdw, u8 data, u8 addr, unsigned last)
933{
934 *cmdw = data | (addr << CRQB_CMD_ADDR_SHIFT) | CRQB_CMD_CS |
935 (last ? CRQB_CMD_LAST : 0);
936}
937
Brett Russ05b308e2005-10-05 17:08:53 -0400938/**
939 * mv_qc_prep - Host specific command preparation.
940 * @qc: queued command to prepare
941 *
942 * This routine simply redirects to the general purpose routine
943 * if command is not DMA. Else, it handles prep of the CRQB
944 * (command request block), does some sanity checking, and calls
945 * the SG load routine.
946 *
947 * LOCKING:
948 * Inherited from caller.
949 */
Brett Russ31961942005-09-30 01:36:00 -0400950static void mv_qc_prep(struct ata_queued_cmd *qc)
951{
952 struct ata_port *ap = qc->ap;
953 struct mv_port_priv *pp = ap->private_data;
954 u16 *cw;
955 struct ata_taskfile *tf;
956 u16 flags = 0;
957
958 if (ATA_PROT_DMA != qc->tf.protocol) {
959 return;
Brett Russ20f733e2005-09-01 18:26:17 -0400960 }
961
Brett Russ31961942005-09-30 01:36:00 -0400962 /* the req producer index should be the same as we remember it */
Jeff Garzik8b260242005-11-12 12:32:50 -0500963 assert(((readl(mv_ap_base(qc->ap) + EDMA_REQ_Q_IN_PTR_OFS) >>
Brett Russ31961942005-09-30 01:36:00 -0400964 EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
965 pp->req_producer);
966
967 /* Fill in command request block
968 */
969 if (!(qc->tf.flags & ATA_TFLAG_WRITE)) {
970 flags |= CRQB_FLAG_READ;
971 }
972 assert(MV_MAX_Q_DEPTH > qc->tag);
973 flags |= qc->tag << CRQB_TAG_SHIFT;
974
Jeff Garzik8b260242005-11-12 12:32:50 -0500975 pp->crqb[pp->req_producer].sg_addr =
Brett Russ31961942005-09-30 01:36:00 -0400976 cpu_to_le32(pp->sg_tbl_dma & 0xffffffff);
Jeff Garzik8b260242005-11-12 12:32:50 -0500977 pp->crqb[pp->req_producer].sg_addr_hi =
Brett Russ31961942005-09-30 01:36:00 -0400978 cpu_to_le32((pp->sg_tbl_dma >> 16) >> 16);
979 pp->crqb[pp->req_producer].ctrl_flags = cpu_to_le16(flags);
980
981 cw = &pp->crqb[pp->req_producer].ata_cmd[0];
982 tf = &qc->tf;
983
984 /* Sadly, the CRQB cannot accomodate all registers--there are
985 * only 11 bytes...so we must pick and choose required
986 * registers based on the command. So, we drop feature and
987 * hob_feature for [RW] DMA commands, but they are needed for
988 * NCQ. NCQ will drop hob_nsect.
989 */
990 switch (tf->command) {
991 case ATA_CMD_READ:
992 case ATA_CMD_READ_EXT:
993 case ATA_CMD_WRITE:
994 case ATA_CMD_WRITE_EXT:
995 mv_crqb_pack_cmd(cw++, tf->hob_nsect, ATA_REG_NSECT, 0);
996 break;
997#ifdef LIBATA_NCQ /* FIXME: remove this line when NCQ added */
998 case ATA_CMD_FPDMA_READ:
999 case ATA_CMD_FPDMA_WRITE:
Jeff Garzik8b260242005-11-12 12:32:50 -05001000 mv_crqb_pack_cmd(cw++, tf->hob_feature, ATA_REG_FEATURE, 0);
Brett Russ31961942005-09-30 01:36:00 -04001001 mv_crqb_pack_cmd(cw++, tf->feature, ATA_REG_FEATURE, 0);
1002 break;
1003#endif /* FIXME: remove this line when NCQ added */
1004 default:
1005 /* The only other commands EDMA supports in non-queued and
1006 * non-NCQ mode are: [RW] STREAM DMA and W DMA FUA EXT, none
1007 * of which are defined/used by Linux. If we get here, this
1008 * driver needs work.
1009 *
1010 * FIXME: modify libata to give qc_prep a return value and
1011 * return error here.
1012 */
1013 BUG_ON(tf->command);
1014 break;
1015 }
1016 mv_crqb_pack_cmd(cw++, tf->nsect, ATA_REG_NSECT, 0);
1017 mv_crqb_pack_cmd(cw++, tf->hob_lbal, ATA_REG_LBAL, 0);
1018 mv_crqb_pack_cmd(cw++, tf->lbal, ATA_REG_LBAL, 0);
1019 mv_crqb_pack_cmd(cw++, tf->hob_lbam, ATA_REG_LBAM, 0);
1020 mv_crqb_pack_cmd(cw++, tf->lbam, ATA_REG_LBAM, 0);
1021 mv_crqb_pack_cmd(cw++, tf->hob_lbah, ATA_REG_LBAH, 0);
1022 mv_crqb_pack_cmd(cw++, tf->lbah, ATA_REG_LBAH, 0);
1023 mv_crqb_pack_cmd(cw++, tf->device, ATA_REG_DEVICE, 0);
1024 mv_crqb_pack_cmd(cw++, tf->command, ATA_REG_CMD, 1); /* last */
1025
1026 if (!(qc->flags & ATA_QCFLAG_DMAMAP)) {
1027 return;
1028 }
1029 mv_fill_sg(qc);
1030}
1031
Brett Russ05b308e2005-10-05 17:08:53 -04001032/**
1033 * mv_qc_issue - Initiate a command to the host
1034 * @qc: queued command to start
1035 *
1036 * This routine simply redirects to the general purpose routine
1037 * if command is not DMA. Else, it sanity checks our local
1038 * caches of the request producer/consumer indices then enables
1039 * DMA and bumps the request producer index.
1040 *
1041 * LOCKING:
1042 * Inherited from caller.
1043 */
Brett Russ31961942005-09-30 01:36:00 -04001044static int mv_qc_issue(struct ata_queued_cmd *qc)
1045{
1046 void __iomem *port_mmio = mv_ap_base(qc->ap);
1047 struct mv_port_priv *pp = qc->ap->private_data;
1048 u32 in_ptr;
1049
1050 if (ATA_PROT_DMA != qc->tf.protocol) {
1051 /* We're about to send a non-EDMA capable command to the
1052 * port. Turn off EDMA so there won't be problems accessing
1053 * shadow block, etc registers.
1054 */
1055 mv_stop_dma(qc->ap);
1056 return ata_qc_issue_prot(qc);
1057 }
1058
1059 in_ptr = readl(port_mmio + EDMA_REQ_Q_IN_PTR_OFS);
1060
1061 /* the req producer index should be the same as we remember it */
1062 assert(((in_ptr >> EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
1063 pp->req_producer);
1064 /* until we do queuing, the queue should be empty at this point */
1065 assert(((in_ptr >> EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
Jeff Garzik8b260242005-11-12 12:32:50 -05001066 ((readl(port_mmio + EDMA_REQ_Q_OUT_PTR_OFS) >>
Brett Russ31961942005-09-30 01:36:00 -04001067 EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK));
1068
1069 mv_inc_q_index(&pp->req_producer); /* now incr producer index */
1070
Brett Russafb0edd2005-10-05 17:08:42 -04001071 mv_start_dma(port_mmio, pp);
Brett Russ31961942005-09-30 01:36:00 -04001072
1073 /* and write the request in pointer to kick the EDMA to life */
1074 in_ptr &= EDMA_REQ_Q_BASE_LO_MASK;
1075 in_ptr |= pp->req_producer << EDMA_REQ_Q_PTR_SHIFT;
1076 writelfl(in_ptr, port_mmio + EDMA_REQ_Q_IN_PTR_OFS);
1077
1078 return 0;
1079}
1080
Brett Russ05b308e2005-10-05 17:08:53 -04001081/**
1082 * mv_get_crpb_status - get status from most recently completed cmd
1083 * @ap: ATA channel to manipulate
1084 *
1085 * This routine is for use when the port is in DMA mode, when it
1086 * will be using the CRPB (command response block) method of
1087 * returning command completion information. We assert indices
1088 * are good, grab status, and bump the response consumer index to
1089 * prove that we're up to date.
1090 *
1091 * LOCKING:
1092 * Inherited from caller.
1093 */
Brett Russ31961942005-09-30 01:36:00 -04001094static u8 mv_get_crpb_status(struct ata_port *ap)
1095{
1096 void __iomem *port_mmio = mv_ap_base(ap);
1097 struct mv_port_priv *pp = ap->private_data;
1098 u32 out_ptr;
1099
1100 out_ptr = readl(port_mmio + EDMA_RSP_Q_OUT_PTR_OFS);
1101
1102 /* the response consumer index should be the same as we remember it */
Jeff Garzik8b260242005-11-12 12:32:50 -05001103 assert(((out_ptr >> EDMA_RSP_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
Brett Russ31961942005-09-30 01:36:00 -04001104 pp->rsp_consumer);
1105
1106 /* increment our consumer index... */
1107 pp->rsp_consumer = mv_inc_q_index(&pp->rsp_consumer);
Jeff Garzik8b260242005-11-12 12:32:50 -05001108
Brett Russ31961942005-09-30 01:36:00 -04001109 /* and, until we do NCQ, there should only be 1 CRPB waiting */
Jeff Garzik8b260242005-11-12 12:32:50 -05001110 assert(((readl(port_mmio + EDMA_RSP_Q_IN_PTR_OFS) >>
1111 EDMA_RSP_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
Brett Russ31961942005-09-30 01:36:00 -04001112 pp->rsp_consumer);
1113
1114 /* write out our inc'd consumer index so EDMA knows we're caught up */
1115 out_ptr &= EDMA_RSP_Q_BASE_LO_MASK;
1116 out_ptr |= pp->rsp_consumer << EDMA_RSP_Q_PTR_SHIFT;
1117 writelfl(out_ptr, port_mmio + EDMA_RSP_Q_OUT_PTR_OFS);
1118
1119 /* Return ATA status register for completed CRPB */
1120 return (pp->crpb[pp->rsp_consumer].flags >> CRPB_FLAG_STATUS_SHIFT);
Brett Russ20f733e2005-09-01 18:26:17 -04001121}
1122
Brett Russ05b308e2005-10-05 17:08:53 -04001123/**
1124 * mv_err_intr - Handle error interrupts on the port
1125 * @ap: ATA channel to manipulate
1126 *
1127 * In most cases, just clear the interrupt and move on. However,
1128 * some cases require an eDMA reset, which is done right before
1129 * the COMRESET in mv_phy_reset(). The SERR case requires a
1130 * clear of pending errors in the SATA SERROR register. Finally,
1131 * if the port disabled DMA, update our cached copy to match.
1132 *
1133 * LOCKING:
1134 * Inherited from caller.
1135 */
Brett Russ20f733e2005-09-01 18:26:17 -04001136static void mv_err_intr(struct ata_port *ap)
1137{
Brett Russ31961942005-09-30 01:36:00 -04001138 void __iomem *port_mmio = mv_ap_base(ap);
Brett Russ20f733e2005-09-01 18:26:17 -04001139 u32 edma_err_cause, serr = 0;
1140
Brett Russ20f733e2005-09-01 18:26:17 -04001141 edma_err_cause = readl(port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
1142
1143 if (EDMA_ERR_SERR & edma_err_cause) {
1144 serr = scr_read(ap, SCR_ERROR);
1145 scr_write_flush(ap, SCR_ERROR, serr);
1146 }
Brett Russafb0edd2005-10-05 17:08:42 -04001147 if (EDMA_ERR_SELF_DIS & edma_err_cause) {
1148 struct mv_port_priv *pp = ap->private_data;
1149 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
1150 }
1151 DPRINTK(KERN_ERR "ata%u: port error; EDMA err cause: 0x%08x "
1152 "SERR: 0x%08x\n", ap->id, edma_err_cause, serr);
Brett Russ20f733e2005-09-01 18:26:17 -04001153
1154 /* Clear EDMA now that SERR cleanup done */
1155 writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
1156
1157 /* check for fatal here and recover if needed */
1158 if (EDMA_ERR_FATAL & edma_err_cause) {
Jeff Garzikc9d39132005-11-13 17:47:51 -05001159 mv_stop_and_reset(ap);
Brett Russ20f733e2005-09-01 18:26:17 -04001160 }
1161}
1162
Brett Russ05b308e2005-10-05 17:08:53 -04001163/**
1164 * mv_host_intr - Handle all interrupts on the given host controller
1165 * @host_set: host specific structure
1166 * @relevant: port error bits relevant to this host controller
1167 * @hc: which host controller we're to look at
1168 *
1169 * Read then write clear the HC interrupt status then walk each
1170 * port connected to the HC and see if it needs servicing. Port
1171 * success ints are reported in the HC interrupt status reg, the
1172 * port error ints are reported in the higher level main
1173 * interrupt status register and thus are passed in via the
1174 * 'relevant' argument.
1175 *
1176 * LOCKING:
1177 * Inherited from caller.
Brett Russ20f733e2005-09-01 18:26:17 -04001178 */
1179static void mv_host_intr(struct ata_host_set *host_set, u32 relevant,
1180 unsigned int hc)
1181{
1182 void __iomem *mmio = host_set->mmio_base;
1183 void __iomem *hc_mmio = mv_hc_base(mmio, hc);
1184 struct ata_port *ap;
1185 struct ata_queued_cmd *qc;
1186 u32 hc_irq_cause;
Brett Russ31961942005-09-30 01:36:00 -04001187 int shift, port, port0, hard_port, handled;
Jeff Garzika7dac442005-10-30 04:44:42 -05001188 unsigned int err_mask;
Brett Russ31961942005-09-30 01:36:00 -04001189 u8 ata_status = 0;
Brett Russ20f733e2005-09-01 18:26:17 -04001190
1191 if (hc == 0) {
1192 port0 = 0;
1193 } else {
1194 port0 = MV_PORTS_PER_HC;
1195 }
1196
1197 /* we'll need the HC success int register in most cases */
1198 hc_irq_cause = readl(hc_mmio + HC_IRQ_CAUSE_OFS);
1199 if (hc_irq_cause) {
Brett Russ31961942005-09-30 01:36:00 -04001200 writelfl(~hc_irq_cause, hc_mmio + HC_IRQ_CAUSE_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04001201 }
1202
1203 VPRINTK("ENTER, hc%u relevant=0x%08x HC IRQ cause=0x%08x\n",
1204 hc,relevant,hc_irq_cause);
1205
1206 for (port = port0; port < port0 + MV_PORTS_PER_HC; port++) {
1207 ap = host_set->ports[port];
1208 hard_port = port & MV_PORT_MASK; /* range 0-3 */
Brett Russ31961942005-09-30 01:36:00 -04001209 handled = 0; /* ensure ata_status is set if handled++ */
Brett Russ20f733e2005-09-01 18:26:17 -04001210
Brett Russ31961942005-09-30 01:36:00 -04001211 if ((CRPB_DMA_DONE << hard_port) & hc_irq_cause) {
1212 /* new CRPB on the queue; just one at a time until NCQ
1213 */
1214 ata_status = mv_get_crpb_status(ap);
1215 handled++;
1216 } else if ((DEV_IRQ << hard_port) & hc_irq_cause) {
1217 /* received ATA IRQ; read the status reg to clear INTRQ
Brett Russ20f733e2005-09-01 18:26:17 -04001218 */
1219 ata_status = readb((void __iomem *)
1220 ap->ioaddr.status_addr);
Brett Russ31961942005-09-30 01:36:00 -04001221 handled++;
Brett Russ20f733e2005-09-01 18:26:17 -04001222 }
1223
Jeff Garzikd67e7eb2005-11-18 11:55:00 -05001224 if (ap && (ap->flags & ATA_FLAG_PORT_DISABLED))
Jeff Garzika2c91a82005-11-17 05:44:44 -05001225 continue;
1226
Jeff Garzika7dac442005-10-30 04:44:42 -05001227 err_mask = ac_err_mask(ata_status);
1228
Brett Russ31961942005-09-30 01:36:00 -04001229 shift = port << 1; /* (port * 2) */
Brett Russ20f733e2005-09-01 18:26:17 -04001230 if (port >= MV_PORTS_PER_HC) {
1231 shift++; /* skip bit 8 in the HC Main IRQ reg */
1232 }
1233 if ((PORT0_ERR << shift) & relevant) {
1234 mv_err_intr(ap);
Jeff Garzika7dac442005-10-30 04:44:42 -05001235 err_mask |= AC_ERR_OTHER;
Brett Russ31961942005-09-30 01:36:00 -04001236 handled++;
Brett Russ20f733e2005-09-01 18:26:17 -04001237 }
Jeff Garzik8b260242005-11-12 12:32:50 -05001238
Brett Russ31961942005-09-30 01:36:00 -04001239 if (handled && ap) {
Brett Russ20f733e2005-09-01 18:26:17 -04001240 qc = ata_qc_from_tag(ap, ap->active_tag);
1241 if (NULL != qc) {
1242 VPRINTK("port %u IRQ found for qc, "
1243 "ata_status 0x%x\n", port,ata_status);
Brett Russ20f733e2005-09-01 18:26:17 -04001244 /* mark qc status appropriately */
Jeff Garzik701db692005-12-06 04:52:48 -05001245 if (!(qc->tf.flags & ATA_TFLAG_POLLING)) {
Albert Leea22e2eb2005-12-05 15:38:02 +08001246 qc->err_mask |= err_mask;
Jeff Garzika2c91a82005-11-17 05:44:44 -05001247 ata_qc_complete(qc, err_mask);
Albert Leea22e2eb2005-12-05 15:38:02 +08001248 }
Brett Russ20f733e2005-09-01 18:26:17 -04001249 }
1250 }
1251 }
1252 VPRINTK("EXIT\n");
1253}
1254
Brett Russ05b308e2005-10-05 17:08:53 -04001255/**
Jeff Garzik8b260242005-11-12 12:32:50 -05001256 * mv_interrupt -
Brett Russ05b308e2005-10-05 17:08:53 -04001257 * @irq: unused
1258 * @dev_instance: private data; in this case the host structure
1259 * @regs: unused
1260 *
1261 * Read the read only register to determine if any host
1262 * controllers have pending interrupts. If so, call lower level
1263 * routine to handle. Also check for PCI errors which are only
1264 * reported here.
1265 *
Jeff Garzik8b260242005-11-12 12:32:50 -05001266 * LOCKING:
Brett Russ05b308e2005-10-05 17:08:53 -04001267 * This routine holds the host_set lock while processing pending
1268 * interrupts.
1269 */
Brett Russ20f733e2005-09-01 18:26:17 -04001270static irqreturn_t mv_interrupt(int irq, void *dev_instance,
1271 struct pt_regs *regs)
1272{
1273 struct ata_host_set *host_set = dev_instance;
1274 unsigned int hc, handled = 0, n_hcs;
Brett Russ31961942005-09-30 01:36:00 -04001275 void __iomem *mmio = host_set->mmio_base;
Brett Russ20f733e2005-09-01 18:26:17 -04001276 u32 irq_stat;
1277
Brett Russ20f733e2005-09-01 18:26:17 -04001278 irq_stat = readl(mmio + HC_MAIN_IRQ_CAUSE_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04001279
1280 /* check the cases where we either have nothing pending or have read
1281 * a bogus register value which can indicate HW removal or PCI fault
1282 */
1283 if (!irq_stat || (0xffffffffU == irq_stat)) {
1284 return IRQ_NONE;
1285 }
1286
Brett Russ31961942005-09-30 01:36:00 -04001287 n_hcs = mv_get_hc_count(host_set->ports[0]->flags);
Brett Russ20f733e2005-09-01 18:26:17 -04001288 spin_lock(&host_set->lock);
1289
1290 for (hc = 0; hc < n_hcs; hc++) {
1291 u32 relevant = irq_stat & (HC0_IRQ_PEND << (hc * HC_SHIFT));
1292 if (relevant) {
1293 mv_host_intr(host_set, relevant, hc);
Brett Russ31961942005-09-30 01:36:00 -04001294 handled++;
Brett Russ20f733e2005-09-01 18:26:17 -04001295 }
1296 }
1297 if (PCI_ERR & irq_stat) {
Brett Russ31961942005-09-30 01:36:00 -04001298 printk(KERN_ERR DRV_NAME ": PCI ERROR; PCI IRQ cause=0x%08x\n",
1299 readl(mmio + PCI_IRQ_CAUSE_OFS));
Brett Russ20f733e2005-09-01 18:26:17 -04001300
Brett Russafb0edd2005-10-05 17:08:42 -04001301 DPRINTK("All regs @ PCI error\n");
Brett Russ31961942005-09-30 01:36:00 -04001302 mv_dump_all_regs(mmio, -1, to_pci_dev(host_set->dev));
1303
1304 writelfl(0, mmio + PCI_IRQ_CAUSE_OFS);
1305 handled++;
1306 }
Brett Russ20f733e2005-09-01 18:26:17 -04001307 spin_unlock(&host_set->lock);
1308
1309 return IRQ_RETVAL(handled);
1310}
1311
Jeff Garzikc9d39132005-11-13 17:47:51 -05001312static void __iomem *mv5_phy_base(void __iomem *mmio, unsigned int port)
1313{
1314 void __iomem *hc_mmio = mv_hc_base_from_port(mmio, port);
1315 unsigned long ofs = (mv_hardport_from_port(port) + 1) * 0x100UL;
1316
1317 return hc_mmio + ofs;
1318}
1319
1320static unsigned int mv5_scr_offset(unsigned int sc_reg_in)
1321{
1322 unsigned int ofs;
1323
1324 switch (sc_reg_in) {
1325 case SCR_STATUS:
1326 case SCR_ERROR:
1327 case SCR_CONTROL:
1328 ofs = sc_reg_in * sizeof(u32);
1329 break;
1330 default:
1331 ofs = 0xffffffffU;
1332 break;
1333 }
1334 return ofs;
1335}
1336
1337static u32 mv5_scr_read(struct ata_port *ap, unsigned int sc_reg_in)
1338{
1339 void __iomem *mmio = mv5_phy_base(ap->host_set->mmio_base, ap->port_no);
1340 unsigned int ofs = mv5_scr_offset(sc_reg_in);
1341
1342 if (ofs != 0xffffffffU)
1343 return readl(mmio + ofs);
1344 else
1345 return (u32) ofs;
1346}
1347
1348static void mv5_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val)
1349{
1350 void __iomem *mmio = mv5_phy_base(ap->host_set->mmio_base, ap->port_no);
1351 unsigned int ofs = mv5_scr_offset(sc_reg_in);
1352
1353 if (ofs != 0xffffffffU)
1354 writelfl(val, mmio + ofs);
1355}
1356
Jeff Garzik522479f2005-11-12 22:14:02 -05001357static void mv5_reset_bus(struct pci_dev *pdev, void __iomem *mmio)
1358{
1359 u8 rev_id;
1360 int early_5080;
1361
1362 pci_read_config_byte(pdev, PCI_REVISION_ID, &rev_id);
1363
1364 early_5080 = (pdev->device == 0x5080) && (rev_id == 0);
1365
1366 if (!early_5080) {
1367 u32 tmp = readl(mmio + MV_PCI_EXP_ROM_BAR_CTL);
1368 tmp |= (1 << 0);
1369 writel(tmp, mmio + MV_PCI_EXP_ROM_BAR_CTL);
1370 }
1371
1372 mv_reset_pci_bus(pdev, mmio);
1373}
1374
1375static void mv5_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio)
1376{
1377 writel(0x0fcfffff, mmio + MV_FLASH_CTL);
1378}
1379
Jeff Garzik47c2b672005-11-12 21:13:17 -05001380static void mv5_read_preamp(struct mv_host_priv *hpriv, int idx,
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001381 void __iomem *mmio)
1382{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001383 void __iomem *phy_mmio = mv5_phy_base(mmio, idx);
1384 u32 tmp;
1385
1386 tmp = readl(phy_mmio + MV5_PHY_MODE);
1387
1388 hpriv->signal[idx].pre = tmp & 0x1800; /* bits 12:11 */
1389 hpriv->signal[idx].amps = tmp & 0xe0; /* bits 7:5 */
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001390}
1391
Jeff Garzik47c2b672005-11-12 21:13:17 -05001392static void mv5_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio)
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001393{
Jeff Garzik522479f2005-11-12 22:14:02 -05001394 u32 tmp;
1395
1396 writel(0, mmio + MV_GPIO_PORT_CTL);
1397
1398 /* FIXME: handle MV_HP_ERRATA_50XXB2 errata */
1399
1400 tmp = readl(mmio + MV_PCI_EXP_ROM_BAR_CTL);
1401 tmp |= ~(1 << 0);
1402 writel(tmp, mmio + MV_PCI_EXP_ROM_BAR_CTL);
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001403}
1404
Jeff Garzik2a47ce02005-11-12 23:05:14 -05001405static void mv5_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
1406 unsigned int port)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001407{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001408 void __iomem *phy_mmio = mv5_phy_base(mmio, port);
1409 const u32 mask = (1<<12) | (1<<11) | (1<<7) | (1<<6) | (1<<5);
1410 u32 tmp;
1411 int fix_apm_sq = (hpriv->hp_flags & MV_HP_ERRATA_50XXB0);
1412
1413 if (fix_apm_sq) {
1414 tmp = readl(phy_mmio + MV5_LT_MODE);
1415 tmp |= (1 << 19);
1416 writel(tmp, phy_mmio + MV5_LT_MODE);
1417
1418 tmp = readl(phy_mmio + MV5_PHY_CTL);
1419 tmp &= ~0x3;
1420 tmp |= 0x1;
1421 writel(tmp, phy_mmio + MV5_PHY_CTL);
1422 }
1423
1424 tmp = readl(phy_mmio + MV5_PHY_MODE);
1425 tmp &= ~mask;
1426 tmp |= hpriv->signal[port].pre;
1427 tmp |= hpriv->signal[port].amps;
1428 writel(tmp, phy_mmio + MV5_PHY_MODE);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001429}
1430
Jeff Garzikc9d39132005-11-13 17:47:51 -05001431
1432#undef ZERO
1433#define ZERO(reg) writel(0, port_mmio + (reg))
1434static void mv5_reset_hc_port(struct mv_host_priv *hpriv, void __iomem *mmio,
1435 unsigned int port)
Jeff Garzik47c2b672005-11-12 21:13:17 -05001436{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001437 void __iomem *port_mmio = mv_port_base(mmio, port);
1438
1439 writelfl(EDMA_DS, port_mmio + EDMA_CMD_OFS);
1440
1441 mv_channel_reset(hpriv, mmio, port);
1442
1443 ZERO(0x028); /* command */
1444 writel(0x11f, port_mmio + EDMA_CFG_OFS);
1445 ZERO(0x004); /* timer */
1446 ZERO(0x008); /* irq err cause */
1447 ZERO(0x00c); /* irq err mask */
1448 ZERO(0x010); /* rq bah */
1449 ZERO(0x014); /* rq inp */
1450 ZERO(0x018); /* rq outp */
1451 ZERO(0x01c); /* respq bah */
1452 ZERO(0x024); /* respq outp */
1453 ZERO(0x020); /* respq inp */
1454 ZERO(0x02c); /* test control */
1455 writel(0xbc, port_mmio + EDMA_IORDY_TMOUT);
1456}
1457#undef ZERO
1458
1459#define ZERO(reg) writel(0, hc_mmio + (reg))
1460static void mv5_reset_one_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
1461 unsigned int hc)
1462{
1463 void __iomem *hc_mmio = mv_hc_base(mmio, hc);
1464 u32 tmp;
1465
1466 ZERO(0x00c);
1467 ZERO(0x010);
1468 ZERO(0x014);
1469 ZERO(0x018);
1470
1471 tmp = readl(hc_mmio + 0x20);
1472 tmp &= 0x1c1c1c1c;
1473 tmp |= 0x03030303;
1474 writel(tmp, hc_mmio + 0x20);
1475}
1476#undef ZERO
1477
1478static int mv5_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
1479 unsigned int n_hc)
1480{
1481 unsigned int hc, port;
1482
1483 for (hc = 0; hc < n_hc; hc++) {
1484 for (port = 0; port < MV_PORTS_PER_HC; port++)
1485 mv5_reset_hc_port(hpriv, mmio,
1486 (hc * MV_PORTS_PER_HC) + port);
1487
1488 mv5_reset_one_hc(hpriv, mmio, hc);
1489 }
1490
1491 return 0;
Jeff Garzik47c2b672005-11-12 21:13:17 -05001492}
1493
Jeff Garzik101ffae2005-11-12 22:17:49 -05001494#undef ZERO
1495#define ZERO(reg) writel(0, mmio + (reg))
1496static void mv_reset_pci_bus(struct pci_dev *pdev, void __iomem *mmio)
1497{
1498 u32 tmp;
1499
1500 tmp = readl(mmio + MV_PCI_MODE);
1501 tmp &= 0xff00ffff;
1502 writel(tmp, mmio + MV_PCI_MODE);
1503
1504 ZERO(MV_PCI_DISC_TIMER);
1505 ZERO(MV_PCI_MSI_TRIGGER);
1506 writel(0x000100ff, mmio + MV_PCI_XBAR_TMOUT);
1507 ZERO(HC_MAIN_IRQ_MASK_OFS);
1508 ZERO(MV_PCI_SERR_MASK);
1509 ZERO(PCI_IRQ_CAUSE_OFS);
1510 ZERO(PCI_IRQ_MASK_OFS);
1511 ZERO(MV_PCI_ERR_LOW_ADDRESS);
1512 ZERO(MV_PCI_ERR_HIGH_ADDRESS);
1513 ZERO(MV_PCI_ERR_ATTRIBUTE);
1514 ZERO(MV_PCI_ERR_COMMAND);
1515}
1516#undef ZERO
1517
1518static void mv6_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio)
1519{
1520 u32 tmp;
1521
1522 mv5_reset_flash(hpriv, mmio);
1523
1524 tmp = readl(mmio + MV_GPIO_PORT_CTL);
1525 tmp &= 0x3;
1526 tmp |= (1 << 5) | (1 << 6);
1527 writel(tmp, mmio + MV_GPIO_PORT_CTL);
1528}
1529
Brett Russ05b308e2005-10-05 17:08:53 -04001530/**
Jeff Garzik101ffae2005-11-12 22:17:49 -05001531 * mv6_reset_hc - Perform the 6xxx global soft reset
1532 * @mmio: base address of the HBA
1533 *
1534 * This routine only applies to 6xxx parts.
1535 *
1536 * LOCKING:
1537 * Inherited from caller.
1538 */
Jeff Garzikc9d39132005-11-13 17:47:51 -05001539static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
1540 unsigned int n_hc)
Jeff Garzik101ffae2005-11-12 22:17:49 -05001541{
1542 void __iomem *reg = mmio + PCI_MAIN_CMD_STS_OFS;
1543 int i, rc = 0;
1544 u32 t;
1545
1546 /* Following procedure defined in PCI "main command and status
1547 * register" table.
1548 */
1549 t = readl(reg);
1550 writel(t | STOP_PCI_MASTER, reg);
1551
1552 for (i = 0; i < 1000; i++) {
1553 udelay(1);
1554 t = readl(reg);
1555 if (PCI_MASTER_EMPTY & t) {
1556 break;
1557 }
1558 }
1559 if (!(PCI_MASTER_EMPTY & t)) {
1560 printk(KERN_ERR DRV_NAME ": PCI master won't flush\n");
1561 rc = 1;
1562 goto done;
1563 }
1564
1565 /* set reset */
1566 i = 5;
1567 do {
1568 writel(t | GLOB_SFT_RST, reg);
1569 t = readl(reg);
1570 udelay(1);
1571 } while (!(GLOB_SFT_RST & t) && (i-- > 0));
1572
1573 if (!(GLOB_SFT_RST & t)) {
1574 printk(KERN_ERR DRV_NAME ": can't set global reset\n");
1575 rc = 1;
1576 goto done;
1577 }
1578
1579 /* clear reset and *reenable the PCI master* (not mentioned in spec) */
1580 i = 5;
1581 do {
1582 writel(t & ~(GLOB_SFT_RST | STOP_PCI_MASTER), reg);
1583 t = readl(reg);
1584 udelay(1);
1585 } while ((GLOB_SFT_RST & t) && (i-- > 0));
1586
1587 if (GLOB_SFT_RST & t) {
1588 printk(KERN_ERR DRV_NAME ": can't clear global reset\n");
1589 rc = 1;
1590 }
1591done:
1592 return rc;
1593}
1594
Jeff Garzik47c2b672005-11-12 21:13:17 -05001595static void mv6_read_preamp(struct mv_host_priv *hpriv, int idx,
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001596 void __iomem *mmio)
1597{
1598 void __iomem *port_mmio;
1599 u32 tmp;
1600
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001601 tmp = readl(mmio + MV_RESET_CFG);
1602 if ((tmp & (1 << 0)) == 0) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05001603 hpriv->signal[idx].amps = 0x7 << 8;
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001604 hpriv->signal[idx].pre = 0x1 << 5;
1605 return;
1606 }
1607
1608 port_mmio = mv_port_base(mmio, idx);
1609 tmp = readl(port_mmio + PHY_MODE2);
1610
1611 hpriv->signal[idx].amps = tmp & 0x700; /* bits 10:8 */
1612 hpriv->signal[idx].pre = tmp & 0xe0; /* bits 7:5 */
1613}
1614
Jeff Garzik47c2b672005-11-12 21:13:17 -05001615static void mv6_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio)
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001616{
Jeff Garzik47c2b672005-11-12 21:13:17 -05001617 writel(0x00000060, mmio + MV_GPIO_PORT_CTL);
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001618}
1619
Jeff Garzikc9d39132005-11-13 17:47:51 -05001620static void mv6_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
Jeff Garzik2a47ce02005-11-12 23:05:14 -05001621 unsigned int port)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001622{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001623 void __iomem *port_mmio = mv_port_base(mmio, port);
1624
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001625 u32 hp_flags = hpriv->hp_flags;
Jeff Garzik47c2b672005-11-12 21:13:17 -05001626 int fix_phy_mode2 =
1627 hp_flags & (MV_HP_ERRATA_60X1B2 | MV_HP_ERRATA_60X1C0);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001628 int fix_phy_mode4 =
Jeff Garzik47c2b672005-11-12 21:13:17 -05001629 hp_flags & (MV_HP_ERRATA_60X1B2 | MV_HP_ERRATA_60X1C0);
1630 u32 m2, tmp;
1631
1632 if (fix_phy_mode2) {
1633 m2 = readl(port_mmio + PHY_MODE2);
1634 m2 &= ~(1 << 16);
1635 m2 |= (1 << 31);
1636 writel(m2, port_mmio + PHY_MODE2);
1637
1638 udelay(200);
1639
1640 m2 = readl(port_mmio + PHY_MODE2);
1641 m2 &= ~((1 << 16) | (1 << 31));
1642 writel(m2, port_mmio + PHY_MODE2);
1643
1644 udelay(200);
1645 }
1646
1647 /* who knows what this magic does */
1648 tmp = readl(port_mmio + PHY_MODE3);
1649 tmp &= ~0x7F800000;
1650 tmp |= 0x2A800000;
1651 writel(tmp, port_mmio + PHY_MODE3);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001652
1653 if (fix_phy_mode4) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05001654 u32 m4;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001655
1656 m4 = readl(port_mmio + PHY_MODE4);
Jeff Garzik47c2b672005-11-12 21:13:17 -05001657
1658 if (hp_flags & MV_HP_ERRATA_60X1B2)
1659 tmp = readl(port_mmio + 0x310);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001660
1661 m4 = (m4 & ~(1 << 1)) | (1 << 0);
1662
1663 writel(m4, port_mmio + PHY_MODE4);
Jeff Garzik47c2b672005-11-12 21:13:17 -05001664
1665 if (hp_flags & MV_HP_ERRATA_60X1B2)
1666 writel(tmp, port_mmio + 0x310);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001667 }
1668
1669 /* Revert values of pre-emphasis and signal amps to the saved ones */
1670 m2 = readl(port_mmio + PHY_MODE2);
1671
1672 m2 &= ~MV_M2_PREAMP_MASK;
Jeff Garzik2a47ce02005-11-12 23:05:14 -05001673 m2 |= hpriv->signal[port].amps;
1674 m2 |= hpriv->signal[port].pre;
Jeff Garzik47c2b672005-11-12 21:13:17 -05001675 m2 &= ~(1 << 16);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001676
1677 writel(m2, port_mmio + PHY_MODE2);
1678}
1679
Jeff Garzikc9d39132005-11-13 17:47:51 -05001680static void mv_channel_reset(struct mv_host_priv *hpriv, void __iomem *mmio,
1681 unsigned int port_no)
Brett Russ20f733e2005-09-01 18:26:17 -04001682{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001683 void __iomem *port_mmio = mv_port_base(mmio, port_no);
Brett Russ20f733e2005-09-01 18:26:17 -04001684
Brett Russ31961942005-09-30 01:36:00 -04001685 writelfl(ATA_RST, port_mmio + EDMA_CMD_OFS);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001686
1687 if (IS_60XX(hpriv)) {
1688 u32 ifctl = readl(port_mmio + SATA_INTERFACE_CTL);
1689 ifctl |= (1 << 12) | (1 << 7);
1690 writelfl(ifctl, port_mmio + SATA_INTERFACE_CTL);
1691 }
1692
Brett Russ20f733e2005-09-01 18:26:17 -04001693 udelay(25); /* allow reset propagation */
1694
1695 /* Spec never mentions clearing the bit. Marvell's driver does
1696 * clear the bit, however.
1697 */
Brett Russ31961942005-09-30 01:36:00 -04001698 writelfl(0, port_mmio + EDMA_CMD_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04001699
Jeff Garzikc9d39132005-11-13 17:47:51 -05001700 hpriv->ops->phy_errata(hpriv, mmio, port_no);
1701
1702 if (IS_50XX(hpriv))
1703 mdelay(1);
1704}
1705
1706static void mv_stop_and_reset(struct ata_port *ap)
1707{
1708 struct mv_host_priv *hpriv = ap->host_set->private_data;
1709 void __iomem *mmio = ap->host_set->mmio_base;
1710
1711 mv_stop_dma(ap);
1712
1713 mv_channel_reset(hpriv, mmio, ap->port_no);
1714
Jeff Garzik22374672005-11-17 10:59:48 -05001715 __mv_phy_reset(ap, 0);
1716}
1717
1718static inline void __msleep(unsigned int msec, int can_sleep)
1719{
1720 if (can_sleep)
1721 msleep(msec);
1722 else
1723 mdelay(msec);
Jeff Garzikc9d39132005-11-13 17:47:51 -05001724}
1725
1726/**
Jeff Garzik22374672005-11-17 10:59:48 -05001727 * __mv_phy_reset - Perform eDMA reset followed by COMRESET
Brett Russ20f733e2005-09-01 18:26:17 -04001728 * @ap: ATA channel to manipulate
1729 *
1730 * Part of this is taken from __sata_phy_reset and modified to
1731 * not sleep since this routine gets called from interrupt level.
1732 *
1733 * LOCKING:
1734 * Inherited from caller. This is coded to safe to call at
1735 * interrupt level, i.e. it does not sleep.
1736 */
Jeff Garzik22374672005-11-17 10:59:48 -05001737static void __mv_phy_reset(struct ata_port *ap, int can_sleep)
Brett Russ20f733e2005-09-01 18:26:17 -04001738{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001739 struct mv_port_priv *pp = ap->private_data;
Jeff Garzik22374672005-11-17 10:59:48 -05001740 struct mv_host_priv *hpriv = ap->host_set->private_data;
Brett Russ20f733e2005-09-01 18:26:17 -04001741 void __iomem *port_mmio = mv_ap_base(ap);
1742 struct ata_taskfile tf;
1743 struct ata_device *dev = &ap->device[0];
Brett Russ20f733e2005-09-01 18:26:17 -04001744 unsigned long timeout;
Jeff Garzik22374672005-11-17 10:59:48 -05001745 int retry = 5;
1746 u32 sstatus;
Brett Russ20f733e2005-09-01 18:26:17 -04001747
1748 VPRINTK("ENTER, port %u, mmio 0x%p\n", ap->port_no, port_mmio);
1749
Jeff Garzik095fec82005-11-12 09:50:49 -05001750 DPRINTK("S-regs after ATA_RST: SStat 0x%08x SErr 0x%08x "
Brett Russ31961942005-09-30 01:36:00 -04001751 "SCtrl 0x%08x\n", mv_scr_read(ap, SCR_STATUS),
1752 mv_scr_read(ap, SCR_ERROR), mv_scr_read(ap, SCR_CONTROL));
Brett Russ20f733e2005-09-01 18:26:17 -04001753
Jeff Garzik22374672005-11-17 10:59:48 -05001754 /* Issue COMRESET via SControl */
1755comreset_retry:
Brett Russ31961942005-09-30 01:36:00 -04001756 scr_write_flush(ap, SCR_CONTROL, 0x301);
Jeff Garzik22374672005-11-17 10:59:48 -05001757 __msleep(1, can_sleep);
1758
Brett Russ31961942005-09-30 01:36:00 -04001759 scr_write_flush(ap, SCR_CONTROL, 0x300);
Jeff Garzik22374672005-11-17 10:59:48 -05001760 __msleep(20, can_sleep);
1761
1762 timeout = jiffies + msecs_to_jiffies(200);
Brett Russ31961942005-09-30 01:36:00 -04001763 do {
Jeff Garzik22374672005-11-17 10:59:48 -05001764 sstatus = scr_read(ap, SCR_STATUS) & 0x3;
1765 if ((sstatus == 3) || (sstatus == 0))
Brett Russ31961942005-09-30 01:36:00 -04001766 break;
Jeff Garzik22374672005-11-17 10:59:48 -05001767
1768 __msleep(1, can_sleep);
Brett Russ31961942005-09-30 01:36:00 -04001769 } while (time_before(jiffies, timeout));
Brett Russ20f733e2005-09-01 18:26:17 -04001770
Jeff Garzik22374672005-11-17 10:59:48 -05001771 /* work around errata */
1772 if (IS_60XX(hpriv) &&
1773 (sstatus != 0x0) && (sstatus != 0x113) && (sstatus != 0x123) &&
1774 (retry-- > 0))
1775 goto comreset_retry;
Jeff Garzik095fec82005-11-12 09:50:49 -05001776
1777 DPRINTK("S-regs after PHY wake: SStat 0x%08x SErr 0x%08x "
Brett Russ31961942005-09-30 01:36:00 -04001778 "SCtrl 0x%08x\n", mv_scr_read(ap, SCR_STATUS),
1779 mv_scr_read(ap, SCR_ERROR), mv_scr_read(ap, SCR_CONTROL));
1780
1781 if (sata_dev_present(ap)) {
1782 ata_port_probe(ap);
1783 } else {
1784 printk(KERN_INFO "ata%u: no device found (phy stat %08x)\n",
1785 ap->id, scr_read(ap, SCR_STATUS));
1786 ata_port_disable(ap);
Brett Russ20f733e2005-09-01 18:26:17 -04001787 return;
1788 }
Brett Russ31961942005-09-30 01:36:00 -04001789 ap->cbl = ATA_CBL_SATA;
Brett Russ20f733e2005-09-01 18:26:17 -04001790
Jeff Garzik22374672005-11-17 10:59:48 -05001791 /* even after SStatus reflects that device is ready,
1792 * it seems to take a while for link to be fully
1793 * established (and thus Status no longer 0x80/0x7F),
1794 * so we poll a bit for that, here.
1795 */
1796 retry = 20;
1797 while (1) {
1798 u8 drv_stat = ata_check_status(ap);
1799 if ((drv_stat != 0x80) && (drv_stat != 0x7f))
1800 break;
1801 __msleep(500, can_sleep);
1802 if (retry-- <= 0)
1803 break;
1804 }
1805
Brett Russ20f733e2005-09-01 18:26:17 -04001806 tf.lbah = readb((void __iomem *) ap->ioaddr.lbah_addr);
1807 tf.lbam = readb((void __iomem *) ap->ioaddr.lbam_addr);
1808 tf.lbal = readb((void __iomem *) ap->ioaddr.lbal_addr);
1809 tf.nsect = readb((void __iomem *) ap->ioaddr.nsect_addr);
1810
1811 dev->class = ata_dev_classify(&tf);
1812 if (!ata_dev_present(dev)) {
1813 VPRINTK("Port disabled post-sig: No device present.\n");
1814 ata_port_disable(ap);
1815 }
Jeff Garzik095fec82005-11-12 09:50:49 -05001816
1817 writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
1818
1819 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
1820
Brett Russ20f733e2005-09-01 18:26:17 -04001821 VPRINTK("EXIT\n");
1822}
1823
Jeff Garzik22374672005-11-17 10:59:48 -05001824static void mv_phy_reset(struct ata_port *ap)
1825{
1826 __mv_phy_reset(ap, 1);
1827}
1828
Brett Russ05b308e2005-10-05 17:08:53 -04001829/**
1830 * mv_eng_timeout - Routine called by libata when SCSI times out I/O
1831 * @ap: ATA channel to manipulate
1832 *
1833 * Intent is to clear all pending error conditions, reset the
1834 * chip/bus, fail the command, and move on.
1835 *
1836 * LOCKING:
1837 * This routine holds the host_set lock while failing the command.
1838 */
Brett Russ31961942005-09-30 01:36:00 -04001839static void mv_eng_timeout(struct ata_port *ap)
Brett Russ20f733e2005-09-01 18:26:17 -04001840{
Brett Russ31961942005-09-30 01:36:00 -04001841 struct ata_queued_cmd *qc;
1842 unsigned long flags;
Brett Russ20f733e2005-09-01 18:26:17 -04001843
Brett Russ31961942005-09-30 01:36:00 -04001844 printk(KERN_ERR "ata%u: Entering mv_eng_timeout\n",ap->id);
1845 DPRINTK("All regs @ start of eng_timeout\n");
Jeff Garzik8b260242005-11-12 12:32:50 -05001846 mv_dump_all_regs(ap->host_set->mmio_base, ap->port_no,
Brett Russ31961942005-09-30 01:36:00 -04001847 to_pci_dev(ap->host_set->dev));
Brett Russ20f733e2005-09-01 18:26:17 -04001848
Brett Russ31961942005-09-30 01:36:00 -04001849 qc = ata_qc_from_tag(ap, ap->active_tag);
1850 printk(KERN_ERR "mmio_base %p ap %p qc %p scsi_cmnd %p &cmnd %p\n",
Jeff Garzik8b260242005-11-12 12:32:50 -05001851 ap->host_set->mmio_base, ap, qc, qc->scsicmd,
Brett Russ31961942005-09-30 01:36:00 -04001852 &qc->scsicmd->cmnd);
1853
1854 mv_err_intr(ap);
Jeff Garzikc9d39132005-11-13 17:47:51 -05001855 mv_stop_and_reset(ap);
Brett Russ31961942005-09-30 01:36:00 -04001856
1857 if (!qc) {
1858 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
1859 ap->id);
1860 } else {
1861 /* hack alert! We cannot use the supplied completion
1862 * function from inside the ->eh_strategy_handler() thread.
1863 * libata is the only user of ->eh_strategy_handler() in
1864 * any kernel, so the default scsi_done() assumes it is
1865 * not being called from the SCSI EH.
1866 */
1867 spin_lock_irqsave(&ap->host_set->lock, flags);
1868 qc->scsidone = scsi_finish_command;
Albert Leea22e2eb2005-12-05 15:38:02 +08001869 qc->err_mask |= AC_ERR_OTHER;
1870 ata_qc_complete(qc);
Brett Russ31961942005-09-30 01:36:00 -04001871 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1872 }
Brett Russ20f733e2005-09-01 18:26:17 -04001873}
1874
Brett Russ05b308e2005-10-05 17:08:53 -04001875/**
1876 * mv_port_init - Perform some early initialization on a single port.
1877 * @port: libata data structure storing shadow register addresses
1878 * @port_mmio: base address of the port
1879 *
1880 * Initialize shadow register mmio addresses, clear outstanding
1881 * interrupts on the port, and unmask interrupts for the future
1882 * start of the port.
1883 *
1884 * LOCKING:
1885 * Inherited from caller.
1886 */
Brett Russ31961942005-09-30 01:36:00 -04001887static void mv_port_init(struct ata_ioports *port, void __iomem *port_mmio)
1888{
1889 unsigned long shd_base = (unsigned long) port_mmio + SHD_BLK_OFS;
1890 unsigned serr_ofs;
1891
Jeff Garzik8b260242005-11-12 12:32:50 -05001892 /* PIO related setup
Brett Russ31961942005-09-30 01:36:00 -04001893 */
1894 port->data_addr = shd_base + (sizeof(u32) * ATA_REG_DATA);
Jeff Garzik8b260242005-11-12 12:32:50 -05001895 port->error_addr =
Brett Russ31961942005-09-30 01:36:00 -04001896 port->feature_addr = shd_base + (sizeof(u32) * ATA_REG_ERR);
1897 port->nsect_addr = shd_base + (sizeof(u32) * ATA_REG_NSECT);
1898 port->lbal_addr = shd_base + (sizeof(u32) * ATA_REG_LBAL);
1899 port->lbam_addr = shd_base + (sizeof(u32) * ATA_REG_LBAM);
1900 port->lbah_addr = shd_base + (sizeof(u32) * ATA_REG_LBAH);
1901 port->device_addr = shd_base + (sizeof(u32) * ATA_REG_DEVICE);
Jeff Garzik8b260242005-11-12 12:32:50 -05001902 port->status_addr =
Brett Russ31961942005-09-30 01:36:00 -04001903 port->command_addr = shd_base + (sizeof(u32) * ATA_REG_STATUS);
1904 /* special case: control/altstatus doesn't have ATA_REG_ address */
1905 port->altstatus_addr = port->ctl_addr = shd_base + SHD_CTL_AST_OFS;
1906
1907 /* unused: */
Brett Russ20f733e2005-09-01 18:26:17 -04001908 port->cmd_addr = port->bmdma_addr = port->scr_addr = 0;
1909
Brett Russ31961942005-09-30 01:36:00 -04001910 /* Clear any currently outstanding port interrupt conditions */
1911 serr_ofs = mv_scr_offset(SCR_ERROR);
1912 writelfl(readl(port_mmio + serr_ofs), port_mmio + serr_ofs);
1913 writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
1914
Brett Russ20f733e2005-09-01 18:26:17 -04001915 /* unmask all EDMA error interrupts */
Brett Russ31961942005-09-30 01:36:00 -04001916 writelfl(~0, port_mmio + EDMA_ERR_IRQ_MASK_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04001917
Jeff Garzik8b260242005-11-12 12:32:50 -05001918 VPRINTK("EDMA cfg=0x%08x EDMA IRQ err cause/mask=0x%08x/0x%08x\n",
Brett Russ31961942005-09-30 01:36:00 -04001919 readl(port_mmio + EDMA_CFG_OFS),
1920 readl(port_mmio + EDMA_ERR_IRQ_CAUSE_OFS),
1921 readl(port_mmio + EDMA_ERR_IRQ_MASK_OFS));
Brett Russ20f733e2005-09-01 18:26:17 -04001922}
1923
Jeff Garzik47c2b672005-11-12 21:13:17 -05001924static int mv_chip_id(struct pci_dev *pdev, struct mv_host_priv *hpriv,
Jeff Garzik522479f2005-11-12 22:14:02 -05001925 unsigned int board_idx)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001926{
1927 u8 rev_id;
1928 u32 hp_flags = hpriv->hp_flags;
1929
1930 pci_read_config_byte(pdev, PCI_REVISION_ID, &rev_id);
1931
1932 switch(board_idx) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05001933 case chip_5080:
1934 hpriv->ops = &mv5xxx_ops;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001935 hp_flags |= MV_HP_50XX;
1936
Jeff Garzik47c2b672005-11-12 21:13:17 -05001937 switch (rev_id) {
1938 case 0x1:
1939 hp_flags |= MV_HP_ERRATA_50XXB0;
1940 break;
1941 case 0x3:
1942 hp_flags |= MV_HP_ERRATA_50XXB2;
1943 break;
1944 default:
1945 dev_printk(KERN_WARNING, &pdev->dev,
1946 "Applying 50XXB2 workarounds to unknown rev\n");
1947 hp_flags |= MV_HP_ERRATA_50XXB2;
1948 break;
1949 }
1950 break;
1951
1952 case chip_504x:
1953 case chip_508x:
1954 hpriv->ops = &mv5xxx_ops;
1955 hp_flags |= MV_HP_50XX;
1956
1957 switch (rev_id) {
1958 case 0x0:
1959 hp_flags |= MV_HP_ERRATA_50XXB0;
1960 break;
1961 case 0x3:
1962 hp_flags |= MV_HP_ERRATA_50XXB2;
1963 break;
1964 default:
1965 dev_printk(KERN_WARNING, &pdev->dev,
1966 "Applying B2 workarounds to unknown rev\n");
1967 hp_flags |= MV_HP_ERRATA_50XXB2;
1968 break;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001969 }
1970 break;
1971
1972 case chip_604x:
1973 case chip_608x:
Jeff Garzik47c2b672005-11-12 21:13:17 -05001974 hpriv->ops = &mv6xxx_ops;
1975
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001976 switch (rev_id) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05001977 case 0x7:
1978 hp_flags |= MV_HP_ERRATA_60X1B2;
1979 break;
1980 case 0x9:
1981 hp_flags |= MV_HP_ERRATA_60X1C0;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001982 break;
1983 default:
1984 dev_printk(KERN_WARNING, &pdev->dev,
Jeff Garzik47c2b672005-11-12 21:13:17 -05001985 "Applying B2 workarounds to unknown rev\n");
1986 hp_flags |= MV_HP_ERRATA_60X1B2;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001987 break;
1988 }
1989 break;
1990
1991 default:
1992 printk(KERN_ERR DRV_NAME ": BUG: invalid board index %u\n", board_idx);
1993 return 1;
1994 }
1995
1996 hpriv->hp_flags = hp_flags;
1997
1998 return 0;
1999}
2000
Brett Russ05b308e2005-10-05 17:08:53 -04002001/**
Jeff Garzik47c2b672005-11-12 21:13:17 -05002002 * mv_init_host - Perform some early initialization of the host.
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002003 * @pdev: host PCI device
Brett Russ05b308e2005-10-05 17:08:53 -04002004 * @probe_ent: early data struct representing the host
2005 *
2006 * If possible, do an early global reset of the host. Then do
2007 * our port init and clear/unmask all/relevant host interrupts.
2008 *
2009 * LOCKING:
2010 * Inherited from caller.
2011 */
Jeff Garzik47c2b672005-11-12 21:13:17 -05002012static int mv_init_host(struct pci_dev *pdev, struct ata_probe_ent *probe_ent,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002013 unsigned int board_idx)
Brett Russ20f733e2005-09-01 18:26:17 -04002014{
2015 int rc = 0, n_hc, port, hc;
2016 void __iomem *mmio = probe_ent->mmio_base;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002017 struct mv_host_priv *hpriv = probe_ent->private_data;
Brett Russ20f733e2005-09-01 18:26:17 -04002018
Jeff Garzik47c2b672005-11-12 21:13:17 -05002019 /* global interrupt mask */
2020 writel(0, mmio + HC_MAIN_IRQ_MASK_OFS);
2021
2022 rc = mv_chip_id(pdev, hpriv, board_idx);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002023 if (rc)
Brett Russ20f733e2005-09-01 18:26:17 -04002024 goto done;
Brett Russ20f733e2005-09-01 18:26:17 -04002025
2026 n_hc = mv_get_hc_count(probe_ent->host_flags);
2027 probe_ent->n_ports = MV_PORTS_PER_HC * n_hc;
2028
Jeff Garzik47c2b672005-11-12 21:13:17 -05002029 for (port = 0; port < probe_ent->n_ports; port++)
2030 hpriv->ops->read_preamp(hpriv, port, mmio);
Brett Russ20f733e2005-09-01 18:26:17 -04002031
Jeff Garzikc9d39132005-11-13 17:47:51 -05002032 rc = hpriv->ops->reset_hc(hpriv, mmio, n_hc);
Jeff Garzik47c2b672005-11-12 21:13:17 -05002033 if (rc)
Brett Russ20f733e2005-09-01 18:26:17 -04002034 goto done;
Brett Russ20f733e2005-09-01 18:26:17 -04002035
Jeff Garzik522479f2005-11-12 22:14:02 -05002036 hpriv->ops->reset_flash(hpriv, mmio);
2037 hpriv->ops->reset_bus(pdev, mmio);
Jeff Garzik47c2b672005-11-12 21:13:17 -05002038 hpriv->ops->enable_leds(hpriv, mmio);
Brett Russ20f733e2005-09-01 18:26:17 -04002039
2040 for (port = 0; port < probe_ent->n_ports; port++) {
Jeff Garzik2a47ce02005-11-12 23:05:14 -05002041 if (IS_60XX(hpriv)) {
Jeff Garzikc9d39132005-11-13 17:47:51 -05002042 void __iomem *port_mmio = mv_port_base(mmio, port);
2043
Jeff Garzik2a47ce02005-11-12 23:05:14 -05002044 u32 ifctl = readl(port_mmio + SATA_INTERFACE_CTL);
2045 ifctl |= (1 << 12);
2046 writelfl(ifctl, port_mmio + SATA_INTERFACE_CTL);
2047 }
2048
Jeff Garzikc9d39132005-11-13 17:47:51 -05002049 hpriv->ops->phy_errata(hpriv, mmio, port);
Jeff Garzik2a47ce02005-11-12 23:05:14 -05002050 }
2051
2052 for (port = 0; port < probe_ent->n_ports; port++) {
2053 void __iomem *port_mmio = mv_port_base(mmio, port);
Brett Russ31961942005-09-30 01:36:00 -04002054 mv_port_init(&probe_ent->port[port], port_mmio);
Brett Russ20f733e2005-09-01 18:26:17 -04002055 }
2056
2057 for (hc = 0; hc < n_hc; hc++) {
Brett Russ31961942005-09-30 01:36:00 -04002058 void __iomem *hc_mmio = mv_hc_base(mmio, hc);
2059
2060 VPRINTK("HC%i: HC config=0x%08x HC IRQ cause "
2061 "(before clear)=0x%08x\n", hc,
2062 readl(hc_mmio + HC_CFG_OFS),
2063 readl(hc_mmio + HC_IRQ_CAUSE_OFS));
2064
2065 /* Clear any currently outstanding hc interrupt conditions */
2066 writelfl(0, hc_mmio + HC_IRQ_CAUSE_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04002067 }
2068
Brett Russ31961942005-09-30 01:36:00 -04002069 /* Clear any currently outstanding host interrupt conditions */
2070 writelfl(0, mmio + PCI_IRQ_CAUSE_OFS);
2071
2072 /* and unmask interrupt generation for host regs */
2073 writelfl(PCI_UNMASK_ALL_IRQS, mmio + PCI_IRQ_MASK_OFS);
2074 writelfl(~HC_MAIN_MASKED_IRQS, mmio + HC_MAIN_IRQ_MASK_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04002075
2076 VPRINTK("HC MAIN IRQ cause/mask=0x%08x/0x%08x "
Jeff Garzik8b260242005-11-12 12:32:50 -05002077 "PCI int cause/mask=0x%08x/0x%08x\n",
Brett Russ20f733e2005-09-01 18:26:17 -04002078 readl(mmio + HC_MAIN_IRQ_CAUSE_OFS),
2079 readl(mmio + HC_MAIN_IRQ_MASK_OFS),
2080 readl(mmio + PCI_IRQ_CAUSE_OFS),
2081 readl(mmio + PCI_IRQ_MASK_OFS));
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002082
Brett Russ31961942005-09-30 01:36:00 -04002083done:
Brett Russ20f733e2005-09-01 18:26:17 -04002084 return rc;
2085}
2086
Brett Russ05b308e2005-10-05 17:08:53 -04002087/**
2088 * mv_print_info - Dump key info to kernel log for perusal.
2089 * @probe_ent: early data struct representing the host
2090 *
2091 * FIXME: complete this.
2092 *
2093 * LOCKING:
2094 * Inherited from caller.
2095 */
Brett Russ31961942005-09-30 01:36:00 -04002096static void mv_print_info(struct ata_probe_ent *probe_ent)
2097{
2098 struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
2099 struct mv_host_priv *hpriv = probe_ent->private_data;
2100 u8 rev_id, scc;
2101 const char *scc_s;
2102
2103 /* Use this to determine the HW stepping of the chip so we know
2104 * what errata to workaround
2105 */
2106 pci_read_config_byte(pdev, PCI_REVISION_ID, &rev_id);
2107
2108 pci_read_config_byte(pdev, PCI_CLASS_DEVICE, &scc);
2109 if (scc == 0)
2110 scc_s = "SCSI";
2111 else if (scc == 0x01)
2112 scc_s = "RAID";
2113 else
2114 scc_s = "unknown";
2115
Jeff Garzika9524a72005-10-30 14:39:11 -05002116 dev_printk(KERN_INFO, &pdev->dev,
2117 "%u slots %u ports %s mode IRQ via %s\n",
Jeff Garzik8b260242005-11-12 12:32:50 -05002118 (unsigned)MV_MAX_Q_DEPTH, probe_ent->n_ports,
Brett Russ31961942005-09-30 01:36:00 -04002119 scc_s, (MV_HP_FLAG_MSI & hpriv->hp_flags) ? "MSI" : "INTx");
2120}
2121
Brett Russ05b308e2005-10-05 17:08:53 -04002122/**
2123 * mv_init_one - handle a positive probe of a Marvell host
2124 * @pdev: PCI device found
2125 * @ent: PCI device ID entry for the matched host
2126 *
2127 * LOCKING:
2128 * Inherited from caller.
2129 */
Brett Russ20f733e2005-09-01 18:26:17 -04002130static int mv_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
2131{
2132 static int printed_version = 0;
2133 struct ata_probe_ent *probe_ent = NULL;
2134 struct mv_host_priv *hpriv;
2135 unsigned int board_idx = (unsigned int)ent->driver_data;
2136 void __iomem *mmio_base;
Brett Russ31961942005-09-30 01:36:00 -04002137 int pci_dev_busy = 0, rc;
Brett Russ20f733e2005-09-01 18:26:17 -04002138
Jeff Garzika9524a72005-10-30 14:39:11 -05002139 if (!printed_version++)
2140 dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");
Brett Russ20f733e2005-09-01 18:26:17 -04002141
Brett Russ20f733e2005-09-01 18:26:17 -04002142 rc = pci_enable_device(pdev);
2143 if (rc) {
2144 return rc;
2145 }
2146
2147 rc = pci_request_regions(pdev, DRV_NAME);
2148 if (rc) {
2149 pci_dev_busy = 1;
2150 goto err_out;
2151 }
2152
Brett Russ20f733e2005-09-01 18:26:17 -04002153 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
2154 if (probe_ent == NULL) {
2155 rc = -ENOMEM;
2156 goto err_out_regions;
2157 }
2158
2159 memset(probe_ent, 0, sizeof(*probe_ent));
2160 probe_ent->dev = pci_dev_to_dev(pdev);
2161 INIT_LIST_HEAD(&probe_ent->node);
2162
Brett Russ31961942005-09-30 01:36:00 -04002163 mmio_base = pci_iomap(pdev, MV_PRIMARY_BAR, 0);
Brett Russ20f733e2005-09-01 18:26:17 -04002164 if (mmio_base == NULL) {
2165 rc = -ENOMEM;
2166 goto err_out_free_ent;
2167 }
2168
2169 hpriv = kmalloc(sizeof(*hpriv), GFP_KERNEL);
2170 if (!hpriv) {
2171 rc = -ENOMEM;
2172 goto err_out_iounmap;
2173 }
2174 memset(hpriv, 0, sizeof(*hpriv));
2175
2176 probe_ent->sht = mv_port_info[board_idx].sht;
2177 probe_ent->host_flags = mv_port_info[board_idx].host_flags;
2178 probe_ent->pio_mask = mv_port_info[board_idx].pio_mask;
2179 probe_ent->udma_mask = mv_port_info[board_idx].udma_mask;
2180 probe_ent->port_ops = mv_port_info[board_idx].port_ops;
2181
2182 probe_ent->irq = pdev->irq;
2183 probe_ent->irq_flags = SA_SHIRQ;
2184 probe_ent->mmio_base = mmio_base;
2185 probe_ent->private_data = hpriv;
2186
2187 /* initialize adapter */
Jeff Garzik47c2b672005-11-12 21:13:17 -05002188 rc = mv_init_host(pdev, probe_ent, board_idx);
Brett Russ20f733e2005-09-01 18:26:17 -04002189 if (rc) {
2190 goto err_out_hpriv;
2191 }
Brett Russ20f733e2005-09-01 18:26:17 -04002192
Brett Russ31961942005-09-30 01:36:00 -04002193 /* Enable interrupts */
2194 if (pci_enable_msi(pdev) == 0) {
2195 hpriv->hp_flags |= MV_HP_FLAG_MSI;
2196 } else {
2197 pci_intx(pdev, 1);
Brett Russ20f733e2005-09-01 18:26:17 -04002198 }
2199
Brett Russ31961942005-09-30 01:36:00 -04002200 mv_dump_pci_cfg(pdev, 0x68);
2201 mv_print_info(probe_ent);
Brett Russ20f733e2005-09-01 18:26:17 -04002202
Brett Russ31961942005-09-30 01:36:00 -04002203 if (ata_device_add(probe_ent) == 0) {
2204 rc = -ENODEV; /* No devices discovered */
2205 goto err_out_dev_add;
2206 }
2207
2208 kfree(probe_ent);
Brett Russ20f733e2005-09-01 18:26:17 -04002209 return 0;
2210
Brett Russ31961942005-09-30 01:36:00 -04002211err_out_dev_add:
2212 if (MV_HP_FLAG_MSI & hpriv->hp_flags) {
2213 pci_disable_msi(pdev);
2214 } else {
2215 pci_intx(pdev, 0);
2216 }
2217err_out_hpriv:
Brett Russ20f733e2005-09-01 18:26:17 -04002218 kfree(hpriv);
Brett Russ31961942005-09-30 01:36:00 -04002219err_out_iounmap:
2220 pci_iounmap(pdev, mmio_base);
2221err_out_free_ent:
Brett Russ20f733e2005-09-01 18:26:17 -04002222 kfree(probe_ent);
Brett Russ31961942005-09-30 01:36:00 -04002223err_out_regions:
Brett Russ20f733e2005-09-01 18:26:17 -04002224 pci_release_regions(pdev);
Brett Russ31961942005-09-30 01:36:00 -04002225err_out:
Brett Russ20f733e2005-09-01 18:26:17 -04002226 if (!pci_dev_busy) {
2227 pci_disable_device(pdev);
2228 }
2229
2230 return rc;
2231}
2232
2233static int __init mv_init(void)
2234{
2235 return pci_module_init(&mv_pci_driver);
2236}
2237
2238static void __exit mv_exit(void)
2239{
2240 pci_unregister_driver(&mv_pci_driver);
2241}
2242
2243MODULE_AUTHOR("Brett Russ");
2244MODULE_DESCRIPTION("SCSI low-level driver for Marvell SATA controllers");
2245MODULE_LICENSE("GPL");
2246MODULE_DEVICE_TABLE(pci, mv_pci_tbl);
2247MODULE_VERSION(DRV_VERSION);
2248
2249module_init(mv_init);
2250module_exit(mv_exit);