blob: 52e992ce59a4d936b4748cdaf92ba3179c57ca7b [file] [log] [blame]
Brett Russ20f733e2005-09-01 18:26:17 -04001/*
2 * sata_mv.c - Marvell SATA support
3 *
Mark Lorde12bef52008-03-31 19:33:56 -04004 * Copyright 2008: Marvell Corporation, all rights reserved.
Jeff Garzik8b260242005-11-12 12:32:50 -05005 * Copyright 2005: EMC Corporation, all rights reserved.
Jeff Garzike2b1be52005-11-18 14:04:23 -05006 * Copyright 2005 Red Hat, Inc. All rights reserved.
Brett Russ20f733e2005-09-01 18:26:17 -04007 *
8 * Please ALWAYS copy linux-ide@vger.kernel.org on emails.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2 of the License.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
Jeff Garzik4a05e202007-05-24 23:40:15 -040025/*
Mark Lord85afb932008-04-19 14:54:41 -040026 * sata_mv TODO list:
27 *
28 * --> Errata workaround for NCQ device errors.
29 *
30 * --> More errata workarounds for PCI-X.
31 *
32 * --> Complete a full errata audit for all chipsets to identify others.
33 *
34 * --> ATAPI support (Marvell claims the 60xx/70xx chips can do it).
35 *
36 * --> Investigate problems with PCI Message Signalled Interrupts (MSI).
37 *
38 * --> Cache frequently-accessed registers in mv_port_priv to reduce overhead.
39 *
40 * --> Develop a low-power-consumption strategy, and implement it.
41 *
42 * --> [Experiment, low priority] Investigate interrupt coalescing.
43 * Quite often, especially with PCI Message Signalled Interrupts (MSI),
44 * the overhead reduced by interrupt mitigation is quite often not
45 * worth the latency cost.
46 *
47 * --> [Experiment, Marvell value added] Is it possible to use target
48 * mode to cross-connect two Linux boxes with Marvell cards? If so,
49 * creating LibATA target mode support would be very interesting.
50 *
51 * Target mode, for those without docs, is the ability to directly
52 * connect two SATA ports.
53 */
Jeff Garzik4a05e202007-05-24 23:40:15 -040054
Brett Russ20f733e2005-09-01 18:26:17 -040055#include <linux/kernel.h>
56#include <linux/module.h>
57#include <linux/pci.h>
58#include <linux/init.h>
59#include <linux/blkdev.h>
60#include <linux/delay.h>
61#include <linux/interrupt.h>
Andrew Morton8d8b6002008-02-04 23:43:44 -080062#include <linux/dmapool.h>
Brett Russ20f733e2005-09-01 18:26:17 -040063#include <linux/dma-mapping.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050064#include <linux/device.h>
Saeed Bisharaf351b2d2008-02-01 18:08:03 -050065#include <linux/platform_device.h>
66#include <linux/ata_platform.h>
Lennert Buytenhek15a32632008-03-27 14:51:39 -040067#include <linux/mbus.h>
Mark Lordc46938c2008-05-02 14:02:28 -040068#include <linux/bitops.h>
Brett Russ20f733e2005-09-01 18:26:17 -040069#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050070#include <scsi/scsi_cmnd.h>
Jeff Garzik6c087722007-10-12 00:16:23 -040071#include <scsi/scsi_device.h>
Brett Russ20f733e2005-09-01 18:26:17 -040072#include <linux/libata.h>
Brett Russ20f733e2005-09-01 18:26:17 -040073
74#define DRV_NAME "sata_mv"
Mark Lord1fd2e1c2008-01-26 18:33:59 -050075#define DRV_VERSION "1.20"
Brett Russ20f733e2005-09-01 18:26:17 -040076
77enum {
78 /* BAR's are enumerated in terms of pci_resource_start() terms */
79 MV_PRIMARY_BAR = 0, /* offset 0x10: memory space */
80 MV_IO_BAR = 2, /* offset 0x18: IO space */
81 MV_MISC_BAR = 3, /* offset 0x1c: FLASH, NVRAM, SRAM */
82
83 MV_MAJOR_REG_AREA_SZ = 0x10000, /* 64KB */
84 MV_MINOR_REG_AREA_SZ = 0x2000, /* 8KB */
85
86 MV_PCI_REG_BASE = 0,
87 MV_IRQ_COAL_REG_BASE = 0x18000, /* 6xxx part only */
Mark Lord615ab952006-05-19 16:24:56 -040088 MV_IRQ_COAL_CAUSE = (MV_IRQ_COAL_REG_BASE + 0x08),
89 MV_IRQ_COAL_CAUSE_LO = (MV_IRQ_COAL_REG_BASE + 0x88),
90 MV_IRQ_COAL_CAUSE_HI = (MV_IRQ_COAL_REG_BASE + 0x8c),
91 MV_IRQ_COAL_THRESHOLD = (MV_IRQ_COAL_REG_BASE + 0xcc),
92 MV_IRQ_COAL_TIME_THRESHOLD = (MV_IRQ_COAL_REG_BASE + 0xd0),
93
Brett Russ20f733e2005-09-01 18:26:17 -040094 MV_SATAHC0_REG_BASE = 0x20000,
Mark Lord8e7decd2008-05-02 02:07:51 -040095 MV_FLASH_CTL_OFS = 0x1046c,
96 MV_GPIO_PORT_CTL_OFS = 0x104f0,
97 MV_RESET_CFG_OFS = 0x180d8,
Brett Russ20f733e2005-09-01 18:26:17 -040098
99 MV_PCI_REG_SZ = MV_MAJOR_REG_AREA_SZ,
100 MV_SATAHC_REG_SZ = MV_MAJOR_REG_AREA_SZ,
101 MV_SATAHC_ARBTR_REG_SZ = MV_MINOR_REG_AREA_SZ, /* arbiter */
102 MV_PORT_REG_SZ = MV_MINOR_REG_AREA_SZ,
103
Brett Russ31961942005-09-30 01:36:00 -0400104 MV_MAX_Q_DEPTH = 32,
105 MV_MAX_Q_DEPTH_MASK = MV_MAX_Q_DEPTH - 1,
106
107 /* CRQB needs alignment on a 1KB boundary. Size == 1KB
108 * CRPB needs alignment on a 256B boundary. Size == 256B
Brett Russ31961942005-09-30 01:36:00 -0400109 * ePRD (SG) entries need alignment on a 16B boundary. Size == 16B
110 */
111 MV_CRQB_Q_SZ = (32 * MV_MAX_Q_DEPTH),
112 MV_CRPB_Q_SZ = (8 * MV_MAX_Q_DEPTH),
Mark Lordda2fa9b2008-01-26 18:32:45 -0500113 MV_MAX_SG_CT = 256,
Brett Russ31961942005-09-30 01:36:00 -0400114 MV_SG_TBL_SZ = (16 * MV_MAX_SG_CT),
Brett Russ31961942005-09-30 01:36:00 -0400115
Mark Lord352fab72008-04-19 14:43:42 -0400116 /* Determine hc from 0-7 port: hc = port >> MV_PORT_HC_SHIFT */
Brett Russ20f733e2005-09-01 18:26:17 -0400117 MV_PORT_HC_SHIFT = 2,
Mark Lord352fab72008-04-19 14:43:42 -0400118 MV_PORTS_PER_HC = (1 << MV_PORT_HC_SHIFT), /* 4 */
119 /* Determine hc port from 0-7 port: hardport = port & MV_PORT_MASK */
120 MV_PORT_MASK = (MV_PORTS_PER_HC - 1), /* 3 */
Brett Russ20f733e2005-09-01 18:26:17 -0400121
122 /* Host Flags */
123 MV_FLAG_DUAL_HC = (1 << 30), /* two SATA Host Controllers */
124 MV_FLAG_IRQ_COALESCE = (1 << 29), /* IRQ coalescing capability */
Saeed Bishara7bb3c522008-01-30 11:50:45 -1100125 /* SoC integrated controllers, no PCI interface */
Mark Lorde12bef52008-03-31 19:33:56 -0400126 MV_FLAG_SOC = (1 << 28),
Saeed Bishara7bb3c522008-01-30 11:50:45 -1100127
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400128 MV_COMMON_FLAGS = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400129 ATA_FLAG_MMIO | ATA_FLAG_NO_ATAPI |
130 ATA_FLAG_PIO_POLLING,
Mark Lordad3aef52008-05-14 09:21:43 -0400131
Jeff Garzik47c2b672005-11-12 21:13:17 -0500132 MV_6XXX_FLAGS = MV_FLAG_IRQ_COALESCE,
Brett Russ20f733e2005-09-01 18:26:17 -0400133
Mark Lordad3aef52008-05-14 09:21:43 -0400134 MV_GENIIE_FLAGS = MV_COMMON_FLAGS | MV_6XXX_FLAGS |
135 ATA_FLAG_PMP | ATA_FLAG_ACPI_SATA |
136 ATA_FLAG_NCQ,
137
Brett Russ31961942005-09-30 01:36:00 -0400138 CRQB_FLAG_READ = (1 << 0),
139 CRQB_TAG_SHIFT = 1,
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400140 CRQB_IOID_SHIFT = 6, /* CRQB Gen-II/IIE IO Id shift */
Mark Lorde12bef52008-03-31 19:33:56 -0400141 CRQB_PMP_SHIFT = 12, /* CRQB Gen-II/IIE PMP shift */
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400142 CRQB_HOSTQ_SHIFT = 17, /* CRQB Gen-II/IIE HostQueTag shift */
Brett Russ31961942005-09-30 01:36:00 -0400143 CRQB_CMD_ADDR_SHIFT = 8,
144 CRQB_CMD_CS = (0x2 << 11),
145 CRQB_CMD_LAST = (1 << 15),
146
147 CRPB_FLAG_STATUS_SHIFT = 8,
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400148 CRPB_IOID_SHIFT_6 = 5, /* CRPB Gen-II IO Id shift */
149 CRPB_IOID_SHIFT_7 = 7, /* CRPB Gen-IIE IO Id shift */
Brett Russ31961942005-09-30 01:36:00 -0400150
151 EPRD_FLAG_END_OF_TBL = (1 << 31),
152
Brett Russ20f733e2005-09-01 18:26:17 -0400153 /* PCI interface registers */
154
Brett Russ31961942005-09-30 01:36:00 -0400155 PCI_COMMAND_OFS = 0xc00,
Mark Lord8e7decd2008-05-02 02:07:51 -0400156 PCI_COMMAND_MRDTRIG = (1 << 7), /* PCI Master Read Trigger */
Brett Russ31961942005-09-30 01:36:00 -0400157
Brett Russ20f733e2005-09-01 18:26:17 -0400158 PCI_MAIN_CMD_STS_OFS = 0xd30,
159 STOP_PCI_MASTER = (1 << 2),
160 PCI_MASTER_EMPTY = (1 << 3),
161 GLOB_SFT_RST = (1 << 4),
162
Mark Lord8e7decd2008-05-02 02:07:51 -0400163 MV_PCI_MODE_OFS = 0xd00,
164 MV_PCI_MODE_MASK = 0x30,
165
Jeff Garzik522479f2005-11-12 22:14:02 -0500166 MV_PCI_EXP_ROM_BAR_CTL = 0xd2c,
167 MV_PCI_DISC_TIMER = 0xd04,
168 MV_PCI_MSI_TRIGGER = 0xc38,
169 MV_PCI_SERR_MASK = 0xc28,
Mark Lord8e7decd2008-05-02 02:07:51 -0400170 MV_PCI_XBAR_TMOUT_OFS = 0x1d04,
Jeff Garzik522479f2005-11-12 22:14:02 -0500171 MV_PCI_ERR_LOW_ADDRESS = 0x1d40,
172 MV_PCI_ERR_HIGH_ADDRESS = 0x1d44,
173 MV_PCI_ERR_ATTRIBUTE = 0x1d48,
174 MV_PCI_ERR_COMMAND = 0x1d50,
175
Mark Lord02a121d2007-12-01 13:07:22 -0500176 PCI_IRQ_CAUSE_OFS = 0x1d58,
177 PCI_IRQ_MASK_OFS = 0x1d5c,
Brett Russ20f733e2005-09-01 18:26:17 -0400178 PCI_UNMASK_ALL_IRQS = 0x7fffff, /* bits 22-0 */
179
Mark Lord02a121d2007-12-01 13:07:22 -0500180 PCIE_IRQ_CAUSE_OFS = 0x1900,
181 PCIE_IRQ_MASK_OFS = 0x1910,
Mark Lord646a4da2008-01-26 18:30:37 -0500182 PCIE_UNMASK_ALL_IRQS = 0x40a, /* assorted bits */
Mark Lord02a121d2007-12-01 13:07:22 -0500183
Mark Lord7368f912008-04-25 11:24:24 -0400184 /* Host Controller Main Interrupt Cause/Mask registers (1 per-chip) */
185 PCI_HC_MAIN_IRQ_CAUSE_OFS = 0x1d60,
186 PCI_HC_MAIN_IRQ_MASK_OFS = 0x1d64,
187 SOC_HC_MAIN_IRQ_CAUSE_OFS = 0x20020,
188 SOC_HC_MAIN_IRQ_MASK_OFS = 0x20024,
Mark Lord352fab72008-04-19 14:43:42 -0400189 ERR_IRQ = (1 << 0), /* shift by port # */
190 DONE_IRQ = (1 << 1), /* shift by port # */
Brett Russ20f733e2005-09-01 18:26:17 -0400191 HC0_IRQ_PEND = 0x1ff, /* bits 0-8 = HC0's ports */
192 HC_SHIFT = 9, /* bits 9-17 = HC1's ports */
193 PCI_ERR = (1 << 18),
194 TRAN_LO_DONE = (1 << 19), /* 6xxx: IRQ coalescing */
195 TRAN_HI_DONE = (1 << 20), /* 6xxx: IRQ coalescing */
Jeff Garzikfb621e22007-02-25 04:19:45 -0500196 PORTS_0_3_COAL_DONE = (1 << 8),
197 PORTS_4_7_COAL_DONE = (1 << 17),
Brett Russ20f733e2005-09-01 18:26:17 -0400198 PORTS_0_7_COAL_DONE = (1 << 21), /* 6xxx: IRQ coalescing */
199 GPIO_INT = (1 << 22),
200 SELF_INT = (1 << 23),
201 TWSI_INT = (1 << 24),
202 HC_MAIN_RSVD = (0x7f << 25), /* bits 31-25 */
Jeff Garzikfb621e22007-02-25 04:19:45 -0500203 HC_MAIN_RSVD_5 = (0x1fff << 19), /* bits 31-19 */
Mark Lorde12bef52008-03-31 19:33:56 -0400204 HC_MAIN_RSVD_SOC = (0x3fffffb << 6), /* bits 31-9, 7-6 */
Jeff Garzik8b260242005-11-12 12:32:50 -0500205 HC_MAIN_MASKED_IRQS = (TRAN_LO_DONE | TRAN_HI_DONE |
Mark Lordf9f7fe02008-04-19 14:44:42 -0400206 PORTS_0_3_COAL_DONE | PORTS_4_7_COAL_DONE |
Brett Russ20f733e2005-09-01 18:26:17 -0400207 PORTS_0_7_COAL_DONE | GPIO_INT | TWSI_INT |
208 HC_MAIN_RSVD),
Jeff Garzikfb621e22007-02-25 04:19:45 -0500209 HC_MAIN_MASKED_IRQS_5 = (PORTS_0_3_COAL_DONE | PORTS_4_7_COAL_DONE |
210 HC_MAIN_RSVD_5),
Saeed Bisharaf351b2d2008-02-01 18:08:03 -0500211 HC_MAIN_MASKED_IRQS_SOC = (PORTS_0_3_COAL_DONE | HC_MAIN_RSVD_SOC),
Brett Russ20f733e2005-09-01 18:26:17 -0400212
213 /* SATAHC registers */
214 HC_CFG_OFS = 0,
215
216 HC_IRQ_CAUSE_OFS = 0x14,
Mark Lord352fab72008-04-19 14:43:42 -0400217 DMA_IRQ = (1 << 0), /* shift by port # */
218 HC_COAL_IRQ = (1 << 4), /* IRQ coalescing */
Brett Russ20f733e2005-09-01 18:26:17 -0400219 DEV_IRQ = (1 << 8), /* shift by port # */
220
221 /* Shadow block registers */
Brett Russ31961942005-09-30 01:36:00 -0400222 SHD_BLK_OFS = 0x100,
223 SHD_CTL_AST_OFS = 0x20, /* ofs from SHD_BLK_OFS */
Brett Russ20f733e2005-09-01 18:26:17 -0400224
225 /* SATA registers */
226 SATA_STATUS_OFS = 0x300, /* ctrl, err regs follow status */
227 SATA_ACTIVE_OFS = 0x350,
Mark Lord0c589122008-01-26 18:31:16 -0500228 SATA_FIS_IRQ_CAUSE_OFS = 0x364,
Mark Lord17c5aab2008-04-16 14:56:51 -0400229
Mark Lorde12bef52008-03-31 19:33:56 -0400230 LTMODE_OFS = 0x30c,
Mark Lord17c5aab2008-04-16 14:56:51 -0400231 LTMODE_BIT8 = (1 << 8), /* unknown, but necessary */
232
Jeff Garzik47c2b672005-11-12 21:13:17 -0500233 PHY_MODE3 = 0x310,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500234 PHY_MODE4 = 0x314,
235 PHY_MODE2 = 0x330,
Mark Lorde12bef52008-03-31 19:33:56 -0400236 SATA_IFCTL_OFS = 0x344,
Mark Lord8e7decd2008-05-02 02:07:51 -0400237 SATA_TESTCTL_OFS = 0x348,
Mark Lorde12bef52008-03-31 19:33:56 -0400238 SATA_IFSTAT_OFS = 0x34c,
239 VENDOR_UNIQUE_FIS_OFS = 0x35c,
Mark Lord17c5aab2008-04-16 14:56:51 -0400240
Mark Lord8e7decd2008-05-02 02:07:51 -0400241 FISCFG_OFS = 0x360,
242 FISCFG_WAIT_DEV_ERR = (1 << 8), /* wait for host on DevErr */
243 FISCFG_SINGLE_SYNC = (1 << 16), /* SYNC on DMA activation */
Mark Lord17c5aab2008-04-16 14:56:51 -0400244
Jeff Garzikc9d39132005-11-13 17:47:51 -0500245 MV5_PHY_MODE = 0x74,
Mark Lord8e7decd2008-05-02 02:07:51 -0400246 MV5_LTMODE_OFS = 0x30,
247 MV5_PHY_CTL_OFS = 0x0C,
248 SATA_INTERFACE_CFG_OFS = 0x050,
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500249
250 MV_M2_PREAMP_MASK = 0x7e0,
Brett Russ20f733e2005-09-01 18:26:17 -0400251
252 /* Port registers */
253 EDMA_CFG_OFS = 0,
Mark Lord0c589122008-01-26 18:31:16 -0500254 EDMA_CFG_Q_DEPTH = 0x1f, /* max device queue depth */
255 EDMA_CFG_NCQ = (1 << 5), /* for R/W FPDMA queued */
256 EDMA_CFG_NCQ_GO_ON_ERR = (1 << 14), /* continue on error */
257 EDMA_CFG_RD_BRST_EXT = (1 << 11), /* read burst 512B */
258 EDMA_CFG_WR_BUFF_LEN = (1 << 13), /* write buffer 512B */
Mark Lorde12bef52008-03-31 19:33:56 -0400259 EDMA_CFG_EDMA_FBS = (1 << 16), /* EDMA FIS-Based Switching */
260 EDMA_CFG_FBS = (1 << 26), /* FIS-Based Switching */
Brett Russ20f733e2005-09-01 18:26:17 -0400261
262 EDMA_ERR_IRQ_CAUSE_OFS = 0x8,
263 EDMA_ERR_IRQ_MASK_OFS = 0xc,
Jeff Garzik6c1153e2007-07-13 15:20:15 -0400264 EDMA_ERR_D_PAR = (1 << 0), /* UDMA data parity err */
265 EDMA_ERR_PRD_PAR = (1 << 1), /* UDMA PRD parity err */
266 EDMA_ERR_DEV = (1 << 2), /* device error */
267 EDMA_ERR_DEV_DCON = (1 << 3), /* device disconnect */
268 EDMA_ERR_DEV_CON = (1 << 4), /* device connected */
269 EDMA_ERR_SERR = (1 << 5), /* SError bits [WBDST] raised */
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400270 EDMA_ERR_SELF_DIS = (1 << 7), /* Gen II/IIE self-disable */
271 EDMA_ERR_SELF_DIS_5 = (1 << 8), /* Gen I self-disable */
Jeff Garzik6c1153e2007-07-13 15:20:15 -0400272 EDMA_ERR_BIST_ASYNC = (1 << 8), /* BIST FIS or Async Notify */
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400273 EDMA_ERR_TRANS_IRQ_7 = (1 << 8), /* Gen IIE transprt layer irq */
Jeff Garzik6c1153e2007-07-13 15:20:15 -0400274 EDMA_ERR_CRQB_PAR = (1 << 9), /* CRQB parity error */
275 EDMA_ERR_CRPB_PAR = (1 << 10), /* CRPB parity error */
276 EDMA_ERR_INTRL_PAR = (1 << 11), /* internal parity error */
277 EDMA_ERR_IORDY = (1 << 12), /* IORdy timeout */
Mark Lord646a4da2008-01-26 18:30:37 -0500278
Jeff Garzik6c1153e2007-07-13 15:20:15 -0400279 EDMA_ERR_LNK_CTRL_RX = (0xf << 13), /* link ctrl rx error */
Mark Lord646a4da2008-01-26 18:30:37 -0500280 EDMA_ERR_LNK_CTRL_RX_0 = (1 << 13), /* transient: CRC err */
281 EDMA_ERR_LNK_CTRL_RX_1 = (1 << 14), /* transient: FIFO err */
282 EDMA_ERR_LNK_CTRL_RX_2 = (1 << 15), /* fatal: caught SYNC */
283 EDMA_ERR_LNK_CTRL_RX_3 = (1 << 16), /* transient: FIS rx err */
284
Jeff Garzik6c1153e2007-07-13 15:20:15 -0400285 EDMA_ERR_LNK_DATA_RX = (0xf << 17), /* link data rx error */
Mark Lord646a4da2008-01-26 18:30:37 -0500286
Jeff Garzik6c1153e2007-07-13 15:20:15 -0400287 EDMA_ERR_LNK_CTRL_TX = (0x1f << 21), /* link ctrl tx error */
Mark Lord646a4da2008-01-26 18:30:37 -0500288 EDMA_ERR_LNK_CTRL_TX_0 = (1 << 21), /* transient: CRC err */
289 EDMA_ERR_LNK_CTRL_TX_1 = (1 << 22), /* transient: FIFO err */
290 EDMA_ERR_LNK_CTRL_TX_2 = (1 << 23), /* transient: caught SYNC */
291 EDMA_ERR_LNK_CTRL_TX_3 = (1 << 24), /* transient: caught DMAT */
292 EDMA_ERR_LNK_CTRL_TX_4 = (1 << 25), /* transient: FIS collision */
293
Jeff Garzik6c1153e2007-07-13 15:20:15 -0400294 EDMA_ERR_LNK_DATA_TX = (0x1f << 26), /* link data tx error */
Mark Lord646a4da2008-01-26 18:30:37 -0500295
Jeff Garzik6c1153e2007-07-13 15:20:15 -0400296 EDMA_ERR_TRANS_PROTO = (1 << 31), /* transport protocol error */
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400297 EDMA_ERR_OVERRUN_5 = (1 << 5),
298 EDMA_ERR_UNDERRUN_5 = (1 << 6),
Mark Lord646a4da2008-01-26 18:30:37 -0500299
300 EDMA_ERR_IRQ_TRANSIENT = EDMA_ERR_LNK_CTRL_RX_0 |
301 EDMA_ERR_LNK_CTRL_RX_1 |
302 EDMA_ERR_LNK_CTRL_RX_3 |
Mark Lord85afb932008-04-19 14:54:41 -0400303 EDMA_ERR_LNK_CTRL_TX,
Mark Lord646a4da2008-01-26 18:30:37 -0500304
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400305 EDMA_EH_FREEZE = EDMA_ERR_D_PAR |
306 EDMA_ERR_PRD_PAR |
307 EDMA_ERR_DEV_DCON |
308 EDMA_ERR_DEV_CON |
309 EDMA_ERR_SERR |
310 EDMA_ERR_SELF_DIS |
Jeff Garzik6c1153e2007-07-13 15:20:15 -0400311 EDMA_ERR_CRQB_PAR |
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400312 EDMA_ERR_CRPB_PAR |
313 EDMA_ERR_INTRL_PAR |
314 EDMA_ERR_IORDY |
315 EDMA_ERR_LNK_CTRL_RX_2 |
316 EDMA_ERR_LNK_DATA_RX |
317 EDMA_ERR_LNK_DATA_TX |
318 EDMA_ERR_TRANS_PROTO,
Mark Lorde12bef52008-03-31 19:33:56 -0400319
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400320 EDMA_EH_FREEZE_5 = EDMA_ERR_D_PAR |
321 EDMA_ERR_PRD_PAR |
322 EDMA_ERR_DEV_DCON |
323 EDMA_ERR_DEV_CON |
324 EDMA_ERR_OVERRUN_5 |
325 EDMA_ERR_UNDERRUN_5 |
326 EDMA_ERR_SELF_DIS_5 |
Jeff Garzik6c1153e2007-07-13 15:20:15 -0400327 EDMA_ERR_CRQB_PAR |
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400328 EDMA_ERR_CRPB_PAR |
329 EDMA_ERR_INTRL_PAR |
330 EDMA_ERR_IORDY,
Brett Russ20f733e2005-09-01 18:26:17 -0400331
Brett Russ31961942005-09-30 01:36:00 -0400332 EDMA_REQ_Q_BASE_HI_OFS = 0x10,
333 EDMA_REQ_Q_IN_PTR_OFS = 0x14, /* also contains BASE_LO */
Brett Russ31961942005-09-30 01:36:00 -0400334
335 EDMA_REQ_Q_OUT_PTR_OFS = 0x18,
336 EDMA_REQ_Q_PTR_SHIFT = 5,
337
338 EDMA_RSP_Q_BASE_HI_OFS = 0x1c,
339 EDMA_RSP_Q_IN_PTR_OFS = 0x20,
340 EDMA_RSP_Q_OUT_PTR_OFS = 0x24, /* also contains BASE_LO */
Brett Russ31961942005-09-30 01:36:00 -0400341 EDMA_RSP_Q_PTR_SHIFT = 3,
342
Jeff Garzik0ea9e172007-07-13 17:06:45 -0400343 EDMA_CMD_OFS = 0x28, /* EDMA command register */
344 EDMA_EN = (1 << 0), /* enable EDMA */
345 EDMA_DS = (1 << 1), /* disable EDMA; self-negated */
Mark Lord8e7decd2008-05-02 02:07:51 -0400346 EDMA_RESET = (1 << 2), /* reset eng/trans/link/phy */
Brett Russ20f733e2005-09-01 18:26:17 -0400347
Mark Lord8e7decd2008-05-02 02:07:51 -0400348 EDMA_STATUS_OFS = 0x30, /* EDMA engine status */
349 EDMA_STATUS_CACHE_EMPTY = (1 << 6), /* GenIIe command cache empty */
350 EDMA_STATUS_IDLE = (1 << 7), /* GenIIe EDMA enabled/idle */
351
352 EDMA_IORDY_TMOUT_OFS = 0x34,
353 EDMA_ARB_CFG_OFS = 0x38,
354
355 EDMA_HALTCOND_OFS = 0x60, /* GenIIe halt conditions */
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500356
Mark Lord352fab72008-04-19 14:43:42 -0400357 GEN_II_NCQ_MAX_SECTORS = 256, /* max sects/io on Gen2 w/NCQ */
358
Brett Russ31961942005-09-30 01:36:00 -0400359 /* Host private flags (hp_flags) */
360 MV_HP_FLAG_MSI = (1 << 0),
Jeff Garzik47c2b672005-11-12 21:13:17 -0500361 MV_HP_ERRATA_50XXB0 = (1 << 1),
362 MV_HP_ERRATA_50XXB2 = (1 << 2),
363 MV_HP_ERRATA_60X1B2 = (1 << 3),
364 MV_HP_ERRATA_60X1C0 = (1 << 4),
Jeff Garzike4e7b892006-01-31 12:18:41 -0500365 MV_HP_ERRATA_XX42A0 = (1 << 5),
Jeff Garzik0ea9e172007-07-13 17:06:45 -0400366 MV_HP_GEN_I = (1 << 6), /* Generation I: 50xx */
367 MV_HP_GEN_II = (1 << 7), /* Generation II: 60xx */
368 MV_HP_GEN_IIE = (1 << 8), /* Generation IIE: 6042/7042 */
Mark Lord02a121d2007-12-01 13:07:22 -0500369 MV_HP_PCIE = (1 << 9), /* PCIe bus/regs: 7042 */
Mark Lord616d4a92008-05-02 02:08:32 -0400370 MV_HP_CUT_THROUGH = (1 << 10), /* can use EDMA cut-through */
Brett Russ20f733e2005-09-01 18:26:17 -0400371
Brett Russ31961942005-09-30 01:36:00 -0400372 /* Port private flags (pp_flags) */
Jeff Garzik0ea9e172007-07-13 17:06:45 -0400373 MV_PP_FLAG_EDMA_EN = (1 << 0), /* is EDMA engine enabled? */
Mark Lord72109162008-01-26 18:31:33 -0500374 MV_PP_FLAG_NCQ_EN = (1 << 1), /* is EDMA set up for NCQ? */
Mark Lord00f42ea2008-05-02 02:11:45 -0400375 MV_PP_FLAG_FBS_EN = (1 << 2), /* is EDMA set up for FBS? */
Mark Lord29d187b2008-05-02 02:15:37 -0400376 MV_PP_FLAG_DELAYED_EH = (1 << 3), /* delayed dev err handling */
Brett Russ31961942005-09-30 01:36:00 -0400377};
378
Jeff Garzikee9ccdf2007-07-12 15:51:22 -0400379#define IS_GEN_I(hpriv) ((hpriv)->hp_flags & MV_HP_GEN_I)
380#define IS_GEN_II(hpriv) ((hpriv)->hp_flags & MV_HP_GEN_II)
Jeff Garzike4e7b892006-01-31 12:18:41 -0500381#define IS_GEN_IIE(hpriv) ((hpriv)->hp_flags & MV_HP_GEN_IIE)
Mark Lord8e7decd2008-05-02 02:07:51 -0400382#define IS_PCIE(hpriv) ((hpriv)->hp_flags & MV_HP_PCIE)
Saeed Bishara7bb3c522008-01-30 11:50:45 -1100383#define HAS_PCI(host) (!((host)->ports[0]->flags & MV_FLAG_SOC))
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500384
Lennert Buytenhek15a32632008-03-27 14:51:39 -0400385#define WINDOW_CTRL(i) (0x20030 + ((i) << 4))
386#define WINDOW_BASE(i) (0x20034 + ((i) << 4))
387
Jeff Garzik095fec82005-11-12 09:50:49 -0500388enum {
Jeff Garzikbaf14aa2007-10-09 13:51:57 -0400389 /* DMA boundary 0xffff is required by the s/g splitting
390 * we need on /length/ in mv_fill-sg().
391 */
392 MV_DMA_BOUNDARY = 0xffffU,
Jeff Garzik095fec82005-11-12 09:50:49 -0500393
Jeff Garzik0ea9e172007-07-13 17:06:45 -0400394 /* mask of register bits containing lower 32 bits
395 * of EDMA request queue DMA address
396 */
Jeff Garzik095fec82005-11-12 09:50:49 -0500397 EDMA_REQ_Q_BASE_LO_MASK = 0xfffffc00U,
398
Jeff Garzik0ea9e172007-07-13 17:06:45 -0400399 /* ditto, for response queue */
Jeff Garzik095fec82005-11-12 09:50:49 -0500400 EDMA_RSP_Q_BASE_LO_MASK = 0xffffff00U,
401};
402
Jeff Garzik522479f2005-11-12 22:14:02 -0500403enum chip_type {
404 chip_504x,
405 chip_508x,
406 chip_5080,
407 chip_604x,
408 chip_608x,
Jeff Garzike4e7b892006-01-31 12:18:41 -0500409 chip_6042,
410 chip_7042,
Saeed Bisharaf351b2d2008-02-01 18:08:03 -0500411 chip_soc,
Jeff Garzik522479f2005-11-12 22:14:02 -0500412};
413
Brett Russ31961942005-09-30 01:36:00 -0400414/* Command ReQuest Block: 32B */
415struct mv_crqb {
Mark Lorde1469872006-05-22 19:02:03 -0400416 __le32 sg_addr;
417 __le32 sg_addr_hi;
418 __le16 ctrl_flags;
419 __le16 ata_cmd[11];
Brett Russ31961942005-09-30 01:36:00 -0400420};
421
Jeff Garzike4e7b892006-01-31 12:18:41 -0500422struct mv_crqb_iie {
Mark Lorde1469872006-05-22 19:02:03 -0400423 __le32 addr;
424 __le32 addr_hi;
425 __le32 flags;
426 __le32 len;
427 __le32 ata_cmd[4];
Jeff Garzike4e7b892006-01-31 12:18:41 -0500428};
429
Brett Russ31961942005-09-30 01:36:00 -0400430/* Command ResPonse Block: 8B */
431struct mv_crpb {
Mark Lorde1469872006-05-22 19:02:03 -0400432 __le16 id;
433 __le16 flags;
434 __le32 tmstmp;
Brett Russ31961942005-09-30 01:36:00 -0400435};
436
437/* EDMA Physical Region Descriptor (ePRD); A.K.A. SG */
438struct mv_sg {
Mark Lorde1469872006-05-22 19:02:03 -0400439 __le32 addr;
440 __le32 flags_size;
441 __le32 addr_hi;
442 __le32 reserved;
Brett Russ20f733e2005-09-01 18:26:17 -0400443};
444
445struct mv_port_priv {
Brett Russ31961942005-09-30 01:36:00 -0400446 struct mv_crqb *crqb;
447 dma_addr_t crqb_dma;
448 struct mv_crpb *crpb;
449 dma_addr_t crpb_dma;
Mark Lordeb73d552008-01-29 13:24:00 -0500450 struct mv_sg *sg_tbl[MV_MAX_Q_DEPTH];
451 dma_addr_t sg_tbl_dma[MV_MAX_Q_DEPTH];
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400452
453 unsigned int req_idx;
454 unsigned int resp_idx;
455
Brett Russ31961942005-09-30 01:36:00 -0400456 u32 pp_flags;
Mark Lord29d187b2008-05-02 02:15:37 -0400457 unsigned int delayed_eh_pmp_map;
Brett Russ20f733e2005-09-01 18:26:17 -0400458};
459
Jeff Garzikbca1c4e2005-11-12 12:48:15 -0500460struct mv_port_signal {
461 u32 amps;
462 u32 pre;
463};
464
Mark Lord02a121d2007-12-01 13:07:22 -0500465struct mv_host_priv {
466 u32 hp_flags;
467 struct mv_port_signal signal[8];
468 const struct mv_hw_ops *ops;
Saeed Bisharaf351b2d2008-02-01 18:08:03 -0500469 int n_ports;
470 void __iomem *base;
Mark Lord7368f912008-04-25 11:24:24 -0400471 void __iomem *main_irq_cause_addr;
472 void __iomem *main_irq_mask_addr;
Mark Lord02a121d2007-12-01 13:07:22 -0500473 u32 irq_cause_ofs;
474 u32 irq_mask_ofs;
475 u32 unmask_all_irqs;
Mark Lordda2fa9b2008-01-26 18:32:45 -0500476 /*
477 * These consistent DMA memory pools give us guaranteed
478 * alignment for hardware-accessed data structures,
479 * and less memory waste in accomplishing the alignment.
480 */
481 struct dma_pool *crqb_pool;
482 struct dma_pool *crpb_pool;
483 struct dma_pool *sg_tbl_pool;
Mark Lord02a121d2007-12-01 13:07:22 -0500484};
485
Jeff Garzik47c2b672005-11-12 21:13:17 -0500486struct mv_hw_ops {
Jeff Garzik2a47ce02005-11-12 23:05:14 -0500487 void (*phy_errata)(struct mv_host_priv *hpriv, void __iomem *mmio,
488 unsigned int port);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500489 void (*enable_leds)(struct mv_host_priv *hpriv, void __iomem *mmio);
490 void (*read_preamp)(struct mv_host_priv *hpriv, int idx,
491 void __iomem *mmio);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500492 int (*reset_hc)(struct mv_host_priv *hpriv, void __iomem *mmio,
493 unsigned int n_hc);
Jeff Garzik522479f2005-11-12 22:14:02 -0500494 void (*reset_flash)(struct mv_host_priv *hpriv, void __iomem *mmio);
Saeed Bishara7bb3c522008-01-30 11:50:45 -1100495 void (*reset_bus)(struct ata_host *host, void __iomem *mmio);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500496};
497
Tejun Heoda3dbb12007-07-16 14:29:40 +0900498static int mv_scr_read(struct ata_port *ap, unsigned int sc_reg_in, u32 *val);
499static int mv_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val);
500static int mv5_scr_read(struct ata_port *ap, unsigned int sc_reg_in, u32 *val);
501static int mv5_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val);
Brett Russ31961942005-09-30 01:36:00 -0400502static int mv_port_start(struct ata_port *ap);
503static void mv_port_stop(struct ata_port *ap);
Mark Lord3e4a1392008-05-02 02:10:02 -0400504static int mv_qc_defer(struct ata_queued_cmd *qc);
Brett Russ31961942005-09-30 01:36:00 -0400505static void mv_qc_prep(struct ata_queued_cmd *qc);
Jeff Garzike4e7b892006-01-31 12:18:41 -0500506static void mv_qc_prep_iie(struct ata_queued_cmd *qc);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900507static unsigned int mv_qc_issue(struct ata_queued_cmd *qc);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900508static int mv_hardreset(struct ata_link *link, unsigned int *class,
509 unsigned long deadline);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400510static void mv_eh_freeze(struct ata_port *ap);
511static void mv_eh_thaw(struct ata_port *ap);
Mark Lordf2738272008-01-26 18:32:29 -0500512static void mv6_dev_config(struct ata_device *dev);
Brett Russ20f733e2005-09-01 18:26:17 -0400513
Jeff Garzik2a47ce02005-11-12 23:05:14 -0500514static void mv5_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
515 unsigned int port);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500516static void mv5_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio);
517static void mv5_read_preamp(struct mv_host_priv *hpriv, int idx,
518 void __iomem *mmio);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500519static int mv5_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
520 unsigned int n_hc);
Jeff Garzik522479f2005-11-12 22:14:02 -0500521static void mv5_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio);
Saeed Bishara7bb3c522008-01-30 11:50:45 -1100522static void mv5_reset_bus(struct ata_host *host, void __iomem *mmio);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500523
Jeff Garzik2a47ce02005-11-12 23:05:14 -0500524static void mv6_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
525 unsigned int port);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500526static void mv6_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio);
527static void mv6_read_preamp(struct mv_host_priv *hpriv, int idx,
528 void __iomem *mmio);
Jeff Garzikc9d39132005-11-13 17:47:51 -0500529static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
530 unsigned int n_hc);
Jeff Garzik522479f2005-11-12 22:14:02 -0500531static void mv6_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio);
Saeed Bisharaf351b2d2008-02-01 18:08:03 -0500532static void mv_soc_enable_leds(struct mv_host_priv *hpriv,
533 void __iomem *mmio);
534static void mv_soc_read_preamp(struct mv_host_priv *hpriv, int idx,
535 void __iomem *mmio);
536static int mv_soc_reset_hc(struct mv_host_priv *hpriv,
537 void __iomem *mmio, unsigned int n_hc);
538static void mv_soc_reset_flash(struct mv_host_priv *hpriv,
539 void __iomem *mmio);
540static void mv_soc_reset_bus(struct ata_host *host, void __iomem *mmio);
Saeed Bishara7bb3c522008-01-30 11:50:45 -1100541static void mv_reset_pci_bus(struct ata_host *host, void __iomem *mmio);
Mark Lorde12bef52008-03-31 19:33:56 -0400542static void mv_reset_channel(struct mv_host_priv *hpriv, void __iomem *mmio,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500543 unsigned int port_no);
Mark Lorde12bef52008-03-31 19:33:56 -0400544static int mv_stop_edma(struct ata_port *ap);
Mark Lordb5624682008-03-31 19:34:40 -0400545static int mv_stop_edma_engine(void __iomem *port_mmio);
Mark Lorde12bef52008-03-31 19:33:56 -0400546static void mv_edma_cfg(struct ata_port *ap, int want_ncq);
Jeff Garzik47c2b672005-11-12 21:13:17 -0500547
Mark Lorde49856d2008-04-16 14:59:07 -0400548static void mv_pmp_select(struct ata_port *ap, int pmp);
549static int mv_pmp_hardreset(struct ata_link *link, unsigned int *class,
550 unsigned long deadline);
551static int mv_softreset(struct ata_link *link, unsigned int *class,
552 unsigned long deadline);
Mark Lord29d187b2008-05-02 02:15:37 -0400553static void mv_pmp_error_handler(struct ata_port *ap);
Mark Lord4c299ca2008-05-02 02:16:20 -0400554static void mv_process_crpb_entries(struct ata_port *ap,
555 struct mv_port_priv *pp);
Brett Russ20f733e2005-09-01 18:26:17 -0400556
Mark Lordeb73d552008-01-29 13:24:00 -0500557/* .sg_tablesize is (MV_MAX_SG_CT / 2) in the structures below
558 * because we have to allow room for worst case splitting of
559 * PRDs for 64K boundaries in mv_fill_sg().
560 */
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400561static struct scsi_host_template mv5_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900562 ATA_BASE_SHT(DRV_NAME),
Jeff Garzikbaf14aa2007-10-09 13:51:57 -0400563 .sg_tablesize = MV_MAX_SG_CT / 2,
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400564 .dma_boundary = MV_DMA_BOUNDARY,
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400565};
566
567static struct scsi_host_template mv6_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900568 ATA_NCQ_SHT(DRV_NAME),
Mark Lord138bfdd2008-01-26 18:33:18 -0500569 .can_queue = MV_MAX_Q_DEPTH - 1,
Jeff Garzikbaf14aa2007-10-09 13:51:57 -0400570 .sg_tablesize = MV_MAX_SG_CT / 2,
Brett Russ20f733e2005-09-01 18:26:17 -0400571 .dma_boundary = MV_DMA_BOUNDARY,
Brett Russ20f733e2005-09-01 18:26:17 -0400572};
573
Tejun Heo029cfd62008-03-25 12:22:49 +0900574static struct ata_port_operations mv5_ops = {
575 .inherits = &ata_sff_port_ops,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500576
Mark Lord3e4a1392008-05-02 02:10:02 -0400577 .qc_defer = mv_qc_defer,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500578 .qc_prep = mv_qc_prep,
579 .qc_issue = mv_qc_issue,
580
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400581 .freeze = mv_eh_freeze,
582 .thaw = mv_eh_thaw,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900583 .hardreset = mv_hardreset,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900584 .error_handler = ata_std_error_handler, /* avoid SFF EH */
Tejun Heo029cfd62008-03-25 12:22:49 +0900585 .post_internal_cmd = ATA_OP_NULL,
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400586
Jeff Garzikc9d39132005-11-13 17:47:51 -0500587 .scr_read = mv5_scr_read,
588 .scr_write = mv5_scr_write,
589
590 .port_start = mv_port_start,
591 .port_stop = mv_port_stop,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500592};
593
Tejun Heo029cfd62008-03-25 12:22:49 +0900594static struct ata_port_operations mv6_ops = {
595 .inherits = &mv5_ops,
Mark Lordf2738272008-01-26 18:32:29 -0500596 .dev_config = mv6_dev_config,
Brett Russ20f733e2005-09-01 18:26:17 -0400597 .scr_read = mv_scr_read,
598 .scr_write = mv_scr_write,
599
Mark Lorde49856d2008-04-16 14:59:07 -0400600 .pmp_hardreset = mv_pmp_hardreset,
601 .pmp_softreset = mv_softreset,
602 .softreset = mv_softreset,
Mark Lord29d187b2008-05-02 02:15:37 -0400603 .error_handler = mv_pmp_error_handler,
Brett Russ20f733e2005-09-01 18:26:17 -0400604};
605
Tejun Heo029cfd62008-03-25 12:22:49 +0900606static struct ata_port_operations mv_iie_ops = {
607 .inherits = &mv6_ops,
608 .dev_config = ATA_OP_NULL,
Jeff Garzike4e7b892006-01-31 12:18:41 -0500609 .qc_prep = mv_qc_prep_iie,
Jeff Garzike4e7b892006-01-31 12:18:41 -0500610};
611
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100612static const struct ata_port_info mv_port_info[] = {
Brett Russ20f733e2005-09-01 18:26:17 -0400613 { /* chip_504x */
Jeff Garzikcca39742006-08-24 03:19:22 -0400614 .flags = MV_COMMON_FLAGS,
Brett Russ31961942005-09-30 01:36:00 -0400615 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400616 .udma_mask = ATA_UDMA6,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500617 .port_ops = &mv5_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400618 },
619 { /* chip_508x */
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400620 .flags = MV_COMMON_FLAGS | MV_FLAG_DUAL_HC,
Brett Russ31961942005-09-30 01:36:00 -0400621 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400622 .udma_mask = ATA_UDMA6,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500623 .port_ops = &mv5_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400624 },
Jeff Garzik47c2b672005-11-12 21:13:17 -0500625 { /* chip_5080 */
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400626 .flags = MV_COMMON_FLAGS | MV_FLAG_DUAL_HC,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500627 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400628 .udma_mask = ATA_UDMA6,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500629 .port_ops = &mv5_ops,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500630 },
Brett Russ20f733e2005-09-01 18:26:17 -0400631 { /* chip_604x */
Mark Lord138bfdd2008-01-26 18:33:18 -0500632 .flags = MV_COMMON_FLAGS | MV_6XXX_FLAGS |
Mark Lorde49856d2008-04-16 14:59:07 -0400633 ATA_FLAG_PMP | ATA_FLAG_ACPI_SATA |
Mark Lord138bfdd2008-01-26 18:33:18 -0500634 ATA_FLAG_NCQ,
Brett Russ31961942005-09-30 01:36:00 -0400635 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400636 .udma_mask = ATA_UDMA6,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500637 .port_ops = &mv6_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400638 },
639 { /* chip_608x */
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400640 .flags = MV_COMMON_FLAGS | MV_6XXX_FLAGS |
Mark Lorde49856d2008-04-16 14:59:07 -0400641 ATA_FLAG_PMP | ATA_FLAG_ACPI_SATA |
Mark Lord138bfdd2008-01-26 18:33:18 -0500642 ATA_FLAG_NCQ | MV_FLAG_DUAL_HC,
Brett Russ31961942005-09-30 01:36:00 -0400643 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400644 .udma_mask = ATA_UDMA6,
Jeff Garzikc9d39132005-11-13 17:47:51 -0500645 .port_ops = &mv6_ops,
Brett Russ20f733e2005-09-01 18:26:17 -0400646 },
Jeff Garzike4e7b892006-01-31 12:18:41 -0500647 { /* chip_6042 */
Mark Lordad3aef52008-05-14 09:21:43 -0400648 .flags = MV_GENIIE_FLAGS,
Jeff Garzike4e7b892006-01-31 12:18:41 -0500649 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400650 .udma_mask = ATA_UDMA6,
Jeff Garzike4e7b892006-01-31 12:18:41 -0500651 .port_ops = &mv_iie_ops,
652 },
653 { /* chip_7042 */
Mark Lordad3aef52008-05-14 09:21:43 -0400654 .flags = MV_GENIIE_FLAGS,
Jeff Garzike4e7b892006-01-31 12:18:41 -0500655 .pio_mask = 0x1f, /* pio0-4 */
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400656 .udma_mask = ATA_UDMA6,
Jeff Garzike4e7b892006-01-31 12:18:41 -0500657 .port_ops = &mv_iie_ops,
658 },
Saeed Bisharaf351b2d2008-02-01 18:08:03 -0500659 { /* chip_soc */
Mark Lordad3aef52008-05-14 09:21:43 -0400660 .flags = MV_GENIIE_FLAGS | MV_FLAG_SOC,
Mark Lord17c5aab2008-04-16 14:56:51 -0400661 .pio_mask = 0x1f, /* pio0-4 */
662 .udma_mask = ATA_UDMA6,
663 .port_ops = &mv_iie_ops,
Saeed Bisharaf351b2d2008-02-01 18:08:03 -0500664 },
Brett Russ20f733e2005-09-01 18:26:17 -0400665};
666
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500667static const struct pci_device_id mv_pci_tbl[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400668 { PCI_VDEVICE(MARVELL, 0x5040), chip_504x },
669 { PCI_VDEVICE(MARVELL, 0x5041), chip_504x },
670 { PCI_VDEVICE(MARVELL, 0x5080), chip_5080 },
671 { PCI_VDEVICE(MARVELL, 0x5081), chip_508x },
Alan Coxcfbf7232007-07-09 14:38:41 +0100672 /* RocketRAID 1740/174x have different identifiers */
673 { PCI_VDEVICE(TTI, 0x1740), chip_508x },
674 { PCI_VDEVICE(TTI, 0x1742), chip_508x },
Brett Russ20f733e2005-09-01 18:26:17 -0400675
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400676 { PCI_VDEVICE(MARVELL, 0x6040), chip_604x },
677 { PCI_VDEVICE(MARVELL, 0x6041), chip_604x },
678 { PCI_VDEVICE(MARVELL, 0x6042), chip_6042 },
679 { PCI_VDEVICE(MARVELL, 0x6080), chip_608x },
680 { PCI_VDEVICE(MARVELL, 0x6081), chip_608x },
Jeff Garzik29179532005-11-11 08:08:03 -0500681
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400682 { PCI_VDEVICE(ADAPTEC2, 0x0241), chip_604x },
683
Florian Attenbergerd9f9c6b2007-07-02 17:09:29 +0200684 /* Adaptec 1430SA */
685 { PCI_VDEVICE(ADAPTEC2, 0x0243), chip_7042 },
686
Mark Lord02a121d2007-12-01 13:07:22 -0500687 /* Marvell 7042 support */
Morrison, Tom6a3d5862007-03-06 02:38:10 -0800688 { PCI_VDEVICE(MARVELL, 0x7042), chip_7042 },
689
Mark Lord02a121d2007-12-01 13:07:22 -0500690 /* Highpoint RocketRAID PCIe series */
691 { PCI_VDEVICE(TTI, 0x2300), chip_7042 },
692 { PCI_VDEVICE(TTI, 0x2310), chip_7042 },
693
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400694 { } /* terminate list */
Brett Russ20f733e2005-09-01 18:26:17 -0400695};
696
Jeff Garzik47c2b672005-11-12 21:13:17 -0500697static const struct mv_hw_ops mv5xxx_ops = {
698 .phy_errata = mv5_phy_errata,
699 .enable_leds = mv5_enable_leds,
700 .read_preamp = mv5_read_preamp,
701 .reset_hc = mv5_reset_hc,
Jeff Garzik522479f2005-11-12 22:14:02 -0500702 .reset_flash = mv5_reset_flash,
703 .reset_bus = mv5_reset_bus,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500704};
705
706static const struct mv_hw_ops mv6xxx_ops = {
707 .phy_errata = mv6_phy_errata,
708 .enable_leds = mv6_enable_leds,
709 .read_preamp = mv6_read_preamp,
710 .reset_hc = mv6_reset_hc,
Jeff Garzik522479f2005-11-12 22:14:02 -0500711 .reset_flash = mv6_reset_flash,
712 .reset_bus = mv_reset_pci_bus,
Jeff Garzik47c2b672005-11-12 21:13:17 -0500713};
714
Saeed Bisharaf351b2d2008-02-01 18:08:03 -0500715static const struct mv_hw_ops mv_soc_ops = {
716 .phy_errata = mv6_phy_errata,
717 .enable_leds = mv_soc_enable_leds,
718 .read_preamp = mv_soc_read_preamp,
719 .reset_hc = mv_soc_reset_hc,
720 .reset_flash = mv_soc_reset_flash,
721 .reset_bus = mv_soc_reset_bus,
722};
723
Brett Russ20f733e2005-09-01 18:26:17 -0400724/*
725 * Functions
726 */
727
728static inline void writelfl(unsigned long data, void __iomem *addr)
729{
730 writel(data, addr);
731 (void) readl(addr); /* flush to avoid PCI posted write */
732}
733
Jeff Garzikc9d39132005-11-13 17:47:51 -0500734static inline unsigned int mv_hc_from_port(unsigned int port)
735{
736 return port >> MV_PORT_HC_SHIFT;
737}
738
739static inline unsigned int mv_hardport_from_port(unsigned int port)
740{
741 return port & MV_PORT_MASK;
742}
743
Mark Lord1cfd19a2008-04-19 15:05:50 -0400744/*
745 * Consolidate some rather tricky bit shift calculations.
746 * This is hot-path stuff, so not a function.
747 * Simple code, with two return values, so macro rather than inline.
748 *
749 * port is the sole input, in range 0..7.
Mark Lord7368f912008-04-25 11:24:24 -0400750 * shift is one output, for use with main_irq_cause / main_irq_mask registers.
751 * hardport is the other output, in range 0..3.
Mark Lord1cfd19a2008-04-19 15:05:50 -0400752 *
753 * Note that port and hardport may be the same variable in some cases.
754 */
755#define MV_PORT_TO_SHIFT_AND_HARDPORT(port, shift, hardport) \
756{ \
757 shift = mv_hc_from_port(port) * HC_SHIFT; \
758 hardport = mv_hardport_from_port(port); \
759 shift += hardport * 2; \
760}
761
Mark Lord352fab72008-04-19 14:43:42 -0400762static inline void __iomem *mv_hc_base(void __iomem *base, unsigned int hc)
763{
764 return (base + MV_SATAHC0_REG_BASE + (hc * MV_SATAHC_REG_SZ));
765}
766
Jeff Garzikc9d39132005-11-13 17:47:51 -0500767static inline void __iomem *mv_hc_base_from_port(void __iomem *base,
768 unsigned int port)
769{
770 return mv_hc_base(base, mv_hc_from_port(port));
771}
772
Brett Russ20f733e2005-09-01 18:26:17 -0400773static inline void __iomem *mv_port_base(void __iomem *base, unsigned int port)
774{
Jeff Garzikc9d39132005-11-13 17:47:51 -0500775 return mv_hc_base_from_port(base, port) +
Jeff Garzik8b260242005-11-12 12:32:50 -0500776 MV_SATAHC_ARBTR_REG_SZ +
Jeff Garzikc9d39132005-11-13 17:47:51 -0500777 (mv_hardport_from_port(port) * MV_PORT_REG_SZ);
Brett Russ20f733e2005-09-01 18:26:17 -0400778}
779
Mark Lorde12bef52008-03-31 19:33:56 -0400780static void __iomem *mv5_phy_base(void __iomem *mmio, unsigned int port)
781{
782 void __iomem *hc_mmio = mv_hc_base_from_port(mmio, port);
783 unsigned long ofs = (mv_hardport_from_port(port) + 1) * 0x100UL;
784
785 return hc_mmio + ofs;
786}
787
Saeed Bisharaf351b2d2008-02-01 18:08:03 -0500788static inline void __iomem *mv_host_base(struct ata_host *host)
789{
790 struct mv_host_priv *hpriv = host->private_data;
791 return hpriv->base;
792}
793
Brett Russ20f733e2005-09-01 18:26:17 -0400794static inline void __iomem *mv_ap_base(struct ata_port *ap)
795{
Saeed Bisharaf351b2d2008-02-01 18:08:03 -0500796 return mv_port_base(mv_host_base(ap->host), ap->port_no);
Brett Russ20f733e2005-09-01 18:26:17 -0400797}
798
Jeff Garzikcca39742006-08-24 03:19:22 -0400799static inline int mv_get_hc_count(unsigned long port_flags)
Brett Russ20f733e2005-09-01 18:26:17 -0400800{
Jeff Garzikcca39742006-08-24 03:19:22 -0400801 return ((port_flags & MV_FLAG_DUAL_HC) ? 2 : 1);
Brett Russ20f733e2005-09-01 18:26:17 -0400802}
803
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400804static void mv_set_edma_ptrs(void __iomem *port_mmio,
805 struct mv_host_priv *hpriv,
806 struct mv_port_priv *pp)
807{
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400808 u32 index;
809
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400810 /*
811 * initialize request queue
812 */
Mark Lordfcfb1f72008-04-19 15:06:40 -0400813 pp->req_idx &= MV_MAX_Q_DEPTH_MASK; /* paranoia */
814 index = pp->req_idx << EDMA_REQ_Q_PTR_SHIFT;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400815
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400816 WARN_ON(pp->crqb_dma & 0x3ff);
817 writel((pp->crqb_dma >> 16) >> 16, port_mmio + EDMA_REQ_Q_BASE_HI_OFS);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400818 writelfl((pp->crqb_dma & EDMA_REQ_Q_BASE_LO_MASK) | index,
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400819 port_mmio + EDMA_REQ_Q_IN_PTR_OFS);
820
821 if (hpriv->hp_flags & MV_HP_ERRATA_XX42A0)
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400822 writelfl((pp->crqb_dma & 0xffffffff) | index,
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400823 port_mmio + EDMA_REQ_Q_OUT_PTR_OFS);
824 else
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400825 writelfl(index, port_mmio + EDMA_REQ_Q_OUT_PTR_OFS);
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400826
827 /*
828 * initialize response queue
829 */
Mark Lordfcfb1f72008-04-19 15:06:40 -0400830 pp->resp_idx &= MV_MAX_Q_DEPTH_MASK; /* paranoia */
831 index = pp->resp_idx << EDMA_RSP_Q_PTR_SHIFT;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400832
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400833 WARN_ON(pp->crpb_dma & 0xff);
834 writel((pp->crpb_dma >> 16) >> 16, port_mmio + EDMA_RSP_Q_BASE_HI_OFS);
835
836 if (hpriv->hp_flags & MV_HP_ERRATA_XX42A0)
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400837 writelfl((pp->crpb_dma & 0xffffffff) | index,
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400838 port_mmio + EDMA_RSP_Q_IN_PTR_OFS);
839 else
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400840 writelfl(index, port_mmio + EDMA_RSP_Q_IN_PTR_OFS);
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400841
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400842 writelfl((pp->crpb_dma & EDMA_RSP_Q_BASE_LO_MASK) | index,
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400843 port_mmio + EDMA_RSP_Q_OUT_PTR_OFS);
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400844}
845
Brett Russ05b308e2005-10-05 17:08:53 -0400846/**
847 * mv_start_dma - Enable eDMA engine
848 * @base: port base address
849 * @pp: port private data
850 *
Tejun Heobeec7db2006-02-11 19:11:13 +0900851 * Verify the local cache of the eDMA state is accurate with a
852 * WARN_ON.
Brett Russ05b308e2005-10-05 17:08:53 -0400853 *
854 * LOCKING:
855 * Inherited from caller.
856 */
Mark Lord0c589122008-01-26 18:31:16 -0500857static void mv_start_dma(struct ata_port *ap, void __iomem *port_mmio,
Mark Lord72109162008-01-26 18:31:33 -0500858 struct mv_port_priv *pp, u8 protocol)
Brett Russ31961942005-09-30 01:36:00 -0400859{
Mark Lord72109162008-01-26 18:31:33 -0500860 int want_ncq = (protocol == ATA_PROT_NCQ);
861
862 if (pp->pp_flags & MV_PP_FLAG_EDMA_EN) {
863 int using_ncq = ((pp->pp_flags & MV_PP_FLAG_NCQ_EN) != 0);
864 if (want_ncq != using_ncq)
Mark Lordb5624682008-03-31 19:34:40 -0400865 mv_stop_edma(ap);
Mark Lord72109162008-01-26 18:31:33 -0500866 }
Jeff Garzikc5d3e452007-07-11 18:30:50 -0400867 if (!(pp->pp_flags & MV_PP_FLAG_EDMA_EN)) {
Mark Lord0c589122008-01-26 18:31:16 -0500868 struct mv_host_priv *hpriv = ap->host->private_data;
Mark Lord352fab72008-04-19 14:43:42 -0400869 int hardport = mv_hardport_from_port(ap->port_no);
Mark Lord0c589122008-01-26 18:31:16 -0500870 void __iomem *hc_mmio = mv_hc_base_from_port(
Mark Lord352fab72008-04-19 14:43:42 -0400871 mv_host_base(ap->host), hardport);
Mark Lord0c589122008-01-26 18:31:16 -0500872 u32 hc_irq_cause, ipending;
873
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400874 /* clear EDMA event indicators, if any */
Mark Lordf630d562008-01-26 18:31:00 -0500875 writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400876
Mark Lord0c589122008-01-26 18:31:16 -0500877 /* clear EDMA interrupt indicator, if any */
878 hc_irq_cause = readl(hc_mmio + HC_IRQ_CAUSE_OFS);
Mark Lord352fab72008-04-19 14:43:42 -0400879 ipending = (DEV_IRQ | DMA_IRQ) << hardport;
Mark Lord0c589122008-01-26 18:31:16 -0500880 if (hc_irq_cause & ipending) {
881 writelfl(hc_irq_cause & ~ipending,
882 hc_mmio + HC_IRQ_CAUSE_OFS);
883 }
884
Mark Lorde12bef52008-03-31 19:33:56 -0400885 mv_edma_cfg(ap, want_ncq);
Mark Lord0c589122008-01-26 18:31:16 -0500886
887 /* clear FIS IRQ Cause */
Mark Lorde4006072008-05-14 09:19:30 -0400888 if (IS_GEN_IIE(hpriv))
889 writelfl(0, port_mmio + SATA_FIS_IRQ_CAUSE_OFS);
Mark Lord0c589122008-01-26 18:31:16 -0500890
Mark Lordf630d562008-01-26 18:31:00 -0500891 mv_set_edma_ptrs(port_mmio, hpriv, pp);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -0400892
Mark Lordf630d562008-01-26 18:31:00 -0500893 writelfl(EDMA_EN, port_mmio + EDMA_CMD_OFS);
Brett Russafb0edd2005-10-05 17:08:42 -0400894 pp->pp_flags |= MV_PP_FLAG_EDMA_EN;
895 }
Brett Russ31961942005-09-30 01:36:00 -0400896}
897
Mark Lord9b2c4e02008-05-02 02:09:14 -0400898static void mv_wait_for_edma_empty_idle(struct ata_port *ap)
899{
900 void __iomem *port_mmio = mv_ap_base(ap);
901 const u32 empty_idle = (EDMA_STATUS_CACHE_EMPTY | EDMA_STATUS_IDLE);
902 const int per_loop = 5, timeout = (15 * 1000 / per_loop);
903 int i;
904
905 /*
906 * Wait for the EDMA engine to finish transactions in progress.
Mark Lordc46938c2008-05-02 14:02:28 -0400907 * No idea what a good "timeout" value might be, but measurements
908 * indicate that it often requires hundreds of microseconds
909 * with two drives in-use. So we use the 15msec value above
910 * as a rough guess at what even more drives might require.
Mark Lord9b2c4e02008-05-02 02:09:14 -0400911 */
912 for (i = 0; i < timeout; ++i) {
913 u32 edma_stat = readl(port_mmio + EDMA_STATUS_OFS);
914 if ((edma_stat & empty_idle) == empty_idle)
915 break;
916 udelay(per_loop);
917 }
918 /* ata_port_printk(ap, KERN_INFO, "%s: %u+ usecs\n", __func__, i); */
919}
920
Brett Russ05b308e2005-10-05 17:08:53 -0400921/**
Mark Lorde12bef52008-03-31 19:33:56 -0400922 * mv_stop_edma_engine - Disable eDMA engine
Mark Lordb5624682008-03-31 19:34:40 -0400923 * @port_mmio: io base address
Brett Russ05b308e2005-10-05 17:08:53 -0400924 *
925 * LOCKING:
926 * Inherited from caller.
927 */
Mark Lordb5624682008-03-31 19:34:40 -0400928static int mv_stop_edma_engine(void __iomem *port_mmio)
Brett Russ31961942005-09-30 01:36:00 -0400929{
Mark Lordb5624682008-03-31 19:34:40 -0400930 int i;
Brett Russ31961942005-09-30 01:36:00 -0400931
Mark Lordb5624682008-03-31 19:34:40 -0400932 /* Disable eDMA. The disable bit auto clears. */
933 writelfl(EDMA_DS, port_mmio + EDMA_CMD_OFS);
Jeff Garzik8b260242005-11-12 12:32:50 -0500934
Mark Lordb5624682008-03-31 19:34:40 -0400935 /* Wait for the chip to confirm eDMA is off. */
936 for (i = 10000; i > 0; i--) {
937 u32 reg = readl(port_mmio + EDMA_CMD_OFS);
Jeff Garzik4537deb2007-07-12 14:30:19 -0400938 if (!(reg & EDMA_EN))
Mark Lordb5624682008-03-31 19:34:40 -0400939 return 0;
940 udelay(10);
Brett Russ31961942005-09-30 01:36:00 -0400941 }
Mark Lordb5624682008-03-31 19:34:40 -0400942 return -EIO;
Brett Russ31961942005-09-30 01:36:00 -0400943}
944
Mark Lorde12bef52008-03-31 19:33:56 -0400945static int mv_stop_edma(struct ata_port *ap)
Jeff Garzik0ea9e172007-07-13 17:06:45 -0400946{
Mark Lordb5624682008-03-31 19:34:40 -0400947 void __iomem *port_mmio = mv_ap_base(ap);
948 struct mv_port_priv *pp = ap->private_data;
Jeff Garzik0ea9e172007-07-13 17:06:45 -0400949
Mark Lordb5624682008-03-31 19:34:40 -0400950 if (!(pp->pp_flags & MV_PP_FLAG_EDMA_EN))
951 return 0;
952 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
Mark Lord9b2c4e02008-05-02 02:09:14 -0400953 mv_wait_for_edma_empty_idle(ap);
Mark Lordb5624682008-03-31 19:34:40 -0400954 if (mv_stop_edma_engine(port_mmio)) {
955 ata_port_printk(ap, KERN_ERR, "Unable to stop eDMA\n");
956 return -EIO;
957 }
958 return 0;
Jeff Garzik0ea9e172007-07-13 17:06:45 -0400959}
960
Jeff Garzik8a70f8d2005-10-05 17:19:47 -0400961#ifdef ATA_DEBUG
Brett Russ31961942005-09-30 01:36:00 -0400962static void mv_dump_mem(void __iomem *start, unsigned bytes)
963{
Brett Russ31961942005-09-30 01:36:00 -0400964 int b, w;
965 for (b = 0; b < bytes; ) {
966 DPRINTK("%p: ", start + b);
967 for (w = 0; b < bytes && w < 4; w++) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400968 printk("%08x ", readl(start + b));
Brett Russ31961942005-09-30 01:36:00 -0400969 b += sizeof(u32);
970 }
971 printk("\n");
972 }
Brett Russ31961942005-09-30 01:36:00 -0400973}
Jeff Garzik8a70f8d2005-10-05 17:19:47 -0400974#endif
975
Brett Russ31961942005-09-30 01:36:00 -0400976static void mv_dump_pci_cfg(struct pci_dev *pdev, unsigned bytes)
977{
978#ifdef ATA_DEBUG
979 int b, w;
980 u32 dw;
981 for (b = 0; b < bytes; ) {
982 DPRINTK("%02x: ", b);
983 for (w = 0; b < bytes && w < 4; w++) {
Jeff Garzik2dcb4072007-10-19 06:42:56 -0400984 (void) pci_read_config_dword(pdev, b, &dw);
985 printk("%08x ", dw);
Brett Russ31961942005-09-30 01:36:00 -0400986 b += sizeof(u32);
987 }
988 printk("\n");
989 }
990#endif
991}
992static void mv_dump_all_regs(void __iomem *mmio_base, int port,
993 struct pci_dev *pdev)
994{
995#ifdef ATA_DEBUG
Jeff Garzik8b260242005-11-12 12:32:50 -0500996 void __iomem *hc_base = mv_hc_base(mmio_base,
Brett Russ31961942005-09-30 01:36:00 -0400997 port >> MV_PORT_HC_SHIFT);
998 void __iomem *port_base;
999 int start_port, num_ports, p, start_hc, num_hcs, hc;
1000
1001 if (0 > port) {
1002 start_hc = start_port = 0;
1003 num_ports = 8; /* shld be benign for 4 port devs */
1004 num_hcs = 2;
1005 } else {
1006 start_hc = port >> MV_PORT_HC_SHIFT;
1007 start_port = port;
1008 num_ports = num_hcs = 1;
1009 }
Jeff Garzik8b260242005-11-12 12:32:50 -05001010 DPRINTK("All registers for port(s) %u-%u:\n", start_port,
Brett Russ31961942005-09-30 01:36:00 -04001011 num_ports > 1 ? num_ports - 1 : start_port);
1012
1013 if (NULL != pdev) {
1014 DPRINTK("PCI config space regs:\n");
1015 mv_dump_pci_cfg(pdev, 0x68);
1016 }
1017 DPRINTK("PCI regs:\n");
1018 mv_dump_mem(mmio_base+0xc00, 0x3c);
1019 mv_dump_mem(mmio_base+0xd00, 0x34);
1020 mv_dump_mem(mmio_base+0xf00, 0x4);
1021 mv_dump_mem(mmio_base+0x1d00, 0x6c);
1022 for (hc = start_hc; hc < start_hc + num_hcs; hc++) {
Dan Alonid220c372006-04-10 23:20:22 -07001023 hc_base = mv_hc_base(mmio_base, hc);
Brett Russ31961942005-09-30 01:36:00 -04001024 DPRINTK("HC regs (HC %i):\n", hc);
1025 mv_dump_mem(hc_base, 0x1c);
1026 }
1027 for (p = start_port; p < start_port + num_ports; p++) {
1028 port_base = mv_port_base(mmio_base, p);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001029 DPRINTK("EDMA regs (port %i):\n", p);
Brett Russ31961942005-09-30 01:36:00 -04001030 mv_dump_mem(port_base, 0x54);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04001031 DPRINTK("SATA regs (port %i):\n", p);
Brett Russ31961942005-09-30 01:36:00 -04001032 mv_dump_mem(port_base+0x300, 0x60);
1033 }
1034#endif
1035}
1036
Brett Russ20f733e2005-09-01 18:26:17 -04001037static unsigned int mv_scr_offset(unsigned int sc_reg_in)
1038{
1039 unsigned int ofs;
1040
1041 switch (sc_reg_in) {
1042 case SCR_STATUS:
1043 case SCR_CONTROL:
1044 case SCR_ERROR:
1045 ofs = SATA_STATUS_OFS + (sc_reg_in * sizeof(u32));
1046 break;
1047 case SCR_ACTIVE:
1048 ofs = SATA_ACTIVE_OFS; /* active is not with the others */
1049 break;
1050 default:
1051 ofs = 0xffffffffU;
1052 break;
1053 }
1054 return ofs;
1055}
1056
Tejun Heoda3dbb12007-07-16 14:29:40 +09001057static int mv_scr_read(struct ata_port *ap, unsigned int sc_reg_in, u32 *val)
Brett Russ20f733e2005-09-01 18:26:17 -04001058{
1059 unsigned int ofs = mv_scr_offset(sc_reg_in);
1060
Tejun Heoda3dbb12007-07-16 14:29:40 +09001061 if (ofs != 0xffffffffU) {
1062 *val = readl(mv_ap_base(ap) + ofs);
1063 return 0;
1064 } else
1065 return -EINVAL;
Brett Russ20f733e2005-09-01 18:26:17 -04001066}
1067
Tejun Heoda3dbb12007-07-16 14:29:40 +09001068static int mv_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val)
Brett Russ20f733e2005-09-01 18:26:17 -04001069{
1070 unsigned int ofs = mv_scr_offset(sc_reg_in);
1071
Tejun Heoda3dbb12007-07-16 14:29:40 +09001072 if (ofs != 0xffffffffU) {
Brett Russ20f733e2005-09-01 18:26:17 -04001073 writelfl(val, mv_ap_base(ap) + ofs);
Tejun Heoda3dbb12007-07-16 14:29:40 +09001074 return 0;
1075 } else
1076 return -EINVAL;
Brett Russ20f733e2005-09-01 18:26:17 -04001077}
1078
Mark Lordf2738272008-01-26 18:32:29 -05001079static void mv6_dev_config(struct ata_device *adev)
1080{
1081 /*
Mark Lorde49856d2008-04-16 14:59:07 -04001082 * Deal with Gen-II ("mv6") hardware quirks/restrictions:
1083 *
1084 * Gen-II does not support NCQ over a port multiplier
1085 * (no FIS-based switching).
1086 *
Mark Lordf2738272008-01-26 18:32:29 -05001087 * We don't have hob_nsect when doing NCQ commands on Gen-II.
1088 * See mv_qc_prep() for more info.
1089 */
Mark Lorde49856d2008-04-16 14:59:07 -04001090 if (adev->flags & ATA_DFLAG_NCQ) {
Mark Lord352fab72008-04-19 14:43:42 -04001091 if (sata_pmp_attached(adev->link->ap)) {
Mark Lorde49856d2008-04-16 14:59:07 -04001092 adev->flags &= ~ATA_DFLAG_NCQ;
Mark Lord352fab72008-04-19 14:43:42 -04001093 ata_dev_printk(adev, KERN_INFO,
1094 "NCQ disabled for command-based switching\n");
1095 } else if (adev->max_sectors > GEN_II_NCQ_MAX_SECTORS) {
1096 adev->max_sectors = GEN_II_NCQ_MAX_SECTORS;
1097 ata_dev_printk(adev, KERN_INFO,
1098 "max_sectors limited to %u for NCQ\n",
1099 adev->max_sectors);
1100 }
Mark Lorde49856d2008-04-16 14:59:07 -04001101 }
Mark Lordf2738272008-01-26 18:32:29 -05001102}
1103
Mark Lord3e4a1392008-05-02 02:10:02 -04001104static int mv_qc_defer(struct ata_queued_cmd *qc)
1105{
1106 struct ata_link *link = qc->dev->link;
1107 struct ata_port *ap = link->ap;
1108 struct mv_port_priv *pp = ap->private_data;
1109
1110 /*
Mark Lord29d187b2008-05-02 02:15:37 -04001111 * Don't allow new commands if we're in a delayed EH state
1112 * for NCQ and/or FIS-based switching.
1113 */
1114 if (pp->pp_flags & MV_PP_FLAG_DELAYED_EH)
1115 return ATA_DEFER_PORT;
1116 /*
Mark Lord3e4a1392008-05-02 02:10:02 -04001117 * If the port is completely idle, then allow the new qc.
1118 */
1119 if (ap->nr_active_links == 0)
1120 return 0;
1121
1122 if (pp->pp_flags & MV_PP_FLAG_EDMA_EN) {
1123 /*
1124 * The port is operating in host queuing mode (EDMA).
1125 * It can accomodate a new qc if the qc protocol
1126 * is compatible with the current host queue mode.
1127 */
1128 if (pp->pp_flags & MV_PP_FLAG_NCQ_EN) {
1129 /*
1130 * The host queue (EDMA) is in NCQ mode.
1131 * If the new qc is also an NCQ command,
1132 * then allow the new qc.
1133 */
1134 if (qc->tf.protocol == ATA_PROT_NCQ)
1135 return 0;
1136 } else {
1137 /*
1138 * The host queue (EDMA) is in non-NCQ, DMA mode.
1139 * If the new qc is also a non-NCQ, DMA command,
1140 * then allow the new qc.
1141 */
1142 if (qc->tf.protocol == ATA_PROT_DMA)
1143 return 0;
1144 }
1145 }
1146 return ATA_DEFER_PORT;
1147}
1148
Mark Lord00f42ea2008-05-02 02:11:45 -04001149static void mv_config_fbs(void __iomem *port_mmio, int want_ncq, int want_fbs)
Mark Lorde49856d2008-04-16 14:59:07 -04001150{
Mark Lord00f42ea2008-05-02 02:11:45 -04001151 u32 new_fiscfg, old_fiscfg;
1152 u32 new_ltmode, old_ltmode;
1153 u32 new_haltcond, old_haltcond;
1154
1155 old_fiscfg = readl(port_mmio + FISCFG_OFS);
1156 old_ltmode = readl(port_mmio + LTMODE_OFS);
1157 old_haltcond = readl(port_mmio + EDMA_HALTCOND_OFS);
1158
1159 new_fiscfg = old_fiscfg & ~(FISCFG_SINGLE_SYNC | FISCFG_WAIT_DEV_ERR);
1160 new_ltmode = old_ltmode & ~LTMODE_BIT8;
1161 new_haltcond = old_haltcond | EDMA_ERR_DEV;
1162
1163 if (want_fbs) {
1164 new_fiscfg = old_fiscfg | FISCFG_SINGLE_SYNC;
1165 new_ltmode = old_ltmode | LTMODE_BIT8;
Mark Lord4c299ca2008-05-02 02:16:20 -04001166 if (want_ncq)
1167 new_haltcond &= ~EDMA_ERR_DEV;
1168 else
1169 new_fiscfg |= FISCFG_WAIT_DEV_ERR;
Mark Lorde49856d2008-04-16 14:59:07 -04001170 }
Mark Lord00f42ea2008-05-02 02:11:45 -04001171
Mark Lord8e7decd2008-05-02 02:07:51 -04001172 if (new_fiscfg != old_fiscfg)
1173 writelfl(new_fiscfg, port_mmio + FISCFG_OFS);
Mark Lorde49856d2008-04-16 14:59:07 -04001174 if (new_ltmode != old_ltmode)
1175 writelfl(new_ltmode, port_mmio + LTMODE_OFS);
Mark Lord00f42ea2008-05-02 02:11:45 -04001176 if (new_haltcond != old_haltcond)
1177 writelfl(new_haltcond, port_mmio + EDMA_HALTCOND_OFS);
Mark Lord0c589122008-01-26 18:31:16 -05001178}
Jeff Garzike4e7b892006-01-31 12:18:41 -05001179
Mark Lorddd2890f2008-05-02 02:10:56 -04001180static void mv_60x1_errata_sata25(struct ata_port *ap, int want_ncq)
1181{
1182 struct mv_host_priv *hpriv = ap->host->private_data;
1183 u32 old, new;
1184
1185 /* workaround for 88SX60x1 FEr SATA#25 (part 1) */
1186 old = readl(hpriv->base + MV_GPIO_PORT_CTL_OFS);
1187 if (want_ncq)
1188 new = old | (1 << 22);
1189 else
1190 new = old & ~(1 << 22);
1191 if (new != old)
1192 writel(new, hpriv->base + MV_GPIO_PORT_CTL_OFS);
1193}
1194
Mark Lorde12bef52008-03-31 19:33:56 -04001195static void mv_edma_cfg(struct ata_port *ap, int want_ncq)
Jeff Garzike4e7b892006-01-31 12:18:41 -05001196{
1197 u32 cfg;
Mark Lorde12bef52008-03-31 19:33:56 -04001198 struct mv_port_priv *pp = ap->private_data;
1199 struct mv_host_priv *hpriv = ap->host->private_data;
1200 void __iomem *port_mmio = mv_ap_base(ap);
Jeff Garzike4e7b892006-01-31 12:18:41 -05001201
1202 /* set up non-NCQ EDMA configuration */
1203 cfg = EDMA_CFG_Q_DEPTH; /* always 0x1f for *all* chips */
Mark Lord00f42ea2008-05-02 02:11:45 -04001204 pp->pp_flags &= ~MV_PP_FLAG_FBS_EN;
Jeff Garzike4e7b892006-01-31 12:18:41 -05001205
1206 if (IS_GEN_I(hpriv))
1207 cfg |= (1 << 8); /* enab config burst size mask */
1208
Mark Lorddd2890f2008-05-02 02:10:56 -04001209 else if (IS_GEN_II(hpriv)) {
Jeff Garzike4e7b892006-01-31 12:18:41 -05001210 cfg |= EDMA_CFG_RD_BRST_EXT | EDMA_CFG_WR_BUFF_LEN;
Mark Lorddd2890f2008-05-02 02:10:56 -04001211 mv_60x1_errata_sata25(ap, want_ncq);
Jeff Garzike4e7b892006-01-31 12:18:41 -05001212
Mark Lorddd2890f2008-05-02 02:10:56 -04001213 } else if (IS_GEN_IIE(hpriv)) {
Mark Lord00f42ea2008-05-02 02:11:45 -04001214 int want_fbs = sata_pmp_attached(ap);
1215 /*
1216 * Possible future enhancement:
1217 *
1218 * The chip can use FBS with non-NCQ, if we allow it,
1219 * But first we need to have the error handling in place
1220 * for this mode (datasheet section 7.3.15.4.2.3).
1221 * So disallow non-NCQ FBS for now.
1222 */
1223 want_fbs &= want_ncq;
1224
1225 mv_config_fbs(port_mmio, want_ncq, want_fbs);
1226
1227 if (want_fbs) {
1228 pp->pp_flags |= MV_PP_FLAG_FBS_EN;
1229 cfg |= EDMA_CFG_EDMA_FBS; /* FIS-based switching */
1230 }
1231
Jeff Garzike728eab2007-02-25 02:53:41 -05001232 cfg |= (1 << 23); /* do not mask PM field in rx'd FIS */
1233 cfg |= (1 << 22); /* enab 4-entry host queue cache */
Mark Lord616d4a92008-05-02 02:08:32 -04001234 if (HAS_PCI(ap->host))
1235 cfg |= (1 << 18); /* enab early completion */
1236 if (hpriv->hp_flags & MV_HP_CUT_THROUGH)
1237 cfg |= (1 << 17); /* enab cut-thru (dis stor&forwrd) */
Jeff Garzike4e7b892006-01-31 12:18:41 -05001238 }
1239
Mark Lord72109162008-01-26 18:31:33 -05001240 if (want_ncq) {
1241 cfg |= EDMA_CFG_NCQ;
1242 pp->pp_flags |= MV_PP_FLAG_NCQ_EN;
1243 } else
1244 pp->pp_flags &= ~MV_PP_FLAG_NCQ_EN;
1245
Jeff Garzike4e7b892006-01-31 12:18:41 -05001246 writelfl(cfg, port_mmio + EDMA_CFG_OFS);
1247}
1248
Mark Lordda2fa9b2008-01-26 18:32:45 -05001249static void mv_port_free_dma_mem(struct ata_port *ap)
1250{
1251 struct mv_host_priv *hpriv = ap->host->private_data;
1252 struct mv_port_priv *pp = ap->private_data;
Mark Lordeb73d552008-01-29 13:24:00 -05001253 int tag;
Mark Lordda2fa9b2008-01-26 18:32:45 -05001254
1255 if (pp->crqb) {
1256 dma_pool_free(hpriv->crqb_pool, pp->crqb, pp->crqb_dma);
1257 pp->crqb = NULL;
1258 }
1259 if (pp->crpb) {
1260 dma_pool_free(hpriv->crpb_pool, pp->crpb, pp->crpb_dma);
1261 pp->crpb = NULL;
1262 }
Mark Lordeb73d552008-01-29 13:24:00 -05001263 /*
1264 * For GEN_I, there's no NCQ, so we have only a single sg_tbl.
1265 * For later hardware, we have one unique sg_tbl per NCQ tag.
1266 */
1267 for (tag = 0; tag < MV_MAX_Q_DEPTH; ++tag) {
1268 if (pp->sg_tbl[tag]) {
1269 if (tag == 0 || !IS_GEN_I(hpriv))
1270 dma_pool_free(hpriv->sg_tbl_pool,
1271 pp->sg_tbl[tag],
1272 pp->sg_tbl_dma[tag]);
1273 pp->sg_tbl[tag] = NULL;
1274 }
Mark Lordda2fa9b2008-01-26 18:32:45 -05001275 }
1276}
1277
Brett Russ05b308e2005-10-05 17:08:53 -04001278/**
1279 * mv_port_start - Port specific init/start routine.
1280 * @ap: ATA channel to manipulate
1281 *
1282 * Allocate and point to DMA memory, init port private memory,
1283 * zero indices.
1284 *
1285 * LOCKING:
1286 * Inherited from caller.
1287 */
Brett Russ31961942005-09-30 01:36:00 -04001288static int mv_port_start(struct ata_port *ap)
1289{
Jeff Garzikcca39742006-08-24 03:19:22 -04001290 struct device *dev = ap->host->dev;
1291 struct mv_host_priv *hpriv = ap->host->private_data;
Brett Russ31961942005-09-30 01:36:00 -04001292 struct mv_port_priv *pp;
James Bottomleydde20202008-02-19 11:36:56 +01001293 int tag;
Brett Russ31961942005-09-30 01:36:00 -04001294
Tejun Heo24dc5f32007-01-20 16:00:28 +09001295 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
Jeff Garzik6037d6b2005-11-04 22:08:00 -05001296 if (!pp)
Tejun Heo24dc5f32007-01-20 16:00:28 +09001297 return -ENOMEM;
Mark Lordda2fa9b2008-01-26 18:32:45 -05001298 ap->private_data = pp;
Brett Russ31961942005-09-30 01:36:00 -04001299
Mark Lordda2fa9b2008-01-26 18:32:45 -05001300 pp->crqb = dma_pool_alloc(hpriv->crqb_pool, GFP_KERNEL, &pp->crqb_dma);
1301 if (!pp->crqb)
1302 return -ENOMEM;
1303 memset(pp->crqb, 0, MV_CRQB_Q_SZ);
Brett Russ31961942005-09-30 01:36:00 -04001304
Mark Lordda2fa9b2008-01-26 18:32:45 -05001305 pp->crpb = dma_pool_alloc(hpriv->crpb_pool, GFP_KERNEL, &pp->crpb_dma);
1306 if (!pp->crpb)
1307 goto out_port_free_dma_mem;
1308 memset(pp->crpb, 0, MV_CRPB_Q_SZ);
Brett Russ31961942005-09-30 01:36:00 -04001309
Mark Lordeb73d552008-01-29 13:24:00 -05001310 /*
1311 * For GEN_I, there's no NCQ, so we only allocate a single sg_tbl.
1312 * For later hardware, we need one unique sg_tbl per NCQ tag.
1313 */
1314 for (tag = 0; tag < MV_MAX_Q_DEPTH; ++tag) {
1315 if (tag == 0 || !IS_GEN_I(hpriv)) {
1316 pp->sg_tbl[tag] = dma_pool_alloc(hpriv->sg_tbl_pool,
1317 GFP_KERNEL, &pp->sg_tbl_dma[tag]);
1318 if (!pp->sg_tbl[tag])
1319 goto out_port_free_dma_mem;
1320 } else {
1321 pp->sg_tbl[tag] = pp->sg_tbl[0];
1322 pp->sg_tbl_dma[tag] = pp->sg_tbl_dma[0];
1323 }
1324 }
Brett Russ31961942005-09-30 01:36:00 -04001325 return 0;
Mark Lordda2fa9b2008-01-26 18:32:45 -05001326
1327out_port_free_dma_mem:
1328 mv_port_free_dma_mem(ap);
1329 return -ENOMEM;
Brett Russ31961942005-09-30 01:36:00 -04001330}
1331
Brett Russ05b308e2005-10-05 17:08:53 -04001332/**
1333 * mv_port_stop - Port specific cleanup/stop routine.
1334 * @ap: ATA channel to manipulate
1335 *
1336 * Stop DMA, cleanup port memory.
1337 *
1338 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04001339 * This routine uses the host lock to protect the DMA stop.
Brett Russ05b308e2005-10-05 17:08:53 -04001340 */
Brett Russ31961942005-09-30 01:36:00 -04001341static void mv_port_stop(struct ata_port *ap)
1342{
Mark Lorde12bef52008-03-31 19:33:56 -04001343 mv_stop_edma(ap);
Mark Lordda2fa9b2008-01-26 18:32:45 -05001344 mv_port_free_dma_mem(ap);
Brett Russ31961942005-09-30 01:36:00 -04001345}
1346
Brett Russ05b308e2005-10-05 17:08:53 -04001347/**
1348 * mv_fill_sg - Fill out the Marvell ePRD (scatter gather) entries
1349 * @qc: queued command whose SG list to source from
1350 *
1351 * Populate the SG list and mark the last entry.
1352 *
1353 * LOCKING:
1354 * Inherited from caller.
1355 */
Jeff Garzik6c087722007-10-12 00:16:23 -04001356static void mv_fill_sg(struct ata_queued_cmd *qc)
Brett Russ31961942005-09-30 01:36:00 -04001357{
1358 struct mv_port_priv *pp = qc->ap->private_data;
Jeff Garzik972c26b2005-10-18 22:14:54 -04001359 struct scatterlist *sg;
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04001360 struct mv_sg *mv_sg, *last_sg = NULL;
Tejun Heoff2aeb12007-12-05 16:43:11 +09001361 unsigned int si;
Brett Russ31961942005-09-30 01:36:00 -04001362
Mark Lordeb73d552008-01-29 13:24:00 -05001363 mv_sg = pp->sg_tbl[qc->tag];
Tejun Heoff2aeb12007-12-05 16:43:11 +09001364 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Jeff Garzikd88184f2007-02-26 01:26:06 -05001365 dma_addr_t addr = sg_dma_address(sg);
1366 u32 sg_len = sg_dma_len(sg);
Brett Russ31961942005-09-30 01:36:00 -04001367
Olof Johansson4007b492007-10-02 20:45:27 -05001368 while (sg_len) {
1369 u32 offset = addr & 0xffff;
1370 u32 len = sg_len;
Brett Russ31961942005-09-30 01:36:00 -04001371
Olof Johansson4007b492007-10-02 20:45:27 -05001372 if ((offset + sg_len > 0x10000))
1373 len = 0x10000 - offset;
Jeff Garzik972c26b2005-10-18 22:14:54 -04001374
Olof Johansson4007b492007-10-02 20:45:27 -05001375 mv_sg->addr = cpu_to_le32(addr & 0xffffffff);
1376 mv_sg->addr_hi = cpu_to_le32((addr >> 16) >> 16);
Jeff Garzik6c087722007-10-12 00:16:23 -04001377 mv_sg->flags_size = cpu_to_le32(len & 0xffff);
Olof Johansson4007b492007-10-02 20:45:27 -05001378
1379 sg_len -= len;
1380 addr += len;
1381
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04001382 last_sg = mv_sg;
Olof Johansson4007b492007-10-02 20:45:27 -05001383 mv_sg++;
Olof Johansson4007b492007-10-02 20:45:27 -05001384 }
Brett Russ31961942005-09-30 01:36:00 -04001385 }
Jeff Garzik3be6cbd2007-10-18 16:21:18 -04001386
1387 if (likely(last_sg))
1388 last_sg->flags_size |= cpu_to_le32(EPRD_FLAG_END_OF_TBL);
Brett Russ31961942005-09-30 01:36:00 -04001389}
1390
Jeff Garzik5796d1c2007-10-26 00:03:37 -04001391static void mv_crqb_pack_cmd(__le16 *cmdw, u8 data, u8 addr, unsigned last)
Brett Russ31961942005-09-30 01:36:00 -04001392{
Mark Lord559eeda2006-05-19 16:40:15 -04001393 u16 tmp = data | (addr << CRQB_CMD_ADDR_SHIFT) | CRQB_CMD_CS |
Brett Russ31961942005-09-30 01:36:00 -04001394 (last ? CRQB_CMD_LAST : 0);
Mark Lord559eeda2006-05-19 16:40:15 -04001395 *cmdw = cpu_to_le16(tmp);
Brett Russ31961942005-09-30 01:36:00 -04001396}
1397
Brett Russ05b308e2005-10-05 17:08:53 -04001398/**
1399 * mv_qc_prep - Host specific command preparation.
1400 * @qc: queued command to prepare
1401 *
1402 * This routine simply redirects to the general purpose routine
1403 * if command is not DMA. Else, it handles prep of the CRQB
1404 * (command request block), does some sanity checking, and calls
1405 * the SG load routine.
1406 *
1407 * LOCKING:
1408 * Inherited from caller.
1409 */
Brett Russ31961942005-09-30 01:36:00 -04001410static void mv_qc_prep(struct ata_queued_cmd *qc)
1411{
1412 struct ata_port *ap = qc->ap;
1413 struct mv_port_priv *pp = ap->private_data;
Mark Lorde1469872006-05-22 19:02:03 -04001414 __le16 *cw;
Brett Russ31961942005-09-30 01:36:00 -04001415 struct ata_taskfile *tf;
1416 u16 flags = 0;
Mark Lorda6432432006-05-19 16:36:36 -04001417 unsigned in_index;
Brett Russ31961942005-09-30 01:36:00 -04001418
Mark Lord138bfdd2008-01-26 18:33:18 -05001419 if ((qc->tf.protocol != ATA_PROT_DMA) &&
1420 (qc->tf.protocol != ATA_PROT_NCQ))
Brett Russ31961942005-09-30 01:36:00 -04001421 return;
Brett Russ20f733e2005-09-01 18:26:17 -04001422
Brett Russ31961942005-09-30 01:36:00 -04001423 /* Fill in command request block
1424 */
Jeff Garzike4e7b892006-01-31 12:18:41 -05001425 if (!(qc->tf.flags & ATA_TFLAG_WRITE))
Brett Russ31961942005-09-30 01:36:00 -04001426 flags |= CRQB_FLAG_READ;
Tejun Heobeec7db2006-02-11 19:11:13 +09001427 WARN_ON(MV_MAX_Q_DEPTH <= qc->tag);
Brett Russ31961942005-09-30 01:36:00 -04001428 flags |= qc->tag << CRQB_TAG_SHIFT;
Mark Lorde49856d2008-04-16 14:59:07 -04001429 flags |= (qc->dev->link->pmp & 0xf) << CRQB_PMP_SHIFT;
Brett Russ31961942005-09-30 01:36:00 -04001430
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001431 /* get current queue index from software */
Mark Lordfcfb1f72008-04-19 15:06:40 -04001432 in_index = pp->req_idx;
Brett Russ31961942005-09-30 01:36:00 -04001433
Mark Lorda6432432006-05-19 16:36:36 -04001434 pp->crqb[in_index].sg_addr =
Mark Lordeb73d552008-01-29 13:24:00 -05001435 cpu_to_le32(pp->sg_tbl_dma[qc->tag] & 0xffffffff);
Mark Lorda6432432006-05-19 16:36:36 -04001436 pp->crqb[in_index].sg_addr_hi =
Mark Lordeb73d552008-01-29 13:24:00 -05001437 cpu_to_le32((pp->sg_tbl_dma[qc->tag] >> 16) >> 16);
Mark Lorda6432432006-05-19 16:36:36 -04001438 pp->crqb[in_index].ctrl_flags = cpu_to_le16(flags);
1439
1440 cw = &pp->crqb[in_index].ata_cmd[0];
Brett Russ31961942005-09-30 01:36:00 -04001441 tf = &qc->tf;
1442
1443 /* Sadly, the CRQB cannot accomodate all registers--there are
1444 * only 11 bytes...so we must pick and choose required
1445 * registers based on the command. So, we drop feature and
1446 * hob_feature for [RW] DMA commands, but they are needed for
1447 * NCQ. NCQ will drop hob_nsect.
1448 */
1449 switch (tf->command) {
1450 case ATA_CMD_READ:
1451 case ATA_CMD_READ_EXT:
1452 case ATA_CMD_WRITE:
1453 case ATA_CMD_WRITE_EXT:
Jens Axboec15d85c2006-02-15 15:59:25 +01001454 case ATA_CMD_WRITE_FUA_EXT:
Brett Russ31961942005-09-30 01:36:00 -04001455 mv_crqb_pack_cmd(cw++, tf->hob_nsect, ATA_REG_NSECT, 0);
1456 break;
Brett Russ31961942005-09-30 01:36:00 -04001457 case ATA_CMD_FPDMA_READ:
1458 case ATA_CMD_FPDMA_WRITE:
Jeff Garzik8b260242005-11-12 12:32:50 -05001459 mv_crqb_pack_cmd(cw++, tf->hob_feature, ATA_REG_FEATURE, 0);
Brett Russ31961942005-09-30 01:36:00 -04001460 mv_crqb_pack_cmd(cw++, tf->feature, ATA_REG_FEATURE, 0);
1461 break;
Brett Russ31961942005-09-30 01:36:00 -04001462 default:
1463 /* The only other commands EDMA supports in non-queued and
1464 * non-NCQ mode are: [RW] STREAM DMA and W DMA FUA EXT, none
1465 * of which are defined/used by Linux. If we get here, this
1466 * driver needs work.
1467 *
1468 * FIXME: modify libata to give qc_prep a return value and
1469 * return error here.
1470 */
1471 BUG_ON(tf->command);
1472 break;
1473 }
1474 mv_crqb_pack_cmd(cw++, tf->nsect, ATA_REG_NSECT, 0);
1475 mv_crqb_pack_cmd(cw++, tf->hob_lbal, ATA_REG_LBAL, 0);
1476 mv_crqb_pack_cmd(cw++, tf->lbal, ATA_REG_LBAL, 0);
1477 mv_crqb_pack_cmd(cw++, tf->hob_lbam, ATA_REG_LBAM, 0);
1478 mv_crqb_pack_cmd(cw++, tf->lbam, ATA_REG_LBAM, 0);
1479 mv_crqb_pack_cmd(cw++, tf->hob_lbah, ATA_REG_LBAH, 0);
1480 mv_crqb_pack_cmd(cw++, tf->lbah, ATA_REG_LBAH, 0);
1481 mv_crqb_pack_cmd(cw++, tf->device, ATA_REG_DEVICE, 0);
1482 mv_crqb_pack_cmd(cw++, tf->command, ATA_REG_CMD, 1); /* last */
1483
Jeff Garzike4e7b892006-01-31 12:18:41 -05001484 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
Brett Russ31961942005-09-30 01:36:00 -04001485 return;
Jeff Garzike4e7b892006-01-31 12:18:41 -05001486 mv_fill_sg(qc);
1487}
1488
1489/**
1490 * mv_qc_prep_iie - Host specific command preparation.
1491 * @qc: queued command to prepare
1492 *
1493 * This routine simply redirects to the general purpose routine
1494 * if command is not DMA. Else, it handles prep of the CRQB
1495 * (command request block), does some sanity checking, and calls
1496 * the SG load routine.
1497 *
1498 * LOCKING:
1499 * Inherited from caller.
1500 */
1501static void mv_qc_prep_iie(struct ata_queued_cmd *qc)
1502{
1503 struct ata_port *ap = qc->ap;
1504 struct mv_port_priv *pp = ap->private_data;
1505 struct mv_crqb_iie *crqb;
1506 struct ata_taskfile *tf;
Mark Lorda6432432006-05-19 16:36:36 -04001507 unsigned in_index;
Jeff Garzike4e7b892006-01-31 12:18:41 -05001508 u32 flags = 0;
1509
Mark Lord138bfdd2008-01-26 18:33:18 -05001510 if ((qc->tf.protocol != ATA_PROT_DMA) &&
1511 (qc->tf.protocol != ATA_PROT_NCQ))
Jeff Garzike4e7b892006-01-31 12:18:41 -05001512 return;
1513
Mark Lorde12bef52008-03-31 19:33:56 -04001514 /* Fill in Gen IIE command request block */
Jeff Garzike4e7b892006-01-31 12:18:41 -05001515 if (!(qc->tf.flags & ATA_TFLAG_WRITE))
1516 flags |= CRQB_FLAG_READ;
1517
Tejun Heobeec7db2006-02-11 19:11:13 +09001518 WARN_ON(MV_MAX_Q_DEPTH <= qc->tag);
Jeff Garzike4e7b892006-01-31 12:18:41 -05001519 flags |= qc->tag << CRQB_TAG_SHIFT;
Mark Lord8c0aeb42008-01-26 18:31:48 -05001520 flags |= qc->tag << CRQB_HOSTQ_SHIFT;
Mark Lorde49856d2008-04-16 14:59:07 -04001521 flags |= (qc->dev->link->pmp & 0xf) << CRQB_PMP_SHIFT;
Jeff Garzike4e7b892006-01-31 12:18:41 -05001522
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001523 /* get current queue index from software */
Mark Lordfcfb1f72008-04-19 15:06:40 -04001524 in_index = pp->req_idx;
Mark Lorda6432432006-05-19 16:36:36 -04001525
1526 crqb = (struct mv_crqb_iie *) &pp->crqb[in_index];
Mark Lordeb73d552008-01-29 13:24:00 -05001527 crqb->addr = cpu_to_le32(pp->sg_tbl_dma[qc->tag] & 0xffffffff);
1528 crqb->addr_hi = cpu_to_le32((pp->sg_tbl_dma[qc->tag] >> 16) >> 16);
Jeff Garzike4e7b892006-01-31 12:18:41 -05001529 crqb->flags = cpu_to_le32(flags);
1530
1531 tf = &qc->tf;
1532 crqb->ata_cmd[0] = cpu_to_le32(
1533 (tf->command << 16) |
1534 (tf->feature << 24)
1535 );
1536 crqb->ata_cmd[1] = cpu_to_le32(
1537 (tf->lbal << 0) |
1538 (tf->lbam << 8) |
1539 (tf->lbah << 16) |
1540 (tf->device << 24)
1541 );
1542 crqb->ata_cmd[2] = cpu_to_le32(
1543 (tf->hob_lbal << 0) |
1544 (tf->hob_lbam << 8) |
1545 (tf->hob_lbah << 16) |
1546 (tf->hob_feature << 24)
1547 );
1548 crqb->ata_cmd[3] = cpu_to_le32(
1549 (tf->nsect << 0) |
1550 (tf->hob_nsect << 8)
1551 );
1552
1553 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
1554 return;
Brett Russ31961942005-09-30 01:36:00 -04001555 mv_fill_sg(qc);
1556}
1557
Brett Russ05b308e2005-10-05 17:08:53 -04001558/**
1559 * mv_qc_issue - Initiate a command to the host
1560 * @qc: queued command to start
1561 *
1562 * This routine simply redirects to the general purpose routine
1563 * if command is not DMA. Else, it sanity checks our local
1564 * caches of the request producer/consumer indices then enables
1565 * DMA and bumps the request producer index.
1566 *
1567 * LOCKING:
1568 * Inherited from caller.
1569 */
Tejun Heo9a3d9eb2006-01-23 13:09:36 +09001570static unsigned int mv_qc_issue(struct ata_queued_cmd *qc)
Brett Russ31961942005-09-30 01:36:00 -04001571{
Jeff Garzikc5d3e452007-07-11 18:30:50 -04001572 struct ata_port *ap = qc->ap;
1573 void __iomem *port_mmio = mv_ap_base(ap);
1574 struct mv_port_priv *pp = ap->private_data;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001575 u32 in_index;
Brett Russ31961942005-09-30 01:36:00 -04001576
Mark Lord138bfdd2008-01-26 18:33:18 -05001577 if ((qc->tf.protocol != ATA_PROT_DMA) &&
1578 (qc->tf.protocol != ATA_PROT_NCQ)) {
Mark Lord17c5aab2008-04-16 14:56:51 -04001579 /*
1580 * We're about to send a non-EDMA capable command to the
Brett Russ31961942005-09-30 01:36:00 -04001581 * port. Turn off EDMA so there won't be problems accessing
1582 * shadow block, etc registers.
1583 */
Mark Lordb5624682008-03-31 19:34:40 -04001584 mv_stop_edma(ap);
Mark Lorde49856d2008-04-16 14:59:07 -04001585 mv_pmp_select(ap, qc->dev->link->pmp);
Tejun Heo9363c382008-04-07 22:47:16 +09001586 return ata_sff_qc_issue(qc);
Brett Russ31961942005-09-30 01:36:00 -04001587 }
1588
Mark Lord72109162008-01-26 18:31:33 -05001589 mv_start_dma(ap, port_mmio, pp, qc->tf.protocol);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001590
Mark Lordfcfb1f72008-04-19 15:06:40 -04001591 pp->req_idx = (pp->req_idx + 1) & MV_MAX_Q_DEPTH_MASK;
1592 in_index = pp->req_idx << EDMA_REQ_Q_PTR_SHIFT;
Brett Russ31961942005-09-30 01:36:00 -04001593
1594 /* and write the request in pointer to kick the EDMA to life */
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001595 writelfl((pp->crqb_dma & EDMA_REQ_Q_BASE_LO_MASK) | in_index,
1596 port_mmio + EDMA_REQ_Q_IN_PTR_OFS);
Brett Russ31961942005-09-30 01:36:00 -04001597
1598 return 0;
1599}
1600
Mark Lord8f767f82008-04-19 14:53:07 -04001601static struct ata_queued_cmd *mv_get_active_qc(struct ata_port *ap)
1602{
1603 struct mv_port_priv *pp = ap->private_data;
1604 struct ata_queued_cmd *qc;
1605
1606 if (pp->pp_flags & MV_PP_FLAG_NCQ_EN)
1607 return NULL;
1608 qc = ata_qc_from_tag(ap, ap->link.active_tag);
1609 if (qc && (qc->tf.flags & ATA_TFLAG_POLLING))
1610 qc = NULL;
1611 return qc;
1612}
1613
Mark Lord29d187b2008-05-02 02:15:37 -04001614static void mv_pmp_error_handler(struct ata_port *ap)
1615{
1616 unsigned int pmp, pmp_map;
1617 struct mv_port_priv *pp = ap->private_data;
1618
1619 if (pp->pp_flags & MV_PP_FLAG_DELAYED_EH) {
1620 /*
1621 * Perform NCQ error analysis on failed PMPs
1622 * before we freeze the port entirely.
1623 *
1624 * The failed PMPs are marked earlier by mv_pmp_eh_prep().
1625 */
1626 pmp_map = pp->delayed_eh_pmp_map;
1627 pp->pp_flags &= ~MV_PP_FLAG_DELAYED_EH;
1628 for (pmp = 0; pmp_map != 0; pmp++) {
1629 unsigned int this_pmp = (1 << pmp);
1630 if (pmp_map & this_pmp) {
1631 struct ata_link *link = &ap->pmp_link[pmp];
1632 pmp_map &= ~this_pmp;
1633 ata_eh_analyze_ncq_error(link);
1634 }
1635 }
1636 ata_port_freeze(ap);
1637 }
1638 sata_pmp_error_handler(ap);
1639}
1640
Mark Lord4c299ca2008-05-02 02:16:20 -04001641static unsigned int mv_get_err_pmp_map(struct ata_port *ap)
1642{
1643 void __iomem *port_mmio = mv_ap_base(ap);
1644
1645 return readl(port_mmio + SATA_TESTCTL_OFS) >> 16;
1646}
1647
Mark Lord4c299ca2008-05-02 02:16:20 -04001648static void mv_pmp_eh_prep(struct ata_port *ap, unsigned int pmp_map)
1649{
1650 struct ata_eh_info *ehi;
1651 unsigned int pmp;
1652
1653 /*
1654 * Initialize EH info for PMPs which saw device errors
1655 */
1656 ehi = &ap->link.eh_info;
1657 for (pmp = 0; pmp_map != 0; pmp++) {
1658 unsigned int this_pmp = (1 << pmp);
1659 if (pmp_map & this_pmp) {
1660 struct ata_link *link = &ap->pmp_link[pmp];
1661
1662 pmp_map &= ~this_pmp;
1663 ehi = &link->eh_info;
1664 ata_ehi_clear_desc(ehi);
1665 ata_ehi_push_desc(ehi, "dev err");
1666 ehi->err_mask |= AC_ERR_DEV;
1667 ehi->action |= ATA_EH_RESET;
1668 ata_link_abort(link);
1669 }
1670 }
1671}
1672
1673static int mv_handle_fbs_ncq_dev_err(struct ata_port *ap)
1674{
1675 struct mv_port_priv *pp = ap->private_data;
1676 int failed_links;
1677 unsigned int old_map, new_map;
1678
1679 /*
1680 * Device error during FBS+NCQ operation:
1681 *
1682 * Set a port flag to prevent further I/O being enqueued.
1683 * Leave the EDMA running to drain outstanding commands from this port.
1684 * Perform the post-mortem/EH only when all responses are complete.
1685 * Follow recovery sequence from 6042/7042 datasheet (7.3.15.4.2.2).
1686 */
1687 if (!(pp->pp_flags & MV_PP_FLAG_DELAYED_EH)) {
1688 pp->pp_flags |= MV_PP_FLAG_DELAYED_EH;
1689 pp->delayed_eh_pmp_map = 0;
1690 }
1691 old_map = pp->delayed_eh_pmp_map;
1692 new_map = old_map | mv_get_err_pmp_map(ap);
1693
1694 if (old_map != new_map) {
1695 pp->delayed_eh_pmp_map = new_map;
1696 mv_pmp_eh_prep(ap, new_map & ~old_map);
1697 }
Mark Lordc46938c2008-05-02 14:02:28 -04001698 failed_links = hweight16(new_map);
Mark Lord4c299ca2008-05-02 02:16:20 -04001699
1700 ata_port_printk(ap, KERN_INFO, "%s: pmp_map=%04x qc_map=%04x "
1701 "failed_links=%d nr_active_links=%d\n",
1702 __func__, pp->delayed_eh_pmp_map,
1703 ap->qc_active, failed_links,
1704 ap->nr_active_links);
1705
1706 if (ap->nr_active_links <= failed_links) {
1707 mv_process_crpb_entries(ap, pp);
1708 mv_stop_edma(ap);
1709 mv_eh_freeze(ap);
1710 ata_port_printk(ap, KERN_INFO, "%s: done\n", __func__);
1711 return 1; /* handled */
1712 }
1713 ata_port_printk(ap, KERN_INFO, "%s: waiting\n", __func__);
1714 return 1; /* handled */
1715}
1716
1717static int mv_handle_fbs_non_ncq_dev_err(struct ata_port *ap)
1718{
1719 /*
1720 * Possible future enhancement:
1721 *
1722 * FBS+non-NCQ operation is not yet implemented.
1723 * See related notes in mv_edma_cfg().
1724 *
1725 * Device error during FBS+non-NCQ operation:
1726 *
1727 * We need to snapshot the shadow registers for each failed command.
1728 * Follow recovery sequence from 6042/7042 datasheet (7.3.15.4.2.3).
1729 */
1730 return 0; /* not handled */
1731}
1732
1733static int mv_handle_dev_err(struct ata_port *ap, u32 edma_err_cause)
1734{
1735 struct mv_port_priv *pp = ap->private_data;
1736
1737 if (!(pp->pp_flags & MV_PP_FLAG_EDMA_EN))
1738 return 0; /* EDMA was not active: not handled */
1739 if (!(pp->pp_flags & MV_PP_FLAG_FBS_EN))
1740 return 0; /* FBS was not active: not handled */
1741
1742 if (!(edma_err_cause & EDMA_ERR_DEV))
1743 return 0; /* non DEV error: not handled */
1744 edma_err_cause &= ~EDMA_ERR_IRQ_TRANSIENT;
1745 if (edma_err_cause & ~(EDMA_ERR_DEV | EDMA_ERR_SELF_DIS))
1746 return 0; /* other problems: not handled */
1747
1748 if (pp->pp_flags & MV_PP_FLAG_NCQ_EN) {
1749 /*
1750 * EDMA should NOT have self-disabled for this case.
1751 * If it did, then something is wrong elsewhere,
1752 * and we cannot handle it here.
1753 */
1754 if (edma_err_cause & EDMA_ERR_SELF_DIS) {
1755 ata_port_printk(ap, KERN_WARNING,
1756 "%s: err_cause=0x%x pp_flags=0x%x\n",
1757 __func__, edma_err_cause, pp->pp_flags);
1758 return 0; /* not handled */
1759 }
1760 return mv_handle_fbs_ncq_dev_err(ap);
1761 } else {
1762 /*
1763 * EDMA should have self-disabled for this case.
1764 * If it did not, then something is wrong elsewhere,
1765 * and we cannot handle it here.
1766 */
1767 if (!(edma_err_cause & EDMA_ERR_SELF_DIS)) {
1768 ata_port_printk(ap, KERN_WARNING,
1769 "%s: err_cause=0x%x pp_flags=0x%x\n",
1770 __func__, edma_err_cause, pp->pp_flags);
1771 return 0; /* not handled */
1772 }
1773 return mv_handle_fbs_non_ncq_dev_err(ap);
1774 }
1775 return 0; /* not handled */
1776}
1777
Mark Lorda9010322008-05-02 02:14:02 -04001778static void mv_unexpected_intr(struct ata_port *ap, int edma_was_enabled)
Mark Lord8f767f82008-04-19 14:53:07 -04001779{
Mark Lord8f767f82008-04-19 14:53:07 -04001780 struct ata_eh_info *ehi = &ap->link.eh_info;
Mark Lorda9010322008-05-02 02:14:02 -04001781 char *when = "idle";
Mark Lord8f767f82008-04-19 14:53:07 -04001782
Mark Lord8f767f82008-04-19 14:53:07 -04001783 ata_ehi_clear_desc(ehi);
Mark Lorda9010322008-05-02 02:14:02 -04001784 if (!ap || (ap->flags & ATA_FLAG_DISABLED)) {
1785 when = "disabled";
1786 } else if (edma_was_enabled) {
1787 when = "EDMA enabled";
Mark Lord8f767f82008-04-19 14:53:07 -04001788 } else {
1789 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->link.active_tag);
1790 if (qc && (qc->tf.flags & ATA_TFLAG_POLLING))
Mark Lorda9010322008-05-02 02:14:02 -04001791 when = "polling";
Mark Lord8f767f82008-04-19 14:53:07 -04001792 }
Mark Lorda9010322008-05-02 02:14:02 -04001793 ata_ehi_push_desc(ehi, "unexpected device interrupt while %s", when);
Mark Lord8f767f82008-04-19 14:53:07 -04001794 ehi->err_mask |= AC_ERR_OTHER;
1795 ehi->action |= ATA_EH_RESET;
1796 ata_port_freeze(ap);
1797}
1798
Brett Russ05b308e2005-10-05 17:08:53 -04001799/**
Brett Russ05b308e2005-10-05 17:08:53 -04001800 * mv_err_intr - Handle error interrupts on the port
1801 * @ap: ATA channel to manipulate
Mark Lord8d073792008-04-19 15:07:49 -04001802 * @qc: affected command (non-NCQ), or NULL
Brett Russ05b308e2005-10-05 17:08:53 -04001803 *
Mark Lord8d073792008-04-19 15:07:49 -04001804 * Most cases require a full reset of the chip's state machine,
1805 * which also performs a COMRESET.
1806 * Also, if the port disabled DMA, update our cached copy to match.
Brett Russ05b308e2005-10-05 17:08:53 -04001807 *
1808 * LOCKING:
1809 * Inherited from caller.
1810 */
Mark Lord37b90462008-05-02 02:12:34 -04001811static void mv_err_intr(struct ata_port *ap)
Brett Russ20f733e2005-09-01 18:26:17 -04001812{
Brett Russ31961942005-09-30 01:36:00 -04001813 void __iomem *port_mmio = mv_ap_base(ap);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001814 u32 edma_err_cause, eh_freeze_mask, serr = 0;
Mark Lorde4006072008-05-14 09:19:30 -04001815 u32 fis_cause = 0;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001816 struct mv_port_priv *pp = ap->private_data;
1817 struct mv_host_priv *hpriv = ap->host->private_data;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001818 unsigned int action = 0, err_mask = 0;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001819 struct ata_eh_info *ehi = &ap->link.eh_info;
Mark Lord37b90462008-05-02 02:12:34 -04001820 struct ata_queued_cmd *qc;
1821 int abort = 0;
Brett Russ20f733e2005-09-01 18:26:17 -04001822
Mark Lord8d073792008-04-19 15:07:49 -04001823 /*
Mark Lord37b90462008-05-02 02:12:34 -04001824 * Read and clear the SError and err_cause bits.
Mark Lorde4006072008-05-14 09:19:30 -04001825 * For GenIIe, if EDMA_ERR_TRANS_IRQ_7 is set, we also must read/clear
1826 * the FIS_IRQ_CAUSE register before clearing edma_err_cause.
Mark Lord8d073792008-04-19 15:07:49 -04001827 */
Mark Lord37b90462008-05-02 02:12:34 -04001828 sata_scr_read(&ap->link, SCR_ERROR, &serr);
1829 sata_scr_write_flush(&ap->link, SCR_ERROR, serr);
1830
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001831 edma_err_cause = readl(port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
Mark Lorde4006072008-05-14 09:19:30 -04001832 if (IS_GEN_IIE(hpriv) && (edma_err_cause & EDMA_ERR_TRANS_IRQ_7)) {
1833 fis_cause = readl(port_mmio + SATA_FIS_IRQ_CAUSE_OFS);
1834 writelfl(~fis_cause, port_mmio + SATA_FIS_IRQ_CAUSE_OFS);
1835 }
Mark Lord8d073792008-04-19 15:07:49 -04001836 writelfl(~edma_err_cause, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001837
Mark Lord4c299ca2008-05-02 02:16:20 -04001838 if (edma_err_cause & EDMA_ERR_DEV) {
1839 /*
1840 * Device errors during FIS-based switching operation
1841 * require special handling.
1842 */
1843 if (mv_handle_dev_err(ap, edma_err_cause))
1844 return;
1845 }
1846
Mark Lord37b90462008-05-02 02:12:34 -04001847 qc = mv_get_active_qc(ap);
1848 ata_ehi_clear_desc(ehi);
1849 ata_ehi_push_desc(ehi, "edma_err_cause=%08x pp_flags=%08x",
1850 edma_err_cause, pp->pp_flags);
Mark Lorde4006072008-05-14 09:19:30 -04001851
1852 if (IS_GEN_IIE(hpriv) && (edma_err_cause & EDMA_ERR_TRANS_IRQ_7))
1853 ata_ehi_push_desc(ehi, "fis_cause=%08x", fis_cause);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001854 /*
Mark Lord352fab72008-04-19 14:43:42 -04001855 * All generations share these EDMA error cause bits:
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001856 */
Mark Lord37b90462008-05-02 02:12:34 -04001857 if (edma_err_cause & EDMA_ERR_DEV) {
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001858 err_mask |= AC_ERR_DEV;
Mark Lord37b90462008-05-02 02:12:34 -04001859 action |= ATA_EH_RESET;
1860 ata_ehi_push_desc(ehi, "dev error");
1861 }
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001862 if (edma_err_cause & (EDMA_ERR_D_PAR | EDMA_ERR_PRD_PAR |
Jeff Garzik6c1153e2007-07-13 15:20:15 -04001863 EDMA_ERR_CRQB_PAR | EDMA_ERR_CRPB_PAR |
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001864 EDMA_ERR_INTRL_PAR)) {
1865 err_mask |= AC_ERR_ATA_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09001866 action |= ATA_EH_RESET;
Tejun Heob64bbc32007-07-16 14:29:39 +09001867 ata_ehi_push_desc(ehi, "parity error");
Brett Russafb0edd2005-10-05 17:08:42 -04001868 }
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001869 if (edma_err_cause & (EDMA_ERR_DEV_DCON | EDMA_ERR_DEV_CON)) {
1870 ata_ehi_hotplugged(ehi);
1871 ata_ehi_push_desc(ehi, edma_err_cause & EDMA_ERR_DEV_DCON ?
Tejun Heob64bbc32007-07-16 14:29:39 +09001872 "dev disconnect" : "dev connect");
Tejun Heocf480622008-01-24 00:05:14 +09001873 action |= ATA_EH_RESET;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001874 }
1875
Mark Lord352fab72008-04-19 14:43:42 -04001876 /*
1877 * Gen-I has a different SELF_DIS bit,
1878 * different FREEZE bits, and no SERR bit:
1879 */
Jeff Garzikee9ccdf2007-07-12 15:51:22 -04001880 if (IS_GEN_I(hpriv)) {
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001881 eh_freeze_mask = EDMA_EH_FREEZE_5;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001882 if (edma_err_cause & EDMA_ERR_SELF_DIS_5) {
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001883 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
Tejun Heob64bbc32007-07-16 14:29:39 +09001884 ata_ehi_push_desc(ehi, "EDMA self-disable");
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001885 }
1886 } else {
1887 eh_freeze_mask = EDMA_EH_FREEZE;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001888 if (edma_err_cause & EDMA_ERR_SELF_DIS) {
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001889 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
Tejun Heob64bbc32007-07-16 14:29:39 +09001890 ata_ehi_push_desc(ehi, "EDMA self-disable");
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001891 }
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001892 if (edma_err_cause & EDMA_ERR_SERR) {
Mark Lord8d073792008-04-19 15:07:49 -04001893 ata_ehi_push_desc(ehi, "SError=%08x", serr);
1894 err_mask |= AC_ERR_ATA_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09001895 action |= ATA_EH_RESET;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001896 }
1897 }
Brett Russ20f733e2005-09-01 18:26:17 -04001898
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001899 if (!err_mask) {
1900 err_mask = AC_ERR_OTHER;
Tejun Heocf480622008-01-24 00:05:14 +09001901 action |= ATA_EH_RESET;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001902 }
1903
1904 ehi->serror |= serr;
1905 ehi->action |= action;
1906
1907 if (qc)
1908 qc->err_mask |= err_mask;
1909 else
1910 ehi->err_mask |= err_mask;
1911
Mark Lord37b90462008-05-02 02:12:34 -04001912 if (err_mask == AC_ERR_DEV) {
1913 /*
1914 * Cannot do ata_port_freeze() here,
1915 * because it would kill PIO access,
1916 * which is needed for further diagnosis.
1917 */
1918 mv_eh_freeze(ap);
1919 abort = 1;
1920 } else if (edma_err_cause & eh_freeze_mask) {
1921 /*
1922 * Note to self: ata_port_freeze() calls ata_port_abort()
1923 */
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001924 ata_port_freeze(ap);
Mark Lord37b90462008-05-02 02:12:34 -04001925 } else {
1926 abort = 1;
1927 }
1928
1929 if (abort) {
1930 if (qc)
1931 ata_link_abort(qc->dev->link);
1932 else
1933 ata_port_abort(ap);
1934 }
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001935}
1936
Mark Lordfcfb1f72008-04-19 15:06:40 -04001937static void mv_process_crpb_response(struct ata_port *ap,
1938 struct mv_crpb *response, unsigned int tag, int ncq_enabled)
1939{
1940 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, tag);
1941
1942 if (qc) {
1943 u8 ata_status;
1944 u16 edma_status = le16_to_cpu(response->flags);
1945 /*
1946 * edma_status from a response queue entry:
1947 * LSB is from EDMA_ERR_IRQ_CAUSE_OFS (non-NCQ only).
1948 * MSB is saved ATA status from command completion.
1949 */
1950 if (!ncq_enabled) {
1951 u8 err_cause = edma_status & 0xff & ~EDMA_ERR_DEV;
1952 if (err_cause) {
1953 /*
1954 * Error will be seen/handled by mv_err_intr().
1955 * So do nothing at all here.
1956 */
1957 return;
1958 }
1959 }
1960 ata_status = edma_status >> CRPB_FLAG_STATUS_SHIFT;
Mark Lord37b90462008-05-02 02:12:34 -04001961 if (!ac_err_mask(ata_status))
1962 ata_qc_complete(qc);
1963 /* else: leave it for mv_err_intr() */
Mark Lordfcfb1f72008-04-19 15:06:40 -04001964 } else {
1965 ata_port_printk(ap, KERN_ERR, "%s: no qc for tag=%d\n",
1966 __func__, tag);
1967 }
1968}
1969
1970static void mv_process_crpb_entries(struct ata_port *ap, struct mv_port_priv *pp)
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001971{
1972 void __iomem *port_mmio = mv_ap_base(ap);
1973 struct mv_host_priv *hpriv = ap->host->private_data;
Mark Lordfcfb1f72008-04-19 15:06:40 -04001974 u32 in_index;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001975 bool work_done = false;
Mark Lordfcfb1f72008-04-19 15:06:40 -04001976 int ncq_enabled = (pp->pp_flags & MV_PP_FLAG_NCQ_EN);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001977
Mark Lordfcfb1f72008-04-19 15:06:40 -04001978 /* Get the hardware queue position index */
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001979 in_index = (readl(port_mmio + EDMA_RSP_Q_IN_PTR_OFS)
1980 >> EDMA_RSP_Q_PTR_SHIFT) & MV_MAX_Q_DEPTH_MASK;
1981
Mark Lordfcfb1f72008-04-19 15:06:40 -04001982 /* Process new responses from since the last time we looked */
1983 while (in_index != pp->resp_idx) {
Jeff Garzik6c1153e2007-07-13 15:20:15 -04001984 unsigned int tag;
Mark Lordfcfb1f72008-04-19 15:06:40 -04001985 struct mv_crpb *response = &pp->crpb[pp->resp_idx];
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001986
Mark Lordfcfb1f72008-04-19 15:06:40 -04001987 pp->resp_idx = (pp->resp_idx + 1) & MV_MAX_Q_DEPTH_MASK;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001988
Mark Lordfcfb1f72008-04-19 15:06:40 -04001989 if (IS_GEN_I(hpriv)) {
1990 /* 50xx: no NCQ, only one command active at a time */
Tejun Heo9af5c9c2007-08-06 18:36:22 +09001991 tag = ap->link.active_tag;
Mark Lordfcfb1f72008-04-19 15:06:40 -04001992 } else {
1993 /* Gen II/IIE: get command tag from CRPB entry */
1994 tag = le16_to_cpu(response->id) & 0x1f;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001995 }
Mark Lordfcfb1f72008-04-19 15:06:40 -04001996 mv_process_crpb_response(ap, response, tag, ncq_enabled);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001997 work_done = true;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04001998 }
1999
Mark Lord352fab72008-04-19 14:43:42 -04002000 /* Update the software queue position index in hardware */
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002001 if (work_done)
2002 writelfl((pp->crpb_dma & EDMA_RSP_Q_BASE_LO_MASK) |
Mark Lordfcfb1f72008-04-19 15:06:40 -04002003 (pp->resp_idx << EDMA_RSP_Q_PTR_SHIFT),
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002004 port_mmio + EDMA_RSP_Q_OUT_PTR_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04002005}
2006
Mark Lorda9010322008-05-02 02:14:02 -04002007static void mv_port_intr(struct ata_port *ap, u32 port_cause)
2008{
2009 struct mv_port_priv *pp;
2010 int edma_was_enabled;
2011
2012 if (!ap || (ap->flags & ATA_FLAG_DISABLED)) {
2013 mv_unexpected_intr(ap, 0);
2014 return;
2015 }
2016 /*
2017 * Grab a snapshot of the EDMA_EN flag setting,
2018 * so that we have a consistent view for this port,
2019 * even if something we call of our routines changes it.
2020 */
2021 pp = ap->private_data;
2022 edma_was_enabled = (pp->pp_flags & MV_PP_FLAG_EDMA_EN);
2023 /*
2024 * Process completed CRPB response(s) before other events.
2025 */
2026 if (edma_was_enabled && (port_cause & DONE_IRQ)) {
2027 mv_process_crpb_entries(ap, pp);
Mark Lord4c299ca2008-05-02 02:16:20 -04002028 if (pp->pp_flags & MV_PP_FLAG_DELAYED_EH)
2029 mv_handle_fbs_ncq_dev_err(ap);
Mark Lorda9010322008-05-02 02:14:02 -04002030 }
2031 /*
2032 * Handle chip-reported errors, or continue on to handle PIO.
2033 */
2034 if (unlikely(port_cause & ERR_IRQ)) {
2035 mv_err_intr(ap);
2036 } else if (!edma_was_enabled) {
2037 struct ata_queued_cmd *qc = mv_get_active_qc(ap);
2038 if (qc)
2039 ata_sff_host_intr(ap, qc);
2040 else
2041 mv_unexpected_intr(ap, edma_was_enabled);
2042 }
2043}
2044
Brett Russ05b308e2005-10-05 17:08:53 -04002045/**
2046 * mv_host_intr - Handle all interrupts on the given host controller
Jeff Garzikcca39742006-08-24 03:19:22 -04002047 * @host: host specific structure
Mark Lord7368f912008-04-25 11:24:24 -04002048 * @main_irq_cause: Main interrupt cause register for the chip.
Brett Russ05b308e2005-10-05 17:08:53 -04002049 *
2050 * LOCKING:
2051 * Inherited from caller.
2052 */
Mark Lord7368f912008-04-25 11:24:24 -04002053static int mv_host_intr(struct ata_host *host, u32 main_irq_cause)
Brett Russ20f733e2005-09-01 18:26:17 -04002054{
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002055 struct mv_host_priv *hpriv = host->private_data;
Mark Lordeabd5eb2008-05-02 02:13:27 -04002056 void __iomem *mmio = hpriv->base, *hc_mmio;
Mark Lorda3718c12008-04-19 15:07:18 -04002057 unsigned int handled = 0, port;
Brett Russ20f733e2005-09-01 18:26:17 -04002058
Mark Lorda3718c12008-04-19 15:07:18 -04002059 for (port = 0; port < hpriv->n_ports; port++) {
Jeff Garzikcca39742006-08-24 03:19:22 -04002060 struct ata_port *ap = host->ports[port];
Mark Lordeabd5eb2008-05-02 02:13:27 -04002061 unsigned int p, shift, hardport, port_cause;
2062
Mark Lorda3718c12008-04-19 15:07:18 -04002063 MV_PORT_TO_SHIFT_AND_HARDPORT(port, shift, hardport);
Mark Lorda3718c12008-04-19 15:07:18 -04002064 /*
Mark Lordeabd5eb2008-05-02 02:13:27 -04002065 * Each hc within the host has its own hc_irq_cause register,
2066 * where the interrupting ports bits get ack'd.
Mark Lorda3718c12008-04-19 15:07:18 -04002067 */
Mark Lordeabd5eb2008-05-02 02:13:27 -04002068 if (hardport == 0) { /* first port on this hc ? */
2069 u32 hc_cause = (main_irq_cause >> shift) & HC0_IRQ_PEND;
2070 u32 port_mask, ack_irqs;
2071 /*
2072 * Skip this entire hc if nothing pending for any ports
2073 */
2074 if (!hc_cause) {
2075 port += MV_PORTS_PER_HC - 1;
2076 continue;
2077 }
2078 /*
2079 * We don't need/want to read the hc_irq_cause register,
2080 * because doing so hurts performance, and
2081 * main_irq_cause already gives us everything we need.
2082 *
2083 * But we do have to *write* to the hc_irq_cause to ack
2084 * the ports that we are handling this time through.
2085 *
2086 * This requires that we create a bitmap for those
2087 * ports which interrupted us, and use that bitmap
2088 * to ack (only) those ports via hc_irq_cause.
2089 */
2090 ack_irqs = 0;
2091 for (p = 0; p < MV_PORTS_PER_HC; ++p) {
2092 if ((port + p) >= hpriv->n_ports)
2093 break;
2094 port_mask = (DONE_IRQ | ERR_IRQ) << (p * 2);
2095 if (hc_cause & port_mask)
2096 ack_irqs |= (DMA_IRQ | DEV_IRQ) << p;
2097 }
Mark Lorda3718c12008-04-19 15:07:18 -04002098 hc_mmio = mv_hc_base_from_port(mmio, port);
Mark Lordeabd5eb2008-05-02 02:13:27 -04002099 writelfl(~ack_irqs, hc_mmio + HC_IRQ_CAUSE_OFS);
Mark Lorda3718c12008-04-19 15:07:18 -04002100 handled = 1;
2101 }
Mark Lorda9010322008-05-02 02:14:02 -04002102 /*
2103 * Handle interrupts signalled for this port:
2104 */
Mark Lordeabd5eb2008-05-02 02:13:27 -04002105 port_cause = (main_irq_cause >> shift) & (DONE_IRQ | ERR_IRQ);
Mark Lorda9010322008-05-02 02:14:02 -04002106 if (port_cause)
2107 mv_port_intr(ap, port_cause);
Brett Russ20f733e2005-09-01 18:26:17 -04002108 }
Mark Lorda3718c12008-04-19 15:07:18 -04002109 return handled;
Brett Russ20f733e2005-09-01 18:26:17 -04002110}
2111
Mark Lorda3718c12008-04-19 15:07:18 -04002112static int mv_pci_error(struct ata_host *host, void __iomem *mmio)
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002113{
Mark Lord02a121d2007-12-01 13:07:22 -05002114 struct mv_host_priv *hpriv = host->private_data;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002115 struct ata_port *ap;
2116 struct ata_queued_cmd *qc;
2117 struct ata_eh_info *ehi;
2118 unsigned int i, err_mask, printed = 0;
2119 u32 err_cause;
2120
Mark Lord02a121d2007-12-01 13:07:22 -05002121 err_cause = readl(mmio + hpriv->irq_cause_ofs);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002122
2123 dev_printk(KERN_ERR, host->dev, "PCI ERROR; PCI IRQ cause=0x%08x\n",
2124 err_cause);
2125
2126 DPRINTK("All regs @ PCI error\n");
2127 mv_dump_all_regs(mmio, -1, to_pci_dev(host->dev));
2128
Mark Lord02a121d2007-12-01 13:07:22 -05002129 writelfl(0, mmio + hpriv->irq_cause_ofs);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002130
2131 for (i = 0; i < host->n_ports; i++) {
2132 ap = host->ports[i];
Tejun Heo936fd732007-08-06 18:36:23 +09002133 if (!ata_link_offline(&ap->link)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002134 ehi = &ap->link.eh_info;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002135 ata_ehi_clear_desc(ehi);
2136 if (!printed++)
2137 ata_ehi_push_desc(ehi,
2138 "PCI err cause 0x%08x", err_cause);
2139 err_mask = AC_ERR_HOST_BUS;
Tejun Heocf480622008-01-24 00:05:14 +09002140 ehi->action = ATA_EH_RESET;
Tejun Heo9af5c9c2007-08-06 18:36:22 +09002141 qc = ata_qc_from_tag(ap, ap->link.active_tag);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002142 if (qc)
2143 qc->err_mask |= err_mask;
2144 else
2145 ehi->err_mask |= err_mask;
2146
2147 ata_port_freeze(ap);
2148 }
2149 }
Mark Lorda3718c12008-04-19 15:07:18 -04002150 return 1; /* handled */
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002151}
2152
Brett Russ05b308e2005-10-05 17:08:53 -04002153/**
Jeff Garzikc5d3e452007-07-11 18:30:50 -04002154 * mv_interrupt - Main interrupt event handler
Brett Russ05b308e2005-10-05 17:08:53 -04002155 * @irq: unused
2156 * @dev_instance: private data; in this case the host structure
Brett Russ05b308e2005-10-05 17:08:53 -04002157 *
2158 * Read the read only register to determine if any host
2159 * controllers have pending interrupts. If so, call lower level
2160 * routine to handle. Also check for PCI errors which are only
2161 * reported here.
2162 *
Jeff Garzik8b260242005-11-12 12:32:50 -05002163 * LOCKING:
Jeff Garzikcca39742006-08-24 03:19:22 -04002164 * This routine holds the host lock while processing pending
Brett Russ05b308e2005-10-05 17:08:53 -04002165 * interrupts.
2166 */
David Howells7d12e782006-10-05 14:55:46 +01002167static irqreturn_t mv_interrupt(int irq, void *dev_instance)
Brett Russ20f733e2005-09-01 18:26:17 -04002168{
Jeff Garzikcca39742006-08-24 03:19:22 -04002169 struct ata_host *host = dev_instance;
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002170 struct mv_host_priv *hpriv = host->private_data;
Mark Lorda3718c12008-04-19 15:07:18 -04002171 unsigned int handled = 0;
Mark Lord7368f912008-04-25 11:24:24 -04002172 u32 main_irq_cause, main_irq_mask;
Brett Russ20f733e2005-09-01 18:26:17 -04002173
Mark Lord646a4da2008-01-26 18:30:37 -05002174 spin_lock(&host->lock);
Mark Lord7368f912008-04-25 11:24:24 -04002175 main_irq_cause = readl(hpriv->main_irq_cause_addr);
2176 main_irq_mask = readl(hpriv->main_irq_mask_addr);
Mark Lord352fab72008-04-19 14:43:42 -04002177 /*
2178 * Deal with cases where we either have nothing pending, or have read
2179 * a bogus register value which can indicate HW removal or PCI fault.
Brett Russ20f733e2005-09-01 18:26:17 -04002180 */
Mark Lord7368f912008-04-25 11:24:24 -04002181 if ((main_irq_cause & main_irq_mask) && (main_irq_cause != 0xffffffffU)) {
2182 if (unlikely((main_irq_cause & PCI_ERR) && HAS_PCI(host)))
Mark Lorda3718c12008-04-19 15:07:18 -04002183 handled = mv_pci_error(host, hpriv->base);
2184 else
Mark Lord7368f912008-04-25 11:24:24 -04002185 handled = mv_host_intr(host, main_irq_cause);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002186 }
Jeff Garzikcca39742006-08-24 03:19:22 -04002187 spin_unlock(&host->lock);
Brett Russ20f733e2005-09-01 18:26:17 -04002188 return IRQ_RETVAL(handled);
2189}
2190
Jeff Garzikc9d39132005-11-13 17:47:51 -05002191static unsigned int mv5_scr_offset(unsigned int sc_reg_in)
2192{
2193 unsigned int ofs;
2194
2195 switch (sc_reg_in) {
2196 case SCR_STATUS:
2197 case SCR_ERROR:
2198 case SCR_CONTROL:
2199 ofs = sc_reg_in * sizeof(u32);
2200 break;
2201 default:
2202 ofs = 0xffffffffU;
2203 break;
2204 }
2205 return ofs;
2206}
2207
Tejun Heoda3dbb12007-07-16 14:29:40 +09002208static int mv5_scr_read(struct ata_port *ap, unsigned int sc_reg_in, u32 *val)
Jeff Garzikc9d39132005-11-13 17:47:51 -05002209{
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002210 struct mv_host_priv *hpriv = ap->host->private_data;
2211 void __iomem *mmio = hpriv->base;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002212 void __iomem *addr = mv5_phy_base(mmio, ap->port_no);
Jeff Garzikc9d39132005-11-13 17:47:51 -05002213 unsigned int ofs = mv5_scr_offset(sc_reg_in);
2214
Tejun Heoda3dbb12007-07-16 14:29:40 +09002215 if (ofs != 0xffffffffU) {
2216 *val = readl(addr + ofs);
2217 return 0;
2218 } else
2219 return -EINVAL;
Jeff Garzikc9d39132005-11-13 17:47:51 -05002220}
2221
Tejun Heoda3dbb12007-07-16 14:29:40 +09002222static int mv5_scr_write(struct ata_port *ap, unsigned int sc_reg_in, u32 val)
Jeff Garzikc9d39132005-11-13 17:47:51 -05002223{
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002224 struct mv_host_priv *hpriv = ap->host->private_data;
2225 void __iomem *mmio = hpriv->base;
Tejun Heo0d5ff562007-02-01 15:06:36 +09002226 void __iomem *addr = mv5_phy_base(mmio, ap->port_no);
Jeff Garzikc9d39132005-11-13 17:47:51 -05002227 unsigned int ofs = mv5_scr_offset(sc_reg_in);
2228
Tejun Heoda3dbb12007-07-16 14:29:40 +09002229 if (ofs != 0xffffffffU) {
Tejun Heo0d5ff562007-02-01 15:06:36 +09002230 writelfl(val, addr + ofs);
Tejun Heoda3dbb12007-07-16 14:29:40 +09002231 return 0;
2232 } else
2233 return -EINVAL;
Jeff Garzikc9d39132005-11-13 17:47:51 -05002234}
2235
Saeed Bishara7bb3c522008-01-30 11:50:45 -11002236static void mv5_reset_bus(struct ata_host *host, void __iomem *mmio)
Jeff Garzik522479f2005-11-12 22:14:02 -05002237{
Saeed Bishara7bb3c522008-01-30 11:50:45 -11002238 struct pci_dev *pdev = to_pci_dev(host->dev);
Jeff Garzik522479f2005-11-12 22:14:02 -05002239 int early_5080;
2240
Auke Kok44c10132007-06-08 15:46:36 -07002241 early_5080 = (pdev->device == 0x5080) && (pdev->revision == 0);
Jeff Garzik522479f2005-11-12 22:14:02 -05002242
2243 if (!early_5080) {
2244 u32 tmp = readl(mmio + MV_PCI_EXP_ROM_BAR_CTL);
2245 tmp |= (1 << 0);
2246 writel(tmp, mmio + MV_PCI_EXP_ROM_BAR_CTL);
2247 }
2248
Saeed Bishara7bb3c522008-01-30 11:50:45 -11002249 mv_reset_pci_bus(host, mmio);
Jeff Garzik522479f2005-11-12 22:14:02 -05002250}
2251
2252static void mv5_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio)
2253{
Mark Lord8e7decd2008-05-02 02:07:51 -04002254 writel(0x0fcfffff, mmio + MV_FLASH_CTL_OFS);
Jeff Garzik522479f2005-11-12 22:14:02 -05002255}
2256
Jeff Garzik47c2b672005-11-12 21:13:17 -05002257static void mv5_read_preamp(struct mv_host_priv *hpriv, int idx,
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05002258 void __iomem *mmio)
2259{
Jeff Garzikc9d39132005-11-13 17:47:51 -05002260 void __iomem *phy_mmio = mv5_phy_base(mmio, idx);
2261 u32 tmp;
2262
2263 tmp = readl(phy_mmio + MV5_PHY_MODE);
2264
2265 hpriv->signal[idx].pre = tmp & 0x1800; /* bits 12:11 */
2266 hpriv->signal[idx].amps = tmp & 0xe0; /* bits 7:5 */
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05002267}
2268
Jeff Garzik47c2b672005-11-12 21:13:17 -05002269static void mv5_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio)
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05002270{
Jeff Garzik522479f2005-11-12 22:14:02 -05002271 u32 tmp;
2272
Mark Lord8e7decd2008-05-02 02:07:51 -04002273 writel(0, mmio + MV_GPIO_PORT_CTL_OFS);
Jeff Garzik522479f2005-11-12 22:14:02 -05002274
2275 /* FIXME: handle MV_HP_ERRATA_50XXB2 errata */
2276
2277 tmp = readl(mmio + MV_PCI_EXP_ROM_BAR_CTL);
2278 tmp |= ~(1 << 0);
2279 writel(tmp, mmio + MV_PCI_EXP_ROM_BAR_CTL);
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05002280}
2281
Jeff Garzik2a47ce02005-11-12 23:05:14 -05002282static void mv5_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
2283 unsigned int port)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002284{
Jeff Garzikc9d39132005-11-13 17:47:51 -05002285 void __iomem *phy_mmio = mv5_phy_base(mmio, port);
2286 const u32 mask = (1<<12) | (1<<11) | (1<<7) | (1<<6) | (1<<5);
2287 u32 tmp;
2288 int fix_apm_sq = (hpriv->hp_flags & MV_HP_ERRATA_50XXB0);
2289
2290 if (fix_apm_sq) {
Mark Lord8e7decd2008-05-02 02:07:51 -04002291 tmp = readl(phy_mmio + MV5_LTMODE_OFS);
Jeff Garzikc9d39132005-11-13 17:47:51 -05002292 tmp |= (1 << 19);
Mark Lord8e7decd2008-05-02 02:07:51 -04002293 writel(tmp, phy_mmio + MV5_LTMODE_OFS);
Jeff Garzikc9d39132005-11-13 17:47:51 -05002294
Mark Lord8e7decd2008-05-02 02:07:51 -04002295 tmp = readl(phy_mmio + MV5_PHY_CTL_OFS);
Jeff Garzikc9d39132005-11-13 17:47:51 -05002296 tmp &= ~0x3;
2297 tmp |= 0x1;
Mark Lord8e7decd2008-05-02 02:07:51 -04002298 writel(tmp, phy_mmio + MV5_PHY_CTL_OFS);
Jeff Garzikc9d39132005-11-13 17:47:51 -05002299 }
2300
2301 tmp = readl(phy_mmio + MV5_PHY_MODE);
2302 tmp &= ~mask;
2303 tmp |= hpriv->signal[port].pre;
2304 tmp |= hpriv->signal[port].amps;
2305 writel(tmp, phy_mmio + MV5_PHY_MODE);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002306}
2307
Jeff Garzikc9d39132005-11-13 17:47:51 -05002308
2309#undef ZERO
2310#define ZERO(reg) writel(0, port_mmio + (reg))
2311static void mv5_reset_hc_port(struct mv_host_priv *hpriv, void __iomem *mmio,
2312 unsigned int port)
Jeff Garzik47c2b672005-11-12 21:13:17 -05002313{
Jeff Garzikc9d39132005-11-13 17:47:51 -05002314 void __iomem *port_mmio = mv_port_base(mmio, port);
2315
Mark Lorde12bef52008-03-31 19:33:56 -04002316 mv_reset_channel(hpriv, mmio, port);
Jeff Garzikc9d39132005-11-13 17:47:51 -05002317
2318 ZERO(0x028); /* command */
2319 writel(0x11f, port_mmio + EDMA_CFG_OFS);
2320 ZERO(0x004); /* timer */
2321 ZERO(0x008); /* irq err cause */
2322 ZERO(0x00c); /* irq err mask */
2323 ZERO(0x010); /* rq bah */
2324 ZERO(0x014); /* rq inp */
2325 ZERO(0x018); /* rq outp */
2326 ZERO(0x01c); /* respq bah */
2327 ZERO(0x024); /* respq outp */
2328 ZERO(0x020); /* respq inp */
2329 ZERO(0x02c); /* test control */
Mark Lord8e7decd2008-05-02 02:07:51 -04002330 writel(0xbc, port_mmio + EDMA_IORDY_TMOUT_OFS);
Jeff Garzikc9d39132005-11-13 17:47:51 -05002331}
2332#undef ZERO
2333
2334#define ZERO(reg) writel(0, hc_mmio + (reg))
2335static void mv5_reset_one_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
2336 unsigned int hc)
2337{
2338 void __iomem *hc_mmio = mv_hc_base(mmio, hc);
2339 u32 tmp;
2340
2341 ZERO(0x00c);
2342 ZERO(0x010);
2343 ZERO(0x014);
2344 ZERO(0x018);
2345
2346 tmp = readl(hc_mmio + 0x20);
2347 tmp &= 0x1c1c1c1c;
2348 tmp |= 0x03030303;
2349 writel(tmp, hc_mmio + 0x20);
2350}
2351#undef ZERO
2352
2353static int mv5_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
2354 unsigned int n_hc)
2355{
2356 unsigned int hc, port;
2357
2358 for (hc = 0; hc < n_hc; hc++) {
2359 for (port = 0; port < MV_PORTS_PER_HC; port++)
2360 mv5_reset_hc_port(hpriv, mmio,
2361 (hc * MV_PORTS_PER_HC) + port);
2362
2363 mv5_reset_one_hc(hpriv, mmio, hc);
2364 }
2365
2366 return 0;
Jeff Garzik47c2b672005-11-12 21:13:17 -05002367}
2368
Jeff Garzik101ffae2005-11-12 22:17:49 -05002369#undef ZERO
2370#define ZERO(reg) writel(0, mmio + (reg))
Saeed Bishara7bb3c522008-01-30 11:50:45 -11002371static void mv_reset_pci_bus(struct ata_host *host, void __iomem *mmio)
Jeff Garzik101ffae2005-11-12 22:17:49 -05002372{
Mark Lord02a121d2007-12-01 13:07:22 -05002373 struct mv_host_priv *hpriv = host->private_data;
Jeff Garzik101ffae2005-11-12 22:17:49 -05002374 u32 tmp;
2375
Mark Lord8e7decd2008-05-02 02:07:51 -04002376 tmp = readl(mmio + MV_PCI_MODE_OFS);
Jeff Garzik101ffae2005-11-12 22:17:49 -05002377 tmp &= 0xff00ffff;
Mark Lord8e7decd2008-05-02 02:07:51 -04002378 writel(tmp, mmio + MV_PCI_MODE_OFS);
Jeff Garzik101ffae2005-11-12 22:17:49 -05002379
2380 ZERO(MV_PCI_DISC_TIMER);
2381 ZERO(MV_PCI_MSI_TRIGGER);
Mark Lord8e7decd2008-05-02 02:07:51 -04002382 writel(0x000100ff, mmio + MV_PCI_XBAR_TMOUT_OFS);
Mark Lord7368f912008-04-25 11:24:24 -04002383 ZERO(PCI_HC_MAIN_IRQ_MASK_OFS);
Jeff Garzik101ffae2005-11-12 22:17:49 -05002384 ZERO(MV_PCI_SERR_MASK);
Mark Lord02a121d2007-12-01 13:07:22 -05002385 ZERO(hpriv->irq_cause_ofs);
2386 ZERO(hpriv->irq_mask_ofs);
Jeff Garzik101ffae2005-11-12 22:17:49 -05002387 ZERO(MV_PCI_ERR_LOW_ADDRESS);
2388 ZERO(MV_PCI_ERR_HIGH_ADDRESS);
2389 ZERO(MV_PCI_ERR_ATTRIBUTE);
2390 ZERO(MV_PCI_ERR_COMMAND);
2391}
2392#undef ZERO
2393
2394static void mv6_reset_flash(struct mv_host_priv *hpriv, void __iomem *mmio)
2395{
2396 u32 tmp;
2397
2398 mv5_reset_flash(hpriv, mmio);
2399
Mark Lord8e7decd2008-05-02 02:07:51 -04002400 tmp = readl(mmio + MV_GPIO_PORT_CTL_OFS);
Jeff Garzik101ffae2005-11-12 22:17:49 -05002401 tmp &= 0x3;
2402 tmp |= (1 << 5) | (1 << 6);
Mark Lord8e7decd2008-05-02 02:07:51 -04002403 writel(tmp, mmio + MV_GPIO_PORT_CTL_OFS);
Jeff Garzik101ffae2005-11-12 22:17:49 -05002404}
2405
2406/**
2407 * mv6_reset_hc - Perform the 6xxx global soft reset
2408 * @mmio: base address of the HBA
2409 *
2410 * This routine only applies to 6xxx parts.
2411 *
2412 * LOCKING:
2413 * Inherited from caller.
2414 */
Jeff Garzikc9d39132005-11-13 17:47:51 -05002415static int mv6_reset_hc(struct mv_host_priv *hpriv, void __iomem *mmio,
2416 unsigned int n_hc)
Jeff Garzik101ffae2005-11-12 22:17:49 -05002417{
2418 void __iomem *reg = mmio + PCI_MAIN_CMD_STS_OFS;
2419 int i, rc = 0;
2420 u32 t;
2421
2422 /* Following procedure defined in PCI "main command and status
2423 * register" table.
2424 */
2425 t = readl(reg);
2426 writel(t | STOP_PCI_MASTER, reg);
2427
2428 for (i = 0; i < 1000; i++) {
2429 udelay(1);
2430 t = readl(reg);
Jeff Garzik2dcb4072007-10-19 06:42:56 -04002431 if (PCI_MASTER_EMPTY & t)
Jeff Garzik101ffae2005-11-12 22:17:49 -05002432 break;
Jeff Garzik101ffae2005-11-12 22:17:49 -05002433 }
2434 if (!(PCI_MASTER_EMPTY & t)) {
2435 printk(KERN_ERR DRV_NAME ": PCI master won't flush\n");
2436 rc = 1;
2437 goto done;
2438 }
2439
2440 /* set reset */
2441 i = 5;
2442 do {
2443 writel(t | GLOB_SFT_RST, reg);
2444 t = readl(reg);
2445 udelay(1);
2446 } while (!(GLOB_SFT_RST & t) && (i-- > 0));
2447
2448 if (!(GLOB_SFT_RST & t)) {
2449 printk(KERN_ERR DRV_NAME ": can't set global reset\n");
2450 rc = 1;
2451 goto done;
2452 }
2453
2454 /* clear reset and *reenable the PCI master* (not mentioned in spec) */
2455 i = 5;
2456 do {
2457 writel(t & ~(GLOB_SFT_RST | STOP_PCI_MASTER), reg);
2458 t = readl(reg);
2459 udelay(1);
2460 } while ((GLOB_SFT_RST & t) && (i-- > 0));
2461
2462 if (GLOB_SFT_RST & t) {
2463 printk(KERN_ERR DRV_NAME ": can't clear global reset\n");
2464 rc = 1;
2465 }
2466done:
2467 return rc;
2468}
2469
Jeff Garzik47c2b672005-11-12 21:13:17 -05002470static void mv6_read_preamp(struct mv_host_priv *hpriv, int idx,
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05002471 void __iomem *mmio)
2472{
2473 void __iomem *port_mmio;
2474 u32 tmp;
2475
Mark Lord8e7decd2008-05-02 02:07:51 -04002476 tmp = readl(mmio + MV_RESET_CFG_OFS);
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05002477 if ((tmp & (1 << 0)) == 0) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05002478 hpriv->signal[idx].amps = 0x7 << 8;
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05002479 hpriv->signal[idx].pre = 0x1 << 5;
2480 return;
2481 }
2482
2483 port_mmio = mv_port_base(mmio, idx);
2484 tmp = readl(port_mmio + PHY_MODE2);
2485
2486 hpriv->signal[idx].amps = tmp & 0x700; /* bits 10:8 */
2487 hpriv->signal[idx].pre = tmp & 0xe0; /* bits 7:5 */
2488}
2489
Jeff Garzik47c2b672005-11-12 21:13:17 -05002490static void mv6_enable_leds(struct mv_host_priv *hpriv, void __iomem *mmio)
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05002491{
Mark Lord8e7decd2008-05-02 02:07:51 -04002492 writel(0x00000060, mmio + MV_GPIO_PORT_CTL_OFS);
Jeff Garzikba3fe8f2005-11-12 19:08:48 -05002493}
2494
Jeff Garzikc9d39132005-11-13 17:47:51 -05002495static void mv6_phy_errata(struct mv_host_priv *hpriv, void __iomem *mmio,
Jeff Garzik2a47ce02005-11-12 23:05:14 -05002496 unsigned int port)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002497{
Jeff Garzikc9d39132005-11-13 17:47:51 -05002498 void __iomem *port_mmio = mv_port_base(mmio, port);
2499
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002500 u32 hp_flags = hpriv->hp_flags;
Jeff Garzik47c2b672005-11-12 21:13:17 -05002501 int fix_phy_mode2 =
2502 hp_flags & (MV_HP_ERRATA_60X1B2 | MV_HP_ERRATA_60X1C0);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002503 int fix_phy_mode4 =
Jeff Garzik47c2b672005-11-12 21:13:17 -05002504 hp_flags & (MV_HP_ERRATA_60X1B2 | MV_HP_ERRATA_60X1C0);
2505 u32 m2, tmp;
2506
2507 if (fix_phy_mode2) {
2508 m2 = readl(port_mmio + PHY_MODE2);
2509 m2 &= ~(1 << 16);
2510 m2 |= (1 << 31);
2511 writel(m2, port_mmio + PHY_MODE2);
2512
2513 udelay(200);
2514
2515 m2 = readl(port_mmio + PHY_MODE2);
2516 m2 &= ~((1 << 16) | (1 << 31));
2517 writel(m2, port_mmio + PHY_MODE2);
2518
2519 udelay(200);
2520 }
2521
2522 /* who knows what this magic does */
2523 tmp = readl(port_mmio + PHY_MODE3);
2524 tmp &= ~0x7F800000;
2525 tmp |= 0x2A800000;
2526 writel(tmp, port_mmio + PHY_MODE3);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002527
2528 if (fix_phy_mode4) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05002529 u32 m4;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002530
2531 m4 = readl(port_mmio + PHY_MODE4);
Jeff Garzik47c2b672005-11-12 21:13:17 -05002532
2533 if (hp_flags & MV_HP_ERRATA_60X1B2)
Mark Lorde12bef52008-03-31 19:33:56 -04002534 tmp = readl(port_mmio + PHY_MODE3);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002535
Mark Lorde12bef52008-03-31 19:33:56 -04002536 /* workaround for errata FEr SATA#10 (part 1) */
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002537 m4 = (m4 & ~(1 << 1)) | (1 << 0);
2538
2539 writel(m4, port_mmio + PHY_MODE4);
Jeff Garzik47c2b672005-11-12 21:13:17 -05002540
2541 if (hp_flags & MV_HP_ERRATA_60X1B2)
Mark Lorde12bef52008-03-31 19:33:56 -04002542 writel(tmp, port_mmio + PHY_MODE3);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002543 }
2544
2545 /* Revert values of pre-emphasis and signal amps to the saved ones */
2546 m2 = readl(port_mmio + PHY_MODE2);
2547
2548 m2 &= ~MV_M2_PREAMP_MASK;
Jeff Garzik2a47ce02005-11-12 23:05:14 -05002549 m2 |= hpriv->signal[port].amps;
2550 m2 |= hpriv->signal[port].pre;
Jeff Garzik47c2b672005-11-12 21:13:17 -05002551 m2 &= ~(1 << 16);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002552
Jeff Garzike4e7b892006-01-31 12:18:41 -05002553 /* according to mvSata 3.6.1, some IIE values are fixed */
2554 if (IS_GEN_IIE(hpriv)) {
2555 m2 &= ~0xC30FF01F;
2556 m2 |= 0x0000900F;
2557 }
2558
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002559 writel(m2, port_mmio + PHY_MODE2);
2560}
2561
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002562/* TODO: use the generic LED interface to configure the SATA Presence */
2563/* & Acitivy LEDs on the board */
2564static void mv_soc_enable_leds(struct mv_host_priv *hpriv,
2565 void __iomem *mmio)
2566{
2567 return;
2568}
2569
2570static void mv_soc_read_preamp(struct mv_host_priv *hpriv, int idx,
2571 void __iomem *mmio)
2572{
2573 void __iomem *port_mmio;
2574 u32 tmp;
2575
2576 port_mmio = mv_port_base(mmio, idx);
2577 tmp = readl(port_mmio + PHY_MODE2);
2578
2579 hpriv->signal[idx].amps = tmp & 0x700; /* bits 10:8 */
2580 hpriv->signal[idx].pre = tmp & 0xe0; /* bits 7:5 */
2581}
2582
2583#undef ZERO
2584#define ZERO(reg) writel(0, port_mmio + (reg))
2585static void mv_soc_reset_hc_port(struct mv_host_priv *hpriv,
2586 void __iomem *mmio, unsigned int port)
2587{
2588 void __iomem *port_mmio = mv_port_base(mmio, port);
2589
Mark Lorde12bef52008-03-31 19:33:56 -04002590 mv_reset_channel(hpriv, mmio, port);
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002591
2592 ZERO(0x028); /* command */
2593 writel(0x101f, port_mmio + EDMA_CFG_OFS);
2594 ZERO(0x004); /* timer */
2595 ZERO(0x008); /* irq err cause */
2596 ZERO(0x00c); /* irq err mask */
2597 ZERO(0x010); /* rq bah */
2598 ZERO(0x014); /* rq inp */
2599 ZERO(0x018); /* rq outp */
2600 ZERO(0x01c); /* respq bah */
2601 ZERO(0x024); /* respq outp */
2602 ZERO(0x020); /* respq inp */
2603 ZERO(0x02c); /* test control */
Mark Lord8e7decd2008-05-02 02:07:51 -04002604 writel(0xbc, port_mmio + EDMA_IORDY_TMOUT_OFS);
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002605}
2606
2607#undef ZERO
2608
2609#define ZERO(reg) writel(0, hc_mmio + (reg))
2610static void mv_soc_reset_one_hc(struct mv_host_priv *hpriv,
2611 void __iomem *mmio)
2612{
2613 void __iomem *hc_mmio = mv_hc_base(mmio, 0);
2614
2615 ZERO(0x00c);
2616 ZERO(0x010);
2617 ZERO(0x014);
2618
2619}
2620
2621#undef ZERO
2622
2623static int mv_soc_reset_hc(struct mv_host_priv *hpriv,
2624 void __iomem *mmio, unsigned int n_hc)
2625{
2626 unsigned int port;
2627
2628 for (port = 0; port < hpriv->n_ports; port++)
2629 mv_soc_reset_hc_port(hpriv, mmio, port);
2630
2631 mv_soc_reset_one_hc(hpriv, mmio);
2632
2633 return 0;
2634}
2635
2636static void mv_soc_reset_flash(struct mv_host_priv *hpriv,
2637 void __iomem *mmio)
2638{
2639 return;
2640}
2641
2642static void mv_soc_reset_bus(struct ata_host *host, void __iomem *mmio)
2643{
2644 return;
2645}
2646
Mark Lord8e7decd2008-05-02 02:07:51 -04002647static void mv_setup_ifcfg(void __iomem *port_mmio, int want_gen2i)
Mark Lordb67a1062008-03-31 19:35:13 -04002648{
Mark Lord8e7decd2008-05-02 02:07:51 -04002649 u32 ifcfg = readl(port_mmio + SATA_INTERFACE_CFG_OFS);
Mark Lordb67a1062008-03-31 19:35:13 -04002650
Mark Lord8e7decd2008-05-02 02:07:51 -04002651 ifcfg = (ifcfg & 0xf7f) | 0x9b1000; /* from chip spec */
Mark Lordb67a1062008-03-31 19:35:13 -04002652 if (want_gen2i)
Mark Lord8e7decd2008-05-02 02:07:51 -04002653 ifcfg |= (1 << 7); /* enable gen2i speed */
2654 writelfl(ifcfg, port_mmio + SATA_INTERFACE_CFG_OFS);
Mark Lordb67a1062008-03-31 19:35:13 -04002655}
2656
Mark Lorde12bef52008-03-31 19:33:56 -04002657static void mv_reset_channel(struct mv_host_priv *hpriv, void __iomem *mmio,
Jeff Garzikc9d39132005-11-13 17:47:51 -05002658 unsigned int port_no)
Brett Russ20f733e2005-09-01 18:26:17 -04002659{
Jeff Garzikc9d39132005-11-13 17:47:51 -05002660 void __iomem *port_mmio = mv_port_base(mmio, port_no);
Brett Russ20f733e2005-09-01 18:26:17 -04002661
Mark Lord8e7decd2008-05-02 02:07:51 -04002662 /*
2663 * The datasheet warns against setting EDMA_RESET when EDMA is active
2664 * (but doesn't say what the problem might be). So we first try
2665 * to disable the EDMA engine before doing the EDMA_RESET operation.
2666 */
Mark Lord0d8be5c2008-04-16 14:56:12 -04002667 mv_stop_edma_engine(port_mmio);
Mark Lord8e7decd2008-05-02 02:07:51 -04002668 writelfl(EDMA_RESET, port_mmio + EDMA_CMD_OFS);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002669
Mark Lordb67a1062008-03-31 19:35:13 -04002670 if (!IS_GEN_I(hpriv)) {
Mark Lord8e7decd2008-05-02 02:07:51 -04002671 /* Enable 3.0gb/s link speed: this survives EDMA_RESET */
2672 mv_setup_ifcfg(port_mmio, 1);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002673 }
Mark Lordb67a1062008-03-31 19:35:13 -04002674 /*
Mark Lord8e7decd2008-05-02 02:07:51 -04002675 * Strobing EDMA_RESET here causes a hard reset of the SATA transport,
Mark Lordb67a1062008-03-31 19:35:13 -04002676 * link, and physical layers. It resets all SATA interface registers
2677 * (except for SATA_INTERFACE_CFG), and issues a COMRESET to the dev.
Brett Russ20f733e2005-09-01 18:26:17 -04002678 */
Mark Lord8e7decd2008-05-02 02:07:51 -04002679 writelfl(EDMA_RESET, port_mmio + EDMA_CMD_OFS);
Mark Lordb67a1062008-03-31 19:35:13 -04002680 udelay(25); /* allow reset propagation */
Brett Russ31961942005-09-30 01:36:00 -04002681 writelfl(0, port_mmio + EDMA_CMD_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04002682
Jeff Garzikc9d39132005-11-13 17:47:51 -05002683 hpriv->ops->phy_errata(hpriv, mmio, port_no);
2684
Jeff Garzikee9ccdf2007-07-12 15:51:22 -04002685 if (IS_GEN_I(hpriv))
Jeff Garzikc9d39132005-11-13 17:47:51 -05002686 mdelay(1);
2687}
2688
Mark Lorde49856d2008-04-16 14:59:07 -04002689static void mv_pmp_select(struct ata_port *ap, int pmp)
Jeff Garzikc9d39132005-11-13 17:47:51 -05002690{
Mark Lorde49856d2008-04-16 14:59:07 -04002691 if (sata_pmp_supported(ap)) {
2692 void __iomem *port_mmio = mv_ap_base(ap);
2693 u32 reg = readl(port_mmio + SATA_IFCTL_OFS);
2694 int old = reg & 0xf;
Jeff Garzikc9d39132005-11-13 17:47:51 -05002695
Mark Lorde49856d2008-04-16 14:59:07 -04002696 if (old != pmp) {
2697 reg = (reg & ~0xf) | pmp;
2698 writelfl(reg, port_mmio + SATA_IFCTL_OFS);
2699 }
Tejun Heoda3dbb12007-07-16 14:29:40 +09002700 }
Brett Russ20f733e2005-09-01 18:26:17 -04002701}
2702
Mark Lorde49856d2008-04-16 14:59:07 -04002703static int mv_pmp_hardreset(struct ata_link *link, unsigned int *class,
2704 unsigned long deadline)
Jeff Garzik22374672005-11-17 10:59:48 -05002705{
Mark Lorde49856d2008-04-16 14:59:07 -04002706 mv_pmp_select(link->ap, sata_srst_pmp(link));
2707 return sata_std_hardreset(link, class, deadline);
2708}
Jeff Garzik0ea9e172007-07-13 17:06:45 -04002709
Mark Lorde49856d2008-04-16 14:59:07 -04002710static int mv_softreset(struct ata_link *link, unsigned int *class,
2711 unsigned long deadline)
2712{
2713 mv_pmp_select(link->ap, sata_srst_pmp(link));
2714 return ata_sff_softreset(link, class, deadline);
Jeff Garzik22374672005-11-17 10:59:48 -05002715}
2716
Tejun Heocc0680a2007-08-06 18:36:23 +09002717static int mv_hardreset(struct ata_link *link, unsigned int *class,
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002718 unsigned long deadline)
2719{
Tejun Heocc0680a2007-08-06 18:36:23 +09002720 struct ata_port *ap = link->ap;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002721 struct mv_host_priv *hpriv = ap->host->private_data;
Mark Lordb5624682008-03-31 19:34:40 -04002722 struct mv_port_priv *pp = ap->private_data;
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002723 void __iomem *mmio = hpriv->base;
Mark Lord0d8be5c2008-04-16 14:56:12 -04002724 int rc, attempts = 0, extra = 0;
2725 u32 sstatus;
2726 bool online;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002727
Mark Lorde12bef52008-03-31 19:33:56 -04002728 mv_reset_channel(hpriv, mmio, ap->port_no);
Mark Lordb5624682008-03-31 19:34:40 -04002729 pp->pp_flags &= ~MV_PP_FLAG_EDMA_EN;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002730
Mark Lord0d8be5c2008-04-16 14:56:12 -04002731 /* Workaround for errata FEr SATA#10 (part 2) */
2732 do {
Mark Lord17c5aab2008-04-16 14:56:51 -04002733 const unsigned long *timing =
2734 sata_ehc_deb_timing(&link->eh_context);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002735
Mark Lord17c5aab2008-04-16 14:56:51 -04002736 rc = sata_link_hardreset(link, timing, deadline + extra,
2737 &online, NULL);
Mark Lord9dcffd92008-05-14 09:18:12 -04002738 rc = online ? -EAGAIN : rc;
Mark Lord17c5aab2008-04-16 14:56:51 -04002739 if (rc)
Mark Lord0d8be5c2008-04-16 14:56:12 -04002740 return rc;
Mark Lord0d8be5c2008-04-16 14:56:12 -04002741 sata_scr_read(link, SCR_STATUS, &sstatus);
2742 if (!IS_GEN_I(hpriv) && ++attempts >= 5 && sstatus == 0x121) {
2743 /* Force 1.5gb/s link speed and try again */
Mark Lord8e7decd2008-05-02 02:07:51 -04002744 mv_setup_ifcfg(mv_ap_base(ap), 0);
Mark Lord0d8be5c2008-04-16 14:56:12 -04002745 if (time_after(jiffies + HZ, deadline))
2746 extra = HZ; /* only extend it once, max */
2747 }
2748 } while (sstatus != 0x0 && sstatus != 0x113 && sstatus != 0x123);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002749
Mark Lord17c5aab2008-04-16 14:56:51 -04002750 return rc;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002751}
2752
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002753static void mv_eh_freeze(struct ata_port *ap)
Brett Russ20f733e2005-09-01 18:26:17 -04002754{
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002755 struct mv_host_priv *hpriv = ap->host->private_data;
Mark Lord1cfd19a2008-04-19 15:05:50 -04002756 unsigned int shift, hardport, port = ap->port_no;
Mark Lord7368f912008-04-25 11:24:24 -04002757 u32 main_irq_mask;
Brett Russ31961942005-09-30 01:36:00 -04002758
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002759 /* FIXME: handle coalescing completion events properly */
Brett Russ31961942005-09-30 01:36:00 -04002760
Mark Lord1cfd19a2008-04-19 15:05:50 -04002761 mv_stop_edma(ap);
2762 MV_PORT_TO_SHIFT_AND_HARDPORT(port, shift, hardport);
Brett Russ31961942005-09-30 01:36:00 -04002763
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002764 /* disable assertion of portN err, done events */
Mark Lord7368f912008-04-25 11:24:24 -04002765 main_irq_mask = readl(hpriv->main_irq_mask_addr);
2766 main_irq_mask &= ~((DONE_IRQ | ERR_IRQ) << shift);
2767 writelfl(main_irq_mask, hpriv->main_irq_mask_addr);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002768}
2769
2770static void mv_eh_thaw(struct ata_port *ap)
2771{
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002772 struct mv_host_priv *hpriv = ap->host->private_data;
Mark Lord1cfd19a2008-04-19 15:05:50 -04002773 unsigned int shift, hardport, port = ap->port_no;
2774 void __iomem *hc_mmio = mv_hc_base_from_port(hpriv->base, port);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002775 void __iomem *port_mmio = mv_ap_base(ap);
Mark Lord7368f912008-04-25 11:24:24 -04002776 u32 main_irq_mask, hc_irq_cause;
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002777
2778 /* FIXME: handle coalescing completion events properly */
2779
Mark Lord1cfd19a2008-04-19 15:05:50 -04002780 MV_PORT_TO_SHIFT_AND_HARDPORT(port, shift, hardport);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002781
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002782 /* clear EDMA errors on this port */
2783 writel(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
2784
2785 /* clear pending irq events */
2786 hc_irq_cause = readl(hc_mmio + HC_IRQ_CAUSE_OFS);
Mark Lord1cfd19a2008-04-19 15:05:50 -04002787 hc_irq_cause &= ~((DEV_IRQ | DMA_IRQ) << hardport);
2788 writelfl(hc_irq_cause, hc_mmio + HC_IRQ_CAUSE_OFS);
Jeff Garzikbdd4ddd2007-07-12 14:34:26 -04002789
2790 /* enable assertion of portN err, done events */
Mark Lord7368f912008-04-25 11:24:24 -04002791 main_irq_mask = readl(hpriv->main_irq_mask_addr);
2792 main_irq_mask |= ((DONE_IRQ | ERR_IRQ) << shift);
2793 writelfl(main_irq_mask, hpriv->main_irq_mask_addr);
Brett Russ31961942005-09-30 01:36:00 -04002794}
2795
Brett Russ05b308e2005-10-05 17:08:53 -04002796/**
2797 * mv_port_init - Perform some early initialization on a single port.
2798 * @port: libata data structure storing shadow register addresses
2799 * @port_mmio: base address of the port
2800 *
2801 * Initialize shadow register mmio addresses, clear outstanding
2802 * interrupts on the port, and unmask interrupts for the future
2803 * start of the port.
2804 *
2805 * LOCKING:
2806 * Inherited from caller.
2807 */
Brett Russ31961942005-09-30 01:36:00 -04002808static void mv_port_init(struct ata_ioports *port, void __iomem *port_mmio)
2809{
Tejun Heo0d5ff562007-02-01 15:06:36 +09002810 void __iomem *shd_base = port_mmio + SHD_BLK_OFS;
Brett Russ31961942005-09-30 01:36:00 -04002811 unsigned serr_ofs;
2812
Jeff Garzik8b260242005-11-12 12:32:50 -05002813 /* PIO related setup
Brett Russ31961942005-09-30 01:36:00 -04002814 */
2815 port->data_addr = shd_base + (sizeof(u32) * ATA_REG_DATA);
Jeff Garzik8b260242005-11-12 12:32:50 -05002816 port->error_addr =
Brett Russ31961942005-09-30 01:36:00 -04002817 port->feature_addr = shd_base + (sizeof(u32) * ATA_REG_ERR);
2818 port->nsect_addr = shd_base + (sizeof(u32) * ATA_REG_NSECT);
2819 port->lbal_addr = shd_base + (sizeof(u32) * ATA_REG_LBAL);
2820 port->lbam_addr = shd_base + (sizeof(u32) * ATA_REG_LBAM);
2821 port->lbah_addr = shd_base + (sizeof(u32) * ATA_REG_LBAH);
2822 port->device_addr = shd_base + (sizeof(u32) * ATA_REG_DEVICE);
Jeff Garzik8b260242005-11-12 12:32:50 -05002823 port->status_addr =
Brett Russ31961942005-09-30 01:36:00 -04002824 port->command_addr = shd_base + (sizeof(u32) * ATA_REG_STATUS);
2825 /* special case: control/altstatus doesn't have ATA_REG_ address */
2826 port->altstatus_addr = port->ctl_addr = shd_base + SHD_CTL_AST_OFS;
2827
2828 /* unused: */
Randy Dunlap8d9db2d2007-02-16 01:40:06 -08002829 port->cmd_addr = port->bmdma_addr = port->scr_addr = NULL;
Brett Russ20f733e2005-09-01 18:26:17 -04002830
Brett Russ31961942005-09-30 01:36:00 -04002831 /* Clear any currently outstanding port interrupt conditions */
2832 serr_ofs = mv_scr_offset(SCR_ERROR);
2833 writelfl(readl(port_mmio + serr_ofs), port_mmio + serr_ofs);
2834 writelfl(0, port_mmio + EDMA_ERR_IRQ_CAUSE_OFS);
2835
Mark Lord646a4da2008-01-26 18:30:37 -05002836 /* unmask all non-transient EDMA error interrupts */
2837 writelfl(~EDMA_ERR_IRQ_TRANSIENT, port_mmio + EDMA_ERR_IRQ_MASK_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04002838
Jeff Garzik8b260242005-11-12 12:32:50 -05002839 VPRINTK("EDMA cfg=0x%08x EDMA IRQ err cause/mask=0x%08x/0x%08x\n",
Brett Russ31961942005-09-30 01:36:00 -04002840 readl(port_mmio + EDMA_CFG_OFS),
2841 readl(port_mmio + EDMA_ERR_IRQ_CAUSE_OFS),
2842 readl(port_mmio + EDMA_ERR_IRQ_MASK_OFS));
Brett Russ20f733e2005-09-01 18:26:17 -04002843}
2844
Mark Lord616d4a92008-05-02 02:08:32 -04002845static unsigned int mv_in_pcix_mode(struct ata_host *host)
2846{
2847 struct mv_host_priv *hpriv = host->private_data;
2848 void __iomem *mmio = hpriv->base;
2849 u32 reg;
2850
2851 if (!HAS_PCI(host) || !IS_PCIE(hpriv))
2852 return 0; /* not PCI-X capable */
2853 reg = readl(mmio + MV_PCI_MODE_OFS);
2854 if ((reg & MV_PCI_MODE_MASK) == 0)
2855 return 0; /* conventional PCI mode */
2856 return 1; /* chip is in PCI-X mode */
2857}
2858
2859static int mv_pci_cut_through_okay(struct ata_host *host)
2860{
2861 struct mv_host_priv *hpriv = host->private_data;
2862 void __iomem *mmio = hpriv->base;
2863 u32 reg;
2864
2865 if (!mv_in_pcix_mode(host)) {
2866 reg = readl(mmio + PCI_COMMAND_OFS);
2867 if (reg & PCI_COMMAND_MRDTRIG)
2868 return 0; /* not okay */
2869 }
2870 return 1; /* okay */
2871}
2872
Tejun Heo4447d352007-04-17 23:44:08 +09002873static int mv_chip_id(struct ata_host *host, unsigned int board_idx)
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002874{
Tejun Heo4447d352007-04-17 23:44:08 +09002875 struct pci_dev *pdev = to_pci_dev(host->dev);
2876 struct mv_host_priv *hpriv = host->private_data;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002877 u32 hp_flags = hpriv->hp_flags;
2878
Jeff Garzik5796d1c2007-10-26 00:03:37 -04002879 switch (board_idx) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05002880 case chip_5080:
2881 hpriv->ops = &mv5xxx_ops;
Jeff Garzikee9ccdf2007-07-12 15:51:22 -04002882 hp_flags |= MV_HP_GEN_I;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002883
Auke Kok44c10132007-06-08 15:46:36 -07002884 switch (pdev->revision) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05002885 case 0x1:
2886 hp_flags |= MV_HP_ERRATA_50XXB0;
2887 break;
2888 case 0x3:
2889 hp_flags |= MV_HP_ERRATA_50XXB2;
2890 break;
2891 default:
2892 dev_printk(KERN_WARNING, &pdev->dev,
2893 "Applying 50XXB2 workarounds to unknown rev\n");
2894 hp_flags |= MV_HP_ERRATA_50XXB2;
2895 break;
2896 }
2897 break;
2898
2899 case chip_504x:
2900 case chip_508x:
2901 hpriv->ops = &mv5xxx_ops;
Jeff Garzikee9ccdf2007-07-12 15:51:22 -04002902 hp_flags |= MV_HP_GEN_I;
Jeff Garzik47c2b672005-11-12 21:13:17 -05002903
Auke Kok44c10132007-06-08 15:46:36 -07002904 switch (pdev->revision) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05002905 case 0x0:
2906 hp_flags |= MV_HP_ERRATA_50XXB0;
2907 break;
2908 case 0x3:
2909 hp_flags |= MV_HP_ERRATA_50XXB2;
2910 break;
2911 default:
2912 dev_printk(KERN_WARNING, &pdev->dev,
2913 "Applying B2 workarounds to unknown rev\n");
2914 hp_flags |= MV_HP_ERRATA_50XXB2;
2915 break;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002916 }
2917 break;
2918
2919 case chip_604x:
2920 case chip_608x:
Jeff Garzik47c2b672005-11-12 21:13:17 -05002921 hpriv->ops = &mv6xxx_ops;
Jeff Garzikee9ccdf2007-07-12 15:51:22 -04002922 hp_flags |= MV_HP_GEN_II;
Jeff Garzik47c2b672005-11-12 21:13:17 -05002923
Auke Kok44c10132007-06-08 15:46:36 -07002924 switch (pdev->revision) {
Jeff Garzik47c2b672005-11-12 21:13:17 -05002925 case 0x7:
2926 hp_flags |= MV_HP_ERRATA_60X1B2;
2927 break;
2928 case 0x9:
2929 hp_flags |= MV_HP_ERRATA_60X1C0;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002930 break;
2931 default:
2932 dev_printk(KERN_WARNING, &pdev->dev,
Jeff Garzik47c2b672005-11-12 21:13:17 -05002933 "Applying B2 workarounds to unknown rev\n");
2934 hp_flags |= MV_HP_ERRATA_60X1B2;
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002935 break;
2936 }
2937 break;
2938
Jeff Garzike4e7b892006-01-31 12:18:41 -05002939 case chip_7042:
Mark Lord616d4a92008-05-02 02:08:32 -04002940 hp_flags |= MV_HP_PCIE | MV_HP_CUT_THROUGH;
Mark Lord306b30f2007-12-04 14:07:52 -05002941 if (pdev->vendor == PCI_VENDOR_ID_TTI &&
2942 (pdev->device == 0x2300 || pdev->device == 0x2310))
2943 {
Mark Lord4e520032007-12-11 12:58:05 -05002944 /*
2945 * Highpoint RocketRAID PCIe 23xx series cards:
2946 *
2947 * Unconfigured drives are treated as "Legacy"
2948 * by the BIOS, and it overwrites sector 8 with
2949 * a "Lgcy" metadata block prior to Linux boot.
2950 *
2951 * Configured drives (RAID or JBOD) leave sector 8
2952 * alone, but instead overwrite a high numbered
2953 * sector for the RAID metadata. This sector can
2954 * be determined exactly, by truncating the physical
2955 * drive capacity to a nice even GB value.
2956 *
2957 * RAID metadata is at: (dev->n_sectors & ~0xfffff)
2958 *
2959 * Warn the user, lest they think we're just buggy.
2960 */
2961 printk(KERN_WARNING DRV_NAME ": Highpoint RocketRAID"
2962 " BIOS CORRUPTS DATA on all attached drives,"
2963 " regardless of if/how they are configured."
2964 " BEWARE!\n");
2965 printk(KERN_WARNING DRV_NAME ": For data safety, do not"
2966 " use sectors 8-9 on \"Legacy\" drives,"
2967 " and avoid the final two gigabytes on"
2968 " all RocketRAID BIOS initialized drives.\n");
Mark Lord306b30f2007-12-04 14:07:52 -05002969 }
Mark Lord8e7decd2008-05-02 02:07:51 -04002970 /* drop through */
Jeff Garzike4e7b892006-01-31 12:18:41 -05002971 case chip_6042:
2972 hpriv->ops = &mv6xxx_ops;
Jeff Garzike4e7b892006-01-31 12:18:41 -05002973 hp_flags |= MV_HP_GEN_IIE;
Mark Lord616d4a92008-05-02 02:08:32 -04002974 if (board_idx == chip_6042 && mv_pci_cut_through_okay(host))
2975 hp_flags |= MV_HP_CUT_THROUGH;
Jeff Garzike4e7b892006-01-31 12:18:41 -05002976
Auke Kok44c10132007-06-08 15:46:36 -07002977 switch (pdev->revision) {
Jeff Garzike4e7b892006-01-31 12:18:41 -05002978 case 0x0:
2979 hp_flags |= MV_HP_ERRATA_XX42A0;
2980 break;
2981 case 0x1:
2982 hp_flags |= MV_HP_ERRATA_60X1C0;
2983 break;
2984 default:
2985 dev_printk(KERN_WARNING, &pdev->dev,
2986 "Applying 60X1C0 workarounds to unknown rev\n");
2987 hp_flags |= MV_HP_ERRATA_60X1C0;
2988 break;
2989 }
2990 break;
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002991 case chip_soc:
2992 hpriv->ops = &mv_soc_ops;
2993 hp_flags |= MV_HP_ERRATA_60X1C0;
2994 break;
Jeff Garzike4e7b892006-01-31 12:18:41 -05002995
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002996 default:
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05002997 dev_printk(KERN_ERR, host->dev,
Jeff Garzik5796d1c2007-10-26 00:03:37 -04002998 "BUG: invalid board index %u\n", board_idx);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05002999 return 1;
3000 }
3001
3002 hpriv->hp_flags = hp_flags;
Mark Lord02a121d2007-12-01 13:07:22 -05003003 if (hp_flags & MV_HP_PCIE) {
3004 hpriv->irq_cause_ofs = PCIE_IRQ_CAUSE_OFS;
3005 hpriv->irq_mask_ofs = PCIE_IRQ_MASK_OFS;
3006 hpriv->unmask_all_irqs = PCIE_UNMASK_ALL_IRQS;
3007 } else {
3008 hpriv->irq_cause_ofs = PCI_IRQ_CAUSE_OFS;
3009 hpriv->irq_mask_ofs = PCI_IRQ_MASK_OFS;
3010 hpriv->unmask_all_irqs = PCI_UNMASK_ALL_IRQS;
3011 }
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05003012
3013 return 0;
3014}
3015
Brett Russ05b308e2005-10-05 17:08:53 -04003016/**
Jeff Garzik47c2b672005-11-12 21:13:17 -05003017 * mv_init_host - Perform some early initialization of the host.
Tejun Heo4447d352007-04-17 23:44:08 +09003018 * @host: ATA host to initialize
3019 * @board_idx: controller index
Brett Russ05b308e2005-10-05 17:08:53 -04003020 *
3021 * If possible, do an early global reset of the host. Then do
3022 * our port init and clear/unmask all/relevant host interrupts.
3023 *
3024 * LOCKING:
3025 * Inherited from caller.
3026 */
Tejun Heo4447d352007-04-17 23:44:08 +09003027static int mv_init_host(struct ata_host *host, unsigned int board_idx)
Brett Russ20f733e2005-09-01 18:26:17 -04003028{
3029 int rc = 0, n_hc, port, hc;
Tejun Heo4447d352007-04-17 23:44:08 +09003030 struct mv_host_priv *hpriv = host->private_data;
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003031 void __iomem *mmio = hpriv->base;
Jeff Garzik47c2b672005-11-12 21:13:17 -05003032
Tejun Heo4447d352007-04-17 23:44:08 +09003033 rc = mv_chip_id(host, board_idx);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05003034 if (rc)
Mark Lord352fab72008-04-19 14:43:42 -04003035 goto done;
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003036
3037 if (HAS_PCI(host)) {
Mark Lord7368f912008-04-25 11:24:24 -04003038 hpriv->main_irq_cause_addr = mmio + PCI_HC_MAIN_IRQ_CAUSE_OFS;
3039 hpriv->main_irq_mask_addr = mmio + PCI_HC_MAIN_IRQ_MASK_OFS;
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003040 } else {
Mark Lord7368f912008-04-25 11:24:24 -04003041 hpriv->main_irq_cause_addr = mmio + SOC_HC_MAIN_IRQ_CAUSE_OFS;
3042 hpriv->main_irq_mask_addr = mmio + SOC_HC_MAIN_IRQ_MASK_OFS;
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003043 }
Mark Lord352fab72008-04-19 14:43:42 -04003044
3045 /* global interrupt mask: 0 == mask everything */
Mark Lord7368f912008-04-25 11:24:24 -04003046 writel(0, hpriv->main_irq_mask_addr);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05003047
Tejun Heo4447d352007-04-17 23:44:08 +09003048 n_hc = mv_get_hc_count(host->ports[0]->flags);
Jeff Garzikbca1c4e2005-11-12 12:48:15 -05003049
Tejun Heo4447d352007-04-17 23:44:08 +09003050 for (port = 0; port < host->n_ports; port++)
Jeff Garzik47c2b672005-11-12 21:13:17 -05003051 hpriv->ops->read_preamp(hpriv, port, mmio);
Brett Russ20f733e2005-09-01 18:26:17 -04003052
Jeff Garzikc9d39132005-11-13 17:47:51 -05003053 rc = hpriv->ops->reset_hc(hpriv, mmio, n_hc);
Jeff Garzik47c2b672005-11-12 21:13:17 -05003054 if (rc)
Brett Russ20f733e2005-09-01 18:26:17 -04003055 goto done;
Brett Russ20f733e2005-09-01 18:26:17 -04003056
Jeff Garzik522479f2005-11-12 22:14:02 -05003057 hpriv->ops->reset_flash(hpriv, mmio);
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003058 hpriv->ops->reset_bus(host, mmio);
Jeff Garzik47c2b672005-11-12 21:13:17 -05003059 hpriv->ops->enable_leds(hpriv, mmio);
Brett Russ20f733e2005-09-01 18:26:17 -04003060
Tejun Heo4447d352007-04-17 23:44:08 +09003061 for (port = 0; port < host->n_ports; port++) {
Tejun Heocbcdd872007-08-18 13:14:55 +09003062 struct ata_port *ap = host->ports[port];
Jeff Garzik2a47ce02005-11-12 23:05:14 -05003063 void __iomem *port_mmio = mv_port_base(mmio, port);
Tejun Heocbcdd872007-08-18 13:14:55 +09003064
3065 mv_port_init(&ap->ioaddr, port_mmio);
3066
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003067#ifdef CONFIG_PCI
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003068 if (HAS_PCI(host)) {
3069 unsigned int offset = port_mmio - mmio;
3070 ata_port_pbar_desc(ap, MV_PRIMARY_BAR, -1, "mmio");
3071 ata_port_pbar_desc(ap, MV_PRIMARY_BAR, offset, "port");
3072 }
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003073#endif
Brett Russ20f733e2005-09-01 18:26:17 -04003074 }
3075
3076 for (hc = 0; hc < n_hc; hc++) {
Brett Russ31961942005-09-30 01:36:00 -04003077 void __iomem *hc_mmio = mv_hc_base(mmio, hc);
3078
3079 VPRINTK("HC%i: HC config=0x%08x HC IRQ cause "
3080 "(before clear)=0x%08x\n", hc,
3081 readl(hc_mmio + HC_CFG_OFS),
3082 readl(hc_mmio + HC_IRQ_CAUSE_OFS));
3083
3084 /* Clear any currently outstanding hc interrupt conditions */
3085 writelfl(0, hc_mmio + HC_IRQ_CAUSE_OFS);
Brett Russ20f733e2005-09-01 18:26:17 -04003086 }
3087
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003088 if (HAS_PCI(host)) {
3089 /* Clear any currently outstanding host interrupt conditions */
3090 writelfl(0, mmio + hpriv->irq_cause_ofs);
Brett Russ31961942005-09-30 01:36:00 -04003091
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003092 /* and unmask interrupt generation for host regs */
3093 writelfl(hpriv->unmask_all_irqs, mmio + hpriv->irq_mask_ofs);
3094 if (IS_GEN_I(hpriv))
3095 writelfl(~HC_MAIN_MASKED_IRQS_5,
Mark Lord7368f912008-04-25 11:24:24 -04003096 hpriv->main_irq_mask_addr);
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003097 else
3098 writelfl(~HC_MAIN_MASKED_IRQS,
Mark Lord7368f912008-04-25 11:24:24 -04003099 hpriv->main_irq_mask_addr);
Jeff Garzikfb621e22007-02-25 04:19:45 -05003100
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003101 VPRINTK("HC MAIN IRQ cause/mask=0x%08x/0x%08x "
3102 "PCI int cause/mask=0x%08x/0x%08x\n",
Mark Lord7368f912008-04-25 11:24:24 -04003103 readl(hpriv->main_irq_cause_addr),
3104 readl(hpriv->main_irq_mask_addr),
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003105 readl(mmio + hpriv->irq_cause_ofs),
3106 readl(mmio + hpriv->irq_mask_ofs));
3107 } else {
3108 writelfl(~HC_MAIN_MASKED_IRQS_SOC,
Mark Lord7368f912008-04-25 11:24:24 -04003109 hpriv->main_irq_mask_addr);
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003110 VPRINTK("HC MAIN IRQ cause/mask=0x%08x/0x%08x\n",
Mark Lord7368f912008-04-25 11:24:24 -04003111 readl(hpriv->main_irq_cause_addr),
3112 readl(hpriv->main_irq_mask_addr));
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003113 }
Brett Russ31961942005-09-30 01:36:00 -04003114done:
Brett Russ20f733e2005-09-01 18:26:17 -04003115 return rc;
3116}
3117
Byron Bradleyfbf14e22008-02-10 21:17:30 +00003118static int mv_create_dma_pools(struct mv_host_priv *hpriv, struct device *dev)
3119{
3120 hpriv->crqb_pool = dmam_pool_create("crqb_q", dev, MV_CRQB_Q_SZ,
3121 MV_CRQB_Q_SZ, 0);
3122 if (!hpriv->crqb_pool)
3123 return -ENOMEM;
3124
3125 hpriv->crpb_pool = dmam_pool_create("crpb_q", dev, MV_CRPB_Q_SZ,
3126 MV_CRPB_Q_SZ, 0);
3127 if (!hpriv->crpb_pool)
3128 return -ENOMEM;
3129
3130 hpriv->sg_tbl_pool = dmam_pool_create("sg_tbl", dev, MV_SG_TBL_SZ,
3131 MV_SG_TBL_SZ, 0);
3132 if (!hpriv->sg_tbl_pool)
3133 return -ENOMEM;
3134
3135 return 0;
3136}
3137
Lennert Buytenhek15a32632008-03-27 14:51:39 -04003138static void mv_conf_mbus_windows(struct mv_host_priv *hpriv,
3139 struct mbus_dram_target_info *dram)
3140{
3141 int i;
3142
3143 for (i = 0; i < 4; i++) {
3144 writel(0, hpriv->base + WINDOW_CTRL(i));
3145 writel(0, hpriv->base + WINDOW_BASE(i));
3146 }
3147
3148 for (i = 0; i < dram->num_cs; i++) {
3149 struct mbus_dram_window *cs = dram->cs + i;
3150
3151 writel(((cs->size - 1) & 0xffff0000) |
3152 (cs->mbus_attr << 8) |
3153 (dram->mbus_dram_target_id << 4) | 1,
3154 hpriv->base + WINDOW_CTRL(i));
3155 writel(cs->base, hpriv->base + WINDOW_BASE(i));
3156 }
3157}
3158
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003159/**
3160 * mv_platform_probe - handle a positive probe of an soc Marvell
3161 * host
3162 * @pdev: platform device found
3163 *
3164 * LOCKING:
3165 * Inherited from caller.
3166 */
3167static int mv_platform_probe(struct platform_device *pdev)
3168{
3169 static int printed_version;
3170 const struct mv_sata_platform_data *mv_platform_data;
3171 const struct ata_port_info *ppi[] =
3172 { &mv_port_info[chip_soc], NULL };
3173 struct ata_host *host;
3174 struct mv_host_priv *hpriv;
3175 struct resource *res;
3176 int n_ports, rc;
3177
3178 if (!printed_version++)
3179 dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");
3180
3181 /*
3182 * Simple resource validation ..
3183 */
3184 if (unlikely(pdev->num_resources != 2)) {
3185 dev_err(&pdev->dev, "invalid number of resources\n");
3186 return -EINVAL;
3187 }
3188
3189 /*
3190 * Get the register base first
3191 */
3192 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3193 if (res == NULL)
3194 return -EINVAL;
3195
3196 /* allocate host */
3197 mv_platform_data = pdev->dev.platform_data;
3198 n_ports = mv_platform_data->n_ports;
3199
3200 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
3201 hpriv = devm_kzalloc(&pdev->dev, sizeof(*hpriv), GFP_KERNEL);
3202
3203 if (!host || !hpriv)
3204 return -ENOMEM;
3205 host->private_data = hpriv;
3206 hpriv->n_ports = n_ports;
3207
3208 host->iomap = NULL;
Saeed Bisharaf1cb0ea2008-02-18 07:42:28 -11003209 hpriv->base = devm_ioremap(&pdev->dev, res->start,
3210 res->end - res->start + 1);
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003211 hpriv->base -= MV_SATAHC0_REG_BASE;
3212
Lennert Buytenhek15a32632008-03-27 14:51:39 -04003213 /*
3214 * (Re-)program MBUS remapping windows if we are asked to.
3215 */
3216 if (mv_platform_data->dram != NULL)
3217 mv_conf_mbus_windows(hpriv, mv_platform_data->dram);
3218
Byron Bradleyfbf14e22008-02-10 21:17:30 +00003219 rc = mv_create_dma_pools(hpriv, &pdev->dev);
3220 if (rc)
3221 return rc;
3222
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003223 /* initialize adapter */
3224 rc = mv_init_host(host, chip_soc);
3225 if (rc)
3226 return rc;
3227
3228 dev_printk(KERN_INFO, &pdev->dev,
3229 "slots %u ports %d\n", (unsigned)MV_MAX_Q_DEPTH,
3230 host->n_ports);
3231
3232 return ata_host_activate(host, platform_get_irq(pdev, 0), mv_interrupt,
3233 IRQF_SHARED, &mv6_sht);
3234}
3235
3236/*
3237 *
3238 * mv_platform_remove - unplug a platform interface
3239 * @pdev: platform device
3240 *
3241 * A platform bus SATA device has been unplugged. Perform the needed
3242 * cleanup. Also called on module unload for any active devices.
3243 */
3244static int __devexit mv_platform_remove(struct platform_device *pdev)
3245{
3246 struct device *dev = &pdev->dev;
3247 struct ata_host *host = dev_get_drvdata(dev);
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003248
3249 ata_host_detach(host);
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003250 return 0;
3251}
3252
3253static struct platform_driver mv_platform_driver = {
3254 .probe = mv_platform_probe,
3255 .remove = __devexit_p(mv_platform_remove),
3256 .driver = {
3257 .name = DRV_NAME,
3258 .owner = THIS_MODULE,
3259 },
3260};
3261
3262
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003263#ifdef CONFIG_PCI
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003264static int mv_pci_init_one(struct pci_dev *pdev,
3265 const struct pci_device_id *ent);
3266
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003267
3268static struct pci_driver mv_pci_driver = {
3269 .name = DRV_NAME,
3270 .id_table = mv_pci_tbl,
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003271 .probe = mv_pci_init_one,
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003272 .remove = ata_pci_remove_one,
3273};
3274
3275/*
3276 * module options
3277 */
3278static int msi; /* Use PCI msi; either zero (off, default) or non-zero */
3279
3280
3281/* move to PCI layer or libata core? */
3282static int pci_go_64(struct pci_dev *pdev)
3283{
3284 int rc;
3285
3286 if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
3287 rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
3288 if (rc) {
3289 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
3290 if (rc) {
3291 dev_printk(KERN_ERR, &pdev->dev,
3292 "64-bit DMA enable failed\n");
3293 return rc;
3294 }
3295 }
3296 } else {
3297 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
3298 if (rc) {
3299 dev_printk(KERN_ERR, &pdev->dev,
3300 "32-bit DMA enable failed\n");
3301 return rc;
3302 }
3303 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
3304 if (rc) {
3305 dev_printk(KERN_ERR, &pdev->dev,
3306 "32-bit consistent DMA enable failed\n");
3307 return rc;
3308 }
3309 }
3310
3311 return rc;
3312}
3313
Brett Russ05b308e2005-10-05 17:08:53 -04003314/**
3315 * mv_print_info - Dump key info to kernel log for perusal.
Tejun Heo4447d352007-04-17 23:44:08 +09003316 * @host: ATA host to print info about
Brett Russ05b308e2005-10-05 17:08:53 -04003317 *
3318 * FIXME: complete this.
3319 *
3320 * LOCKING:
3321 * Inherited from caller.
3322 */
Tejun Heo4447d352007-04-17 23:44:08 +09003323static void mv_print_info(struct ata_host *host)
Brett Russ31961942005-09-30 01:36:00 -04003324{
Tejun Heo4447d352007-04-17 23:44:08 +09003325 struct pci_dev *pdev = to_pci_dev(host->dev);
3326 struct mv_host_priv *hpriv = host->private_data;
Auke Kok44c10132007-06-08 15:46:36 -07003327 u8 scc;
Jeff Garzikc1e4fe72007-07-09 12:29:31 -04003328 const char *scc_s, *gen;
Brett Russ31961942005-09-30 01:36:00 -04003329
3330 /* Use this to determine the HW stepping of the chip so we know
3331 * what errata to workaround
3332 */
Brett Russ31961942005-09-30 01:36:00 -04003333 pci_read_config_byte(pdev, PCI_CLASS_DEVICE, &scc);
3334 if (scc == 0)
3335 scc_s = "SCSI";
3336 else if (scc == 0x01)
3337 scc_s = "RAID";
3338 else
Jeff Garzikc1e4fe72007-07-09 12:29:31 -04003339 scc_s = "?";
3340
3341 if (IS_GEN_I(hpriv))
3342 gen = "I";
3343 else if (IS_GEN_II(hpriv))
3344 gen = "II";
3345 else if (IS_GEN_IIE(hpriv))
3346 gen = "IIE";
3347 else
3348 gen = "?";
Brett Russ31961942005-09-30 01:36:00 -04003349
Jeff Garzika9524a72005-10-30 14:39:11 -05003350 dev_printk(KERN_INFO, &pdev->dev,
Jeff Garzikc1e4fe72007-07-09 12:29:31 -04003351 "Gen-%s %u slots %u ports %s mode IRQ via %s\n",
3352 gen, (unsigned)MV_MAX_Q_DEPTH, host->n_ports,
Brett Russ31961942005-09-30 01:36:00 -04003353 scc_s, (MV_HP_FLAG_MSI & hpriv->hp_flags) ? "MSI" : "INTx");
3354}
3355
Brett Russ05b308e2005-10-05 17:08:53 -04003356/**
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003357 * mv_pci_init_one - handle a positive probe of a PCI Marvell host
Brett Russ05b308e2005-10-05 17:08:53 -04003358 * @pdev: PCI device found
3359 * @ent: PCI device ID entry for the matched host
3360 *
3361 * LOCKING:
3362 * Inherited from caller.
3363 */
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003364static int mv_pci_init_one(struct pci_dev *pdev,
3365 const struct pci_device_id *ent)
Brett Russ20f733e2005-09-01 18:26:17 -04003366{
Jeff Garzik2dcb4072007-10-19 06:42:56 -04003367 static int printed_version;
Brett Russ20f733e2005-09-01 18:26:17 -04003368 unsigned int board_idx = (unsigned int)ent->driver_data;
Tejun Heo4447d352007-04-17 23:44:08 +09003369 const struct ata_port_info *ppi[] = { &mv_port_info[board_idx], NULL };
3370 struct ata_host *host;
3371 struct mv_host_priv *hpriv;
3372 int n_ports, rc;
Brett Russ20f733e2005-09-01 18:26:17 -04003373
Jeff Garzika9524a72005-10-30 14:39:11 -05003374 if (!printed_version++)
3375 dev_printk(KERN_INFO, &pdev->dev, "version " DRV_VERSION "\n");
Brett Russ20f733e2005-09-01 18:26:17 -04003376
Tejun Heo4447d352007-04-17 23:44:08 +09003377 /* allocate host */
3378 n_ports = mv_get_hc_count(ppi[0]->flags) * MV_PORTS_PER_HC;
3379
3380 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
3381 hpriv = devm_kzalloc(&pdev->dev, sizeof(*hpriv), GFP_KERNEL);
3382 if (!host || !hpriv)
3383 return -ENOMEM;
3384 host->private_data = hpriv;
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003385 hpriv->n_ports = n_ports;
Tejun Heo4447d352007-04-17 23:44:08 +09003386
3387 /* acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09003388 rc = pcim_enable_device(pdev);
3389 if (rc)
Brett Russ20f733e2005-09-01 18:26:17 -04003390 return rc;
Brett Russ20f733e2005-09-01 18:26:17 -04003391
Tejun Heo0d5ff562007-02-01 15:06:36 +09003392 rc = pcim_iomap_regions(pdev, 1 << MV_PRIMARY_BAR, DRV_NAME);
3393 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003394 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09003395 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09003396 return rc;
Tejun Heo4447d352007-04-17 23:44:08 +09003397 host->iomap = pcim_iomap_table(pdev);
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003398 hpriv->base = host->iomap[MV_PRIMARY_BAR];
Brett Russ20f733e2005-09-01 18:26:17 -04003399
Jeff Garzikd88184f2007-02-26 01:26:06 -05003400 rc = pci_go_64(pdev);
3401 if (rc)
3402 return rc;
3403
Mark Lordda2fa9b2008-01-26 18:32:45 -05003404 rc = mv_create_dma_pools(hpriv, &pdev->dev);
3405 if (rc)
3406 return rc;
3407
Brett Russ20f733e2005-09-01 18:26:17 -04003408 /* initialize adapter */
Tejun Heo4447d352007-04-17 23:44:08 +09003409 rc = mv_init_host(host, board_idx);
Tejun Heo24dc5f32007-01-20 16:00:28 +09003410 if (rc)
3411 return rc;
Brett Russ20f733e2005-09-01 18:26:17 -04003412
Brett Russ31961942005-09-30 01:36:00 -04003413 /* Enable interrupts */
Tejun Heo6a59dcf2007-02-24 15:12:31 +09003414 if (msi && pci_enable_msi(pdev))
Brett Russ31961942005-09-30 01:36:00 -04003415 pci_intx(pdev, 1);
Brett Russ20f733e2005-09-01 18:26:17 -04003416
Brett Russ31961942005-09-30 01:36:00 -04003417 mv_dump_pci_cfg(pdev, 0x68);
Tejun Heo4447d352007-04-17 23:44:08 +09003418 mv_print_info(host);
Brett Russ20f733e2005-09-01 18:26:17 -04003419
Tejun Heo4447d352007-04-17 23:44:08 +09003420 pci_set_master(pdev);
Jeff Garzikea8b4db2007-07-17 02:21:50 -04003421 pci_try_set_mwi(pdev);
Tejun Heo4447d352007-04-17 23:44:08 +09003422 return ata_host_activate(host, pdev->irq, mv_interrupt, IRQF_SHARED,
Jeff Garzikc5d3e452007-07-11 18:30:50 -04003423 IS_GEN_I(hpriv) ? &mv5_sht : &mv6_sht);
Brett Russ20f733e2005-09-01 18:26:17 -04003424}
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003425#endif
Brett Russ20f733e2005-09-01 18:26:17 -04003426
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003427static int mv_platform_probe(struct platform_device *pdev);
3428static int __devexit mv_platform_remove(struct platform_device *pdev);
3429
Brett Russ20f733e2005-09-01 18:26:17 -04003430static int __init mv_init(void)
3431{
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003432 int rc = -ENODEV;
3433#ifdef CONFIG_PCI
3434 rc = pci_register_driver(&mv_pci_driver);
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003435 if (rc < 0)
3436 return rc;
3437#endif
3438 rc = platform_driver_register(&mv_platform_driver);
3439
3440#ifdef CONFIG_PCI
3441 if (rc < 0)
3442 pci_unregister_driver(&mv_pci_driver);
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003443#endif
3444 return rc;
Brett Russ20f733e2005-09-01 18:26:17 -04003445}
3446
3447static void __exit mv_exit(void)
3448{
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003449#ifdef CONFIG_PCI
Brett Russ20f733e2005-09-01 18:26:17 -04003450 pci_unregister_driver(&mv_pci_driver);
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003451#endif
Saeed Bisharaf351b2d2008-02-01 18:08:03 -05003452 platform_driver_unregister(&mv_platform_driver);
Brett Russ20f733e2005-09-01 18:26:17 -04003453}
3454
3455MODULE_AUTHOR("Brett Russ");
3456MODULE_DESCRIPTION("SCSI low-level driver for Marvell SATA controllers");
3457MODULE_LICENSE("GPL");
3458MODULE_DEVICE_TABLE(pci, mv_pci_tbl);
3459MODULE_VERSION(DRV_VERSION);
Mark Lord17c5aab2008-04-16 14:56:51 -04003460MODULE_ALIAS("platform:" DRV_NAME);
Brett Russ20f733e2005-09-01 18:26:17 -04003461
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003462#ifdef CONFIG_PCI
Jeff Garzikddef9bb2006-02-02 16:17:06 -05003463module_param(msi, int, 0444);
3464MODULE_PARM_DESC(msi, "Enable use of PCI MSI (0=off, 1=on)");
Saeed Bishara7bb3c522008-01-30 11:50:45 -11003465#endif
Jeff Garzikddef9bb2006-02-02 16:17:06 -05003466
Brett Russ20f733e2005-09-01 18:26:17 -04003467module_init(mv_init);
3468module_exit(mv_exit);