blob: 722ab537b7a6df3bff30dc2db63497b780c761bc [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.
Brett Russ20f733e2005-09-01 18:26:17 -04005 *
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>
Jeff Garzika9524a72005-10-30 14:39:11 -050032#include <linux/device.h>
Brett Russ20f733e2005-09-01 18:26:17 -040033#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050034#include <scsi/scsi_cmnd.h>
Brett Russ20f733e2005-09-01 18:26:17 -040035#include <linux/libata.h>
36#include <asm/io.h>
37
38#define DRV_NAME "sata_mv"
Brett Russ7e6c1202005-10-20 08:39:43 -040039#define DRV_VERSION "0.25"
Brett Russ20f733e2005-09-01 18:26:17 -040040
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,
Jeff Garzik522479f2005-11-12 22:14:02 -050053 MV_FLASH_CTL = 0x1046c,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -050054 MV_GPIO_PORT_CTL = 0x104f0,
55 MV_RESET_CFG = 0x180d8,
Brett Russ20f733e2005-09-01 18:26:17 -040056
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
Brett Russ31961942005-09-30 01:36:00 -040062 MV_USE_Q_DEPTH = ATA_DEF_QUEUE,
Brett Russ20f733e2005-09-01 18:26:17 -040063
Brett Russ31961942005-09-30 01:36:00 -040064 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
Brett Russ20f733e2005-09-01 18:26:17 -040078 MV_PORTS_PER_HC = 4,
79 /* == (port / MV_PORTS_PER_HC) to determine HC from 0-7 port */
80 MV_PORT_HC_SHIFT = 2,
Brett Russ31961942005-09-30 01:36:00 -040081 /* == (port % MV_PORTS_PER_HC) to determine hard port from 0-7 port */
Brett Russ20f733e2005-09-01 18:26:17 -040082 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 */
Brett Russ31961942005-09-30 01:36:00 -040087 MV_COMMON_FLAGS = (ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
88 ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO),
Jeff Garzik47c2b672005-11-12 21:13:17 -050089 MV_6XXX_FLAGS = MV_FLAG_IRQ_COALESCE,
Brett Russ20f733e2005-09-01 18:26:17 -040090
Brett Russ31961942005-09-30 01:36:00 -040091 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
Brett Russ20f733e2005-09-01 18:26:17 -0400101 /* PCI interface registers */
102
Brett Russ31961942005-09-30 01:36:00 -0400103 PCI_COMMAND_OFS = 0xc00,
104
Brett Russ20f733e2005-09-01 18:26:17 -0400105 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
Jeff Garzik522479f2005-11-12 22:14:02 -0500110 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,
Brett Russ20f733e2005-09-01 18:26:17 -0400123 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 */
Jeff Garzik8b260242005-11-12 12:32:50 -0500139 HC_MAIN_MASKED_IRQS = (TRAN_LO_DONE | TRAN_HI_DONE |
Brett Russ20f733e2005-09-01 18:26:17 -0400140 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,
Brett Russ31961942005-09-30 01:36:00 -0400147 CRPB_DMA_DONE = (1 << 0), /* shift by port # */
Brett Russ20f733e2005-09-01 18:26:17 -0400148 HC_IRQ_COAL = (1 << 4), /* IRQ coalescing */
149 DEV_IRQ = (1 << 8), /* shift by port # */
150
151 /* Shadow block registers */
Brett Russ31961942005-09-30 01:36:00 -0400152 SHD_BLK_OFS = 0x100,
153 SHD_CTL_AST_OFS = 0x20, /* ofs from SHD_BLK_OFS */
Brett Russ20f733e2005-09-01 18:26:17 -0400154
155 /* SATA registers */
156 SATA_STATUS_OFS = 0x300, /* ctrl, err regs follow status */
157 SATA_ACTIVE_OFS = 0x350,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500158 PHY_MODE3 = 0x310,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500159 PHY_MODE4 = 0x314,
160 PHY_MODE2 = 0x330,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500161 MV5_PHY_MODE = 0x74,
162 MV5_LT_MODE = 0x30,
163 MV5_PHY_CTL = 0x0C,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500164 SATA_INTERFACE_CTL = 0x050,
165
166 MV_M2_PREAMP_MASK = 0x7e0,
Brett Russ20f733e2005-09-01 18:26:17 -0400167
168 /* Port registers */
169 EDMA_CFG_OFS = 0,
Brett Russ31961942005-09-30 01:36:00 -0400170 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 */
Brett Russ20f733e2005-09-01 18:26:17 -0400175
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),
Jeff Garzik8b260242005-11-12 12:32:50 -0500196 EDMA_ERR_FATAL = (EDMA_ERR_D_PAR | EDMA_ERR_PRD_PAR |
Brett Russ20f733e2005-09-01 18:26:17 -0400197 EDMA_ERR_DEV_DCON | EDMA_ERR_CRBQ_PAR |
198 EDMA_ERR_CRPB_PAR | EDMA_ERR_INTRL_PAR |
Jeff Garzik8b260242005-11-12 12:32:50 -0500199 EDMA_ERR_IORDY | EDMA_ERR_LNK_CTRL_RX_2 |
Brett Russ20f733e2005-09-01 18:26:17 -0400200 EDMA_ERR_LNK_DATA_RX |
Jeff Garzik8b260242005-11-12 12:32:50 -0500201 EDMA_ERR_LNK_DATA_TX |
Brett Russ20f733e2005-09-01 18:26:17 -0400202 EDMA_ERR_TRANS_PROTO),
203
Brett Russ31961942005-09-30 01:36:00 -0400204 EDMA_REQ_Q_BASE_HI_OFS = 0x10,
205 EDMA_REQ_Q_IN_PTR_OFS = 0x14, /* also contains BASE_LO */
Brett Russ31961942005-09-30 01:36:00 -0400206
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 */
Brett Russ31961942005-09-30 01:36:00 -0400213 EDMA_RSP_Q_PTR_SHIFT = 3,
214
Brett Russ20f733e2005-09-01 18:26:17 -0400215 EDMA_CMD_OFS = 0x28,
216 EDMA_EN = (1 << 0),
217 EDMA_DS = (1 << 1),
218 ATA_RST = (1 << 2),
219
Jeff Garzikc9d39132005-11-13 17:47:51 -0500220 EDMA_IORDY_TMOUT = 0x34,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500221 EDMA_ARB_CFG = 0x38,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500222
Brett Russ31961942005-09-30 01:36:00 -0400223 /* Host private flags (hp_flags) */
224 MV_HP_FLAG_MSI = (1 << 0),
Jeff Garzik47c2b672005-11-12 21:13:17 -0500225 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),
Brett Russ20f733e2005-09-01 18:26:17 -0400230
Brett Russ31961942005-09-30 01:36:00 -0400231 /* Port private flags (pp_flags) */
232 MV_PP_FLAG_EDMA_EN = (1 << 0),
233 MV_PP_FLAG_EDMA_DS_ACT = (1 << 1),
234};
235
Jeff Garzikc9d39132005-11-13 17:47:51 -0500236#define IS_50XX(hpriv) ((hpriv)->hp_flags & MV_HP_50XX)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500237#define IS_60XX(hpriv) (((hpriv)->hp_flags & MV_HP_50XX) == 0)
238
Jeff Garzik095fec82005-11-12 09:50:49 -0500239enum {
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
Jeff Garzik522479f2005-11-12 22:14:02 -0500250enum chip_type {
251 chip_504x,
252 chip_508x,
253 chip_5080,
254 chip_604x,
255 chip_608x,
256};
257
Brett Russ31961942005-09-30 01:36:00 -0400258/* 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};
265
266/* Command ResPonse Block: 8B */
267struct mv_crpb {
268 u16 id;
269 u16 flags;
270 u32 tmstmp;
271};
272
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;
Brett Russ20f733e2005-09-01 18:26:17 -0400279};
280
281struct mv_port_priv {
Brett Russ31961942005-09-30 01:36:00 -0400282 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;
Brett Russ20f733e2005-09-01 18:26:17 -0400288
Brett Russ31961942005-09-30 01:36:00 -0400289 unsigned req_producer; /* cp of req_in_ptr */
290 unsigned rsp_consumer; /* cp of rsp_out_ptr */
291 u32 pp_flags;
Brett Russ20f733e2005-09-01 18:26:17 -0400292};
293
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500294struct mv_port_signal {
295 u32 amps;
296 u32 pre;
297};
298
Jeff Garzik47c2b672005-11-12 21:13:17 -0500299struct mv_host_priv;
300struct mv_hw_ops {
Jeff Garzik2a47ce02005-11-12 23:05:14 -0500301 void (*phy_errata)(struct mv_host_priv *hpriv, void __iomem *mmio,
302 unsigned int port);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500303 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);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500306 int (*reset_hc)(struct mv_host_priv *hpriv, void __iomem *mmio,
307 unsigned int n_hc);
Jeff Garzik522479f2005-11-12 22:14:02 -0500308 void (*reset_flash)(struct mv_host_priv *hpriv, void __iomem *mmio);
309 void (*reset_bus)(struct pci_dev *pdev, void __iomem *mmio);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500310};
311
Brett Russ20f733e2005-09-01 18:26:17 -0400312struct mv_host_priv {
Brett Russ31961942005-09-30 01:36:00 -0400313 u32 hp_flags;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500314 struct mv_port_signal signal[8];
Jeff Garzik47c2b672005-11-12 21:13:17 -0500315 const struct mv_hw_ops *ops;
Brett Russ20f733e2005-09-01 18:26:17 -0400316};
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);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500321static 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);
Brett Russ20f733e2005-09-01 18:26:17 -0400323static void mv_phy_reset(struct ata_port *ap);
Brett Russ31961942005-09-30 01:36:00 -0400324static 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);
Brett Russ20f733e2005-09-01 18:26:17 -0400329static irqreturn_t mv_interrupt(int irq, void *dev_instance,
330 struct pt_regs *regs);
Brett Russ31961942005-09-30 01:36:00 -0400331static void mv_eng_timeout(struct ata_port *ap);
Brett Russ20f733e2005-09-01 18:26:17 -0400332static int mv_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
333
Jeff Garzik2a47ce02005-11-12 23:05:14 -0500334static void mv5_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
335 unsigned int port);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500336static 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);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500339static int mv5_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
340 unsigned int n_hc);
Jeff Garzik522479f2005-11-12 22:14:02 -0500341static void mv5_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio);
342static void mv5_reset_bus(struct pci_dev *pdev, void __iomem *mmio);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500343
Jeff Garzik2a47ce02005-11-12 23:05:14 -0500344static void mv6_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
345 unsigned int port);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500346static 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);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500349static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
350 unsigned int n_hc);
Jeff Garzik522479f2005-11-12 22:14:02 -0500351static 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);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500353static 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);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500356
Jeff Garzik193515d2005-11-07 00:59:37 -0500357static struct scsi_host_template mv_sht = {
Brett Russ20f733e2005-09-01 18:26:17 -0400358 .module = THIS_MODULE,
359 .name = DRV_NAME,
360 .ioctl = ata_scsi_ioctl,
361 .queuecommand = ata_scsi_queuecmd,
362 .eh_strategy_handler = ata_scsi_error,
Brett Russ31961942005-09-30 01:36:00 -0400363 .can_queue = MV_USE_Q_DEPTH,
Brett Russ20f733e2005-09-01 18:26:17 -0400364 .this_id = ATA_SHT_THIS_ID,
Brett Russ31961942005-09-30 01:36:00 -0400365 .sg_tablesize = MV_MAX_SG_CT,
Brett Russ20f733e2005-09-01 18:26:17 -0400366 .max_sectors = ATA_MAX_SECTORS,
367 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
368 .emulated = ATA_SHT_EMULATED,
Brett Russ31961942005-09-30 01:36:00 -0400369 .use_clustering = ATA_SHT_USE_CLUSTERING,
Brett Russ20f733e2005-09-01 18:26:17 -0400370 .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
Jeff Garzikc9d39132005-11-13 17:47:51 -0500377static 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 = {
Brett Russ20f733e2005-09-01 18:26:17 -0400405 .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
Brett Russ31961942005-09-30 01:36:00 -0400415 .qc_prep = mv_qc_prep,
416 .qc_issue = mv_qc_issue,
Brett Russ20f733e2005-09-01 18:26:17 -0400417
Brett Russ31961942005-09-30 01:36:00 -0400418 .eng_timeout = mv_eng_timeout,
Brett Russ20f733e2005-09-01 18:26:17 -0400419
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
Brett Russ31961942005-09-30 01:36:00 -0400426 .port_start = mv_port_start,
427 .port_stop = mv_port_stop,
428 .host_stop = mv_host_stop,
Brett Russ20f733e2005-09-01 18:26:17 -0400429};
430
431static struct ata_port_info mv_port_info[] = {
432 { /* chip_504x */
433 .sht = &mv_sht,
Brett Russ31961942005-09-30 01:36:00 -0400434 .host_flags = MV_COMMON_FLAGS,
435 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikc9d39132005-11-13 17:47:51 -0500436 .udma_mask = 0x7f, /* udma0-6 */
437 .port_ops = &mv5_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400438 },
439 { /* chip_508x */
440 .sht = &mv_sht,
Brett Russ31961942005-09-30 01:36:00 -0400441 .host_flags = (MV_COMMON_FLAGS | MV_FLAG_DUAL_HC),
442 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikc9d39132005-11-13 17:47:51 -0500443 .udma_mask = 0x7f, /* udma0-6 */
444 .port_ops = &mv5_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400445 },
Jeff Garzik47c2b672005-11-12 21:13:17 -0500446 { /* chip_5080 */
447 .sht = &mv_sht,
448 .host_flags = (MV_COMMON_FLAGS | MV_FLAG_DUAL_HC),
449 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikc9d39132005-11-13 17:47:51 -0500450 .udma_mask = 0x7f, /* udma0-6 */
451 .port_ops = &mv5_ops,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500452 },
Brett Russ20f733e2005-09-01 18:26:17 -0400453 { /* chip_604x */
454 .sht = &mv_sht,
Brett Russ31961942005-09-30 01:36:00 -0400455 .host_flags = (MV_COMMON_FLAGS | MV_6XXX_FLAGS),
456 .pio_mask = 0x1f, /* pio0-4 */
457 .udma_mask = 0x7f, /* udma0-6 */
Jeff Garzikc9d39132005-11-13 17:47:51 -0500458 .port_ops = &mv6_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400459 },
460 { /* chip_608x */
461 .sht = &mv_sht,
Jeff Garzik8b260242005-11-12 12:32:50 -0500462 .host_flags = (MV_COMMON_FLAGS | MV_6XXX_FLAGS |
Brett Russ31961942005-09-30 01:36:00 -0400463 MV_FLAG_DUAL_HC),
464 .pio_mask = 0x1f, /* pio0-4 */
465 .udma_mask = 0x7f, /* udma0-6 */
Jeff Garzikc9d39132005-11-13 17:47:51 -0500466 .port_ops = &mv6_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400467 },
468};
469
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500470static const struct pci_device_id mv_pci_tbl[] = {
Brett Russ20f733e2005-09-01 18:26:17 -0400471 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5040), 0, 0, chip_504x},
472 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5041), 0, 0, chip_504x},
Jeff Garzik47c2b672005-11-12 21:13:17 -0500473 {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5080), 0, 0, chip_5080},
Brett Russ20f733e2005-09-01 18:26:17 -0400474 {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},
Jeff Garzik29179532005-11-11 08:08:03 -0500480
481 {PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x0241), 0, 0, chip_604x},
Brett Russ20f733e2005-09-01 18:26:17 -0400482 {} /* 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
Jeff Garzik47c2b672005-11-12 21:13:17 -0500492static 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,
Jeff Garzik522479f2005-11-12 22:14:02 -0500497 .reset_flash = mv5_reset_flash,
498 .reset_bus = mv5_reset_bus,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500499};
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,
Jeff Garzik522479f2005-11-12 22:14:02 -0500506 .reset_flash = mv6_reset_flash,
507 .reset_bus = mv_reset_pci_bus,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500508};
509
Brett Russ20f733e2005-09-01 18:26:17 -0400510/*
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
Brett Russ20f733e2005-09-01 18:26:17 -0400520static 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
Jeff Garzikc9d39132005-11-13 17:47:51 -0500525static 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
Brett Russ20f733e2005-09-01 18:26:17 -0400541static inline void __iomem *mv_port_base(void __iomem *base, unsigned int port)
542{
Jeff Garzikc9d39132005-11-13 17:47:51 -0500543 return mv_hc_base_from_port(base, port) +
Jeff Garzik8b260242005-11-12 12:32:50 -0500544 MV_SATAHC_ARBTR_REG_SZ +
Jeff Garzikc9d39132005-11-13 17:47:51 -0500545 (mv_hardport_from_port(port) * MV_PORT_REG_SZ);
Brett Russ20f733e2005-09-01 18:26:17 -0400546}
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
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500553static inline int mv_get_hc_count(unsigned long host_flags)
Brett Russ20f733e2005-09-01 18:26:17 -0400554{
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500555 return ((host_flags & MV_FLAG_DUAL_HC) ? 2 : 1);
Brett Russ20f733e2005-09-01 18:26:17 -0400556}
557
558static void mv_irq_clear(struct ata_port *ap)
559{
560}
561
Brett Russ05b308e2005-10-05 17:08:53 -0400562/**
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 */
Brett Russafb0edd2005-10-05 17:08:42 -0400573static void mv_start_dma(void __iomem *base, struct mv_port_priv *pp)
Brett Russ31961942005-09-30 01:36:00 -0400574{
Brett Russafb0edd2005-10-05 17:08:42 -0400575 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));
Brett Russ31961942005-09-30 01:36:00 -0400580}
581
Brett Russ05b308e2005-10-05 17:08:53 -0400582/**
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 */
Brett Russ31961942005-09-30 01:36:00 -0400592static void mv_stop_dma(struct ata_port *ap)
593{
594 void __iomem *port_mmio = mv_ap_base(ap);
595 struct mv_port_priv *pp = ap->private_data;
Brett Russ31961942005-09-30 01:36:00 -0400596 u32 reg;
597 int i;
598
Brett Russafb0edd2005-10-05 17:08:42 -0400599 if (MV_PP_FLAG_EDMA_EN & pp->pp_flags) {
600 /* Disable EDMA if active. The disable bit auto clears.
Brett Russ31961942005-09-30 01:36:00 -0400601 */
Brett Russ31961942005-09-30 01:36:00 -0400602 writelfl(EDMA_DS, port_mmio + EDMA_CMD_OFS);
603 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
Brett Russafb0edd2005-10-05 17:08:42 -0400604 } else {
605 assert(!(EDMA_EN & readl(port_mmio + EDMA_CMD_OFS)));
606 }
Jeff Garzik8b260242005-11-12 12:32:50 -0500607
Brett Russ31961942005-09-30 01:36:00 -0400608 /* 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
Brett Russ31961942005-09-30 01:36:00 -0400617 if (EDMA_EN & reg) {
618 printk(KERN_ERR "ata%u: Unable to stop eDMA\n", ap->id);
Brett Russafb0edd2005-10-05 17:08:42 -0400619 /* FIXME: Consider doing a reset here to recover */
Brett Russ31961942005-09-30 01:36:00 -0400620 }
621}
622
Jeff Garzik8a70f8d2005-10-05 17:19:47 -0400623#ifdef ATA_DEBUG
Brett Russ31961942005-09-30 01:36:00 -0400624static void mv_dump_mem(void __iomem *start, unsigned bytes)
625{
Brett Russ31961942005-09-30 01:36:00 -0400626 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 }
Brett Russ31961942005-09-30 01:36:00 -0400635}
Jeff Garzik8a70f8d2005-10-05 17:19:47 -0400636#endif
637
Brett Russ31961942005-09-30 01:36:00 -0400638static 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
Jeff Garzik8b260242005-11-12 12:32:50 -0500658 void __iomem *hc_base = mv_hc_base(mmio_base,
Brett Russ31961942005-09-30 01:36:00 -0400659 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 }
Jeff Garzik8b260242005-11-12 12:32:50 -0500672 DPRINTK("All registers for port(s) %u-%u:\n", start_port,
Brett Russ31961942005-09-30 01:36:00 -0400673 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
697}
698
Brett Russ20f733e2005-09-01 18:26:17 -0400699static 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
Brett Russ05b308e2005-10-05 17:08:53 -0400739/**
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 */
Brett Russ31961942005-09-30 01:36:00 -0400749static void mv_host_stop(struct ata_host_set *host_set)
750{
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
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500763static 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
Brett Russ05b308e2005-10-05 17:08:53 -0400768/**
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 */
Brett Russ31961942005-09-30 01:36:00 -0400778static 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;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500785 int rc = -ENOMEM;
Brett Russ31961942005-09-30 01:36:00 -0400786
787 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500788 if (!pp)
789 goto err_out;
Brett Russ31961942005-09-30 01:36:00 -0400790 memset(pp, 0, sizeof(*pp));
791
Jeff Garzik8b260242005-11-12 12:32:50 -0500792 mem = dma_alloc_coherent(dev, MV_PORT_PRIV_DMA_SZ, &mem_dma,
Brett Russ31961942005-09-30 01:36:00 -0400793 GFP_KERNEL);
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500794 if (!mem)
795 goto err_out_pp;
Brett Russ31961942005-09-30 01:36:00 -0400796 memset(mem, 0, MV_PORT_PRIV_DMA_SZ);
797
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500798 rc = ata_pad_alloc(ap, dev);
799 if (rc)
800 goto err_out_priv;
801
Jeff Garzik8b260242005-11-12 12:32:50 -0500802 /* First item in chunk of DMA memory:
Brett Russ31961942005-09-30 01:36:00 -0400803 * 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
Jeff Garzik8b260242005-11-12 12:32:50 -0500810 /* Second item:
Brett Russ31961942005-09-30 01:36:00 -0400811 * 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
Jeff Garzik8b260242005-11-12 12:32:50 -0500824 writelfl(EDMA_CFG_Q_DEPTH | EDMA_CFG_RD_BRST_EXT |
Brett Russ31961942005-09-30 01:36:00 -0400825 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);
Jeff Garzik8b260242005-11-12 12:32:50 -0500828 writelfl(pp->crqb_dma & EDMA_REQ_Q_BASE_LO_MASK,
Brett Russ31961942005-09-30 01:36:00 -0400829 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);
Jeff Garzik8b260242005-11-12 12:32:50 -0500835 writelfl(pp->crpb_dma & EDMA_RSP_Q_BASE_LO_MASK,
Brett Russ31961942005-09-30 01:36:00 -0400836 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;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500846
847err_out_priv:
848 mv_priv_free(pp, dev);
849err_out_pp:
850 kfree(pp);
851err_out:
852 return rc;
Brett Russ31961942005-09-30 01:36:00 -0400853}
854
Brett Russ05b308e2005-10-05 17:08:53 -0400855/**
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 */
Brett Russ31961942005-09-30 01:36:00 -0400864static 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;
Brett Russafb0edd2005-10-05 17:08:42 -0400868 unsigned long flags;
Brett Russ31961942005-09-30 01:36:00 -0400869
Brett Russafb0edd2005-10-05 17:08:42 -0400870 spin_lock_irqsave(&ap->host_set->lock, flags);
Brett Russ31961942005-09-30 01:36:00 -0400871 mv_stop_dma(ap);
Brett Russafb0edd2005-10-05 17:08:42 -0400872 spin_unlock_irqrestore(&ap->host_set->lock, flags);
Brett Russ31961942005-09-30 01:36:00 -0400873
874 ap->private_data = NULL;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500875 ata_pad_free(ap, dev);
876 mv_priv_free(pp, dev);
Brett Russ31961942005-09-30 01:36:00 -0400877 kfree(pp);
878}
879
Brett Russ05b308e2005-10-05 17:08:53 -0400880/**
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 */
Brett Russ31961942005-09-30 01:36:00 -0400889static void mv_fill_sg(struct ata_queued_cmd *qc)
890{
891 struct mv_port_priv *pp = qc->ap->private_data;
Jeff Garzik972c26b2005-10-18 22:14:54 -0400892 unsigned int i = 0;
893 struct scatterlist *sg;
Brett Russ31961942005-09-30 01:36:00 -0400894
Jeff Garzik972c26b2005-10-18 22:14:54 -0400895 ata_for_each_sg(sg, qc) {
Brett Russ31961942005-09-30 01:36:00 -0400896 u32 sg_len;
897 dma_addr_t addr;
898
Jeff Garzik972c26b2005-10-18 22:14:54 -0400899 addr = sg_dma_address(sg);
900 sg_len = sg_dma_len(sg);
Brett Russ31961942005-09-30 01:36:00 -0400901
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);
Jeff Garzik972c26b2005-10-18 22:14:54 -0400906 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++;
Brett Russ31961942005-09-30 01:36:00 -0400910 }
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
Brett Russ05b308e2005-10-05 17:08:53 -0400925/**
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 */
Brett Russ31961942005-09-30 01:36:00 -0400937static 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;
Brett Russ20f733e2005-09-01 18:26:17 -0400947 }
948
Brett Russ31961942005-09-30 01:36:00 -0400949 /* the req producer index should be the same as we remember it */
Jeff Garzik8b260242005-11-12 12:32:50 -0500950 assert(((readl(mv_ap_base(qc->ap) + EDMA_REQ_Q_IN_PTR_OFS) >>
Brett Russ31961942005-09-30 01:36:00 -0400951 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
Jeff Garzik8b260242005-11-12 12:32:50 -0500962 pp->crqb[pp->req_producer].sg_addr =
Brett Russ31961942005-09-30 01:36:00 -0400963 cpu_to_le32(pp->sg_tbl_dma & 0xffffffff);
Jeff Garzik8b260242005-11-12 12:32:50 -0500964 pp->crqb[pp->req_producer].sg_addr_hi =
Brett Russ31961942005-09-30 01:36:00 -0400965 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.
976 */
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:
Jeff Garzik8b260242005-11-12 12:32:50 -0500987 mv_crqb_pack_cmd(cw++, tf->hob_feature, ATA_REG_FEATURE, 0);
Brett Russ31961942005-09-30 01:36:00 -0400988 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
Brett Russ05b308e2005-10-05 17:08:53 -04001019/**
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 */
Brett Russ31961942005-09-30 01:36:00 -04001031static 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) ==
Jeff Garzik8b260242005-11-12 12:32:50 -05001053 ((readl(port_mmio + EDMA_REQ_Q_OUT_PTR_OFS) >>
Brett Russ31961942005-09-30 01:36:00 -04001054 EDMA_REQ_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK));
1055
1056 mv_inc_q_index(&pp->req_producer); /* now incr producer index */
1057
Brett Russafb0edd2005-10-05 17:08:42 -04001058 mv_start_dma(port_mmio, pp);
Brett Russ31961942005-09-30 01:36:00 -04001059
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
Brett Russ05b308e2005-10-05 17:08:53 -04001068/**
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 */
Brett Russ31961942005-09-30 01:36:00 -04001081static 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 */
Jeff Garzik8b260242005-11-12 12:32:50 -05001090 assert(((out_ptr >> EDMA_RSP_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
Brett Russ31961942005-09-30 01:36:00 -04001091 pp->rsp_consumer);
1092
1093 /* increment our consumer index... */
1094 pp->rsp_consumer = mv_inc_q_index(&pp->rsp_consumer);
Jeff Garzik8b260242005-11-12 12:32:50 -05001095
Brett Russ31961942005-09-30 01:36:00 -04001096 /* and, until we do NCQ, there should only be 1 CRPB waiting */
Jeff Garzik8b260242005-11-12 12:32:50 -05001097 assert(((readl(port_mmio + EDMA_RSP_Q_IN_PTR_OFS) >>
1098 EDMA_RSP_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK) ==
Brett Russ31961942005-09-30 01:36:00 -04001099 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);
Brett Russ20f733e2005-09-01 18:26:17 -04001108}
1109
Brett Russ05b308e2005-10-05 17:08:53 -04001110/**
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 */
Brett Russ20f733e2005-09-01 18:26:17 -04001123static void mv_err_intr(struct ata_port *ap)
1124{
Brett Russ31961942005-09-30 01:36:00 -04001125 void __iomem *port_mmio = mv_ap_base(ap);
Brett Russ20f733e2005-09-01 18:26:17 -04001126 u32 edma_err_cause, serr = 0;
1127
Brett Russ20f733e2005-09-01 18:26:17 -04001128 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 }
Brett Russafb0edd2005-10-05 17:08:42 -04001134 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);
Brett Russ20f733e2005-09-01 18:26:17 -04001140
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) {
Jeff Garzikc9d39132005-11-13 17:47:51 -05001146 mv_stop_and_reset(ap);
Brett Russ20f733e2005-09-01 18:26:17 -04001147 }
1148}
1149
Brett Russ05b308e2005-10-05 17:08:53 -04001150/**
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 */
Brett Russ20f733e2005-09-01 18:26:17 -04001166static 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;
Brett Russ31961942005-09-30 01:36:00 -04001174 int shift, port, port0, hard_port, handled;
Jeff Garzika7dac442005-10-30 04:44:42 -05001175 unsigned int err_mask;
Brett Russ31961942005-09-30 01:36:00 -04001176 u8 ata_status = 0;
Brett Russ20f733e2005-09-01 18:26:17 -04001177
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) {
Brett Russ31961942005-09-30 01:36:00 -04001187 writelfl(~hc_irq_cause, hc_mmio + HC_IRQ_CAUSE_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04001188 }
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 */
Brett Russ31961942005-09-30 01:36:00 -04001196 handled = 0; /* ensure ata_status is set if handled++ */
Brett Russ20f733e2005-09-01 18:26:17 -04001197
Brett Russ31961942005-09-30 01:36:00 -04001198 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
Brett Russ20f733e2005-09-01 18:26:17 -04001205 */
1206 ata_status = readb((void __iomem *)
1207 ap->ioaddr.status_addr);
Brett Russ31961942005-09-30 01:36:00 -04001208 handled++;
Brett Russ20f733e2005-09-01 18:26:17 -04001209 }
1210
Jeff Garzika7dac442005-10-30 04:44:42 -05001211 err_mask = ac_err_mask(ata_status);
1212
Brett Russ31961942005-09-30 01:36:00 -04001213 shift = port << 1; /* (port * 2) */
Brett Russ20f733e2005-09-01 18:26:17 -04001214 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);
Jeff Garzika7dac442005-10-30 04:44:42 -05001219 err_mask |= AC_ERR_OTHER;
Brett Russ31961942005-09-30 01:36:00 -04001220 handled++;
Brett Russ20f733e2005-09-01 18:26:17 -04001221 }
Jeff Garzik8b260242005-11-12 12:32:50 -05001222
Brett Russ31961942005-09-30 01:36:00 -04001223 if (handled && ap) {
Brett Russ20f733e2005-09-01 18:26:17 -04001224 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);
Brett Russ20f733e2005-09-01 18:26:17 -04001228 /* mark qc status appropriately */
Jeff Garzika7dac442005-10-30 04:44:42 -05001229 ata_qc_complete(qc, err_mask);
Brett Russ20f733e2005-09-01 18:26:17 -04001230 }
1231 }
1232 }
1233 VPRINTK("EXIT\n");
1234}
1235
Brett Russ05b308e2005-10-05 17:08:53 -04001236/**
Jeff Garzik8b260242005-11-12 12:32:50 -05001237 * mv_interrupt -
Brett Russ05b308e2005-10-05 17:08:53 -04001238 * @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 *
Jeff Garzik8b260242005-11-12 12:32:50 -05001247 * LOCKING:
Brett Russ05b308e2005-10-05 17:08:53 -04001248 * This routine holds the host_set lock while processing pending
1249 * interrupts.
1250 */
Brett Russ20f733e2005-09-01 18:26:17 -04001251static 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;
Brett Russ31961942005-09-30 01:36:00 -04001256 void __iomem *mmio = host_set->mmio_base;
Brett Russ20f733e2005-09-01 18:26:17 -04001257 u32 irq_stat;
1258
Brett Russ20f733e2005-09-01 18:26:17 -04001259 irq_stat = readl(mmio + HC_MAIN_IRQ_CAUSE_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04001260
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
Brett Russ31961942005-09-30 01:36:00 -04001268 n_hcs = mv_get_hc_count(host_set->ports[0]->flags);
Brett Russ20f733e2005-09-01 18:26:17 -04001269 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);
Brett Russ31961942005-09-30 01:36:00 -04001275 handled++;
Brett Russ20f733e2005-09-01 18:26:17 -04001276 }
1277 }
1278 if (PCI_ERR & irq_stat) {
Brett Russ31961942005-09-30 01:36:00 -04001279 printk(KERN_ERR DRV_NAME ": PCI ERROR; PCI IRQ cause=0x%08x\n",
1280 readl(mmio + PCI_IRQ_CAUSE_OFS));
Brett Russ20f733e2005-09-01 18:26:17 -04001281
Brett Russafb0edd2005-10-05 17:08:42 -04001282 DPRINTK("All regs @ PCI error\n");
Brett Russ31961942005-09-30 01:36:00 -04001283 mv_dump_all_regs(mmio, -1, to_pci_dev(host_set->dev));
1284
1285 writelfl(0, mmio + PCI_IRQ_CAUSE_OFS);
1286 handled++;
1287 }
Brett Russ20f733e2005-09-01 18:26:17 -04001288 spin_unlock(&host_set->lock);
1289
1290 return IRQ_RETVAL(handled);
1291}
1292
Jeff Garzikc9d39132005-11-13 17:47:51 -05001293static 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
Jeff Garzik522479f2005-11-12 22:14:02 -05001338static 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
Jeff Garzik47c2b672005-11-12 21:13:17 -05001361static void mv5_read_preamp(struct mv_host_priv *hpriv, int idx,
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001362 void __iomem *mmio)
1363{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001364 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 */
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001371}
1372
Jeff Garzik47c2b672005-11-12 21:13:17 -05001373static void mv5_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio)
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001374{
Jeff Garzik522479f2005-11-12 22:14:02 -05001375 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);
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001384}
1385
Jeff Garzik2a47ce02005-11-12 23:05:14 -05001386static void mv5_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
1387 unsigned int port)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001388{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001389 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);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001410}
1411
Jeff Garzikc9d39132005-11-13 17:47:51 -05001412
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)
Jeff Garzik47c2b672005-11-12 21:13:17 -05001417{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001418 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)
1443{
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;
Jeff Garzik47c2b672005-11-12 21:13:17 -05001473}
1474
Jeff Garzik101ffae2005-11-12 22:17:49 -05001475#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 */
Jeff Garzikc9d39132005-11-13 17:47:51 -05001520static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
1521 unsigned int n_hc)
Jeff Garzik101ffae2005-11-12 22:17:49 -05001522{
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
Jeff Garzik47c2b672005-11-12 21:13:17 -05001576static void mv6_read_preamp(struct mv_host_priv *hpriv, int idx,
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001577 void __iomem *mmio)
1578{
1579 void __iomem *port_mmio;
1580 u32 tmp;
1581
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001582 tmp = readl(mmio + MV_RESET_CFG);
1583 if ((tmp & (1 << 0)) == 0) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05001584 hpriv->signal[idx].amps = 0x7 << 8;
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001585 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
Jeff Garzik47c2b672005-11-12 21:13:17 -05001596static void mv6_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio)
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001597{
Jeff Garzik47c2b672005-11-12 21:13:17 -05001598 writel(0x00000060, mmio + MV_GPIO_PORT_CTL);
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05001599}
1600
Jeff Garzikc9d39132005-11-13 17:47:51 -05001601static void mv6_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
Jeff Garzik2a47ce02005-11-12 23:05:14 -05001602 unsigned int port)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001603{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001604 void __iomem *port_mmio = mv_port_base(mmio, port);
1605
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001606 u32 hp_flags = hpriv->hp_flags;
Jeff Garzik47c2b672005-11-12 21:13:17 -05001607 int fix_phy_mode2 =
1608 hp_flags & (MV_HP_ERRATA_60X1B2 | MV_HP_ERRATA_60X1C0);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001609 int fix_phy_mode4 =
Jeff Garzik47c2b672005-11-12 21:13:17 -05001610 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);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001633
1634 if (fix_phy_mode4) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05001635 u32 m4;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001636
1637 m4 = readl(port_mmio + PHY_MODE4);
Jeff Garzik47c2b672005-11-12 21:13:17 -05001638
1639 if (hp_flags & MV_HP_ERRATA_60X1B2)
1640 tmp = readl(port_mmio + 0x310);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001641
1642 m4 = (m4 & ~(1 << 1)) | (1 << 0);
1643
1644 writel(m4, port_mmio + PHY_MODE4);
Jeff Garzik47c2b672005-11-12 21:13:17 -05001645
1646 if (hp_flags & MV_HP_ERRATA_60X1B2)
1647 writel(tmp, port_mmio + 0x310);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001648 }
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;
Jeff Garzik2a47ce02005-11-12 23:05:14 -05001654 m2 |= hpriv->signal[port].amps;
1655 m2 |= hpriv->signal[port].pre;
Jeff Garzik47c2b672005-11-12 21:13:17 -05001656 m2 &= ~(1 << 16);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001657
1658 writel(m2, port_mmio + PHY_MODE2);
1659}
1660
Jeff Garzikc9d39132005-11-13 17:47:51 -05001661static void mv_channel_reset(struct mv_host_priv *hpriv, void __iomem *mmio,
1662 unsigned int port_no)
Brett Russ20f733e2005-09-01 18:26:17 -04001663{
Jeff Garzikc9d39132005-11-13 17:47:51 -05001664 void __iomem *port_mmio = mv_port_base(mmio, port_no);
Brett Russ20f733e2005-09-01 18:26:17 -04001665
Brett Russ31961942005-09-30 01:36:00 -04001666 writelfl(ATA_RST, port_mmio + EDMA_CMD_OFS);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001667
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
Brett Russ20f733e2005-09-01 18:26:17 -04001674 udelay(25); /* allow reset propagation */
1675
1676 /* Spec never mentions clearing the bit. Marvell's driver does
1677 * clear the bit, however.
1678 */
Brett Russ31961942005-09-30 01:36:00 -04001679 writelfl(0, port_mmio + EDMA_CMD_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04001680
Jeff Garzikc9d39132005-11-13 17:47:51 -05001681 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
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.
1709 */
1710static void mv_phy_reset(struct ata_port *ap)
1711{
1712 struct mv_port_priv *pp = ap->private_data;
1713 void __iomem *port_mmio = mv_ap_base(ap);
1714 struct ata_taskfile tf;
1715 struct ata_device *dev = &ap->device[0];
1716 unsigned long timeout;
1717
1718 VPRINTK("ENTER, port %u, mmio 0x%p\n", ap->port_no, port_mmio);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001719
Jeff Garzik095fec82005-11-12 09:50:49 -05001720 DPRINTK("S-regs after ATA_RST: SStat 0x%08x SErr 0x%08x "
Brett Russ31961942005-09-30 01:36:00 -04001721 "SCtrl 0x%08x\n", mv_scr_read(ap, SCR_STATUS),
1722 mv_scr_read(ap, SCR_ERROR), mv_scr_read(ap, SCR_CONTROL));
Brett Russ20f733e2005-09-01 18:26:17 -04001723
1724 /* proceed to init communications via the scr_control reg */
Brett Russ31961942005-09-30 01:36:00 -04001725 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));
Brett Russ20f733e2005-09-01 18:26:17 -04001734
Jeff Garzik095fec82005-11-12 09:50:49 -05001735 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 "
Brett Russ31961942005-09-30 01:36:00 -04001738 "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);
Brett Russ20f733e2005-09-01 18:26:17 -04001747 return;
1748 }
Brett Russ31961942005-09-30 01:36:00 -04001749 ap->cbl = ATA_CBL_SATA;
Brett Russ20f733e2005-09-01 18:26:17 -04001750
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 }
Jeff Garzik095fec82005-11-12 09:50:49 -05001761
1762 writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
1763
1764 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
1765
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001766 VPRINTK("EXIT\n");
Brett Russ20f733e2005-09-01 18:26:17 -04001767}
1768
Brett Russ05b308e2005-10-05 17:08:53 -04001769/**
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 */
Brett Russ31961942005-09-30 01:36:00 -04001779static void mv_eng_timeout(struct ata_port *ap)
Brett Russ20f733e2005-09-01 18:26:17 -04001780{
Brett Russ31961942005-09-30 01:36:00 -04001781 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");
Jeff Garzik8b260242005-11-12 12:32:50 -05001786 mv_dump_all_regs(ap->host_set->mmio_base, ap->port_no,
Brett Russ31961942005-09-30 01:36:00 -04001787 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",
Jeff Garzik8b260242005-11-12 12:32:50 -05001791 ap->host_set->mmio_base, ap, qc, qc->scsicmd,
Brett Russ31961942005-09-30 01:36:00 -04001792 &qc->scsicmd->cmnd);
1793
1794 mv_err_intr(ap);
Jeff Garzikc9d39132005-11-13 17:47:51 -05001795 mv_stop_and_reset(ap);
Brett Russ31961942005-09-30 01:36:00 -04001796
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;
Jeff Garzika7dac442005-10-30 04:44:42 -05001809 ata_qc_complete(qc, AC_ERR_OTHER);
Brett Russ31961942005-09-30 01:36:00 -04001810 spin_unlock_irqrestore(&ap->host_set->lock, flags);
1811 }
1812}
1813
Brett Russ05b308e2005-10-05 17:08:53 -04001814/**
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 */
Brett Russ31961942005-09-30 01:36:00 -04001826static void mv_port_init(struct ata_ioports *port, void __iomem *port_mmio)
1827{
1828 unsigned long shd_base = (unsigned long) port_mmio + SHD_BLK_OFS;
1829 unsigned serr_ofs;
1830
Jeff Garzik8b260242005-11-12 12:32:50 -05001831 /* PIO related setup
Brett Russ31961942005-09-30 01:36:00 -04001832 */
1833 port->data_addr = shd_base + (sizeof(u32) * ATA_REG_DATA);
Jeff Garzik8b260242005-11-12 12:32:50 -05001834 port->error_addr =
Brett Russ31961942005-09-30 01:36:00 -04001835 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);
Jeff Garzik8b260242005-11-12 12:32:50 -05001841 port->status_addr =
Brett Russ31961942005-09-30 01:36:00 -04001842 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: */
Brett Russ20f733e2005-09-01 18:26:17 -04001847 port->cmd_addr = port->bmdma_addr = port->scr_addr = 0;
1848
Brett Russ31961942005-09-30 01:36:00 -04001849 /* 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
Brett Russ20f733e2005-09-01 18:26:17 -04001854 /* unmask all EDMA error interrupts */
Brett Russ31961942005-09-30 01:36:00 -04001855 writelfl(~0, port_mmio + EDMA_ERR_IRQ_MASK_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04001856
Jeff Garzik8b260242005-11-12 12:32:50 -05001857 VPRINTK("EDMA cfg=0x%08x EDMA IRQ err cause/mask=0x%08x/0x%08x\n",
Brett Russ31961942005-09-30 01:36:00 -04001858 readl(port_mmio + EDMA_CFG_OFS),
1859 readl(port_mmio + EDMA_ERR_IRQ_CAUSE_OFS),
1860 readl(port_mmio + EDMA_ERR_IRQ_MASK_OFS));
Brett Russ20f733e2005-09-01 18:26:17 -04001861}
1862
Jeff Garzik47c2b672005-11-12 21:13:17 -05001863static int mv_chip_id(struct pci_dev *pdev, struct mv_host_priv *hpriv,
Jeff Garzik522479f2005-11-12 22:14:02 -05001864 unsigned int board_idx)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001865{
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) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05001872 case chip_5080:
1873 hpriv->ops = &mv5xxx_ops;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001874 hp_flags |= MV_HP_50XX;
1875
Jeff Garzik47c2b672005-11-12 21:13:17 -05001876 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
1891 case chip_504x:
1892 case chip_508x:
1893 hpriv->ops = &mv5xxx_ops;
1894 hp_flags |= MV_HP_50XX;
1895
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;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001908 }
1909 break;
1910
1911 case chip_604x:
1912 case chip_608x:
Jeff Garzik47c2b672005-11-12 21:13:17 -05001913 hpriv->ops = &mv6xxx_ops;
1914
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001915 switch (rev_id) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05001916 case 0x7:
1917 hp_flags |= MV_HP_ERRATA_60X1B2;
1918 break;
1919 case 0x9:
1920 hp_flags |= MV_HP_ERRATA_60X1C0;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001921 break;
1922 default:
1923 dev_printk(KERN_WARNING, &pdev->dev,
Jeff Garzik47c2b672005-11-12 21:13:17 -05001924 "Applying B2 workarounds to unknown rev\n");
1925 hp_flags |= MV_HP_ERRATA_60X1B2;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001926 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
Brett Russ05b308e2005-10-05 17:08:53 -04001940/**
Jeff Garzik47c2b672005-11-12 21:13:17 -05001941 * mv_init_host - Perform some early initialization of the host.
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001942 * @pdev: host PCI device
Brett Russ05b308e2005-10-05 17:08:53 -04001943 * @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 */
Jeff Garzik47c2b672005-11-12 21:13:17 -05001951static int mv_init_host(struct pci_dev *pdev, struct ata_probe_ent *probe_ent,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001952 unsigned int board_idx)
Brett Russ20f733e2005-09-01 18:26:17 -04001953{
1954 int rc = 0, n_hc, port, hc;
1955 void __iomem *mmio = probe_ent->mmio_base;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001956 struct mv_host_priv *hpriv = probe_ent->private_data;
1957
Jeff Garzik47c2b672005-11-12 21:13:17 -05001958 /* global interrupt mask */
1959 writel(0, mmio + HC_MAIN_IRQ_MASK_OFS);
1960
1961 rc = mv_chip_id(pdev, hpriv, board_idx);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05001962 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
Jeff Garzik47c2b672005-11-12 21:13:17 -05001968 for (port = 0; port < probe_ent->n_ports; port++)
1969 hpriv->ops->read_preamp(hpriv, port, mmio);
Brett Russ20f733e2005-09-01 18:26:17 -04001970
Jeff Garzikc9d39132005-11-13 17:47:51 -05001971 rc = hpriv->ops->reset_hc(hpriv, mmio, n_hc);
Jeff Garzik47c2b672005-11-12 21:13:17 -05001972 if (rc)
Brett Russ20f733e2005-09-01 18:26:17 -04001973 goto done;
Brett Russ20f733e2005-09-01 18:26:17 -04001974
Jeff Garzik522479f2005-11-12 22:14:02 -05001975 hpriv->ops->reset_flash(hpriv, mmio);
1976 hpriv->ops->reset_bus(pdev, mmio);
Jeff Garzik47c2b672005-11-12 21:13:17 -05001977 hpriv->ops->enable_leds(hpriv, mmio);
Brett Russ20f733e2005-09-01 18:26:17 -04001978
1979 for (port = 0; port < probe_ent->n_ports; port++) {
Jeff Garzik2a47ce02005-11-12 23:05:14 -05001980 if (IS_60XX(hpriv)) {
Jeff Garzikc9d39132005-11-13 17:47:51 -05001981 void __iomem *port_mmio = mv_port_base(mmio, port);
1982
Jeff Garzik2a47ce02005-11-12 23:05:14 -05001983 u32 ifctl = readl(port_mmio + SATA_INTERFACE_CTL);
1984 ifctl |= (1 << 12);
1985 writelfl(ifctl, port_mmio + SATA_INTERFACE_CTL);
1986 }
1987
Jeff Garzikc9d39132005-11-13 17:47:51 -05001988 hpriv->ops->phy_errata(hpriv, mmio, port);
Jeff Garzik2a47ce02005-11-12 23:05:14 -05001989 }
1990
1991 for (port = 0; port < probe_ent->n_ports; port++) {
1992 void __iomem *port_mmio = mv_port_base(mmio, port);
Brett Russ31961942005-09-30 01:36:00 -04001993 mv_port_init(&probe_ent->port[port], port_mmio);
Brett Russ20f733e2005-09-01 18:26:17 -04001994 }
1995
1996 for (hc = 0; hc < n_hc; hc++) {
Brett Russ31961942005-09-30 01:36:00 -04001997 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);
Brett Russ20f733e2005-09-01 18:26:17 -04002006 }
2007
Brett Russ31961942005-09-30 01:36:00 -04002008 /* 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);
Brett Russ20f733e2005-09-01 18:26:17 -04002014
2015 VPRINTK("HC MAIN IRQ cause/mask=0x%08x/0x%08x "
Jeff Garzik8b260242005-11-12 12:32:50 -05002016 "PCI int cause/mask=0x%08x/0x%08x\n",
Brett Russ20f733e2005-09-01 18:26:17 -04002017 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));
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002021
Brett Russ31961942005-09-30 01:36:00 -04002022done:
Brett Russ20f733e2005-09-01 18:26:17 -04002023 return rc;
2024}
2025
Brett Russ05b308e2005-10-05 17:08:53 -04002026/**
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 */
Brett Russ31961942005-09-30 01:36:00 -04002035static 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
Jeff Garzika9524a72005-10-30 14:39:11 -05002055 dev_printk(KERN_INFO, &pdev->dev,
2056 "%u slots %u ports %s mode IRQ via %s\n",
Jeff Garzik8b260242005-11-12 12:32:50 -05002057 (unsigned)MV_MAX_Q_DEPTH, probe_ent->n_ports,
Brett Russ31961942005-09-30 01:36:00 -04002058 scc_s, (MV_HP_FLAG_MSI & hpriv->hp_flags) ? "MSI" : "INTx");
2059}
2060
Brett Russ05b308e2005-10-05 17:08:53 -04002061/**
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 */
Brett Russ20f733e2005-09-01 18:26:17 -04002069static 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;
Brett Russ31961942005-09-30 01:36:00 -04002076 int pci_dev_busy = 0, rc;
Brett Russ20f733e2005-09-01 18:26:17 -04002077
Jeff Garzika9524a72005-10-30 14:39:11 -05002078 if (!printed_version++)
2079 dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");
Brett Russ20f733e2005-09-01 18:26:17 -04002080
Brett Russ20f733e2005-09-01 18:26:17 -04002081 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
Brett Russ20f733e2005-09-01 18:26:17 -04002092 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
Brett Russ31961942005-09-30 01:36:00 -04002102 mmio_base = pci_iomap(pdev, MV_PRIMARY_BAR, 0);
Brett Russ20f733e2005-09-01 18:26:17 -04002103 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 */
Jeff Garzik47c2b672005-11-12 21:13:17 -05002127 rc = mv_init_host(pdev, probe_ent, board_idx);
Brett Russ20f733e2005-09-01 18:26:17 -04002128 if (rc) {
2129 goto err_out_hpriv;
2130 }
Brett Russ20f733e2005-09-01 18:26:17 -04002131
Brett Russ31961942005-09-30 01:36:00 -04002132 /* Enable interrupts */
2133 if (pci_enable_msi(pdev) == 0) {
2134 hpriv->hp_flags |= MV_HP_FLAG_MSI;
2135 } else {
2136 pci_intx(pdev, 1);
Brett Russ20f733e2005-09-01 18:26:17 -04002137 }
2138
Brett Russ31961942005-09-30 01:36:00 -04002139 mv_dump_pci_cfg(pdev, 0x68);
2140 mv_print_info(probe_ent);
Brett Russ20f733e2005-09-01 18:26:17 -04002141
Brett Russ31961942005-09-30 01:36:00 -04002142 if (ata_device_add(probe_ent) == 0) {
2143 rc = -ENODEV; /* No devices discovered */
2144 goto err_out_dev_add;
2145 }
2146
2147 kfree(probe_ent);
Brett Russ20f733e2005-09-01 18:26:17 -04002148 return 0;
2149
Brett Russ31961942005-09-30 01:36:00 -04002150err_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:
Brett Russ20f733e2005-09-01 18:26:17 -04002157 kfree(hpriv);
Brett Russ31961942005-09-30 01:36:00 -04002158err_out_iounmap:
2159 pci_iounmap(pdev, mmio_base);
2160err_out_free_ent:
Brett Russ20f733e2005-09-01 18:26:17 -04002161 kfree(probe_ent);
Brett Russ31961942005-09-30 01:36:00 -04002162err_out_regions:
Brett Russ20f733e2005-09-01 18:26:17 -04002163 pci_release_regions(pdev);
Brett Russ31961942005-09-30 01:36:00 -04002164err_out:
Brett Russ20f733e2005-09-01 18:26:17 -04002165 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);