blob: aee94f26072558d5de28669b9baf2af16772f89c [file] [log] [blame]
Sam Bradshaw88523a62011-08-30 08:34:26 -06001/*
2 * Driver for the Micron P320 SSD
3 * Copyright (C) 2011 Micron Technology, Inc.
4 *
5 * Portions of this code were derived from works subjected to the
6 * following copyright:
7 * Copyright (C) 2009 Integrated Device Technology, Inc.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
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 */
20
21#include <linux/pci.h>
22#include <linux/interrupt.h>
23#include <linux/ata.h>
24#include <linux/delay.h>
25#include <linux/hdreg.h>
26#include <linux/uaccess.h>
27#include <linux/random.h>
28#include <linux/smp.h>
29#include <linux/compat.h>
30#include <linux/fs.h>
Jens Axboe0e838c62011-09-28 07:35:40 -060031#include <linux/module.h>
Sam Bradshaw88523a62011-08-30 08:34:26 -060032#include <linux/genhd.h>
33#include <linux/blkdev.h>
Jens Axboeffc771b2014-05-09 09:42:02 -060034#include <linux/blk-mq.h>
Sam Bradshaw88523a62011-08-30 08:34:26 -060035#include <linux/bio.h>
36#include <linux/dma-mapping.h>
37#include <linux/idr.h>
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +010038#include <linux/kthread.h>
Sam Bradshaw88523a62011-08-30 08:34:26 -060039#include <../drivers/ata/ahci.h>
Asai Thambi S P45038362012-04-09 08:35:38 +020040#include <linux/export.h>
Asai Thambi S P7b421d22012-06-04 12:44:02 -070041#include <linux/debugfs.h>
Sam Bradshawf45c40a2014-06-06 13:28:48 -060042#include <linux/prefetch.h>
Sam Bradshaw88523a62011-08-30 08:34:26 -060043#include "mtip32xx.h"
44
45#define HW_CMD_SLOT_SZ (MTIP_MAX_COMMAND_SLOTS * 32)
Sam Bradshaw188b9f42014-01-15 10:14:57 -080046
47/* DMA region containing RX Fis, Identify, RLE10, and SMART buffers */
48#define AHCI_RX_FIS_SZ 0x100
49#define AHCI_RX_FIS_OFFSET 0x0
50#define AHCI_IDFY_SZ ATA_SECT_SIZE
51#define AHCI_IDFY_OFFSET 0x400
52#define AHCI_SECTBUF_SZ ATA_SECT_SIZE
53#define AHCI_SECTBUF_OFFSET 0x800
54#define AHCI_SMARTBUF_SZ ATA_SECT_SIZE
55#define AHCI_SMARTBUF_OFFSET 0xC00
56/* 0x100 + 0x200 + 0x200 + 0x200 is smaller than 4k but we pad it out */
57#define BLOCK_DMA_ALLOC_SZ 4096
58
59/* DMA region containing command table (should be 8192 bytes) */
60#define AHCI_CMD_SLOT_SZ sizeof(struct mtip_cmd_hdr)
61#define AHCI_CMD_TBL_SZ (MTIP_MAX_COMMAND_SLOTS * AHCI_CMD_SLOT_SZ)
62#define AHCI_CMD_TBL_OFFSET 0x0
63
64/* DMA region per command (contains header and SGL) */
65#define AHCI_CMD_TBL_HDR_SZ 0x80
66#define AHCI_CMD_TBL_HDR_OFFSET 0x0
67#define AHCI_CMD_TBL_SGL_SZ (MTIP_MAX_SG * sizeof(struct mtip_cmd_sg))
68#define AHCI_CMD_TBL_SGL_OFFSET AHCI_CMD_TBL_HDR_SZ
69#define CMD_DMA_ALLOC_SZ (AHCI_CMD_TBL_SGL_SZ + AHCI_CMD_TBL_HDR_SZ)
70
Sam Bradshaw88523a62011-08-30 08:34:26 -060071
Asai Thambi S P45038362012-04-09 08:35:38 +020072#define HOST_CAP_NZDMA (1 << 19)
Sam Bradshaw88523a62011-08-30 08:34:26 -060073#define HOST_HSORG 0xFC
74#define HSORG_DISABLE_SLOTGRP_INTR (1<<24)
75#define HSORG_DISABLE_SLOTGRP_PXIS (1<<16)
76#define HSORG_HWREV 0xFF00
77#define HSORG_STYLE 0x8
78#define HSORG_SLOTGROUPS 0x7
79
80#define PORT_COMMAND_ISSUE 0x38
81#define PORT_SDBV 0x7C
82
83#define PORT_OFFSET 0x100
84#define PORT_MEM_SIZE 0x80
85
86#define PORT_IRQ_ERR \
87 (PORT_IRQ_HBUS_ERR | PORT_IRQ_IF_ERR | PORT_IRQ_CONNECT | \
88 PORT_IRQ_PHYRDY | PORT_IRQ_UNK_FIS | PORT_IRQ_BAD_PMP | \
89 PORT_IRQ_TF_ERR | PORT_IRQ_HBUS_DATA_ERR | PORT_IRQ_IF_NONFATAL | \
90 PORT_IRQ_OVERFLOW)
91#define PORT_IRQ_LEGACY \
92 (PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS)
93#define PORT_IRQ_HANDLED \
94 (PORT_IRQ_SDB_FIS | PORT_IRQ_LEGACY | \
95 PORT_IRQ_TF_ERR | PORT_IRQ_IF_ERR | \
96 PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)
97#define DEF_PORT_IRQ \
98 (PORT_IRQ_ERR | PORT_IRQ_LEGACY | PORT_IRQ_SDB_FIS)
99
100/* product numbers */
101#define MTIP_PRODUCT_UNKNOWN 0x00
102#define MTIP_PRODUCT_ASICFPGA 0x11
103
104/* Device instance number, incremented each time a device is probed. */
105static int instance;
106
Zhu Yanjun9e35fdc2016-01-05 18:39:04 +0800107static struct list_head online_list;
108static struct list_head removing_list;
109static spinlock_t dev_lock;
Asai Thambi S P0caff002013-04-03 19:56:21 +0530110
Sam Bradshaw88523a62011-08-30 08:34:26 -0600111/*
112 * Global variable used to hold the major block device number
113 * allocated in mtip_init().
114 */
Jens Axboe3ff147d2011-09-27 21:33:53 -0600115static int mtip_major;
Asai Thambi S P7b421d22012-06-04 12:44:02 -0700116static struct dentry *dfs_parent;
Asai Thambi S P0caff002013-04-03 19:56:21 +0530117static struct dentry *dfs_device_status;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600118
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800119static u32 cpu_use[NR_CPUS];
120
Sam Bradshaw88523a62011-08-30 08:34:26 -0600121static DEFINE_SPINLOCK(rssd_index_lock);
122static DEFINE_IDA(rssd_index_ida);
123
Asai Thambi S P62ee8c12012-01-04 22:01:32 +0100124static int mtip_block_initialize(struct driver_data *dd);
125
Jens Axboe16d02c02011-09-27 15:50:01 -0600126#ifdef CONFIG_COMPAT
Sam Bradshaw88523a62011-08-30 08:34:26 -0600127struct mtip_compat_ide_task_request_s {
128 __u8 io_ports[8];
129 __u8 hob_ports[8];
130 ide_reg_valid_t out_flags;
131 ide_reg_valid_t in_flags;
132 int data_phase;
133 int req_cmd;
134 compat_ulong_t out_size;
135 compat_ulong_t in_size;
136};
Jens Axboe16d02c02011-09-27 15:50:01 -0600137#endif
Sam Bradshaw88523a62011-08-30 08:34:26 -0600138
Sam Bradshaw88523a62011-08-30 08:34:26 -0600139/*
Jens Axboe63166682011-09-27 21:27:43 -0600140 * This function check_for_surprise_removal is called
141 * while card is removed from the system and it will
142 * read the vendor id from the configration space
143 *
144 * @pdev Pointer to the pci_dev structure.
145 *
146 * return value
147 * true if device removed, else false
148 */
149static bool mtip_check_surprise_removal(struct pci_dev *pdev)
150{
151 u16 vendor_id = 0;
Asai Thambi S P8f8b8992013-09-11 13:14:42 -0600152 struct driver_data *dd = pci_get_drvdata(pdev);
153
154 if (dd->sr)
155 return true;
Jens Axboe63166682011-09-27 21:27:43 -0600156
157 /* Read the vendorID from the configuration space */
158 pci_read_config_word(pdev, 0x00, &vendor_id);
Asai Thambi S P8f8b8992013-09-11 13:14:42 -0600159 if (vendor_id == 0xFFFF) {
160 dd->sr = true;
161 if (dd->queue)
162 set_bit(QUEUE_FLAG_DEAD, &dd->queue->queue_flags);
163 else
164 dev_warn(&dd->pdev->dev,
165 "%s: dd->queue is NULL\n", __func__);
Jens Axboe63166682011-09-27 21:27:43 -0600166 return true; /* device removed */
Jens Axboe63166682011-09-27 21:27:43 -0600167 }
168
Asai Thambi S P8f8b8992013-09-11 13:14:42 -0600169 return false; /* device present */
Jens Axboe63166682011-09-27 21:27:43 -0600170}
171
Ming Leia4e84aa2017-04-27 07:45:18 -0600172/* we have to use runtime tag to setup command header */
173static void mtip_init_cmd_header(struct request *rq)
174{
175 struct driver_data *dd = rq->q->queuedata;
176 struct mtip_cmd *cmd = blk_mq_rq_to_pdu(rq);
177 u32 host_cap_64 = readl(dd->mmio + HOST_CAP) & HOST_CAP_64;
178
179 /* Point the command headers at the command tables. */
180 cmd->command_header = dd->port->command_list +
181 (sizeof(struct mtip_cmd_hdr) * rq->tag);
182 cmd->command_header_dma = dd->port->command_list_dma +
183 (sizeof(struct mtip_cmd_hdr) * rq->tag);
184
185 if (host_cap_64)
186 cmd->command_header->ctbau = __force_bit2int cpu_to_le32((cmd->command_dma >> 16) >> 16);
187
188 cmd->command_header->ctba = __force_bit2int cpu_to_le32(cmd->command_dma & 0xFFFFFFFF);
189}
190
Jens Axboeffc771b2014-05-09 09:42:02 -0600191static struct mtip_cmd *mtip_get_int_command(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -0600192{
Jens Axboeffc771b2014-05-09 09:42:02 -0600193 struct request *rq;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600194
Asai Thambi SP008e56d2016-02-24 21:21:20 -0800195 if (mtip_check_surprise_removal(dd->pdev))
196 return NULL;
197
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100198 rq = blk_mq_alloc_request(dd->queue, 0, BLK_MQ_REQ_RESERVED);
Asai Thambi SP008e56d2016-02-24 21:21:20 -0800199 if (IS_ERR(rq))
200 return NULL;
201
Ming Leia4e84aa2017-04-27 07:45:18 -0600202 /* Internal cmd isn't submitted via .queue_rq */
203 mtip_init_cmd_header(rq);
204
Jens Axboeffc771b2014-05-09 09:42:02 -0600205 return blk_mq_rq_to_pdu(rq);
206}
Sam Bradshaw88523a62011-08-30 08:34:26 -0600207
Jens Axboeffc771b2014-05-09 09:42:02 -0600208static void mtip_put_int_command(struct driver_data *dd, struct mtip_cmd *cmd)
209{
210 blk_put_request(blk_mq_rq_from_pdu(cmd));
Sam Bradshaw88523a62011-08-30 08:34:26 -0600211}
212
213/*
Jens Axboeffc771b2014-05-09 09:42:02 -0600214 * Once we add support for one hctx per mtip group, this will change a bit
Sam Bradshaw88523a62011-08-30 08:34:26 -0600215 */
Jens Axboeffc771b2014-05-09 09:42:02 -0600216static struct request *mtip_rq_from_tag(struct driver_data *dd,
217 unsigned int tag)
Sam Bradshaw88523a62011-08-30 08:34:26 -0600218{
Jens Axboe0e62f512014-06-04 10:23:49 -0600219 struct blk_mq_hw_ctx *hctx = dd->queue->queue_hw_ctx[0];
220
221 return blk_mq_tag_to_rq(hctx->tags, tag);
Jens Axboeffc771b2014-05-09 09:42:02 -0600222}
223
224static struct mtip_cmd *mtip_cmd_from_tag(struct driver_data *dd,
225 unsigned int tag)
226{
227 struct request *rq = mtip_rq_from_tag(dd, tag);
228
229 return blk_mq_rq_to_pdu(rq);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600230}
231
232/*
Asai Thambi S P8f8b8992013-09-11 13:14:42 -0600233 * IO completion function.
234 *
235 * This completion function is called by the driver ISR when a
236 * command that was issued by the kernel completes. It first calls the
237 * asynchronous completion function which normally calls back into the block
238 * layer passing the asynchronous callback data, then unmaps the
239 * scatter list associated with the completed command, and finally
240 * clears the allocated bit associated with the completed command.
241 *
242 * @port Pointer to the port data structure.
243 * @tag Tag of the command.
244 * @data Pointer to driver_data.
245 * @status Completion status.
246 *
247 * return value
248 * None
249 */
250static void mtip_async_complete(struct mtip_port *port,
Jens Axboeffc771b2014-05-09 09:42:02 -0600251 int tag, struct mtip_cmd *cmd, int status)
Asai Thambi S P8f8b8992013-09-11 13:14:42 -0600252{
Jens Axboeffc771b2014-05-09 09:42:02 -0600253 struct driver_data *dd = port->dd;
254 struct request *rq;
Asai Thambi S P8f8b8992013-09-11 13:14:42 -0600255
256 if (unlikely(!dd) || unlikely(!port))
257 return;
258
Asai Thambi S P8f8b8992013-09-11 13:14:42 -0600259 if (unlikely(status == PORT_IRQ_TF_ERR)) {
260 dev_warn(&port->dd->pdev->dev,
261 "Command tag %d failed due to TFE\n", tag);
262 }
263
Jens Axboeffc771b2014-05-09 09:42:02 -0600264 rq = mtip_rq_from_tag(dd, tag);
Asai Thambi S P8f8b8992013-09-11 13:14:42 -0600265
Christoph Hellwig4dda4732017-04-20 16:03:07 +0200266 cmd->status = status;
Christoph Hellwig08e00292017-04-20 16:03:09 +0200267 blk_mq_complete_request(rq);
Asai Thambi S P8f8b8992013-09-11 13:14:42 -0600268}
269
270/*
Jens Axboe63166682011-09-27 21:27:43 -0600271 * Reset the HBA (without sleeping)
272 *
Jens Axboe63166682011-09-27 21:27:43 -0600273 * @dd Pointer to the driver data structure.
274 *
275 * return value
276 * 0 The reset was successful.
277 * -1 The HBA Reset bit did not clear.
278 */
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +0530279static int mtip_hba_reset(struct driver_data *dd)
Jens Axboe63166682011-09-27 21:27:43 -0600280{
281 unsigned long timeout;
282
Jens Axboe63166682011-09-27 21:27:43 -0600283 /* Set the reset bit */
284 writel(HOST_RESET, dd->mmio + HOST_CTL);
285
286 /* Flush */
287 readl(dd->mmio + HOST_CTL);
288
Asai Thambi SP2f17d712015-05-11 15:57:16 -0700289 /*
290 * Spin for up to 10 seconds waiting for reset acknowledgement. Spec
291 * is 1 sec but in LUN failure conditions, up to 10 secs are required
292 */
293 timeout = jiffies + msecs_to_jiffies(10000);
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +0530294 do {
295 mdelay(10);
296 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag))
297 return -1;
Jens Axboe63166682011-09-27 21:27:43 -0600298
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +0530299 } while ((readl(dd->mmio + HOST_CTL) & HOST_RESET)
300 && time_before(jiffies, timeout));
Asai Thambi S P45038362012-04-09 08:35:38 +0200301
Jens Axboe63166682011-09-27 21:27:43 -0600302 if (readl(dd->mmio + HOST_CTL) & HOST_RESET)
303 return -1;
304
305 return 0;
306}
307
308/*
Sam Bradshaw88523a62011-08-30 08:34:26 -0600309 * Issue a command to the hardware.
310 *
311 * Set the appropriate bit in the s_active and Command Issue hardware
312 * registers, causing hardware command processing to begin.
313 *
314 * @port Pointer to the port structure.
315 * @tag The tag of the command to be issued.
316 *
317 * return value
318 * None
319 */
320static inline void mtip_issue_ncq_command(struct mtip_port *port, int tag)
321{
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800322 int group = tag >> 5;
323
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800324 /* guard SACT and CI registers */
325 spin_lock(&port->cmd_issue_lock[group]);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600326 writel((1 << MTIP_TAG_BIT(tag)),
327 port->s_active[MTIP_TAG_INDEX(tag)]);
328 writel((1 << MTIP_TAG_BIT(tag)),
329 port->cmd_issue[MTIP_TAG_INDEX(tag)]);
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800330 spin_unlock(&port->cmd_issue_lock[group]);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600331}
332
333/*
Jens Axboe63166682011-09-27 21:27:43 -0600334 * Enable/disable the reception of FIS
335 *
336 * @port Pointer to the port data structure
337 * @enable 1 to enable, 0 to disable
338 *
339 * return value
340 * Previous state: 1 enabled, 0 disabled
341 */
342static int mtip_enable_fis(struct mtip_port *port, int enable)
343{
344 u32 tmp;
345
346 /* enable FIS reception */
347 tmp = readl(port->mmio + PORT_CMD);
348 if (enable)
349 writel(tmp | PORT_CMD_FIS_RX, port->mmio + PORT_CMD);
350 else
351 writel(tmp & ~PORT_CMD_FIS_RX, port->mmio + PORT_CMD);
352
353 /* Flush */
354 readl(port->mmio + PORT_CMD);
355
356 return (((tmp & PORT_CMD_FIS_RX) == PORT_CMD_FIS_RX));
357}
358
359/*
360 * Enable/disable the DMA engine
361 *
362 * @port Pointer to the port data structure
363 * @enable 1 to enable, 0 to disable
364 *
365 * return value
366 * Previous state: 1 enabled, 0 disabled.
367 */
368static int mtip_enable_engine(struct mtip_port *port, int enable)
369{
370 u32 tmp;
371
372 /* enable FIS reception */
373 tmp = readl(port->mmio + PORT_CMD);
374 if (enable)
375 writel(tmp | PORT_CMD_START, port->mmio + PORT_CMD);
376 else
377 writel(tmp & ~PORT_CMD_START, port->mmio + PORT_CMD);
378
379 readl(port->mmio + PORT_CMD);
380 return (((tmp & PORT_CMD_START) == PORT_CMD_START));
381}
382
383/*
384 * Enables the port DMA engine and FIS reception.
385 *
386 * return value
387 * None
388 */
389static inline void mtip_start_port(struct mtip_port *port)
390{
391 /* Enable FIS reception */
392 mtip_enable_fis(port, 1);
393
394 /* Enable the DMA engine */
395 mtip_enable_engine(port, 1);
396}
397
398/*
399 * Deinitialize a port by disabling port interrupts, the DMA engine,
400 * and FIS reception.
401 *
402 * @port Pointer to the port structure
403 *
404 * return value
405 * None
406 */
407static inline void mtip_deinit_port(struct mtip_port *port)
408{
409 /* Disable interrupts on this port */
410 writel(0, port->mmio + PORT_IRQ_MASK);
411
412 /* Disable the DMA engine */
413 mtip_enable_engine(port, 0);
414
415 /* Disable FIS reception */
416 mtip_enable_fis(port, 0);
417}
418
419/*
420 * Initialize a port.
421 *
422 * This function deinitializes the port by calling mtip_deinit_port() and
423 * then initializes it by setting the command header and RX FIS addresses,
424 * clearing the SError register and any pending port interrupts before
425 * re-enabling the default set of port interrupts.
426 *
427 * @port Pointer to the port structure.
428 *
429 * return value
430 * None
431 */
432static void mtip_init_port(struct mtip_port *port)
433{
434 int i;
435 mtip_deinit_port(port);
436
437 /* Program the command list base and FIS base addresses */
438 if (readl(port->dd->mmio + HOST_CAP) & HOST_CAP_64) {
439 writel((port->command_list_dma >> 16) >> 16,
440 port->mmio + PORT_LST_ADDR_HI);
441 writel((port->rxfis_dma >> 16) >> 16,
442 port->mmio + PORT_FIS_ADDR_HI);
443 }
444
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +0100445 writel(port->command_list_dma & 0xFFFFFFFF,
Jens Axboe63166682011-09-27 21:27:43 -0600446 port->mmio + PORT_LST_ADDR);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +0100447 writel(port->rxfis_dma & 0xFFFFFFFF, port->mmio + PORT_FIS_ADDR);
Jens Axboe63166682011-09-27 21:27:43 -0600448
449 /* Clear SError */
450 writel(readl(port->mmio + PORT_SCR_ERR), port->mmio + PORT_SCR_ERR);
451
452 /* reset the completed registers.*/
453 for (i = 0; i < port->dd->slot_groups; i++)
454 writel(0xFFFFFFFF, port->completed[i]);
455
456 /* Clear any pending interrupts for this port */
Asai Thambi S P6bb688c2012-05-29 18:40:45 -0700457 writel(readl(port->mmio + PORT_IRQ_STAT), port->mmio + PORT_IRQ_STAT);
Jens Axboe63166682011-09-27 21:27:43 -0600458
Asai Thambi S P22be2e62012-03-23 12:33:03 +0100459 /* Clear any pending interrupts on the HBA. */
460 writel(readl(port->dd->mmio + HOST_IRQ_STAT),
461 port->dd->mmio + HOST_IRQ_STAT);
462
Jens Axboe63166682011-09-27 21:27:43 -0600463 /* Enable port interrupts */
464 writel(DEF_PORT_IRQ, port->mmio + PORT_IRQ_MASK);
465}
466
467/*
468 * Restart a port
469 *
470 * @port Pointer to the port data structure.
471 *
472 * return value
473 * None
474 */
475static void mtip_restart_port(struct mtip_port *port)
476{
477 unsigned long timeout;
478
479 /* Disable the DMA engine */
480 mtip_enable_engine(port, 0);
481
482 /* Chip quirk: wait up to 500ms for PxCMD.CR == 0 */
483 timeout = jiffies + msecs_to_jiffies(500);
484 while ((readl(port->mmio + PORT_CMD) & PORT_CMD_LIST_ON)
485 && time_before(jiffies, timeout))
486 ;
487
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200488 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &port->dd->dd_flag))
Asai Thambi S P45038362012-04-09 08:35:38 +0200489 return;
490
Jens Axboe63166682011-09-27 21:27:43 -0600491 /*
492 * Chip quirk: escalate to hba reset if
493 * PxCMD.CR not clear after 500 ms
494 */
495 if (readl(port->mmio + PORT_CMD) & PORT_CMD_LIST_ON) {
496 dev_warn(&port->dd->pdev->dev,
497 "PxCMD.CR not clear, escalating reset\n");
498
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +0530499 if (mtip_hba_reset(port->dd))
Jens Axboe63166682011-09-27 21:27:43 -0600500 dev_err(&port->dd->pdev->dev,
501 "HBA reset escalation failed.\n");
502
503 /* 30 ms delay before com reset to quiesce chip */
504 mdelay(30);
505 }
506
507 dev_warn(&port->dd->pdev->dev, "Issuing COM reset\n");
508
509 /* Set PxSCTL.DET */
510 writel(readl(port->mmio + PORT_SCR_CTL) |
511 1, port->mmio + PORT_SCR_CTL);
512 readl(port->mmio + PORT_SCR_CTL);
513
514 /* Wait 1 ms to quiesce chip function */
515 timeout = jiffies + msecs_to_jiffies(1);
516 while (time_before(jiffies, timeout))
517 ;
518
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200519 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &port->dd->dd_flag))
Asai Thambi S P45038362012-04-09 08:35:38 +0200520 return;
521
Jens Axboe63166682011-09-27 21:27:43 -0600522 /* Clear PxSCTL.DET */
523 writel(readl(port->mmio + PORT_SCR_CTL) & ~1,
524 port->mmio + PORT_SCR_CTL);
525 readl(port->mmio + PORT_SCR_CTL);
526
527 /* Wait 500 ms for bit 0 of PORT_SCR_STS to be set */
528 timeout = jiffies + msecs_to_jiffies(500);
529 while (((readl(port->mmio + PORT_SCR_STAT) & 0x01) == 0)
530 && time_before(jiffies, timeout))
531 ;
532
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200533 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &port->dd->dd_flag))
Asai Thambi S P45038362012-04-09 08:35:38 +0200534 return;
535
Jens Axboe63166682011-09-27 21:27:43 -0600536 if ((readl(port->mmio + PORT_SCR_STAT) & 0x01) == 0)
537 dev_warn(&port->dd->pdev->dev,
538 "COM reset failed\n");
539
Asai Thambi S P22be2e62012-03-23 12:33:03 +0100540 mtip_init_port(port);
541 mtip_start_port(port);
Jens Axboe63166682011-09-27 21:27:43 -0600542
Jens Axboe63166682011-09-27 21:27:43 -0600543}
544
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +0530545static int mtip_device_reset(struct driver_data *dd)
546{
547 int rv = 0;
548
549 if (mtip_check_surprise_removal(dd->pdev))
550 return 0;
551
552 if (mtip_hba_reset(dd) < 0)
553 rv = -EFAULT;
554
555 mdelay(1);
556 mtip_init_port(dd->port);
557 mtip_start_port(dd->port);
558
559 /* Enable interrupts on the HBA. */
560 writel(readl(dd->mmio + HOST_CTL) | HOST_IRQ_EN,
561 dd->mmio + HOST_CTL);
562 return rv;
563}
564
Jens Axboe63166682011-09-27 21:27:43 -0600565/*
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200566 * Helper function for tag logging
567 */
568static void print_tags(struct driver_data *dd,
569 char *msg,
570 unsigned long *tagbits,
571 int cnt)
572{
573 unsigned char tagmap[128];
574 int group, tagmap_len = 0;
575
576 memset(tagmap, 0, sizeof(tagmap));
577 for (group = SLOTBITS_IN_LONGS; group > 0; group--)
Jens Axboeffc771b2014-05-09 09:42:02 -0600578 tagmap_len += sprintf(tagmap + tagmap_len, "%016lX ",
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200579 tagbits[group-1]);
580 dev_warn(&dd->pdev->dev,
581 "%d command(s) %s: tagmap [%s]", cnt, msg, tagmap);
582}
583
584/*
Sam Bradshaw88523a62011-08-30 08:34:26 -0600585 * Internal command completion callback function.
586 *
587 * This function is normally called by the driver ISR when an internal
588 * command completed. This function signals the command completion by
589 * calling complete().
590 *
591 * @port Pointer to the port data structure.
592 * @tag Tag of the command that has completed.
593 * @data Pointer to a completion structure.
594 * @status Completion status.
595 *
596 * return value
597 * None
598 */
599static void mtip_completion(struct mtip_port *port,
Jens Axboeffc771b2014-05-09 09:42:02 -0600600 int tag, struct mtip_cmd *command, int status)
Sam Bradshaw88523a62011-08-30 08:34:26 -0600601{
Jens Axboeffc771b2014-05-09 09:42:02 -0600602 struct completion *waiting = command->comp_data;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600603 if (unlikely(status == PORT_IRQ_TF_ERR))
604 dev_warn(&port->dd->pdev->dev,
605 "Internal command %d completed with TFE\n", tag);
606
Asai Thambi SP008e56d2016-02-24 21:21:20 -0800607 command->comp_func = NULL;
608 command->comp_data = NULL;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600609 complete(waiting);
610}
611
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200612static int mtip_read_log_page(struct mtip_port *port, u8 page, u16 *buffer,
613 dma_addr_t buffer_dma, unsigned int sectors);
614static int mtip_get_smart_attr(struct mtip_port *port, unsigned int id,
615 struct smart_attr *attrib);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600616/*
617 * Handle an error.
618 *
619 * @dd Pointer to the DRIVER_DATA structure.
620 *
621 * return value
622 * None
623 */
624static void mtip_handle_tfe(struct driver_data *dd)
625{
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200626 int group, tag, bit, reissue, rv;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600627 struct mtip_port *port;
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200628 struct mtip_cmd *cmd;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600629 u32 completed;
630 struct host_to_dev_fis *fis;
631 unsigned long tagaccum[SLOTBITS_IN_LONGS];
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200632 unsigned int cmd_cnt = 0;
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200633 unsigned char *buf;
634 char *fail_reason = NULL;
635 int fail_all_ncq_write = 0, fail_all_ncq_cmds = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600636
637 dev_warn(&dd->pdev->dev, "Taskfile error\n");
638
639 port = dd->port;
640
Asai Thambi SPa7806fa2015-05-11 15:49:28 -0700641 if (test_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags)) {
Jens Axboeffc771b2014-05-09 09:42:02 -0600642 cmd = mtip_cmd_from_tag(dd, MTIP_TAG_INTERNAL);
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -0700643 dbg_printk(MTIP_DRV_NAME " TFE for the internal command\n");
644
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -0700645 if (cmd->comp_data && cmd->comp_func) {
646 cmd->comp_func(port, MTIP_TAG_INTERNAL,
Jens Axboeffc771b2014-05-09 09:42:02 -0600647 cmd, PORT_IRQ_TF_ERR);
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -0700648 }
Asai Thambi SPe35b9472016-02-24 21:16:21 -0800649 return;
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -0700650 }
Sam Bradshaw88523a62011-08-30 08:34:26 -0600651
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200652 /* clear the tag accumulator */
653 memset(tagaccum, 0, SLOTBITS_IN_LONGS * sizeof(long));
654
Sam Bradshaw88523a62011-08-30 08:34:26 -0600655 /* Loop through all the groups */
656 for (group = 0; group < dd->slot_groups; group++) {
657 completed = readl(port->completed[group]);
658
Jens Axboeffc771b2014-05-09 09:42:02 -0600659 dev_warn(&dd->pdev->dev, "g=%u, comp=%x\n", group, completed);
660
Sam Bradshaw88523a62011-08-30 08:34:26 -0600661 /* clear completed status register in the hardware.*/
662 writel(completed, port->completed[group]);
663
Sam Bradshaw88523a62011-08-30 08:34:26 -0600664 /* Process successfully completed commands */
665 for (bit = 0; bit < 32 && completed; bit++) {
666 if (!(completed & (1<<bit)))
667 continue;
668 tag = (group << 5) + bit;
669
670 /* Skip the internal command slot */
671 if (tag == MTIP_TAG_INTERNAL)
672 continue;
673
Jens Axboeffc771b2014-05-09 09:42:02 -0600674 cmd = mtip_cmd_from_tag(dd, tag);
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200675 if (likely(cmd->comp_func)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -0600676 set_bit(tag, tagaccum);
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200677 cmd_cnt++;
Jens Axboeffc771b2014-05-09 09:42:02 -0600678 cmd->comp_func(port, tag, cmd, 0);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600679 } else {
680 dev_err(&port->dd->pdev->dev,
681 "Missing completion func for tag %d",
682 tag);
683 if (mtip_check_surprise_removal(dd->pdev)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -0600684 /* don't proceed further */
685 return;
686 }
687 }
688 }
689 }
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200690
691 print_tags(dd, "completed (TFE)", tagaccum, cmd_cnt);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600692
693 /* Restart the port */
694 mdelay(20);
695 mtip_restart_port(port);
696
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200697 /* Trying to determine the cause of the error */
698 rv = mtip_read_log_page(dd->port, ATA_LOG_SATA_NCQ,
699 dd->port->log_buf,
700 dd->port->log_buf_dma, 1);
701 if (rv) {
702 dev_warn(&dd->pdev->dev,
703 "Error in READ LOG EXT (10h) command\n");
704 /* non-critical error, don't fail the load */
705 } else {
706 buf = (unsigned char *)dd->port->log_buf;
707 if (buf[259] & 0x1) {
708 dev_info(&dd->pdev->dev,
709 "Write protect bit is set.\n");
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200710 set_bit(MTIP_DDF_WRITE_PROTECT_BIT, &dd->dd_flag);
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200711 fail_all_ncq_write = 1;
712 fail_reason = "write protect";
713 }
714 if (buf[288] == 0xF7) {
715 dev_info(&dd->pdev->dev,
716 "Exceeded Tmax, drive in thermal shutdown.\n");
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200717 set_bit(MTIP_DDF_OVER_TEMP_BIT, &dd->dd_flag);
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200718 fail_all_ncq_cmds = 1;
719 fail_reason = "thermal shutdown";
720 }
721 if (buf[288] == 0xBF) {
Asai Thambi SPaae4a032016-02-24 21:18:20 -0800722 set_bit(MTIP_DDF_REBUILD_FAILED_BIT, &dd->dd_flag);
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200723 dev_info(&dd->pdev->dev,
Sam Bradshaw26d58052013-10-03 10:18:05 -0700724 "Drive indicates rebuild has failed. Secure erase required.\n");
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200725 fail_all_ncq_cmds = 1;
726 fail_reason = "rebuild failed";
727 }
728 }
729
Sam Bradshaw88523a62011-08-30 08:34:26 -0600730 /* clear the tag accumulator */
731 memset(tagaccum, 0, SLOTBITS_IN_LONGS * sizeof(long));
732
733 /* Loop through all the groups */
734 for (group = 0; group < dd->slot_groups; group++) {
735 for (bit = 0; bit < 32; bit++) {
736 reissue = 1;
737 tag = (group << 5) + bit;
Jens Axboeffc771b2014-05-09 09:42:02 -0600738 cmd = mtip_cmd_from_tag(dd, tag);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600739
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200740 fis = (struct host_to_dev_fis *)cmd->command;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600741
742 /* Should re-issue? */
743 if (tag == MTIP_TAG_INTERNAL ||
744 fis->command == ATA_CMD_SET_FEATURES)
745 reissue = 0;
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200746 else {
747 if (fail_all_ncq_cmds ||
748 (fail_all_ncq_write &&
749 fis->command == ATA_CMD_FPDMA_WRITE)) {
750 dev_warn(&dd->pdev->dev,
751 " Fail: %s w/tag %d [%s].\n",
752 fis->command == ATA_CMD_FPDMA_WRITE ?
753 "write" : "read",
754 tag,
755 fail_reason != NULL ?
756 fail_reason : "unknown");
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200757 if (cmd->comp_func) {
758 cmd->comp_func(port, tag,
Jens Axboeffc771b2014-05-09 09:42:02 -0600759 cmd, -ENODATA);
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200760 }
761 continue;
762 }
763 }
Sam Bradshaw88523a62011-08-30 08:34:26 -0600764
765 /*
766 * First check if this command has
767 * exceeded its retries.
768 */
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200769 if (reissue && (cmd->retries-- > 0)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -0600770
771 set_bit(tag, tagaccum);
772
Sam Bradshaw88523a62011-08-30 08:34:26 -0600773 /* Re-issue the command. */
774 mtip_issue_ncq_command(port, tag);
775
776 continue;
777 }
778
779 /* Retire a command that will not be reissued */
780 dev_warn(&port->dd->pdev->dev,
781 "retiring tag %d\n", tag);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600782
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200783 if (cmd->comp_func)
Jens Axboeffc771b2014-05-09 09:42:02 -0600784 cmd->comp_func(port, tag, cmd, PORT_IRQ_TF_ERR);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600785 else
786 dev_warn(&port->dd->pdev->dev,
787 "Bad completion for tag %d\n",
788 tag);
789 }
790 }
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200791 print_tags(dd, "reissued (TFE)", tagaccum, cmd_cnt);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600792}
793
794/*
795 * Handle a set device bits interrupt
796 */
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800797static inline void mtip_workq_sdbfx(struct mtip_port *port, int group,
798 u32 completed)
Sam Bradshaw88523a62011-08-30 08:34:26 -0600799{
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800800 struct driver_data *dd = port->dd;
801 int tag, bit;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600802 struct mtip_cmd *command;
803
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800804 if (!completed) {
805 WARN_ON_ONCE(!completed);
806 return;
807 }
808 /* clear completed status register in the hardware.*/
809 writel(completed, port->completed[group]);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600810
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800811 /* Process completed commands. */
812 for (bit = 0; (bit < 32) && completed; bit++) {
813 if (completed & 0x01) {
814 tag = (group << 5) | bit;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600815
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800816 /* skip internal command slot. */
817 if (unlikely(tag == MTIP_TAG_INTERNAL))
818 continue;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600819
Jens Axboeffc771b2014-05-09 09:42:02 -0600820 command = mtip_cmd_from_tag(dd, tag);
821 if (likely(command->comp_func))
822 command->comp_func(port, tag, command, 0);
823 else {
Asai Thambi S P8f8b8992013-09-11 13:14:42 -0600824 dev_dbg(&dd->pdev->dev,
825 "Null completion for tag %d",
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800826 tag);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600827
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800828 if (mtip_check_surprise_removal(
829 dd->pdev)) {
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800830 return;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600831 }
832 }
833 }
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800834 completed >>= 1;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600835 }
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800836
837 /* If last, re-enable interrupts */
838 if (atomic_dec_return(&dd->irq_workers_active) == 0)
839 writel(0xffffffff, dd->mmio + HOST_IRQ_STAT);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600840}
841
842/*
843 * Process legacy pio and d2h interrupts
844 */
845static inline void mtip_process_legacy(struct driver_data *dd, u32 port_stat)
846{
847 struct mtip_port *port = dd->port;
Jens Axboeffc771b2014-05-09 09:42:02 -0600848 struct mtip_cmd *cmd = mtip_cmd_from_tag(dd, MTIP_TAG_INTERNAL);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600849
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200850 if (test_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags) &&
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +0100851 (cmd != NULL) && !(readl(port->cmd_issue[MTIP_TAG_INTERNAL])
Sam Bradshaw88523a62011-08-30 08:34:26 -0600852 & (1 << MTIP_TAG_INTERNAL))) {
853 if (cmd->comp_func) {
Jens Axboeffc771b2014-05-09 09:42:02 -0600854 cmd->comp_func(port, MTIP_TAG_INTERNAL, cmd, 0);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600855 return;
856 }
857 }
858
Sam Bradshaw88523a62011-08-30 08:34:26 -0600859 return;
860}
861
862/*
863 * Demux and handle errors
864 */
865static inline void mtip_process_errors(struct driver_data *dd, u32 port_stat)
866{
Sam Bradshaw88523a62011-08-30 08:34:26 -0600867
868 if (unlikely(port_stat & PORT_IRQ_CONNECT)) {
869 dev_warn(&dd->pdev->dev,
870 "Clearing PxSERR.DIAG.x\n");
871 writel((1 << 26), dd->port->mmio + PORT_SCR_ERR);
872 }
873
874 if (unlikely(port_stat & PORT_IRQ_PHYRDY)) {
875 dev_warn(&dd->pdev->dev,
876 "Clearing PxSERR.DIAG.n\n");
877 writel((1 << 16), dd->port->mmio + PORT_SCR_ERR);
878 }
879
880 if (unlikely(port_stat & ~PORT_IRQ_HANDLED)) {
881 dev_warn(&dd->pdev->dev,
882 "Port stat errors %x unhandled\n",
883 (port_stat & ~PORT_IRQ_HANDLED));
Asai Thambi S P9b204fb2014-05-20 10:48:56 -0700884 if (mtip_check_surprise_removal(dd->pdev))
885 return;
886 }
887 if (likely(port_stat & (PORT_IRQ_TF_ERR | PORT_IRQ_IF_ERR))) {
888 set_bit(MTIP_PF_EH_ACTIVE_BIT, &dd->port->flags);
889 wake_up_interruptible(&dd->port->svc_wait);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600890 }
891}
892
893static inline irqreturn_t mtip_handle_irq(struct driver_data *data)
894{
895 struct driver_data *dd = (struct driver_data *) data;
896 struct mtip_port *port = dd->port;
897 u32 hba_stat, port_stat;
898 int rv = IRQ_NONE;
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800899 int do_irq_enable = 1, i, workers;
900 struct mtip_work *twork;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600901
902 hba_stat = readl(dd->mmio + HOST_IRQ_STAT);
903 if (hba_stat) {
904 rv = IRQ_HANDLED;
905
906 /* Acknowledge the interrupt status on the port.*/
907 port_stat = readl(port->mmio + PORT_IRQ_STAT);
Asai Thambi SP2132a542015-05-11 15:53:18 -0700908 if (unlikely(port_stat == 0xFFFFFFFF)) {
909 mtip_check_surprise_removal(dd->pdev);
910 return IRQ_HANDLED;
911 }
Sam Bradshaw88523a62011-08-30 08:34:26 -0600912 writel(port_stat, port->mmio + PORT_IRQ_STAT);
913
914 /* Demux port status */
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800915 if (likely(port_stat & PORT_IRQ_SDB_FIS)) {
916 do_irq_enable = 0;
917 WARN_ON_ONCE(atomic_read(&dd->irq_workers_active) != 0);
918
919 /* Start at 1: group zero is always local? */
920 for (i = 0, workers = 0; i < MTIP_MAX_SLOT_GROUPS;
921 i++) {
922 twork = &dd->work[i];
923 twork->completed = readl(port->completed[i]);
924 if (twork->completed)
925 workers++;
926 }
927
928 atomic_set(&dd->irq_workers_active, workers);
929 if (workers) {
930 for (i = 1; i < MTIP_MAX_SLOT_GROUPS; i++) {
931 twork = &dd->work[i];
932 if (twork->completed)
933 queue_work_on(
934 twork->cpu_binding,
935 dd->isr_workq,
936 &twork->work);
937 }
938
939 if (likely(dd->work[0].completed))
940 mtip_workq_sdbfx(port, 0,
941 dd->work[0].completed);
942
943 } else {
944 /*
945 * Chip quirk: SDB interrupt but nothing
946 * to complete
947 */
948 do_irq_enable = 1;
949 }
950 }
Sam Bradshaw88523a62011-08-30 08:34:26 -0600951
952 if (unlikely(port_stat & PORT_IRQ_ERR)) {
953 if (unlikely(mtip_check_surprise_removal(dd->pdev))) {
Sam Bradshaw88523a62011-08-30 08:34:26 -0600954 /* don't proceed further */
955 return IRQ_HANDLED;
956 }
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200957 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
Asai Thambi S P45038362012-04-09 08:35:38 +0200958 &dd->dd_flag))
959 return rv;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600960
961 mtip_process_errors(dd, port_stat & PORT_IRQ_ERR);
962 }
963
964 if (unlikely(port_stat & PORT_IRQ_LEGACY))
965 mtip_process_legacy(dd, port_stat & PORT_IRQ_LEGACY);
966 }
967
968 /* acknowledge interrupt */
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800969 if (unlikely(do_irq_enable))
970 writel(hba_stat, dd->mmio + HOST_IRQ_STAT);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600971
972 return rv;
973}
974
975/*
Sam Bradshaw88523a62011-08-30 08:34:26 -0600976 * HBA interrupt subroutine.
977 *
978 * @irq IRQ number.
979 * @instance Pointer to the driver data structure.
980 *
981 * return value
982 * IRQ_HANDLED A HBA interrupt was pending and handled.
983 * IRQ_NONE This interrupt was not for the HBA.
984 */
985static irqreturn_t mtip_irq_handler(int irq, void *instance)
986{
987 struct driver_data *dd = instance;
Asai Thambi S P16c906e52012-12-20 07:46:25 -0800988
989 return mtip_handle_irq(dd);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600990}
991
992static void mtip_issue_non_ncq_command(struct mtip_port *port, int tag)
993{
Sam Bradshaw88523a62011-08-30 08:34:26 -0600994 writel(1 << MTIP_TAG_BIT(tag),
995 port->cmd_issue[MTIP_TAG_INDEX(tag)]);
996}
997
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +0200998static bool mtip_pause_ncq(struct mtip_port *port,
999 struct host_to_dev_fis *fis)
1000{
1001 struct host_to_dev_fis *reply;
1002 unsigned long task_file_data;
1003
1004 reply = port->rxfis + RX_FIS_D2H_REG;
1005 task_file_data = readl(port->mmio+PORT_TFDATA);
1006
Asai Thambi S P12a166c2012-09-05 22:01:36 +05301007 if ((task_file_data & 1))
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001008 return false;
1009
1010 if (fis->command == ATA_CMD_SEC_ERASE_PREP) {
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001011 port->ic_pause_timer = jiffies;
1012 return true;
1013 } else if ((fis->command == ATA_CMD_DOWNLOAD_MICRO) &&
1014 (fis->features == 0x03)) {
1015 set_bit(MTIP_PF_DM_ACTIVE_BIT, &port->flags);
1016 port->ic_pause_timer = jiffies;
1017 return true;
1018 } else if ((fis->command == ATA_CMD_SEC_ERASE_UNIT) ||
1019 ((fis->command == 0xFC) &&
1020 (fis->features == 0x27 || fis->features == 0x72 ||
1021 fis->features == 0x62 || fis->features == 0x26))) {
Asai Thambi SPee04bed2015-05-11 15:50:50 -07001022 clear_bit(MTIP_DDF_SEC_LOCK_BIT, &port->dd->dd_flag);
Asai Thambi SPaae4a032016-02-24 21:18:20 -08001023 clear_bit(MTIP_DDF_REBUILD_FAILED_BIT, &port->dd->dd_flag);
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001024 /* Com reset after secure erase or lowlevel format */
1025 mtip_restart_port(port);
Asai Thambi SP686d8e02015-05-11 15:51:27 -07001026 clear_bit(MTIP_PF_SE_ACTIVE_BIT, &port->flags);
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001027 return false;
1028 }
1029
1030 return false;
1031}
1032
Jens Axboebaed5482017-04-28 07:54:06 -06001033static bool mtip_commands_active(struct mtip_port *port)
1034{
1035 unsigned int active;
1036 unsigned int n;
1037
1038 /*
1039 * Ignore s_active bit 0 of array element 0.
1040 * This bit will always be set
1041 */
1042 active = readl(port->s_active[0]) & 0xFFFFFFFE;
1043 for (n = 1; n < port->dd->slot_groups; n++)
1044 active |= readl(port->s_active[n]);
1045
1046 return active != 0;
1047}
1048
Sam Bradshaw88523a62011-08-30 08:34:26 -06001049/*
1050 * Wait for port to quiesce
1051 *
1052 * @port Pointer to port data structure
1053 * @timeout Max duration to wait (ms)
1054 *
1055 * return value
1056 * 0 Success
1057 * -EBUSY Commands still active
1058 */
Jens Axboe8afdd942017-04-27 16:32:41 -06001059static int mtip_quiesce_io(struct mtip_port *port, unsigned long timeout)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001060{
1061 unsigned long to;
Jens Axboebaed5482017-04-28 07:54:06 -06001062 bool active = true;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001063
Jens Axboe9acf03c2014-05-14 08:22:56 -06001064 blk_mq_stop_hw_queues(port->dd->queue);
1065
Sam Bradshaw88523a62011-08-30 08:34:26 -06001066 to = jiffies + msecs_to_jiffies(timeout);
1067 do {
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001068 if (test_bit(MTIP_PF_SVC_THD_ACTIVE_BIT, &port->flags) &&
Jens Axboe8afdd942017-04-27 16:32:41 -06001069 test_bit(MTIP_PF_ISSUE_CMDS_BIT, &port->flags)) {
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001070 msleep(20);
1071 continue; /* svc thd is actively issuing commands */
1072 }
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001073
Jens Axboe8afdd942017-04-27 16:32:41 -06001074 msleep(100);
Asai Thambi SP008e56d2016-02-24 21:21:20 -08001075
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001076 if (mtip_check_surprise_removal(port->dd->pdev))
1077 goto err_fault;
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001078
Jens Axboebaed5482017-04-28 07:54:06 -06001079 active = mtip_commands_active(port);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001080 if (!active)
1081 break;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001082 } while (time_before(jiffies, to));
1083
Jens Axboe9acf03c2014-05-14 08:22:56 -06001084 blk_mq_start_stopped_hw_queues(port->dd->queue, true);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001085 return active ? -EBUSY : 0;
Jens Axboe9acf03c2014-05-14 08:22:56 -06001086err_fault:
1087 blk_mq_start_stopped_hw_queues(port->dd->queue, true);
1088 return -EFAULT;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001089}
1090
1091/*
1092 * Execute an internal command and wait for the completion.
1093 *
1094 * @port Pointer to the port data structure.
1095 * @fis Pointer to the FIS that describes the command.
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001096 * @fis_len Length in WORDS of the FIS.
Sam Bradshaw88523a62011-08-30 08:34:26 -06001097 * @buffer DMA accessible for command data.
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001098 * @buf_len Length, in bytes, of the data buffer.
Sam Bradshaw88523a62011-08-30 08:34:26 -06001099 * @opts Command header options, excluding the FIS length
1100 * and the number of PRD entries.
1101 * @timeout Time in ms to wait for the command to complete.
1102 *
1103 * return value
1104 * 0 Command completed successfully.
1105 * -EFAULT The buffer address is not correctly aligned.
1106 * -EBUSY Internal command or other IO in progress.
1107 * -EAGAIN Time out waiting for command to complete.
1108 */
1109static int mtip_exec_internal_command(struct mtip_port *port,
Asai Thambi S P8182b492012-04-09 08:35:38 +02001110 struct host_to_dev_fis *fis,
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001111 int fis_len,
Sam Bradshaw88523a62011-08-30 08:34:26 -06001112 dma_addr_t buffer,
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001113 int buf_len,
Sam Bradshaw88523a62011-08-30 08:34:26 -06001114 u32 opts,
Sam Bradshaw88523a62011-08-30 08:34:26 -06001115 unsigned long timeout)
1116{
1117 struct mtip_cmd_sg *command_sg;
1118 DECLARE_COMPLETION_ONSTACK(wait);
Jens Axboeffc771b2014-05-09 09:42:02 -06001119 struct mtip_cmd *int_cmd;
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +05301120 struct driver_data *dd = port->dd;
Jens Axboeffc771b2014-05-09 09:42:02 -06001121 int rv = 0;
Asai Thambi SP5b7e0a82016-02-24 21:16:38 -08001122 unsigned long start;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001123
1124 /* Make sure the buffer is 8 byte aligned. This is asic specific. */
1125 if (buffer & 0x00000007) {
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +05301126 dev_err(&dd->pdev->dev, "SG buffer is not 8 byte aligned\n");
Sam Bradshaw88523a62011-08-30 08:34:26 -06001127 return -EFAULT;
1128 }
1129
Jens Axboeffc771b2014-05-09 09:42:02 -06001130 int_cmd = mtip_get_int_command(dd);
Asai Thambi SP008e56d2016-02-24 21:21:20 -08001131 if (!int_cmd) {
1132 dbg_printk(MTIP_DRV_NAME "Unable to allocate tag for PIO cmd\n");
1133 return -EFAULT;
1134 }
Jens Axboeffc771b2014-05-09 09:42:02 -06001135
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001136 set_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags);
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001137
Asai Thambi SP686d8e02015-05-11 15:51:27 -07001138 if (fis->command == ATA_CMD_SEC_ERASE_PREP)
1139 set_bit(MTIP_PF_SE_ACTIVE_BIT, &port->flags);
1140
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +05301141 clear_bit(MTIP_PF_DM_ACTIVE_BIT, &port->flags);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001142
Jens Axboe0f6422a2017-04-27 16:29:26 -06001143 if (fis->command != ATA_CMD_STANDBYNOW1) {
1144 /* wait for io to complete if non atomic */
Jens Axboe8afdd942017-04-27 16:32:41 -06001145 if (mtip_quiesce_io(port, MTIP_QUIESCE_IO_TIMEOUT_MS) < 0) {
Jens Axboe0f6422a2017-04-27 16:29:26 -06001146 dev_warn(&dd->pdev->dev, "Failed to quiesce IO\n");
1147 mtip_put_int_command(dd, int_cmd);
1148 clear_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags);
1149 wake_up_interruptible(&port->svc_wait);
1150 return -EBUSY;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001151 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06001152 }
1153
Jens Axboe0f6422a2017-04-27 16:29:26 -06001154 /* Set the completion function and data for the command. */
1155 int_cmd->comp_data = &wait;
1156 int_cmd->comp_func = mtip_completion;
1157
Sam Bradshaw88523a62011-08-30 08:34:26 -06001158 /* Copy the command to the command table */
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001159 memcpy(int_cmd->command, fis, fis_len*4);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001160
1161 /* Populate the SG list */
1162 int_cmd->command_header->opts =
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001163 __force_bit2int cpu_to_le32(opts | fis_len);
1164 if (buf_len) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06001165 command_sg = int_cmd->command + AHCI_CMD_TBL_HDR_SZ;
1166
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001167 command_sg->info =
1168 __force_bit2int cpu_to_le32((buf_len-1) & 0x3FFFFF);
1169 command_sg->dba =
1170 __force_bit2int cpu_to_le32(buffer & 0xFFFFFFFF);
1171 command_sg->dba_upper =
1172 __force_bit2int cpu_to_le32((buffer >> 16) >> 16);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001173
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001174 int_cmd->command_header->opts |=
1175 __force_bit2int cpu_to_le32((1 << 16));
Sam Bradshaw88523a62011-08-30 08:34:26 -06001176 }
1177
1178 /* Populate the command header */
1179 int_cmd->command_header->byte_count = 0;
1180
Asai Thambi SP5b7e0a82016-02-24 21:16:38 -08001181 start = jiffies;
1182
Sam Bradshaw88523a62011-08-30 08:34:26 -06001183 /* Issue the command to the hardware */
1184 mtip_issue_non_ncq_command(port, MTIP_TAG_INTERNAL);
1185
Jens Axboe0f6422a2017-04-27 16:29:26 -06001186 /* Wait for the command to complete or timeout. */
1187 rv = wait_for_completion_interruptible_timeout(&wait,
1188 msecs_to_jiffies(timeout));
1189 if (rv <= 0) {
1190 if (rv == -ERESTARTSYS) { /* interrupted */
1191 dev_err(&dd->pdev->dev,
1192 "Internal command [%02X] was interrupted after %u ms\n",
1193 fis->command,
1194 jiffies_to_msecs(jiffies - start));
1195 rv = -EINTR;
1196 goto exec_ic_exit;
1197 } else if (rv == 0) /* timeout */
1198 dev_err(&dd->pdev->dev,
1199 "Internal command did not complete [%02X] within timeout of %lu ms\n",
1200 fis->command, timeout);
1201 else
1202 dev_err(&dd->pdev->dev,
1203 "Internal command [%02X] wait returned code [%d] after %lu ms - unhandled\n",
1204 fis->command, rv, timeout);
Asai Thambi SPaae4a032016-02-24 21:18:20 -08001205
Jens Axboe0f6422a2017-04-27 16:29:26 -06001206 if (mtip_check_surprise_removal(dd->pdev) ||
1207 test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
1208 &dd->dd_flag)) {
1209 dev_err(&dd->pdev->dev,
1210 "Internal command [%02X] wait returned due to SR\n",
1211 fis->command);
1212 rv = -ENXIO;
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +05301213 goto exec_ic_exit;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001214 }
Jens Axboe0f6422a2017-04-27 16:29:26 -06001215 mtip_device_reset(dd); /* recover from timeout issue */
1216 rv = -EAGAIN;
1217 goto exec_ic_exit;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001218 }
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -07001219
Jens Axboe0f6422a2017-04-27 16:29:26 -06001220 rv = 0;
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -07001221 if (readl(port->cmd_issue[MTIP_TAG_INTERNAL])
1222 & (1 << MTIP_TAG_INTERNAL)) {
1223 rv = -ENXIO;
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +05301224 if (!test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag)) {
1225 mtip_device_reset(dd);
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -07001226 rv = -EAGAIN;
1227 }
1228 }
Asai Thambi S P45038362012-04-09 08:35:38 +02001229exec_ic_exit:
Sam Bradshaw88523a62011-08-30 08:34:26 -06001230 /* Clear the allocated and active bits for the internal command. */
Jens Axboeffc771b2014-05-09 09:42:02 -06001231 mtip_put_int_command(dd, int_cmd);
Asai Thambi SP686d8e02015-05-11 15:51:27 -07001232 clear_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags);
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001233 if (rv >= 0 && mtip_pause_ncq(port, fis)) {
1234 /* NCQ paused */
1235 return rv;
1236 }
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001237 wake_up_interruptible(&port->svc_wait);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001238
1239 return rv;
1240}
1241
1242/*
1243 * Byte-swap ATA ID strings.
1244 *
1245 * ATA identify data contains strings in byte-swapped 16-bit words.
1246 * They must be swapped (on all architectures) to be usable as C strings.
1247 * This function swaps bytes in-place.
1248 *
1249 * @buf The buffer location of the string
1250 * @len The number of bytes to swap
1251 *
1252 * return value
1253 * None
1254 */
1255static inline void ata_swap_string(u16 *buf, unsigned int len)
1256{
1257 int i;
1258 for (i = 0; i < (len/2); i++)
1259 be16_to_cpus(&buf[i]);
1260}
1261
Asai Thambi S P670a6412014-04-16 20:27:54 -07001262static void mtip_set_timeout(struct driver_data *dd,
1263 struct host_to_dev_fis *fis,
1264 unsigned int *timeout, u8 erasemode)
1265{
1266 switch (fis->command) {
1267 case ATA_CMD_DOWNLOAD_MICRO:
1268 *timeout = 120000; /* 2 minutes */
1269 break;
1270 case ATA_CMD_SEC_ERASE_UNIT:
1271 case 0xFC:
1272 if (erasemode)
1273 *timeout = ((*(dd->port->identify + 90) * 2) * 60000);
1274 else
1275 *timeout = ((*(dd->port->identify + 89) * 2) * 60000);
1276 break;
1277 case ATA_CMD_STANDBYNOW1:
1278 *timeout = 120000; /* 2 minutes */
1279 break;
1280 case 0xF7:
1281 case 0xFA:
1282 *timeout = 60000; /* 60 seconds */
1283 break;
1284 case ATA_CMD_SMART:
1285 *timeout = 15000; /* 15 seconds */
1286 break;
1287 default:
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001288 *timeout = MTIP_IOCTL_CMD_TIMEOUT_MS;
Asai Thambi S P670a6412014-04-16 20:27:54 -07001289 break;
1290 }
1291}
1292
Sam Bradshaw88523a62011-08-30 08:34:26 -06001293/*
1294 * Request the device identity information.
1295 *
1296 * If a user space buffer is not specified, i.e. is NULL, the
1297 * identify information is still read from the drive and placed
1298 * into the identify data buffer (@e port->identify) in the
1299 * port data structure.
1300 * When the identify buffer contains valid identify information @e
1301 * port->identify_valid is non-zero.
1302 *
1303 * @port Pointer to the port structure.
1304 * @user_buffer A user space buffer where the identify data should be
1305 * copied.
1306 *
1307 * return value
1308 * 0 Command completed successfully.
1309 * -EFAULT An error occurred while coping data to the user buffer.
1310 * -1 Command failed.
1311 */
1312static int mtip_get_identify(struct mtip_port *port, void __user *user_buffer)
1313{
1314 int rv = 0;
1315 struct host_to_dev_fis fis;
1316
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001317 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &port->dd->dd_flag))
Asai Thambi S P45038362012-04-09 08:35:38 +02001318 return -EFAULT;
1319
Sam Bradshaw88523a62011-08-30 08:34:26 -06001320 /* Build the FIS. */
1321 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1322 fis.type = 0x27;
1323 fis.opts = 1 << 7;
1324 fis.command = ATA_CMD_ID_ATA;
1325
1326 /* Set the identify information as invalid. */
1327 port->identify_valid = 0;
1328
1329 /* Clear the identify information. */
1330 memset(port->identify, 0, sizeof(u16) * ATA_ID_WORDS);
1331
1332 /* Execute the command. */
1333 if (mtip_exec_internal_command(port,
1334 &fis,
1335 5,
1336 port->identify_dma,
1337 sizeof(u16) * ATA_ID_WORDS,
1338 0,
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001339 MTIP_INT_CMD_TIMEOUT_MS)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001340 < 0) {
1341 rv = -1;
1342 goto out;
1343 }
1344
1345 /*
1346 * Perform any necessary byte-swapping. Yes, the kernel does in fact
1347 * perform field-sensitive swapping on the string fields.
1348 * See the kernel use of ata_id_string() for proof of this.
1349 */
1350#ifdef __LITTLE_ENDIAN
1351 ata_swap_string(port->identify + 27, 40); /* model string*/
1352 ata_swap_string(port->identify + 23, 8); /* firmware string*/
1353 ata_swap_string(port->identify + 10, 20); /* serial# string*/
1354#else
1355 {
1356 int i;
1357 for (i = 0; i < ATA_ID_WORDS; i++)
1358 port->identify[i] = le16_to_cpu(port->identify[i]);
1359 }
1360#endif
1361
Sam Bradshaw26d58052013-10-03 10:18:05 -07001362 /* Check security locked state */
1363 if (port->identify[128] & 0x4)
1364 set_bit(MTIP_DDF_SEC_LOCK_BIT, &port->dd->dd_flag);
1365 else
1366 clear_bit(MTIP_DDF_SEC_LOCK_BIT, &port->dd->dd_flag);
1367
Asai Thambi S P68466cb2013-04-12 23:58:02 +05301368#ifdef MTIP_TRIM /* Disabling TRIM support temporarily */
Asai Thambi S P15283462013-01-11 14:41:34 +01001369 /* Demux ID.DRAT & ID.RZAT to determine trim support */
1370 if (port->identify[69] & (1 << 14) && port->identify[69] & (1 << 5))
1371 port->dd->trim_supp = true;
1372 else
Asai Thambi S P68466cb2013-04-12 23:58:02 +05301373#endif
Asai Thambi S P15283462013-01-11 14:41:34 +01001374 port->dd->trim_supp = false;
1375
Sam Bradshaw88523a62011-08-30 08:34:26 -06001376 /* Set the identify buffer as valid. */
1377 port->identify_valid = 1;
1378
1379 if (user_buffer) {
1380 if (copy_to_user(
1381 user_buffer,
1382 port->identify,
1383 ATA_ID_WORDS * sizeof(u16))) {
1384 rv = -EFAULT;
1385 goto out;
1386 }
1387 }
1388
1389out:
Sam Bradshaw88523a62011-08-30 08:34:26 -06001390 return rv;
1391}
1392
1393/*
1394 * Issue a standby immediate command to the device.
1395 *
1396 * @port Pointer to the port structure.
1397 *
1398 * return value
1399 * 0 Command was executed successfully.
1400 * -1 An error occurred while executing the command.
1401 */
1402static int mtip_standby_immediate(struct mtip_port *port)
1403{
1404 int rv;
1405 struct host_to_dev_fis fis;
Asai Thambi S Pf6587212012-04-09 08:35:38 +02001406 unsigned long start;
Asai Thambi S P670a6412014-04-16 20:27:54 -07001407 unsigned int timeout;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001408
Sam Bradshaw88523a62011-08-30 08:34:26 -06001409 /* Build the FIS. */
1410 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1411 fis.type = 0x27;
1412 fis.opts = 1 << 7;
1413 fis.command = ATA_CMD_STANDBYNOW1;
1414
Asai Thambi S P670a6412014-04-16 20:27:54 -07001415 mtip_set_timeout(port->dd, &fis, &timeout, 0);
1416
Asai Thambi S Pf6587212012-04-09 08:35:38 +02001417 start = jiffies;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001418 rv = mtip_exec_internal_command(port,
1419 &fis,
1420 5,
1421 0,
1422 0,
1423 0,
Asai Thambi S P670a6412014-04-16 20:27:54 -07001424 timeout);
Asai Thambi S Pf6587212012-04-09 08:35:38 +02001425 dbg_printk(MTIP_DRV_NAME "Time taken to complete standby cmd: %d ms\n",
1426 jiffies_to_msecs(jiffies - start));
1427 if (rv)
1428 dev_warn(&port->dd->pdev->dev,
1429 "STANDBY IMMEDIATE command failed.\n");
1430
1431 return rv;
1432}
1433
1434/*
1435 * Issue a READ LOG EXT command to the device.
1436 *
1437 * @port pointer to the port structure.
1438 * @page page number to fetch
1439 * @buffer pointer to buffer
1440 * @buffer_dma dma address corresponding to @buffer
1441 * @sectors page length to fetch, in sectors
1442 *
1443 * return value
1444 * @rv return value from mtip_exec_internal_command()
1445 */
1446static int mtip_read_log_page(struct mtip_port *port, u8 page, u16 *buffer,
1447 dma_addr_t buffer_dma, unsigned int sectors)
1448{
1449 struct host_to_dev_fis fis;
1450
1451 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1452 fis.type = 0x27;
1453 fis.opts = 1 << 7;
1454 fis.command = ATA_CMD_READ_LOG_EXT;
1455 fis.sect_count = sectors & 0xFF;
1456 fis.sect_cnt_ex = (sectors >> 8) & 0xFF;
1457 fis.lba_low = page;
1458 fis.lba_mid = 0;
1459 fis.device = ATA_DEVICE_OBS;
1460
1461 memset(buffer, 0, sectors * ATA_SECT_SIZE);
1462
1463 return mtip_exec_internal_command(port,
1464 &fis,
1465 5,
1466 buffer_dma,
1467 sectors * ATA_SECT_SIZE,
1468 0,
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001469 MTIP_INT_CMD_TIMEOUT_MS);
Asai Thambi S Pf6587212012-04-09 08:35:38 +02001470}
1471
1472/*
1473 * Issue a SMART READ DATA command to the device.
1474 *
1475 * @port pointer to the port structure.
1476 * @buffer pointer to buffer
1477 * @buffer_dma dma address corresponding to @buffer
1478 *
1479 * return value
1480 * @rv return value from mtip_exec_internal_command()
1481 */
1482static int mtip_get_smart_data(struct mtip_port *port, u8 *buffer,
1483 dma_addr_t buffer_dma)
1484{
1485 struct host_to_dev_fis fis;
1486
1487 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1488 fis.type = 0x27;
1489 fis.opts = 1 << 7;
1490 fis.command = ATA_CMD_SMART;
1491 fis.features = 0xD0;
1492 fis.sect_count = 1;
1493 fis.lba_mid = 0x4F;
1494 fis.lba_hi = 0xC2;
1495 fis.device = ATA_DEVICE_OBS;
1496
1497 return mtip_exec_internal_command(port,
1498 &fis,
1499 5,
1500 buffer_dma,
1501 ATA_SECT_SIZE,
1502 0,
Asai Thambi S Pf6587212012-04-09 08:35:38 +02001503 15000);
1504}
1505
1506/*
1507 * Get the value of a smart attribute
1508 *
1509 * @port pointer to the port structure
1510 * @id attribute number
1511 * @attrib pointer to return attrib information corresponding to @id
1512 *
1513 * return value
1514 * -EINVAL NULL buffer passed or unsupported attribute @id.
1515 * -EPERM Identify data not valid, SMART not supported or not enabled
1516 */
1517static int mtip_get_smart_attr(struct mtip_port *port, unsigned int id,
1518 struct smart_attr *attrib)
1519{
1520 int rv, i;
1521 struct smart_attr *pattr;
1522
1523 if (!attrib)
1524 return -EINVAL;
1525
1526 if (!port->identify_valid) {
1527 dev_warn(&port->dd->pdev->dev, "IDENTIFY DATA not valid\n");
1528 return -EPERM;
1529 }
1530 if (!(port->identify[82] & 0x1)) {
1531 dev_warn(&port->dd->pdev->dev, "SMART not supported\n");
1532 return -EPERM;
1533 }
1534 if (!(port->identify[85] & 0x1)) {
1535 dev_warn(&port->dd->pdev->dev, "SMART not enabled\n");
1536 return -EPERM;
1537 }
1538
1539 memset(port->smart_buf, 0, ATA_SECT_SIZE);
1540 rv = mtip_get_smart_data(port, port->smart_buf, port->smart_buf_dma);
1541 if (rv) {
1542 dev_warn(&port->dd->pdev->dev, "Failed to ge SMART data\n");
1543 return rv;
1544 }
1545
1546 pattr = (struct smart_attr *)(port->smart_buf + 2);
1547 for (i = 0; i < 29; i++, pattr++)
1548 if (pattr->attr_id == id) {
1549 memcpy(attrib, pattr, sizeof(struct smart_attr));
1550 break;
1551 }
1552
1553 if (i == 29) {
1554 dev_warn(&port->dd->pdev->dev,
1555 "Query for invalid SMART attribute ID\n");
1556 rv = -EINVAL;
1557 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06001558
Sam Bradshaw88523a62011-08-30 08:34:26 -06001559 return rv;
1560}
1561
1562/*
Asai Thambi S P15283462013-01-11 14:41:34 +01001563 * Trim unused sectors
1564 *
1565 * @dd pointer to driver_data structure
1566 * @lba starting lba
1567 * @len # of 512b sectors to trim
1568 *
1569 * return value
1570 * -ENOMEM Out of dma memory
1571 * -EINVAL Invalid parameters passed in, trim not supported
1572 * -EIO Error submitting trim request to hw
1573 */
Asai Thambi S Pd0d096b2013-04-03 19:53:07 +05301574static int mtip_send_trim(struct driver_data *dd, unsigned int lba,
1575 unsigned int len)
Asai Thambi S P15283462013-01-11 14:41:34 +01001576{
1577 int i, rv = 0;
1578 u64 tlba, tlen, sect_left;
1579 struct mtip_trim_entry *buf;
1580 dma_addr_t dma_addr;
1581 struct host_to_dev_fis fis;
1582
1583 if (!len || dd->trim_supp == false)
1584 return -EINVAL;
1585
1586 /* Trim request too big */
1587 WARN_ON(len > (MTIP_MAX_TRIM_ENTRY_LEN * MTIP_MAX_TRIM_ENTRIES));
1588
1589 /* Trim request not aligned on 4k boundary */
1590 WARN_ON(len % 8 != 0);
1591
1592 /* Warn if vu_trim structure is too big */
1593 WARN_ON(sizeof(struct mtip_trim) > ATA_SECT_SIZE);
1594
1595 /* Allocate a DMA buffer for the trim structure */
1596 buf = dmam_alloc_coherent(&dd->pdev->dev, ATA_SECT_SIZE, &dma_addr,
1597 GFP_KERNEL);
1598 if (!buf)
1599 return -ENOMEM;
1600 memset(buf, 0, ATA_SECT_SIZE);
1601
1602 for (i = 0, sect_left = len, tlba = lba;
1603 i < MTIP_MAX_TRIM_ENTRIES && sect_left;
1604 i++) {
1605 tlen = (sect_left >= MTIP_MAX_TRIM_ENTRY_LEN ?
1606 MTIP_MAX_TRIM_ENTRY_LEN :
1607 sect_left);
1608 buf[i].lba = __force_bit2int cpu_to_le32(tlba);
1609 buf[i].range = __force_bit2int cpu_to_le16(tlen);
1610 tlba += tlen;
1611 sect_left -= tlen;
1612 }
1613 WARN_ON(sect_left != 0);
1614
1615 /* Build the fis */
1616 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1617 fis.type = 0x27;
1618 fis.opts = 1 << 7;
1619 fis.command = 0xfb;
1620 fis.features = 0x60;
1621 fis.sect_count = 1;
1622 fis.device = ATA_DEVICE_OBS;
1623
1624 if (mtip_exec_internal_command(dd->port,
1625 &fis,
1626 5,
1627 dma_addr,
1628 ATA_SECT_SIZE,
1629 0,
Asai Thambi S P15283462013-01-11 14:41:34 +01001630 MTIP_TRIM_TIMEOUT_MS) < 0)
1631 rv = -EIO;
1632
1633 dmam_free_coherent(&dd->pdev->dev, ATA_SECT_SIZE, buf, dma_addr);
1634 return rv;
1635}
1636
1637/*
Sam Bradshaw88523a62011-08-30 08:34:26 -06001638 * Get the drive capacity.
1639 *
1640 * @dd Pointer to the device data structure.
1641 * @sectors Pointer to the variable that will receive the sector count.
1642 *
1643 * return value
1644 * 1 Capacity was returned successfully.
1645 * 0 The identify information is invalid.
1646 */
Jens Axboe63166682011-09-27 21:27:43 -06001647static bool mtip_hw_get_capacity(struct driver_data *dd, sector_t *sectors)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001648{
1649 struct mtip_port *port = dd->port;
1650 u64 total, raw0, raw1, raw2, raw3;
1651 raw0 = port->identify[100];
1652 raw1 = port->identify[101];
1653 raw2 = port->identify[102];
1654 raw3 = port->identify[103];
1655 total = raw0 | raw1<<16 | raw2<<32 | raw3<<48;
1656 *sectors = total;
1657 return (bool) !!port->identify_valid;
1658}
1659
1660/*
Sam Bradshaw88523a62011-08-30 08:34:26 -06001661 * Display the identify command data.
1662 *
1663 * @port Pointer to the port data structure.
1664 *
1665 * return value
1666 * None
1667 */
1668static void mtip_dump_identify(struct mtip_port *port)
1669{
1670 sector_t sectors;
1671 unsigned short revid;
1672 char cbuf[42];
1673
1674 if (!port->identify_valid)
1675 return;
1676
1677 strlcpy(cbuf, (char *)(port->identify+10), 21);
1678 dev_info(&port->dd->pdev->dev,
1679 "Serial No.: %s\n", cbuf);
1680
1681 strlcpy(cbuf, (char *)(port->identify+23), 9);
1682 dev_info(&port->dd->pdev->dev,
1683 "Firmware Ver.: %s\n", cbuf);
1684
1685 strlcpy(cbuf, (char *)(port->identify+27), 41);
1686 dev_info(&port->dd->pdev->dev, "Model: %s\n", cbuf);
1687
Sam Bradshaw26d58052013-10-03 10:18:05 -07001688 dev_info(&port->dd->pdev->dev, "Security: %04x %s\n",
1689 port->identify[128],
1690 port->identify[128] & 0x4 ? "(LOCKED)" : "");
1691
Sam Bradshaw88523a62011-08-30 08:34:26 -06001692 if (mtip_hw_get_capacity(port->dd, &sectors))
1693 dev_info(&port->dd->pdev->dev,
1694 "Capacity: %llu sectors (%llu MB)\n",
1695 (u64)sectors,
1696 ((u64)sectors) * ATA_SECT_SIZE >> 20);
1697
1698 pci_read_config_word(port->dd->pdev, PCI_REVISION_ID, &revid);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001699 switch (revid & 0xFF) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06001700 case 0x1:
1701 strlcpy(cbuf, "A0", 3);
1702 break;
1703 case 0x3:
1704 strlcpy(cbuf, "A2", 3);
1705 break;
1706 default:
1707 strlcpy(cbuf, "?", 2);
1708 break;
1709 }
1710 dev_info(&port->dd->pdev->dev,
1711 "Card Type: %s\n", cbuf);
1712}
1713
1714/*
1715 * Map the commands scatter list into the command table.
1716 *
1717 * @command Pointer to the command.
1718 * @nents Number of scatter list entries.
1719 *
1720 * return value
1721 * None
1722 */
1723static inline void fill_command_sg(struct driver_data *dd,
1724 struct mtip_cmd *command,
1725 int nents)
1726{
1727 int n;
1728 unsigned int dma_len;
1729 struct mtip_cmd_sg *command_sg;
1730 struct scatterlist *sg = command->sg;
1731
1732 command_sg = command->command + AHCI_CMD_TBL_HDR_SZ;
1733
1734 for (n = 0; n < nents; n++) {
1735 dma_len = sg_dma_len(sg);
1736 if (dma_len > 0x400000)
1737 dev_err(&dd->pdev->dev,
1738 "DMA segment length truncated\n");
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001739 command_sg->info = __force_bit2int
1740 cpu_to_le32((dma_len-1) & 0x3FFFFF);
1741 command_sg->dba = __force_bit2int
1742 cpu_to_le32(sg_dma_address(sg));
1743 command_sg->dba_upper = __force_bit2int
1744 cpu_to_le32((sg_dma_address(sg) >> 16) >> 16);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001745 command_sg++;
1746 sg++;
1747 }
1748}
1749
1750/*
1751 * @brief Execute a drive command.
1752 *
1753 * return value 0 The command completed successfully.
1754 * return value -1 An error occurred while executing the command.
1755 */
Jens Axboe63166682011-09-27 21:27:43 -06001756static int exec_drive_task(struct mtip_port *port, u8 *command)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001757{
1758 struct host_to_dev_fis fis;
1759 struct host_to_dev_fis *reply = (port->rxfis + RX_FIS_D2H_REG);
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001760 unsigned int to;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001761
Sam Bradshaw88523a62011-08-30 08:34:26 -06001762 /* Build the FIS. */
1763 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1764 fis.type = 0x27;
1765 fis.opts = 1 << 7;
1766 fis.command = command[0];
1767 fis.features = command[1];
1768 fis.sect_count = command[2];
1769 fis.sector = command[3];
1770 fis.cyl_low = command[4];
1771 fis.cyl_hi = command[5];
1772 fis.device = command[6] & ~0x10; /* Clear the dev bit*/
1773
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001774 mtip_set_timeout(port->dd, &fis, &to, 0);
1775
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001776 dbg_printk(MTIP_DRV_NAME " %s: User Command: cmd %x, feat %x, nsect %x, sect %x, lcyl %x, hcyl %x, sel %x\n",
Sam Bradshaw88523a62011-08-30 08:34:26 -06001777 __func__,
1778 command[0],
1779 command[1],
1780 command[2],
1781 command[3],
1782 command[4],
1783 command[5],
1784 command[6]);
1785
1786 /* Execute the command. */
1787 if (mtip_exec_internal_command(port,
1788 &fis,
1789 5,
1790 0,
1791 0,
1792 0,
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001793 to) < 0) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06001794 return -1;
1795 }
1796
1797 command[0] = reply->command; /* Status*/
1798 command[1] = reply->features; /* Error*/
1799 command[4] = reply->cyl_low;
1800 command[5] = reply->cyl_hi;
1801
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001802 dbg_printk(MTIP_DRV_NAME " %s: Completion Status: stat %x, err %x , cyl_lo %x cyl_hi %x\n",
Sam Bradshaw88523a62011-08-30 08:34:26 -06001803 __func__,
1804 command[0],
1805 command[1],
1806 command[4],
1807 command[5]);
1808
Sam Bradshaw88523a62011-08-30 08:34:26 -06001809 return 0;
1810}
1811
1812/*
1813 * @brief Execute a drive command.
1814 *
1815 * @param port Pointer to the port data structure.
1816 * @param command Pointer to the user specified command parameters.
1817 * @param user_buffer Pointer to the user space buffer where read sector
1818 * data should be copied.
1819 *
1820 * return value 0 The command completed successfully.
1821 * return value -EFAULT An error occurred while copying the completion
1822 * data to the user space buffer.
1823 * return value -1 An error occurred while executing the command.
1824 */
Jens Axboe63166682011-09-27 21:27:43 -06001825static int exec_drive_command(struct mtip_port *port, u8 *command,
1826 void __user *user_buffer)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001827{
1828 struct host_to_dev_fis fis;
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001829 struct host_to_dev_fis *reply;
1830 u8 *buf = NULL;
1831 dma_addr_t dma_addr = 0;
1832 int rv = 0, xfer_sz = command[3];
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001833 unsigned int to;
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001834
1835 if (xfer_sz) {
David Milburn97651ea2012-09-12 14:06:12 -05001836 if (!user_buffer)
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001837 return -EFAULT;
1838
1839 buf = dmam_alloc_coherent(&port->dd->pdev->dev,
1840 ATA_SECT_SIZE * xfer_sz,
1841 &dma_addr,
1842 GFP_KERNEL);
1843 if (!buf) {
1844 dev_err(&port->dd->pdev->dev,
1845 "Memory allocation failed (%d bytes)\n",
1846 ATA_SECT_SIZE * xfer_sz);
1847 return -ENOMEM;
1848 }
1849 memset(buf, 0, ATA_SECT_SIZE * xfer_sz);
1850 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06001851
Sam Bradshaw88523a62011-08-30 08:34:26 -06001852 /* Build the FIS. */
1853 memset(&fis, 0, sizeof(struct host_to_dev_fis));
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001854 fis.type = 0x27;
1855 fis.opts = 1 << 7;
1856 fis.command = command[0];
Sam Bradshaw88523a62011-08-30 08:34:26 -06001857 fis.features = command[2];
1858 fis.sect_count = command[3];
1859 if (fis.command == ATA_CMD_SMART) {
1860 fis.sector = command[1];
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001861 fis.cyl_low = 0x4F;
1862 fis.cyl_hi = 0xC2;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001863 }
1864
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001865 mtip_set_timeout(port->dd, &fis, &to, 0);
1866
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001867 if (xfer_sz)
1868 reply = (port->rxfis + RX_FIS_PIO_SETUP);
1869 else
1870 reply = (port->rxfis + RX_FIS_D2H_REG);
1871
Sam Bradshaw88523a62011-08-30 08:34:26 -06001872 dbg_printk(MTIP_DRV_NAME
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001873 " %s: User Command: cmd %x, sect %x, "
Sam Bradshaw88523a62011-08-30 08:34:26 -06001874 "feat %x, sectcnt %x\n",
1875 __func__,
1876 command[0],
1877 command[1],
1878 command[2],
1879 command[3]);
1880
Sam Bradshaw88523a62011-08-30 08:34:26 -06001881 /* Execute the command. */
1882 if (mtip_exec_internal_command(port,
1883 &fis,
1884 5,
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001885 (xfer_sz ? dma_addr : 0),
1886 (xfer_sz ? ATA_SECT_SIZE * xfer_sz : 0),
Sam Bradshaw88523a62011-08-30 08:34:26 -06001887 0,
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07001888 to)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001889 < 0) {
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001890 rv = -EFAULT;
1891 goto exit_drive_command;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001892 }
1893
1894 /* Collect the completion status. */
1895 command[0] = reply->command; /* Status*/
1896 command[1] = reply->features; /* Error*/
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001897 command[2] = reply->sect_count;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001898
1899 dbg_printk(MTIP_DRV_NAME
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001900 " %s: Completion Status: stat %x, "
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001901 "err %x, nsect %x\n",
Sam Bradshaw88523a62011-08-30 08:34:26 -06001902 __func__,
1903 command[0],
1904 command[1],
1905 command[2]);
1906
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001907 if (xfer_sz) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06001908 if (copy_to_user(user_buffer,
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001909 buf,
Sam Bradshaw88523a62011-08-30 08:34:26 -06001910 ATA_SECT_SIZE * command[3])) {
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001911 rv = -EFAULT;
1912 goto exit_drive_command;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001913 }
1914 }
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001915exit_drive_command:
1916 if (buf)
1917 dmam_free_coherent(&port->dd->pdev->dev,
1918 ATA_SECT_SIZE * xfer_sz, buf, dma_addr);
1919 return rv;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001920}
1921
1922/*
1923 * Indicates whether a command has a single sector payload.
1924 *
1925 * @command passed to the device to perform the certain event.
1926 * @features passed to the device to perform the certain event.
1927 *
1928 * return value
1929 * 1 command is one that always has a single sector payload,
1930 * regardless of the value in the Sector Count field.
1931 * 0 otherwise
1932 *
1933 */
1934static unsigned int implicit_sector(unsigned char command,
1935 unsigned char features)
1936{
1937 unsigned int rv = 0;
1938
1939 /* list of commands that have an implicit sector count of 1 */
1940 switch (command) {
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001941 case ATA_CMD_SEC_SET_PASS:
1942 case ATA_CMD_SEC_UNLOCK:
1943 case ATA_CMD_SEC_ERASE_PREP:
1944 case ATA_CMD_SEC_ERASE_UNIT:
1945 case ATA_CMD_SEC_FREEZE_LOCK:
1946 case ATA_CMD_SEC_DISABLE_PASS:
1947 case ATA_CMD_PMP_READ:
1948 case ATA_CMD_PMP_WRITE:
Sam Bradshaw88523a62011-08-30 08:34:26 -06001949 rv = 1;
1950 break;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001951 case ATA_CMD_SET_MAX:
1952 if (features == ATA_SET_MAX_UNLOCK)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001953 rv = 1;
1954 break;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001955 case ATA_CMD_SMART:
1956 if ((features == ATA_SMART_READ_VALUES) ||
1957 (features == ATA_SMART_READ_THRESHOLDS))
Sam Bradshaw88523a62011-08-30 08:34:26 -06001958 rv = 1;
1959 break;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001960 case ATA_CMD_CONF_OVERLAY:
1961 if ((features == ATA_DCO_IDENTIFY) ||
1962 (features == ATA_DCO_SET))
Sam Bradshaw88523a62011-08-30 08:34:26 -06001963 rv = 1;
1964 break;
1965 }
1966 return rv;
1967}
Asai Thambi S P2df7aa92012-05-29 18:41:23 -07001968
Sam Bradshaw88523a62011-08-30 08:34:26 -06001969/*
1970 * Executes a taskfile
1971 * See ide_taskfile_ioctl() for derivation
1972 */
1973static int exec_drive_taskfile(struct driver_data *dd,
Jens Axboeef0f1582011-09-27 21:19:53 -06001974 void __user *buf,
1975 ide_task_request_t *req_task,
1976 int outtotal)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001977{
1978 struct host_to_dev_fis fis;
1979 struct host_to_dev_fis *reply;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001980 u8 *outbuf = NULL;
1981 u8 *inbuf = NULL;
Jens Axboe16d02c02011-09-27 15:50:01 -06001982 dma_addr_t outbuf_dma = 0;
1983 dma_addr_t inbuf_dma = 0;
1984 dma_addr_t dma_buffer = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001985 int err = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001986 unsigned int taskin = 0;
1987 unsigned int taskout = 0;
1988 u8 nsect = 0;
Asai Thambi S P2df7aa92012-05-29 18:41:23 -07001989 unsigned int timeout;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001990 unsigned int force_single_sector;
1991 unsigned int transfer_size;
1992 unsigned long task_file_data;
Jens Axboeef0f1582011-09-27 21:19:53 -06001993 int intotal = outtotal + req_task->out_size;
Selvan Mani4453bc82012-09-27 14:36:43 +02001994 int erasemode = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001995
1996 taskout = req_task->out_size;
1997 taskin = req_task->in_size;
1998 /* 130560 = 512 * 0xFF*/
Sachin Shuklab425b022016-11-11 14:34:51 +05301999 if (taskin > 130560 || taskout > 130560)
2000 return -EINVAL;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002001
2002 if (taskout) {
Al Viro8ed60102016-01-02 14:56:33 -05002003 outbuf = memdup_user(buf + outtotal, taskout);
Sachin Shuklab425b022016-11-11 14:34:51 +05302004 if (IS_ERR(outbuf))
2005 return PTR_ERR(outbuf);
2006
Sam Bradshaw88523a62011-08-30 08:34:26 -06002007 outbuf_dma = pci_map_single(dd->pdev,
2008 outbuf,
2009 taskout,
2010 DMA_TO_DEVICE);
Alexey Khoroshilov5173cb82016-03-19 01:35:54 +03002011 if (pci_dma_mapping_error(dd->pdev, outbuf_dma)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06002012 err = -ENOMEM;
2013 goto abort;
2014 }
2015 dma_buffer = outbuf_dma;
2016 }
2017
2018 if (taskin) {
Al Viro8ed60102016-01-02 14:56:33 -05002019 inbuf = memdup_user(buf + intotal, taskin);
2020 if (IS_ERR(inbuf)) {
2021 err = PTR_ERR(inbuf);
2022 inbuf = NULL;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002023 goto abort;
2024 }
2025 inbuf_dma = pci_map_single(dd->pdev,
2026 inbuf,
2027 taskin, DMA_FROM_DEVICE);
Alexey Khoroshilov5173cb82016-03-19 01:35:54 +03002028 if (pci_dma_mapping_error(dd->pdev, inbuf_dma)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06002029 err = -ENOMEM;
2030 goto abort;
2031 }
2032 dma_buffer = inbuf_dma;
2033 }
2034
2035 /* only supports PIO and non-data commands from this ioctl. */
2036 switch (req_task->data_phase) {
2037 case TASKFILE_OUT:
2038 nsect = taskout / ATA_SECT_SIZE;
2039 reply = (dd->port->rxfis + RX_FIS_PIO_SETUP);
2040 break;
2041 case TASKFILE_IN:
2042 reply = (dd->port->rxfis + RX_FIS_PIO_SETUP);
2043 break;
2044 case TASKFILE_NO_DATA:
2045 reply = (dd->port->rxfis + RX_FIS_D2H_REG);
2046 break;
2047 default:
2048 err = -EINVAL;
2049 goto abort;
2050 }
2051
Sam Bradshaw88523a62011-08-30 08:34:26 -06002052 /* Build the FIS. */
2053 memset(&fis, 0, sizeof(struct host_to_dev_fis));
2054
2055 fis.type = 0x27;
2056 fis.opts = 1 << 7;
2057 fis.command = req_task->io_ports[7];
2058 fis.features = req_task->io_ports[1];
2059 fis.sect_count = req_task->io_ports[2];
2060 fis.lba_low = req_task->io_ports[3];
2061 fis.lba_mid = req_task->io_ports[4];
2062 fis.lba_hi = req_task->io_ports[5];
2063 /* Clear the dev bit*/
2064 fis.device = req_task->io_ports[6] & ~0x10;
2065
2066 if ((req_task->in_flags.all == 0) && (req_task->out_flags.all & 1)) {
2067 req_task->in_flags.all =
2068 IDE_TASKFILE_STD_IN_FLAGS |
2069 (IDE_HOB_STD_IN_FLAGS << 8);
2070 fis.lba_low_ex = req_task->hob_ports[3];
2071 fis.lba_mid_ex = req_task->hob_ports[4];
2072 fis.lba_hi_ex = req_task->hob_ports[5];
2073 fis.features_ex = req_task->hob_ports[1];
2074 fis.sect_cnt_ex = req_task->hob_ports[2];
2075
2076 } else {
2077 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
2078 }
2079
2080 force_single_sector = implicit_sector(fis.command, fis.features);
2081
2082 if ((taskin || taskout) && (!fis.sect_count)) {
2083 if (nsect)
2084 fis.sect_count = nsect;
2085 else {
2086 if (!force_single_sector) {
2087 dev_warn(&dd->pdev->dev,
2088 "data movement but "
2089 "sect_count is 0\n");
Sam Bradshaw88523a62011-08-30 08:34:26 -06002090 err = -EINVAL;
2091 goto abort;
2092 }
2093 }
2094 }
2095
2096 dbg_printk(MTIP_DRV_NAME
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002097 " %s: cmd %x, feat %x, nsect %x,"
Sam Bradshaw88523a62011-08-30 08:34:26 -06002098 " sect/lbal %x, lcyl/lbam %x, hcyl/lbah %x,"
2099 " head/dev %x\n",
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002100 __func__,
Sam Bradshaw88523a62011-08-30 08:34:26 -06002101 fis.command,
2102 fis.features,
2103 fis.sect_count,
2104 fis.lba_low,
2105 fis.lba_mid,
2106 fis.lba_hi,
2107 fis.device);
2108
Selvan Mani4453bc82012-09-27 14:36:43 +02002109 /* check for erase mode support during secure erase.*/
Selvan Mani32087952012-11-07 06:03:37 -07002110 if ((fis.command == ATA_CMD_SEC_ERASE_UNIT) && outbuf &&
2111 (outbuf[0] & MTIP_SEC_ERASE_MODE)) {
Selvan Mani4453bc82012-09-27 14:36:43 +02002112 erasemode = 1;
2113 }
2114
2115 mtip_set_timeout(dd, &fis, &timeout, erasemode);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002116
2117 /* Determine the correct transfer size.*/
2118 if (force_single_sector)
2119 transfer_size = ATA_SECT_SIZE;
2120 else
2121 transfer_size = ATA_SECT_SIZE * fis.sect_count;
2122
2123 /* Execute the command.*/
2124 if (mtip_exec_internal_command(dd->port,
2125 &fis,
2126 5,
2127 dma_buffer,
2128 transfer_size,
2129 0,
Sam Bradshaw88523a62011-08-30 08:34:26 -06002130 timeout) < 0) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06002131 err = -EIO;
2132 goto abort;
2133 }
2134
2135 task_file_data = readl(dd->port->mmio+PORT_TFDATA);
2136
2137 if ((req_task->data_phase == TASKFILE_IN) && !(task_file_data & 1)) {
2138 reply = dd->port->rxfis + RX_FIS_PIO_SETUP;
2139 req_task->io_ports[7] = reply->control;
2140 } else {
2141 reply = dd->port->rxfis + RX_FIS_D2H_REG;
2142 req_task->io_ports[7] = reply->command;
2143 }
2144
2145 /* reclaim the DMA buffers.*/
2146 if (inbuf_dma)
2147 pci_unmap_single(dd->pdev, inbuf_dma,
2148 taskin, DMA_FROM_DEVICE);
2149 if (outbuf_dma)
2150 pci_unmap_single(dd->pdev, outbuf_dma,
2151 taskout, DMA_TO_DEVICE);
Jens Axboe16d02c02011-09-27 15:50:01 -06002152 inbuf_dma = 0;
2153 outbuf_dma = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002154
2155 /* return the ATA registers to the caller.*/
2156 req_task->io_ports[1] = reply->features;
2157 req_task->io_ports[2] = reply->sect_count;
2158 req_task->io_ports[3] = reply->lba_low;
2159 req_task->io_ports[4] = reply->lba_mid;
2160 req_task->io_ports[5] = reply->lba_hi;
2161 req_task->io_ports[6] = reply->device;
2162
2163 if (req_task->out_flags.all & 1) {
2164
2165 req_task->hob_ports[3] = reply->lba_low_ex;
2166 req_task->hob_ports[4] = reply->lba_mid_ex;
2167 req_task->hob_ports[5] = reply->lba_hi_ex;
2168 req_task->hob_ports[1] = reply->features_ex;
2169 req_task->hob_ports[2] = reply->sect_cnt_ex;
2170 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06002171 dbg_printk(MTIP_DRV_NAME
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002172 " %s: Completion: stat %x,"
Sam Bradshaw88523a62011-08-30 08:34:26 -06002173 "err %x, sect_cnt %x, lbalo %x,"
2174 "lbamid %x, lbahi %x, dev %x\n",
2175 __func__,
2176 req_task->io_ports[7],
2177 req_task->io_ports[1],
2178 req_task->io_ports[2],
2179 req_task->io_ports[3],
2180 req_task->io_ports[4],
2181 req_task->io_ports[5],
2182 req_task->io_ports[6]);
2183
Sam Bradshaw88523a62011-08-30 08:34:26 -06002184 if (taskout) {
2185 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
2186 err = -EFAULT;
2187 goto abort;
2188 }
2189 }
2190 if (taskin) {
2191 if (copy_to_user(buf + intotal, inbuf, taskin)) {
2192 err = -EFAULT;
2193 goto abort;
2194 }
2195 }
2196abort:
2197 if (inbuf_dma)
2198 pci_unmap_single(dd->pdev, inbuf_dma,
2199 taskin, DMA_FROM_DEVICE);
2200 if (outbuf_dma)
2201 pci_unmap_single(dd->pdev, outbuf_dma,
2202 taskout, DMA_TO_DEVICE);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002203 kfree(outbuf);
2204 kfree(inbuf);
2205
2206 return err;
2207}
2208
2209/*
2210 * Handle IOCTL calls from the Block Layer.
2211 *
2212 * This function is called by the Block Layer when it receives an IOCTL
2213 * command that it does not understand. If the IOCTL command is not supported
2214 * this function returns -ENOTTY.
2215 *
2216 * @dd Pointer to the driver data structure.
2217 * @cmd IOCTL command passed from the Block Layer.
2218 * @arg IOCTL argument passed from the Block Layer.
2219 *
2220 * return value
2221 * 0 The IOCTL completed successfully.
2222 * -ENOTTY The specified command is not supported.
2223 * -EFAULT An error occurred copying data to a user space buffer.
2224 * -EIO An error occurred while executing the command.
2225 */
Jens Axboeef0f1582011-09-27 21:19:53 -06002226static int mtip_hw_ioctl(struct driver_data *dd, unsigned int cmd,
2227 unsigned long arg)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002228{
2229 switch (cmd) {
2230 case HDIO_GET_IDENTITY:
Asai Thambi S P971890f2012-05-29 18:41:47 -07002231 {
2232 if (copy_to_user((void __user *)arg, dd->port->identify,
2233 sizeof(u16) * ATA_ID_WORDS))
2234 return -EFAULT;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002235 break;
Asai Thambi S P971890f2012-05-29 18:41:47 -07002236 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06002237 case HDIO_DRIVE_CMD:
2238 {
2239 u8 drive_command[4];
2240
2241 /* Copy the user command info to our buffer. */
2242 if (copy_from_user(drive_command,
2243 (void __user *) arg,
2244 sizeof(drive_command)))
2245 return -EFAULT;
2246
2247 /* Execute the drive command. */
2248 if (exec_drive_command(dd->port,
2249 drive_command,
2250 (void __user *) (arg+4)))
2251 return -EIO;
2252
2253 /* Copy the status back to the users buffer. */
2254 if (copy_to_user((void __user *) arg,
2255 drive_command,
2256 sizeof(drive_command)))
2257 return -EFAULT;
2258
2259 break;
2260 }
2261 case HDIO_DRIVE_TASK:
2262 {
2263 u8 drive_command[7];
2264
2265 /* Copy the user command info to our buffer. */
2266 if (copy_from_user(drive_command,
2267 (void __user *) arg,
2268 sizeof(drive_command)))
2269 return -EFAULT;
2270
2271 /* Execute the drive command. */
2272 if (exec_drive_task(dd->port, drive_command))
2273 return -EIO;
2274
2275 /* Copy the status back to the users buffer. */
2276 if (copy_to_user((void __user *) arg,
2277 drive_command,
2278 sizeof(drive_command)))
2279 return -EFAULT;
2280
2281 break;
2282 }
Jens Axboeef0f1582011-09-27 21:19:53 -06002283 case HDIO_DRIVE_TASKFILE: {
2284 ide_task_request_t req_task;
2285 int ret, outtotal;
2286
2287 if (copy_from_user(&req_task, (void __user *) arg,
2288 sizeof(req_task)))
2289 return -EFAULT;
2290
2291 outtotal = sizeof(req_task);
2292
2293 ret = exec_drive_taskfile(dd, (void __user *) arg,
2294 &req_task, outtotal);
2295
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002296 if (copy_to_user((void __user *) arg, &req_task,
2297 sizeof(req_task)))
Jens Axboeef0f1582011-09-27 21:19:53 -06002298 return -EFAULT;
2299
2300 return ret;
2301 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06002302
2303 default:
2304 return -EINVAL;
2305 }
2306 return 0;
2307}
2308
2309/*
2310 * Submit an IO to the hw
2311 *
2312 * This function is called by the block layer to issue an io
2313 * to the device. Upon completion, the callback function will
2314 * be called with the data parameter passed as the callback data.
2315 *
2316 * @dd Pointer to the driver data structure.
2317 * @start First sector to read.
2318 * @nsect Number of sectors to read.
2319 * @nents Number of entries in scatter list for the read command.
2320 * @tag The tag of this read command.
2321 * @callback Pointer to the function that should be called
2322 * when the read completes.
2323 * @data Callback data passed to the callback function
2324 * when the read completes.
Sam Bradshaw88523a62011-08-30 08:34:26 -06002325 * @dir Direction (read or write)
2326 *
2327 * return value
2328 * None
2329 */
Jens Axboeffc771b2014-05-09 09:42:02 -06002330static void mtip_hw_submit_io(struct driver_data *dd, struct request *rq,
2331 struct mtip_cmd *command, int nents,
2332 struct blk_mq_hw_ctx *hctx)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002333{
2334 struct host_to_dev_fis *fis;
2335 struct mtip_port *port = dd->port;
Jens Axboeffc771b2014-05-09 09:42:02 -06002336 int dma_dir = rq_data_dir(rq) == READ ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
2337 u64 start = blk_rq_pos(rq);
2338 unsigned int nsect = blk_rq_sectors(rq);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002339
2340 /* Map the scatter list for DMA access */
Asai Thambi S P45038362012-04-09 08:35:38 +02002341 nents = dma_map_sg(&dd->pdev->dev, command->sg, nents, dma_dir);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002342
Sam Bradshawf45c40a2014-06-06 13:28:48 -06002343 prefetch(&port->flags);
2344
Sam Bradshaw88523a62011-08-30 08:34:26 -06002345 command->scatter_ents = nents;
2346
2347 /*
2348 * The number of retries for this command before it is
2349 * reported as a failure to the upper layers.
2350 */
2351 command->retries = MTIP_MAX_RETRIES;
2352
2353 /* Fill out fis */
2354 fis = command->command;
2355 fis->type = 0x27;
2356 fis->opts = 1 << 7;
Sam Bradshawf45c40a2014-06-06 13:28:48 -06002357 if (dma_dir == DMA_FROM_DEVICE)
Jens Axboeffc771b2014-05-09 09:42:02 -06002358 fis->command = ATA_CMD_FPDMA_READ;
2359 else
2360 fis->command = ATA_CMD_FPDMA_WRITE;
Selvan Manieda45312012-11-07 06:03:53 -07002361 fis->lba_low = start & 0xFF;
2362 fis->lba_mid = (start >> 8) & 0xFF;
2363 fis->lba_hi = (start >> 16) & 0xFF;
2364 fis->lba_low_ex = (start >> 24) & 0xFF;
2365 fis->lba_mid_ex = (start >> 32) & 0xFF;
2366 fis->lba_hi_ex = (start >> 40) & 0xFF;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002367 fis->device = 1 << 6;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002368 fis->features = nsect & 0xFF;
2369 fis->features_ex = (nsect >> 8) & 0xFF;
Jens Axboeffc771b2014-05-09 09:42:02 -06002370 fis->sect_count = ((rq->tag << 3) | (rq->tag >> 5));
Sam Bradshaw88523a62011-08-30 08:34:26 -06002371 fis->sect_cnt_ex = 0;
2372 fis->control = 0;
2373 fis->res2 = 0;
2374 fis->res3 = 0;
2375 fill_command_sg(dd, command, nents);
2376
Sam Bradshawf45c40a2014-06-06 13:28:48 -06002377 if (unlikely(command->unaligned))
Asai Thambi S P2077d942013-04-29 21:19:49 +02002378 fis->device |= 1 << 7;
2379
Sam Bradshaw88523a62011-08-30 08:34:26 -06002380 /* Populate the command header */
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002381 command->command_header->opts =
2382 __force_bit2int cpu_to_le32(
2383 (nents << 16) | 5 | AHCI_CMD_PREFETCH);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002384 command->command_header->byte_count = 0;
2385
2386 /*
2387 * Set the completion function and data for the command
2388 * within this layer.
2389 */
2390 command->comp_data = dd;
2391 command->comp_func = mtip_async_complete;
Asai Thambi S P45038362012-04-09 08:35:38 +02002392 command->direction = dma_dir;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002393
2394 /*
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002395 * To prevent this command from being issued
2396 * if an internal command is in progress or error handling is active.
Sam Bradshaw88523a62011-08-30 08:34:26 -06002397 */
Sam Bradshawf45c40a2014-06-06 13:28:48 -06002398 if (unlikely(port->flags & MTIP_PF_PAUSE_IO)) {
Jens Axboeffc771b2014-05-09 09:42:02 -06002399 set_bit(rq->tag, port->cmds_to_issue);
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002400 set_bit(MTIP_PF_ISSUE_CMDS_BIT, &port->flags);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002401 return;
2402 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06002403
2404 /* Issue the command to the hardware */
Jens Axboeffc771b2014-05-09 09:42:02 -06002405 mtip_issue_ncq_command(port, rq->tag);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002406}
2407
2408/*
Asai Thambi S P7412ff12012-06-04 12:43:03 -07002409 * Sysfs status dump.
Sam Bradshaw88523a62011-08-30 08:34:26 -06002410 *
2411 * @dev Pointer to the device structure, passed by the kernrel.
2412 * @attr Pointer to the device_attribute structure passed by the kernel.
2413 * @buf Pointer to the char buffer that will receive the stats info.
2414 *
2415 * return value
2416 * The size, in bytes, of the data copied into buf.
2417 */
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002418static ssize_t mtip_hw_show_status(struct device *dev,
2419 struct device_attribute *attr,
2420 char *buf)
2421{
2422 struct driver_data *dd = dev_to_disk(dev)->private_data;
2423 int size = 0;
2424
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002425 if (test_bit(MTIP_DDF_OVER_TEMP_BIT, &dd->dd_flag))
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002426 size += sprintf(buf, "%s", "thermal_shutdown\n");
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002427 else if (test_bit(MTIP_DDF_WRITE_PROTECT_BIT, &dd->dd_flag))
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002428 size += sprintf(buf, "%s", "write_protect\n");
2429 else
2430 size += sprintf(buf, "%s", "online\n");
2431
2432 return size;
2433}
2434
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002435static DEVICE_ATTR(status, S_IRUGO, mtip_hw_show_status, NULL);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002436
Asai Thambi S P0caff002013-04-03 19:56:21 +05302437/* debugsfs entries */
2438
2439static ssize_t show_device_status(struct device_driver *drv, char *buf)
2440{
2441 int size = 0;
2442 struct driver_data *dd, *tmp;
2443 unsigned long flags;
2444 char id_buf[42];
2445 u16 status = 0;
2446
2447 spin_lock_irqsave(&dev_lock, flags);
2448 size += sprintf(&buf[size], "Devices Present:\n");
2449 list_for_each_entry_safe(dd, tmp, &online_list, online_list) {
Jens Axboec66bb3f2013-04-04 09:03:41 +02002450 if (dd->pdev) {
Asai Thambi S P0caff002013-04-03 19:56:21 +05302451 if (dd->port &&
2452 dd->port->identify &&
2453 dd->port->identify_valid) {
2454 strlcpy(id_buf,
2455 (char *) (dd->port->identify + 10), 21);
2456 status = *(dd->port->identify + 141);
2457 } else {
2458 memset(id_buf, 0, 42);
2459 status = 0;
2460 }
2461
2462 if (dd->port &&
2463 test_bit(MTIP_PF_REBUILD_BIT, &dd->port->flags)) {
2464 size += sprintf(&buf[size],
2465 " device %s %s (ftl rebuild %d %%)\n",
2466 dev_name(&dd->pdev->dev),
2467 id_buf,
2468 status);
2469 } else {
2470 size += sprintf(&buf[size],
2471 " device %s %s\n",
2472 dev_name(&dd->pdev->dev),
2473 id_buf);
2474 }
2475 }
2476 }
2477
2478 size += sprintf(&buf[size], "Devices Being Removed:\n");
2479 list_for_each_entry_safe(dd, tmp, &removing_list, remove_list) {
Jens Axboec66bb3f2013-04-04 09:03:41 +02002480 if (dd->pdev) {
Asai Thambi S P0caff002013-04-03 19:56:21 +05302481 if (dd->port &&
2482 dd->port->identify &&
2483 dd->port->identify_valid) {
2484 strlcpy(id_buf,
2485 (char *) (dd->port->identify+10), 21);
2486 status = *(dd->port->identify + 141);
2487 } else {
2488 memset(id_buf, 0, 42);
2489 status = 0;
2490 }
2491
2492 if (dd->port &&
2493 test_bit(MTIP_PF_REBUILD_BIT, &dd->port->flags)) {
2494 size += sprintf(&buf[size],
2495 " device %s %s (ftl rebuild %d %%)\n",
2496 dev_name(&dd->pdev->dev),
2497 id_buf,
2498 status);
2499 } else {
2500 size += sprintf(&buf[size],
2501 " device %s %s\n",
2502 dev_name(&dd->pdev->dev),
2503 id_buf);
2504 }
2505 }
2506 }
2507 spin_unlock_irqrestore(&dev_lock, flags);
2508
2509 return size;
2510}
2511
2512static ssize_t mtip_hw_read_device_status(struct file *f, char __user *ubuf,
2513 size_t len, loff_t *offset)
2514{
David Milburnc8afd0d2013-05-23 16:23:45 -05002515 struct driver_data *dd = (struct driver_data *)f->private_data;
Asai Thambi S P0caff002013-04-03 19:56:21 +05302516 int size = *offset;
David Milburnc8afd0d2013-05-23 16:23:45 -05002517 char *buf;
2518 int rv = 0;
Asai Thambi S P0caff002013-04-03 19:56:21 +05302519
2520 if (!len || *offset)
2521 return 0;
2522
David Milburnc8afd0d2013-05-23 16:23:45 -05002523 buf = kzalloc(MTIP_DFS_MAX_BUF_SIZE, GFP_KERNEL);
2524 if (!buf) {
2525 dev_err(&dd->pdev->dev,
2526 "Memory allocation: status buffer\n");
2527 return -ENOMEM;
2528 }
2529
Asai Thambi S P0caff002013-04-03 19:56:21 +05302530 size += show_device_status(NULL, buf);
2531
2532 *offset = size <= len ? size : len;
2533 size = copy_to_user(ubuf, buf, *offset);
2534 if (size)
David Milburnc8afd0d2013-05-23 16:23:45 -05002535 rv = -EFAULT;
Asai Thambi S P0caff002013-04-03 19:56:21 +05302536
David Milburnc8afd0d2013-05-23 16:23:45 -05002537 kfree(buf);
2538 return rv ? rv : *offset;
Asai Thambi S P0caff002013-04-03 19:56:21 +05302539}
2540
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002541static ssize_t mtip_hw_read_registers(struct file *f, char __user *ubuf,
2542 size_t len, loff_t *offset)
2543{
2544 struct driver_data *dd = (struct driver_data *)f->private_data;
David Milburnc8afd0d2013-05-23 16:23:45 -05002545 char *buf;
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002546 u32 group_allocated;
2547 int size = *offset;
David Milburnc8afd0d2013-05-23 16:23:45 -05002548 int n, rv = 0;
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002549
2550 if (!len || size)
2551 return 0;
2552
David Milburnc8afd0d2013-05-23 16:23:45 -05002553 buf = kzalloc(MTIP_DFS_MAX_BUF_SIZE, GFP_KERNEL);
2554 if (!buf) {
2555 dev_err(&dd->pdev->dev,
2556 "Memory allocation: register buffer\n");
2557 return -ENOMEM;
2558 }
2559
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002560 size += sprintf(&buf[size], "H/ S ACTive : [ 0x");
2561
2562 for (n = dd->slot_groups-1; n >= 0; n--)
2563 size += sprintf(&buf[size], "%08X ",
2564 readl(dd->port->s_active[n]));
2565
2566 size += sprintf(&buf[size], "]\n");
2567 size += sprintf(&buf[size], "H/ Command Issue : [ 0x");
2568
2569 for (n = dd->slot_groups-1; n >= 0; n--)
2570 size += sprintf(&buf[size], "%08X ",
2571 readl(dd->port->cmd_issue[n]));
2572
2573 size += sprintf(&buf[size], "]\n");
2574 size += sprintf(&buf[size], "H/ Completed : [ 0x");
2575
2576 for (n = dd->slot_groups-1; n >= 0; n--)
2577 size += sprintf(&buf[size], "%08X ",
2578 readl(dd->port->completed[n]));
2579
2580 size += sprintf(&buf[size], "]\n");
2581 size += sprintf(&buf[size], "H/ PORT IRQ STAT : [ 0x%08X ]\n",
2582 readl(dd->port->mmio + PORT_IRQ_STAT));
2583 size += sprintf(&buf[size], "H/ HOST IRQ STAT : [ 0x%08X ]\n",
2584 readl(dd->mmio + HOST_IRQ_STAT));
2585 size += sprintf(&buf[size], "\n");
2586
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002587 size += sprintf(&buf[size], "L/ Commands in Q : [ 0x");
2588
2589 for (n = dd->slot_groups-1; n >= 0; n--) {
2590 if (sizeof(long) > sizeof(u32))
2591 group_allocated =
2592 dd->port->cmds_to_issue[n/2] >> (32*(n&1));
2593 else
2594 group_allocated = dd->port->cmds_to_issue[n];
2595 size += sprintf(&buf[size], "%08X ", group_allocated);
2596 }
2597 size += sprintf(&buf[size], "]\n");
2598
2599 *offset = size <= len ? size : len;
2600 size = copy_to_user(ubuf, buf, *offset);
2601 if (size)
David Milburnc8afd0d2013-05-23 16:23:45 -05002602 rv = -EFAULT;
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002603
David Milburnc8afd0d2013-05-23 16:23:45 -05002604 kfree(buf);
2605 return rv ? rv : *offset;
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002606}
2607
2608static ssize_t mtip_hw_read_flags(struct file *f, char __user *ubuf,
2609 size_t len, loff_t *offset)
2610{
2611 struct driver_data *dd = (struct driver_data *)f->private_data;
David Milburnc8afd0d2013-05-23 16:23:45 -05002612 char *buf;
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002613 int size = *offset;
David Milburnc8afd0d2013-05-23 16:23:45 -05002614 int rv = 0;
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002615
2616 if (!len || size)
2617 return 0;
2618
David Milburnc8afd0d2013-05-23 16:23:45 -05002619 buf = kzalloc(MTIP_DFS_MAX_BUF_SIZE, GFP_KERNEL);
2620 if (!buf) {
2621 dev_err(&dd->pdev->dev,
2622 "Memory allocation: flag buffer\n");
2623 return -ENOMEM;
2624 }
2625
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002626 size += sprintf(&buf[size], "Flag-port : [ %08lX ]\n",
2627 dd->port->flags);
2628 size += sprintf(&buf[size], "Flag-dd : [ %08lX ]\n",
2629 dd->dd_flag);
2630
2631 *offset = size <= len ? size : len;
2632 size = copy_to_user(ubuf, buf, *offset);
2633 if (size)
David Milburnc8afd0d2013-05-23 16:23:45 -05002634 rv = -EFAULT;
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002635
David Milburnc8afd0d2013-05-23 16:23:45 -05002636 kfree(buf);
2637 return rv ? rv : *offset;
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002638}
2639
Asai Thambi S P0caff002013-04-03 19:56:21 +05302640static const struct file_operations mtip_device_status_fops = {
2641 .owner = THIS_MODULE,
2642 .open = simple_open,
2643 .read = mtip_hw_read_device_status,
2644 .llseek = no_llseek,
2645};
2646
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002647static const struct file_operations mtip_regs_fops = {
2648 .owner = THIS_MODULE,
2649 .open = simple_open,
2650 .read = mtip_hw_read_registers,
2651 .llseek = no_llseek,
2652};
2653
2654static const struct file_operations mtip_flags_fops = {
2655 .owner = THIS_MODULE,
2656 .open = simple_open,
2657 .read = mtip_hw_read_flags,
2658 .llseek = no_llseek,
2659};
2660
Sam Bradshaw88523a62011-08-30 08:34:26 -06002661/*
2662 * Create the sysfs related attributes.
2663 *
2664 * @dd Pointer to the driver data structure.
2665 * @kobj Pointer to the kobj for the block device.
2666 *
2667 * return value
2668 * 0 Operation completed successfully.
2669 * -EINVAL Invalid parameter.
2670 */
Jens Axboe63166682011-09-27 21:27:43 -06002671static int mtip_hw_sysfs_init(struct driver_data *dd, struct kobject *kobj)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002672{
2673 if (!kobj || !dd)
2674 return -EINVAL;
2675
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002676 if (sysfs_create_file(kobj, &dev_attr_status.attr))
2677 dev_warn(&dd->pdev->dev,
2678 "Error creating 'status' sysfs entry\n");
Sam Bradshaw88523a62011-08-30 08:34:26 -06002679 return 0;
2680}
2681
2682/*
2683 * Remove the sysfs related attributes.
2684 *
2685 * @dd Pointer to the driver data structure.
2686 * @kobj Pointer to the kobj for the block device.
2687 *
2688 * return value
2689 * 0 Operation completed successfully.
2690 * -EINVAL Invalid parameter.
2691 */
Jens Axboe63166682011-09-27 21:27:43 -06002692static int mtip_hw_sysfs_exit(struct driver_data *dd, struct kobject *kobj)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002693{
2694 if (!kobj || !dd)
2695 return -EINVAL;
2696
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002697 sysfs_remove_file(kobj, &dev_attr_status.attr);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002698
2699 return 0;
2700}
2701
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002702static int mtip_hw_debugfs_init(struct driver_data *dd)
2703{
2704 if (!dfs_parent)
2705 return -1;
2706
2707 dd->dfs_node = debugfs_create_dir(dd->disk->disk_name, dfs_parent);
2708 if (IS_ERR_OR_NULL(dd->dfs_node)) {
2709 dev_warn(&dd->pdev->dev,
2710 "Error creating node %s under debugfs\n",
2711 dd->disk->disk_name);
2712 dd->dfs_node = NULL;
2713 return -1;
2714 }
2715
2716 debugfs_create_file("flags", S_IRUGO, dd->dfs_node, dd,
2717 &mtip_flags_fops);
2718 debugfs_create_file("registers", S_IRUGO, dd->dfs_node, dd,
2719 &mtip_regs_fops);
2720
2721 return 0;
2722}
2723
2724static void mtip_hw_debugfs_exit(struct driver_data *dd)
2725{
Sam Bradshaw974a51a2013-05-15 10:04:34 +02002726 if (dd->dfs_node)
2727 debugfs_remove_recursive(dd->dfs_node);
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002728}
2729
Sam Bradshaw88523a62011-08-30 08:34:26 -06002730/*
2731 * Perform any init/resume time hardware setup
2732 *
2733 * @dd Pointer to the driver data structure.
2734 *
2735 * return value
2736 * None
2737 */
2738static inline void hba_setup(struct driver_data *dd)
2739{
2740 u32 hwdata;
2741 hwdata = readl(dd->mmio + HOST_HSORG);
2742
2743 /* interrupt bug workaround: use only 1 IS bit.*/
2744 writel(hwdata |
2745 HSORG_DISABLE_SLOTGRP_INTR |
2746 HSORG_DISABLE_SLOTGRP_PXIS,
2747 dd->mmio + HOST_HSORG);
2748}
2749
Asai Thambi S P2077d942013-04-29 21:19:49 +02002750static int mtip_device_unaligned_constrained(struct driver_data *dd)
2751{
2752 return (dd->pdev->device == P420M_DEVICE_ID ? 1 : 0);
2753}
2754
Sam Bradshaw88523a62011-08-30 08:34:26 -06002755/*
2756 * Detect the details of the product, and store anything needed
2757 * into the driver data structure. This includes product type and
2758 * version and number of slot groups.
2759 *
2760 * @dd Pointer to the driver data structure.
2761 *
2762 * return value
2763 * None
2764 */
2765static void mtip_detect_product(struct driver_data *dd)
2766{
2767 u32 hwdata;
2768 unsigned int rev, slotgroups;
2769
2770 /*
2771 * HBA base + 0xFC [15:0] - vendor-specific hardware interface
2772 * info register:
2773 * [15:8] hardware/software interface rev#
2774 * [ 3] asic-style interface
2775 * [ 2:0] number of slot groups, minus 1 (only valid for asic-style).
2776 */
2777 hwdata = readl(dd->mmio + HOST_HSORG);
2778
2779 dd->product_type = MTIP_PRODUCT_UNKNOWN;
2780 dd->slot_groups = 1;
2781
2782 if (hwdata & 0x8) {
2783 dd->product_type = MTIP_PRODUCT_ASICFPGA;
2784 rev = (hwdata & HSORG_HWREV) >> 8;
2785 slotgroups = (hwdata & HSORG_SLOTGROUPS) + 1;
2786 dev_info(&dd->pdev->dev,
2787 "ASIC-FPGA design, HS rev 0x%x, "
2788 "%i slot groups [%i slots]\n",
2789 rev,
2790 slotgroups,
2791 slotgroups * 32);
2792
2793 if (slotgroups > MTIP_MAX_SLOT_GROUPS) {
2794 dev_warn(&dd->pdev->dev,
2795 "Warning: driver only supports "
2796 "%i slot groups.\n", MTIP_MAX_SLOT_GROUPS);
2797 slotgroups = MTIP_MAX_SLOT_GROUPS;
2798 }
2799 dd->slot_groups = slotgroups;
2800 return;
2801 }
2802
2803 dev_warn(&dd->pdev->dev, "Unrecognized product id\n");
2804}
2805
2806/*
2807 * Blocking wait for FTL rebuild to complete
2808 *
2809 * @dd Pointer to the DRIVER_DATA structure.
2810 *
2811 * return value
2812 * 0 FTL rebuild completed successfully
2813 * -EFAULT FTL rebuild error/timeout/interruption
2814 */
2815static int mtip_ftl_rebuild_poll(struct driver_data *dd)
2816{
2817 unsigned long timeout, cnt = 0, start;
2818
2819 dev_warn(&dd->pdev->dev,
2820 "FTL rebuild in progress. Polling for completion.\n");
2821
2822 start = jiffies;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002823 timeout = jiffies + msecs_to_jiffies(MTIP_FTL_REBUILD_TIMEOUT_MS);
2824
2825 do {
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002826 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
Asai Thambi S P45038362012-04-09 08:35:38 +02002827 &dd->dd_flag)))
2828 return -EFAULT;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002829 if (mtip_check_surprise_removal(dd->pdev))
2830 return -EFAULT;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002831
Sam Bradshaw88523a62011-08-30 08:34:26 -06002832 if (mtip_get_identify(dd->port, NULL) < 0)
2833 return -EFAULT;
2834
2835 if (*(dd->port->identify + MTIP_FTL_REBUILD_OFFSET) ==
2836 MTIP_FTL_REBUILD_MAGIC) {
2837 ssleep(1);
2838 /* Print message every 3 minutes */
2839 if (cnt++ >= 180) {
2840 dev_warn(&dd->pdev->dev,
2841 "FTL rebuild in progress (%d secs).\n",
2842 jiffies_to_msecs(jiffies - start) / 1000);
2843 cnt = 0;
2844 }
2845 } else {
2846 dev_warn(&dd->pdev->dev,
2847 "FTL rebuild complete (%d secs).\n",
2848 jiffies_to_msecs(jiffies - start) / 1000);
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01002849 mtip_block_initialize(dd);
Asai Thambi S P45038362012-04-09 08:35:38 +02002850 return 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002851 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06002852 } while (time_before(jiffies, timeout));
2853
2854 /* Check for timeout */
Asai Thambi S P45038362012-04-09 08:35:38 +02002855 dev_err(&dd->pdev->dev,
Sam Bradshaw88523a62011-08-30 08:34:26 -06002856 "Timed out waiting for FTL rebuild to complete (%d secs).\n",
2857 jiffies_to_msecs(jiffies - start) / 1000);
Asai Thambi S P45038362012-04-09 08:35:38 +02002858 return -EFAULT;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002859}
2860
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08002861static void mtip_softirq_done_fn(struct request *rq)
2862{
2863 struct mtip_cmd *cmd = blk_mq_rq_to_pdu(rq);
2864 struct driver_data *dd = rq->q->queuedata;
2865
2866 /* Unmap the DMA scatter list entries */
2867 dma_unmap_sg(&dd->pdev->dev, cmd->sg, cmd->scatter_ents,
2868 cmd->direction);
2869
2870 if (unlikely(cmd->unaligned))
2871 up(&dd->port->cmd_slot_unal);
2872
Christoph Hellwig4dda4732017-04-20 16:03:07 +02002873 blk_mq_end_request(rq, cmd->status);
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08002874}
2875
2876static void mtip_abort_cmd(struct request *req, void *data,
2877 bool reserved)
2878{
Christoph Hellwig4dda4732017-04-20 16:03:07 +02002879 struct mtip_cmd *cmd = blk_mq_rq_to_pdu(req);
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08002880 struct driver_data *dd = data;
2881
2882 dbg_printk(MTIP_DRV_NAME " Aborting request, tag = %d\n", req->tag);
2883
2884 clear_bit(req->tag, dd->port->cmds_to_issue);
Christoph Hellwig4dda4732017-04-20 16:03:07 +02002885 cmd->status = -EIO;
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08002886 mtip_softirq_done_fn(req);
2887}
2888
2889static void mtip_queue_cmd(struct request *req, void *data,
2890 bool reserved)
2891{
2892 struct driver_data *dd = data;
2893
2894 set_bit(req->tag, dd->port->cmds_to_issue);
2895 blk_abort_request(req);
2896}
2897
Sam Bradshaw88523a62011-08-30 08:34:26 -06002898/*
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002899 * service thread to issue queued commands
2900 *
2901 * @data Pointer to the driver data structure.
2902 *
2903 * return value
2904 * 0
2905 */
2906
2907static int mtip_service_thread(void *data)
2908{
2909 struct driver_data *dd = (struct driver_data *)data;
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08002910 unsigned long slot, slot_start, slot_wrap, to;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002911 unsigned int num_cmd_slots = dd->slot_groups * 32;
2912 struct mtip_port *port = dd->port;
2913
2914 while (1) {
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07002915 if (kthread_should_stop() ||
2916 test_bit(MTIP_PF_SVC_THD_STOP_BIT, &port->flags))
2917 goto st_out;
2918 clear_bit(MTIP_PF_SVC_THD_ACTIVE_BIT, &port->flags);
2919
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002920 /*
2921 * the condition is to check neither an internal command is
2922 * is in progress nor error handling is active
2923 */
2924 wait_event_interruptible(port->svc_wait, (port->flags) &&
Asai Thambi SPcfc05bd2016-02-24 21:16:00 -08002925 (port->flags & MTIP_PF_SVC_THD_WORK));
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06002926
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07002927 if (kthread_should_stop() ||
2928 test_bit(MTIP_PF_SVC_THD_STOP_BIT, &port->flags))
2929 goto st_out;
2930
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002931 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
Asai Thambi S P45038362012-04-09 08:35:38 +02002932 &dd->dd_flag)))
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06002933 goto st_out;
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002934
Asai Thambi SPcfc05bd2016-02-24 21:16:00 -08002935 set_bit(MTIP_PF_SVC_THD_ACTIVE_BIT, &port->flags);
2936
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07002937restart_eh:
2938 /* Demux bits: start with error handling */
2939 if (test_bit(MTIP_PF_EH_ACTIVE_BIT, &port->flags)) {
2940 mtip_handle_tfe(dd);
2941 clear_bit(MTIP_PF_EH_ACTIVE_BIT, &port->flags);
2942 }
2943
2944 if (test_bit(MTIP_PF_EH_ACTIVE_BIT, &port->flags))
2945 goto restart_eh;
2946
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08002947 if (test_bit(MTIP_PF_TO_ACTIVE_BIT, &port->flags)) {
2948 to = jiffies + msecs_to_jiffies(5000);
2949
2950 do {
2951 mdelay(100);
2952 } while (atomic_read(&dd->irq_workers_active) != 0 &&
2953 time_before(jiffies, to));
2954
2955 if (atomic_read(&dd->irq_workers_active) != 0)
2956 dev_warn(&dd->pdev->dev,
2957 "Completion workers still active!");
2958
2959 spin_lock(dd->queue->queue_lock);
Keith Busch6d125de2016-03-10 13:58:48 +02002960 blk_mq_tagset_busy_iter(&dd->tags,
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08002961 mtip_queue_cmd, dd);
2962 spin_unlock(dd->queue->queue_lock);
2963
2964 set_bit(MTIP_PF_ISSUE_CMDS_BIT, &dd->port->flags);
2965
2966 if (mtip_device_reset(dd))
Keith Busch6d125de2016-03-10 13:58:48 +02002967 blk_mq_tagset_busy_iter(&dd->tags,
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08002968 mtip_abort_cmd, dd);
2969
2970 clear_bit(MTIP_PF_TO_ACTIVE_BIT, &dd->port->flags);
2971 }
2972
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002973 if (test_bit(MTIP_PF_ISSUE_CMDS_BIT, &port->flags)) {
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002974 slot = 1;
2975 /* used to restrict the loop to one iteration */
2976 slot_start = num_cmd_slots;
2977 slot_wrap = 0;
2978 while (1) {
2979 slot = find_next_bit(port->cmds_to_issue,
2980 num_cmd_slots, slot);
2981 if (slot_wrap == 1) {
2982 if ((slot_start >= slot) ||
2983 (slot >= num_cmd_slots))
2984 break;
2985 }
2986 if (unlikely(slot_start == num_cmd_slots))
2987 slot_start = slot;
2988
2989 if (unlikely(slot == num_cmd_slots)) {
2990 slot = 1;
2991 slot_wrap = 1;
2992 continue;
2993 }
2994
2995 /* Issue the command to the hardware */
2996 mtip_issue_ncq_command(port, slot);
2997
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002998 clear_bit(slot, port->cmds_to_issue);
2999 }
3000
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003001 clear_bit(MTIP_PF_ISSUE_CMDS_BIT, &port->flags);
Asai Thambi S P9b204fb2014-05-20 10:48:56 -07003002 }
3003
3004 if (test_bit(MTIP_PF_REBUILD_BIT, &port->flags)) {
Asai Thambi SP59cf70e2016-02-24 21:17:47 -08003005 if (mtip_ftl_rebuild_poll(dd) == 0)
3006 clear_bit(MTIP_PF_REBUILD_BIT, &port->flags);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003007 }
3008 }
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06003009
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06003010st_out:
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003011 return 0;
3012}
3013
3014/*
Sam Bradshaw188b9f42014-01-15 10:14:57 -08003015 * DMA region teardown
3016 *
3017 * @dd Pointer to driver_data structure
3018 *
3019 * return value
3020 * None
3021 */
3022static void mtip_dma_free(struct driver_data *dd)
3023{
Sam Bradshaw188b9f42014-01-15 10:14:57 -08003024 struct mtip_port *port = dd->port;
3025
3026 if (port->block1)
3027 dmam_free_coherent(&dd->pdev->dev, BLOCK_DMA_ALLOC_SZ,
3028 port->block1, port->block1_dma);
3029
3030 if (port->command_list) {
3031 dmam_free_coherent(&dd->pdev->dev, AHCI_CMD_TBL_SZ,
3032 port->command_list, port->command_list_dma);
3033 }
Sam Bradshaw188b9f42014-01-15 10:14:57 -08003034}
3035
3036/*
3037 * DMA region setup
3038 *
3039 * @dd Pointer to driver_data structure
3040 *
3041 * return value
3042 * -ENOMEM Not enough free DMA region space to initialize driver
3043 */
3044static int mtip_dma_alloc(struct driver_data *dd)
3045{
3046 struct mtip_port *port = dd->port;
Sam Bradshaw188b9f42014-01-15 10:14:57 -08003047
3048 /* Allocate dma memory for RX Fis, Identify, and Sector Bufffer */
3049 port->block1 =
3050 dmam_alloc_coherent(&dd->pdev->dev, BLOCK_DMA_ALLOC_SZ,
3051 &port->block1_dma, GFP_KERNEL);
3052 if (!port->block1)
3053 return -ENOMEM;
3054 memset(port->block1, 0, BLOCK_DMA_ALLOC_SZ);
3055
3056 /* Allocate dma memory for command list */
3057 port->command_list =
3058 dmam_alloc_coherent(&dd->pdev->dev, AHCI_CMD_TBL_SZ,
3059 &port->command_list_dma, GFP_KERNEL);
3060 if (!port->command_list) {
3061 dmam_free_coherent(&dd->pdev->dev, BLOCK_DMA_ALLOC_SZ,
3062 port->block1, port->block1_dma);
3063 port->block1 = NULL;
3064 port->block1_dma = 0;
3065 return -ENOMEM;
3066 }
3067 memset(port->command_list, 0, AHCI_CMD_TBL_SZ);
3068
3069 /* Setup all pointers into first DMA region */
3070 port->rxfis = port->block1 + AHCI_RX_FIS_OFFSET;
3071 port->rxfis_dma = port->block1_dma + AHCI_RX_FIS_OFFSET;
3072 port->identify = port->block1 + AHCI_IDFY_OFFSET;
3073 port->identify_dma = port->block1_dma + AHCI_IDFY_OFFSET;
3074 port->log_buf = port->block1 + AHCI_SECTBUF_OFFSET;
3075 port->log_buf_dma = port->block1_dma + AHCI_SECTBUF_OFFSET;
3076 port->smart_buf = port->block1 + AHCI_SMARTBUF_OFFSET;
3077 port->smart_buf_dma = port->block1_dma + AHCI_SMARTBUF_OFFSET;
3078
Sam Bradshaw188b9f42014-01-15 10:14:57 -08003079 return 0;
3080}
3081
Jens Axboeffc771b2014-05-09 09:42:02 -06003082static int mtip_hw_get_identify(struct driver_data *dd)
3083{
3084 struct smart_attr attr242;
3085 unsigned char *buf;
3086 int rv;
3087
3088 if (mtip_get_identify(dd->port, NULL) < 0)
3089 return -EFAULT;
3090
3091 if (*(dd->port->identify + MTIP_FTL_REBUILD_OFFSET) ==
3092 MTIP_FTL_REBUILD_MAGIC) {
3093 set_bit(MTIP_PF_REBUILD_BIT, &dd->port->flags);
3094 return MTIP_FTL_REBUILD_MAGIC;
3095 }
3096 mtip_dump_identify(dd->port);
3097
3098 /* check write protect, over temp and rebuild statuses */
3099 rv = mtip_read_log_page(dd->port, ATA_LOG_SATA_NCQ,
3100 dd->port->log_buf,
3101 dd->port->log_buf_dma, 1);
3102 if (rv) {
3103 dev_warn(&dd->pdev->dev,
3104 "Error in READ LOG EXT (10h) command\n");
3105 /* non-critical error, don't fail the load */
3106 } else {
3107 buf = (unsigned char *)dd->port->log_buf;
3108 if (buf[259] & 0x1) {
3109 dev_info(&dd->pdev->dev,
3110 "Write protect bit is set.\n");
3111 set_bit(MTIP_DDF_WRITE_PROTECT_BIT, &dd->dd_flag);
3112 }
3113 if (buf[288] == 0xF7) {
3114 dev_info(&dd->pdev->dev,
3115 "Exceeded Tmax, drive in thermal shutdown.\n");
3116 set_bit(MTIP_DDF_OVER_TEMP_BIT, &dd->dd_flag);
3117 }
3118 if (buf[288] == 0xBF) {
3119 dev_info(&dd->pdev->dev,
3120 "Drive indicates rebuild has failed.\n");
Asai Thambi SPaae4a032016-02-24 21:18:20 -08003121 set_bit(MTIP_DDF_REBUILD_FAILED_BIT, &dd->dd_flag);
Jens Axboeffc771b2014-05-09 09:42:02 -06003122 }
3123 }
3124
3125 /* get write protect progess */
3126 memset(&attr242, 0, sizeof(struct smart_attr));
3127 if (mtip_get_smart_attr(dd->port, 242, &attr242))
3128 dev_warn(&dd->pdev->dev,
3129 "Unable to check write protect progress\n");
3130 else
3131 dev_info(&dd->pdev->dev,
3132 "Write protect progress: %u%% (%u blocks)\n",
3133 attr242.cur, le32_to_cpu(attr242.data));
3134
3135 return rv;
3136}
3137
Sam Bradshaw188b9f42014-01-15 10:14:57 -08003138/*
Sam Bradshaw88523a62011-08-30 08:34:26 -06003139 * Called once for each card.
3140 *
3141 * @dd Pointer to the driver data structure.
3142 *
3143 * return value
3144 * 0 on success, else an error code.
3145 */
Jens Axboe63166682011-09-27 21:27:43 -06003146static int mtip_hw_init(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003147{
3148 int i;
3149 int rv;
3150 unsigned int num_command_slots;
Asai Thambi S P45038362012-04-09 08:35:38 +02003151 unsigned long timeout, timetaken;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003152
3153 dd->mmio = pcim_iomap_table(dd->pdev)[MTIP_ABAR];
3154
3155 mtip_detect_product(dd);
3156 if (dd->product_type == MTIP_PRODUCT_UNKNOWN) {
3157 rv = -EIO;
3158 goto out1;
3159 }
3160 num_command_slots = dd->slot_groups * 32;
3161
3162 hba_setup(dd);
3163
Asai Thambi S P16c906e52012-12-20 07:46:25 -08003164 dd->port = kzalloc_node(sizeof(struct mtip_port), GFP_KERNEL,
3165 dd->numa_node);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003166 if (!dd->port) {
3167 dev_err(&dd->pdev->dev,
3168 "Memory allocation: port structure\n");
3169 return -ENOMEM;
3170 }
3171
Asai Thambi S P16c906e52012-12-20 07:46:25 -08003172 /* Continue workqueue setup */
3173 for (i = 0; i < MTIP_MAX_SLOT_GROUPS; i++)
3174 dd->work[i].port = dd->port;
3175
Asai Thambi S P2077d942013-04-29 21:19:49 +02003176 /* Enable unaligned IO constraints for some devices */
3177 if (mtip_device_unaligned_constrained(dd))
3178 dd->unal_qdepth = MTIP_MAX_UNALIGNED_SLOTS;
3179 else
3180 dd->unal_qdepth = 0;
3181
Asai Thambi S P2077d942013-04-29 21:19:49 +02003182 sema_init(&dd->port->cmd_slot_unal, dd->unal_qdepth);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003183
3184 /* Spinlock to prevent concurrent issue */
Asai Thambi S P16c906e52012-12-20 07:46:25 -08003185 for (i = 0; i < MTIP_MAX_SLOT_GROUPS; i++)
3186 spin_lock_init(&dd->port->cmd_issue_lock[i]);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003187
3188 /* Set the port mmio base address. */
3189 dd->port->mmio = dd->mmio + PORT_OFFSET;
3190 dd->port->dd = dd;
3191
Sam Bradshaw188b9f42014-01-15 10:14:57 -08003192 /* DMA allocations */
3193 rv = mtip_dma_alloc(dd);
3194 if (rv < 0)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003195 goto out1;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003196
3197 /* Setup the pointers to the extended s_active and CI registers. */
3198 for (i = 0; i < dd->slot_groups; i++) {
3199 dd->port->s_active[i] =
3200 dd->port->mmio + i*0x80 + PORT_SCR_ACT;
3201 dd->port->cmd_issue[i] =
3202 dd->port->mmio + i*0x80 + PORT_COMMAND_ISSUE;
3203 dd->port->completed[i] =
3204 dd->port->mmio + i*0x80 + PORT_SDBV;
3205 }
3206
Asai Thambi S P45038362012-04-09 08:35:38 +02003207 timetaken = jiffies;
3208 timeout = jiffies + msecs_to_jiffies(30000);
3209 while (((readl(dd->port->mmio + PORT_SCR_STAT) & 0x0F) != 0x03) &&
3210 time_before(jiffies, timeout)) {
3211 mdelay(100);
3212 }
3213 if (unlikely(mtip_check_surprise_removal(dd->pdev))) {
3214 timetaken = jiffies - timetaken;
3215 dev_warn(&dd->pdev->dev,
3216 "Surprise removal detected at %u ms\n",
3217 jiffies_to_msecs(timetaken));
3218 rv = -ENODEV;
3219 goto out2 ;
3220 }
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003221 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag))) {
Asai Thambi S P45038362012-04-09 08:35:38 +02003222 timetaken = jiffies - timetaken;
3223 dev_warn(&dd->pdev->dev,
3224 "Removal detected at %u ms\n",
3225 jiffies_to_msecs(timetaken));
3226 rv = -EFAULT;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003227 goto out2;
3228 }
3229
Asai Thambi S P45038362012-04-09 08:35:38 +02003230 /* Conditionally reset the HBA. */
3231 if (!(readl(dd->mmio + HOST_CAP) & HOST_CAP_NZDMA)) {
3232 if (mtip_hba_reset(dd) < 0) {
3233 dev_err(&dd->pdev->dev,
3234 "Card did not reset within timeout\n");
3235 rv = -EIO;
3236 goto out2;
3237 }
3238 } else {
3239 /* Clear any pending interrupts on the HBA */
3240 writel(readl(dd->mmio + HOST_IRQ_STAT),
3241 dd->mmio + HOST_IRQ_STAT);
3242 }
3243
Sam Bradshaw88523a62011-08-30 08:34:26 -06003244 mtip_init_port(dd->port);
3245 mtip_start_port(dd->port);
3246
3247 /* Setup the ISR and enable interrupts. */
3248 rv = devm_request_irq(&dd->pdev->dev,
3249 dd->pdev->irq,
3250 mtip_irq_handler,
3251 IRQF_SHARED,
3252 dev_driver_string(&dd->pdev->dev),
3253 dd);
3254
3255 if (rv) {
3256 dev_err(&dd->pdev->dev,
3257 "Unable to allocate IRQ %d\n", dd->pdev->irq);
3258 goto out2;
3259 }
Asai Thambi S P16c906e52012-12-20 07:46:25 -08003260 irq_set_affinity_hint(dd->pdev->irq, get_cpu_mask(dd->isr_binding));
Sam Bradshaw88523a62011-08-30 08:34:26 -06003261
3262 /* Enable interrupts on the HBA. */
3263 writel(readl(dd->mmio + HOST_CTL) | HOST_IRQ_EN,
3264 dd->mmio + HOST_CTL);
3265
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003266 init_waitqueue_head(&dd->port->svc_wait);
3267
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003268 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag)) {
Asai Thambi S P45038362012-04-09 08:35:38 +02003269 rv = -EFAULT;
3270 goto out3;
3271 }
3272
Sam Bradshaw88523a62011-08-30 08:34:26 -06003273 return rv;
3274
3275out3:
Sam Bradshaw88523a62011-08-30 08:34:26 -06003276 /* Disable interrupts on the HBA. */
3277 writel(readl(dd->mmio + HOST_CTL) & ~HOST_IRQ_EN,
3278 dd->mmio + HOST_CTL);
3279
Asai Thambi S P16c906e52012-12-20 07:46:25 -08003280 /* Release the IRQ. */
3281 irq_set_affinity_hint(dd->pdev->irq, NULL);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003282 devm_free_irq(&dd->pdev->dev, dd->pdev->irq, dd);
3283
3284out2:
3285 mtip_deinit_port(dd->port);
Sam Bradshaw188b9f42014-01-15 10:14:57 -08003286 mtip_dma_free(dd);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003287
Sam Bradshaw88523a62011-08-30 08:34:26 -06003288out1:
3289 /* Free the memory allocated for the for structure. */
3290 kfree(dd->port);
3291
3292 return rv;
3293}
3294
Asai Thambi SPd8a18d22016-02-24 21:17:32 -08003295static int mtip_standby_drive(struct driver_data *dd)
Jens Axboeffc771b2014-05-09 09:42:02 -06003296{
Asai Thambi SPd8a18d22016-02-24 21:17:32 -08003297 int rv = 0;
Jens Axboeffc771b2014-05-09 09:42:02 -06003298
Asai Thambi SPd8a18d22016-02-24 21:17:32 -08003299 if (dd->sr || !dd->port)
3300 return -ENODEV;
Jens Axboeffc771b2014-05-09 09:42:02 -06003301 /*
3302 * Send standby immediate (E0h) to the drive so that it
3303 * saves its state.
3304 */
3305 if (!test_bit(MTIP_PF_REBUILD_BIT, &dd->port->flags) &&
Asai Thambi SPd8a18d22016-02-24 21:17:32 -08003306 !test_bit(MTIP_DDF_REBUILD_FAILED_BIT, &dd->dd_flag) &&
3307 !test_bit(MTIP_DDF_SEC_LOCK_BIT, &dd->dd_flag)) {
3308 rv = mtip_standby_immediate(dd->port);
3309 if (rv)
Jens Axboeffc771b2014-05-09 09:42:02 -06003310 dev_warn(&dd->pdev->dev,
3311 "STANDBY IMMEDIATE failed\n");
Asai Thambi SPd8a18d22016-02-24 21:17:32 -08003312 }
3313 return rv;
Jens Axboeffc771b2014-05-09 09:42:02 -06003314}
3315
Sam Bradshaw88523a62011-08-30 08:34:26 -06003316/*
3317 * Called to deinitialize an interface.
3318 *
3319 * @dd Pointer to the driver data structure.
3320 *
3321 * return value
3322 * 0
3323 */
Jens Axboe63166682011-09-27 21:27:43 -06003324static int mtip_hw_exit(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003325{
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06003326 if (!dd->sr) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06003327 /* de-initialize the port. */
3328 mtip_deinit_port(dd->port);
3329
3330 /* Disable interrupts on the HBA. */
3331 writel(readl(dd->mmio + HOST_CTL) & ~HOST_IRQ_EN,
3332 dd->mmio + HOST_CTL);
3333 }
3334
Sam Bradshaw88523a62011-08-30 08:34:26 -06003335 /* Release the IRQ. */
Asai Thambi S P16c906e52012-12-20 07:46:25 -08003336 irq_set_affinity_hint(dd->pdev->irq, NULL);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003337 devm_free_irq(&dd->pdev->dev, dd->pdev->irq, dd);
Asai Thambi SP2132a542015-05-11 15:53:18 -07003338 msleep(1000);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003339
Sam Bradshaw188b9f42014-01-15 10:14:57 -08003340 /* Free dma regions */
3341 mtip_dma_free(dd);
3342
Sam Bradshaw88523a62011-08-30 08:34:26 -06003343 /* Free the memory allocated for the for structure. */
3344 kfree(dd->port);
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06003345 dd->port = NULL;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003346
3347 return 0;
3348}
3349
3350/*
3351 * Issue a Standby Immediate command to the device.
3352 *
3353 * This function is called by the Block Layer just before the
3354 * system powers off during a shutdown.
3355 *
3356 * @dd Pointer to the driver data structure.
3357 *
3358 * return value
3359 * 0
3360 */
Jens Axboe63166682011-09-27 21:27:43 -06003361static int mtip_hw_shutdown(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003362{
3363 /*
3364 * Send standby immediate (E0h) to the drive so that it
3365 * saves its state.
3366 */
Asai Thambi SPd8a18d22016-02-24 21:17:32 -08003367 mtip_standby_drive(dd);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003368
3369 return 0;
3370}
3371
3372/*
3373 * Suspend function
3374 *
3375 * This function is called by the Block Layer just before the
3376 * system hibernates.
3377 *
3378 * @dd Pointer to the driver data structure.
3379 *
3380 * return value
3381 * 0 Suspend was successful
3382 * -EFAULT Suspend was not successful
3383 */
Jens Axboe63166682011-09-27 21:27:43 -06003384static int mtip_hw_suspend(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003385{
3386 /*
3387 * Send standby immediate (E0h) to the drive
3388 * so that it saves its state.
3389 */
Asai Thambi SPd8a18d22016-02-24 21:17:32 -08003390 if (mtip_standby_drive(dd) != 0) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06003391 dev_err(&dd->pdev->dev,
3392 "Failed standby-immediate command\n");
3393 return -EFAULT;
3394 }
3395
3396 /* Disable interrupts on the HBA.*/
3397 writel(readl(dd->mmio + HOST_CTL) & ~HOST_IRQ_EN,
3398 dd->mmio + HOST_CTL);
3399 mtip_deinit_port(dd->port);
3400
3401 return 0;
3402}
3403
3404/*
3405 * Resume function
3406 *
3407 * This function is called by the Block Layer as the
3408 * system resumes.
3409 *
3410 * @dd Pointer to the driver data structure.
3411 *
3412 * return value
3413 * 0 Resume was successful
3414 * -EFAULT Resume was not successful
3415 */
Jens Axboe63166682011-09-27 21:27:43 -06003416static int mtip_hw_resume(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003417{
3418 /* Perform any needed hardware setup steps */
3419 hba_setup(dd);
3420
3421 /* Reset the HBA */
3422 if (mtip_hba_reset(dd) != 0) {
3423 dev_err(&dd->pdev->dev,
3424 "Unable to reset the HBA\n");
3425 return -EFAULT;
3426 }
3427
3428 /*
3429 * Enable the port, DMA engine, and FIS reception specific
3430 * h/w in controller.
3431 */
3432 mtip_init_port(dd->port);
3433 mtip_start_port(dd->port);
3434
3435 /* Enable interrupts on the HBA.*/
3436 writel(readl(dd->mmio + HOST_CTL) | HOST_IRQ_EN,
3437 dd->mmio + HOST_CTL);
3438
3439 return 0;
3440}
3441
3442/*
Sam Bradshaw88523a62011-08-30 08:34:26 -06003443 * Helper function for reusing disk name
3444 * upon hot insertion.
3445 */
3446static int rssd_disk_name_format(char *prefix,
3447 int index,
3448 char *buf,
3449 int buflen)
3450{
3451 const int base = 'z' - 'a' + 1;
3452 char *begin = buf + strlen(prefix);
3453 char *end = buf + buflen;
3454 char *p;
3455 int unit;
3456
3457 p = end - 1;
3458 *p = '\0';
3459 unit = base;
3460 do {
3461 if (p == begin)
3462 return -EINVAL;
3463 *--p = 'a' + (index % unit);
3464 index = (index / unit) - 1;
3465 } while (index >= 0);
3466
3467 memmove(begin, p, end - p);
3468 memcpy(buf, prefix, strlen(prefix));
3469
3470 return 0;
3471}
3472
3473/*
3474 * Block layer IOCTL handler.
3475 *
3476 * @dev Pointer to the block_device structure.
3477 * @mode ignored
3478 * @cmd IOCTL command passed from the user application.
3479 * @arg Argument passed from the user application.
3480 *
3481 * return value
3482 * 0 IOCTL completed successfully.
3483 * -ENOTTY IOCTL not supported or invalid driver data
3484 * structure pointer.
3485 */
3486static int mtip_block_ioctl(struct block_device *dev,
3487 fmode_t mode,
3488 unsigned cmd,
3489 unsigned long arg)
3490{
3491 struct driver_data *dd = dev->bd_disk->private_data;
3492
3493 if (!capable(CAP_SYS_ADMIN))
3494 return -EACCES;
3495
3496 if (!dd)
3497 return -ENOTTY;
3498
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003499 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag)))
Asai Thambi S P45038362012-04-09 08:35:38 +02003500 return -ENOTTY;
3501
Sam Bradshaw88523a62011-08-30 08:34:26 -06003502 switch (cmd) {
3503 case BLKFLSBUF:
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003504 return -ENOTTY;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003505 default:
Jens Axboeef0f1582011-09-27 21:19:53 -06003506 return mtip_hw_ioctl(dd, cmd, arg);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003507 }
3508}
3509
Jens Axboe16d02c02011-09-27 15:50:01 -06003510#ifdef CONFIG_COMPAT
Sam Bradshaw88523a62011-08-30 08:34:26 -06003511/*
3512 * Block layer compat IOCTL handler.
3513 *
3514 * @dev Pointer to the block_device structure.
3515 * @mode ignored
3516 * @cmd IOCTL command passed from the user application.
3517 * @arg Argument passed from the user application.
3518 *
3519 * return value
3520 * 0 IOCTL completed successfully.
3521 * -ENOTTY IOCTL not supported or invalid driver data
3522 * structure pointer.
3523 */
3524static int mtip_block_compat_ioctl(struct block_device *dev,
3525 fmode_t mode,
3526 unsigned cmd,
3527 unsigned long arg)
3528{
3529 struct driver_data *dd = dev->bd_disk->private_data;
3530
3531 if (!capable(CAP_SYS_ADMIN))
3532 return -EACCES;
3533
3534 if (!dd)
3535 return -ENOTTY;
3536
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003537 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag)))
Asai Thambi S P45038362012-04-09 08:35:38 +02003538 return -ENOTTY;
3539
Sam Bradshaw88523a62011-08-30 08:34:26 -06003540 switch (cmd) {
3541 case BLKFLSBUF:
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003542 return -ENOTTY;
Jens Axboeef0f1582011-09-27 21:19:53 -06003543 case HDIO_DRIVE_TASKFILE: {
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003544 struct mtip_compat_ide_task_request_s __user *compat_req_task;
Jens Axboeef0f1582011-09-27 21:19:53 -06003545 ide_task_request_t req_task;
3546 int compat_tasksize, outtotal, ret;
3547
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003548 compat_tasksize =
3549 sizeof(struct mtip_compat_ide_task_request_s);
Jens Axboeef0f1582011-09-27 21:19:53 -06003550
3551 compat_req_task =
3552 (struct mtip_compat_ide_task_request_s __user *) arg;
3553
3554 if (copy_from_user(&req_task, (void __user *) arg,
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003555 compat_tasksize - (2 * sizeof(compat_long_t))))
Jens Axboeef0f1582011-09-27 21:19:53 -06003556 return -EFAULT;
3557
3558 if (get_user(req_task.out_size, &compat_req_task->out_size))
3559 return -EFAULT;
3560
3561 if (get_user(req_task.in_size, &compat_req_task->in_size))
3562 return -EFAULT;
3563
3564 outtotal = sizeof(struct mtip_compat_ide_task_request_s);
3565
3566 ret = exec_drive_taskfile(dd, (void __user *) arg,
3567 &req_task, outtotal);
3568
3569 if (copy_to_user((void __user *) arg, &req_task,
3570 compat_tasksize -
3571 (2 * sizeof(compat_long_t))))
3572 return -EFAULT;
3573
3574 if (put_user(req_task.out_size, &compat_req_task->out_size))
3575 return -EFAULT;
3576
3577 if (put_user(req_task.in_size, &compat_req_task->in_size))
3578 return -EFAULT;
3579
3580 return ret;
3581 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06003582 default:
Jens Axboeef0f1582011-09-27 21:19:53 -06003583 return mtip_hw_ioctl(dd, cmd, arg);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003584 }
3585}
Jens Axboe16d02c02011-09-27 15:50:01 -06003586#endif
Sam Bradshaw88523a62011-08-30 08:34:26 -06003587
3588/*
3589 * Obtain the geometry of the device.
3590 *
3591 * You may think that this function is obsolete, but some applications,
3592 * fdisk for example still used CHS values. This function describes the
3593 * device as having 224 heads and 56 sectors per cylinder. These values are
3594 * chosen so that each cylinder is aligned on a 4KB boundary. Since a
3595 * partition is described in terms of a start and end cylinder this means
3596 * that each partition is also 4KB aligned. Non-aligned partitions adversely
3597 * affects performance.
3598 *
3599 * @dev Pointer to the block_device strucutre.
3600 * @geo Pointer to a hd_geometry structure.
3601 *
3602 * return value
3603 * 0 Operation completed successfully.
3604 * -ENOTTY An error occurred while reading the drive capacity.
3605 */
3606static int mtip_block_getgeo(struct block_device *dev,
3607 struct hd_geometry *geo)
3608{
3609 struct driver_data *dd = dev->bd_disk->private_data;
3610 sector_t capacity;
3611
3612 if (!dd)
3613 return -ENOTTY;
3614
3615 if (!(mtip_hw_get_capacity(dd, &capacity))) {
3616 dev_warn(&dd->pdev->dev,
3617 "Could not get drive capacity.\n");
3618 return -ENOTTY;
3619 }
3620
3621 geo->heads = 224;
3622 geo->sectors = 56;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003623 sector_div(capacity, (geo->heads * geo->sectors));
Sam Bradshaw88523a62011-08-30 08:34:26 -06003624 geo->cylinders = capacity;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003625 return 0;
3626}
3627
Asai Thambi SP51c65702016-02-24 21:18:10 -08003628static int mtip_block_open(struct block_device *dev, fmode_t mode)
3629{
3630 struct driver_data *dd;
3631
3632 if (dev && dev->bd_disk) {
3633 dd = (struct driver_data *) dev->bd_disk->private_data;
3634
3635 if (dd) {
3636 if (test_bit(MTIP_DDF_REMOVAL_BIT,
3637 &dd->dd_flag)) {
3638 return -ENODEV;
3639 }
3640 return 0;
3641 }
3642 }
3643 return -ENODEV;
3644}
3645
Baoyou Xie99e6b872016-08-26 14:08:53 +08003646static void mtip_block_release(struct gendisk *disk, fmode_t mode)
Asai Thambi SP51c65702016-02-24 21:18:10 -08003647{
3648}
3649
Sam Bradshaw88523a62011-08-30 08:34:26 -06003650/*
3651 * Block device operation function.
3652 *
3653 * This structure contains pointers to the functions required by the block
3654 * layer.
3655 */
3656static const struct block_device_operations mtip_block_ops = {
Asai Thambi SP51c65702016-02-24 21:18:10 -08003657 .open = mtip_block_open,
3658 .release = mtip_block_release,
Sam Bradshaw88523a62011-08-30 08:34:26 -06003659 .ioctl = mtip_block_ioctl,
Jens Axboe16d02c02011-09-27 15:50:01 -06003660#ifdef CONFIG_COMPAT
Sam Bradshaw88523a62011-08-30 08:34:26 -06003661 .compat_ioctl = mtip_block_compat_ioctl,
Jens Axboe16d02c02011-09-27 15:50:01 -06003662#endif
Sam Bradshaw88523a62011-08-30 08:34:26 -06003663 .getgeo = mtip_block_getgeo,
3664 .owner = THIS_MODULE
3665};
3666
Asai Thambi SP686d8e02015-05-11 15:51:27 -07003667static inline bool is_se_active(struct driver_data *dd)
3668{
3669 if (unlikely(test_bit(MTIP_PF_SE_ACTIVE_BIT, &dd->port->flags))) {
3670 if (dd->port->ic_pause_timer) {
3671 unsigned long to = dd->port->ic_pause_timer +
3672 msecs_to_jiffies(1000);
3673 if (time_after(jiffies, to)) {
3674 clear_bit(MTIP_PF_SE_ACTIVE_BIT,
3675 &dd->port->flags);
3676 clear_bit(MTIP_DDF_SEC_LOCK_BIT, &dd->dd_flag);
3677 dd->port->ic_pause_timer = 0;
3678 wake_up_interruptible(&dd->port->svc_wait);
3679 return false;
3680 }
3681 }
3682 return true;
3683 }
3684 return false;
3685}
3686
Sam Bradshaw88523a62011-08-30 08:34:26 -06003687/*
3688 * Block layer make request function.
3689 *
3690 * This function is called by the kernel to process a BIO for
3691 * the P320 device.
3692 *
3693 * @queue Pointer to the request queue. Unused other than to obtain
3694 * the driver data structure.
Jens Axboeffc771b2014-05-09 09:42:02 -06003695 * @rq Pointer to the request.
Sam Bradshaw88523a62011-08-30 08:34:26 -06003696 *
Sam Bradshaw88523a62011-08-30 08:34:26 -06003697 */
Jens Axboeffc771b2014-05-09 09:42:02 -06003698static int mtip_submit_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003699{
Jens Axboeffc771b2014-05-09 09:42:02 -06003700 struct driver_data *dd = hctx->queue->queuedata;
3701 struct mtip_cmd *cmd = blk_mq_rq_to_pdu(rq);
3702 unsigned int nents;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003703
Asai Thambi SP686d8e02015-05-11 15:51:27 -07003704 if (is_se_active(dd))
3705 return -ENODATA;
3706
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02003707 if (unlikely(dd->dd_flag & MTIP_DDF_STOP_IO)) {
3708 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
3709 &dd->dd_flag))) {
Jens Axboeffc771b2014-05-09 09:42:02 -06003710 return -ENXIO;
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02003711 }
3712 if (unlikely(test_bit(MTIP_DDF_OVER_TEMP_BIT, &dd->dd_flag))) {
Jens Axboeffc771b2014-05-09 09:42:02 -06003713 return -ENODATA;
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02003714 }
3715 if (unlikely(test_bit(MTIP_DDF_WRITE_PROTECT_BIT,
3716 &dd->dd_flag) &&
Jens Axboeffc771b2014-05-09 09:42:02 -06003717 rq_data_dir(rq))) {
3718 return -ENODATA;
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02003719 }
Asai Thambi SPaae4a032016-02-24 21:18:20 -08003720 if (unlikely(test_bit(MTIP_DDF_SEC_LOCK_BIT, &dd->dd_flag) ||
3721 test_bit(MTIP_DDF_REBUILD_FAILED_BIT, &dd->dd_flag)))
Jens Axboeffc771b2014-05-09 09:42:02 -06003722 return -ENODATA;
Asai Thambi S P45038362012-04-09 08:35:38 +02003723 }
3724
Mike Christiec2df40d2016-06-05 14:32:17 -05003725 if (req_op(rq) == REQ_OP_DISCARD) {
Jens Axboeffc771b2014-05-09 09:42:02 -06003726 int err;
3727
3728 err = mtip_send_trim(dd, blk_rq_pos(rq), blk_rq_sectors(rq));
Christoph Hellwigc8a446a2014-09-13 16:40:10 -07003729 blk_mq_end_request(rq, err);
Jens Axboeffc771b2014-05-09 09:42:02 -06003730 return 0;
Asai Thambi S P15283462013-01-11 14:41:34 +01003731 }
3732
Jens Axboeffc771b2014-05-09 09:42:02 -06003733 /* Create the scatter list for this request. */
3734 nents = blk_rq_map_sg(hctx->queue, rq, cmd->sg);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003735
Jens Axboeffc771b2014-05-09 09:42:02 -06003736 /* Issue the read/write. */
3737 mtip_hw_submit_io(dd, rq, cmd, nents, hctx);
3738 return 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003739}
3740
Jens Axboeffc771b2014-05-09 09:42:02 -06003741static bool mtip_check_unal_depth(struct blk_mq_hw_ctx *hctx,
3742 struct request *rq)
3743{
3744 struct driver_data *dd = hctx->queue->queuedata;
3745 struct mtip_cmd *cmd = blk_mq_rq_to_pdu(rq);
3746
Sam Bradshawf45c40a2014-06-06 13:28:48 -06003747 if (rq_data_dir(rq) == READ || !dd->unal_qdepth)
Jens Axboeffc771b2014-05-09 09:42:02 -06003748 return false;
3749
3750 /*
3751 * If unaligned depth must be limited on this controller, mark it
3752 * as unaligned if the IO isn't on a 4k boundary (start of length).
3753 */
3754 if (blk_rq_sectors(rq) <= 64) {
3755 if ((blk_rq_pos(rq) & 7) || (blk_rq_sectors(rq) & 7))
3756 cmd->unaligned = 1;
3757 }
3758
3759 if (cmd->unaligned && down_trylock(&dd->port->cmd_slot_unal))
3760 return true;
3761
3762 return false;
3763}
3764
Jens Axboe74c45052014-10-29 11:14:52 -06003765static int mtip_queue_rq(struct blk_mq_hw_ctx *hctx,
3766 const struct blk_mq_queue_data *bd)
Jens Axboeffc771b2014-05-09 09:42:02 -06003767{
Jens Axboe74c45052014-10-29 11:14:52 -06003768 struct request *rq = bd->rq;
Jens Axboeffc771b2014-05-09 09:42:02 -06003769 int ret;
3770
Ming Leia4e84aa2017-04-27 07:45:18 -06003771 mtip_init_cmd_header(rq);
3772
Sam Bradshawf45c40a2014-06-06 13:28:48 -06003773 if (unlikely(mtip_check_unal_depth(hctx, rq)))
Jens Axboeffc771b2014-05-09 09:42:02 -06003774 return BLK_MQ_RQ_QUEUE_BUSY;
3775
Christoph Hellwige2490072014-09-13 16:40:09 -07003776 blk_mq_start_request(rq);
3777
Jens Axboeffc771b2014-05-09 09:42:02 -06003778 ret = mtip_submit_request(hctx, rq);
Sam Bradshawf45c40a2014-06-06 13:28:48 -06003779 if (likely(!ret))
Jens Axboeffc771b2014-05-09 09:42:02 -06003780 return BLK_MQ_RQ_QUEUE_OK;
3781
Jens Axboeffc771b2014-05-09 09:42:02 -06003782 return BLK_MQ_RQ_QUEUE_ERROR;
3783}
3784
3785static void mtip_free_cmd(void *data, struct request *rq,
3786 unsigned int hctx_idx, unsigned int request_idx)
3787{
3788 struct driver_data *dd = data;
3789 struct mtip_cmd *cmd = blk_mq_rq_to_pdu(rq);
3790
3791 if (!cmd->command)
3792 return;
3793
3794 dmam_free_coherent(&dd->pdev->dev, CMD_DMA_ALLOC_SZ,
3795 cmd->command, cmd->command_dma);
3796}
3797
3798static int mtip_init_cmd(void *data, struct request *rq, unsigned int hctx_idx,
3799 unsigned int request_idx, unsigned int numa_node)
3800{
3801 struct driver_data *dd = data;
3802 struct mtip_cmd *cmd = blk_mq_rq_to_pdu(rq);
Jens Axboeffc771b2014-05-09 09:42:02 -06003803
Jeff Moyer74c9c912015-07-29 10:22:50 -04003804 /*
3805 * For flush requests, request_idx starts at the end of the
3806 * tag space. Since we don't support FLUSH/FUA, simply return
3807 * 0 as there's nothing to be done.
3808 */
3809 if (request_idx >= MTIP_MAX_COMMAND_SLOTS)
3810 return 0;
3811
Jens Axboeffc771b2014-05-09 09:42:02 -06003812 cmd->command = dmam_alloc_coherent(&dd->pdev->dev, CMD_DMA_ALLOC_SZ,
3813 &cmd->command_dma, GFP_KERNEL);
3814 if (!cmd->command)
3815 return -ENOMEM;
3816
3817 memset(cmd->command, 0, CMD_DMA_ALLOC_SZ);
3818
Jens Axboeffc771b2014-05-09 09:42:02 -06003819 sg_init_table(cmd->sg, MTIP_MAX_SG);
3820 return 0;
3821}
3822
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08003823static enum blk_eh_timer_return mtip_cmd_timeout(struct request *req,
3824 bool reserved)
3825{
3826 struct driver_data *dd = req->q->queuedata;
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08003827
3828 if (reserved)
3829 goto exit_handler;
3830
3831 if (test_bit(req->tag, dd->port->cmds_to_issue))
3832 goto exit_handler;
3833
3834 if (test_and_set_bit(MTIP_PF_TO_ACTIVE_BIT, &dd->port->flags))
3835 goto exit_handler;
3836
3837 wake_up_interruptible(&dd->port->svc_wait);
3838exit_handler:
Jens Axboe90beb2e2016-03-04 08:15:48 -07003839 return BLK_EH_RESET_TIMER;
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08003840}
3841
Eric Biggersf363b082017-03-30 13:39:16 -07003842static const struct blk_mq_ops mtip_mq_ops = {
Jens Axboeffc771b2014-05-09 09:42:02 -06003843 .queue_rq = mtip_queue_rq,
Jens Axboeffc771b2014-05-09 09:42:02 -06003844 .init_request = mtip_init_cmd,
3845 .exit_request = mtip_free_cmd,
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08003846 .complete = mtip_softirq_done_fn,
3847 .timeout = mtip_cmd_timeout,
Jens Axboeffc771b2014-05-09 09:42:02 -06003848};
3849
Sam Bradshaw88523a62011-08-30 08:34:26 -06003850/*
3851 * Block layer initialization function.
3852 *
3853 * This function is called once by the PCI layer for each P320
3854 * device that is connected to the system.
3855 *
3856 * @dd Pointer to the driver data structure.
3857 *
3858 * return value
3859 * 0 on success else an error code.
3860 */
Jens Axboe63166682011-09-27 21:27:43 -06003861static int mtip_block_initialize(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003862{
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003863 int rv = 0, wait_for_rebuild = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003864 sector_t capacity;
3865 unsigned int index = 0;
3866 struct kobject *kobj;
3867
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003868 if (dd->disk)
3869 goto skip_create_disk; /* hw init done, before rebuild */
3870
Jens Axboeffc771b2014-05-09 09:42:02 -06003871 if (mtip_hw_init(dd)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06003872 rv = -EINVAL;
3873 goto protocol_init_error;
3874 }
3875
Asai Thambi S P16c906e52012-12-20 07:46:25 -08003876 dd->disk = alloc_disk_node(MTIP_MAX_MINORS, dd->numa_node);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003877 if (dd->disk == NULL) {
3878 dev_err(&dd->pdev->dev,
3879 "Unable to allocate gendisk structure\n");
3880 rv = -EINVAL;
3881 goto alloc_disk_error;
3882 }
3883
3884 /* Generate the disk name, implemented same as in sd.c */
3885 do {
Pan Bian5b0e34e2016-12-01 10:10:46 +08003886 if (!ida_pre_get(&rssd_index_ida, GFP_KERNEL)) {
3887 rv = -ENOMEM;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003888 goto ida_get_error;
Pan Bian5b0e34e2016-12-01 10:10:46 +08003889 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06003890
3891 spin_lock(&rssd_index_lock);
3892 rv = ida_get_new(&rssd_index_ida, &index);
3893 spin_unlock(&rssd_index_lock);
3894 } while (rv == -EAGAIN);
3895
3896 if (rv)
3897 goto ida_get_error;
3898
3899 rv = rssd_disk_name_format("rssd",
3900 index,
3901 dd->disk->disk_name,
3902 DISK_NAME_LEN);
3903 if (rv)
3904 goto disk_index_error;
3905
Sam Bradshaw88523a62011-08-30 08:34:26 -06003906 dd->disk->major = dd->major;
Asai Thambi SP75787262015-05-11 15:55:26 -07003907 dd->disk->first_minor = index * MTIP_MAX_MINORS;
3908 dd->disk->minors = MTIP_MAX_MINORS;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003909 dd->disk->fops = &mtip_block_ops;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003910 dd->disk->private_data = dd;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003911 dd->index = index;
3912
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06003913 mtip_hw_debugfs_init(dd);
3914
Jens Axboeffc771b2014-05-09 09:42:02 -06003915 memset(&dd->tags, 0, sizeof(dd->tags));
3916 dd->tags.ops = &mtip_mq_ops;
3917 dd->tags.nr_hw_queues = 1;
3918 dd->tags.queue_depth = MTIP_MAX_COMMAND_SLOTS;
3919 dd->tags.reserved_tags = 1;
3920 dd->tags.cmd_size = sizeof(struct mtip_cmd);
3921 dd->tags.numa_node = dd->numa_node;
Ming Lei4981d042017-04-15 20:38:23 +08003922 dd->tags.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_NO_SCHED;
Jens Axboeffc771b2014-05-09 09:42:02 -06003923 dd->tags.driver_data = dd;
Asai Thambi SPabb0ccd2016-02-24 21:21:13 -08003924 dd->tags.timeout = MTIP_NCQ_CMD_TIMEOUT_MS;
Jens Axboeffc771b2014-05-09 09:42:02 -06003925
3926 rv = blk_mq_alloc_tag_set(&dd->tags);
3927 if (rv) {
3928 dev_err(&dd->pdev->dev,
3929 "Unable to allocate request queue\n");
Asai Thambi SP008e56d2016-02-24 21:21:20 -08003930 goto block_queue_alloc_tag_error;
Jens Axboeffc771b2014-05-09 09:42:02 -06003931 }
3932
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003933 /* Allocate the request queue. */
Jens Axboeffc771b2014-05-09 09:42:02 -06003934 dd->queue = blk_mq_init_queue(&dd->tags);
Dan Carpentera8a642c2014-05-14 15:54:18 +03003935 if (IS_ERR(dd->queue)) {
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003936 dev_err(&dd->pdev->dev,
3937 "Unable to allocate request queue\n");
3938 rv = -ENOMEM;
3939 goto block_queue_alloc_init_error;
3940 }
3941
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003942 dd->disk->queue = dd->queue;
3943 dd->queue->queuedata = dd;
3944
Asai Thambi SP59cf70e2016-02-24 21:17:47 -08003945skip_create_disk:
Jens Axboeffc771b2014-05-09 09:42:02 -06003946 /* Initialize the protocol layer. */
3947 wait_for_rebuild = mtip_hw_get_identify(dd);
3948 if (wait_for_rebuild < 0) {
3949 dev_err(&dd->pdev->dev,
3950 "Protocol layer initialization failed\n");
3951 rv = -EINVAL;
3952 goto init_hw_cmds_error;
3953 }
3954
3955 /*
3956 * if rebuild pending, start the service thread, and delay the block
Dan Williams0d52c7562016-06-15 19:44:20 -07003957 * queue creation and device_add_disk()
Jens Axboeffc771b2014-05-09 09:42:02 -06003958 */
3959 if (wait_for_rebuild == MTIP_FTL_REBUILD_MAGIC)
3960 goto start_service_thread;
3961
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003962 /* Set device limits. */
3963 set_bit(QUEUE_FLAG_NONROT, &dd->queue->queue_flags);
Mike Snitzerb277da02014-10-04 10:55:32 -06003964 clear_bit(QUEUE_FLAG_ADD_RANDOM, &dd->queue->queue_flags);
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003965 blk_queue_max_segments(dd->queue, MTIP_MAX_SG);
3966 blk_queue_physical_block_size(dd->queue, 4096);
Asai Thambi S P6c8ab692012-05-29 18:42:51 -07003967 blk_queue_max_hw_sectors(dd->queue, 0xffff);
3968 blk_queue_max_segment_size(dd->queue, 0x400000);
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003969 blk_queue_io_min(dd->queue, 4096);
Felipe Franciosi1044b1b2014-03-13 14:34:20 +00003970 blk_queue_bounce_limit(dd->queue, dd->pdev->dma_mask);
Asai Thambi S P6c8ab692012-05-29 18:42:51 -07003971
Asai Thambi S P15283462013-01-11 14:41:34 +01003972 /* Signal trim support */
3973 if (dd->trim_supp == true) {
3974 set_bit(QUEUE_FLAG_DISCARD, &dd->queue->queue_flags);
3975 dd->queue->limits.discard_granularity = 4096;
3976 blk_queue_max_discard_sectors(dd->queue,
3977 MTIP_MAX_TRIM_ENTRY_LEN * MTIP_MAX_TRIM_ENTRIES);
Asai Thambi S P15283462013-01-11 14:41:34 +01003978 }
3979
Sam Bradshaw88523a62011-08-30 08:34:26 -06003980 /* Set the capacity of the device in 512 byte sectors. */
3981 if (!(mtip_hw_get_capacity(dd, &capacity))) {
3982 dev_warn(&dd->pdev->dev,
3983 "Could not read drive capacity\n");
3984 rv = -EIO;
3985 goto read_capacity_error;
3986 }
3987 set_capacity(dd->disk, capacity);
3988
3989 /* Enable the block device and add it to /dev */
Dan Williams0d52c7562016-06-15 19:44:20 -07003990 device_add_disk(&dd->pdev->dev, dd->disk);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003991
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06003992 dd->bdev = bdget_disk(dd->disk, 0);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003993 /*
3994 * Now that the disk is active, initialize any sysfs attributes
3995 * managed by the protocol layer.
3996 */
3997 kobj = kobject_get(&disk_to_dev(dd->disk)->kobj);
3998 if (kobj) {
3999 mtip_hw_sysfs_init(dd, kobj);
4000 kobject_put(kobj);
4001 }
4002
Asai Thambi S P45038362012-04-09 08:35:38 +02004003 if (dd->mtip_svc_handler) {
Asai Thambi S P8a857a82012-04-09 08:35:38 +02004004 set_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag);
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01004005 return rv; /* service thread created for handling rebuild */
Asai Thambi S P45038362012-04-09 08:35:38 +02004006 }
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01004007
4008start_service_thread:
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004009 dd->mtip_svc_handler = kthread_create_on_node(mtip_service_thread,
Rasmus Villemoes8aeea032015-11-20 10:46:49 +01004010 dd, dd->numa_node,
4011 "mtip_svc_thd_%02d", index);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01004012
4013 if (IS_ERR(dd->mtip_svc_handler)) {
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02004014 dev_err(&dd->pdev->dev, "service thread failed to start\n");
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01004015 dd->mtip_svc_handler = NULL;
4016 rv = -EFAULT;
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01004017 goto kthread_run_error;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01004018 }
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004019 wake_up_process(dd->mtip_svc_handler);
Asai Thambi S P45038362012-04-09 08:35:38 +02004020 if (wait_for_rebuild == MTIP_FTL_REBUILD_MAGIC)
4021 rv = wait_for_rebuild;
4022
Sam Bradshaw88523a62011-08-30 08:34:26 -06004023 return rv;
4024
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01004025kthread_run_error:
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06004026 bdput(dd->bdev);
4027 dd->bdev = NULL;
Asai Thambi S P7b421d22012-06-04 12:44:02 -07004028
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01004029 /* Delete our gendisk. This also removes the device from /dev */
Sam Bradshaw88523a62011-08-30 08:34:26 -06004030 del_gendisk(dd->disk);
4031
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01004032read_capacity_error:
Jens Axboeffc771b2014-05-09 09:42:02 -06004033init_hw_cmds_error:
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01004034 blk_cleanup_queue(dd->queue);
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01004035block_queue_alloc_init_error:
Asai Thambi SP008e56d2016-02-24 21:21:20 -08004036 blk_mq_free_tag_set(&dd->tags);
4037block_queue_alloc_tag_error:
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06004038 mtip_hw_debugfs_exit(dd);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004039disk_index_error:
4040 spin_lock(&rssd_index_lock);
4041 ida_remove(&rssd_index_ida, index);
4042 spin_unlock(&rssd_index_lock);
4043
4044ida_get_error:
4045 put_disk(dd->disk);
4046
4047alloc_disk_error:
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01004048 mtip_hw_exit(dd); /* De-initialize the protocol layer. */
Sam Bradshaw88523a62011-08-30 08:34:26 -06004049
4050protocol_init_error:
4051 return rv;
4052}
4053
Asai Thambi SP008e56d2016-02-24 21:21:20 -08004054static void mtip_no_dev_cleanup(struct request *rq, void *data, bool reserv)
4055{
4056 struct driver_data *dd = (struct driver_data *)data;
4057 struct mtip_cmd *cmd;
4058
Christoph Hellwig4dda4732017-04-20 16:03:07 +02004059 if (likely(!reserv)) {
Jens Axboe95c55ff2017-04-21 08:46:44 -06004060 cmd = blk_mq_rq_to_pdu(rq);
Christoph Hellwig4dda4732017-04-20 16:03:07 +02004061 cmd->status = -ENODEV;
Christoph Hellwig08e00292017-04-20 16:03:09 +02004062 blk_mq_complete_request(rq);
Christoph Hellwig4dda4732017-04-20 16:03:07 +02004063 } else if (test_bit(MTIP_PF_IC_ACTIVE_BIT, &dd->port->flags)) {
Asai Thambi SP008e56d2016-02-24 21:21:20 -08004064
4065 cmd = mtip_cmd_from_tag(dd, MTIP_TAG_INTERNAL);
4066 if (cmd->comp_func)
4067 cmd->comp_func(dd->port, MTIP_TAG_INTERNAL,
4068 cmd, -ENODEV);
4069 }
4070}
4071
Sam Bradshaw88523a62011-08-30 08:34:26 -06004072/*
4073 * Block layer deinitialization function.
4074 *
4075 * Called by the PCI layer as each P320 device is removed.
4076 *
4077 * @dd Pointer to the driver data structure.
4078 *
4079 * return value
4080 * 0
4081 */
Jens Axboe63166682011-09-27 21:27:43 -06004082static int mtip_block_remove(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06004083{
4084 struct kobject *kobj;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01004085
Asai Thambi SP2132a542015-05-11 15:53:18 -07004086 mtip_hw_debugfs_exit(dd);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01004087
Asai Thambi SP2132a542015-05-11 15:53:18 -07004088 if (dd->mtip_svc_handler) {
4089 set_bit(MTIP_PF_SVC_THD_STOP_BIT, &dd->port->flags);
4090 wake_up_interruptible(&dd->port->svc_wait);
4091 kthread_stop(dd->mtip_svc_handler);
4092 }
4093
4094 /* Clean up the sysfs attributes, if created */
4095 if (test_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag)) {
4096 kobj = kobject_get(&disk_to_dev(dd->disk)->kobj);
4097 if (kobj) {
4098 mtip_hw_sysfs_exit(dd, kobj);
4099 kobject_put(kobj);
Asai Thambi S P45038362012-04-09 08:35:38 +02004100 }
Asai Thambi SP2132a542015-05-11 15:53:18 -07004101 }
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06004102
Asai Thambi SP008e56d2016-02-24 21:21:20 -08004103 if (!dd->sr) {
4104 /*
4105 * Explicitly wait here for IOs to quiesce,
4106 * as mtip_standby_drive usually won't wait for IOs.
4107 */
Jens Axboe8afdd942017-04-27 16:32:41 -06004108 if (!mtip_quiesce_io(dd->port, MTIP_QUIESCE_IO_TIMEOUT_MS))
Asai Thambi SP008e56d2016-02-24 21:21:20 -08004109 mtip_standby_drive(dd);
4110 }
Asai Thambi SP2132a542015-05-11 15:53:18 -07004111 else
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06004112 dev_info(&dd->pdev->dev, "device %s surprise removal\n",
4113 dd->disk->disk_name);
Asai Thambi SP2132a542015-05-11 15:53:18 -07004114
Ming Lei1671d522017-03-27 20:06:57 +08004115 blk_freeze_queue_start(dd->queue);
Asai Thambi SP008e56d2016-02-24 21:21:20 -08004116 blk_mq_stop_hw_queues(dd->queue);
Keith Busch6d125de2016-03-10 13:58:48 +02004117 blk_mq_tagset_busy_iter(&dd->tags, mtip_no_dev_cleanup, dd);
Asai Thambi SP008e56d2016-02-24 21:21:20 -08004118
Asai Thambi SP2132a542015-05-11 15:53:18 -07004119 /*
4120 * Delete our gendisk structure. This also removes the device
4121 * from /dev
4122 */
4123 if (dd->bdev) {
4124 bdput(dd->bdev);
4125 dd->bdev = NULL;
Sam Bradshaw88523a62011-08-30 08:34:26 -06004126 }
Asai Thambi SP2132a542015-05-11 15:53:18 -07004127 if (dd->disk) {
Asai Thambi SP59cf70e2016-02-24 21:17:47 -08004128 if (test_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag))
4129 del_gendisk(dd->disk);
Asai Thambi SP2132a542015-05-11 15:53:18 -07004130 if (dd->disk->queue) {
4131 blk_cleanup_queue(dd->queue);
4132 blk_mq_free_tag_set(&dd->tags);
4133 dd->queue = NULL;
4134 }
4135 put_disk(dd->disk);
4136 }
4137 dd->disk = NULL;
4138
4139 spin_lock(&rssd_index_lock);
4140 ida_remove(&rssd_index_ida, dd->index);
4141 spin_unlock(&rssd_index_lock);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004142
4143 /* De-initialize the protocol layer. */
4144 mtip_hw_exit(dd);
4145
4146 return 0;
4147}
4148
4149/*
4150 * Function called by the PCI layer when just before the
4151 * machine shuts down.
4152 *
4153 * If a protocol layer shutdown function is present it will be called
4154 * by this function.
4155 *
4156 * @dd Pointer to the driver data structure.
4157 *
4158 * return value
4159 * 0
4160 */
Jens Axboe63166682011-09-27 21:27:43 -06004161static int mtip_block_shutdown(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06004162{
Jens Axboeffc771b2014-05-09 09:42:02 -06004163 mtip_hw_shutdown(dd);
4164
Sam Bradshaw88523a62011-08-30 08:34:26 -06004165 /* Delete our gendisk structure, and cleanup the blk queue. */
Asai Thambi S P58c49df2013-01-11 18:47:12 +05304166 if (dd->disk) {
Asai Thambi S P5a79e1a2013-04-12 23:57:17 +05304167 dev_info(&dd->pdev->dev,
4168 "Shutting down %s ...\n", dd->disk->disk_name);
Asai Thambi S P58c49df2013-01-11 18:47:12 +05304169
Asai Thambi SP59cf70e2016-02-24 21:17:47 -08004170 if (test_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag))
4171 del_gendisk(dd->disk);
Asai Thambi S P5a79e1a2013-04-12 23:57:17 +05304172 if (dd->disk->queue) {
Asai Thambi S P5a79e1a2013-04-12 23:57:17 +05304173 blk_cleanup_queue(dd->queue);
Jens Axboeffc771b2014-05-09 09:42:02 -06004174 blk_mq_free_tag_set(&dd->tags);
Asai Thambi SP02b48262015-05-11 15:48:00 -07004175 }
4176 put_disk(dd->disk);
Asai Thambi S P5a79e1a2013-04-12 23:57:17 +05304177 dd->disk = NULL;
4178 dd->queue = NULL;
4179 }
Asai Thambi S P8182b492012-04-09 08:35:38 +02004180
4181 spin_lock(&rssd_index_lock);
4182 ida_remove(&rssd_index_ida, dd->index);
4183 spin_unlock(&rssd_index_lock);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004184 return 0;
4185}
4186
Jens Axboe63166682011-09-27 21:27:43 -06004187static int mtip_block_suspend(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06004188{
4189 dev_info(&dd->pdev->dev,
4190 "Suspending %s ...\n", dd->disk->disk_name);
4191 mtip_hw_suspend(dd);
4192 return 0;
4193}
4194
Jens Axboe63166682011-09-27 21:27:43 -06004195static int mtip_block_resume(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06004196{
4197 dev_info(&dd->pdev->dev, "Resuming %s ...\n",
4198 dd->disk->disk_name);
4199 mtip_hw_resume(dd);
4200 return 0;
4201}
4202
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004203static void drop_cpu(int cpu)
4204{
4205 cpu_use[cpu]--;
4206}
4207
4208static int get_least_used_cpu_on_node(int node)
4209{
4210 int cpu, least_used_cpu, least_cnt;
4211 const struct cpumask *node_mask;
4212
4213 node_mask = cpumask_of_node(node);
4214 least_used_cpu = cpumask_first(node_mask);
4215 least_cnt = cpu_use[least_used_cpu];
4216 cpu = least_used_cpu;
4217
4218 for_each_cpu(cpu, node_mask) {
4219 if (cpu_use[cpu] < least_cnt) {
4220 least_used_cpu = cpu;
4221 least_cnt = cpu_use[cpu];
4222 }
4223 }
4224 cpu_use[least_used_cpu]++;
4225 return least_used_cpu;
4226}
4227
4228/* Helper for selecting a node in round robin mode */
4229static inline int mtip_get_next_rr_node(void)
4230{
4231 static int next_node = -1;
4232
4233 if (next_node == -1) {
4234 next_node = first_online_node;
4235 return next_node;
4236 }
4237
4238 next_node = next_online_node(next_node);
4239 if (next_node == MAX_NUMNODES)
4240 next_node = first_online_node;
4241 return next_node;
4242}
4243
Fengguang Wu25bac122013-01-12 15:31:40 +08004244static DEFINE_HANDLER(0);
4245static DEFINE_HANDLER(1);
4246static DEFINE_HANDLER(2);
4247static DEFINE_HANDLER(3);
4248static DEFINE_HANDLER(4);
4249static DEFINE_HANDLER(5);
4250static DEFINE_HANDLER(6);
4251static DEFINE_HANDLER(7);
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004252
Asai Thambi S Pd1e714d2014-03-13 18:45:15 -07004253static void mtip_disable_link_opts(struct driver_data *dd, struct pci_dev *pdev)
4254{
4255 int pos;
4256 unsigned short pcie_dev_ctrl;
4257
4258 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
4259 if (pos) {
4260 pci_read_config_word(pdev,
4261 pos + PCI_EXP_DEVCTL,
4262 &pcie_dev_ctrl);
4263 if (pcie_dev_ctrl & (1 << 11) ||
4264 pcie_dev_ctrl & (1 << 4)) {
4265 dev_info(&dd->pdev->dev,
4266 "Disabling ERO/No-Snoop on bridge device %04x:%04x\n",
4267 pdev->vendor, pdev->device);
4268 pcie_dev_ctrl &= ~(PCI_EXP_DEVCTL_NOSNOOP_EN |
4269 PCI_EXP_DEVCTL_RELAX_EN);
4270 pci_write_config_word(pdev,
4271 pos + PCI_EXP_DEVCTL,
4272 pcie_dev_ctrl);
4273 }
4274 }
4275}
4276
4277static void mtip_fix_ero_nosnoop(struct driver_data *dd, struct pci_dev *pdev)
4278{
4279 /*
4280 * This workaround is specific to AMD/ATI chipset with a PCI upstream
4281 * device with device id 0x5aXX
4282 */
4283 if (pdev->bus && pdev->bus->self) {
4284 if (pdev->bus->self->vendor == PCI_VENDOR_ID_ATI &&
4285 ((pdev->bus->self->device & 0xff00) == 0x5a00)) {
4286 mtip_disable_link_opts(dd, pdev->bus->self);
4287 } else {
4288 /* Check further up the topology */
4289 struct pci_dev *parent_dev = pdev->bus->self;
4290 if (parent_dev->bus &&
4291 parent_dev->bus->parent &&
4292 parent_dev->bus->parent->self &&
4293 parent_dev->bus->parent->self->vendor ==
4294 PCI_VENDOR_ID_ATI &&
4295 (parent_dev->bus->parent->self->device &
4296 0xff00) == 0x5a00) {
4297 mtip_disable_link_opts(dd,
4298 parent_dev->bus->parent->self);
4299 }
4300 }
4301 }
4302}
4303
Sam Bradshaw88523a62011-08-30 08:34:26 -06004304/*
4305 * Called for each supported PCI device detected.
4306 *
4307 * This function allocates the private data structure, enables the
4308 * PCI device and then calls the block layer initialization function.
4309 *
4310 * return value
4311 * 0 on success else an error code.
4312 */
4313static int mtip_pci_probe(struct pci_dev *pdev,
4314 const struct pci_device_id *ent)
4315{
4316 int rv = 0;
4317 struct driver_data *dd = NULL;
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004318 char cpu_list[256];
4319 const struct cpumask *node_mask;
4320 int cpu, i = 0, j = 0;
4321 int my_node = NUMA_NO_NODE;
Asai Thambi S P0caff002013-04-03 19:56:21 +05304322 unsigned long flags;
Sam Bradshaw88523a62011-08-30 08:34:26 -06004323
4324 /* Allocate memory for this devices private data. */
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004325 my_node = pcibus_to_node(pdev->bus);
4326 if (my_node != NUMA_NO_NODE) {
4327 if (!node_online(my_node))
4328 my_node = mtip_get_next_rr_node();
4329 } else {
4330 dev_info(&pdev->dev, "Kernel not reporting proximity, choosing a node\n");
4331 my_node = mtip_get_next_rr_node();
4332 }
4333 dev_info(&pdev->dev, "NUMA node %d (closest: %d,%d, probe on %d:%d)\n",
4334 my_node, pcibus_to_node(pdev->bus), dev_to_node(&pdev->dev),
Jens Axboe7f328902014-03-10 14:29:37 -06004335 cpu_to_node(raw_smp_processor_id()), raw_smp_processor_id());
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004336
4337 dd = kzalloc_node(sizeof(struct driver_data), GFP_KERNEL, my_node);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004338 if (dd == NULL) {
4339 dev_err(&pdev->dev,
4340 "Unable to allocate memory for driver data\n");
4341 return -ENOMEM;
4342 }
4343
Sam Bradshaw88523a62011-08-30 08:34:26 -06004344 /* Attach the private data to this PCI device. */
4345 pci_set_drvdata(pdev, dd);
4346
4347 rv = pcim_enable_device(pdev);
4348 if (rv < 0) {
4349 dev_err(&pdev->dev, "Unable to enable device\n");
4350 goto iomap_err;
4351 }
4352
4353 /* Map BAR5 to memory. */
4354 rv = pcim_iomap_regions(pdev, 1 << MTIP_ABAR, MTIP_DRV_NAME);
4355 if (rv < 0) {
4356 dev_err(&pdev->dev, "Unable to map regions\n");
4357 goto iomap_err;
4358 }
4359
4360 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
4361 rv = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
4362
4363 if (rv) {
4364 rv = pci_set_consistent_dma_mask(pdev,
4365 DMA_BIT_MASK(32));
4366 if (rv) {
4367 dev_warn(&pdev->dev,
4368 "64-bit DMA enable failed\n");
4369 goto setmask_err;
4370 }
4371 }
4372 }
4373
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004374 /* Copy the info we may need later into the private data structure. */
4375 dd->major = mtip_major;
4376 dd->instance = instance;
4377 dd->pdev = pdev;
4378 dd->numa_node = my_node;
Sam Bradshaw88523a62011-08-30 08:34:26 -06004379
Asai Thambi S P0caff002013-04-03 19:56:21 +05304380 INIT_LIST_HEAD(&dd->online_list);
4381 INIT_LIST_HEAD(&dd->remove_list);
4382
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004383 memset(dd->workq_name, 0, 32);
4384 snprintf(dd->workq_name, 31, "mtipq%d", dd->instance);
4385
4386 dd->isr_workq = create_workqueue(dd->workq_name);
4387 if (!dd->isr_workq) {
4388 dev_warn(&pdev->dev, "Can't create wq %d\n", dd->instance);
Wei Yongjund137c832013-03-22 08:58:23 -06004389 rv = -ENOMEM;
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004390 goto block_initialize_err;
4391 }
4392
4393 memset(cpu_list, 0, sizeof(cpu_list));
4394
4395 node_mask = cpumask_of_node(dd->numa_node);
4396 if (!cpumask_empty(node_mask)) {
4397 for_each_cpu(cpu, node_mask)
4398 {
4399 snprintf(&cpu_list[j], 256 - j, "%d ", cpu);
4400 j = strlen(cpu_list);
4401 }
4402
4403 dev_info(&pdev->dev, "Node %d on package %d has %d cpu(s): %s\n",
4404 dd->numa_node,
4405 topology_physical_package_id(cpumask_first(node_mask)),
4406 nr_cpus_node(dd->numa_node),
4407 cpu_list);
4408 } else
4409 dev_dbg(&pdev->dev, "mtip32xx: node_mask empty\n");
4410
4411 dd->isr_binding = get_least_used_cpu_on_node(dd->numa_node);
4412 dev_info(&pdev->dev, "Initial IRQ binding node:cpu %d:%d\n",
4413 cpu_to_node(dd->isr_binding), dd->isr_binding);
4414
4415 /* first worker context always runs in ISR */
4416 dd->work[0].cpu_binding = dd->isr_binding;
4417 dd->work[1].cpu_binding = get_least_used_cpu_on_node(dd->numa_node);
4418 dd->work[2].cpu_binding = get_least_used_cpu_on_node(dd->numa_node);
4419 dd->work[3].cpu_binding = dd->work[0].cpu_binding;
4420 dd->work[4].cpu_binding = dd->work[1].cpu_binding;
4421 dd->work[5].cpu_binding = dd->work[2].cpu_binding;
4422 dd->work[6].cpu_binding = dd->work[2].cpu_binding;
4423 dd->work[7].cpu_binding = dd->work[1].cpu_binding;
4424
4425 /* Log the bindings */
4426 for_each_present_cpu(cpu) {
4427 memset(cpu_list, 0, sizeof(cpu_list));
4428 for (i = 0, j = 0; i < MTIP_MAX_SLOT_GROUPS; i++) {
4429 if (dd->work[i].cpu_binding == cpu) {
4430 snprintf(&cpu_list[j], 256 - j, "%d ", i);
4431 j = strlen(cpu_list);
4432 }
4433 }
4434 if (j)
4435 dev_info(&pdev->dev, "CPU %d: WQs %s\n", cpu, cpu_list);
4436 }
4437
4438 INIT_WORK(&dd->work[0].work, mtip_workq_sdbf0);
4439 INIT_WORK(&dd->work[1].work, mtip_workq_sdbf1);
4440 INIT_WORK(&dd->work[2].work, mtip_workq_sdbf2);
4441 INIT_WORK(&dd->work[3].work, mtip_workq_sdbf3);
4442 INIT_WORK(&dd->work[4].work, mtip_workq_sdbf4);
4443 INIT_WORK(&dd->work[5].work, mtip_workq_sdbf5);
4444 INIT_WORK(&dd->work[6].work, mtip_workq_sdbf6);
4445 INIT_WORK(&dd->work[7].work, mtip_workq_sdbf7);
4446
4447 pci_set_master(pdev);
Wei Yongjund137c832013-03-22 08:58:23 -06004448 rv = pci_enable_msi(pdev);
4449 if (rv) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06004450 dev_warn(&pdev->dev,
4451 "Unable to enable MSI interrupt.\n");
Alexander Gordeevcf91f392014-02-19 09:58:15 +01004452 goto msi_initialize_err;
Sam Bradshaw88523a62011-08-30 08:34:26 -06004453 }
4454
Asai Thambi S Pd1e714d2014-03-13 18:45:15 -07004455 mtip_fix_ero_nosnoop(dd, pdev);
4456
Sam Bradshaw88523a62011-08-30 08:34:26 -06004457 /* Initialize the block layer. */
4458 rv = mtip_block_initialize(dd);
4459 if (rv < 0) {
4460 dev_err(&pdev->dev,
4461 "Unable to initialize block layer\n");
4462 goto block_initialize_err;
4463 }
4464
4465 /*
4466 * Increment the instance count so that each device has a unique
4467 * instance number.
4468 */
4469 instance++;
Asai Thambi S P45038362012-04-09 08:35:38 +02004470 if (rv != MTIP_FTL_REBUILD_MAGIC)
Asai Thambi S P8a857a82012-04-09 08:35:38 +02004471 set_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag);
Asai Thambi S P6b06d352013-04-03 19:54:35 +05304472 else
4473 rv = 0; /* device in rebuild state, return 0 from probe */
Asai Thambi S P0caff002013-04-03 19:56:21 +05304474
4475 /* Add to online list even if in ftl rebuild */
4476 spin_lock_irqsave(&dev_lock, flags);
4477 list_add(&dd->online_list, &online_list);
4478 spin_unlock_irqrestore(&dev_lock, flags);
4479
Sam Bradshaw88523a62011-08-30 08:34:26 -06004480 goto done;
4481
4482block_initialize_err:
4483 pci_disable_msi(pdev);
Alexander Gordeevcf91f392014-02-19 09:58:15 +01004484
4485msi_initialize_err:
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004486 if (dd->isr_workq) {
4487 flush_workqueue(dd->isr_workq);
4488 destroy_workqueue(dd->isr_workq);
4489 drop_cpu(dd->work[0].cpu_binding);
4490 drop_cpu(dd->work[1].cpu_binding);
4491 drop_cpu(dd->work[2].cpu_binding);
4492 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06004493setmask_err:
4494 pcim_iounmap_regions(pdev, 1 << MTIP_ABAR);
4495
4496iomap_err:
4497 kfree(dd);
4498 pci_set_drvdata(pdev, NULL);
4499 return rv;
4500done:
Sam Bradshaw88523a62011-08-30 08:34:26 -06004501 return rv;
4502}
4503
4504/*
4505 * Called for each probed device when the device is removed or the
4506 * driver is unloaded.
4507 *
4508 * return value
4509 * None
4510 */
4511static void mtip_pci_remove(struct pci_dev *pdev)
4512{
4513 struct driver_data *dd = pci_get_drvdata(pdev);
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06004514 unsigned long flags, to;
Sam Bradshaw88523a62011-08-30 08:34:26 -06004515
Asai Thambi SP51c65702016-02-24 21:18:10 -08004516 set_bit(MTIP_DDF_REMOVAL_BIT, &dd->dd_flag);
Asai Thambi S P45038362012-04-09 08:35:38 +02004517
Asai Thambi S P0caff002013-04-03 19:56:21 +05304518 spin_lock_irqsave(&dev_lock, flags);
4519 list_del_init(&dd->online_list);
4520 list_add(&dd->remove_list, &removing_list);
4521 spin_unlock_irqrestore(&dev_lock, flags);
4522
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06004523 mtip_check_surprise_removal(pdev);
4524 synchronize_irq(dd->pdev->irq);
4525
4526 /* Spin until workers are done */
4527 to = jiffies + msecs_to_jiffies(4000);
4528 do {
4529 msleep(20);
4530 } while (atomic_read(&dd->irq_workers_active) != 0 &&
4531 time_before(jiffies, to));
4532
Asai Thambi SP008e56d2016-02-24 21:21:20 -08004533 if (!dd->sr)
4534 fsync_bdev(dd->bdev);
Asai Thambi SP51c65702016-02-24 21:18:10 -08004535
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06004536 if (atomic_read(&dd->irq_workers_active) != 0) {
4537 dev_warn(&dd->pdev->dev,
4538 "Completion workers still active!\n");
Sam Bradshaw88523a62011-08-30 08:34:26 -06004539 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06004540
Asai Thambi SP008e56d2016-02-24 21:21:20 -08004541 blk_set_queue_dying(dd->queue);
Asai Thambi SP51c65702016-02-24 21:18:10 -08004542 set_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag);
4543
Sam Bradshaw88523a62011-08-30 08:34:26 -06004544 /* Clean up the block layer. */
4545 mtip_block_remove(dd);
4546
Asai Thambi S P16c906e52012-12-20 07:46:25 -08004547 if (dd->isr_workq) {
4548 flush_workqueue(dd->isr_workq);
4549 destroy_workqueue(dd->isr_workq);
4550 drop_cpu(dd->work[0].cpu_binding);
4551 drop_cpu(dd->work[1].cpu_binding);
4552 drop_cpu(dd->work[2].cpu_binding);
4553 }
4554
Sam Bradshaw88523a62011-08-30 08:34:26 -06004555 pci_disable_msi(pdev);
4556
Asai Thambi S P0caff002013-04-03 19:56:21 +05304557 spin_lock_irqsave(&dev_lock, flags);
4558 list_del_init(&dd->remove_list);
4559 spin_unlock_irqrestore(&dev_lock, flags);
4560
Asai Thambi SP2132a542015-05-11 15:53:18 -07004561 kfree(dd);
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06004562
Sam Bradshaw88523a62011-08-30 08:34:26 -06004563 pcim_iounmap_regions(pdev, 1 << MTIP_ABAR);
Asai Thambi S P8f8b8992013-09-11 13:14:42 -06004564 pci_set_drvdata(pdev, NULL);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004565}
4566
4567/*
4568 * Called for each probed device when the device is suspended.
4569 *
4570 * return value
4571 * 0 Success
4572 * <0 Error
4573 */
4574static int mtip_pci_suspend(struct pci_dev *pdev, pm_message_t mesg)
4575{
4576 int rv = 0;
4577 struct driver_data *dd = pci_get_drvdata(pdev);
4578
4579 if (!dd) {
4580 dev_err(&pdev->dev,
4581 "Driver private datastructure is NULL\n");
4582 return -EFAULT;
4583 }
4584
Asai Thambi S P8a857a82012-04-09 08:35:38 +02004585 set_bit(MTIP_DDF_RESUME_BIT, &dd->dd_flag);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004586
4587 /* Disable ports & interrupts then send standby immediate */
4588 rv = mtip_block_suspend(dd);
4589 if (rv < 0) {
4590 dev_err(&pdev->dev,
4591 "Failed to suspend controller\n");
4592 return rv;
4593 }
4594
4595 /*
4596 * Save the pci config space to pdev structure &
4597 * disable the device
4598 */
4599 pci_save_state(pdev);
4600 pci_disable_device(pdev);
4601
4602 /* Move to Low power state*/
4603 pci_set_power_state(pdev, PCI_D3hot);
4604
4605 return rv;
4606}
4607
4608/*
4609 * Called for each probed device when the device is resumed.
4610 *
4611 * return value
4612 * 0 Success
4613 * <0 Error
4614 */
4615static int mtip_pci_resume(struct pci_dev *pdev)
4616{
4617 int rv = 0;
4618 struct driver_data *dd;
4619
4620 dd = pci_get_drvdata(pdev);
4621 if (!dd) {
4622 dev_err(&pdev->dev,
4623 "Driver private datastructure is NULL\n");
4624 return -EFAULT;
4625 }
4626
4627 /* Move the device to active State */
4628 pci_set_power_state(pdev, PCI_D0);
4629
4630 /* Restore PCI configuration space */
4631 pci_restore_state(pdev);
4632
4633 /* Enable the PCI device*/
4634 rv = pcim_enable_device(pdev);
4635 if (rv < 0) {
4636 dev_err(&pdev->dev,
4637 "Failed to enable card during resume\n");
4638 goto err;
4639 }
4640 pci_set_master(pdev);
4641
4642 /*
4643 * Calls hbaReset, initPort, & startPort function
4644 * then enables interrupts
4645 */
4646 rv = mtip_block_resume(dd);
4647 if (rv < 0)
4648 dev_err(&pdev->dev, "Unable to resume\n");
4649
4650err:
Asai Thambi S P8a857a82012-04-09 08:35:38 +02004651 clear_bit(MTIP_DDF_RESUME_BIT, &dd->dd_flag);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004652
4653 return rv;
4654}
4655
4656/*
4657 * Shutdown routine
4658 *
4659 * return value
4660 * None
4661 */
4662static void mtip_pci_shutdown(struct pci_dev *pdev)
4663{
4664 struct driver_data *dd = pci_get_drvdata(pdev);
4665 if (dd)
4666 mtip_block_shutdown(dd);
4667}
4668
Sam Bradshaw88523a62011-08-30 08:34:26 -06004669/* Table of device ids supported by this driver. */
Benoit Taine9baa3c32014-08-08 15:56:03 +02004670static const struct pci_device_id mtip_pci_tbl[] = {
Asai Thambi S P1a131452012-09-05 22:00:38 +05304671 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P320H_DEVICE_ID) },
4672 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P320M_DEVICE_ID) },
4673 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P320S_DEVICE_ID) },
4674 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P325M_DEVICE_ID) },
4675 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P420H_DEVICE_ID) },
4676 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P420M_DEVICE_ID) },
4677 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P425M_DEVICE_ID) },
Sam Bradshaw88523a62011-08-30 08:34:26 -06004678 { 0 }
4679};
4680
4681/* Structure that describes the PCI driver functions. */
Jens Axboe3ff147d2011-09-27 21:33:53 -06004682static struct pci_driver mtip_pci_driver = {
Sam Bradshaw88523a62011-08-30 08:34:26 -06004683 .name = MTIP_DRV_NAME,
4684 .id_table = mtip_pci_tbl,
4685 .probe = mtip_pci_probe,
4686 .remove = mtip_pci_remove,
4687 .suspend = mtip_pci_suspend,
4688 .resume = mtip_pci_resume,
4689 .shutdown = mtip_pci_shutdown,
4690};
4691
4692MODULE_DEVICE_TABLE(pci, mtip_pci_tbl);
4693
4694/*
4695 * Module initialization function.
4696 *
4697 * Called once when the module is loaded. This function allocates a major
4698 * block device number to the Cyclone devices and registers the PCI layer
4699 * of the driver.
4700 *
4701 * Return value
4702 * 0 on success else error code.
4703 */
4704static int __init mtip_init(void)
4705{
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004706 int error;
4707
Asai Thambi S P45422e72012-09-05 22:03:56 +05304708 pr_info(MTIP_DRV_NAME " Version " MTIP_DRV_VERSION "\n");
Sam Bradshaw88523a62011-08-30 08:34:26 -06004709
Asai Thambi S P0caff002013-04-03 19:56:21 +05304710 spin_lock_init(&dev_lock);
4711
4712 INIT_LIST_HEAD(&online_list);
4713 INIT_LIST_HEAD(&removing_list);
4714
Sam Bradshaw88523a62011-08-30 08:34:26 -06004715 /* Allocate a major block device number to use with this driver. */
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004716 error = register_blkdev(0, MTIP_DRV_NAME);
4717 if (error <= 0) {
Asai Thambi S P45422e72012-09-05 22:03:56 +05304718 pr_err("Unable to register block device (%d)\n",
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004719 error);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004720 return -EBUSY;
4721 }
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004722 mtip_major = error;
Sam Bradshaw88523a62011-08-30 08:34:26 -06004723
Asai Thambi S P0caff002013-04-03 19:56:21 +05304724 dfs_parent = debugfs_create_dir("rssd", NULL);
4725 if (IS_ERR_OR_NULL(dfs_parent)) {
4726 pr_warn("Error creating debugfs parent\n");
4727 dfs_parent = NULL;
4728 }
4729 if (dfs_parent) {
4730 dfs_device_status = debugfs_create_file("device_status",
4731 S_IRUGO, dfs_parent, NULL,
4732 &mtip_device_status_fops);
4733 if (IS_ERR_OR_NULL(dfs_device_status)) {
4734 pr_err("Error creating device_status node\n");
4735 dfs_device_status = NULL;
Asai Thambi S P7b421d22012-06-04 12:44:02 -07004736 }
4737 }
4738
Sam Bradshaw88523a62011-08-30 08:34:26 -06004739 /* Register our PCI operations. */
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004740 error = pci_register_driver(&mtip_pci_driver);
Asai Thambi S P7b421d22012-06-04 12:44:02 -07004741 if (error) {
4742 debugfs_remove(dfs_parent);
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004743 unregister_blkdev(mtip_major, MTIP_DRV_NAME);
Asai Thambi S P7b421d22012-06-04 12:44:02 -07004744 }
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004745
4746 return error;
Sam Bradshaw88523a62011-08-30 08:34:26 -06004747}
4748
4749/*
4750 * Module de-initialization function.
4751 *
4752 * Called once when the module is unloaded. This function deallocates
4753 * the major block device number allocated by mtip_init() and
4754 * unregisters the PCI layer of the driver.
4755 *
4756 * Return value
4757 * none
4758 */
4759static void __exit mtip_exit(void)
4760{
Sam Bradshaw88523a62011-08-30 08:34:26 -06004761 /* Release the allocated major block device number. */
4762 unregister_blkdev(mtip_major, MTIP_DRV_NAME);
4763
4764 /* Unregister the PCI driver. */
4765 pci_unregister_driver(&mtip_pci_driver);
Asai Thambi S Paf5ded82014-04-16 20:30:16 -07004766
4767 debugfs_remove_recursive(dfs_parent);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004768}
4769
4770MODULE_AUTHOR("Micron Technology, Inc");
4771MODULE_DESCRIPTION("Micron RealSSD PCIe Block Driver");
4772MODULE_LICENSE("GPL");
4773MODULE_VERSION(MTIP_DRV_VERSION);
4774
4775module_init(mtip_init);
4776module_exit(mtip_exit);