2 * ahci.c - AHCI SATA support
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
8 * Copyright 2004-2005 Red Hat, Inc.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
29 * AHCI hardware documentation:
30 * http://www.intel.com/technology/serialata/pdf/rev1_0.pdf
31 * http://www.intel.com/technology/serialata/pdf/rev1_1.pdf
35 #include <linux/kernel.h>
36 #include <linux/module.h>
37 #include <linux/pci.h>
38 #include <linux/init.h>
39 #include <linux/blkdev.h>
40 #include <linux/delay.h>
41 #include <linux/interrupt.h>
42 #include <linux/dma-mapping.h>
43 #include <linux/device.h>
44 #include <linux/dmi.h>
45 #include <scsi/scsi_host.h>
46 #include <scsi/scsi_cmnd.h>
47 #include <linux/libata.h>
49 #define DRV_NAME "ahci"
50 #define DRV_VERSION "3.0"
52 /* Enclosure Management Control */
53 #define EM_CTRL_MSG_TYPE 0x000f0000
55 /* Enclosure Management LED Message Type */
56 #define EM_MSG_LED_HBA_PORT 0x0000000f
57 #define EM_MSG_LED_PMP_SLOT 0x0000ff00
58 #define EM_MSG_LED_VALUE 0xffff0000
59 #define EM_MSG_LED_VALUE_ACTIVITY 0x00070000
60 #define EM_MSG_LED_VALUE_OFF 0xfff80000
61 #define EM_MSG_LED_VALUE_ON 0x00010000
63 static int ahci_skip_host_reset
;
64 static int ahci_ignore_sss
;
66 module_param_named(skip_host_reset
, ahci_skip_host_reset
, int, 0444);
67 MODULE_PARM_DESC(skip_host_reset
, "skip global host reset (0=don't skip, 1=skip)");
69 module_param_named(ignore_sss
, ahci_ignore_sss
, int, 0444);
70 MODULE_PARM_DESC(ignore_sss
, "Ignore staggered spinup flag (0=don't ignore, 1=ignore)");
72 static int ahci_enable_alpm(struct ata_port
*ap
,
74 static void ahci_disable_alpm(struct ata_port
*ap
);
75 static ssize_t
ahci_led_show(struct ata_port
*ap
, char *buf
);
76 static ssize_t
ahci_led_store(struct ata_port
*ap
, const char *buf
,
78 static ssize_t
ahci_transmit_led_message(struct ata_port
*ap
, u32 state
,
84 AHCI_MAX_SG
= 168, /* hardware max is 64K */
85 AHCI_DMA_BOUNDARY
= 0xffffffff,
88 AHCI_CMD_SLOT_SZ
= AHCI_MAX_CMDS
* AHCI_CMD_SZ
,
90 AHCI_CMD_TBL_CDB
= 0x40,
91 AHCI_CMD_TBL_HDR_SZ
= 0x80,
92 AHCI_CMD_TBL_SZ
= AHCI_CMD_TBL_HDR_SZ
+ (AHCI_MAX_SG
* 16),
93 AHCI_CMD_TBL_AR_SZ
= AHCI_CMD_TBL_SZ
* AHCI_MAX_CMDS
,
94 AHCI_PORT_PRIV_DMA_SZ
= AHCI_CMD_SLOT_SZ
+ AHCI_CMD_TBL_AR_SZ
+
96 AHCI_IRQ_ON_SG
= (1 << 31),
97 AHCI_CMD_ATAPI
= (1 << 5),
98 AHCI_CMD_WRITE
= (1 << 6),
99 AHCI_CMD_PREFETCH
= (1 << 7),
100 AHCI_CMD_RESET
= (1 << 8),
101 AHCI_CMD_CLR_BUSY
= (1 << 10),
103 RX_FIS_D2H_REG
= 0x40, /* offset of D2H Register FIS data */
104 RX_FIS_SDB
= 0x58, /* offset of SDB FIS data */
105 RX_FIS_UNK
= 0x60, /* offset of Unknown FIS data */
108 board_ahci_vt8251
= 1,
109 board_ahci_ign_iferr
= 2,
110 board_ahci_sb600
= 3,
112 board_ahci_sb700
= 5, /* for SB700 and SB800 */
113 board_ahci_mcp65
= 6,
114 board_ahci_nopmp
= 7,
115 board_ahci_yesncq
= 8,
116 board_ahci_nosntf
= 9,
118 /* global controller registers */
119 HOST_CAP
= 0x00, /* host capabilities */
120 HOST_CTL
= 0x04, /* global host control */
121 HOST_IRQ_STAT
= 0x08, /* interrupt status */
122 HOST_PORTS_IMPL
= 0x0c, /* bitmap of implemented ports */
123 HOST_VERSION
= 0x10, /* AHCI spec. version compliancy */
124 HOST_EM_LOC
= 0x1c, /* Enclosure Management location */
125 HOST_EM_CTL
= 0x20, /* Enclosure Management Control */
126 HOST_CAP2
= 0x24, /* host capabilities, extended */
129 HOST_RESET
= (1 << 0), /* reset controller; self-clear */
130 HOST_IRQ_EN
= (1 << 1), /* global IRQ enable */
131 HOST_AHCI_EN
= (1 << 31), /* AHCI enabled */
134 HOST_CAP_SXS
= (1 << 5), /* Supports External SATA */
135 HOST_CAP_EMS
= (1 << 6), /* Enclosure Management support */
136 HOST_CAP_CCC
= (1 << 7), /* Command Completion Coalescing */
137 HOST_CAP_PART
= (1 << 13), /* Partial state capable */
138 HOST_CAP_SSC
= (1 << 14), /* Slumber state capable */
139 HOST_CAP_PIO_MULTI
= (1 << 15), /* PIO multiple DRQ support */
140 HOST_CAP_FBS
= (1 << 16), /* FIS-based switching support */
141 HOST_CAP_PMP
= (1 << 17), /* Port Multiplier support */
142 HOST_CAP_ONLY
= (1 << 18), /* Supports AHCI mode only */
143 HOST_CAP_CLO
= (1 << 24), /* Command List Override support */
144 HOST_CAP_LED
= (1 << 25), /* Supports activity LED */
145 HOST_CAP_ALPM
= (1 << 26), /* Aggressive Link PM support */
146 HOST_CAP_SSS
= (1 << 27), /* Staggered Spin-up */
147 HOST_CAP_MPS
= (1 << 28), /* Mechanical presence switch */
148 HOST_CAP_SNTF
= (1 << 29), /* SNotification register */
149 HOST_CAP_NCQ
= (1 << 30), /* Native Command Queueing */
150 HOST_CAP_64
= (1 << 31), /* PCI DAC (64-bit DMA) support */
153 HOST_CAP2_BOH
= (1 << 0), /* BIOS/OS handoff supported */
154 HOST_CAP2_NVMHCI
= (1 << 1), /* NVMHCI supported */
155 HOST_CAP2_APST
= (1 << 2), /* Automatic partial to slumber */
157 /* registers for each SATA port */
158 PORT_LST_ADDR
= 0x00, /* command list DMA addr */
159 PORT_LST_ADDR_HI
= 0x04, /* command list DMA addr hi */
160 PORT_FIS_ADDR
= 0x08, /* FIS rx buf addr */
161 PORT_FIS_ADDR_HI
= 0x0c, /* FIS rx buf addr hi */
162 PORT_IRQ_STAT
= 0x10, /* interrupt status */
163 PORT_IRQ_MASK
= 0x14, /* interrupt enable/disable mask */
164 PORT_CMD
= 0x18, /* port command */
165 PORT_TFDATA
= 0x20, /* taskfile data */
166 PORT_SIG
= 0x24, /* device TF signature */
167 PORT_CMD_ISSUE
= 0x38, /* command issue */
168 PORT_SCR_STAT
= 0x28, /* SATA phy register: SStatus */
169 PORT_SCR_CTL
= 0x2c, /* SATA phy register: SControl */
170 PORT_SCR_ERR
= 0x30, /* SATA phy register: SError */
171 PORT_SCR_ACT
= 0x34, /* SATA phy register: SActive */
172 PORT_SCR_NTF
= 0x3c, /* SATA phy register: SNotification */
174 /* PORT_IRQ_{STAT,MASK} bits */
175 PORT_IRQ_COLD_PRES
= (1 << 31), /* cold presence detect */
176 PORT_IRQ_TF_ERR
= (1 << 30), /* task file error */
177 PORT_IRQ_HBUS_ERR
= (1 << 29), /* host bus fatal error */
178 PORT_IRQ_HBUS_DATA_ERR
= (1 << 28), /* host bus data error */
179 PORT_IRQ_IF_ERR
= (1 << 27), /* interface fatal error */
180 PORT_IRQ_IF_NONFATAL
= (1 << 26), /* interface non-fatal error */
181 PORT_IRQ_OVERFLOW
= (1 << 24), /* xfer exhausted available S/G */
182 PORT_IRQ_BAD_PMP
= (1 << 23), /* incorrect port multiplier */
184 PORT_IRQ_PHYRDY
= (1 << 22), /* PhyRdy changed */
185 PORT_IRQ_DEV_ILCK
= (1 << 7), /* device interlock */
186 PORT_IRQ_CONNECT
= (1 << 6), /* port connect change status */
187 PORT_IRQ_SG_DONE
= (1 << 5), /* descriptor processed */
188 PORT_IRQ_UNK_FIS
= (1 << 4), /* unknown FIS rx'd */
189 PORT_IRQ_SDB_FIS
= (1 << 3), /* Set Device Bits FIS rx'd */
190 PORT_IRQ_DMAS_FIS
= (1 << 2), /* DMA Setup FIS rx'd */
191 PORT_IRQ_PIOS_FIS
= (1 << 1), /* PIO Setup FIS rx'd */
192 PORT_IRQ_D2H_REG_FIS
= (1 << 0), /* D2H Register FIS rx'd */
194 PORT_IRQ_FREEZE
= PORT_IRQ_HBUS_ERR
|
200 PORT_IRQ_ERROR
= PORT_IRQ_FREEZE
|
202 PORT_IRQ_HBUS_DATA_ERR
,
203 DEF_PORT_IRQ
= PORT_IRQ_ERROR
| PORT_IRQ_SG_DONE
|
204 PORT_IRQ_SDB_FIS
| PORT_IRQ_DMAS_FIS
|
205 PORT_IRQ_PIOS_FIS
| PORT_IRQ_D2H_REG_FIS
,
208 PORT_CMD_ASP
= (1 << 27), /* Aggressive Slumber/Partial */
209 PORT_CMD_ALPE
= (1 << 26), /* Aggressive Link PM enable */
210 PORT_CMD_ATAPI
= (1 << 24), /* Device is ATAPI */
211 PORT_CMD_PMP
= (1 << 17), /* PMP attached */
212 PORT_CMD_LIST_ON
= (1 << 15), /* cmd list DMA engine running */
213 PORT_CMD_FIS_ON
= (1 << 14), /* FIS DMA engine running */
214 PORT_CMD_FIS_RX
= (1 << 4), /* Enable FIS receive DMA engine */
215 PORT_CMD_CLO
= (1 << 3), /* Command list override */
216 PORT_CMD_POWER_ON
= (1 << 2), /* Power up device */
217 PORT_CMD_SPIN_UP
= (1 << 1), /* Spin up device */
218 PORT_CMD_START
= (1 << 0), /* Enable port DMA engine */
220 PORT_CMD_ICC_MASK
= (0xf << 28), /* i/f ICC state mask */
221 PORT_CMD_ICC_ACTIVE
= (0x1 << 28), /* Put i/f in active state */
222 PORT_CMD_ICC_PARTIAL
= (0x2 << 28), /* Put i/f in partial state */
223 PORT_CMD_ICC_SLUMBER
= (0x6 << 28), /* Put i/f in slumber state */
225 /* hpriv->flags bits */
226 AHCI_HFLAG_NO_NCQ
= (1 << 0),
227 AHCI_HFLAG_IGN_IRQ_IF_ERR
= (1 << 1), /* ignore IRQ_IF_ERR */
228 AHCI_HFLAG_IGN_SERR_INTERNAL
= (1 << 2), /* ignore SERR_INTERNAL */
229 AHCI_HFLAG_32BIT_ONLY
= (1 << 3), /* force 32bit */
230 AHCI_HFLAG_MV_PATA
= (1 << 4), /* PATA port */
231 AHCI_HFLAG_NO_MSI
= (1 << 5), /* no PCI MSI */
232 AHCI_HFLAG_NO_PMP
= (1 << 6), /* no PMP */
233 AHCI_HFLAG_NO_HOTPLUG
= (1 << 7), /* ignore PxSERR.DIAG.N */
234 AHCI_HFLAG_SECT255
= (1 << 8), /* max 255 sectors */
235 AHCI_HFLAG_YES_NCQ
= (1 << 9), /* force NCQ cap on */
236 AHCI_HFLAG_NO_SUSPEND
= (1 << 10), /* don't suspend */
237 AHCI_HFLAG_SRST_TOUT_IS_OFFLINE
= (1 << 11), /* treat SRST timeout as
239 AHCI_HFLAG_NO_SNTF
= (1 << 12), /* no sntf */
243 AHCI_FLAG_COMMON
= ATA_FLAG_SATA
| ATA_FLAG_NO_LEGACY
|
244 ATA_FLAG_MMIO
| ATA_FLAG_PIO_DMA
|
245 ATA_FLAG_ACPI_SATA
| ATA_FLAG_AN
|
248 ICH_MAP
= 0x90, /* ICH MAP register */
255 EM_CTL_RST
= (1 << 9), /* Reset */
256 EM_CTL_TM
= (1 << 8), /* Transmit Message */
257 EM_CTL_ALHD
= (1 << 26), /* Activity LED */
260 struct ahci_cmd_hdr
{
275 struct ahci_em_priv
{
276 enum sw_activity blink_policy
;
277 struct timer_list timer
;
278 unsigned long saved_activity
;
279 unsigned long activity
;
280 unsigned long led_state
;
283 struct ahci_host_priv
{
284 unsigned int flags
; /* AHCI_HFLAG_* */
285 u32 cap
; /* cap to use */
286 u32 cap2
; /* cap2 to use */
287 u32 port_map
; /* port map to use */
288 u32 saved_cap
; /* saved initial cap */
289 u32 saved_cap2
; /* saved initial cap2 */
290 u32 saved_port_map
; /* saved initial port_map */
291 u32 em_loc
; /* enclosure management location */
294 struct ahci_port_priv
{
295 struct ata_link
*active_link
;
296 struct ahci_cmd_hdr
*cmd_slot
;
297 dma_addr_t cmd_slot_dma
;
299 dma_addr_t cmd_tbl_dma
;
301 dma_addr_t rx_fis_dma
;
302 /* for NCQ spurious interrupt analysis */
303 unsigned int ncq_saw_d2h
:1;
304 unsigned int ncq_saw_dmas
:1;
305 unsigned int ncq_saw_sdb
:1;
306 u32 intr_mask
; /* interrupts to enable */
307 /* enclosure management info per PM slot */
308 struct ahci_em_priv em_priv
[EM_MAX_SLOTS
];
311 static int ahci_scr_read(struct ata_link
*link
, unsigned int sc_reg
, u32
*val
);
312 static int ahci_scr_write(struct ata_link
*link
, unsigned int sc_reg
, u32 val
);
313 static int ahci_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*ent
);
314 static unsigned int ahci_qc_issue(struct ata_queued_cmd
*qc
);
315 static bool ahci_qc_fill_rtf(struct ata_queued_cmd
*qc
);
316 static int ahci_port_start(struct ata_port
*ap
);
317 static void ahci_port_stop(struct ata_port
*ap
);
318 static void ahci_qc_prep(struct ata_queued_cmd
*qc
);
319 static void ahci_freeze(struct ata_port
*ap
);
320 static void ahci_thaw(struct ata_port
*ap
);
321 static void ahci_pmp_attach(struct ata_port
*ap
);
322 static void ahci_pmp_detach(struct ata_port
*ap
);
323 static int ahci_softreset(struct ata_link
*link
, unsigned int *class,
324 unsigned long deadline
);
325 static int ahci_sb600_softreset(struct ata_link
*link
, unsigned int *class,
326 unsigned long deadline
);
327 static int ahci_hardreset(struct ata_link
*link
, unsigned int *class,
328 unsigned long deadline
);
329 static int ahci_vt8251_hardreset(struct ata_link
*link
, unsigned int *class,
330 unsigned long deadline
);
331 static int ahci_p5wdh_hardreset(struct ata_link
*link
, unsigned int *class,
332 unsigned long deadline
);
333 static void ahci_postreset(struct ata_link
*link
, unsigned int *class);
334 static void ahci_error_handler(struct ata_port
*ap
);
335 static void ahci_post_internal_cmd(struct ata_queued_cmd
*qc
);
336 static int ahci_port_resume(struct ata_port
*ap
);
337 static void ahci_dev_config(struct ata_device
*dev
);
338 static void ahci_fill_cmd_slot(struct ahci_port_priv
*pp
, unsigned int tag
,
341 static int ahci_port_suspend(struct ata_port
*ap
, pm_message_t mesg
);
342 static int ahci_pci_device_suspend(struct pci_dev
*pdev
, pm_message_t mesg
);
343 static int ahci_pci_device_resume(struct pci_dev
*pdev
);
345 static ssize_t
ahci_activity_show(struct ata_device
*dev
, char *buf
);
346 static ssize_t
ahci_activity_store(struct ata_device
*dev
,
347 enum sw_activity val
);
348 static void ahci_init_sw_activity(struct ata_link
*link
);
350 static ssize_t
ahci_show_host_caps(struct device
*dev
,
351 struct device_attribute
*attr
, char *buf
);
352 static ssize_t
ahci_show_host_cap2(struct device
*dev
,
353 struct device_attribute
*attr
, char *buf
);
354 static ssize_t
ahci_show_host_version(struct device
*dev
,
355 struct device_attribute
*attr
, char *buf
);
356 static ssize_t
ahci_show_port_cmd(struct device
*dev
,
357 struct device_attribute
*attr
, char *buf
);
359 DEVICE_ATTR(ahci_host_caps
, S_IRUGO
, ahci_show_host_caps
, NULL
);
360 DEVICE_ATTR(ahci_host_cap2
, S_IRUGO
, ahci_show_host_cap2
, NULL
);
361 DEVICE_ATTR(ahci_host_version
, S_IRUGO
, ahci_show_host_version
, NULL
);
362 DEVICE_ATTR(ahci_port_cmd
, S_IRUGO
, ahci_show_port_cmd
, NULL
);
364 static struct device_attribute
*ahci_shost_attrs
[] = {
365 &dev_attr_link_power_management_policy
,
366 &dev_attr_em_message_type
,
367 &dev_attr_em_message
,
368 &dev_attr_ahci_host_caps
,
369 &dev_attr_ahci_host_cap2
,
370 &dev_attr_ahci_host_version
,
371 &dev_attr_ahci_port_cmd
,
375 static struct device_attribute
*ahci_sdev_attrs
[] = {
376 &dev_attr_sw_activity
,
377 &dev_attr_unload_heads
,
381 static struct scsi_host_template ahci_sht
= {
382 ATA_NCQ_SHT(DRV_NAME
),
383 .can_queue
= AHCI_MAX_CMDS
- 1,
384 .sg_tablesize
= AHCI_MAX_SG
,
385 .dma_boundary
= AHCI_DMA_BOUNDARY
,
386 .shost_attrs
= ahci_shost_attrs
,
387 .sdev_attrs
= ahci_sdev_attrs
,
390 static struct ata_port_operations ahci_ops
= {
391 .inherits
= &sata_pmp_port_ops
,
393 .qc_defer
= sata_pmp_qc_defer_cmd_switch
,
394 .qc_prep
= ahci_qc_prep
,
395 .qc_issue
= ahci_qc_issue
,
396 .qc_fill_rtf
= ahci_qc_fill_rtf
,
398 .freeze
= ahci_freeze
,
400 .softreset
= ahci_softreset
,
401 .hardreset
= ahci_hardreset
,
402 .postreset
= ahci_postreset
,
403 .pmp_softreset
= ahci_softreset
,
404 .error_handler
= ahci_error_handler
,
405 .post_internal_cmd
= ahci_post_internal_cmd
,
406 .dev_config
= ahci_dev_config
,
408 .scr_read
= ahci_scr_read
,
409 .scr_write
= ahci_scr_write
,
410 .pmp_attach
= ahci_pmp_attach
,
411 .pmp_detach
= ahci_pmp_detach
,
413 .enable_pm
= ahci_enable_alpm
,
414 .disable_pm
= ahci_disable_alpm
,
415 .em_show
= ahci_led_show
,
416 .em_store
= ahci_led_store
,
417 .sw_activity_show
= ahci_activity_show
,
418 .sw_activity_store
= ahci_activity_store
,
420 .port_suspend
= ahci_port_suspend
,
421 .port_resume
= ahci_port_resume
,
423 .port_start
= ahci_port_start
,
424 .port_stop
= ahci_port_stop
,
427 static struct ata_port_operations ahci_vt8251_ops
= {
428 .inherits
= &ahci_ops
,
429 .hardreset
= ahci_vt8251_hardreset
,
432 static struct ata_port_operations ahci_p5wdh_ops
= {
433 .inherits
= &ahci_ops
,
434 .hardreset
= ahci_p5wdh_hardreset
,
437 static struct ata_port_operations ahci_sb600_ops
= {
438 .inherits
= &ahci_ops
,
439 .softreset
= ahci_sb600_softreset
,
440 .pmp_softreset
= ahci_sb600_softreset
,
443 #define AHCI_HFLAGS(flags) .private_data = (void *)(flags)
445 static const struct ata_port_info ahci_port_info
[] = {
448 .flags
= AHCI_FLAG_COMMON
,
449 .pio_mask
= ATA_PIO4
,
450 .udma_mask
= ATA_UDMA6
,
451 .port_ops
= &ahci_ops
,
453 [board_ahci_vt8251
] =
455 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ
| AHCI_HFLAG_NO_PMP
),
456 .flags
= AHCI_FLAG_COMMON
,
457 .pio_mask
= ATA_PIO4
,
458 .udma_mask
= ATA_UDMA6
,
459 .port_ops
= &ahci_vt8251_ops
,
461 [board_ahci_ign_iferr
] =
463 AHCI_HFLAGS (AHCI_HFLAG_IGN_IRQ_IF_ERR
),
464 .flags
= AHCI_FLAG_COMMON
,
465 .pio_mask
= ATA_PIO4
,
466 .udma_mask
= ATA_UDMA6
,
467 .port_ops
= &ahci_ops
,
471 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL
|
472 AHCI_HFLAG_NO_MSI
| AHCI_HFLAG_SECT255
|
473 AHCI_HFLAG_32BIT_ONLY
),
474 .flags
= AHCI_FLAG_COMMON
,
475 .pio_mask
= ATA_PIO4
,
476 .udma_mask
= ATA_UDMA6
,
477 .port_ops
= &ahci_sb600_ops
,
481 AHCI_HFLAGS (AHCI_HFLAG_NO_NCQ
| AHCI_HFLAG_NO_MSI
|
482 AHCI_HFLAG_MV_PATA
| AHCI_HFLAG_NO_PMP
),
483 .flags
= ATA_FLAG_SATA
| ATA_FLAG_NO_LEGACY
|
484 ATA_FLAG_MMIO
| ATA_FLAG_PIO_DMA
,
485 .pio_mask
= ATA_PIO4
,
486 .udma_mask
= ATA_UDMA6
,
487 .port_ops
= &ahci_ops
,
489 [board_ahci_sb700
] = /* for SB700 and SB800 */
491 AHCI_HFLAGS (AHCI_HFLAG_IGN_SERR_INTERNAL
),
492 .flags
= AHCI_FLAG_COMMON
,
493 .pio_mask
= ATA_PIO4
,
494 .udma_mask
= ATA_UDMA6
,
495 .port_ops
= &ahci_sb600_ops
,
499 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ
),
500 .flags
= AHCI_FLAG_COMMON
,
501 .pio_mask
= ATA_PIO4
,
502 .udma_mask
= ATA_UDMA6
,
503 .port_ops
= &ahci_ops
,
507 AHCI_HFLAGS (AHCI_HFLAG_NO_PMP
),
508 .flags
= AHCI_FLAG_COMMON
,
509 .pio_mask
= ATA_PIO4
,
510 .udma_mask
= ATA_UDMA6
,
511 .port_ops
= &ahci_ops
,
513 [board_ahci_yesncq
] =
515 AHCI_HFLAGS (AHCI_HFLAG_YES_NCQ
),
516 .flags
= AHCI_FLAG_COMMON
,
517 .pio_mask
= ATA_PIO4
,
518 .udma_mask
= ATA_UDMA6
,
519 .port_ops
= &ahci_ops
,
521 [board_ahci_nosntf
] =
523 AHCI_HFLAGS (AHCI_HFLAG_NO_SNTF
),
524 .flags
= AHCI_FLAG_COMMON
,
525 .pio_mask
= ATA_PIO4
,
526 .udma_mask
= ATA_UDMA6
,
527 .port_ops
= &ahci_ops
,
531 static const struct pci_device_id ahci_pci_tbl
[] = {
533 { PCI_VDEVICE(INTEL
, 0x2652), board_ahci
}, /* ICH6 */
534 { PCI_VDEVICE(INTEL
, 0x2653), board_ahci
}, /* ICH6M */
535 { PCI_VDEVICE(INTEL
, 0x27c1), board_ahci
}, /* ICH7 */
536 { PCI_VDEVICE(INTEL
, 0x27c5), board_ahci
}, /* ICH7M */
537 { PCI_VDEVICE(INTEL
, 0x27c3), board_ahci
}, /* ICH7R */
538 { PCI_VDEVICE(AL
, 0x5288), board_ahci_ign_iferr
}, /* ULi M5288 */
539 { PCI_VDEVICE(INTEL
, 0x2681), board_ahci
}, /* ESB2 */
540 { PCI_VDEVICE(INTEL
, 0x2682), board_ahci
}, /* ESB2 */
541 { PCI_VDEVICE(INTEL
, 0x2683), board_ahci
}, /* ESB2 */
542 { PCI_VDEVICE(INTEL
, 0x27c6), board_ahci
}, /* ICH7-M DH */
543 { PCI_VDEVICE(INTEL
, 0x2821), board_ahci
}, /* ICH8 */
544 { PCI_VDEVICE(INTEL
, 0x2822), board_ahci_nosntf
}, /* ICH8 */
545 { PCI_VDEVICE(INTEL
, 0x2824), board_ahci
}, /* ICH8 */
546 { PCI_VDEVICE(INTEL
, 0x2829), board_ahci
}, /* ICH8M */
547 { PCI_VDEVICE(INTEL
, 0x282a), board_ahci
}, /* ICH8M */
548 { PCI_VDEVICE(INTEL
, 0x2922), board_ahci
}, /* ICH9 */
549 { PCI_VDEVICE(INTEL
, 0x2923), board_ahci
}, /* ICH9 */
550 { PCI_VDEVICE(INTEL
, 0x2924), board_ahci
}, /* ICH9 */
551 { PCI_VDEVICE(INTEL
, 0x2925), board_ahci
}, /* ICH9 */
552 { PCI_VDEVICE(INTEL
, 0x2927), board_ahci
}, /* ICH9 */
553 { PCI_VDEVICE(INTEL
, 0x2929), board_ahci
}, /* ICH9M */
554 { PCI_VDEVICE(INTEL
, 0x292a), board_ahci
}, /* ICH9M */
555 { PCI_VDEVICE(INTEL
, 0x292b), board_ahci
}, /* ICH9M */
556 { PCI_VDEVICE(INTEL
, 0x292c), board_ahci
}, /* ICH9M */
557 { PCI_VDEVICE(INTEL
, 0x292f), board_ahci
}, /* ICH9M */
558 { PCI_VDEVICE(INTEL
, 0x294d), board_ahci
}, /* ICH9 */
559 { PCI_VDEVICE(INTEL
, 0x294e), board_ahci
}, /* ICH9M */
560 { PCI_VDEVICE(INTEL
, 0x502a), board_ahci
}, /* Tolapai */
561 { PCI_VDEVICE(INTEL
, 0x502b), board_ahci
}, /* Tolapai */
562 { PCI_VDEVICE(INTEL
, 0x3a05), board_ahci
}, /* ICH10 */
563 { PCI_VDEVICE(INTEL
, 0x3a22), board_ahci
}, /* ICH10 */
564 { PCI_VDEVICE(INTEL
, 0x3a25), board_ahci
}, /* ICH10 */
565 { PCI_VDEVICE(INTEL
, 0x3b22), board_ahci
}, /* PCH AHCI */
566 { PCI_VDEVICE(INTEL
, 0x3b23), board_ahci
}, /* PCH AHCI */
567 { PCI_VDEVICE(INTEL
, 0x3b24), board_ahci
}, /* PCH RAID */
568 { PCI_VDEVICE(INTEL
, 0x3b25), board_ahci
}, /* PCH RAID */
569 { PCI_VDEVICE(INTEL
, 0x3b29), board_ahci
}, /* PCH AHCI */
570 { PCI_VDEVICE(INTEL
, 0x3b2b), board_ahci
}, /* PCH RAID */
571 { PCI_VDEVICE(INTEL
, 0x3b2c), board_ahci
}, /* PCH RAID */
572 { PCI_VDEVICE(INTEL
, 0x3b2f), board_ahci
}, /* PCH AHCI */
573 { PCI_VDEVICE(INTEL
, 0x1c02), board_ahci
}, /* CPT AHCI */
574 { PCI_VDEVICE(INTEL
, 0x1c03), board_ahci
}, /* CPT AHCI */
575 { PCI_VDEVICE(INTEL
, 0x1c04), board_ahci
}, /* CPT RAID */
576 { PCI_VDEVICE(INTEL
, 0x1c05), board_ahci
}, /* CPT RAID */
577 { PCI_VDEVICE(INTEL
, 0x1c06), board_ahci
}, /* CPT RAID */
578 { PCI_VDEVICE(INTEL
, 0x1c07), board_ahci
}, /* CPT RAID */
579 { PCI_VDEVICE(INTEL
, 0x1d02), board_ahci
}, /* PBG AHCI */
580 { PCI_VDEVICE(INTEL
, 0x1d04), board_ahci
}, /* PBG RAID */
581 { PCI_VDEVICE(INTEL
, 0x1d06), board_ahci
}, /* PBG RAID */
582 { PCI_VDEVICE(INTEL
, 0x2826), board_ahci
}, /* PBG RAID */
583 { PCI_VDEVICE(INTEL
, 0x2323), board_ahci
}, /* DH89xxCC AHCI */
585 /* JMicron 360/1/3/5/6, match class to avoid IDE function */
586 { PCI_VENDOR_ID_JMICRON
, PCI_ANY_ID
, PCI_ANY_ID
, PCI_ANY_ID
,
587 PCI_CLASS_STORAGE_SATA_AHCI
, 0xffffff, board_ahci_ign_iferr
},
590 { PCI_VDEVICE(ATI
, 0x4380), board_ahci_sb600
}, /* ATI SB600 */
591 { PCI_VDEVICE(ATI
, 0x4390), board_ahci_sb700
}, /* ATI SB700/800 */
592 { PCI_VDEVICE(ATI
, 0x4391), board_ahci_sb700
}, /* ATI SB700/800 */
593 { PCI_VDEVICE(ATI
, 0x4392), board_ahci_sb700
}, /* ATI SB700/800 */
594 { PCI_VDEVICE(ATI
, 0x4393), board_ahci_sb700
}, /* ATI SB700/800 */
595 { PCI_VDEVICE(ATI
, 0x4394), board_ahci_sb700
}, /* ATI SB700/800 */
596 { PCI_VDEVICE(ATI
, 0x4395), board_ahci_sb700
}, /* ATI SB700/800 */
599 { PCI_VDEVICE(AMD
, 0x7800), board_ahci
}, /* AMD Hudson-2 */
600 /* AMD is using RAID class only for ahci controllers */
601 { PCI_VENDOR_ID_AMD
, PCI_ANY_ID
, PCI_ANY_ID
, PCI_ANY_ID
,
602 PCI_CLASS_STORAGE_RAID
<< 8, 0xffffff, board_ahci
},
605 { PCI_VDEVICE(VIA
, 0x3349), board_ahci_vt8251
}, /* VIA VT8251 */
606 { PCI_VDEVICE(VIA
, 0x6287), board_ahci_vt8251
}, /* VIA VT8251 */
609 { PCI_VDEVICE(NVIDIA
, 0x044c), board_ahci_mcp65
}, /* MCP65 */
610 { PCI_VDEVICE(NVIDIA
, 0x044d), board_ahci_mcp65
}, /* MCP65 */
611 { PCI_VDEVICE(NVIDIA
, 0x044e), board_ahci_mcp65
}, /* MCP65 */
612 { PCI_VDEVICE(NVIDIA
, 0x044f), board_ahci_mcp65
}, /* MCP65 */
613 { PCI_VDEVICE(NVIDIA
, 0x045c), board_ahci_mcp65
}, /* MCP65 */
614 { PCI_VDEVICE(NVIDIA
, 0x045d), board_ahci_mcp65
}, /* MCP65 */
615 { PCI_VDEVICE(NVIDIA
, 0x045e), board_ahci_mcp65
}, /* MCP65 */
616 { PCI_VDEVICE(NVIDIA
, 0x045f), board_ahci_mcp65
}, /* MCP65 */
617 { PCI_VDEVICE(NVIDIA
, 0x0550), board_ahci_yesncq
}, /* MCP67 */
618 { PCI_VDEVICE(NVIDIA
, 0x0551), board_ahci_yesncq
}, /* MCP67 */
619 { PCI_VDEVICE(NVIDIA
, 0x0552), board_ahci_yesncq
}, /* MCP67 */
620 { PCI_VDEVICE(NVIDIA
, 0x0553), board_ahci_yesncq
}, /* MCP67 */
621 { PCI_VDEVICE(NVIDIA
, 0x0554), board_ahci_yesncq
}, /* MCP67 */
622 { PCI_VDEVICE(NVIDIA
, 0x0555), board_ahci_yesncq
}, /* MCP67 */
623 { PCI_VDEVICE(NVIDIA
, 0x0556), board_ahci_yesncq
}, /* MCP67 */
624 { PCI_VDEVICE(NVIDIA
, 0x0557), board_ahci_yesncq
}, /* MCP67 */
625 { PCI_VDEVICE(NVIDIA
, 0x0558), board_ahci_yesncq
}, /* MCP67 */
626 { PCI_VDEVICE(NVIDIA
, 0x0559), board_ahci_yesncq
}, /* MCP67 */
627 { PCI_VDEVICE(NVIDIA
, 0x055a), board_ahci_yesncq
}, /* MCP67 */
628 { PCI_VDEVICE(NVIDIA
, 0x055b), board_ahci_yesncq
}, /* MCP67 */
629 { PCI_VDEVICE(NVIDIA
, 0x0580), board_ahci_yesncq
}, /* Linux ID */
630 { PCI_VDEVICE(NVIDIA
, 0x07f0), board_ahci_yesncq
}, /* MCP73 */
631 { PCI_VDEVICE(NVIDIA
, 0x07f1), board_ahci_yesncq
}, /* MCP73 */
632 { PCI_VDEVICE(NVIDIA
, 0x07f2), board_ahci_yesncq
}, /* MCP73 */
633 { PCI_VDEVICE(NVIDIA
, 0x07f3), board_ahci_yesncq
}, /* MCP73 */
634 { PCI_VDEVICE(NVIDIA
, 0x07f4), board_ahci_yesncq
}, /* MCP73 */
635 { PCI_VDEVICE(NVIDIA
, 0x07f5), board_ahci_yesncq
}, /* MCP73 */
636 { PCI_VDEVICE(NVIDIA
, 0x07f6), board_ahci_yesncq
}, /* MCP73 */
637 { PCI_VDEVICE(NVIDIA
, 0x07f7), board_ahci_yesncq
}, /* MCP73 */
638 { PCI_VDEVICE(NVIDIA
, 0x07f8), board_ahci_yesncq
}, /* MCP73 */
639 { PCI_VDEVICE(NVIDIA
, 0x07f9), board_ahci_yesncq
}, /* MCP73 */
640 { PCI_VDEVICE(NVIDIA
, 0x07fa), board_ahci_yesncq
}, /* MCP73 */
641 { PCI_VDEVICE(NVIDIA
, 0x07fb), board_ahci_yesncq
}, /* MCP73 */
642 { PCI_VDEVICE(NVIDIA
, 0x0ad0), board_ahci
}, /* MCP77 */
643 { PCI_VDEVICE(NVIDIA
, 0x0ad1), board_ahci
}, /* MCP77 */
644 { PCI_VDEVICE(NVIDIA
, 0x0ad2), board_ahci
}, /* MCP77 */
645 { PCI_VDEVICE(NVIDIA
, 0x0ad3), board_ahci
}, /* MCP77 */
646 { PCI_VDEVICE(NVIDIA
, 0x0ad4), board_ahci
}, /* MCP77 */
647 { PCI_VDEVICE(NVIDIA
, 0x0ad5), board_ahci
}, /* MCP77 */
648 { PCI_VDEVICE(NVIDIA
, 0x0ad6), board_ahci
}, /* MCP77 */
649 { PCI_VDEVICE(NVIDIA
, 0x0ad7), board_ahci
}, /* MCP77 */
650 { PCI_VDEVICE(NVIDIA
, 0x0ad8), board_ahci
}, /* MCP77 */
651 { PCI_VDEVICE(NVIDIA
, 0x0ad9), board_ahci
}, /* MCP77 */
652 { PCI_VDEVICE(NVIDIA
, 0x0ada), board_ahci
}, /* MCP77 */
653 { PCI_VDEVICE(NVIDIA
, 0x0adb), board_ahci
}, /* MCP77 */
654 { PCI_VDEVICE(NVIDIA
, 0x0ab4), board_ahci
}, /* MCP79 */
655 { PCI_VDEVICE(NVIDIA
, 0x0ab5), board_ahci
}, /* MCP79 */
656 { PCI_VDEVICE(NVIDIA
, 0x0ab6), board_ahci
}, /* MCP79 */
657 { PCI_VDEVICE(NVIDIA
, 0x0ab7), board_ahci
}, /* MCP79 */
658 { PCI_VDEVICE(NVIDIA
, 0x0ab8), board_ahci
}, /* MCP79 */
659 { PCI_VDEVICE(NVIDIA
, 0x0ab9), board_ahci
}, /* MCP79 */
660 { PCI_VDEVICE(NVIDIA
, 0x0aba), board_ahci
}, /* MCP79 */
661 { PCI_VDEVICE(NVIDIA
, 0x0abb), board_ahci
}, /* MCP79 */
662 { PCI_VDEVICE(NVIDIA
, 0x0abc), board_ahci
}, /* MCP79 */
663 { PCI_VDEVICE(NVIDIA
, 0x0abd), board_ahci
}, /* MCP79 */
664 { PCI_VDEVICE(NVIDIA
, 0x0abe), board_ahci
}, /* MCP79 */
665 { PCI_VDEVICE(NVIDIA
, 0x0abf), board_ahci
}, /* MCP79 */
666 { PCI_VDEVICE(NVIDIA
, 0x0d84), board_ahci
}, /* MCP89 */
667 { PCI_VDEVICE(NVIDIA
, 0x0d85), board_ahci
}, /* MCP89 */
668 { PCI_VDEVICE(NVIDIA
, 0x0d86), board_ahci
}, /* MCP89 */
669 { PCI_VDEVICE(NVIDIA
, 0x0d87), board_ahci
}, /* MCP89 */
670 { PCI_VDEVICE(NVIDIA
, 0x0d88), board_ahci
}, /* MCP89 */
671 { PCI_VDEVICE(NVIDIA
, 0x0d89), board_ahci
}, /* MCP89 */
672 { PCI_VDEVICE(NVIDIA
, 0x0d8a), board_ahci
}, /* MCP89 */
673 { PCI_VDEVICE(NVIDIA
, 0x0d8b), board_ahci
}, /* MCP89 */
674 { PCI_VDEVICE(NVIDIA
, 0x0d8c), board_ahci
}, /* MCP89 */
675 { PCI_VDEVICE(NVIDIA
, 0x0d8d), board_ahci
}, /* MCP89 */
676 { PCI_VDEVICE(NVIDIA
, 0x0d8e), board_ahci
}, /* MCP89 */
677 { PCI_VDEVICE(NVIDIA
, 0x0d8f), board_ahci
}, /* MCP89 */
680 { PCI_VDEVICE(SI
, 0x1184), board_ahci
}, /* SiS 966 */
681 { PCI_VDEVICE(SI
, 0x1185), board_ahci
}, /* SiS 968 */
682 { PCI_VDEVICE(SI
, 0x0186), board_ahci
}, /* SiS 968 */
685 { PCI_VDEVICE(MARVELL
, 0x6145), board_ahci_mv
}, /* 6145 */
686 { PCI_VDEVICE(MARVELL
, 0x6121), board_ahci_mv
}, /* 6121 */
689 { PCI_VDEVICE(PROMISE
, 0x3f20), board_ahci
}, /* PDC42819 */
691 /* Generic, PCI class code for AHCI */
692 { PCI_ANY_ID
, PCI_ANY_ID
, PCI_ANY_ID
, PCI_ANY_ID
,
693 PCI_CLASS_STORAGE_SATA_AHCI
, 0xffffff, board_ahci
},
695 { } /* terminate list */
699 static struct pci_driver ahci_pci_driver
= {
701 .id_table
= ahci_pci_tbl
,
702 .probe
= ahci_init_one
,
703 .remove
= ata_pci_remove_one
,
705 .suspend
= ahci_pci_device_suspend
,
706 .resume
= ahci_pci_device_resume
,
710 static int ahci_em_messages
= 1;
711 module_param(ahci_em_messages
, int, 0444);
712 /* add other LED protocol types when they become supported */
713 MODULE_PARM_DESC(ahci_em_messages
,
714 "Set AHCI Enclosure Management Message type (0 = disabled, 1 = LED");
716 #if defined(CONFIG_PATA_MARVELL) || defined(CONFIG_PATA_MARVELL_MODULE)
717 static int marvell_enable
;
719 static int marvell_enable
= 1;
721 module_param(marvell_enable
, int, 0644);
722 MODULE_PARM_DESC(marvell_enable
, "Marvell SATA via AHCI (1 = enabled)");
725 static inline int ahci_nr_ports(u32 cap
)
727 return (cap
& 0x1f) + 1;
730 static inline void __iomem
*__ahci_port_base(struct ata_host
*host
,
731 unsigned int port_no
)
733 void __iomem
*mmio
= host
->iomap
[AHCI_PCI_BAR
];
735 return mmio
+ 0x100 + (port_no
* 0x80);
738 static inline void __iomem
*ahci_port_base(struct ata_port
*ap
)
740 return __ahci_port_base(ap
->host
, ap
->port_no
);
743 static void ahci_enable_ahci(void __iomem
*mmio
)
748 /* turn on AHCI_EN */
749 tmp
= readl(mmio
+ HOST_CTL
);
750 if (tmp
& HOST_AHCI_EN
)
753 /* Some controllers need AHCI_EN to be written multiple times.
754 * Try a few times before giving up.
756 for (i
= 0; i
< 5; i
++) {
758 writel(tmp
, mmio
+ HOST_CTL
);
759 tmp
= readl(mmio
+ HOST_CTL
); /* flush && sanity check */
760 if (tmp
& HOST_AHCI_EN
)
768 static ssize_t
ahci_show_host_caps(struct device
*dev
,
769 struct device_attribute
*attr
, char *buf
)
771 struct Scsi_Host
*shost
= class_to_shost(dev
);
772 struct ata_port
*ap
= ata_shost_to_port(shost
);
773 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
775 return sprintf(buf
, "%x\n", hpriv
->cap
);
778 static ssize_t
ahci_show_host_cap2(struct device
*dev
,
779 struct device_attribute
*attr
, char *buf
)
781 struct Scsi_Host
*shost
= class_to_shost(dev
);
782 struct ata_port
*ap
= ata_shost_to_port(shost
);
783 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
785 return sprintf(buf
, "%x\n", hpriv
->cap2
);
788 static ssize_t
ahci_show_host_version(struct device
*dev
,
789 struct device_attribute
*attr
, char *buf
)
791 struct Scsi_Host
*shost
= class_to_shost(dev
);
792 struct ata_port
*ap
= ata_shost_to_port(shost
);
793 void __iomem
*mmio
= ap
->host
->iomap
[AHCI_PCI_BAR
];
795 return sprintf(buf
, "%x\n", readl(mmio
+ HOST_VERSION
));
798 static ssize_t
ahci_show_port_cmd(struct device
*dev
,
799 struct device_attribute
*attr
, char *buf
)
801 struct Scsi_Host
*shost
= class_to_shost(dev
);
802 struct ata_port
*ap
= ata_shost_to_port(shost
);
803 void __iomem
*port_mmio
= ahci_port_base(ap
);
805 return sprintf(buf
, "%x\n", readl(port_mmio
+ PORT_CMD
));
809 * ahci_save_initial_config - Save and fixup initial config values
810 * @pdev: target PCI device
811 * @hpriv: host private area to store config values
813 * Some registers containing configuration info might be setup by
814 * BIOS and might be cleared on reset. This function saves the
815 * initial values of those registers into @hpriv such that they
816 * can be restored after controller reset.
818 * If inconsistent, config values are fixed up by this function.
823 static void ahci_save_initial_config(struct pci_dev
*pdev
,
824 struct ahci_host_priv
*hpriv
)
826 void __iomem
*mmio
= pcim_iomap_table(pdev
)[AHCI_PCI_BAR
];
827 u32 cap
, cap2
, vers
, port_map
;
831 /* make sure AHCI mode is enabled before accessing CAP */
832 ahci_enable_ahci(mmio
);
834 /* Values prefixed with saved_ are written back to host after
835 * reset. Values without are used for driver operation.
837 hpriv
->saved_cap
= cap
= readl(mmio
+ HOST_CAP
);
838 hpriv
->saved_port_map
= port_map
= readl(mmio
+ HOST_PORTS_IMPL
);
840 /* CAP2 register is only defined for AHCI 1.2 and later */
841 vers
= readl(mmio
+ HOST_VERSION
);
842 if ((vers
>> 16) > 1 ||
843 ((vers
>> 16) == 1 && (vers
& 0xFFFF) >= 0x200))
844 hpriv
->saved_cap2
= cap2
= readl(mmio
+ HOST_CAP2
);
846 hpriv
->saved_cap2
= cap2
= 0;
848 /* some chips have errata preventing 64bit use */
849 if ((cap
& HOST_CAP_64
) && (hpriv
->flags
& AHCI_HFLAG_32BIT_ONLY
)) {
850 dev_printk(KERN_INFO
, &pdev
->dev
,
851 "controller can't do 64bit DMA, forcing 32bit\n");
855 if ((cap
& HOST_CAP_NCQ
) && (hpriv
->flags
& AHCI_HFLAG_NO_NCQ
)) {
856 dev_printk(KERN_INFO
, &pdev
->dev
,
857 "controller can't do NCQ, turning off CAP_NCQ\n");
858 cap
&= ~HOST_CAP_NCQ
;
861 if (!(cap
& HOST_CAP_NCQ
) && (hpriv
->flags
& AHCI_HFLAG_YES_NCQ
)) {
862 dev_printk(KERN_INFO
, &pdev
->dev
,
863 "controller can do NCQ, turning on CAP_NCQ\n");
867 if ((cap
& HOST_CAP_PMP
) && (hpriv
->flags
& AHCI_HFLAG_NO_PMP
)) {
868 dev_printk(KERN_INFO
, &pdev
->dev
,
869 "controller can't do PMP, turning off CAP_PMP\n");
870 cap
&= ~HOST_CAP_PMP
;
873 if ((cap
& HOST_CAP_SNTF
) && (hpriv
->flags
& AHCI_HFLAG_NO_SNTF
)) {
874 dev_printk(KERN_INFO
, &pdev
->dev
,
875 "controller can't do SNTF, turning off CAP_SNTF\n");
876 cap
&= ~HOST_CAP_SNTF
;
879 if (pdev
->vendor
== PCI_VENDOR_ID_JMICRON
&& pdev
->device
== 0x2361 &&
881 dev_printk(KERN_INFO
, &pdev
->dev
,
882 "JMB361 has only one port, port_map 0x%x -> 0x%x\n",
888 * Temporary Marvell 6145 hack: PATA port presence
889 * is asserted through the standard AHCI port
890 * presence register, as bit 4 (counting from 0)
892 if (hpriv
->flags
& AHCI_HFLAG_MV_PATA
) {
893 if (pdev
->device
== 0x6121)
897 dev_printk(KERN_ERR
, &pdev
->dev
,
898 "MV_AHCI HACK: port_map %x -> %x\n",
901 dev_printk(KERN_ERR
, &pdev
->dev
,
902 "Disabling your PATA port. Use the boot option 'ahci.marvell_enable=0' to avoid this.\n");
907 /* cross check port_map and cap.n_ports */
911 for (i
= 0; i
< AHCI_MAX_PORTS
; i
++)
912 if (port_map
& (1 << i
))
915 /* If PI has more ports than n_ports, whine, clear
916 * port_map and let it be generated from n_ports.
918 if (map_ports
> ahci_nr_ports(cap
)) {
919 dev_printk(KERN_WARNING
, &pdev
->dev
,
920 "implemented port map (0x%x) contains more "
921 "ports than nr_ports (%u), using nr_ports\n",
922 port_map
, ahci_nr_ports(cap
));
927 /* fabricate port_map from cap.nr_ports */
929 port_map
= (1 << ahci_nr_ports(cap
)) - 1;
930 dev_printk(KERN_WARNING
, &pdev
->dev
,
931 "forcing PORTS_IMPL to 0x%x\n", port_map
);
933 /* write the fixed up value to the PI register */
934 hpriv
->saved_port_map
= port_map
;
937 /* record values to use during operation */
940 hpriv
->port_map
= port_map
;
944 * ahci_restore_initial_config - Restore initial config
945 * @host: target ATA host
947 * Restore initial config stored by ahci_save_initial_config().
952 static void ahci_restore_initial_config(struct ata_host
*host
)
954 struct ahci_host_priv
*hpriv
= host
->private_data
;
955 void __iomem
*mmio
= host
->iomap
[AHCI_PCI_BAR
];
957 writel(hpriv
->saved_cap
, mmio
+ HOST_CAP
);
958 if (hpriv
->saved_cap2
)
959 writel(hpriv
->saved_cap2
, mmio
+ HOST_CAP2
);
960 writel(hpriv
->saved_port_map
, mmio
+ HOST_PORTS_IMPL
);
961 (void) readl(mmio
+ HOST_PORTS_IMPL
); /* flush */
964 static unsigned ahci_scr_offset(struct ata_port
*ap
, unsigned int sc_reg
)
966 static const int offset
[] = {
967 [SCR_STATUS
] = PORT_SCR_STAT
,
968 [SCR_CONTROL
] = PORT_SCR_CTL
,
969 [SCR_ERROR
] = PORT_SCR_ERR
,
970 [SCR_ACTIVE
] = PORT_SCR_ACT
,
971 [SCR_NOTIFICATION
] = PORT_SCR_NTF
,
973 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
975 if (sc_reg
< ARRAY_SIZE(offset
) &&
976 (sc_reg
!= SCR_NOTIFICATION
|| (hpriv
->cap
& HOST_CAP_SNTF
)))
977 return offset
[sc_reg
];
981 static int ahci_scr_read(struct ata_link
*link
, unsigned int sc_reg
, u32
*val
)
983 void __iomem
*port_mmio
= ahci_port_base(link
->ap
);
984 int offset
= ahci_scr_offset(link
->ap
, sc_reg
);
987 *val
= readl(port_mmio
+ offset
);
993 static int ahci_scr_write(struct ata_link
*link
, unsigned int sc_reg
, u32 val
)
995 void __iomem
*port_mmio
= ahci_port_base(link
->ap
);
996 int offset
= ahci_scr_offset(link
->ap
, sc_reg
);
999 writel(val
, port_mmio
+ offset
);
1005 static void ahci_start_engine(struct ata_port
*ap
)
1007 void __iomem
*port_mmio
= ahci_port_base(ap
);
1011 tmp
= readl(port_mmio
+ PORT_CMD
);
1012 tmp
|= PORT_CMD_START
;
1013 writel(tmp
, port_mmio
+ PORT_CMD
);
1014 readl(port_mmio
+ PORT_CMD
); /* flush */
1017 static int ahci_stop_engine(struct ata_port
*ap
)
1019 void __iomem
*port_mmio
= ahci_port_base(ap
);
1022 tmp
= readl(port_mmio
+ PORT_CMD
);
1024 /* check if the HBA is idle */
1025 if ((tmp
& (PORT_CMD_START
| PORT_CMD_LIST_ON
)) == 0)
1028 /* setting HBA to idle */
1029 tmp
&= ~PORT_CMD_START
;
1030 writel(tmp
, port_mmio
+ PORT_CMD
);
1032 /* wait for engine to stop. This could be as long as 500 msec */
1033 tmp
= ata_wait_register(port_mmio
+ PORT_CMD
,
1034 PORT_CMD_LIST_ON
, PORT_CMD_LIST_ON
, 1, 500);
1035 if (tmp
& PORT_CMD_LIST_ON
)
1041 static void ahci_start_fis_rx(struct ata_port
*ap
)
1043 void __iomem
*port_mmio
= ahci_port_base(ap
);
1044 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
1045 struct ahci_port_priv
*pp
= ap
->private_data
;
1048 /* set FIS registers */
1049 if (hpriv
->cap
& HOST_CAP_64
)
1050 writel((pp
->cmd_slot_dma
>> 16) >> 16,
1051 port_mmio
+ PORT_LST_ADDR_HI
);
1052 writel(pp
->cmd_slot_dma
& 0xffffffff, port_mmio
+ PORT_LST_ADDR
);
1054 if (hpriv
->cap
& HOST_CAP_64
)
1055 writel((pp
->rx_fis_dma
>> 16) >> 16,
1056 port_mmio
+ PORT_FIS_ADDR_HI
);
1057 writel(pp
->rx_fis_dma
& 0xffffffff, port_mmio
+ PORT_FIS_ADDR
);
1059 /* enable FIS reception */
1060 tmp
= readl(port_mmio
+ PORT_CMD
);
1061 tmp
|= PORT_CMD_FIS_RX
;
1062 writel(tmp
, port_mmio
+ PORT_CMD
);
1065 readl(port_mmio
+ PORT_CMD
);
1068 static int ahci_stop_fis_rx(struct ata_port
*ap
)
1070 void __iomem
*port_mmio
= ahci_port_base(ap
);
1073 /* disable FIS reception */
1074 tmp
= readl(port_mmio
+ PORT_CMD
);
1075 tmp
&= ~PORT_CMD_FIS_RX
;
1076 writel(tmp
, port_mmio
+ PORT_CMD
);
1078 /* wait for completion, spec says 500ms, give it 1000 */
1079 tmp
= ata_wait_register(port_mmio
+ PORT_CMD
, PORT_CMD_FIS_ON
,
1080 PORT_CMD_FIS_ON
, 10, 1000);
1081 if (tmp
& PORT_CMD_FIS_ON
)
1087 static void ahci_power_up(struct ata_port
*ap
)
1089 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
1090 void __iomem
*port_mmio
= ahci_port_base(ap
);
1093 cmd
= readl(port_mmio
+ PORT_CMD
) & ~PORT_CMD_ICC_MASK
;
1095 /* spin up device */
1096 if (hpriv
->cap
& HOST_CAP_SSS
) {
1097 cmd
|= PORT_CMD_SPIN_UP
;
1098 writel(cmd
, port_mmio
+ PORT_CMD
);
1102 writel(cmd
| PORT_CMD_ICC_ACTIVE
, port_mmio
+ PORT_CMD
);
1105 static void ahci_disable_alpm(struct ata_port
*ap
)
1107 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
1108 void __iomem
*port_mmio
= ahci_port_base(ap
);
1110 struct ahci_port_priv
*pp
= ap
->private_data
;
1112 /* IPM bits should be disabled by libata-core */
1113 /* get the existing command bits */
1114 cmd
= readl(port_mmio
+ PORT_CMD
);
1116 /* disable ALPM and ASP */
1117 cmd
&= ~PORT_CMD_ASP
;
1118 cmd
&= ~PORT_CMD_ALPE
;
1120 /* force the interface back to active */
1121 cmd
|= PORT_CMD_ICC_ACTIVE
;
1123 /* write out new cmd value */
1124 writel(cmd
, port_mmio
+ PORT_CMD
);
1125 cmd
= readl(port_mmio
+ PORT_CMD
);
1127 /* wait 10ms to be sure we've come out of any low power state */
1130 /* clear out any PhyRdy stuff from interrupt status */
1131 writel(PORT_IRQ_PHYRDY
, port_mmio
+ PORT_IRQ_STAT
);
1133 /* go ahead and clean out PhyRdy Change from Serror too */
1134 ahci_scr_write(&ap
->link
, SCR_ERROR
, ((1 << 16) | (1 << 18)));
1137 * Clear flag to indicate that we should ignore all PhyRdy
1140 hpriv
->flags
&= ~AHCI_HFLAG_NO_HOTPLUG
;
1143 * Enable interrupts on Phy Ready.
1145 pp
->intr_mask
|= PORT_IRQ_PHYRDY
;
1146 writel(pp
->intr_mask
, port_mmio
+ PORT_IRQ_MASK
);
1149 * don't change the link pm policy - we can be called
1150 * just to turn of link pm temporarily
1154 static int ahci_enable_alpm(struct ata_port
*ap
,
1155 enum link_pm policy
)
1157 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
1158 void __iomem
*port_mmio
= ahci_port_base(ap
);
1160 struct ahci_port_priv
*pp
= ap
->private_data
;
1163 /* Make sure the host is capable of link power management */
1164 if (!(hpriv
->cap
& HOST_CAP_ALPM
))
1168 case MAX_PERFORMANCE
:
1171 * if we came here with NOT_AVAILABLE,
1172 * it just means this is the first time we
1173 * have tried to enable - default to max performance,
1174 * and let the user go to lower power modes on request.
1176 ahci_disable_alpm(ap
);
1179 /* configure HBA to enter SLUMBER */
1183 /* configure HBA to enter PARTIAL */
1191 * Disable interrupts on Phy Ready. This keeps us from
1192 * getting woken up due to spurious phy ready interrupts
1193 * TBD - Hot plug should be done via polling now, is
1194 * that even supported?
1196 pp
->intr_mask
&= ~PORT_IRQ_PHYRDY
;
1197 writel(pp
->intr_mask
, port_mmio
+ PORT_IRQ_MASK
);
1200 * Set a flag to indicate that we should ignore all PhyRdy
1201 * state changes since these can happen now whenever we
1204 hpriv
->flags
|= AHCI_HFLAG_NO_HOTPLUG
;
1206 /* get the existing command bits */
1207 cmd
= readl(port_mmio
+ PORT_CMD
);
1210 * Set ASP based on Policy
1215 * Setting this bit will instruct the HBA to aggressively
1216 * enter a lower power link state when it's appropriate and
1217 * based on the value set above for ASP
1219 cmd
|= PORT_CMD_ALPE
;
1221 /* write out new cmd value */
1222 writel(cmd
, port_mmio
+ PORT_CMD
);
1223 cmd
= readl(port_mmio
+ PORT_CMD
);
1225 /* IPM bits should be set by libata-core */
1230 static void ahci_power_down(struct ata_port
*ap
)
1232 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
1233 void __iomem
*port_mmio
= ahci_port_base(ap
);
1236 if (!(hpriv
->cap
& HOST_CAP_SSS
))
1239 /* put device into listen mode, first set PxSCTL.DET to 0 */
1240 scontrol
= readl(port_mmio
+ PORT_SCR_CTL
);
1242 writel(scontrol
, port_mmio
+ PORT_SCR_CTL
);
1244 /* then set PxCMD.SUD to 0 */
1245 cmd
= readl(port_mmio
+ PORT_CMD
) & ~PORT_CMD_ICC_MASK
;
1246 cmd
&= ~PORT_CMD_SPIN_UP
;
1247 writel(cmd
, port_mmio
+ PORT_CMD
);
1251 static void ahci_start_port(struct ata_port
*ap
)
1253 struct ahci_port_priv
*pp
= ap
->private_data
;
1254 struct ata_link
*link
;
1255 struct ahci_em_priv
*emp
;
1259 /* enable FIS reception */
1260 ahci_start_fis_rx(ap
);
1263 ahci_start_engine(ap
);
1266 if (ap
->flags
& ATA_FLAG_EM
) {
1267 ata_for_each_link(link
, ap
, EDGE
) {
1268 emp
= &pp
->em_priv
[link
->pmp
];
1270 /* EM Transmit bit maybe busy during init */
1271 for (i
= 0; i
< EM_MAX_RETRY
; i
++) {
1272 rc
= ahci_transmit_led_message(ap
,
1283 if (ap
->flags
& ATA_FLAG_SW_ACTIVITY
)
1284 ata_for_each_link(link
, ap
, EDGE
)
1285 ahci_init_sw_activity(link
);
1289 static int ahci_deinit_port(struct ata_port
*ap
, const char **emsg
)
1294 rc
= ahci_stop_engine(ap
);
1296 *emsg
= "failed to stop engine";
1300 /* disable FIS reception */
1301 rc
= ahci_stop_fis_rx(ap
);
1303 *emsg
= "failed stop FIS RX";
1310 static int ahci_reset_controller(struct ata_host
*host
)
1312 struct pci_dev
*pdev
= to_pci_dev(host
->dev
);
1313 struct ahci_host_priv
*hpriv
= host
->private_data
;
1314 void __iomem
*mmio
= host
->iomap
[AHCI_PCI_BAR
];
1317 /* we must be in AHCI mode, before using anything
1318 * AHCI-specific, such as HOST_RESET.
1320 ahci_enable_ahci(mmio
);
1322 /* global controller reset */
1323 if (!ahci_skip_host_reset
) {
1324 tmp
= readl(mmio
+ HOST_CTL
);
1325 if ((tmp
& HOST_RESET
) == 0) {
1326 writel(tmp
| HOST_RESET
, mmio
+ HOST_CTL
);
1327 readl(mmio
+ HOST_CTL
); /* flush */
1331 * to perform host reset, OS should set HOST_RESET
1332 * and poll until this bit is read to be "0".
1333 * reset must complete within 1 second, or
1334 * the hardware should be considered fried.
1336 tmp
= ata_wait_register(mmio
+ HOST_CTL
, HOST_RESET
,
1337 HOST_RESET
, 10, 1000);
1339 if (tmp
& HOST_RESET
) {
1340 dev_printk(KERN_ERR
, host
->dev
,
1341 "controller reset failed (0x%x)\n", tmp
);
1345 /* turn on AHCI mode */
1346 ahci_enable_ahci(mmio
);
1348 /* Some registers might be cleared on reset. Restore
1351 ahci_restore_initial_config(host
);
1353 dev_printk(KERN_INFO
, host
->dev
,
1354 "skipping global host reset\n");
1356 if (pdev
->vendor
== PCI_VENDOR_ID_INTEL
) {
1360 pci_read_config_word(pdev
, 0x92, &tmp16
);
1361 if ((tmp16
& hpriv
->port_map
) != hpriv
->port_map
) {
1362 tmp16
|= hpriv
->port_map
;
1363 pci_write_config_word(pdev
, 0x92, tmp16
);
1370 static void ahci_sw_activity(struct ata_link
*link
)
1372 struct ata_port
*ap
= link
->ap
;
1373 struct ahci_port_priv
*pp
= ap
->private_data
;
1374 struct ahci_em_priv
*emp
= &pp
->em_priv
[link
->pmp
];
1376 if (!(link
->flags
& ATA_LFLAG_SW_ACTIVITY
))
1380 if (!timer_pending(&emp
->timer
))
1381 mod_timer(&emp
->timer
, jiffies
+ msecs_to_jiffies(10));
1384 static void ahci_sw_activity_blink(unsigned long arg
)
1386 struct ata_link
*link
= (struct ata_link
*)arg
;
1387 struct ata_port
*ap
= link
->ap
;
1388 struct ahci_port_priv
*pp
= ap
->private_data
;
1389 struct ahci_em_priv
*emp
= &pp
->em_priv
[link
->pmp
];
1390 unsigned long led_message
= emp
->led_state
;
1391 u32 activity_led_state
;
1392 unsigned long flags
;
1394 led_message
&= EM_MSG_LED_VALUE
;
1395 led_message
|= ap
->port_no
| (link
->pmp
<< 8);
1397 /* check to see if we've had activity. If so,
1398 * toggle state of LED and reset timer. If not,
1399 * turn LED to desired idle state.
1401 spin_lock_irqsave(ap
->lock
, flags
);
1402 if (emp
->saved_activity
!= emp
->activity
) {
1403 emp
->saved_activity
= emp
->activity
;
1404 /* get the current LED state */
1405 activity_led_state
= led_message
& EM_MSG_LED_VALUE_ON
;
1407 if (activity_led_state
)
1408 activity_led_state
= 0;
1410 activity_led_state
= 1;
1412 /* clear old state */
1413 led_message
&= ~EM_MSG_LED_VALUE_ACTIVITY
;
1416 led_message
|= (activity_led_state
<< 16);
1417 mod_timer(&emp
->timer
, jiffies
+ msecs_to_jiffies(100));
1419 /* switch to idle */
1420 led_message
&= ~EM_MSG_LED_VALUE_ACTIVITY
;
1421 if (emp
->blink_policy
== BLINK_OFF
)
1422 led_message
|= (1 << 16);
1424 spin_unlock_irqrestore(ap
->lock
, flags
);
1425 ahci_transmit_led_message(ap
, led_message
, 4);
1428 static void ahci_init_sw_activity(struct ata_link
*link
)
1430 struct ata_port
*ap
= link
->ap
;
1431 struct ahci_port_priv
*pp
= ap
->private_data
;
1432 struct ahci_em_priv
*emp
= &pp
->em_priv
[link
->pmp
];
1434 /* init activity stats, setup timer */
1435 emp
->saved_activity
= emp
->activity
= 0;
1436 setup_timer(&emp
->timer
, ahci_sw_activity_blink
, (unsigned long)link
);
1438 /* check our blink policy and set flag for link if it's enabled */
1439 if (emp
->blink_policy
)
1440 link
->flags
|= ATA_LFLAG_SW_ACTIVITY
;
1443 static int ahci_reset_em(struct ata_host
*host
)
1445 void __iomem
*mmio
= host
->iomap
[AHCI_PCI_BAR
];
1448 em_ctl
= readl(mmio
+ HOST_EM_CTL
);
1449 if ((em_ctl
& EM_CTL_TM
) || (em_ctl
& EM_CTL_RST
))
1452 writel(em_ctl
| EM_CTL_RST
, mmio
+ HOST_EM_CTL
);
1456 static ssize_t
ahci_transmit_led_message(struct ata_port
*ap
, u32 state
,
1459 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
1460 struct ahci_port_priv
*pp
= ap
->private_data
;
1461 void __iomem
*mmio
= ap
->host
->iomap
[AHCI_PCI_BAR
];
1463 u32 message
[] = {0, 0};
1464 unsigned long flags
;
1466 struct ahci_em_priv
*emp
;
1468 /* get the slot number from the message */
1469 pmp
= (state
& EM_MSG_LED_PMP_SLOT
) >> 8;
1470 if (pmp
< EM_MAX_SLOTS
)
1471 emp
= &pp
->em_priv
[pmp
];
1475 spin_lock_irqsave(ap
->lock
, flags
);
1478 * if we are still busy transmitting a previous message,
1481 em_ctl
= readl(mmio
+ HOST_EM_CTL
);
1482 if (em_ctl
& EM_CTL_TM
) {
1483 spin_unlock_irqrestore(ap
->lock
, flags
);
1488 * create message header - this is all zero except for
1489 * the message size, which is 4 bytes.
1491 message
[0] |= (4 << 8);
1493 /* ignore 0:4 of byte zero, fill in port info yourself */
1494 message
[1] = ((state
& ~EM_MSG_LED_HBA_PORT
) | ap
->port_no
);
1496 /* write message to EM_LOC */
1497 writel(message
[0], mmio
+ hpriv
->em_loc
);
1498 writel(message
[1], mmio
+ hpriv
->em_loc
+4);
1500 /* save off new led state for port/slot */
1501 emp
->led_state
= state
;
1504 * tell hardware to transmit the message
1506 writel(em_ctl
| EM_CTL_TM
, mmio
+ HOST_EM_CTL
);
1508 spin_unlock_irqrestore(ap
->lock
, flags
);
1512 static ssize_t
ahci_led_show(struct ata_port
*ap
, char *buf
)
1514 struct ahci_port_priv
*pp
= ap
->private_data
;
1515 struct ata_link
*link
;
1516 struct ahci_em_priv
*emp
;
1519 ata_for_each_link(link
, ap
, EDGE
) {
1520 emp
= &pp
->em_priv
[link
->pmp
];
1521 rc
+= sprintf(buf
, "%lx\n", emp
->led_state
);
1526 static ssize_t
ahci_led_store(struct ata_port
*ap
, const char *buf
,
1531 struct ahci_port_priv
*pp
= ap
->private_data
;
1532 struct ahci_em_priv
*emp
;
1534 state
= simple_strtoul(buf
, NULL
, 0);
1536 /* get the slot number from the message */
1537 pmp
= (state
& EM_MSG_LED_PMP_SLOT
) >> 8;
1538 if (pmp
< EM_MAX_SLOTS
)
1539 emp
= &pp
->em_priv
[pmp
];
1543 /* mask off the activity bits if we are in sw_activity
1544 * mode, user should turn off sw_activity before setting
1545 * activity led through em_message
1547 if (emp
->blink_policy
)
1548 state
&= ~EM_MSG_LED_VALUE_ACTIVITY
;
1550 return ahci_transmit_led_message(ap
, state
, size
);
1553 static ssize_t
ahci_activity_store(struct ata_device
*dev
, enum sw_activity val
)
1555 struct ata_link
*link
= dev
->link
;
1556 struct ata_port
*ap
= link
->ap
;
1557 struct ahci_port_priv
*pp
= ap
->private_data
;
1558 struct ahci_em_priv
*emp
= &pp
->em_priv
[link
->pmp
];
1559 u32 port_led_state
= emp
->led_state
;
1561 /* save the desired Activity LED behavior */
1564 link
->flags
&= ~(ATA_LFLAG_SW_ACTIVITY
);
1566 /* set the LED to OFF */
1567 port_led_state
&= EM_MSG_LED_VALUE_OFF
;
1568 port_led_state
|= (ap
->port_no
| (link
->pmp
<< 8));
1569 ahci_transmit_led_message(ap
, port_led_state
, 4);
1571 link
->flags
|= ATA_LFLAG_SW_ACTIVITY
;
1572 if (val
== BLINK_OFF
) {
1573 /* set LED to ON for idle */
1574 port_led_state
&= EM_MSG_LED_VALUE_OFF
;
1575 port_led_state
|= (ap
->port_no
| (link
->pmp
<< 8));
1576 port_led_state
|= EM_MSG_LED_VALUE_ON
; /* check this */
1577 ahci_transmit_led_message(ap
, port_led_state
, 4);
1580 emp
->blink_policy
= val
;
1584 static ssize_t
ahci_activity_show(struct ata_device
*dev
, char *buf
)
1586 struct ata_link
*link
= dev
->link
;
1587 struct ata_port
*ap
= link
->ap
;
1588 struct ahci_port_priv
*pp
= ap
->private_data
;
1589 struct ahci_em_priv
*emp
= &pp
->em_priv
[link
->pmp
];
1591 /* display the saved value of activity behavior for this
1594 return sprintf(buf
, "%d\n", emp
->blink_policy
);
1597 static void ahci_port_init(struct pci_dev
*pdev
, struct ata_port
*ap
,
1598 int port_no
, void __iomem
*mmio
,
1599 void __iomem
*port_mmio
)
1601 const char *emsg
= NULL
;
1605 /* make sure port is not active */
1606 rc
= ahci_deinit_port(ap
, &emsg
);
1608 dev_printk(KERN_WARNING
, &pdev
->dev
,
1609 "%s (%d)\n", emsg
, rc
);
1612 tmp
= readl(port_mmio
+ PORT_SCR_ERR
);
1613 VPRINTK("PORT_SCR_ERR 0x%x\n", tmp
);
1614 writel(tmp
, port_mmio
+ PORT_SCR_ERR
);
1616 /* clear port IRQ */
1617 tmp
= readl(port_mmio
+ PORT_IRQ_STAT
);
1618 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp
);
1620 writel(tmp
, port_mmio
+ PORT_IRQ_STAT
);
1622 writel(1 << port_no
, mmio
+ HOST_IRQ_STAT
);
1625 static void ahci_init_controller(struct ata_host
*host
)
1627 struct ahci_host_priv
*hpriv
= host
->private_data
;
1628 struct pci_dev
*pdev
= to_pci_dev(host
->dev
);
1629 void __iomem
*mmio
= host
->iomap
[AHCI_PCI_BAR
];
1631 void __iomem
*port_mmio
;
1635 if (hpriv
->flags
& AHCI_HFLAG_MV_PATA
) {
1636 if (pdev
->device
== 0x6121)
1640 port_mmio
= __ahci_port_base(host
, mv
);
1642 writel(0, port_mmio
+ PORT_IRQ_MASK
);
1644 /* clear port IRQ */
1645 tmp
= readl(port_mmio
+ PORT_IRQ_STAT
);
1646 VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp
);
1648 writel(tmp
, port_mmio
+ PORT_IRQ_STAT
);
1651 for (i
= 0; i
< host
->n_ports
; i
++) {
1652 struct ata_port
*ap
= host
->ports
[i
];
1654 port_mmio
= ahci_port_base(ap
);
1655 if (ata_port_is_dummy(ap
))
1658 ahci_port_init(pdev
, ap
, i
, mmio
, port_mmio
);
1661 tmp
= readl(mmio
+ HOST_CTL
);
1662 VPRINTK("HOST_CTL 0x%x\n", tmp
);
1663 writel(tmp
| HOST_IRQ_EN
, mmio
+ HOST_CTL
);
1664 tmp
= readl(mmio
+ HOST_CTL
);
1665 VPRINTK("HOST_CTL 0x%x\n", tmp
);
1668 static void ahci_dev_config(struct ata_device
*dev
)
1670 struct ahci_host_priv
*hpriv
= dev
->link
->ap
->host
->private_data
;
1672 if (hpriv
->flags
& AHCI_HFLAG_SECT255
) {
1673 dev
->max_sectors
= 255;
1674 ata_dev_printk(dev
, KERN_INFO
,
1675 "SB600 AHCI: limiting to 255 sectors per cmd\n");
1679 static unsigned int ahci_dev_classify(struct ata_port
*ap
)
1681 void __iomem
*port_mmio
= ahci_port_base(ap
);
1682 struct ata_taskfile tf
;
1685 tmp
= readl(port_mmio
+ PORT_SIG
);
1686 tf
.lbah
= (tmp
>> 24) & 0xff;
1687 tf
.lbam
= (tmp
>> 16) & 0xff;
1688 tf
.lbal
= (tmp
>> 8) & 0xff;
1689 tf
.nsect
= (tmp
) & 0xff;
1691 return ata_dev_classify(&tf
);
1694 static void ahci_fill_cmd_slot(struct ahci_port_priv
*pp
, unsigned int tag
,
1697 dma_addr_t cmd_tbl_dma
;
1699 cmd_tbl_dma
= pp
->cmd_tbl_dma
+ tag
* AHCI_CMD_TBL_SZ
;
1701 pp
->cmd_slot
[tag
].opts
= cpu_to_le32(opts
);
1702 pp
->cmd_slot
[tag
].status
= 0;
1703 pp
->cmd_slot
[tag
].tbl_addr
= cpu_to_le32(cmd_tbl_dma
& 0xffffffff);
1704 pp
->cmd_slot
[tag
].tbl_addr_hi
= cpu_to_le32((cmd_tbl_dma
>> 16) >> 16);
1707 static int ahci_kick_engine(struct ata_port
*ap
)
1709 void __iomem
*port_mmio
= ahci_port_base(ap
);
1710 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
1711 u8 status
= readl(port_mmio
+ PORT_TFDATA
) & 0xFF;
1716 rc
= ahci_stop_engine(ap
);
1721 * always do CLO if PMP is attached (AHCI-1.3 9.2)
1723 busy
= status
& (ATA_BUSY
| ATA_DRQ
);
1724 if (!busy
&& !sata_pmp_attached(ap
)) {
1729 if (!(hpriv
->cap
& HOST_CAP_CLO
)) {
1735 tmp
= readl(port_mmio
+ PORT_CMD
);
1736 tmp
|= PORT_CMD_CLO
;
1737 writel(tmp
, port_mmio
+ PORT_CMD
);
1740 tmp
= ata_wait_register(port_mmio
+ PORT_CMD
,
1741 PORT_CMD_CLO
, PORT_CMD_CLO
, 1, 500);
1742 if (tmp
& PORT_CMD_CLO
)
1745 /* restart engine */
1747 ahci_start_engine(ap
);
1751 static int ahci_exec_polled_cmd(struct ata_port
*ap
, int pmp
,
1752 struct ata_taskfile
*tf
, int is_cmd
, u16 flags
,
1753 unsigned long timeout_msec
)
1755 const u32 cmd_fis_len
= 5; /* five dwords */
1756 struct ahci_port_priv
*pp
= ap
->private_data
;
1757 void __iomem
*port_mmio
= ahci_port_base(ap
);
1758 u8
*fis
= pp
->cmd_tbl
;
1761 /* prep the command */
1762 ata_tf_to_fis(tf
, pmp
, is_cmd
, fis
);
1763 ahci_fill_cmd_slot(pp
, 0, cmd_fis_len
| flags
| (pmp
<< 12));
1766 writel(1, port_mmio
+ PORT_CMD_ISSUE
);
1769 tmp
= ata_wait_register(port_mmio
+ PORT_CMD_ISSUE
, 0x1, 0x1,
1772 ahci_kick_engine(ap
);
1776 readl(port_mmio
+ PORT_CMD_ISSUE
); /* flush */
1781 static int ahci_do_softreset(struct ata_link
*link
, unsigned int *class,
1782 int pmp
, unsigned long deadline
,
1783 int (*check_ready
)(struct ata_link
*link
))
1785 struct ata_port
*ap
= link
->ap
;
1786 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
1787 const char *reason
= NULL
;
1788 unsigned long now
, msecs
;
1789 struct ata_taskfile tf
;
1794 /* prepare for SRST (AHCI-1.1 10.4.1) */
1795 rc
= ahci_kick_engine(ap
);
1796 if (rc
&& rc
!= -EOPNOTSUPP
)
1797 ata_link_printk(link
, KERN_WARNING
,
1798 "failed to reset engine (errno=%d)\n", rc
);
1800 ata_tf_init(link
->device
, &tf
);
1802 /* issue the first D2H Register FIS */
1805 if (time_after(now
, deadline
))
1806 msecs
= jiffies_to_msecs(deadline
- now
);
1809 if (ahci_exec_polled_cmd(ap
, pmp
, &tf
, 0,
1810 AHCI_CMD_RESET
| AHCI_CMD_CLR_BUSY
, msecs
)) {
1812 reason
= "1st FIS failed";
1816 /* spec says at least 5us, but be generous and sleep for 1ms */
1819 /* issue the second D2H Register FIS */
1820 tf
.ctl
&= ~ATA_SRST
;
1821 ahci_exec_polled_cmd(ap
, pmp
, &tf
, 0, 0, 0);
1823 /* wait for link to become ready */
1824 rc
= ata_wait_after_reset(link
, deadline
, check_ready
);
1825 if (rc
== -EBUSY
&& hpriv
->flags
& AHCI_HFLAG_SRST_TOUT_IS_OFFLINE
) {
1827 * Workaround for cases where link online status can't
1828 * be trusted. Treat device readiness timeout as link
1831 ata_link_printk(link
, KERN_INFO
,
1832 "device not ready, treating as offline\n");
1833 *class = ATA_DEV_NONE
;
1835 /* link occupied, -ENODEV too is an error */
1836 reason
= "device not ready";
1839 *class = ahci_dev_classify(ap
);
1841 DPRINTK("EXIT, class=%u\n", *class);
1845 ata_link_printk(link
, KERN_ERR
, "softreset failed (%s)\n", reason
);
1849 static int ahci_check_ready(struct ata_link
*link
)
1851 void __iomem
*port_mmio
= ahci_port_base(link
->ap
);
1852 u8 status
= readl(port_mmio
+ PORT_TFDATA
) & 0xFF;
1854 return ata_check_ready(status
);
1857 static int ahci_softreset(struct ata_link
*link
, unsigned int *class,
1858 unsigned long deadline
)
1860 int pmp
= sata_srst_pmp(link
);
1864 return ahci_do_softreset(link
, class, pmp
, deadline
, ahci_check_ready
);
1867 static int ahci_sb600_check_ready(struct ata_link
*link
)
1869 void __iomem
*port_mmio
= ahci_port_base(link
->ap
);
1870 u8 status
= readl(port_mmio
+ PORT_TFDATA
) & 0xFF;
1871 u32 irq_status
= readl(port_mmio
+ PORT_IRQ_STAT
);
1874 * There is no need to check TFDATA if BAD PMP is found due to HW bug,
1875 * which can save timeout delay.
1877 if (irq_status
& PORT_IRQ_BAD_PMP
)
1880 return ata_check_ready(status
);
1883 static int ahci_sb600_softreset(struct ata_link
*link
, unsigned int *class,
1884 unsigned long deadline
)
1886 struct ata_port
*ap
= link
->ap
;
1887 void __iomem
*port_mmio
= ahci_port_base(ap
);
1888 int pmp
= sata_srst_pmp(link
);
1894 rc
= ahci_do_softreset(link
, class, pmp
, deadline
,
1895 ahci_sb600_check_ready
);
1898 * Soft reset fails on some ATI chips with IPMS set when PMP
1899 * is enabled but SATA HDD/ODD is connected to SATA port,
1900 * do soft reset again to port 0.
1903 irq_sts
= readl(port_mmio
+ PORT_IRQ_STAT
);
1904 if (irq_sts
& PORT_IRQ_BAD_PMP
) {
1905 ata_link_printk(link
, KERN_WARNING
,
1906 "applying SB600 PMP SRST workaround "
1908 rc
= ahci_do_softreset(link
, class, 0, deadline
,
1916 static int ahci_hardreset(struct ata_link
*link
, unsigned int *class,
1917 unsigned long deadline
)
1919 const unsigned long *timing
= sata_ehc_deb_timing(&link
->eh_context
);
1920 struct ata_port
*ap
= link
->ap
;
1921 struct ahci_port_priv
*pp
= ap
->private_data
;
1922 u8
*d2h_fis
= pp
->rx_fis
+ RX_FIS_D2H_REG
;
1923 struct ata_taskfile tf
;
1929 ahci_stop_engine(ap
);
1931 /* clear D2H reception area to properly wait for D2H FIS */
1932 ata_tf_init(link
->device
, &tf
);
1934 ata_tf_to_fis(&tf
, 0, 0, d2h_fis
);
1936 rc
= sata_link_hardreset(link
, timing
, deadline
, &online
,
1939 ahci_start_engine(ap
);
1942 *class = ahci_dev_classify(ap
);
1944 DPRINTK("EXIT, rc=%d, class=%u\n", rc
, *class);
1948 static int ahci_vt8251_hardreset(struct ata_link
*link
, unsigned int *class,
1949 unsigned long deadline
)
1951 struct ata_port
*ap
= link
->ap
;
1957 ahci_stop_engine(ap
);
1959 rc
= sata_link_hardreset(link
, sata_ehc_deb_timing(&link
->eh_context
),
1960 deadline
, &online
, NULL
);
1962 ahci_start_engine(ap
);
1964 DPRINTK("EXIT, rc=%d, class=%u\n", rc
, *class);
1966 /* vt8251 doesn't clear BSY on signature FIS reception,
1967 * request follow-up softreset.
1969 return online
? -EAGAIN
: rc
;
1972 static int ahci_p5wdh_hardreset(struct ata_link
*link
, unsigned int *class,
1973 unsigned long deadline
)
1975 struct ata_port
*ap
= link
->ap
;
1976 struct ahci_port_priv
*pp
= ap
->private_data
;
1977 u8
*d2h_fis
= pp
->rx_fis
+ RX_FIS_D2H_REG
;
1978 struct ata_taskfile tf
;
1982 ahci_stop_engine(ap
);
1984 /* clear D2H reception area to properly wait for D2H FIS */
1985 ata_tf_init(link
->device
, &tf
);
1987 ata_tf_to_fis(&tf
, 0, 0, d2h_fis
);
1989 rc
= sata_link_hardreset(link
, sata_ehc_deb_timing(&link
->eh_context
),
1990 deadline
, &online
, NULL
);
1992 ahci_start_engine(ap
);
1994 /* The pseudo configuration device on SIMG4726 attached to
1995 * ASUS P5W-DH Deluxe doesn't send signature FIS after
1996 * hardreset if no device is attached to the first downstream
1997 * port && the pseudo device locks up on SRST w/ PMP==0. To
1998 * work around this, wait for !BSY only briefly. If BSY isn't
1999 * cleared, perform CLO and proceed to IDENTIFY (achieved by
2000 * ATA_LFLAG_NO_SRST and ATA_LFLAG_ASSUME_ATA).
2002 * Wait for two seconds. Devices attached to downstream port
2003 * which can't process the following IDENTIFY after this will
2004 * have to be reset again. For most cases, this should
2005 * suffice while making probing snappish enough.
2008 rc
= ata_wait_after_reset(link
, jiffies
+ 2 * HZ
,
2011 ahci_kick_engine(ap
);
2016 static void ahci_postreset(struct ata_link
*link
, unsigned int *class)
2018 struct ata_port
*ap
= link
->ap
;
2019 void __iomem
*port_mmio
= ahci_port_base(ap
);
2022 ata_std_postreset(link
, class);
2024 /* Make sure port's ATAPI bit is set appropriately */
2025 new_tmp
= tmp
= readl(port_mmio
+ PORT_CMD
);
2026 if (*class == ATA_DEV_ATAPI
)
2027 new_tmp
|= PORT_CMD_ATAPI
;
2029 new_tmp
&= ~PORT_CMD_ATAPI
;
2030 if (new_tmp
!= tmp
) {
2031 writel(new_tmp
, port_mmio
+ PORT_CMD
);
2032 readl(port_mmio
+ PORT_CMD
); /* flush */
2036 static unsigned int ahci_fill_sg(struct ata_queued_cmd
*qc
, void *cmd_tbl
)
2038 struct scatterlist
*sg
;
2039 struct ahci_sg
*ahci_sg
= cmd_tbl
+ AHCI_CMD_TBL_HDR_SZ
;
2045 * Next, the S/G list.
2047 for_each_sg(qc
->sg
, sg
, qc
->n_elem
, si
) {
2048 dma_addr_t addr
= sg_dma_address(sg
);
2049 u32 sg_len
= sg_dma_len(sg
);
2051 ahci_sg
[si
].addr
= cpu_to_le32(addr
& 0xffffffff);
2052 ahci_sg
[si
].addr_hi
= cpu_to_le32((addr
>> 16) >> 16);
2053 ahci_sg
[si
].flags_size
= cpu_to_le32(sg_len
- 1);
2059 static void ahci_qc_prep(struct ata_queued_cmd
*qc
)
2061 struct ata_port
*ap
= qc
->ap
;
2062 struct ahci_port_priv
*pp
= ap
->private_data
;
2063 int is_atapi
= ata_is_atapi(qc
->tf
.protocol
);
2066 const u32 cmd_fis_len
= 5; /* five dwords */
2067 unsigned int n_elem
;
2070 * Fill in command table information. First, the header,
2071 * a SATA Register - Host to Device command FIS.
2073 cmd_tbl
= pp
->cmd_tbl
+ qc
->tag
* AHCI_CMD_TBL_SZ
;
2075 ata_tf_to_fis(&qc
->tf
, qc
->dev
->link
->pmp
, 1, cmd_tbl
);
2077 memset(cmd_tbl
+ AHCI_CMD_TBL_CDB
, 0, 32);
2078 memcpy(cmd_tbl
+ AHCI_CMD_TBL_CDB
, qc
->cdb
, qc
->dev
->cdb_len
);
2082 if (qc
->flags
& ATA_QCFLAG_DMAMAP
)
2083 n_elem
= ahci_fill_sg(qc
, cmd_tbl
);
2086 * Fill in command slot information.
2088 opts
= cmd_fis_len
| n_elem
<< 16 | (qc
->dev
->link
->pmp
<< 12);
2089 if (qc
->tf
.flags
& ATA_TFLAG_WRITE
)
2090 opts
|= AHCI_CMD_WRITE
;
2092 opts
|= AHCI_CMD_ATAPI
| AHCI_CMD_PREFETCH
;
2094 ahci_fill_cmd_slot(pp
, qc
->tag
, opts
);
2097 static void ahci_error_intr(struct ata_port
*ap
, u32 irq_stat
)
2099 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
2100 struct ahci_port_priv
*pp
= ap
->private_data
;
2101 struct ata_eh_info
*host_ehi
= &ap
->link
.eh_info
;
2102 struct ata_link
*link
= NULL
;
2103 struct ata_queued_cmd
*active_qc
;
2104 struct ata_eh_info
*active_ehi
;
2107 /* determine active link */
2108 ata_for_each_link(link
, ap
, EDGE
)
2109 if (ata_link_active(link
))
2114 active_qc
= ata_qc_from_tag(ap
, link
->active_tag
);
2115 active_ehi
= &link
->eh_info
;
2117 /* record irq stat */
2118 ata_ehi_clear_desc(host_ehi
);
2119 ata_ehi_push_desc(host_ehi
, "irq_stat 0x%08x", irq_stat
);
2121 /* AHCI needs SError cleared; otherwise, it might lock up */
2122 ahci_scr_read(&ap
->link
, SCR_ERROR
, &serror
);
2123 ahci_scr_write(&ap
->link
, SCR_ERROR
, serror
);
2124 host_ehi
->serror
|= serror
;
2126 /* some controllers set IRQ_IF_ERR on device errors, ignore it */
2127 if (hpriv
->flags
& AHCI_HFLAG_IGN_IRQ_IF_ERR
)
2128 irq_stat
&= ~PORT_IRQ_IF_ERR
;
2130 if (irq_stat
& PORT_IRQ_TF_ERR
) {
2131 /* If qc is active, charge it; otherwise, the active
2132 * link. There's no active qc on NCQ errors. It will
2133 * be determined by EH by reading log page 10h.
2136 active_qc
->err_mask
|= AC_ERR_DEV
;
2138 active_ehi
->err_mask
|= AC_ERR_DEV
;
2140 if (hpriv
->flags
& AHCI_HFLAG_IGN_SERR_INTERNAL
)
2141 host_ehi
->serror
&= ~SERR_INTERNAL
;
2144 if (irq_stat
& PORT_IRQ_UNK_FIS
) {
2145 u32
*unk
= (u32
*)(pp
->rx_fis
+ RX_FIS_UNK
);
2147 active_ehi
->err_mask
|= AC_ERR_HSM
;
2148 active_ehi
->action
|= ATA_EH_RESET
;
2149 ata_ehi_push_desc(active_ehi
,
2150 "unknown FIS %08x %08x %08x %08x" ,
2151 unk
[0], unk
[1], unk
[2], unk
[3]);
2154 if (sata_pmp_attached(ap
) && (irq_stat
& PORT_IRQ_BAD_PMP
)) {
2155 active_ehi
->err_mask
|= AC_ERR_HSM
;
2156 active_ehi
->action
|= ATA_EH_RESET
;
2157 ata_ehi_push_desc(active_ehi
, "incorrect PMP");
2160 if (irq_stat
& (PORT_IRQ_HBUS_ERR
| PORT_IRQ_HBUS_DATA_ERR
)) {
2161 host_ehi
->err_mask
|= AC_ERR_HOST_BUS
;
2162 host_ehi
->action
|= ATA_EH_RESET
;
2163 ata_ehi_push_desc(host_ehi
, "host bus error");
2166 if (irq_stat
& PORT_IRQ_IF_ERR
) {
2167 host_ehi
->err_mask
|= AC_ERR_ATA_BUS
;
2168 host_ehi
->action
|= ATA_EH_RESET
;
2169 ata_ehi_push_desc(host_ehi
, "interface fatal error");
2172 if (irq_stat
& (PORT_IRQ_CONNECT
| PORT_IRQ_PHYRDY
)) {
2173 ata_ehi_hotplugged(host_ehi
);
2174 ata_ehi_push_desc(host_ehi
, "%s",
2175 irq_stat
& PORT_IRQ_CONNECT
?
2176 "connection status changed" : "PHY RDY changed");
2179 /* okay, let's hand over to EH */
2181 if (irq_stat
& PORT_IRQ_FREEZE
)
2182 ata_port_freeze(ap
);
2187 static void ahci_port_intr(struct ata_port
*ap
)
2189 void __iomem
*port_mmio
= ahci_port_base(ap
);
2190 struct ata_eh_info
*ehi
= &ap
->link
.eh_info
;
2191 struct ahci_port_priv
*pp
= ap
->private_data
;
2192 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
2193 int resetting
= !!(ap
->pflags
& ATA_PFLAG_RESETTING
);
2194 u32 status
, qc_active
;
2197 status
= readl(port_mmio
+ PORT_IRQ_STAT
);
2198 writel(status
, port_mmio
+ PORT_IRQ_STAT
);
2200 /* ignore BAD_PMP while resetting */
2201 if (unlikely(resetting
))
2202 status
&= ~PORT_IRQ_BAD_PMP
;
2204 /* If we are getting PhyRdy, this is
2205 * just a power state change, we should
2206 * clear out this, plus the PhyRdy/Comm
2207 * Wake bits from Serror
2209 if ((hpriv
->flags
& AHCI_HFLAG_NO_HOTPLUG
) &&
2210 (status
& PORT_IRQ_PHYRDY
)) {
2211 status
&= ~PORT_IRQ_PHYRDY
;
2212 ahci_scr_write(&ap
->link
, SCR_ERROR
, ((1 << 16) | (1 << 18)));
2215 if (unlikely(status
& PORT_IRQ_ERROR
)) {
2216 ahci_error_intr(ap
, status
);
2220 if (status
& PORT_IRQ_SDB_FIS
) {
2221 /* If SNotification is available, leave notification
2222 * handling to sata_async_notification(). If not,
2223 * emulate it by snooping SDB FIS RX area.
2225 * Snooping FIS RX area is probably cheaper than
2226 * poking SNotification but some constrollers which
2227 * implement SNotification, ICH9 for example, don't
2228 * store AN SDB FIS into receive area.
2230 if (hpriv
->cap
& HOST_CAP_SNTF
)
2231 sata_async_notification(ap
);
2233 /* If the 'N' bit in word 0 of the FIS is set,
2234 * we just received asynchronous notification.
2235 * Tell libata about it.
2237 const __le32
*f
= pp
->rx_fis
+ RX_FIS_SDB
;
2238 u32 f0
= le32_to_cpu(f
[0]);
2241 sata_async_notification(ap
);
2245 /* pp->active_link is valid iff any command is in flight */
2246 if (ap
->qc_active
&& pp
->active_link
->sactive
)
2247 qc_active
= readl(port_mmio
+ PORT_SCR_ACT
);
2249 qc_active
= readl(port_mmio
+ PORT_CMD_ISSUE
);
2251 rc
= ata_qc_complete_multiple(ap
, qc_active
);
2253 /* while resetting, invalid completions are expected */
2254 if (unlikely(rc
< 0 && !resetting
)) {
2255 ehi
->err_mask
|= AC_ERR_HSM
;
2256 ehi
->action
|= ATA_EH_RESET
;
2257 ata_port_freeze(ap
);
2261 static irqreturn_t
ahci_interrupt(int irq
, void *dev_instance
)
2263 struct ata_host
*host
= dev_instance
;
2264 struct ahci_host_priv
*hpriv
;
2265 unsigned int i
, handled
= 0;
2267 u32 irq_stat
, irq_masked
;
2271 hpriv
= host
->private_data
;
2272 mmio
= host
->iomap
[AHCI_PCI_BAR
];
2274 /* sigh. 0xffffffff is a valid return from h/w */
2275 irq_stat
= readl(mmio
+ HOST_IRQ_STAT
);
2279 irq_masked
= irq_stat
& hpriv
->port_map
;
2281 spin_lock(&host
->lock
);
2283 for (i
= 0; i
< host
->n_ports
; i
++) {
2284 struct ata_port
*ap
;
2286 if (!(irq_masked
& (1 << i
)))
2289 ap
= host
->ports
[i
];
2292 VPRINTK("port %u\n", i
);
2294 VPRINTK("port %u (no irq)\n", i
);
2295 if (ata_ratelimit())
2296 dev_printk(KERN_WARNING
, host
->dev
,
2297 "interrupt on disabled port %u\n", i
);
2303 /* HOST_IRQ_STAT behaves as level triggered latch meaning that
2304 * it should be cleared after all the port events are cleared;
2305 * otherwise, it will raise a spurious interrupt after each
2306 * valid one. Please read section 10.6.2 of ahci 1.1 for more
2309 * Also, use the unmasked value to clear interrupt as spurious
2310 * pending event on a dummy port might cause screaming IRQ.
2312 writel(irq_stat
, mmio
+ HOST_IRQ_STAT
);
2314 spin_unlock(&host
->lock
);
2318 return IRQ_RETVAL(handled
);
2321 static unsigned int ahci_qc_issue(struct ata_queued_cmd
*qc
)
2323 struct ata_port
*ap
= qc
->ap
;
2324 void __iomem
*port_mmio
= ahci_port_base(ap
);
2325 struct ahci_port_priv
*pp
= ap
->private_data
;
2327 /* Keep track of the currently active link. It will be used
2328 * in completion path to determine whether NCQ phase is in
2331 pp
->active_link
= qc
->dev
->link
;
2333 if (qc
->tf
.protocol
== ATA_PROT_NCQ
)
2334 writel(1 << qc
->tag
, port_mmio
+ PORT_SCR_ACT
);
2335 writel(1 << qc
->tag
, port_mmio
+ PORT_CMD_ISSUE
);
2337 ahci_sw_activity(qc
->dev
->link
);
2342 static bool ahci_qc_fill_rtf(struct ata_queued_cmd
*qc
)
2344 struct ahci_port_priv
*pp
= qc
->ap
->private_data
;
2345 u8
*d2h_fis
= pp
->rx_fis
+ RX_FIS_D2H_REG
;
2347 ata_tf_from_fis(d2h_fis
, &qc
->result_tf
);
2351 static void ahci_freeze(struct ata_port
*ap
)
2353 void __iomem
*port_mmio
= ahci_port_base(ap
);
2356 writel(0, port_mmio
+ PORT_IRQ_MASK
);
2359 static void ahci_thaw(struct ata_port
*ap
)
2361 void __iomem
*mmio
= ap
->host
->iomap
[AHCI_PCI_BAR
];
2362 void __iomem
*port_mmio
= ahci_port_base(ap
);
2364 struct ahci_port_priv
*pp
= ap
->private_data
;
2367 tmp
= readl(port_mmio
+ PORT_IRQ_STAT
);
2368 writel(tmp
, port_mmio
+ PORT_IRQ_STAT
);
2369 writel(1 << ap
->port_no
, mmio
+ HOST_IRQ_STAT
);
2371 /* turn IRQ back on */
2372 writel(pp
->intr_mask
, port_mmio
+ PORT_IRQ_MASK
);
2375 static void ahci_error_handler(struct ata_port
*ap
)
2377 if (!(ap
->pflags
& ATA_PFLAG_FROZEN
)) {
2378 /* restart engine */
2379 ahci_stop_engine(ap
);
2380 ahci_start_engine(ap
);
2383 sata_pmp_error_handler(ap
);
2386 static void ahci_post_internal_cmd(struct ata_queued_cmd
*qc
)
2388 struct ata_port
*ap
= qc
->ap
;
2390 /* make DMA engine forget about the failed command */
2391 if (qc
->flags
& ATA_QCFLAG_FAILED
)
2392 ahci_kick_engine(ap
);
2395 static void ahci_pmp_attach(struct ata_port
*ap
)
2397 void __iomem
*port_mmio
= ahci_port_base(ap
);
2398 struct ahci_port_priv
*pp
= ap
->private_data
;
2401 cmd
= readl(port_mmio
+ PORT_CMD
);
2402 cmd
|= PORT_CMD_PMP
;
2403 writel(cmd
, port_mmio
+ PORT_CMD
);
2405 pp
->intr_mask
|= PORT_IRQ_BAD_PMP
;
2406 writel(pp
->intr_mask
, port_mmio
+ PORT_IRQ_MASK
);
2409 static void ahci_pmp_detach(struct ata_port
*ap
)
2411 void __iomem
*port_mmio
= ahci_port_base(ap
);
2412 struct ahci_port_priv
*pp
= ap
->private_data
;
2415 cmd
= readl(port_mmio
+ PORT_CMD
);
2416 cmd
&= ~PORT_CMD_PMP
;
2417 writel(cmd
, port_mmio
+ PORT_CMD
);
2419 pp
->intr_mask
&= ~PORT_IRQ_BAD_PMP
;
2420 writel(pp
->intr_mask
, port_mmio
+ PORT_IRQ_MASK
);
2423 static int ahci_port_resume(struct ata_port
*ap
)
2426 ahci_start_port(ap
);
2428 if (sata_pmp_attached(ap
))
2429 ahci_pmp_attach(ap
);
2431 ahci_pmp_detach(ap
);
2437 static int ahci_port_suspend(struct ata_port
*ap
, pm_message_t mesg
)
2439 const char *emsg
= NULL
;
2442 rc
= ahci_deinit_port(ap
, &emsg
);
2444 ahci_power_down(ap
);
2446 ata_port_printk(ap
, KERN_ERR
, "%s (%d)\n", emsg
, rc
);
2447 ahci_start_port(ap
);
2453 static int ahci_pci_device_suspend(struct pci_dev
*pdev
, pm_message_t mesg
)
2455 struct ata_host
*host
= dev_get_drvdata(&pdev
->dev
);
2456 struct ahci_host_priv
*hpriv
= host
->private_data
;
2457 void __iomem
*mmio
= host
->iomap
[AHCI_PCI_BAR
];
2460 if (mesg
.event
& PM_EVENT_SUSPEND
&&
2461 hpriv
->flags
& AHCI_HFLAG_NO_SUSPEND
) {
2462 dev_printk(KERN_ERR
, &pdev
->dev
,
2463 "BIOS update required for suspend/resume\n");
2467 if (mesg
.event
& PM_EVENT_SLEEP
) {
2468 /* AHCI spec rev1.1 section 8.3.3:
2469 * Software must disable interrupts prior to requesting a
2470 * transition of the HBA to D3 state.
2472 ctl
= readl(mmio
+ HOST_CTL
);
2473 ctl
&= ~HOST_IRQ_EN
;
2474 writel(ctl
, mmio
+ HOST_CTL
);
2475 readl(mmio
+ HOST_CTL
); /* flush */
2478 return ata_pci_device_suspend(pdev
, mesg
);
2481 static int ahci_pci_device_resume(struct pci_dev
*pdev
)
2483 struct ata_host
*host
= dev_get_drvdata(&pdev
->dev
);
2486 rc
= ata_pci_device_do_resume(pdev
);
2490 if (pdev
->dev
.power
.power_state
.event
== PM_EVENT_SUSPEND
) {
2491 rc
= ahci_reset_controller(host
);
2495 ahci_init_controller(host
);
2498 ata_host_resume(host
);
2504 static int ahci_port_start(struct ata_port
*ap
)
2506 struct device
*dev
= ap
->host
->dev
;
2507 struct ahci_port_priv
*pp
;
2511 pp
= devm_kzalloc(dev
, sizeof(*pp
), GFP_KERNEL
);
2515 mem
= dmam_alloc_coherent(dev
, AHCI_PORT_PRIV_DMA_SZ
, &mem_dma
,
2519 memset(mem
, 0, AHCI_PORT_PRIV_DMA_SZ
);
2522 * First item in chunk of DMA memory: 32-slot command table,
2523 * 32 bytes each in size
2526 pp
->cmd_slot_dma
= mem_dma
;
2528 mem
+= AHCI_CMD_SLOT_SZ
;
2529 mem_dma
+= AHCI_CMD_SLOT_SZ
;
2532 * Second item: Received-FIS area
2535 pp
->rx_fis_dma
= mem_dma
;
2537 mem
+= AHCI_RX_FIS_SZ
;
2538 mem_dma
+= AHCI_RX_FIS_SZ
;
2541 * Third item: data area for storing a single command
2542 * and its scatter-gather table
2545 pp
->cmd_tbl_dma
= mem_dma
;
2548 * Save off initial list of interrupts to be enabled.
2549 * This could be changed later
2551 pp
->intr_mask
= DEF_PORT_IRQ
;
2553 ap
->private_data
= pp
;
2555 /* engage engines, captain */
2556 return ahci_port_resume(ap
);
2559 static void ahci_port_stop(struct ata_port
*ap
)
2561 const char *emsg
= NULL
;
2564 /* de-initialize port */
2565 rc
= ahci_deinit_port(ap
, &emsg
);
2567 ata_port_printk(ap
, KERN_WARNING
, "%s (%d)\n", emsg
, rc
);
2570 static int ahci_configure_dma_masks(struct pci_dev
*pdev
, int using_dac
)
2575 !pci_set_dma_mask(pdev
, DMA_BIT_MASK(64))) {
2576 rc
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(64));
2578 rc
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(32));
2580 dev_printk(KERN_ERR
, &pdev
->dev
,
2581 "64-bit DMA enable failed\n");
2586 rc
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
2588 dev_printk(KERN_ERR
, &pdev
->dev
,
2589 "32-bit DMA enable failed\n");
2592 rc
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(32));
2594 dev_printk(KERN_ERR
, &pdev
->dev
,
2595 "32-bit consistent DMA enable failed\n");
2602 static void ahci_print_info(struct ata_host
*host
)
2604 struct ahci_host_priv
*hpriv
= host
->private_data
;
2605 struct pci_dev
*pdev
= to_pci_dev(host
->dev
);
2606 void __iomem
*mmio
= host
->iomap
[AHCI_PCI_BAR
];
2607 u32 vers
, cap
, cap2
, impl
, speed
;
2608 const char *speed_s
;
2612 vers
= readl(mmio
+ HOST_VERSION
);
2615 impl
= hpriv
->port_map
;
2617 speed
= (cap
>> 20) & 0xf;
2620 else if (speed
== 2)
2622 else if (speed
== 3)
2627 pci_read_config_word(pdev
, 0x0a, &cc
);
2628 if (cc
== PCI_CLASS_STORAGE_IDE
)
2630 else if (cc
== PCI_CLASS_STORAGE_SATA
)
2632 else if (cc
== PCI_CLASS_STORAGE_RAID
)
2637 dev_printk(KERN_INFO
, &pdev
->dev
,
2638 "AHCI %02x%02x.%02x%02x "
2639 "%u slots %u ports %s Gbps 0x%x impl %s mode\n"
2642 (vers
>> 24) & 0xff,
2643 (vers
>> 16) & 0xff,
2647 ((cap
>> 8) & 0x1f) + 1,
2653 dev_printk(KERN_INFO
, &pdev
->dev
,
2660 cap
& HOST_CAP_64
? "64bit " : "",
2661 cap
& HOST_CAP_NCQ
? "ncq " : "",
2662 cap
& HOST_CAP_SNTF
? "sntf " : "",
2663 cap
& HOST_CAP_MPS
? "ilck " : "",
2664 cap
& HOST_CAP_SSS
? "stag " : "",
2665 cap
& HOST_CAP_ALPM
? "pm " : "",
2666 cap
& HOST_CAP_LED
? "led " : "",
2667 cap
& HOST_CAP_CLO
? "clo " : "",
2668 cap
& HOST_CAP_ONLY
? "only " : "",
2669 cap
& HOST_CAP_PMP
? "pmp " : "",
2670 cap
& HOST_CAP_FBS
? "fbs " : "",
2671 cap
& HOST_CAP_PIO_MULTI
? "pio " : "",
2672 cap
& HOST_CAP_SSC
? "slum " : "",
2673 cap
& HOST_CAP_PART
? "part " : "",
2674 cap
& HOST_CAP_CCC
? "ccc " : "",
2675 cap
& HOST_CAP_EMS
? "ems " : "",
2676 cap
& HOST_CAP_SXS
? "sxs " : "",
2677 cap2
& HOST_CAP2_APST
? "apst " : "",
2678 cap2
& HOST_CAP2_NVMHCI
? "nvmp " : "",
2679 cap2
& HOST_CAP2_BOH
? "boh " : ""
2683 /* On ASUS P5W DH Deluxe, the second port of PCI device 00:1f.2 is
2684 * hardwired to on-board SIMG 4726. The chipset is ICH8 and doesn't
2685 * support PMP and the 4726 either directly exports the device
2686 * attached to the first downstream port or acts as a hardware storage
2687 * controller and emulate a single ATA device (can be RAID 0/1 or some
2688 * other configuration).
2690 * When there's no device attached to the first downstream port of the
2691 * 4726, "Config Disk" appears, which is a pseudo ATA device to
2692 * configure the 4726. However, ATA emulation of the device is very
2693 * lame. It doesn't send signature D2H Reg FIS after the initial
2694 * hardreset, pukes on SRST w/ PMP==0 and has bunch of other issues.
2696 * The following function works around the problem by always using
2697 * hardreset on the port and not depending on receiving signature FIS
2698 * afterward. If signature FIS isn't received soon, ATA class is
2699 * assumed without follow-up softreset.
2701 static void ahci_p5wdh_workaround(struct ata_host
*host
)
2703 static struct dmi_system_id sysids
[] = {
2705 .ident
= "P5W DH Deluxe",
2707 DMI_MATCH(DMI_SYS_VENDOR
,
2708 "ASUSTEK COMPUTER INC"),
2709 DMI_MATCH(DMI_PRODUCT_NAME
, "P5W DH Deluxe"),
2714 struct pci_dev
*pdev
= to_pci_dev(host
->dev
);
2716 if (pdev
->bus
->number
== 0 && pdev
->devfn
== PCI_DEVFN(0x1f, 2) &&
2717 dmi_check_system(sysids
)) {
2718 struct ata_port
*ap
= host
->ports
[1];
2720 dev_printk(KERN_INFO
, &pdev
->dev
, "enabling ASUS P5W DH "
2721 "Deluxe on-board SIMG4726 workaround\n");
2723 ap
->ops
= &ahci_p5wdh_ops
;
2724 ap
->link
.flags
|= ATA_LFLAG_NO_SRST
| ATA_LFLAG_ASSUME_ATA
;
2728 /* only some SB600 ahci controllers can do 64bit DMA */
2729 static bool ahci_sb600_enable_64bit(struct pci_dev
*pdev
)
2731 static const struct dmi_system_id sysids
[] = {
2733 * The oldest version known to be broken is 0901 and
2734 * working is 1501 which was released on 2007-10-26.
2735 * Enable 64bit DMA on 1501 and anything newer.
2737 * Please read bko#9412 for more info.
2740 .ident
= "ASUS M2A-VM",
2742 DMI_MATCH(DMI_BOARD_VENDOR
,
2743 "ASUSTeK Computer INC."),
2744 DMI_MATCH(DMI_BOARD_NAME
, "M2A-VM"),
2746 .driver_data
= "20071026", /* yyyymmdd */
2749 * All BIOS versions for the MSI K9A2 Platinum (MS-7376)
2750 * support 64bit DMA.
2752 * BIOS versions earlier than 1.5 had the Manufacturer DMI
2753 * fields as "MICRO-STAR INTERANTIONAL CO.,LTD".
2754 * This spelling mistake was fixed in BIOS version 1.5, so
2755 * 1.5 and later have the Manufacturer as
2756 * "MICRO-STAR INTERNATIONAL CO.,LTD".
2757 * So try to match on DMI_BOARD_VENDOR of "MICRO-STAR INTER".
2759 * BIOS versions earlier than 1.9 had a Board Product Name
2760 * DMI field of "MS-7376". This was changed to be
2761 * "K9A2 Platinum (MS-7376)" in version 1.9, but we can still
2762 * match on DMI_BOARD_NAME of "MS-7376".
2765 .ident
= "MSI K9A2 Platinum",
2767 DMI_MATCH(DMI_BOARD_VENDOR
,
2768 "MICRO-STAR INTER"),
2769 DMI_MATCH(DMI_BOARD_NAME
, "MS-7376"),
2773 * All BIOS versions for the Asus M3A support 64bit DMA.
2774 * (all release versions from 0301 to 1206 were tested)
2777 .ident
= "ASUS M3A",
2779 DMI_MATCH(DMI_BOARD_VENDOR
,
2780 "ASUSTeK Computer INC."),
2781 DMI_MATCH(DMI_BOARD_NAME
, "M3A"),
2786 const struct dmi_system_id
*match
;
2787 int year
, month
, date
;
2790 match
= dmi_first_match(sysids
);
2791 if (pdev
->bus
->number
!= 0 || pdev
->devfn
!= PCI_DEVFN(0x12, 0) ||
2795 if (!match
->driver_data
)
2798 dmi_get_date(DMI_BIOS_DATE
, &year
, &month
, &date
);
2799 snprintf(buf
, sizeof(buf
), "%04d%02d%02d", year
, month
, date
);
2801 if (strcmp(buf
, match
->driver_data
) >= 0)
2804 dev_printk(KERN_WARNING
, &pdev
->dev
, "%s: BIOS too old, "
2805 "forcing 32bit DMA, update BIOS\n", match
->ident
);
2810 dev_printk(KERN_WARNING
, &pdev
->dev
, "%s: enabling 64bit DMA\n",
2815 static bool ahci_broken_system_poweroff(struct pci_dev
*pdev
)
2817 static const struct dmi_system_id broken_systems
[] = {
2819 .ident
= "HP Compaq nx6310",
2821 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
2822 DMI_MATCH(DMI_PRODUCT_NAME
, "HP Compaq nx6310"),
2824 /* PCI slot number of the controller */
2825 .driver_data
= (void *)0x1FUL
,
2828 .ident
= "HP Compaq 6720s",
2830 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
2831 DMI_MATCH(DMI_PRODUCT_NAME
, "HP Compaq 6720s"),
2833 /* PCI slot number of the controller */
2834 .driver_data
= (void *)0x1FUL
,
2837 { } /* terminate list */
2839 const struct dmi_system_id
*dmi
= dmi_first_match(broken_systems
);
2842 unsigned long slot
= (unsigned long)dmi
->driver_data
;
2843 /* apply the quirk only to on-board controllers */
2844 return slot
== PCI_SLOT(pdev
->devfn
);
2850 static bool ahci_broken_suspend(struct pci_dev
*pdev
)
2852 static const struct dmi_system_id sysids
[] = {
2854 * On HP dv[4-6] and HDX18 with earlier BIOSen, link
2855 * to the harddisk doesn't become online after
2856 * resuming from STR. Warn and fail suspend.
2858 * http://bugzilla.kernel.org/show_bug.cgi?id=12276
2860 * Use dates instead of versions to match as HP is
2861 * apparently recycling both product and version
2864 * http://bugzilla.kernel.org/show_bug.cgi?id=15462
2869 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
2870 DMI_MATCH(DMI_PRODUCT_NAME
,
2871 "HP Pavilion dv4 Notebook PC"),
2873 .driver_data
= "20090105", /* F.30 */
2878 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
2879 DMI_MATCH(DMI_PRODUCT_NAME
,
2880 "HP Pavilion dv5 Notebook PC"),
2882 .driver_data
= "20090506", /* F.16 */
2887 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
2888 DMI_MATCH(DMI_PRODUCT_NAME
,
2889 "HP Pavilion dv6 Notebook PC"),
2891 .driver_data
= "20090423", /* F.21 */
2896 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
2897 DMI_MATCH(DMI_PRODUCT_NAME
,
2898 "HP HDX18 Notebook PC"),
2900 .driver_data
= "20090430", /* F.23 */
2903 * Acer eMachines G725 has the same problem. BIOS
2904 * V1.03 is known to be broken. V3.04 is known to
2905 * work. Inbetween, there are V1.06, V2.06 and V3.03
2906 * that we don't have much idea about. For now,
2907 * blacklist anything older than V3.04.
2909 * http://bugzilla.kernel.org/show_bug.cgi?id=15104
2914 DMI_MATCH(DMI_SYS_VENDOR
, "eMachines"),
2915 DMI_MATCH(DMI_PRODUCT_NAME
, "eMachines G725"),
2917 .driver_data
= "20091216", /* V3.04 */
2919 { } /* terminate list */
2921 const struct dmi_system_id
*dmi
= dmi_first_match(sysids
);
2922 int year
, month
, date
;
2925 if (!dmi
|| pdev
->bus
->number
|| pdev
->devfn
!= PCI_DEVFN(0x1f, 2))
2928 dmi_get_date(DMI_BIOS_DATE
, &year
, &month
, &date
);
2929 snprintf(buf
, sizeof(buf
), "%04d%02d%02d", year
, month
, date
);
2931 return strcmp(buf
, dmi
->driver_data
) < 0;
2934 static bool ahci_broken_online(struct pci_dev
*pdev
)
2936 #define ENCODE_BUSDEVFN(bus, slot, func) \
2937 (void *)(unsigned long)(((bus) << 8) | PCI_DEVFN((slot), (func)))
2938 static const struct dmi_system_id sysids
[] = {
2940 * There are several gigabyte boards which use
2941 * SIMG5723s configured as hardware RAID. Certain
2942 * 5723 firmware revisions shipped there keep the link
2943 * online but fail to answer properly to SRST or
2944 * IDENTIFY when no device is attached downstream
2945 * causing libata to retry quite a few times leading
2946 * to excessive detection delay.
2948 * As these firmwares respond to the second reset try
2949 * with invalid device signature, considering unknown
2950 * sig as offline works around the problem acceptably.
2953 .ident
= "EP45-DQ6",
2955 DMI_MATCH(DMI_BOARD_VENDOR
,
2956 "Gigabyte Technology Co., Ltd."),
2957 DMI_MATCH(DMI_BOARD_NAME
, "EP45-DQ6"),
2959 .driver_data
= ENCODE_BUSDEVFN(0x0a, 0x00, 0),
2962 .ident
= "EP45-DS5",
2964 DMI_MATCH(DMI_BOARD_VENDOR
,
2965 "Gigabyte Technology Co., Ltd."),
2966 DMI_MATCH(DMI_BOARD_NAME
, "EP45-DS5"),
2968 .driver_data
= ENCODE_BUSDEVFN(0x03, 0x00, 0),
2970 { } /* terminate list */
2972 #undef ENCODE_BUSDEVFN
2973 const struct dmi_system_id
*dmi
= dmi_first_match(sysids
);
2979 val
= (unsigned long)dmi
->driver_data
;
2981 return pdev
->bus
->number
== (val
>> 8) && pdev
->devfn
== (val
& 0xff);
2984 #ifdef CONFIG_ATA_ACPI
2985 static void ahci_gtf_filter_workaround(struct ata_host
*host
)
2987 static const struct dmi_system_id sysids
[] = {
2989 * Aspire 3810T issues a bunch of SATA enable commands
2990 * via _GTF including an invalid one and one which is
2991 * rejected by the device. Among the successful ones
2992 * is FPDMA non-zero offset enable which when enabled
2993 * only on the drive side leads to NCQ command
2994 * failures. Filter it out.
2997 .ident
= "Aspire 3810T",
2999 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
3000 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 3810T"),
3002 .driver_data
= (void *)ATA_ACPI_FILTER_FPDMA_OFFSET
,
3006 const struct dmi_system_id
*dmi
= dmi_first_match(sysids
);
3007 unsigned int filter
;
3013 filter
= (unsigned long)dmi
->driver_data
;
3014 dev_printk(KERN_INFO
, host
->dev
,
3015 "applying extra ACPI _GTF filter 0x%x for %s\n",
3016 filter
, dmi
->ident
);
3018 for (i
= 0; i
< host
->n_ports
; i
++) {
3019 struct ata_port
*ap
= host
->ports
[i
];
3020 struct ata_link
*link
;
3021 struct ata_device
*dev
;
3023 ata_for_each_link(link
, ap
, EDGE
)
3024 ata_for_each_dev(dev
, link
, ALL
)
3025 dev
->gtf_filter
|= filter
;
3029 static inline void ahci_gtf_filter_workaround(struct ata_host
*host
)
3033 static int ahci_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
3035 static int printed_version
;
3036 unsigned int board_id
= ent
->driver_data
;
3037 struct ata_port_info pi
= ahci_port_info
[board_id
];
3038 const struct ata_port_info
*ppi
[] = { &pi
, NULL
};
3039 struct device
*dev
= &pdev
->dev
;
3040 struct ahci_host_priv
*hpriv
;
3041 struct ata_host
*host
;
3046 WARN_ON(ATA_MAX_QUEUE
> AHCI_MAX_CMDS
);
3048 if (!printed_version
++)
3049 dev_printk(KERN_DEBUG
, &pdev
->dev
, "version " DRV_VERSION
"\n");
3051 /* The AHCI driver can only drive the SATA ports, the PATA driver
3052 can drive them all so if both drivers are selected make sure
3053 AHCI stays out of the way */
3054 if (pdev
->vendor
== PCI_VENDOR_ID_MARVELL
&& !marvell_enable
)
3058 * For some reason, MCP89 on MacBook 7,1 doesn't work with
3059 * ahci, use ata_generic instead.
3061 if (pdev
->vendor
== PCI_VENDOR_ID_NVIDIA
&&
3062 pdev
->device
== PCI_DEVICE_ID_NVIDIA_NFORCE_MCP89_SATA
&&
3063 pdev
->subsystem_vendor
== PCI_VENDOR_ID_APPLE
&&
3064 pdev
->subsystem_device
== 0xcb89)
3067 /* acquire resources */
3068 rc
= pcim_enable_device(pdev
);
3072 /* AHCI controllers often implement SFF compatible interface.
3073 * Grab all PCI BARs just in case.
3075 rc
= pcim_iomap_regions_request_all(pdev
, 1 << AHCI_PCI_BAR
, DRV_NAME
);
3077 pcim_pin_device(pdev
);
3081 if (pdev
->vendor
== PCI_VENDOR_ID_INTEL
&&
3082 (pdev
->device
== 0x2652 || pdev
->device
== 0x2653)) {
3085 /* ICH6s share the same PCI ID for both piix and ahci
3086 * modes. Enabling ahci mode while MAP indicates
3087 * combined mode is a bad idea. Yield to ata_piix.
3089 pci_read_config_byte(pdev
, ICH_MAP
, &map
);
3091 dev_printk(KERN_INFO
, &pdev
->dev
, "controller is in "
3092 "combined mode, can't enable AHCI mode\n");
3097 hpriv
= devm_kzalloc(dev
, sizeof(*hpriv
), GFP_KERNEL
);
3100 hpriv
->flags
|= (unsigned long)pi
.private_data
;
3102 /* MCP65 revision A1 and A2 can't do MSI */
3103 if (board_id
== board_ahci_mcp65
&&
3104 (pdev
->revision
== 0xa1 || pdev
->revision
== 0xa2))
3105 hpriv
->flags
|= AHCI_HFLAG_NO_MSI
;
3107 /* SB800 does NOT need the workaround to ignore SERR_INTERNAL */
3108 if (board_id
== board_ahci_sb700
&& pdev
->revision
>= 0x40)
3109 hpriv
->flags
&= ~AHCI_HFLAG_IGN_SERR_INTERNAL
;
3111 /* only some SB600s can do 64bit DMA */
3112 if (ahci_sb600_enable_64bit(pdev
))
3113 hpriv
->flags
&= ~AHCI_HFLAG_32BIT_ONLY
;
3115 if ((hpriv
->flags
& AHCI_HFLAG_NO_MSI
) || pci_enable_msi(pdev
))
3118 /* save initial config */
3119 ahci_save_initial_config(pdev
, hpriv
);
3122 if (hpriv
->cap
& HOST_CAP_NCQ
) {
3123 pi
.flags
|= ATA_FLAG_NCQ
;
3124 /* Auto-activate optimization is supposed to be supported on
3125 all AHCI controllers indicating NCQ support, but it seems
3126 to be broken at least on some NVIDIA MCP79 chipsets.
3127 Until we get info on which NVIDIA chipsets don't have this
3128 issue, if any, disable AA on all NVIDIA AHCIs. */
3129 if (pdev
->vendor
!= PCI_VENDOR_ID_NVIDIA
)
3130 pi
.flags
|= ATA_FLAG_FPDMA_AA
;
3133 if (hpriv
->cap
& HOST_CAP_PMP
)
3134 pi
.flags
|= ATA_FLAG_PMP
;
3136 if (ahci_em_messages
&& (hpriv
->cap
& HOST_CAP_EMS
)) {
3138 void __iomem
*mmio
= pcim_iomap_table(pdev
)[AHCI_PCI_BAR
];
3139 u32 em_loc
= readl(mmio
+ HOST_EM_LOC
);
3140 u32 em_ctl
= readl(mmio
+ HOST_EM_CTL
);
3142 messages
= (em_ctl
& EM_CTRL_MSG_TYPE
) >> 16;
3144 /* we only support LED message type right now */
3145 if ((messages
& 0x01) && (ahci_em_messages
== 1)) {
3147 hpriv
->em_loc
= ((em_loc
>> 16) * 4);
3148 pi
.flags
|= ATA_FLAG_EM
;
3149 if (!(em_ctl
& EM_CTL_ALHD
))
3150 pi
.flags
|= ATA_FLAG_SW_ACTIVITY
;
3154 if (ahci_broken_system_poweroff(pdev
)) {
3155 pi
.flags
|= ATA_FLAG_NO_POWEROFF_SPINDOWN
;
3156 dev_info(&pdev
->dev
,
3157 "quirky BIOS, skipping spindown on poweroff\n");
3160 if (ahci_broken_suspend(pdev
)) {
3161 hpriv
->flags
|= AHCI_HFLAG_NO_SUSPEND
;
3162 dev_printk(KERN_WARNING
, &pdev
->dev
,
3163 "BIOS update required for suspend/resume\n");
3166 if (ahci_broken_online(pdev
)) {
3167 hpriv
->flags
|= AHCI_HFLAG_SRST_TOUT_IS_OFFLINE
;
3168 dev_info(&pdev
->dev
,
3169 "online status unreliable, applying workaround\n");
3172 /* CAP.NP sometimes indicate the index of the last enabled
3173 * port, at other times, that of the last possible port, so
3174 * determining the maximum port number requires looking at
3175 * both CAP.NP and port_map.
3177 n_ports
= max(ahci_nr_ports(hpriv
->cap
), fls(hpriv
->port_map
));
3179 host
= ata_host_alloc_pinfo(&pdev
->dev
, ppi
, n_ports
);
3182 host
->iomap
= pcim_iomap_table(pdev
);
3183 host
->private_data
= hpriv
;
3185 if (!(hpriv
->cap
& HOST_CAP_SSS
) || ahci_ignore_sss
)
3186 host
->flags
|= ATA_HOST_PARALLEL_SCAN
;
3188 printk(KERN_INFO
"ahci: SSS flag set, parallel bus scan disabled\n");
3190 if (pi
.flags
& ATA_FLAG_EM
)
3191 ahci_reset_em(host
);
3193 for (i
= 0; i
< host
->n_ports
; i
++) {
3194 struct ata_port
*ap
= host
->ports
[i
];
3196 ata_port_pbar_desc(ap
, AHCI_PCI_BAR
, -1, "abar");
3197 ata_port_pbar_desc(ap
, AHCI_PCI_BAR
,
3198 0x100 + ap
->port_no
* 0x80, "port");
3200 /* set initial link pm policy */
3201 ap
->pm_policy
= NOT_AVAILABLE
;
3203 /* set enclosure management message type */
3204 if (ap
->flags
& ATA_FLAG_EM
)
3205 ap
->em_message_type
= ahci_em_messages
;
3208 /* disabled/not-implemented port */
3209 if (!(hpriv
->port_map
& (1 << i
)))
3210 ap
->ops
= &ata_dummy_port_ops
;
3213 /* apply workaround for ASUS P5W DH Deluxe mainboard */
3214 ahci_p5wdh_workaround(host
);
3216 /* apply gtf filter quirk */
3217 ahci_gtf_filter_workaround(host
);
3219 /* initialize adapter */
3220 rc
= ahci_configure_dma_masks(pdev
, hpriv
->cap
& HOST_CAP_64
);
3224 rc
= ahci_reset_controller(host
);
3228 ahci_init_controller(host
);
3229 ahci_print_info(host
);
3231 pci_set_master(pdev
);
3232 return ata_host_activate(host
, pdev
->irq
, ahci_interrupt
, IRQF_SHARED
,
3236 static int __init
ahci_init(void)
3238 return pci_register_driver(&ahci_pci_driver
);
3241 static void __exit
ahci_exit(void)
3243 pci_unregister_driver(&ahci_pci_driver
);
3247 MODULE_AUTHOR("Jeff Garzik");
3248 MODULE_DESCRIPTION("AHCI SATA low-level driver");
3249 MODULE_LICENSE("GPL");
3250 MODULE_DEVICE_TABLE(pci
, ahci_pci_tbl
);
3251 MODULE_VERSION(DRV_VERSION
);
3253 module_init(ahci_init
);
3254 module_exit(ahci_exit
);