blob: df46b5a3f56fdc59507911c60b918d2609c24b8a [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>
34#include <linux/bio.h>
35#include <linux/dma-mapping.h>
36#include <linux/idr.h>
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +010037#include <linux/kthread.h>
Sam Bradshaw88523a62011-08-30 08:34:26 -060038#include <../drivers/ata/ahci.h>
Asai Thambi S P45038362012-04-09 08:35:38 +020039#include <linux/export.h>
Asai Thambi S P7b421d22012-06-04 12:44:02 -070040#include <linux/debugfs.h>
Sam Bradshaw88523a62011-08-30 08:34:26 -060041#include "mtip32xx.h"
42
43#define HW_CMD_SLOT_SZ (MTIP_MAX_COMMAND_SLOTS * 32)
44#define HW_CMD_TBL_SZ (AHCI_CMD_TBL_HDR_SZ + (MTIP_MAX_SG * 16))
45#define HW_CMD_TBL_AR_SZ (HW_CMD_TBL_SZ * MTIP_MAX_COMMAND_SLOTS)
46#define HW_PORT_PRIV_DMA_SZ \
47 (HW_CMD_SLOT_SZ + HW_CMD_TBL_AR_SZ + AHCI_RX_FIS_SZ)
48
Asai Thambi S P45038362012-04-09 08:35:38 +020049#define HOST_CAP_NZDMA (1 << 19)
Sam Bradshaw88523a62011-08-30 08:34:26 -060050#define HOST_HSORG 0xFC
51#define HSORG_DISABLE_SLOTGRP_INTR (1<<24)
52#define HSORG_DISABLE_SLOTGRP_PXIS (1<<16)
53#define HSORG_HWREV 0xFF00
54#define HSORG_STYLE 0x8
55#define HSORG_SLOTGROUPS 0x7
56
57#define PORT_COMMAND_ISSUE 0x38
58#define PORT_SDBV 0x7C
59
60#define PORT_OFFSET 0x100
61#define PORT_MEM_SIZE 0x80
62
63#define PORT_IRQ_ERR \
64 (PORT_IRQ_HBUS_ERR | PORT_IRQ_IF_ERR | PORT_IRQ_CONNECT | \
65 PORT_IRQ_PHYRDY | PORT_IRQ_UNK_FIS | PORT_IRQ_BAD_PMP | \
66 PORT_IRQ_TF_ERR | PORT_IRQ_HBUS_DATA_ERR | PORT_IRQ_IF_NONFATAL | \
67 PORT_IRQ_OVERFLOW)
68#define PORT_IRQ_LEGACY \
69 (PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS)
70#define PORT_IRQ_HANDLED \
71 (PORT_IRQ_SDB_FIS | PORT_IRQ_LEGACY | \
72 PORT_IRQ_TF_ERR | PORT_IRQ_IF_ERR | \
73 PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)
74#define DEF_PORT_IRQ \
75 (PORT_IRQ_ERR | PORT_IRQ_LEGACY | PORT_IRQ_SDB_FIS)
76
77/* product numbers */
78#define MTIP_PRODUCT_UNKNOWN 0x00
79#define MTIP_PRODUCT_ASICFPGA 0x11
80
81/* Device instance number, incremented each time a device is probed. */
82static int instance;
83
84/*
85 * Global variable used to hold the major block device number
86 * allocated in mtip_init().
87 */
Jens Axboe3ff147d2011-09-27 21:33:53 -060088static int mtip_major;
Asai Thambi S P7b421d22012-06-04 12:44:02 -070089static struct dentry *dfs_parent;
Sam Bradshaw88523a62011-08-30 08:34:26 -060090
91static DEFINE_SPINLOCK(rssd_index_lock);
92static DEFINE_IDA(rssd_index_ida);
93
Asai Thambi S P62ee8c12012-01-04 22:01:32 +010094static int mtip_block_initialize(struct driver_data *dd);
95
Jens Axboe16d02c02011-09-27 15:50:01 -060096#ifdef CONFIG_COMPAT
Sam Bradshaw88523a62011-08-30 08:34:26 -060097struct mtip_compat_ide_task_request_s {
98 __u8 io_ports[8];
99 __u8 hob_ports[8];
100 ide_reg_valid_t out_flags;
101 ide_reg_valid_t in_flags;
102 int data_phase;
103 int req_cmd;
104 compat_ulong_t out_size;
105 compat_ulong_t in_size;
106};
Jens Axboe16d02c02011-09-27 15:50:01 -0600107#endif
Sam Bradshaw88523a62011-08-30 08:34:26 -0600108
Sam Bradshaw88523a62011-08-30 08:34:26 -0600109/*
Jens Axboe63166682011-09-27 21:27:43 -0600110 * This function check_for_surprise_removal is called
111 * while card is removed from the system and it will
112 * read the vendor id from the configration space
113 *
114 * @pdev Pointer to the pci_dev structure.
115 *
116 * return value
117 * true if device removed, else false
118 */
119static bool mtip_check_surprise_removal(struct pci_dev *pdev)
120{
121 u16 vendor_id = 0;
122
123 /* Read the vendorID from the configuration space */
124 pci_read_config_word(pdev, 0x00, &vendor_id);
125 if (vendor_id == 0xFFFF)
126 return true; /* device removed */
127
128 return false; /* device present */
129}
130
131/*
132 * This function is called for clean the pending command in the
133 * command slot during the surprise removal of device and return
134 * error to the upper layer.
135 *
136 * @dd Pointer to the DRIVER_DATA structure.
137 *
138 * return value
139 * None
140 */
141static void mtip_command_cleanup(struct driver_data *dd)
142{
143 int group = 0, commandslot = 0, commandindex = 0;
144 struct mtip_cmd *command;
145 struct mtip_port *port = dd->port;
Asai Thambi S P45038362012-04-09 08:35:38 +0200146 static int in_progress;
147
148 if (in_progress)
149 return;
150
151 in_progress = 1;
Jens Axboe63166682011-09-27 21:27:43 -0600152
153 for (group = 0; group < 4; group++) {
154 for (commandslot = 0; commandslot < 32; commandslot++) {
155 if (!(port->allocated[group] & (1 << commandslot)))
156 continue;
157
158 commandindex = group << 5 | commandslot;
159 command = &port->commands[commandindex];
160
161 if (atomic_read(&command->active)
162 && (command->async_callback)) {
163 command->async_callback(command->async_data,
164 -ENODEV);
165 command->async_callback = NULL;
166 command->async_data = NULL;
167 }
168
169 dma_unmap_sg(&port->dd->pdev->dev,
170 command->sg,
171 command->scatter_ents,
172 command->direction);
173 }
174 }
175
176 up(&port->cmd_slot);
177
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200178 set_bit(MTIP_DDF_CLEANUP_BIT, &dd->dd_flag);
Asai Thambi S P45038362012-04-09 08:35:38 +0200179 in_progress = 0;
Jens Axboe63166682011-09-27 21:27:43 -0600180}
181
182/*
Sam Bradshaw88523a62011-08-30 08:34:26 -0600183 * Obtain an empty command slot.
184 *
185 * This function needs to be reentrant since it could be called
186 * at the same time on multiple CPUs. The allocation of the
187 * command slot must be atomic.
188 *
189 * @port Pointer to the port data structure.
190 *
191 * return value
192 * >= 0 Index of command slot obtained.
193 * -1 No command slots available.
194 */
195static int get_slot(struct mtip_port *port)
196{
197 int slot, i;
198 unsigned int num_command_slots = port->dd->slot_groups * 32;
199
200 /*
201 * Try 10 times, because there is a small race here.
202 * that's ok, because it's still cheaper than a lock.
203 *
204 * Race: Since this section is not protected by lock, same bit
205 * could be chosen by different process contexts running in
206 * different processor. So instead of costly lock, we are going
207 * with loop.
208 */
209 for (i = 0; i < 10; i++) {
210 slot = find_next_zero_bit(port->allocated,
211 num_command_slots, 1);
212 if ((slot < num_command_slots) &&
213 (!test_and_set_bit(slot, port->allocated)))
214 return slot;
215 }
216 dev_warn(&port->dd->pdev->dev, "Failed to get a tag.\n");
217
218 if (mtip_check_surprise_removal(port->dd->pdev)) {
219 /* Device not present, clean outstanding commands */
220 mtip_command_cleanup(port->dd);
221 }
222 return -1;
223}
224
225/*
226 * Release a command slot.
227 *
228 * @port Pointer to the port data structure.
229 * @tag Tag of command to release
230 *
231 * return value
232 * None
233 */
234static inline void release_slot(struct mtip_port *port, int tag)
235{
236 smp_mb__before_clear_bit();
237 clear_bit(tag, port->allocated);
238 smp_mb__after_clear_bit();
239}
240
241/*
Jens Axboe63166682011-09-27 21:27:43 -0600242 * Reset the HBA (without sleeping)
243 *
244 * Just like hba_reset, except does not call sleep, so can be
245 * run from interrupt/tasklet context.
246 *
247 * @dd Pointer to the driver data structure.
248 *
249 * return value
250 * 0 The reset was successful.
251 * -1 The HBA Reset bit did not clear.
252 */
253static int hba_reset_nosleep(struct driver_data *dd)
254{
255 unsigned long timeout;
256
257 /* Chip quirk: quiesce any chip function */
258 mdelay(10);
259
260 /* Set the reset bit */
261 writel(HOST_RESET, dd->mmio + HOST_CTL);
262
263 /* Flush */
264 readl(dd->mmio + HOST_CTL);
265
266 /*
267 * Wait 10ms then spin for up to 1 second
268 * waiting for reset acknowledgement
269 */
270 timeout = jiffies + msecs_to_jiffies(1000);
271 mdelay(10);
272 while ((readl(dd->mmio + HOST_CTL) & HOST_RESET)
273 && time_before(jiffies, timeout))
274 mdelay(1);
275
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200276 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag))
Asai Thambi S P45038362012-04-09 08:35:38 +0200277 return -1;
278
Jens Axboe63166682011-09-27 21:27:43 -0600279 if (readl(dd->mmio + HOST_CTL) & HOST_RESET)
280 return -1;
281
282 return 0;
283}
284
285/*
Sam Bradshaw88523a62011-08-30 08:34:26 -0600286 * Issue a command to the hardware.
287 *
288 * Set the appropriate bit in the s_active and Command Issue hardware
289 * registers, causing hardware command processing to begin.
290 *
291 * @port Pointer to the port structure.
292 * @tag The tag of the command to be issued.
293 *
294 * return value
295 * None
296 */
297static inline void mtip_issue_ncq_command(struct mtip_port *port, int tag)
298{
Sam Bradshaw88523a62011-08-30 08:34:26 -0600299 atomic_set(&port->commands[tag].active, 1);
300
Asai Thambi S P0a07ab22012-05-29 18:43:16 -0700301 spin_lock(&port->cmd_issue_lock);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600302
303 writel((1 << MTIP_TAG_BIT(tag)),
304 port->s_active[MTIP_TAG_INDEX(tag)]);
305 writel((1 << MTIP_TAG_BIT(tag)),
306 port->cmd_issue[MTIP_TAG_INDEX(tag)]);
307
Asai Thambi S P0a07ab22012-05-29 18:43:16 -0700308 spin_unlock(&port->cmd_issue_lock);
Asai Thambi S Pdad40f12012-04-09 08:35:38 +0200309
310 /* Set the command's timeout value.*/
311 port->commands[tag].comp_time = jiffies + msecs_to_jiffies(
312 MTIP_NCQ_COMMAND_TIMEOUT_MS);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600313}
314
315/*
Jens Axboe63166682011-09-27 21:27:43 -0600316 * Enable/disable the reception of FIS
317 *
318 * @port Pointer to the port data structure
319 * @enable 1 to enable, 0 to disable
320 *
321 * return value
322 * Previous state: 1 enabled, 0 disabled
323 */
324static int mtip_enable_fis(struct mtip_port *port, int enable)
325{
326 u32 tmp;
327
328 /* enable FIS reception */
329 tmp = readl(port->mmio + PORT_CMD);
330 if (enable)
331 writel(tmp | PORT_CMD_FIS_RX, port->mmio + PORT_CMD);
332 else
333 writel(tmp & ~PORT_CMD_FIS_RX, port->mmio + PORT_CMD);
334
335 /* Flush */
336 readl(port->mmio + PORT_CMD);
337
338 return (((tmp & PORT_CMD_FIS_RX) == PORT_CMD_FIS_RX));
339}
340
341/*
342 * Enable/disable the DMA engine
343 *
344 * @port Pointer to the port data structure
345 * @enable 1 to enable, 0 to disable
346 *
347 * return value
348 * Previous state: 1 enabled, 0 disabled.
349 */
350static int mtip_enable_engine(struct mtip_port *port, int enable)
351{
352 u32 tmp;
353
354 /* enable FIS reception */
355 tmp = readl(port->mmio + PORT_CMD);
356 if (enable)
357 writel(tmp | PORT_CMD_START, port->mmio + PORT_CMD);
358 else
359 writel(tmp & ~PORT_CMD_START, port->mmio + PORT_CMD);
360
361 readl(port->mmio + PORT_CMD);
362 return (((tmp & PORT_CMD_START) == PORT_CMD_START));
363}
364
365/*
366 * Enables the port DMA engine and FIS reception.
367 *
368 * return value
369 * None
370 */
371static inline void mtip_start_port(struct mtip_port *port)
372{
373 /* Enable FIS reception */
374 mtip_enable_fis(port, 1);
375
376 /* Enable the DMA engine */
377 mtip_enable_engine(port, 1);
378}
379
380/*
381 * Deinitialize a port by disabling port interrupts, the DMA engine,
382 * and FIS reception.
383 *
384 * @port Pointer to the port structure
385 *
386 * return value
387 * None
388 */
389static inline void mtip_deinit_port(struct mtip_port *port)
390{
391 /* Disable interrupts on this port */
392 writel(0, port->mmio + PORT_IRQ_MASK);
393
394 /* Disable the DMA engine */
395 mtip_enable_engine(port, 0);
396
397 /* Disable FIS reception */
398 mtip_enable_fis(port, 0);
399}
400
401/*
402 * Initialize a port.
403 *
404 * This function deinitializes the port by calling mtip_deinit_port() and
405 * then initializes it by setting the command header and RX FIS addresses,
406 * clearing the SError register and any pending port interrupts before
407 * re-enabling the default set of port interrupts.
408 *
409 * @port Pointer to the port structure.
410 *
411 * return value
412 * None
413 */
414static void mtip_init_port(struct mtip_port *port)
415{
416 int i;
417 mtip_deinit_port(port);
418
419 /* Program the command list base and FIS base addresses */
420 if (readl(port->dd->mmio + HOST_CAP) & HOST_CAP_64) {
421 writel((port->command_list_dma >> 16) >> 16,
422 port->mmio + PORT_LST_ADDR_HI);
423 writel((port->rxfis_dma >> 16) >> 16,
424 port->mmio + PORT_FIS_ADDR_HI);
425 }
426
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +0100427 writel(port->command_list_dma & 0xFFFFFFFF,
Jens Axboe63166682011-09-27 21:27:43 -0600428 port->mmio + PORT_LST_ADDR);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +0100429 writel(port->rxfis_dma & 0xFFFFFFFF, port->mmio + PORT_FIS_ADDR);
Jens Axboe63166682011-09-27 21:27:43 -0600430
431 /* Clear SError */
432 writel(readl(port->mmio + PORT_SCR_ERR), port->mmio + PORT_SCR_ERR);
433
434 /* reset the completed registers.*/
435 for (i = 0; i < port->dd->slot_groups; i++)
436 writel(0xFFFFFFFF, port->completed[i]);
437
438 /* Clear any pending interrupts for this port */
Asai Thambi S P6bb688c2012-05-29 18:40:45 -0700439 writel(readl(port->mmio + PORT_IRQ_STAT), port->mmio + PORT_IRQ_STAT);
Jens Axboe63166682011-09-27 21:27:43 -0600440
Asai Thambi S P22be2e62012-03-23 12:33:03 +0100441 /* Clear any pending interrupts on the HBA. */
442 writel(readl(port->dd->mmio + HOST_IRQ_STAT),
443 port->dd->mmio + HOST_IRQ_STAT);
444
Jens Axboe63166682011-09-27 21:27:43 -0600445 /* Enable port interrupts */
446 writel(DEF_PORT_IRQ, port->mmio + PORT_IRQ_MASK);
447}
448
449/*
450 * Restart a port
451 *
452 * @port Pointer to the port data structure.
453 *
454 * return value
455 * None
456 */
457static void mtip_restart_port(struct mtip_port *port)
458{
459 unsigned long timeout;
460
461 /* Disable the DMA engine */
462 mtip_enable_engine(port, 0);
463
464 /* Chip quirk: wait up to 500ms for PxCMD.CR == 0 */
465 timeout = jiffies + msecs_to_jiffies(500);
466 while ((readl(port->mmio + PORT_CMD) & PORT_CMD_LIST_ON)
467 && time_before(jiffies, timeout))
468 ;
469
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200470 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &port->dd->dd_flag))
Asai Thambi S P45038362012-04-09 08:35:38 +0200471 return;
472
Jens Axboe63166682011-09-27 21:27:43 -0600473 /*
474 * Chip quirk: escalate to hba reset if
475 * PxCMD.CR not clear after 500 ms
476 */
477 if (readl(port->mmio + PORT_CMD) & PORT_CMD_LIST_ON) {
478 dev_warn(&port->dd->pdev->dev,
479 "PxCMD.CR not clear, escalating reset\n");
480
481 if (hba_reset_nosleep(port->dd))
482 dev_err(&port->dd->pdev->dev,
483 "HBA reset escalation failed.\n");
484
485 /* 30 ms delay before com reset to quiesce chip */
486 mdelay(30);
487 }
488
489 dev_warn(&port->dd->pdev->dev, "Issuing COM reset\n");
490
491 /* Set PxSCTL.DET */
492 writel(readl(port->mmio + PORT_SCR_CTL) |
493 1, port->mmio + PORT_SCR_CTL);
494 readl(port->mmio + PORT_SCR_CTL);
495
496 /* Wait 1 ms to quiesce chip function */
497 timeout = jiffies + msecs_to_jiffies(1);
498 while (time_before(jiffies, timeout))
499 ;
500
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200501 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &port->dd->dd_flag))
Asai Thambi S P45038362012-04-09 08:35:38 +0200502 return;
503
Jens Axboe63166682011-09-27 21:27:43 -0600504 /* Clear PxSCTL.DET */
505 writel(readl(port->mmio + PORT_SCR_CTL) & ~1,
506 port->mmio + PORT_SCR_CTL);
507 readl(port->mmio + PORT_SCR_CTL);
508
509 /* Wait 500 ms for bit 0 of PORT_SCR_STS to be set */
510 timeout = jiffies + msecs_to_jiffies(500);
511 while (((readl(port->mmio + PORT_SCR_STAT) & 0x01) == 0)
512 && time_before(jiffies, timeout))
513 ;
514
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200515 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &port->dd->dd_flag))
Asai Thambi S P45038362012-04-09 08:35:38 +0200516 return;
517
Jens Axboe63166682011-09-27 21:27:43 -0600518 if ((readl(port->mmio + PORT_SCR_STAT) & 0x01) == 0)
519 dev_warn(&port->dd->pdev->dev,
520 "COM reset failed\n");
521
Asai Thambi S P22be2e62012-03-23 12:33:03 +0100522 mtip_init_port(port);
523 mtip_start_port(port);
Jens Axboe63166682011-09-27 21:27:43 -0600524
Jens Axboe63166682011-09-27 21:27:43 -0600525}
526
527/*
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200528 * Helper function for tag logging
529 */
530static void print_tags(struct driver_data *dd,
531 char *msg,
532 unsigned long *tagbits,
533 int cnt)
534{
535 unsigned char tagmap[128];
536 int group, tagmap_len = 0;
537
538 memset(tagmap, 0, sizeof(tagmap));
539 for (group = SLOTBITS_IN_LONGS; group > 0; group--)
540 tagmap_len = sprintf(tagmap + tagmap_len, "%016lX ",
541 tagbits[group-1]);
542 dev_warn(&dd->pdev->dev,
543 "%d command(s) %s: tagmap [%s]", cnt, msg, tagmap);
544}
545
546/*
Sam Bradshaw88523a62011-08-30 08:34:26 -0600547 * Called periodically to see if any read/write commands are
548 * taking too long to complete.
549 *
550 * @data Pointer to the PORT data structure.
551 *
552 * return value
553 * None
554 */
Jens Axboe63166682011-09-27 21:27:43 -0600555static void mtip_timeout_function(unsigned long int data)
Sam Bradshaw88523a62011-08-30 08:34:26 -0600556{
557 struct mtip_port *port = (struct mtip_port *) data;
558 struct host_to_dev_fis *fis;
559 struct mtip_cmd *command;
560 int tag, cmdto_cnt = 0;
561 unsigned int bit, group;
562 unsigned int num_command_slots = port->dd->slot_groups * 32;
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200563 unsigned long to, tagaccum[SLOTBITS_IN_LONGS];
Sam Bradshaw88523a62011-08-30 08:34:26 -0600564
565 if (unlikely(!port))
566 return;
567
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200568 if (test_bit(MTIP_DDF_RESUME_BIT, &port->dd->dd_flag)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -0600569 mod_timer(&port->cmd_timer,
570 jiffies + msecs_to_jiffies(30000));
571 return;
572 }
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200573 /* clear the tag accumulator */
574 memset(tagaccum, 0, SLOTBITS_IN_LONGS * sizeof(long));
Sam Bradshaw88523a62011-08-30 08:34:26 -0600575
576 for (tag = 0; tag < num_command_slots; tag++) {
577 /*
578 * Skip internal command slot as it has
579 * its own timeout mechanism
580 */
581 if (tag == MTIP_TAG_INTERNAL)
582 continue;
583
584 if (atomic_read(&port->commands[tag].active) &&
585 (time_after(jiffies, port->commands[tag].comp_time))) {
586 group = tag >> 5;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +0100587 bit = tag & 0x1F;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600588
589 command = &port->commands[tag];
590 fis = (struct host_to_dev_fis *) command->command;
591
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200592 set_bit(tag, tagaccum);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600593 cmdto_cnt++;
594 if (cmdto_cnt == 1)
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200595 set_bit(MTIP_PF_EH_ACTIVE_BIT, &port->flags);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600596
597 /*
598 * Clear the completed bit. This should prevent
599 * any interrupt handlers from trying to retire
600 * the command.
601 */
602 writel(1 << bit, port->completed[group]);
603
604 /* Call the async completion callback. */
605 if (likely(command->async_callback))
606 command->async_callback(command->async_data,
607 -EIO);
608 command->async_callback = NULL;
609 command->comp_func = NULL;
610
611 /* Unmap the DMA scatter list entries */
612 dma_unmap_sg(&port->dd->pdev->dev,
613 command->sg,
614 command->scatter_ents,
615 command->direction);
616
617 /*
618 * Clear the allocated bit and active tag for the
619 * command.
620 */
621 atomic_set(&port->commands[tag].active, 0);
622 release_slot(port, tag);
623
624 up(&port->cmd_slot);
625 }
626 }
627
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +0200628 if (cmdto_cnt && !test_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags)) {
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200629 print_tags(port->dd, "timed out", tagaccum, cmdto_cnt);
630
Sam Bradshaw88523a62011-08-30 08:34:26 -0600631 mtip_restart_port(port);
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200632 clear_bit(MTIP_PF_EH_ACTIVE_BIT, &port->flags);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +0100633 wake_up_interruptible(&port->svc_wait);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600634 }
635
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +0200636 if (port->ic_pause_timer) {
637 to = port->ic_pause_timer + msecs_to_jiffies(1000);
638 if (time_after(jiffies, to)) {
639 if (!test_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags)) {
640 port->ic_pause_timer = 0;
641 clear_bit(MTIP_PF_SE_ACTIVE_BIT, &port->flags);
642 clear_bit(MTIP_PF_DM_ACTIVE_BIT, &port->flags);
643 clear_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags);
644 wake_up_interruptible(&port->svc_wait);
645 }
646
647
648 }
649 }
650
Sam Bradshaw88523a62011-08-30 08:34:26 -0600651 /* Restart the timer */
652 mod_timer(&port->cmd_timer,
653 jiffies + msecs_to_jiffies(MTIP_TIMEOUT_CHECK_PERIOD));
654}
655
656/*
657 * IO completion function.
658 *
659 * This completion function is called by the driver ISR when a
660 * command that was issued by the kernel completes. It first calls the
661 * asynchronous completion function which normally calls back into the block
662 * layer passing the asynchronous callback data, then unmaps the
663 * scatter list associated with the completed command, and finally
664 * clears the allocated bit associated with the completed command.
665 *
666 * @port Pointer to the port data structure.
667 * @tag Tag of the command.
668 * @data Pointer to driver_data.
669 * @status Completion status.
670 *
671 * return value
672 * None
673 */
674static void mtip_async_complete(struct mtip_port *port,
675 int tag,
676 void *data,
677 int status)
678{
679 struct mtip_cmd *command;
680 struct driver_data *dd = data;
681 int cb_status = status ? -EIO : 0;
682
683 if (unlikely(!dd) || unlikely(!port))
684 return;
685
686 command = &port->commands[tag];
687
688 if (unlikely(status == PORT_IRQ_TF_ERR)) {
689 dev_warn(&port->dd->pdev->dev,
690 "Command tag %d failed due to TFE\n", tag);
691 }
692
693 /* Upper layer callback */
694 if (likely(command->async_callback))
695 command->async_callback(command->async_data, cb_status);
696
697 command->async_callback = NULL;
698 command->comp_func = NULL;
699
700 /* Unmap the DMA scatter list entries */
701 dma_unmap_sg(&dd->pdev->dev,
702 command->sg,
703 command->scatter_ents,
704 command->direction);
705
706 /* Clear the allocated and active bits for the command */
707 atomic_set(&port->commands[tag].active, 0);
708 release_slot(port, tag);
709
710 up(&port->cmd_slot);
711}
712
713/*
714 * Internal command completion callback function.
715 *
716 * This function is normally called by the driver ISR when an internal
717 * command completed. This function signals the command completion by
718 * calling complete().
719 *
720 * @port Pointer to the port data structure.
721 * @tag Tag of the command that has completed.
722 * @data Pointer to a completion structure.
723 * @status Completion status.
724 *
725 * return value
726 * None
727 */
728static void mtip_completion(struct mtip_port *port,
729 int tag,
730 void *data,
731 int status)
732{
733 struct mtip_cmd *command = &port->commands[tag];
734 struct completion *waiting = data;
735 if (unlikely(status == PORT_IRQ_TF_ERR))
736 dev_warn(&port->dd->pdev->dev,
737 "Internal command %d completed with TFE\n", tag);
738
739 command->async_callback = NULL;
740 command->comp_func = NULL;
741
742 complete(waiting);
743}
744
Asai Thambi S P8182b492012-04-09 08:35:38 +0200745static void mtip_null_completion(struct mtip_port *port,
746 int tag,
747 void *data,
748 int status)
749{
750 return;
751}
752
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200753static int mtip_read_log_page(struct mtip_port *port, u8 page, u16 *buffer,
754 dma_addr_t buffer_dma, unsigned int sectors);
755static int mtip_get_smart_attr(struct mtip_port *port, unsigned int id,
756 struct smart_attr *attrib);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600757/*
758 * Handle an error.
759 *
760 * @dd Pointer to the DRIVER_DATA structure.
761 *
762 * return value
763 * None
764 */
765static void mtip_handle_tfe(struct driver_data *dd)
766{
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200767 int group, tag, bit, reissue, rv;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600768 struct mtip_port *port;
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200769 struct mtip_cmd *cmd;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600770 u32 completed;
771 struct host_to_dev_fis *fis;
772 unsigned long tagaccum[SLOTBITS_IN_LONGS];
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200773 unsigned int cmd_cnt = 0;
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200774 unsigned char *buf;
775 char *fail_reason = NULL;
776 int fail_all_ncq_write = 0, fail_all_ncq_cmds = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600777
778 dev_warn(&dd->pdev->dev, "Taskfile error\n");
779
780 port = dd->port;
781
782 /* Stop the timer to prevent command timeouts. */
783 del_timer(&port->cmd_timer);
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -0700784 set_bit(MTIP_PF_EH_ACTIVE_BIT, &port->flags);
785
786 if (test_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags) &&
787 test_bit(MTIP_TAG_INTERNAL, port->allocated)) {
788 cmd = &port->commands[MTIP_TAG_INTERNAL];
789 dbg_printk(MTIP_DRV_NAME " TFE for the internal command\n");
790
791 atomic_inc(&cmd->active); /* active > 1 indicates error */
792 if (cmd->comp_data && cmd->comp_func) {
793 cmd->comp_func(port, MTIP_TAG_INTERNAL,
794 cmd->comp_data, PORT_IRQ_TF_ERR);
795 }
796 goto handle_tfe_exit;
797 }
Sam Bradshaw88523a62011-08-30 08:34:26 -0600798
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200799 /* clear the tag accumulator */
800 memset(tagaccum, 0, SLOTBITS_IN_LONGS * sizeof(long));
801
Sam Bradshaw88523a62011-08-30 08:34:26 -0600802 /* Loop through all the groups */
803 for (group = 0; group < dd->slot_groups; group++) {
804 completed = readl(port->completed[group]);
805
806 /* clear completed status register in the hardware.*/
807 writel(completed, port->completed[group]);
808
Sam Bradshaw88523a62011-08-30 08:34:26 -0600809 /* Process successfully completed commands */
810 for (bit = 0; bit < 32 && completed; bit++) {
811 if (!(completed & (1<<bit)))
812 continue;
813 tag = (group << 5) + bit;
814
815 /* Skip the internal command slot */
816 if (tag == MTIP_TAG_INTERNAL)
817 continue;
818
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200819 cmd = &port->commands[tag];
820 if (likely(cmd->comp_func)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -0600821 set_bit(tag, tagaccum);
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200822 cmd_cnt++;
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200823 atomic_set(&cmd->active, 0);
824 cmd->comp_func(port,
Sam Bradshaw88523a62011-08-30 08:34:26 -0600825 tag,
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200826 cmd->comp_data,
Sam Bradshaw88523a62011-08-30 08:34:26 -0600827 0);
828 } else {
829 dev_err(&port->dd->pdev->dev,
830 "Missing completion func for tag %d",
831 tag);
832 if (mtip_check_surprise_removal(dd->pdev)) {
833 mtip_command_cleanup(dd);
834 /* don't proceed further */
835 return;
836 }
837 }
838 }
839 }
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200840
841 print_tags(dd, "completed (TFE)", tagaccum, cmd_cnt);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600842
843 /* Restart the port */
844 mdelay(20);
845 mtip_restart_port(port);
846
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200847 /* Trying to determine the cause of the error */
848 rv = mtip_read_log_page(dd->port, ATA_LOG_SATA_NCQ,
849 dd->port->log_buf,
850 dd->port->log_buf_dma, 1);
851 if (rv) {
852 dev_warn(&dd->pdev->dev,
853 "Error in READ LOG EXT (10h) command\n");
854 /* non-critical error, don't fail the load */
855 } else {
856 buf = (unsigned char *)dd->port->log_buf;
857 if (buf[259] & 0x1) {
858 dev_info(&dd->pdev->dev,
859 "Write protect bit is set.\n");
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200860 set_bit(MTIP_DDF_WRITE_PROTECT_BIT, &dd->dd_flag);
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200861 fail_all_ncq_write = 1;
862 fail_reason = "write protect";
863 }
864 if (buf[288] == 0xF7) {
865 dev_info(&dd->pdev->dev,
866 "Exceeded Tmax, drive in thermal shutdown.\n");
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200867 set_bit(MTIP_DDF_OVER_TEMP_BIT, &dd->dd_flag);
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200868 fail_all_ncq_cmds = 1;
869 fail_reason = "thermal shutdown";
870 }
871 if (buf[288] == 0xBF) {
872 dev_info(&dd->pdev->dev,
873 "Drive indicates rebuild has failed.\n");
874 fail_all_ncq_cmds = 1;
875 fail_reason = "rebuild failed";
876 }
877 }
878
Sam Bradshaw88523a62011-08-30 08:34:26 -0600879 /* clear the tag accumulator */
880 memset(tagaccum, 0, SLOTBITS_IN_LONGS * sizeof(long));
881
882 /* Loop through all the groups */
883 for (group = 0; group < dd->slot_groups; group++) {
884 for (bit = 0; bit < 32; bit++) {
885 reissue = 1;
886 tag = (group << 5) + bit;
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200887 cmd = &port->commands[tag];
Sam Bradshaw88523a62011-08-30 08:34:26 -0600888
889 /* If the active bit is set re-issue the command */
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200890 if (atomic_read(&cmd->active) == 0)
Sam Bradshaw88523a62011-08-30 08:34:26 -0600891 continue;
892
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200893 fis = (struct host_to_dev_fis *)cmd->command;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600894
895 /* Should re-issue? */
896 if (tag == MTIP_TAG_INTERNAL ||
897 fis->command == ATA_CMD_SET_FEATURES)
898 reissue = 0;
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200899 else {
900 if (fail_all_ncq_cmds ||
901 (fail_all_ncq_write &&
902 fis->command == ATA_CMD_FPDMA_WRITE)) {
903 dev_warn(&dd->pdev->dev,
904 " Fail: %s w/tag %d [%s].\n",
905 fis->command == ATA_CMD_FPDMA_WRITE ?
906 "write" : "read",
907 tag,
908 fail_reason != NULL ?
909 fail_reason : "unknown");
910 atomic_set(&cmd->active, 0);
911 if (cmd->comp_func) {
912 cmd->comp_func(port, tag,
913 cmd->comp_data,
914 -ENODATA);
915 }
916 continue;
917 }
918 }
Sam Bradshaw88523a62011-08-30 08:34:26 -0600919
920 /*
921 * First check if this command has
922 * exceeded its retries.
923 */
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200924 if (reissue && (cmd->retries-- > 0)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -0600925
926 set_bit(tag, tagaccum);
927
Sam Bradshaw88523a62011-08-30 08:34:26 -0600928 /* Re-issue the command. */
929 mtip_issue_ncq_command(port, tag);
930
931 continue;
932 }
933
934 /* Retire a command that will not be reissued */
935 dev_warn(&port->dd->pdev->dev,
936 "retiring tag %d\n", tag);
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200937 atomic_set(&cmd->active, 0);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600938
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200939 if (cmd->comp_func)
940 cmd->comp_func(
Sam Bradshaw88523a62011-08-30 08:34:26 -0600941 port,
942 tag,
Asai Thambi S Pf6587212012-04-09 08:35:38 +0200943 cmd->comp_data,
Sam Bradshaw88523a62011-08-30 08:34:26 -0600944 PORT_IRQ_TF_ERR);
945 else
946 dev_warn(&port->dd->pdev->dev,
947 "Bad completion for tag %d\n",
948 tag);
949 }
950 }
Asai Thambi S P95fea2f2012-04-09 08:35:39 +0200951 print_tags(dd, "reissued (TFE)", tagaccum, cmd_cnt);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600952
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -0700953handle_tfe_exit:
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +0100954 /* clear eh_active */
Asai Thambi S P8a857a82012-04-09 08:35:38 +0200955 clear_bit(MTIP_PF_EH_ACTIVE_BIT, &port->flags);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +0100956 wake_up_interruptible(&port->svc_wait);
Sam Bradshaw88523a62011-08-30 08:34:26 -0600957
958 mod_timer(&port->cmd_timer,
959 jiffies + msecs_to_jiffies(MTIP_TIMEOUT_CHECK_PERIOD));
960}
961
962/*
963 * Handle a set device bits interrupt
964 */
965static inline void mtip_process_sdbf(struct driver_data *dd)
966{
967 struct mtip_port *port = dd->port;
968 int group, tag, bit;
969 u32 completed;
970 struct mtip_cmd *command;
971
972 /* walk all bits in all slot groups */
973 for (group = 0; group < dd->slot_groups; group++) {
974 completed = readl(port->completed[group]);
Asai Thambi S P377b8fc62012-05-29 18:44:01 -0700975 if (!completed)
976 continue;
Sam Bradshaw88523a62011-08-30 08:34:26 -0600977
978 /* clear completed status register in the hardware.*/
979 writel(completed, port->completed[group]);
980
981 /* Process completed commands. */
982 for (bit = 0;
983 (bit < 32) && completed;
984 bit++, completed >>= 1) {
985 if (completed & 0x01) {
986 tag = (group << 5) | bit;
987
988 /* skip internal command slot. */
989 if (unlikely(tag == MTIP_TAG_INTERNAL))
990 continue;
991
992 command = &port->commands[tag];
Sam Bradshaw88523a62011-08-30 08:34:26 -0600993 /* make internal callback */
994 if (likely(command->comp_func)) {
995 command->comp_func(
996 port,
997 tag,
998 command->comp_data,
999 0);
1000 } else {
1001 dev_warn(&dd->pdev->dev,
1002 "Null completion "
1003 "for tag %d",
1004 tag);
1005
1006 if (mtip_check_surprise_removal(
1007 dd->pdev)) {
1008 mtip_command_cleanup(dd);
1009 return;
1010 }
1011 }
1012 }
1013 }
1014 }
1015}
1016
1017/*
1018 * Process legacy pio and d2h interrupts
1019 */
1020static inline void mtip_process_legacy(struct driver_data *dd, u32 port_stat)
1021{
1022 struct mtip_port *port = dd->port;
1023 struct mtip_cmd *cmd = &port->commands[MTIP_TAG_INTERNAL];
1024
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001025 if (test_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags) &&
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001026 (cmd != NULL) && !(readl(port->cmd_issue[MTIP_TAG_INTERNAL])
Sam Bradshaw88523a62011-08-30 08:34:26 -06001027 & (1 << MTIP_TAG_INTERNAL))) {
1028 if (cmd->comp_func) {
1029 cmd->comp_func(port,
1030 MTIP_TAG_INTERNAL,
1031 cmd->comp_data,
1032 0);
1033 return;
1034 }
1035 }
1036
Sam Bradshaw88523a62011-08-30 08:34:26 -06001037 return;
1038}
1039
1040/*
1041 * Demux and handle errors
1042 */
1043static inline void mtip_process_errors(struct driver_data *dd, u32 port_stat)
1044{
1045 if (likely(port_stat & (PORT_IRQ_TF_ERR | PORT_IRQ_IF_ERR)))
1046 mtip_handle_tfe(dd);
1047
1048 if (unlikely(port_stat & PORT_IRQ_CONNECT)) {
1049 dev_warn(&dd->pdev->dev,
1050 "Clearing PxSERR.DIAG.x\n");
1051 writel((1 << 26), dd->port->mmio + PORT_SCR_ERR);
1052 }
1053
1054 if (unlikely(port_stat & PORT_IRQ_PHYRDY)) {
1055 dev_warn(&dd->pdev->dev,
1056 "Clearing PxSERR.DIAG.n\n");
1057 writel((1 << 16), dd->port->mmio + PORT_SCR_ERR);
1058 }
1059
1060 if (unlikely(port_stat & ~PORT_IRQ_HANDLED)) {
1061 dev_warn(&dd->pdev->dev,
1062 "Port stat errors %x unhandled\n",
1063 (port_stat & ~PORT_IRQ_HANDLED));
1064 }
1065}
1066
1067static inline irqreturn_t mtip_handle_irq(struct driver_data *data)
1068{
1069 struct driver_data *dd = (struct driver_data *) data;
1070 struct mtip_port *port = dd->port;
1071 u32 hba_stat, port_stat;
1072 int rv = IRQ_NONE;
1073
1074 hba_stat = readl(dd->mmio + HOST_IRQ_STAT);
1075 if (hba_stat) {
1076 rv = IRQ_HANDLED;
1077
1078 /* Acknowledge the interrupt status on the port.*/
1079 port_stat = readl(port->mmio + PORT_IRQ_STAT);
1080 writel(port_stat, port->mmio + PORT_IRQ_STAT);
1081
1082 /* Demux port status */
1083 if (likely(port_stat & PORT_IRQ_SDB_FIS))
1084 mtip_process_sdbf(dd);
1085
1086 if (unlikely(port_stat & PORT_IRQ_ERR)) {
1087 if (unlikely(mtip_check_surprise_removal(dd->pdev))) {
1088 mtip_command_cleanup(dd);
1089 /* don't proceed further */
1090 return IRQ_HANDLED;
1091 }
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001092 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
Asai Thambi S P45038362012-04-09 08:35:38 +02001093 &dd->dd_flag))
1094 return rv;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001095
1096 mtip_process_errors(dd, port_stat & PORT_IRQ_ERR);
1097 }
1098
1099 if (unlikely(port_stat & PORT_IRQ_LEGACY))
1100 mtip_process_legacy(dd, port_stat & PORT_IRQ_LEGACY);
1101 }
1102
1103 /* acknowledge interrupt */
1104 writel(hba_stat, dd->mmio + HOST_IRQ_STAT);
1105
1106 return rv;
1107}
1108
1109/*
1110 * Wrapper for mtip_handle_irq
1111 * (ignores return code)
1112 */
1113static void mtip_tasklet(unsigned long data)
1114{
1115 mtip_handle_irq((struct driver_data *) data);
1116}
1117
1118/*
1119 * HBA interrupt subroutine.
1120 *
1121 * @irq IRQ number.
1122 * @instance Pointer to the driver data structure.
1123 *
1124 * return value
1125 * IRQ_HANDLED A HBA interrupt was pending and handled.
1126 * IRQ_NONE This interrupt was not for the HBA.
1127 */
1128static irqreturn_t mtip_irq_handler(int irq, void *instance)
1129{
1130 struct driver_data *dd = instance;
1131 tasklet_schedule(&dd->tasklet);
1132 return IRQ_HANDLED;
1133}
1134
1135static void mtip_issue_non_ncq_command(struct mtip_port *port, int tag)
1136{
1137 atomic_set(&port->commands[tag].active, 1);
1138 writel(1 << MTIP_TAG_BIT(tag),
1139 port->cmd_issue[MTIP_TAG_INDEX(tag)]);
1140}
1141
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001142static bool mtip_pause_ncq(struct mtip_port *port,
1143 struct host_to_dev_fis *fis)
1144{
1145 struct host_to_dev_fis *reply;
1146 unsigned long task_file_data;
1147
1148 reply = port->rxfis + RX_FIS_D2H_REG;
1149 task_file_data = readl(port->mmio+PORT_TFDATA);
1150
Asai Thambi S P12a166c2012-09-05 22:01:36 +05301151 if (fis->command == ATA_CMD_SEC_ERASE_UNIT)
1152 clear_bit(MTIP_DDF_SEC_LOCK_BIT, &port->dd->dd_flag);
1153
1154 if ((task_file_data & 1))
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001155 return false;
1156
1157 if (fis->command == ATA_CMD_SEC_ERASE_PREP) {
1158 set_bit(MTIP_PF_SE_ACTIVE_BIT, &port->flags);
Asai Thambi S P12a166c2012-09-05 22:01:36 +05301159 set_bit(MTIP_DDF_SEC_LOCK_BIT, &port->dd->dd_flag);
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001160 port->ic_pause_timer = jiffies;
1161 return true;
1162 } else if ((fis->command == ATA_CMD_DOWNLOAD_MICRO) &&
1163 (fis->features == 0x03)) {
1164 set_bit(MTIP_PF_DM_ACTIVE_BIT, &port->flags);
1165 port->ic_pause_timer = jiffies;
1166 return true;
1167 } else if ((fis->command == ATA_CMD_SEC_ERASE_UNIT) ||
1168 ((fis->command == 0xFC) &&
1169 (fis->features == 0x27 || fis->features == 0x72 ||
1170 fis->features == 0x62 || fis->features == 0x26))) {
1171 /* Com reset after secure erase or lowlevel format */
1172 mtip_restart_port(port);
1173 return false;
1174 }
1175
1176 return false;
1177}
1178
Sam Bradshaw88523a62011-08-30 08:34:26 -06001179/*
1180 * Wait for port to quiesce
1181 *
1182 * @port Pointer to port data structure
1183 * @timeout Max duration to wait (ms)
1184 *
1185 * return value
1186 * 0 Success
1187 * -EBUSY Commands still active
1188 */
1189static int mtip_quiesce_io(struct mtip_port *port, unsigned long timeout)
1190{
1191 unsigned long to;
Dan Carpenter3e54a3d2011-11-24 12:59:00 +01001192 unsigned int n;
1193 unsigned int active = 1;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001194
1195 to = jiffies + msecs_to_jiffies(timeout);
1196 do {
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001197 if (test_bit(MTIP_PF_SVC_THD_ACTIVE_BIT, &port->flags) &&
1198 test_bit(MTIP_PF_ISSUE_CMDS_BIT, &port->flags)) {
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001199 msleep(20);
1200 continue; /* svc thd is actively issuing commands */
1201 }
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001202 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &port->dd->dd_flag))
Asai Thambi S P45038362012-04-09 08:35:38 +02001203 return -EFAULT;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001204 /*
1205 * Ignore s_active bit 0 of array element 0.
1206 * This bit will always be set
1207 */
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001208 active = readl(port->s_active[0]) & 0xFFFFFFFE;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001209 for (n = 1; n < port->dd->slot_groups; n++)
1210 active |= readl(port->s_active[n]);
1211
1212 if (!active)
1213 break;
1214
1215 msleep(20);
1216 } while (time_before(jiffies, to));
1217
1218 return active ? -EBUSY : 0;
1219}
1220
1221/*
1222 * Execute an internal command and wait for the completion.
1223 *
1224 * @port Pointer to the port data structure.
1225 * @fis Pointer to the FIS that describes the command.
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001226 * @fis_len Length in WORDS of the FIS.
Sam Bradshaw88523a62011-08-30 08:34:26 -06001227 * @buffer DMA accessible for command data.
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001228 * @buf_len Length, in bytes, of the data buffer.
Sam Bradshaw88523a62011-08-30 08:34:26 -06001229 * @opts Command header options, excluding the FIS length
1230 * and the number of PRD entries.
1231 * @timeout Time in ms to wait for the command to complete.
1232 *
1233 * return value
1234 * 0 Command completed successfully.
1235 * -EFAULT The buffer address is not correctly aligned.
1236 * -EBUSY Internal command or other IO in progress.
1237 * -EAGAIN Time out waiting for command to complete.
1238 */
1239static int mtip_exec_internal_command(struct mtip_port *port,
Asai Thambi S P8182b492012-04-09 08:35:38 +02001240 struct host_to_dev_fis *fis,
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001241 int fis_len,
Sam Bradshaw88523a62011-08-30 08:34:26 -06001242 dma_addr_t buffer,
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001243 int buf_len,
Sam Bradshaw88523a62011-08-30 08:34:26 -06001244 u32 opts,
1245 gfp_t atomic,
1246 unsigned long timeout)
1247{
1248 struct mtip_cmd_sg *command_sg;
1249 DECLARE_COMPLETION_ONSTACK(wait);
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001250 int rv = 0, ready2go = 1;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001251 struct mtip_cmd *int_cmd = &port->commands[MTIP_TAG_INTERNAL];
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001252 unsigned long to;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001253
1254 /* Make sure the buffer is 8 byte aligned. This is asic specific. */
1255 if (buffer & 0x00000007) {
1256 dev_err(&port->dd->pdev->dev,
1257 "SG buffer is not 8 byte aligned\n");
1258 return -EFAULT;
1259 }
1260
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001261 to = jiffies + msecs_to_jiffies(timeout);
1262 do {
1263 ready2go = !test_and_set_bit(MTIP_TAG_INTERNAL,
1264 port->allocated);
1265 if (ready2go)
1266 break;
1267 mdelay(100);
1268 } while (time_before(jiffies, to));
1269 if (!ready2go) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06001270 dev_warn(&port->dd->pdev->dev,
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001271 "Internal cmd active. new cmd [%02X]\n", fis->command);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001272 return -EBUSY;
1273 }
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001274 set_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags);
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001275 port->ic_pause_timer = 0;
1276
1277 if (fis->command == ATA_CMD_SEC_ERASE_UNIT)
1278 clear_bit(MTIP_PF_SE_ACTIVE_BIT, &port->flags);
1279 else if (fis->command == ATA_CMD_DOWNLOAD_MICRO)
1280 clear_bit(MTIP_PF_DM_ACTIVE_BIT, &port->flags);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001281
1282 if (atomic == GFP_KERNEL) {
Asai Thambi S P8182b492012-04-09 08:35:38 +02001283 if (fis->command != ATA_CMD_STANDBYNOW1) {
1284 /* wait for io to complete if non atomic */
1285 if (mtip_quiesce_io(port, 5000) < 0) {
1286 dev_warn(&port->dd->pdev->dev,
1287 "Failed to quiesce IO\n");
1288 release_slot(port, MTIP_TAG_INTERNAL);
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001289 clear_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags);
Asai Thambi S P8182b492012-04-09 08:35:38 +02001290 wake_up_interruptible(&port->svc_wait);
1291 return -EBUSY;
1292 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06001293 }
1294
1295 /* Set the completion function and data for the command. */
1296 int_cmd->comp_data = &wait;
1297 int_cmd->comp_func = mtip_completion;
1298
1299 } else {
1300 /* Clear completion - we're going to poll */
1301 int_cmd->comp_data = NULL;
Asai Thambi S P8182b492012-04-09 08:35:38 +02001302 int_cmd->comp_func = mtip_null_completion;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001303 }
1304
1305 /* Copy the command to the command table */
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001306 memcpy(int_cmd->command, fis, fis_len*4);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001307
1308 /* Populate the SG list */
1309 int_cmd->command_header->opts =
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001310 __force_bit2int cpu_to_le32(opts | fis_len);
1311 if (buf_len) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06001312 command_sg = int_cmd->command + AHCI_CMD_TBL_HDR_SZ;
1313
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001314 command_sg->info =
1315 __force_bit2int cpu_to_le32((buf_len-1) & 0x3FFFFF);
1316 command_sg->dba =
1317 __force_bit2int cpu_to_le32(buffer & 0xFFFFFFFF);
1318 command_sg->dba_upper =
1319 __force_bit2int cpu_to_le32((buffer >> 16) >> 16);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001320
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001321 int_cmd->command_header->opts |=
1322 __force_bit2int cpu_to_le32((1 << 16));
Sam Bradshaw88523a62011-08-30 08:34:26 -06001323 }
1324
1325 /* Populate the command header */
1326 int_cmd->command_header->byte_count = 0;
1327
1328 /* Issue the command to the hardware */
1329 mtip_issue_non_ncq_command(port, MTIP_TAG_INTERNAL);
1330
1331 /* Poll if atomic, wait_for_completion otherwise */
1332 if (atomic == GFP_KERNEL) {
1333 /* Wait for the command to complete or timeout. */
1334 if (wait_for_completion_timeout(
1335 &wait,
1336 msecs_to_jiffies(timeout)) == 0) {
1337 dev_err(&port->dd->pdev->dev,
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001338 "Internal command did not complete [%d] "
1339 "within timeout of %lu ms\n",
1340 atomic, timeout);
Asai Thambi S P45038362012-04-09 08:35:38 +02001341 if (mtip_check_surprise_removal(port->dd->pdev) ||
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001342 test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
Asai Thambi S P45038362012-04-09 08:35:38 +02001343 &port->dd->dd_flag)) {
1344 rv = -ENXIO;
1345 goto exec_ic_exit;
1346 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06001347 rv = -EAGAIN;
1348 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06001349 } else {
1350 /* Spin for <timeout> checking if command still outstanding */
1351 timeout = jiffies + msecs_to_jiffies(timeout);
Asai Thambi S P8182b492012-04-09 08:35:38 +02001352 while ((readl(port->cmd_issue[MTIP_TAG_INTERNAL])
1353 & (1 << MTIP_TAG_INTERNAL))
1354 && time_before(jiffies, timeout)) {
1355 if (mtip_check_surprise_removal(port->dd->pdev)) {
1356 rv = -ENXIO;
1357 goto exec_ic_exit;
1358 }
1359 if ((fis->command != ATA_CMD_STANDBYNOW1) &&
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001360 test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
Asai Thambi S P45038362012-04-09 08:35:38 +02001361 &port->dd->dd_flag)) {
1362 rv = -ENXIO;
1363 goto exec_ic_exit;
1364 }
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -07001365 if (readl(port->mmio + PORT_IRQ_STAT) & PORT_IRQ_ERR) {
1366 atomic_inc(&int_cmd->active); /* error */
1367 break;
Asai Thambi S P45038362012-04-09 08:35:38 +02001368 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06001369 }
1370 }
Asai Thambi S Pd02e1f02012-05-29 18:42:27 -07001371
1372 if (atomic_read(&int_cmd->active) > 1) {
1373 dev_err(&port->dd->pdev->dev,
1374 "Internal command [%02X] failed\n", fis->command);
1375 rv = -EIO;
1376 }
1377 if (readl(port->cmd_issue[MTIP_TAG_INTERNAL])
1378 & (1 << MTIP_TAG_INTERNAL)) {
1379 rv = -ENXIO;
1380 if (!test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
1381 &port->dd->dd_flag)) {
1382 mtip_restart_port(port);
1383 rv = -EAGAIN;
1384 }
1385 }
Asai Thambi S P45038362012-04-09 08:35:38 +02001386exec_ic_exit:
Sam Bradshaw88523a62011-08-30 08:34:26 -06001387 /* Clear the allocated and active bits for the internal command. */
1388 atomic_set(&int_cmd->active, 0);
1389 release_slot(port, MTIP_TAG_INTERNAL);
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001390 if (rv >= 0 && mtip_pause_ncq(port, fis)) {
1391 /* NCQ paused */
1392 return rv;
1393 }
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001394 clear_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001395 wake_up_interruptible(&port->svc_wait);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001396
1397 return rv;
1398}
1399
1400/*
1401 * Byte-swap ATA ID strings.
1402 *
1403 * ATA identify data contains strings in byte-swapped 16-bit words.
1404 * They must be swapped (on all architectures) to be usable as C strings.
1405 * This function swaps bytes in-place.
1406 *
1407 * @buf The buffer location of the string
1408 * @len The number of bytes to swap
1409 *
1410 * return value
1411 * None
1412 */
1413static inline void ata_swap_string(u16 *buf, unsigned int len)
1414{
1415 int i;
1416 for (i = 0; i < (len/2); i++)
1417 be16_to_cpus(&buf[i]);
1418}
1419
1420/*
1421 * Request the device identity information.
1422 *
1423 * If a user space buffer is not specified, i.e. is NULL, the
1424 * identify information is still read from the drive and placed
1425 * into the identify data buffer (@e port->identify) in the
1426 * port data structure.
1427 * When the identify buffer contains valid identify information @e
1428 * port->identify_valid is non-zero.
1429 *
1430 * @port Pointer to the port structure.
1431 * @user_buffer A user space buffer where the identify data should be
1432 * copied.
1433 *
1434 * return value
1435 * 0 Command completed successfully.
1436 * -EFAULT An error occurred while coping data to the user buffer.
1437 * -1 Command failed.
1438 */
1439static int mtip_get_identify(struct mtip_port *port, void __user *user_buffer)
1440{
1441 int rv = 0;
1442 struct host_to_dev_fis fis;
1443
Asai Thambi S P8a857a82012-04-09 08:35:38 +02001444 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &port->dd->dd_flag))
Asai Thambi S P45038362012-04-09 08:35:38 +02001445 return -EFAULT;
1446
Sam Bradshaw88523a62011-08-30 08:34:26 -06001447 /* Build the FIS. */
1448 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1449 fis.type = 0x27;
1450 fis.opts = 1 << 7;
1451 fis.command = ATA_CMD_ID_ATA;
1452
1453 /* Set the identify information as invalid. */
1454 port->identify_valid = 0;
1455
1456 /* Clear the identify information. */
1457 memset(port->identify, 0, sizeof(u16) * ATA_ID_WORDS);
1458
1459 /* Execute the command. */
1460 if (mtip_exec_internal_command(port,
1461 &fis,
1462 5,
1463 port->identify_dma,
1464 sizeof(u16) * ATA_ID_WORDS,
1465 0,
1466 GFP_KERNEL,
1467 MTIP_INTERNAL_COMMAND_TIMEOUT_MS)
1468 < 0) {
1469 rv = -1;
1470 goto out;
1471 }
1472
1473 /*
1474 * Perform any necessary byte-swapping. Yes, the kernel does in fact
1475 * perform field-sensitive swapping on the string fields.
1476 * See the kernel use of ata_id_string() for proof of this.
1477 */
1478#ifdef __LITTLE_ENDIAN
1479 ata_swap_string(port->identify + 27, 40); /* model string*/
1480 ata_swap_string(port->identify + 23, 8); /* firmware string*/
1481 ata_swap_string(port->identify + 10, 20); /* serial# string*/
1482#else
1483 {
1484 int i;
1485 for (i = 0; i < ATA_ID_WORDS; i++)
1486 port->identify[i] = le16_to_cpu(port->identify[i]);
1487 }
1488#endif
1489
1490 /* Set the identify buffer as valid. */
1491 port->identify_valid = 1;
1492
1493 if (user_buffer) {
1494 if (copy_to_user(
1495 user_buffer,
1496 port->identify,
1497 ATA_ID_WORDS * sizeof(u16))) {
1498 rv = -EFAULT;
1499 goto out;
1500 }
1501 }
1502
1503out:
Sam Bradshaw88523a62011-08-30 08:34:26 -06001504 return rv;
1505}
1506
1507/*
1508 * Issue a standby immediate command to the device.
1509 *
1510 * @port Pointer to the port structure.
1511 *
1512 * return value
1513 * 0 Command was executed successfully.
1514 * -1 An error occurred while executing the command.
1515 */
1516static int mtip_standby_immediate(struct mtip_port *port)
1517{
1518 int rv;
1519 struct host_to_dev_fis fis;
Asai Thambi S Pf6587212012-04-09 08:35:38 +02001520 unsigned long start;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001521
Sam Bradshaw88523a62011-08-30 08:34:26 -06001522 /* Build the FIS. */
1523 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1524 fis.type = 0x27;
1525 fis.opts = 1 << 7;
1526 fis.command = ATA_CMD_STANDBYNOW1;
1527
Asai Thambi S Pf6587212012-04-09 08:35:38 +02001528 start = jiffies;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001529 rv = mtip_exec_internal_command(port,
1530 &fis,
1531 5,
1532 0,
1533 0,
1534 0,
Asai Thambi S Pf6587212012-04-09 08:35:38 +02001535 GFP_ATOMIC,
Sam Bradshaw88523a62011-08-30 08:34:26 -06001536 15000);
Asai Thambi S Pf6587212012-04-09 08:35:38 +02001537 dbg_printk(MTIP_DRV_NAME "Time taken to complete standby cmd: %d ms\n",
1538 jiffies_to_msecs(jiffies - start));
1539 if (rv)
1540 dev_warn(&port->dd->pdev->dev,
1541 "STANDBY IMMEDIATE command failed.\n");
1542
1543 return rv;
1544}
1545
1546/*
1547 * Issue a READ LOG EXT command to the device.
1548 *
1549 * @port pointer to the port structure.
1550 * @page page number to fetch
1551 * @buffer pointer to buffer
1552 * @buffer_dma dma address corresponding to @buffer
1553 * @sectors page length to fetch, in sectors
1554 *
1555 * return value
1556 * @rv return value from mtip_exec_internal_command()
1557 */
1558static int mtip_read_log_page(struct mtip_port *port, u8 page, u16 *buffer,
1559 dma_addr_t buffer_dma, unsigned int sectors)
1560{
1561 struct host_to_dev_fis fis;
1562
1563 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1564 fis.type = 0x27;
1565 fis.opts = 1 << 7;
1566 fis.command = ATA_CMD_READ_LOG_EXT;
1567 fis.sect_count = sectors & 0xFF;
1568 fis.sect_cnt_ex = (sectors >> 8) & 0xFF;
1569 fis.lba_low = page;
1570 fis.lba_mid = 0;
1571 fis.device = ATA_DEVICE_OBS;
1572
1573 memset(buffer, 0, sectors * ATA_SECT_SIZE);
1574
1575 return mtip_exec_internal_command(port,
1576 &fis,
1577 5,
1578 buffer_dma,
1579 sectors * ATA_SECT_SIZE,
1580 0,
1581 GFP_ATOMIC,
1582 MTIP_INTERNAL_COMMAND_TIMEOUT_MS);
1583}
1584
1585/*
1586 * Issue a SMART READ DATA command to the device.
1587 *
1588 * @port pointer to the port structure.
1589 * @buffer pointer to buffer
1590 * @buffer_dma dma address corresponding to @buffer
1591 *
1592 * return value
1593 * @rv return value from mtip_exec_internal_command()
1594 */
1595static int mtip_get_smart_data(struct mtip_port *port, u8 *buffer,
1596 dma_addr_t buffer_dma)
1597{
1598 struct host_to_dev_fis fis;
1599
1600 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1601 fis.type = 0x27;
1602 fis.opts = 1 << 7;
1603 fis.command = ATA_CMD_SMART;
1604 fis.features = 0xD0;
1605 fis.sect_count = 1;
1606 fis.lba_mid = 0x4F;
1607 fis.lba_hi = 0xC2;
1608 fis.device = ATA_DEVICE_OBS;
1609
1610 return mtip_exec_internal_command(port,
1611 &fis,
1612 5,
1613 buffer_dma,
1614 ATA_SECT_SIZE,
1615 0,
1616 GFP_ATOMIC,
1617 15000);
1618}
1619
1620/*
1621 * Get the value of a smart attribute
1622 *
1623 * @port pointer to the port structure
1624 * @id attribute number
1625 * @attrib pointer to return attrib information corresponding to @id
1626 *
1627 * return value
1628 * -EINVAL NULL buffer passed or unsupported attribute @id.
1629 * -EPERM Identify data not valid, SMART not supported or not enabled
1630 */
1631static int mtip_get_smart_attr(struct mtip_port *port, unsigned int id,
1632 struct smart_attr *attrib)
1633{
1634 int rv, i;
1635 struct smart_attr *pattr;
1636
1637 if (!attrib)
1638 return -EINVAL;
1639
1640 if (!port->identify_valid) {
1641 dev_warn(&port->dd->pdev->dev, "IDENTIFY DATA not valid\n");
1642 return -EPERM;
1643 }
1644 if (!(port->identify[82] & 0x1)) {
1645 dev_warn(&port->dd->pdev->dev, "SMART not supported\n");
1646 return -EPERM;
1647 }
1648 if (!(port->identify[85] & 0x1)) {
1649 dev_warn(&port->dd->pdev->dev, "SMART not enabled\n");
1650 return -EPERM;
1651 }
1652
1653 memset(port->smart_buf, 0, ATA_SECT_SIZE);
1654 rv = mtip_get_smart_data(port, port->smart_buf, port->smart_buf_dma);
1655 if (rv) {
1656 dev_warn(&port->dd->pdev->dev, "Failed to ge SMART data\n");
1657 return rv;
1658 }
1659
1660 pattr = (struct smart_attr *)(port->smart_buf + 2);
1661 for (i = 0; i < 29; i++, pattr++)
1662 if (pattr->attr_id == id) {
1663 memcpy(attrib, pattr, sizeof(struct smart_attr));
1664 break;
1665 }
1666
1667 if (i == 29) {
1668 dev_warn(&port->dd->pdev->dev,
1669 "Query for invalid SMART attribute ID\n");
1670 rv = -EINVAL;
1671 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06001672
Sam Bradshaw88523a62011-08-30 08:34:26 -06001673 return rv;
1674}
1675
1676/*
1677 * Get the drive capacity.
1678 *
1679 * @dd Pointer to the device data structure.
1680 * @sectors Pointer to the variable that will receive the sector count.
1681 *
1682 * return value
1683 * 1 Capacity was returned successfully.
1684 * 0 The identify information is invalid.
1685 */
Jens Axboe63166682011-09-27 21:27:43 -06001686static bool mtip_hw_get_capacity(struct driver_data *dd, sector_t *sectors)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001687{
1688 struct mtip_port *port = dd->port;
1689 u64 total, raw0, raw1, raw2, raw3;
1690 raw0 = port->identify[100];
1691 raw1 = port->identify[101];
1692 raw2 = port->identify[102];
1693 raw3 = port->identify[103];
1694 total = raw0 | raw1<<16 | raw2<<32 | raw3<<48;
1695 *sectors = total;
1696 return (bool) !!port->identify_valid;
1697}
1698
1699/*
1700 * Reset the HBA.
1701 *
1702 * Resets the HBA by setting the HBA Reset bit in the Global
1703 * HBA Control register. After setting the HBA Reset bit the
1704 * function waits for 1 second before reading the HBA Reset
1705 * bit to make sure it has cleared. If HBA Reset is not clear
1706 * an error is returned. Cannot be used in non-blockable
1707 * context.
1708 *
1709 * @dd Pointer to the driver data structure.
1710 *
1711 * return value
1712 * 0 The reset was successful.
1713 * -1 The HBA Reset bit did not clear.
1714 */
1715static int mtip_hba_reset(struct driver_data *dd)
1716{
1717 mtip_deinit_port(dd->port);
1718
1719 /* Set the reset bit */
1720 writel(HOST_RESET, dd->mmio + HOST_CTL);
1721
1722 /* Flush */
1723 readl(dd->mmio + HOST_CTL);
1724
1725 /* Wait for reset to clear */
1726 ssleep(1);
1727
1728 /* Check the bit has cleared */
1729 if (readl(dd->mmio + HOST_CTL) & HOST_RESET) {
1730 dev_err(&dd->pdev->dev,
1731 "Reset bit did not clear.\n");
1732 return -1;
1733 }
1734
1735 return 0;
1736}
1737
1738/*
1739 * Display the identify command data.
1740 *
1741 * @port Pointer to the port data structure.
1742 *
1743 * return value
1744 * None
1745 */
1746static void mtip_dump_identify(struct mtip_port *port)
1747{
1748 sector_t sectors;
1749 unsigned short revid;
1750 char cbuf[42];
1751
1752 if (!port->identify_valid)
1753 return;
1754
1755 strlcpy(cbuf, (char *)(port->identify+10), 21);
1756 dev_info(&port->dd->pdev->dev,
1757 "Serial No.: %s\n", cbuf);
1758
1759 strlcpy(cbuf, (char *)(port->identify+23), 9);
1760 dev_info(&port->dd->pdev->dev,
1761 "Firmware Ver.: %s\n", cbuf);
1762
1763 strlcpy(cbuf, (char *)(port->identify+27), 41);
1764 dev_info(&port->dd->pdev->dev, "Model: %s\n", cbuf);
1765
1766 if (mtip_hw_get_capacity(port->dd, &sectors))
1767 dev_info(&port->dd->pdev->dev,
1768 "Capacity: %llu sectors (%llu MB)\n",
1769 (u64)sectors,
1770 ((u64)sectors) * ATA_SECT_SIZE >> 20);
1771
1772 pci_read_config_word(port->dd->pdev, PCI_REVISION_ID, &revid);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001773 switch (revid & 0xFF) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06001774 case 0x1:
1775 strlcpy(cbuf, "A0", 3);
1776 break;
1777 case 0x3:
1778 strlcpy(cbuf, "A2", 3);
1779 break;
1780 default:
1781 strlcpy(cbuf, "?", 2);
1782 break;
1783 }
1784 dev_info(&port->dd->pdev->dev,
1785 "Card Type: %s\n", cbuf);
1786}
1787
1788/*
1789 * Map the commands scatter list into the command table.
1790 *
1791 * @command Pointer to the command.
1792 * @nents Number of scatter list entries.
1793 *
1794 * return value
1795 * None
1796 */
1797static inline void fill_command_sg(struct driver_data *dd,
1798 struct mtip_cmd *command,
1799 int nents)
1800{
1801 int n;
1802 unsigned int dma_len;
1803 struct mtip_cmd_sg *command_sg;
1804 struct scatterlist *sg = command->sg;
1805
1806 command_sg = command->command + AHCI_CMD_TBL_HDR_SZ;
1807
1808 for (n = 0; n < nents; n++) {
1809 dma_len = sg_dma_len(sg);
1810 if (dma_len > 0x400000)
1811 dev_err(&dd->pdev->dev,
1812 "DMA segment length truncated\n");
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001813 command_sg->info = __force_bit2int
1814 cpu_to_le32((dma_len-1) & 0x3FFFFF);
1815 command_sg->dba = __force_bit2int
1816 cpu_to_le32(sg_dma_address(sg));
1817 command_sg->dba_upper = __force_bit2int
1818 cpu_to_le32((sg_dma_address(sg) >> 16) >> 16);
Sam Bradshaw88523a62011-08-30 08:34:26 -06001819 command_sg++;
1820 sg++;
1821 }
1822}
1823
1824/*
1825 * @brief Execute a drive command.
1826 *
1827 * return value 0 The command completed successfully.
1828 * return value -1 An error occurred while executing the command.
1829 */
Jens Axboe63166682011-09-27 21:27:43 -06001830static int exec_drive_task(struct mtip_port *port, u8 *command)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001831{
1832 struct host_to_dev_fis fis;
1833 struct host_to_dev_fis *reply = (port->rxfis + RX_FIS_D2H_REG);
1834
Sam Bradshaw88523a62011-08-30 08:34:26 -06001835 /* Build the FIS. */
1836 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1837 fis.type = 0x27;
1838 fis.opts = 1 << 7;
1839 fis.command = command[0];
1840 fis.features = command[1];
1841 fis.sect_count = command[2];
1842 fis.sector = command[3];
1843 fis.cyl_low = command[4];
1844 fis.cyl_hi = command[5];
1845 fis.device = command[6] & ~0x10; /* Clear the dev bit*/
1846
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001847 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 -06001848 __func__,
1849 command[0],
1850 command[1],
1851 command[2],
1852 command[3],
1853 command[4],
1854 command[5],
1855 command[6]);
1856
1857 /* Execute the command. */
1858 if (mtip_exec_internal_command(port,
1859 &fis,
1860 5,
1861 0,
1862 0,
1863 0,
1864 GFP_KERNEL,
1865 MTIP_IOCTL_COMMAND_TIMEOUT_MS) < 0) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06001866 return -1;
1867 }
1868
1869 command[0] = reply->command; /* Status*/
1870 command[1] = reply->features; /* Error*/
1871 command[4] = reply->cyl_low;
1872 command[5] = reply->cyl_hi;
1873
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001874 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 -06001875 __func__,
1876 command[0],
1877 command[1],
1878 command[4],
1879 command[5]);
1880
Sam Bradshaw88523a62011-08-30 08:34:26 -06001881 return 0;
1882}
1883
1884/*
1885 * @brief Execute a drive command.
1886 *
1887 * @param port Pointer to the port data structure.
1888 * @param command Pointer to the user specified command parameters.
1889 * @param user_buffer Pointer to the user space buffer where read sector
1890 * data should be copied.
1891 *
1892 * return value 0 The command completed successfully.
1893 * return value -EFAULT An error occurred while copying the completion
1894 * data to the user space buffer.
1895 * return value -1 An error occurred while executing the command.
1896 */
Jens Axboe63166682011-09-27 21:27:43 -06001897static int exec_drive_command(struct mtip_port *port, u8 *command,
1898 void __user *user_buffer)
Sam Bradshaw88523a62011-08-30 08:34:26 -06001899{
1900 struct host_to_dev_fis fis;
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001901 struct host_to_dev_fis *reply;
1902 u8 *buf = NULL;
1903 dma_addr_t dma_addr = 0;
1904 int rv = 0, xfer_sz = command[3];
1905
1906 if (xfer_sz) {
David Milburn97651ea2012-09-12 14:06:12 -05001907 if (!user_buffer)
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001908 return -EFAULT;
1909
1910 buf = dmam_alloc_coherent(&port->dd->pdev->dev,
1911 ATA_SECT_SIZE * xfer_sz,
1912 &dma_addr,
1913 GFP_KERNEL);
1914 if (!buf) {
1915 dev_err(&port->dd->pdev->dev,
1916 "Memory allocation failed (%d bytes)\n",
1917 ATA_SECT_SIZE * xfer_sz);
1918 return -ENOMEM;
1919 }
1920 memset(buf, 0, ATA_SECT_SIZE * xfer_sz);
1921 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06001922
Sam Bradshaw88523a62011-08-30 08:34:26 -06001923 /* Build the FIS. */
1924 memset(&fis, 0, sizeof(struct host_to_dev_fis));
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001925 fis.type = 0x27;
1926 fis.opts = 1 << 7;
1927 fis.command = command[0];
Sam Bradshaw88523a62011-08-30 08:34:26 -06001928 fis.features = command[2];
1929 fis.sect_count = command[3];
1930 if (fis.command == ATA_CMD_SMART) {
1931 fis.sector = command[1];
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01001932 fis.cyl_low = 0x4F;
1933 fis.cyl_hi = 0xC2;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001934 }
1935
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001936 if (xfer_sz)
1937 reply = (port->rxfis + RX_FIS_PIO_SETUP);
1938 else
1939 reply = (port->rxfis + RX_FIS_D2H_REG);
1940
Sam Bradshaw88523a62011-08-30 08:34:26 -06001941 dbg_printk(MTIP_DRV_NAME
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001942 " %s: User Command: cmd %x, sect %x, "
Sam Bradshaw88523a62011-08-30 08:34:26 -06001943 "feat %x, sectcnt %x\n",
1944 __func__,
1945 command[0],
1946 command[1],
1947 command[2],
1948 command[3]);
1949
Sam Bradshaw88523a62011-08-30 08:34:26 -06001950 /* Execute the command. */
1951 if (mtip_exec_internal_command(port,
1952 &fis,
1953 5,
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001954 (xfer_sz ? dma_addr : 0),
1955 (xfer_sz ? ATA_SECT_SIZE * xfer_sz : 0),
Sam Bradshaw88523a62011-08-30 08:34:26 -06001956 0,
1957 GFP_KERNEL,
1958 MTIP_IOCTL_COMMAND_TIMEOUT_MS)
1959 < 0) {
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001960 rv = -EFAULT;
1961 goto exit_drive_command;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001962 }
1963
1964 /* Collect the completion status. */
1965 command[0] = reply->command; /* Status*/
1966 command[1] = reply->features; /* Error*/
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001967 command[2] = reply->sect_count;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001968
1969 dbg_printk(MTIP_DRV_NAME
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02001970 " %s: Completion Status: stat %x, "
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001971 "err %x, nsect %x\n",
Sam Bradshaw88523a62011-08-30 08:34:26 -06001972 __func__,
1973 command[0],
1974 command[1],
1975 command[2]);
1976
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001977 if (xfer_sz) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06001978 if (copy_to_user(user_buffer,
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001979 buf,
Sam Bradshaw88523a62011-08-30 08:34:26 -06001980 ATA_SECT_SIZE * command[3])) {
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001981 rv = -EFAULT;
1982 goto exit_drive_command;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001983 }
1984 }
Asai Thambi S Pe602878f2012-05-29 18:43:31 -07001985exit_drive_command:
1986 if (buf)
1987 dmam_free_coherent(&port->dd->pdev->dev,
1988 ATA_SECT_SIZE * xfer_sz, buf, dma_addr);
1989 return rv;
Sam Bradshaw88523a62011-08-30 08:34:26 -06001990}
1991
1992/*
1993 * Indicates whether a command has a single sector payload.
1994 *
1995 * @command passed to the device to perform the certain event.
1996 * @features passed to the device to perform the certain event.
1997 *
1998 * return value
1999 * 1 command is one that always has a single sector payload,
2000 * regardless of the value in the Sector Count field.
2001 * 0 otherwise
2002 *
2003 */
2004static unsigned int implicit_sector(unsigned char command,
2005 unsigned char features)
2006{
2007 unsigned int rv = 0;
2008
2009 /* list of commands that have an implicit sector count of 1 */
2010 switch (command) {
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002011 case ATA_CMD_SEC_SET_PASS:
2012 case ATA_CMD_SEC_UNLOCK:
2013 case ATA_CMD_SEC_ERASE_PREP:
2014 case ATA_CMD_SEC_ERASE_UNIT:
2015 case ATA_CMD_SEC_FREEZE_LOCK:
2016 case ATA_CMD_SEC_DISABLE_PASS:
2017 case ATA_CMD_PMP_READ:
2018 case ATA_CMD_PMP_WRITE:
Sam Bradshaw88523a62011-08-30 08:34:26 -06002019 rv = 1;
2020 break;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002021 case ATA_CMD_SET_MAX:
2022 if (features == ATA_SET_MAX_UNLOCK)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002023 rv = 1;
2024 break;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002025 case ATA_CMD_SMART:
2026 if ((features == ATA_SMART_READ_VALUES) ||
2027 (features == ATA_SMART_READ_THRESHOLDS))
Sam Bradshaw88523a62011-08-30 08:34:26 -06002028 rv = 1;
2029 break;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002030 case ATA_CMD_CONF_OVERLAY:
2031 if ((features == ATA_DCO_IDENTIFY) ||
2032 (features == ATA_DCO_SET))
Sam Bradshaw88523a62011-08-30 08:34:26 -06002033 rv = 1;
2034 break;
2035 }
2036 return rv;
2037}
Selvan Mani4453bc82012-09-27 14:36:43 +02002038static void mtip_set_timeout(struct driver_data *dd,
2039 struct host_to_dev_fis *fis,
2040 unsigned int *timeout, u8 erasemode)
Asai Thambi S P2df7aa92012-05-29 18:41:23 -07002041{
2042 switch (fis->command) {
2043 case ATA_CMD_DOWNLOAD_MICRO:
2044 *timeout = 120000; /* 2 minutes */
2045 break;
2046 case ATA_CMD_SEC_ERASE_UNIT:
2047 case 0xFC:
Selvan Mani4453bc82012-09-27 14:36:43 +02002048 if (erasemode)
2049 *timeout = ((*(dd->port->identify + 90) * 2) * 60000);
2050 else
2051 *timeout = ((*(dd->port->identify + 89) * 2) * 60000);
Asai Thambi S P2df7aa92012-05-29 18:41:23 -07002052 break;
2053 case ATA_CMD_STANDBYNOW1:
Asai Thambi S Pd7c8b942012-09-05 22:02:16 +05302054 *timeout = 120000; /* 2 minutes */
Asai Thambi S P2df7aa92012-05-29 18:41:23 -07002055 break;
2056 case 0xF7:
2057 case 0xFA:
2058 *timeout = 60000; /* 60 seconds */
2059 break;
2060 case ATA_CMD_SMART:
2061 *timeout = 15000; /* 15 seconds */
2062 break;
2063 default:
2064 *timeout = MTIP_IOCTL_COMMAND_TIMEOUT_MS;
2065 break;
2066 }
2067}
2068
Sam Bradshaw88523a62011-08-30 08:34:26 -06002069/*
2070 * Executes a taskfile
2071 * See ide_taskfile_ioctl() for derivation
2072 */
2073static int exec_drive_taskfile(struct driver_data *dd,
Jens Axboeef0f1582011-09-27 21:19:53 -06002074 void __user *buf,
2075 ide_task_request_t *req_task,
2076 int outtotal)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002077{
2078 struct host_to_dev_fis fis;
2079 struct host_to_dev_fis *reply;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002080 u8 *outbuf = NULL;
2081 u8 *inbuf = NULL;
Jens Axboe16d02c02011-09-27 15:50:01 -06002082 dma_addr_t outbuf_dma = 0;
2083 dma_addr_t inbuf_dma = 0;
2084 dma_addr_t dma_buffer = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002085 int err = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002086 unsigned int taskin = 0;
2087 unsigned int taskout = 0;
2088 u8 nsect = 0;
Asai Thambi S P2df7aa92012-05-29 18:41:23 -07002089 unsigned int timeout;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002090 unsigned int force_single_sector;
2091 unsigned int transfer_size;
2092 unsigned long task_file_data;
Jens Axboeef0f1582011-09-27 21:19:53 -06002093 int intotal = outtotal + req_task->out_size;
Selvan Mani4453bc82012-09-27 14:36:43 +02002094 int erasemode = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002095
2096 taskout = req_task->out_size;
2097 taskin = req_task->in_size;
2098 /* 130560 = 512 * 0xFF*/
2099 if (taskin > 130560 || taskout > 130560) {
2100 err = -EINVAL;
2101 goto abort;
2102 }
2103
2104 if (taskout) {
2105 outbuf = kzalloc(taskout, GFP_KERNEL);
2106 if (outbuf == NULL) {
2107 err = -ENOMEM;
2108 goto abort;
2109 }
2110 if (copy_from_user(outbuf, buf + outtotal, taskout)) {
2111 err = -EFAULT;
2112 goto abort;
2113 }
2114 outbuf_dma = pci_map_single(dd->pdev,
2115 outbuf,
2116 taskout,
2117 DMA_TO_DEVICE);
Jens Axboe16d02c02011-09-27 15:50:01 -06002118 if (outbuf_dma == 0) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06002119 err = -ENOMEM;
2120 goto abort;
2121 }
2122 dma_buffer = outbuf_dma;
2123 }
2124
2125 if (taskin) {
2126 inbuf = kzalloc(taskin, GFP_KERNEL);
2127 if (inbuf == NULL) {
2128 err = -ENOMEM;
2129 goto abort;
2130 }
2131
2132 if (copy_from_user(inbuf, buf + intotal, taskin)) {
2133 err = -EFAULT;
2134 goto abort;
2135 }
2136 inbuf_dma = pci_map_single(dd->pdev,
2137 inbuf,
2138 taskin, DMA_FROM_DEVICE);
Jens Axboe16d02c02011-09-27 15:50:01 -06002139 if (inbuf_dma == 0) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06002140 err = -ENOMEM;
2141 goto abort;
2142 }
2143 dma_buffer = inbuf_dma;
2144 }
2145
2146 /* only supports PIO and non-data commands from this ioctl. */
2147 switch (req_task->data_phase) {
2148 case TASKFILE_OUT:
2149 nsect = taskout / ATA_SECT_SIZE;
2150 reply = (dd->port->rxfis + RX_FIS_PIO_SETUP);
2151 break;
2152 case TASKFILE_IN:
2153 reply = (dd->port->rxfis + RX_FIS_PIO_SETUP);
2154 break;
2155 case TASKFILE_NO_DATA:
2156 reply = (dd->port->rxfis + RX_FIS_D2H_REG);
2157 break;
2158 default:
2159 err = -EINVAL;
2160 goto abort;
2161 }
2162
Sam Bradshaw88523a62011-08-30 08:34:26 -06002163 /* Build the FIS. */
2164 memset(&fis, 0, sizeof(struct host_to_dev_fis));
2165
2166 fis.type = 0x27;
2167 fis.opts = 1 << 7;
2168 fis.command = req_task->io_ports[7];
2169 fis.features = req_task->io_ports[1];
2170 fis.sect_count = req_task->io_ports[2];
2171 fis.lba_low = req_task->io_ports[3];
2172 fis.lba_mid = req_task->io_ports[4];
2173 fis.lba_hi = req_task->io_ports[5];
2174 /* Clear the dev bit*/
2175 fis.device = req_task->io_ports[6] & ~0x10;
2176
2177 if ((req_task->in_flags.all == 0) && (req_task->out_flags.all & 1)) {
2178 req_task->in_flags.all =
2179 IDE_TASKFILE_STD_IN_FLAGS |
2180 (IDE_HOB_STD_IN_FLAGS << 8);
2181 fis.lba_low_ex = req_task->hob_ports[3];
2182 fis.lba_mid_ex = req_task->hob_ports[4];
2183 fis.lba_hi_ex = req_task->hob_ports[5];
2184 fis.features_ex = req_task->hob_ports[1];
2185 fis.sect_cnt_ex = req_task->hob_ports[2];
2186
2187 } else {
2188 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
2189 }
2190
2191 force_single_sector = implicit_sector(fis.command, fis.features);
2192
2193 if ((taskin || taskout) && (!fis.sect_count)) {
2194 if (nsect)
2195 fis.sect_count = nsect;
2196 else {
2197 if (!force_single_sector) {
2198 dev_warn(&dd->pdev->dev,
2199 "data movement but "
2200 "sect_count is 0\n");
Sam Bradshaw88523a62011-08-30 08:34:26 -06002201 err = -EINVAL;
2202 goto abort;
2203 }
2204 }
2205 }
2206
2207 dbg_printk(MTIP_DRV_NAME
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002208 " %s: cmd %x, feat %x, nsect %x,"
Sam Bradshaw88523a62011-08-30 08:34:26 -06002209 " sect/lbal %x, lcyl/lbam %x, hcyl/lbah %x,"
2210 " head/dev %x\n",
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002211 __func__,
Sam Bradshaw88523a62011-08-30 08:34:26 -06002212 fis.command,
2213 fis.features,
2214 fis.sect_count,
2215 fis.lba_low,
2216 fis.lba_mid,
2217 fis.lba_hi,
2218 fis.device);
2219
Selvan Mani4453bc82012-09-27 14:36:43 +02002220 /* check for erase mode support during secure erase.*/
Selvan Mani32087952012-11-07 06:03:37 -07002221 if ((fis.command == ATA_CMD_SEC_ERASE_UNIT) && outbuf &&
2222 (outbuf[0] & MTIP_SEC_ERASE_MODE)) {
Selvan Mani4453bc82012-09-27 14:36:43 +02002223 erasemode = 1;
2224 }
2225
2226 mtip_set_timeout(dd, &fis, &timeout, erasemode);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002227
2228 /* Determine the correct transfer size.*/
2229 if (force_single_sector)
2230 transfer_size = ATA_SECT_SIZE;
2231 else
2232 transfer_size = ATA_SECT_SIZE * fis.sect_count;
2233
2234 /* Execute the command.*/
2235 if (mtip_exec_internal_command(dd->port,
2236 &fis,
2237 5,
2238 dma_buffer,
2239 transfer_size,
2240 0,
2241 GFP_KERNEL,
2242 timeout) < 0) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06002243 err = -EIO;
2244 goto abort;
2245 }
2246
2247 task_file_data = readl(dd->port->mmio+PORT_TFDATA);
2248
2249 if ((req_task->data_phase == TASKFILE_IN) && !(task_file_data & 1)) {
2250 reply = dd->port->rxfis + RX_FIS_PIO_SETUP;
2251 req_task->io_ports[7] = reply->control;
2252 } else {
2253 reply = dd->port->rxfis + RX_FIS_D2H_REG;
2254 req_task->io_ports[7] = reply->command;
2255 }
2256
2257 /* reclaim the DMA buffers.*/
2258 if (inbuf_dma)
2259 pci_unmap_single(dd->pdev, inbuf_dma,
2260 taskin, DMA_FROM_DEVICE);
2261 if (outbuf_dma)
2262 pci_unmap_single(dd->pdev, outbuf_dma,
2263 taskout, DMA_TO_DEVICE);
Jens Axboe16d02c02011-09-27 15:50:01 -06002264 inbuf_dma = 0;
2265 outbuf_dma = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002266
2267 /* return the ATA registers to the caller.*/
2268 req_task->io_ports[1] = reply->features;
2269 req_task->io_ports[2] = reply->sect_count;
2270 req_task->io_ports[3] = reply->lba_low;
2271 req_task->io_ports[4] = reply->lba_mid;
2272 req_task->io_ports[5] = reply->lba_hi;
2273 req_task->io_ports[6] = reply->device;
2274
2275 if (req_task->out_flags.all & 1) {
2276
2277 req_task->hob_ports[3] = reply->lba_low_ex;
2278 req_task->hob_ports[4] = reply->lba_mid_ex;
2279 req_task->hob_ports[5] = reply->lba_hi_ex;
2280 req_task->hob_ports[1] = reply->features_ex;
2281 req_task->hob_ports[2] = reply->sect_cnt_ex;
2282 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06002283 dbg_printk(MTIP_DRV_NAME
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002284 " %s: Completion: stat %x,"
Sam Bradshaw88523a62011-08-30 08:34:26 -06002285 "err %x, sect_cnt %x, lbalo %x,"
2286 "lbamid %x, lbahi %x, dev %x\n",
2287 __func__,
2288 req_task->io_ports[7],
2289 req_task->io_ports[1],
2290 req_task->io_ports[2],
2291 req_task->io_ports[3],
2292 req_task->io_ports[4],
2293 req_task->io_ports[5],
2294 req_task->io_ports[6]);
2295
Sam Bradshaw88523a62011-08-30 08:34:26 -06002296 if (taskout) {
2297 if (copy_to_user(buf + outtotal, outbuf, taskout)) {
2298 err = -EFAULT;
2299 goto abort;
2300 }
2301 }
2302 if (taskin) {
2303 if (copy_to_user(buf + intotal, inbuf, taskin)) {
2304 err = -EFAULT;
2305 goto abort;
2306 }
2307 }
2308abort:
2309 if (inbuf_dma)
2310 pci_unmap_single(dd->pdev, inbuf_dma,
2311 taskin, DMA_FROM_DEVICE);
2312 if (outbuf_dma)
2313 pci_unmap_single(dd->pdev, outbuf_dma,
2314 taskout, DMA_TO_DEVICE);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002315 kfree(outbuf);
2316 kfree(inbuf);
2317
2318 return err;
2319}
2320
2321/*
2322 * Handle IOCTL calls from the Block Layer.
2323 *
2324 * This function is called by the Block Layer when it receives an IOCTL
2325 * command that it does not understand. If the IOCTL command is not supported
2326 * this function returns -ENOTTY.
2327 *
2328 * @dd Pointer to the driver data structure.
2329 * @cmd IOCTL command passed from the Block Layer.
2330 * @arg IOCTL argument passed from the Block Layer.
2331 *
2332 * return value
2333 * 0 The IOCTL completed successfully.
2334 * -ENOTTY The specified command is not supported.
2335 * -EFAULT An error occurred copying data to a user space buffer.
2336 * -EIO An error occurred while executing the command.
2337 */
Jens Axboeef0f1582011-09-27 21:19:53 -06002338static int mtip_hw_ioctl(struct driver_data *dd, unsigned int cmd,
2339 unsigned long arg)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002340{
2341 switch (cmd) {
2342 case HDIO_GET_IDENTITY:
Asai Thambi S P971890f2012-05-29 18:41:47 -07002343 {
2344 if (copy_to_user((void __user *)arg, dd->port->identify,
2345 sizeof(u16) * ATA_ID_WORDS))
2346 return -EFAULT;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002347 break;
Asai Thambi S P971890f2012-05-29 18:41:47 -07002348 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06002349 case HDIO_DRIVE_CMD:
2350 {
2351 u8 drive_command[4];
2352
2353 /* Copy the user command info to our buffer. */
2354 if (copy_from_user(drive_command,
2355 (void __user *) arg,
2356 sizeof(drive_command)))
2357 return -EFAULT;
2358
2359 /* Execute the drive command. */
2360 if (exec_drive_command(dd->port,
2361 drive_command,
2362 (void __user *) (arg+4)))
2363 return -EIO;
2364
2365 /* Copy the status back to the users buffer. */
2366 if (copy_to_user((void __user *) arg,
2367 drive_command,
2368 sizeof(drive_command)))
2369 return -EFAULT;
2370
2371 break;
2372 }
2373 case HDIO_DRIVE_TASK:
2374 {
2375 u8 drive_command[7];
2376
2377 /* Copy the user command info to our buffer. */
2378 if (copy_from_user(drive_command,
2379 (void __user *) arg,
2380 sizeof(drive_command)))
2381 return -EFAULT;
2382
2383 /* Execute the drive command. */
2384 if (exec_drive_task(dd->port, drive_command))
2385 return -EIO;
2386
2387 /* Copy the status back to the users buffer. */
2388 if (copy_to_user((void __user *) arg,
2389 drive_command,
2390 sizeof(drive_command)))
2391 return -EFAULT;
2392
2393 break;
2394 }
Jens Axboeef0f1582011-09-27 21:19:53 -06002395 case HDIO_DRIVE_TASKFILE: {
2396 ide_task_request_t req_task;
2397 int ret, outtotal;
2398
2399 if (copy_from_user(&req_task, (void __user *) arg,
2400 sizeof(req_task)))
2401 return -EFAULT;
2402
2403 outtotal = sizeof(req_task);
2404
2405 ret = exec_drive_taskfile(dd, (void __user *) arg,
2406 &req_task, outtotal);
2407
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002408 if (copy_to_user((void __user *) arg, &req_task,
2409 sizeof(req_task)))
Jens Axboeef0f1582011-09-27 21:19:53 -06002410 return -EFAULT;
2411
2412 return ret;
2413 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06002414
2415 default:
2416 return -EINVAL;
2417 }
2418 return 0;
2419}
2420
2421/*
2422 * Submit an IO to the hw
2423 *
2424 * This function is called by the block layer to issue an io
2425 * to the device. Upon completion, the callback function will
2426 * be called with the data parameter passed as the callback data.
2427 *
2428 * @dd Pointer to the driver data structure.
2429 * @start First sector to read.
2430 * @nsect Number of sectors to read.
2431 * @nents Number of entries in scatter list for the read command.
2432 * @tag The tag of this read command.
2433 * @callback Pointer to the function that should be called
2434 * when the read completes.
2435 * @data Callback data passed to the callback function
2436 * when the read completes.
Sam Bradshaw88523a62011-08-30 08:34:26 -06002437 * @dir Direction (read or write)
2438 *
2439 * return value
2440 * None
2441 */
Jens Axboe63166682011-09-27 21:27:43 -06002442static void mtip_hw_submit_io(struct driver_data *dd, sector_t start,
2443 int nsect, int nents, int tag, void *callback,
Asai Thambi S P4e8670e2012-02-07 07:54:31 +01002444 void *data, int dir)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002445{
2446 struct host_to_dev_fis *fis;
2447 struct mtip_port *port = dd->port;
2448 struct mtip_cmd *command = &port->commands[tag];
Asai Thambi S P45038362012-04-09 08:35:38 +02002449 int dma_dir = (dir == READ) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002450
2451 /* Map the scatter list for DMA access */
Asai Thambi S P45038362012-04-09 08:35:38 +02002452 nents = dma_map_sg(&dd->pdev->dev, command->sg, nents, dma_dir);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002453
2454 command->scatter_ents = nents;
2455
2456 /*
2457 * The number of retries for this command before it is
2458 * reported as a failure to the upper layers.
2459 */
2460 command->retries = MTIP_MAX_RETRIES;
2461
2462 /* Fill out fis */
2463 fis = command->command;
2464 fis->type = 0x27;
2465 fis->opts = 1 << 7;
2466 fis->command =
2467 (dir == READ ? ATA_CMD_FPDMA_READ : ATA_CMD_FPDMA_WRITE);
Selvan Manieda45312012-11-07 06:03:53 -07002468 fis->lba_low = start & 0xFF;
2469 fis->lba_mid = (start >> 8) & 0xFF;
2470 fis->lba_hi = (start >> 16) & 0xFF;
2471 fis->lba_low_ex = (start >> 24) & 0xFF;
2472 fis->lba_mid_ex = (start >> 32) & 0xFF;
2473 fis->lba_hi_ex = (start >> 40) & 0xFF;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002474 fis->device = 1 << 6;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002475 fis->features = nsect & 0xFF;
2476 fis->features_ex = (nsect >> 8) & 0xFF;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002477 fis->sect_count = ((tag << 3) | (tag >> 5));
2478 fis->sect_cnt_ex = 0;
2479 fis->control = 0;
2480 fis->res2 = 0;
2481 fis->res3 = 0;
2482 fill_command_sg(dd, command, nents);
2483
2484 /* Populate the command header */
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002485 command->command_header->opts =
2486 __force_bit2int cpu_to_le32(
2487 (nents << 16) | 5 | AHCI_CMD_PREFETCH);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002488 command->command_header->byte_count = 0;
2489
2490 /*
2491 * Set the completion function and data for the command
2492 * within this layer.
2493 */
2494 command->comp_data = dd;
2495 command->comp_func = mtip_async_complete;
Asai Thambi S P45038362012-04-09 08:35:38 +02002496 command->direction = dma_dir;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002497
2498 /*
2499 * Set the completion function and data for the command passed
2500 * from the upper layer.
2501 */
2502 command->async_data = data;
2503 command->async_callback = callback;
2504
2505 /*
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002506 * To prevent this command from being issued
2507 * if an internal command is in progress or error handling is active.
Sam Bradshaw88523a62011-08-30 08:34:26 -06002508 */
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002509 if (port->flags & MTIP_PF_PAUSE_IO) {
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002510 set_bit(tag, port->cmds_to_issue);
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002511 set_bit(MTIP_PF_ISSUE_CMDS_BIT, &port->flags);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002512 return;
2513 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06002514
2515 /* Issue the command to the hardware */
2516 mtip_issue_ncq_command(port, tag);
2517
Asai Thambi S Pdad40f12012-04-09 08:35:38 +02002518 return;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002519}
2520
2521/*
2522 * Release a command slot.
2523 *
2524 * @dd Pointer to the driver data structure.
2525 * @tag Slot tag
2526 *
2527 * return value
2528 * None
2529 */
Jens Axboe63166682011-09-27 21:27:43 -06002530static void mtip_hw_release_scatterlist(struct driver_data *dd, int tag)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002531{
2532 release_slot(dd->port, tag);
2533}
2534
2535/*
2536 * Obtain a command slot and return its associated scatter list.
2537 *
2538 * @dd Pointer to the driver data structure.
2539 * @tag Pointer to an int that will receive the allocated command
2540 * slot tag.
2541 *
2542 * return value
2543 * Pointer to the scatter list for the allocated command slot
2544 * or NULL if no command slots are available.
2545 */
Jens Axboe63166682011-09-27 21:27:43 -06002546static struct scatterlist *mtip_hw_get_scatterlist(struct driver_data *dd,
2547 int *tag)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002548{
2549 /*
2550 * It is possible that, even with this semaphore, a thread
2551 * may think that no command slots are available. Therefore, we
2552 * need to make an attempt to get_slot().
2553 */
2554 down(&dd->port->cmd_slot);
2555 *tag = get_slot(dd->port);
2556
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002557 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag))) {
Asai Thambi S P45038362012-04-09 08:35:38 +02002558 up(&dd->port->cmd_slot);
2559 return NULL;
2560 }
Asai Thambi S Pa09ba132012-04-16 21:27:55 +02002561 if (unlikely(*tag < 0)) {
2562 up(&dd->port->cmd_slot);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002563 return NULL;
Asai Thambi S Pa09ba132012-04-16 21:27:55 +02002564 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06002565
2566 return dd->port->commands[*tag].sg;
2567}
2568
2569/*
Asai Thambi S P7412ff12012-06-04 12:43:03 -07002570 * Sysfs status dump.
Sam Bradshaw88523a62011-08-30 08:34:26 -06002571 *
2572 * @dev Pointer to the device structure, passed by the kernrel.
2573 * @attr Pointer to the device_attribute structure passed by the kernel.
2574 * @buf Pointer to the char buffer that will receive the stats info.
2575 *
2576 * return value
2577 * The size, in bytes, of the data copied into buf.
2578 */
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002579static ssize_t mtip_hw_show_status(struct device *dev,
2580 struct device_attribute *attr,
2581 char *buf)
2582{
2583 struct driver_data *dd = dev_to_disk(dev)->private_data;
2584 int size = 0;
2585
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002586 if (test_bit(MTIP_DDF_OVER_TEMP_BIT, &dd->dd_flag))
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002587 size += sprintf(buf, "%s", "thermal_shutdown\n");
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002588 else if (test_bit(MTIP_DDF_WRITE_PROTECT_BIT, &dd->dd_flag))
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002589 size += sprintf(buf, "%s", "write_protect\n");
2590 else
2591 size += sprintf(buf, "%s", "online\n");
2592
2593 return size;
2594}
2595
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002596static DEVICE_ATTR(status, S_IRUGO, mtip_hw_show_status, NULL);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002597
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002598static ssize_t mtip_hw_read_registers(struct file *f, char __user *ubuf,
2599 size_t len, loff_t *offset)
2600{
2601 struct driver_data *dd = (struct driver_data *)f->private_data;
2602 char buf[MTIP_DFS_MAX_BUF_SIZE];
2603 u32 group_allocated;
2604 int size = *offset;
2605 int n;
2606
2607 if (!len || size)
2608 return 0;
2609
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002610 size += sprintf(&buf[size], "H/ S ACTive : [ 0x");
2611
2612 for (n = dd->slot_groups-1; n >= 0; n--)
2613 size += sprintf(&buf[size], "%08X ",
2614 readl(dd->port->s_active[n]));
2615
2616 size += sprintf(&buf[size], "]\n");
2617 size += sprintf(&buf[size], "H/ Command Issue : [ 0x");
2618
2619 for (n = dd->slot_groups-1; n >= 0; n--)
2620 size += sprintf(&buf[size], "%08X ",
2621 readl(dd->port->cmd_issue[n]));
2622
2623 size += sprintf(&buf[size], "]\n");
2624 size += sprintf(&buf[size], "H/ Completed : [ 0x");
2625
2626 for (n = dd->slot_groups-1; n >= 0; n--)
2627 size += sprintf(&buf[size], "%08X ",
2628 readl(dd->port->completed[n]));
2629
2630 size += sprintf(&buf[size], "]\n");
2631 size += sprintf(&buf[size], "H/ PORT IRQ STAT : [ 0x%08X ]\n",
2632 readl(dd->port->mmio + PORT_IRQ_STAT));
2633 size += sprintf(&buf[size], "H/ HOST IRQ STAT : [ 0x%08X ]\n",
2634 readl(dd->mmio + HOST_IRQ_STAT));
2635 size += sprintf(&buf[size], "\n");
2636
2637 size += sprintf(&buf[size], "L/ Allocated : [ 0x");
2638
2639 for (n = dd->slot_groups-1; n >= 0; n--) {
2640 if (sizeof(long) > sizeof(u32))
2641 group_allocated =
2642 dd->port->allocated[n/2] >> (32*(n&1));
2643 else
2644 group_allocated = dd->port->allocated[n];
2645 size += sprintf(&buf[size], "%08X ", group_allocated);
2646 }
2647 size += sprintf(&buf[size], "]\n");
2648
2649 size += sprintf(&buf[size], "L/ Commands in Q : [ 0x");
2650
2651 for (n = dd->slot_groups-1; n >= 0; n--) {
2652 if (sizeof(long) > sizeof(u32))
2653 group_allocated =
2654 dd->port->cmds_to_issue[n/2] >> (32*(n&1));
2655 else
2656 group_allocated = dd->port->cmds_to_issue[n];
2657 size += sprintf(&buf[size], "%08X ", group_allocated);
2658 }
2659 size += sprintf(&buf[size], "]\n");
2660
2661 *offset = size <= len ? size : len;
2662 size = copy_to_user(ubuf, buf, *offset);
2663 if (size)
2664 return -EFAULT;
2665
2666 return *offset;
2667}
2668
2669static ssize_t mtip_hw_read_flags(struct file *f, char __user *ubuf,
2670 size_t len, loff_t *offset)
2671{
2672 struct driver_data *dd = (struct driver_data *)f->private_data;
2673 char buf[MTIP_DFS_MAX_BUF_SIZE];
2674 int size = *offset;
2675
2676 if (!len || size)
2677 return 0;
2678
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002679 size += sprintf(&buf[size], "Flag-port : [ %08lX ]\n",
2680 dd->port->flags);
2681 size += sprintf(&buf[size], "Flag-dd : [ %08lX ]\n",
2682 dd->dd_flag);
2683
2684 *offset = size <= len ? size : len;
2685 size = copy_to_user(ubuf, buf, *offset);
2686 if (size)
2687 return -EFAULT;
2688
2689 return *offset;
2690}
2691
2692static const struct file_operations mtip_regs_fops = {
2693 .owner = THIS_MODULE,
2694 .open = simple_open,
2695 .read = mtip_hw_read_registers,
2696 .llseek = no_llseek,
2697};
2698
2699static const struct file_operations mtip_flags_fops = {
2700 .owner = THIS_MODULE,
2701 .open = simple_open,
2702 .read = mtip_hw_read_flags,
2703 .llseek = no_llseek,
2704};
2705
Sam Bradshaw88523a62011-08-30 08:34:26 -06002706/*
2707 * Create the sysfs related attributes.
2708 *
2709 * @dd Pointer to the driver data structure.
2710 * @kobj Pointer to the kobj for the block device.
2711 *
2712 * return value
2713 * 0 Operation completed successfully.
2714 * -EINVAL Invalid parameter.
2715 */
Jens Axboe63166682011-09-27 21:27:43 -06002716static int mtip_hw_sysfs_init(struct driver_data *dd, struct kobject *kobj)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002717{
2718 if (!kobj || !dd)
2719 return -EINVAL;
2720
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002721 if (sysfs_create_file(kobj, &dev_attr_status.attr))
2722 dev_warn(&dd->pdev->dev,
2723 "Error creating 'status' sysfs entry\n");
Sam Bradshaw88523a62011-08-30 08:34:26 -06002724 return 0;
2725}
2726
2727/*
2728 * Remove the sysfs related attributes.
2729 *
2730 * @dd Pointer to the driver data structure.
2731 * @kobj Pointer to the kobj for the block device.
2732 *
2733 * return value
2734 * 0 Operation completed successfully.
2735 * -EINVAL Invalid parameter.
2736 */
Jens Axboe63166682011-09-27 21:27:43 -06002737static int mtip_hw_sysfs_exit(struct driver_data *dd, struct kobject *kobj)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002738{
2739 if (!kobj || !dd)
2740 return -EINVAL;
2741
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002742 sysfs_remove_file(kobj, &dev_attr_status.attr);
Sam Bradshaw88523a62011-08-30 08:34:26 -06002743
2744 return 0;
2745}
2746
Asai Thambi S P7b421d22012-06-04 12:44:02 -07002747static int mtip_hw_debugfs_init(struct driver_data *dd)
2748{
2749 if (!dfs_parent)
2750 return -1;
2751
2752 dd->dfs_node = debugfs_create_dir(dd->disk->disk_name, dfs_parent);
2753 if (IS_ERR_OR_NULL(dd->dfs_node)) {
2754 dev_warn(&dd->pdev->dev,
2755 "Error creating node %s under debugfs\n",
2756 dd->disk->disk_name);
2757 dd->dfs_node = NULL;
2758 return -1;
2759 }
2760
2761 debugfs_create_file("flags", S_IRUGO, dd->dfs_node, dd,
2762 &mtip_flags_fops);
2763 debugfs_create_file("registers", S_IRUGO, dd->dfs_node, dd,
2764 &mtip_regs_fops);
2765
2766 return 0;
2767}
2768
2769static void mtip_hw_debugfs_exit(struct driver_data *dd)
2770{
2771 debugfs_remove_recursive(dd->dfs_node);
2772}
2773
2774
Sam Bradshaw88523a62011-08-30 08:34:26 -06002775/*
2776 * Perform any init/resume time hardware setup
2777 *
2778 * @dd Pointer to the driver data structure.
2779 *
2780 * return value
2781 * None
2782 */
2783static inline void hba_setup(struct driver_data *dd)
2784{
2785 u32 hwdata;
2786 hwdata = readl(dd->mmio + HOST_HSORG);
2787
2788 /* interrupt bug workaround: use only 1 IS bit.*/
2789 writel(hwdata |
2790 HSORG_DISABLE_SLOTGRP_INTR |
2791 HSORG_DISABLE_SLOTGRP_PXIS,
2792 dd->mmio + HOST_HSORG);
2793}
2794
2795/*
2796 * Detect the details of the product, and store anything needed
2797 * into the driver data structure. This includes product type and
2798 * version and number of slot groups.
2799 *
2800 * @dd Pointer to the driver data structure.
2801 *
2802 * return value
2803 * None
2804 */
2805static void mtip_detect_product(struct driver_data *dd)
2806{
2807 u32 hwdata;
2808 unsigned int rev, slotgroups;
2809
2810 /*
2811 * HBA base + 0xFC [15:0] - vendor-specific hardware interface
2812 * info register:
2813 * [15:8] hardware/software interface rev#
2814 * [ 3] asic-style interface
2815 * [ 2:0] number of slot groups, minus 1 (only valid for asic-style).
2816 */
2817 hwdata = readl(dd->mmio + HOST_HSORG);
2818
2819 dd->product_type = MTIP_PRODUCT_UNKNOWN;
2820 dd->slot_groups = 1;
2821
2822 if (hwdata & 0x8) {
2823 dd->product_type = MTIP_PRODUCT_ASICFPGA;
2824 rev = (hwdata & HSORG_HWREV) >> 8;
2825 slotgroups = (hwdata & HSORG_SLOTGROUPS) + 1;
2826 dev_info(&dd->pdev->dev,
2827 "ASIC-FPGA design, HS rev 0x%x, "
2828 "%i slot groups [%i slots]\n",
2829 rev,
2830 slotgroups,
2831 slotgroups * 32);
2832
2833 if (slotgroups > MTIP_MAX_SLOT_GROUPS) {
2834 dev_warn(&dd->pdev->dev,
2835 "Warning: driver only supports "
2836 "%i slot groups.\n", MTIP_MAX_SLOT_GROUPS);
2837 slotgroups = MTIP_MAX_SLOT_GROUPS;
2838 }
2839 dd->slot_groups = slotgroups;
2840 return;
2841 }
2842
2843 dev_warn(&dd->pdev->dev, "Unrecognized product id\n");
2844}
2845
2846/*
2847 * Blocking wait for FTL rebuild to complete
2848 *
2849 * @dd Pointer to the DRIVER_DATA structure.
2850 *
2851 * return value
2852 * 0 FTL rebuild completed successfully
2853 * -EFAULT FTL rebuild error/timeout/interruption
2854 */
2855static int mtip_ftl_rebuild_poll(struct driver_data *dd)
2856{
2857 unsigned long timeout, cnt = 0, start;
2858
2859 dev_warn(&dd->pdev->dev,
2860 "FTL rebuild in progress. Polling for completion.\n");
2861
2862 start = jiffies;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002863 timeout = jiffies + msecs_to_jiffies(MTIP_FTL_REBUILD_TIMEOUT_MS);
2864
2865 do {
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002866 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
Asai Thambi S P45038362012-04-09 08:35:38 +02002867 &dd->dd_flag)))
2868 return -EFAULT;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002869 if (mtip_check_surprise_removal(dd->pdev))
2870 return -EFAULT;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002871
Sam Bradshaw88523a62011-08-30 08:34:26 -06002872 if (mtip_get_identify(dd->port, NULL) < 0)
2873 return -EFAULT;
2874
2875 if (*(dd->port->identify + MTIP_FTL_REBUILD_OFFSET) ==
2876 MTIP_FTL_REBUILD_MAGIC) {
2877 ssleep(1);
2878 /* Print message every 3 minutes */
2879 if (cnt++ >= 180) {
2880 dev_warn(&dd->pdev->dev,
2881 "FTL rebuild in progress (%d secs).\n",
2882 jiffies_to_msecs(jiffies - start) / 1000);
2883 cnt = 0;
2884 }
2885 } else {
2886 dev_warn(&dd->pdev->dev,
2887 "FTL rebuild complete (%d secs).\n",
2888 jiffies_to_msecs(jiffies - start) / 1000);
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01002889 mtip_block_initialize(dd);
Asai Thambi S P45038362012-04-09 08:35:38 +02002890 return 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002891 }
2892 ssleep(10);
2893 } while (time_before(jiffies, timeout));
2894
2895 /* Check for timeout */
Asai Thambi S P45038362012-04-09 08:35:38 +02002896 dev_err(&dd->pdev->dev,
Sam Bradshaw88523a62011-08-30 08:34:26 -06002897 "Timed out waiting for FTL rebuild to complete (%d secs).\n",
2898 jiffies_to_msecs(jiffies - start) / 1000);
Asai Thambi S P45038362012-04-09 08:35:38 +02002899 return -EFAULT;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002900}
2901
2902/*
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002903 * service thread to issue queued commands
2904 *
2905 * @data Pointer to the driver data structure.
2906 *
2907 * return value
2908 * 0
2909 */
2910
2911static int mtip_service_thread(void *data)
2912{
2913 struct driver_data *dd = (struct driver_data *)data;
2914 unsigned long slot, slot_start, slot_wrap;
2915 unsigned int num_cmd_slots = dd->slot_groups * 32;
2916 struct mtip_port *port = dd->port;
2917
2918 while (1) {
2919 /*
2920 * the condition is to check neither an internal command is
2921 * is in progress nor error handling is active
2922 */
2923 wait_event_interruptible(port->svc_wait, (port->flags) &&
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002924 !(port->flags & MTIP_PF_PAUSE_IO));
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002925
2926 if (kthread_should_stop())
2927 break;
2928
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002929 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
Asai Thambi S P45038362012-04-09 08:35:38 +02002930 &dd->dd_flag)))
2931 break;
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002932
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002933 set_bit(MTIP_PF_SVC_THD_ACTIVE_BIT, &port->flags);
2934 if (test_bit(MTIP_PF_ISSUE_CMDS_BIT, &port->flags)) {
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002935 slot = 1;
2936 /* used to restrict the loop to one iteration */
2937 slot_start = num_cmd_slots;
2938 slot_wrap = 0;
2939 while (1) {
2940 slot = find_next_bit(port->cmds_to_issue,
2941 num_cmd_slots, slot);
2942 if (slot_wrap == 1) {
2943 if ((slot_start >= slot) ||
2944 (slot >= num_cmd_slots))
2945 break;
2946 }
2947 if (unlikely(slot_start == num_cmd_slots))
2948 slot_start = slot;
2949
2950 if (unlikely(slot == num_cmd_slots)) {
2951 slot = 1;
2952 slot_wrap = 1;
2953 continue;
2954 }
2955
2956 /* Issue the command to the hardware */
2957 mtip_issue_ncq_command(port, slot);
2958
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002959 clear_bit(slot, port->cmds_to_issue);
2960 }
2961
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002962 clear_bit(MTIP_PF_ISSUE_CMDS_BIT, &port->flags);
2963 } else if (test_bit(MTIP_PF_REBUILD_BIT, &port->flags)) {
Asai Thambi S P8182b492012-04-09 08:35:38 +02002964 if (!mtip_ftl_rebuild_poll(dd))
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002965 set_bit(MTIP_DDF_REBUILD_FAILED_BIT,
Asai Thambi S P8182b492012-04-09 08:35:38 +02002966 &dd->dd_flag);
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002967 clear_bit(MTIP_PF_REBUILD_BIT, &port->flags);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002968 }
Asai Thambi S P8a857a82012-04-09 08:35:38 +02002969 clear_bit(MTIP_PF_SVC_THD_ACTIVE_BIT, &port->flags);
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01002970
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02002971 if (test_bit(MTIP_PF_SVC_THD_STOP_BIT, &port->flags))
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01002972 break;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01002973 }
2974 return 0;
2975}
2976
2977/*
Sam Bradshaw88523a62011-08-30 08:34:26 -06002978 * Called once for each card.
2979 *
2980 * @dd Pointer to the driver data structure.
2981 *
2982 * return value
2983 * 0 on success, else an error code.
2984 */
Jens Axboe63166682011-09-27 21:27:43 -06002985static int mtip_hw_init(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06002986{
2987 int i;
2988 int rv;
2989 unsigned int num_command_slots;
Asai Thambi S P45038362012-04-09 08:35:38 +02002990 unsigned long timeout, timetaken;
Asai Thambi S Pf6587212012-04-09 08:35:38 +02002991 unsigned char *buf;
2992 struct smart_attr attr242;
Sam Bradshaw88523a62011-08-30 08:34:26 -06002993
2994 dd->mmio = pcim_iomap_table(dd->pdev)[MTIP_ABAR];
2995
2996 mtip_detect_product(dd);
2997 if (dd->product_type == MTIP_PRODUCT_UNKNOWN) {
2998 rv = -EIO;
2999 goto out1;
3000 }
3001 num_command_slots = dd->slot_groups * 32;
3002
3003 hba_setup(dd);
3004
Sam Bradshaw88523a62011-08-30 08:34:26 -06003005 tasklet_init(&dd->tasklet, mtip_tasklet, (unsigned long)dd);
3006
3007 dd->port = kzalloc(sizeof(struct mtip_port), GFP_KERNEL);
3008 if (!dd->port) {
3009 dev_err(&dd->pdev->dev,
3010 "Memory allocation: port structure\n");
3011 return -ENOMEM;
3012 }
3013
3014 /* Counting semaphore to track command slot usage */
3015 sema_init(&dd->port->cmd_slot, num_command_slots - 1);
3016
3017 /* Spinlock to prevent concurrent issue */
3018 spin_lock_init(&dd->port->cmd_issue_lock);
3019
3020 /* Set the port mmio base address. */
3021 dd->port->mmio = dd->mmio + PORT_OFFSET;
3022 dd->port->dd = dd;
3023
3024 /* Allocate memory for the command list. */
3025 dd->port->command_list =
3026 dmam_alloc_coherent(&dd->pdev->dev,
Asai Thambi S Pf6587212012-04-09 08:35:38 +02003027 HW_PORT_PRIV_DMA_SZ + (ATA_SECT_SIZE * 4),
Sam Bradshaw88523a62011-08-30 08:34:26 -06003028 &dd->port->command_list_dma,
3029 GFP_KERNEL);
3030 if (!dd->port->command_list) {
3031 dev_err(&dd->pdev->dev,
3032 "Memory allocation: command list\n");
3033 rv = -ENOMEM;
3034 goto out1;
3035 }
3036
3037 /* Clear the memory we have allocated. */
3038 memset(dd->port->command_list,
3039 0,
Asai Thambi S Pf6587212012-04-09 08:35:38 +02003040 HW_PORT_PRIV_DMA_SZ + (ATA_SECT_SIZE * 4));
Sam Bradshaw88523a62011-08-30 08:34:26 -06003041
3042 /* Setup the addresse of the RX FIS. */
3043 dd->port->rxfis = dd->port->command_list + HW_CMD_SLOT_SZ;
3044 dd->port->rxfis_dma = dd->port->command_list_dma + HW_CMD_SLOT_SZ;
3045
3046 /* Setup the address of the command tables. */
3047 dd->port->command_table = dd->port->rxfis + AHCI_RX_FIS_SZ;
3048 dd->port->command_tbl_dma = dd->port->rxfis_dma + AHCI_RX_FIS_SZ;
3049
3050 /* Setup the address of the identify data. */
3051 dd->port->identify = dd->port->command_table +
3052 HW_CMD_TBL_AR_SZ;
3053 dd->port->identify_dma = dd->port->command_tbl_dma +
3054 HW_CMD_TBL_AR_SZ;
3055
Asai Thambi S Pf6587212012-04-09 08:35:38 +02003056 /* Setup the address of the sector buffer - for some non-ncq cmds */
Sam Bradshaw88523a62011-08-30 08:34:26 -06003057 dd->port->sector_buffer = (void *) dd->port->identify + ATA_SECT_SIZE;
3058 dd->port->sector_buffer_dma = dd->port->identify_dma + ATA_SECT_SIZE;
3059
Asai Thambi S Pf6587212012-04-09 08:35:38 +02003060 /* Setup the address of the log buf - for read log command */
3061 dd->port->log_buf = (void *)dd->port->sector_buffer + ATA_SECT_SIZE;
3062 dd->port->log_buf_dma = dd->port->sector_buffer_dma + ATA_SECT_SIZE;
3063
3064 /* Setup the address of the smart buf - for smart read data command */
3065 dd->port->smart_buf = (void *)dd->port->log_buf + ATA_SECT_SIZE;
3066 dd->port->smart_buf_dma = dd->port->log_buf_dma + ATA_SECT_SIZE;
3067
3068
Sam Bradshaw88523a62011-08-30 08:34:26 -06003069 /* Point the command headers at the command tables. */
3070 for (i = 0; i < num_command_slots; i++) {
3071 dd->port->commands[i].command_header =
3072 dd->port->command_list +
3073 (sizeof(struct mtip_cmd_hdr) * i);
3074 dd->port->commands[i].command_header_dma =
3075 dd->port->command_list_dma +
3076 (sizeof(struct mtip_cmd_hdr) * i);
3077
3078 dd->port->commands[i].command =
3079 dd->port->command_table + (HW_CMD_TBL_SZ * i);
3080 dd->port->commands[i].command_dma =
3081 dd->port->command_tbl_dma + (HW_CMD_TBL_SZ * i);
3082
3083 if (readl(dd->mmio + HOST_CAP) & HOST_CAP_64)
3084 dd->port->commands[i].command_header->ctbau =
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003085 __force_bit2int cpu_to_le32(
Sam Bradshaw88523a62011-08-30 08:34:26 -06003086 (dd->port->commands[i].command_dma >> 16) >> 16);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003087 dd->port->commands[i].command_header->ctba =
3088 __force_bit2int cpu_to_le32(
3089 dd->port->commands[i].command_dma & 0xFFFFFFFF);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003090
3091 /*
3092 * If this is not done, a bug is reported by the stock
3093 * FC11 i386. Due to the fact that it has lots of kernel
3094 * debugging enabled.
3095 */
3096 sg_init_table(dd->port->commands[i].sg, MTIP_MAX_SG);
3097
3098 /* Mark all commands as currently inactive.*/
3099 atomic_set(&dd->port->commands[i].active, 0);
3100 }
3101
3102 /* Setup the pointers to the extended s_active and CI registers. */
3103 for (i = 0; i < dd->slot_groups; i++) {
3104 dd->port->s_active[i] =
3105 dd->port->mmio + i*0x80 + PORT_SCR_ACT;
3106 dd->port->cmd_issue[i] =
3107 dd->port->mmio + i*0x80 + PORT_COMMAND_ISSUE;
3108 dd->port->completed[i] =
3109 dd->port->mmio + i*0x80 + PORT_SDBV;
3110 }
3111
Asai Thambi S P45038362012-04-09 08:35:38 +02003112 timetaken = jiffies;
3113 timeout = jiffies + msecs_to_jiffies(30000);
3114 while (((readl(dd->port->mmio + PORT_SCR_STAT) & 0x0F) != 0x03) &&
3115 time_before(jiffies, timeout)) {
3116 mdelay(100);
3117 }
3118 if (unlikely(mtip_check_surprise_removal(dd->pdev))) {
3119 timetaken = jiffies - timetaken;
3120 dev_warn(&dd->pdev->dev,
3121 "Surprise removal detected at %u ms\n",
3122 jiffies_to_msecs(timetaken));
3123 rv = -ENODEV;
3124 goto out2 ;
3125 }
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003126 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag))) {
Asai Thambi S P45038362012-04-09 08:35:38 +02003127 timetaken = jiffies - timetaken;
3128 dev_warn(&dd->pdev->dev,
3129 "Removal detected at %u ms\n",
3130 jiffies_to_msecs(timetaken));
3131 rv = -EFAULT;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003132 goto out2;
3133 }
3134
Asai Thambi S P45038362012-04-09 08:35:38 +02003135 /* Conditionally reset the HBA. */
3136 if (!(readl(dd->mmio + HOST_CAP) & HOST_CAP_NZDMA)) {
3137 if (mtip_hba_reset(dd) < 0) {
3138 dev_err(&dd->pdev->dev,
3139 "Card did not reset within timeout\n");
3140 rv = -EIO;
3141 goto out2;
3142 }
3143 } else {
3144 /* Clear any pending interrupts on the HBA */
3145 writel(readl(dd->mmio + HOST_IRQ_STAT),
3146 dd->mmio + HOST_IRQ_STAT);
3147 }
3148
Sam Bradshaw88523a62011-08-30 08:34:26 -06003149 mtip_init_port(dd->port);
3150 mtip_start_port(dd->port);
3151
3152 /* Setup the ISR and enable interrupts. */
3153 rv = devm_request_irq(&dd->pdev->dev,
3154 dd->pdev->irq,
3155 mtip_irq_handler,
3156 IRQF_SHARED,
3157 dev_driver_string(&dd->pdev->dev),
3158 dd);
3159
3160 if (rv) {
3161 dev_err(&dd->pdev->dev,
3162 "Unable to allocate IRQ %d\n", dd->pdev->irq);
3163 goto out2;
3164 }
3165
3166 /* Enable interrupts on the HBA. */
3167 writel(readl(dd->mmio + HOST_CTL) | HOST_IRQ_EN,
3168 dd->mmio + HOST_CTL);
3169
3170 init_timer(&dd->port->cmd_timer);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003171 init_waitqueue_head(&dd->port->svc_wait);
3172
Sam Bradshaw88523a62011-08-30 08:34:26 -06003173 dd->port->cmd_timer.data = (unsigned long int) dd->port;
3174 dd->port->cmd_timer.function = mtip_timeout_function;
3175 mod_timer(&dd->port->cmd_timer,
3176 jiffies + msecs_to_jiffies(MTIP_TIMEOUT_CHECK_PERIOD));
3177
Asai Thambi S P45038362012-04-09 08:35:38 +02003178
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003179 if (test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag)) {
Asai Thambi S P45038362012-04-09 08:35:38 +02003180 rv = -EFAULT;
3181 goto out3;
3182 }
3183
Sam Bradshaw88523a62011-08-30 08:34:26 -06003184 if (mtip_get_identify(dd->port, NULL) < 0) {
3185 rv = -EFAULT;
3186 goto out3;
3187 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06003188
3189 if (*(dd->port->identify + MTIP_FTL_REBUILD_OFFSET) ==
3190 MTIP_FTL_REBUILD_MAGIC) {
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003191 set_bit(MTIP_PF_REBUILD_BIT, &dd->port->flags);
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003192 return MTIP_FTL_REBUILD_MAGIC;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003193 }
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003194 mtip_dump_identify(dd->port);
Asai Thambi S Pf6587212012-04-09 08:35:38 +02003195
3196 /* check write protect, over temp and rebuild statuses */
3197 rv = mtip_read_log_page(dd->port, ATA_LOG_SATA_NCQ,
3198 dd->port->log_buf,
3199 dd->port->log_buf_dma, 1);
3200 if (rv) {
3201 dev_warn(&dd->pdev->dev,
3202 "Error in READ LOG EXT (10h) command\n");
3203 /* non-critical error, don't fail the load */
3204 } else {
3205 buf = (unsigned char *)dd->port->log_buf;
3206 if (buf[259] & 0x1) {
3207 dev_info(&dd->pdev->dev,
3208 "Write protect bit is set.\n");
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003209 set_bit(MTIP_DDF_WRITE_PROTECT_BIT, &dd->dd_flag);
Asai Thambi S Pf6587212012-04-09 08:35:38 +02003210 }
3211 if (buf[288] == 0xF7) {
3212 dev_info(&dd->pdev->dev,
3213 "Exceeded Tmax, drive in thermal shutdown.\n");
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003214 set_bit(MTIP_DDF_OVER_TEMP_BIT, &dd->dd_flag);
Asai Thambi S Pf6587212012-04-09 08:35:38 +02003215 }
3216 if (buf[288] == 0xBF) {
3217 dev_info(&dd->pdev->dev,
3218 "Drive indicates rebuild has failed.\n");
3219 /* TODO */
3220 }
3221 }
3222
3223 /* get write protect progess */
3224 memset(&attr242, 0, sizeof(struct smart_attr));
3225 if (mtip_get_smart_attr(dd->port, 242, &attr242))
3226 dev_warn(&dd->pdev->dev,
3227 "Unable to check write protect progress\n");
3228 else
3229 dev_info(&dd->pdev->dev,
Asai Thambi S Pb62868e2012-09-05 22:03:32 +05303230 "Write protect progress: %u%% (%u blocks)\n",
3231 attr242.cur, le32_to_cpu(attr242.data));
Sam Bradshaw88523a62011-08-30 08:34:26 -06003232 return rv;
3233
3234out3:
3235 del_timer_sync(&dd->port->cmd_timer);
3236
3237 /* Disable interrupts on the HBA. */
3238 writel(readl(dd->mmio + HOST_CTL) & ~HOST_IRQ_EN,
3239 dd->mmio + HOST_CTL);
3240
3241 /*Release the IRQ. */
3242 devm_free_irq(&dd->pdev->dev, dd->pdev->irq, dd);
3243
3244out2:
3245 mtip_deinit_port(dd->port);
3246
3247 /* Free the command/command header memory. */
3248 dmam_free_coherent(&dd->pdev->dev,
Asai Thambi S Pf6587212012-04-09 08:35:38 +02003249 HW_PORT_PRIV_DMA_SZ + (ATA_SECT_SIZE * 4),
Sam Bradshaw88523a62011-08-30 08:34:26 -06003250 dd->port->command_list,
3251 dd->port->command_list_dma);
3252out1:
3253 /* Free the memory allocated for the for structure. */
3254 kfree(dd->port);
3255
3256 return rv;
3257}
3258
3259/*
3260 * Called to deinitialize an interface.
3261 *
3262 * @dd Pointer to the driver data structure.
3263 *
3264 * return value
3265 * 0
3266 */
Jens Axboe63166682011-09-27 21:27:43 -06003267static int mtip_hw_exit(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003268{
3269 /*
3270 * Send standby immediate (E0h) to the drive so that it
3271 * saves its state.
3272 */
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003273 if (!test_bit(MTIP_DDF_CLEANUP_BIT, &dd->dd_flag)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06003274
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003275 if (!test_bit(MTIP_PF_REBUILD_BIT, &dd->port->flags))
Asai Thambi S P45038362012-04-09 08:35:38 +02003276 if (mtip_standby_immediate(dd->port))
3277 dev_warn(&dd->pdev->dev,
3278 "STANDBY IMMEDIATE failed\n");
Sam Bradshaw88523a62011-08-30 08:34:26 -06003279
3280 /* de-initialize the port. */
3281 mtip_deinit_port(dd->port);
3282
3283 /* Disable interrupts on the HBA. */
3284 writel(readl(dd->mmio + HOST_CTL) & ~HOST_IRQ_EN,
3285 dd->mmio + HOST_CTL);
3286 }
3287
3288 del_timer_sync(&dd->port->cmd_timer);
3289
Sam Bradshaw88523a62011-08-30 08:34:26 -06003290 /* Release the IRQ. */
3291 devm_free_irq(&dd->pdev->dev, dd->pdev->irq, dd);
3292
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003293 /* Stop the bottom half tasklet. */
3294 tasklet_kill(&dd->tasklet);
3295
Sam Bradshaw88523a62011-08-30 08:34:26 -06003296 /* Free the command/command header memory. */
3297 dmam_free_coherent(&dd->pdev->dev,
Asai Thambi S Pf6587212012-04-09 08:35:38 +02003298 HW_PORT_PRIV_DMA_SZ + (ATA_SECT_SIZE * 4),
Sam Bradshaw88523a62011-08-30 08:34:26 -06003299 dd->port->command_list,
3300 dd->port->command_list_dma);
3301 /* Free the memory allocated for the for structure. */
3302 kfree(dd->port);
3303
3304 return 0;
3305}
3306
3307/*
3308 * Issue a Standby Immediate command to the device.
3309 *
3310 * This function is called by the Block Layer just before the
3311 * system powers off during a shutdown.
3312 *
3313 * @dd Pointer to the driver data structure.
3314 *
3315 * return value
3316 * 0
3317 */
Jens Axboe63166682011-09-27 21:27:43 -06003318static int mtip_hw_shutdown(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003319{
3320 /*
3321 * Send standby immediate (E0h) to the drive so that it
3322 * saves its state.
3323 */
3324 mtip_standby_immediate(dd->port);
3325
3326 return 0;
3327}
3328
3329/*
3330 * Suspend function
3331 *
3332 * This function is called by the Block Layer just before the
3333 * system hibernates.
3334 *
3335 * @dd Pointer to the driver data structure.
3336 *
3337 * return value
3338 * 0 Suspend was successful
3339 * -EFAULT Suspend was not successful
3340 */
Jens Axboe63166682011-09-27 21:27:43 -06003341static int mtip_hw_suspend(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003342{
3343 /*
3344 * Send standby immediate (E0h) to the drive
3345 * so that it saves its state.
3346 */
3347 if (mtip_standby_immediate(dd->port) != 0) {
3348 dev_err(&dd->pdev->dev,
3349 "Failed standby-immediate command\n");
3350 return -EFAULT;
3351 }
3352
3353 /* Disable interrupts on the HBA.*/
3354 writel(readl(dd->mmio + HOST_CTL) & ~HOST_IRQ_EN,
3355 dd->mmio + HOST_CTL);
3356 mtip_deinit_port(dd->port);
3357
3358 return 0;
3359}
3360
3361/*
3362 * Resume function
3363 *
3364 * This function is called by the Block Layer as the
3365 * system resumes.
3366 *
3367 * @dd Pointer to the driver data structure.
3368 *
3369 * return value
3370 * 0 Resume was successful
3371 * -EFAULT Resume was not successful
3372 */
Jens Axboe63166682011-09-27 21:27:43 -06003373static int mtip_hw_resume(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003374{
3375 /* Perform any needed hardware setup steps */
3376 hba_setup(dd);
3377
3378 /* Reset the HBA */
3379 if (mtip_hba_reset(dd) != 0) {
3380 dev_err(&dd->pdev->dev,
3381 "Unable to reset the HBA\n");
3382 return -EFAULT;
3383 }
3384
3385 /*
3386 * Enable the port, DMA engine, and FIS reception specific
3387 * h/w in controller.
3388 */
3389 mtip_init_port(dd->port);
3390 mtip_start_port(dd->port);
3391
3392 /* Enable interrupts on the HBA.*/
3393 writel(readl(dd->mmio + HOST_CTL) | HOST_IRQ_EN,
3394 dd->mmio + HOST_CTL);
3395
3396 return 0;
3397}
3398
3399/*
Sam Bradshaw88523a62011-08-30 08:34:26 -06003400 * Helper function for reusing disk name
3401 * upon hot insertion.
3402 */
3403static int rssd_disk_name_format(char *prefix,
3404 int index,
3405 char *buf,
3406 int buflen)
3407{
3408 const int base = 'z' - 'a' + 1;
3409 char *begin = buf + strlen(prefix);
3410 char *end = buf + buflen;
3411 char *p;
3412 int unit;
3413
3414 p = end - 1;
3415 *p = '\0';
3416 unit = base;
3417 do {
3418 if (p == begin)
3419 return -EINVAL;
3420 *--p = 'a' + (index % unit);
3421 index = (index / unit) - 1;
3422 } while (index >= 0);
3423
3424 memmove(begin, p, end - p);
3425 memcpy(buf, prefix, strlen(prefix));
3426
3427 return 0;
3428}
3429
3430/*
3431 * Block layer IOCTL handler.
3432 *
3433 * @dev Pointer to the block_device structure.
3434 * @mode ignored
3435 * @cmd IOCTL command passed from the user application.
3436 * @arg Argument passed from the user application.
3437 *
3438 * return value
3439 * 0 IOCTL completed successfully.
3440 * -ENOTTY IOCTL not supported or invalid driver data
3441 * structure pointer.
3442 */
3443static int mtip_block_ioctl(struct block_device *dev,
3444 fmode_t mode,
3445 unsigned cmd,
3446 unsigned long arg)
3447{
3448 struct driver_data *dd = dev->bd_disk->private_data;
3449
3450 if (!capable(CAP_SYS_ADMIN))
3451 return -EACCES;
3452
3453 if (!dd)
3454 return -ENOTTY;
3455
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003456 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag)))
Asai Thambi S P45038362012-04-09 08:35:38 +02003457 return -ENOTTY;
3458
Sam Bradshaw88523a62011-08-30 08:34:26 -06003459 switch (cmd) {
3460 case BLKFLSBUF:
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003461 return -ENOTTY;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003462 default:
Jens Axboeef0f1582011-09-27 21:19:53 -06003463 return mtip_hw_ioctl(dd, cmd, arg);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003464 }
3465}
3466
Jens Axboe16d02c02011-09-27 15:50:01 -06003467#ifdef CONFIG_COMPAT
Sam Bradshaw88523a62011-08-30 08:34:26 -06003468/*
3469 * Block layer compat IOCTL handler.
3470 *
3471 * @dev Pointer to the block_device structure.
3472 * @mode ignored
3473 * @cmd IOCTL command passed from the user application.
3474 * @arg Argument passed from the user application.
3475 *
3476 * return value
3477 * 0 IOCTL completed successfully.
3478 * -ENOTTY IOCTL not supported or invalid driver data
3479 * structure pointer.
3480 */
3481static int mtip_block_compat_ioctl(struct block_device *dev,
3482 fmode_t mode,
3483 unsigned cmd,
3484 unsigned long arg)
3485{
3486 struct driver_data *dd = dev->bd_disk->private_data;
3487
3488 if (!capable(CAP_SYS_ADMIN))
3489 return -EACCES;
3490
3491 if (!dd)
3492 return -ENOTTY;
3493
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003494 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag)))
Asai Thambi S P45038362012-04-09 08:35:38 +02003495 return -ENOTTY;
3496
Sam Bradshaw88523a62011-08-30 08:34:26 -06003497 switch (cmd) {
3498 case BLKFLSBUF:
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003499 return -ENOTTY;
Jens Axboeef0f1582011-09-27 21:19:53 -06003500 case HDIO_DRIVE_TASKFILE: {
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003501 struct mtip_compat_ide_task_request_s __user *compat_req_task;
Jens Axboeef0f1582011-09-27 21:19:53 -06003502 ide_task_request_t req_task;
3503 int compat_tasksize, outtotal, ret;
3504
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003505 compat_tasksize =
3506 sizeof(struct mtip_compat_ide_task_request_s);
Jens Axboeef0f1582011-09-27 21:19:53 -06003507
3508 compat_req_task =
3509 (struct mtip_compat_ide_task_request_s __user *) arg;
3510
3511 if (copy_from_user(&req_task, (void __user *) arg,
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003512 compat_tasksize - (2 * sizeof(compat_long_t))))
Jens Axboeef0f1582011-09-27 21:19:53 -06003513 return -EFAULT;
3514
3515 if (get_user(req_task.out_size, &compat_req_task->out_size))
3516 return -EFAULT;
3517
3518 if (get_user(req_task.in_size, &compat_req_task->in_size))
3519 return -EFAULT;
3520
3521 outtotal = sizeof(struct mtip_compat_ide_task_request_s);
3522
3523 ret = exec_drive_taskfile(dd, (void __user *) arg,
3524 &req_task, outtotal);
3525
3526 if (copy_to_user((void __user *) arg, &req_task,
3527 compat_tasksize -
3528 (2 * sizeof(compat_long_t))))
3529 return -EFAULT;
3530
3531 if (put_user(req_task.out_size, &compat_req_task->out_size))
3532 return -EFAULT;
3533
3534 if (put_user(req_task.in_size, &compat_req_task->in_size))
3535 return -EFAULT;
3536
3537 return ret;
3538 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06003539 default:
Jens Axboeef0f1582011-09-27 21:19:53 -06003540 return mtip_hw_ioctl(dd, cmd, arg);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003541 }
3542}
Jens Axboe16d02c02011-09-27 15:50:01 -06003543#endif
Sam Bradshaw88523a62011-08-30 08:34:26 -06003544
3545/*
3546 * Obtain the geometry of the device.
3547 *
3548 * You may think that this function is obsolete, but some applications,
3549 * fdisk for example still used CHS values. This function describes the
3550 * device as having 224 heads and 56 sectors per cylinder. These values are
3551 * chosen so that each cylinder is aligned on a 4KB boundary. Since a
3552 * partition is described in terms of a start and end cylinder this means
3553 * that each partition is also 4KB aligned. Non-aligned partitions adversely
3554 * affects performance.
3555 *
3556 * @dev Pointer to the block_device strucutre.
3557 * @geo Pointer to a hd_geometry structure.
3558 *
3559 * return value
3560 * 0 Operation completed successfully.
3561 * -ENOTTY An error occurred while reading the drive capacity.
3562 */
3563static int mtip_block_getgeo(struct block_device *dev,
3564 struct hd_geometry *geo)
3565{
3566 struct driver_data *dd = dev->bd_disk->private_data;
3567 sector_t capacity;
3568
3569 if (!dd)
3570 return -ENOTTY;
3571
3572 if (!(mtip_hw_get_capacity(dd, &capacity))) {
3573 dev_warn(&dd->pdev->dev,
3574 "Could not get drive capacity.\n");
3575 return -ENOTTY;
3576 }
3577
3578 geo->heads = 224;
3579 geo->sectors = 56;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003580 sector_div(capacity, (geo->heads * geo->sectors));
Sam Bradshaw88523a62011-08-30 08:34:26 -06003581 geo->cylinders = capacity;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003582 return 0;
3583}
3584
3585/*
3586 * Block device operation function.
3587 *
3588 * This structure contains pointers to the functions required by the block
3589 * layer.
3590 */
3591static const struct block_device_operations mtip_block_ops = {
3592 .ioctl = mtip_block_ioctl,
Jens Axboe16d02c02011-09-27 15:50:01 -06003593#ifdef CONFIG_COMPAT
Sam Bradshaw88523a62011-08-30 08:34:26 -06003594 .compat_ioctl = mtip_block_compat_ioctl,
Jens Axboe16d02c02011-09-27 15:50:01 -06003595#endif
Sam Bradshaw88523a62011-08-30 08:34:26 -06003596 .getgeo = mtip_block_getgeo,
3597 .owner = THIS_MODULE
3598};
3599
3600/*
3601 * Block layer make request function.
3602 *
3603 * This function is called by the kernel to process a BIO for
3604 * the P320 device.
3605 *
3606 * @queue Pointer to the request queue. Unused other than to obtain
3607 * the driver data structure.
3608 * @bio Pointer to the BIO.
3609 *
Sam Bradshaw88523a62011-08-30 08:34:26 -06003610 */
Jens Axboea71f4832011-11-05 08:36:21 +01003611static void mtip_make_request(struct request_queue *queue, struct bio *bio)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003612{
3613 struct driver_data *dd = queue->queuedata;
3614 struct scatterlist *sg;
3615 struct bio_vec *bvec;
3616 int nents = 0;
3617 int tag = 0;
3618
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02003619 if (unlikely(dd->dd_flag & MTIP_DDF_STOP_IO)) {
3620 if (unlikely(test_bit(MTIP_DDF_REMOVE_PENDING_BIT,
3621 &dd->dd_flag))) {
3622 bio_endio(bio, -ENXIO);
3623 return;
3624 }
3625 if (unlikely(test_bit(MTIP_DDF_OVER_TEMP_BIT, &dd->dd_flag))) {
3626 bio_endio(bio, -ENODATA);
3627 return;
3628 }
3629 if (unlikely(test_bit(MTIP_DDF_WRITE_PROTECT_BIT,
3630 &dd->dd_flag) &&
3631 bio_data_dir(bio))) {
3632 bio_endio(bio, -ENODATA);
3633 return;
3634 }
Asai Thambi S P12a166c2012-09-05 22:01:36 +05303635 if (unlikely(test_bit(MTIP_DDF_SEC_LOCK_BIT, &dd->dd_flag))) {
3636 bio_endio(bio, -ENODATA);
3637 return;
3638 }
Asai Thambi S P45038362012-04-09 08:35:38 +02003639 }
3640
Sam Bradshaw88523a62011-08-30 08:34:26 -06003641 if (unlikely(!bio_has_data(bio))) {
3642 blk_queue_flush(queue, 0);
3643 bio_endio(bio, 0);
Jens Axboea71f4832011-11-05 08:36:21 +01003644 return;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003645 }
3646
Sam Bradshaw88523a62011-08-30 08:34:26 -06003647 sg = mtip_hw_get_scatterlist(dd, &tag);
3648 if (likely(sg != NULL)) {
3649 blk_queue_bounce(queue, &bio);
3650
3651 if (unlikely((bio)->bi_vcnt > MTIP_MAX_SG)) {
3652 dev_warn(&dd->pdev->dev,
Asai Thambi S P45038362012-04-09 08:35:38 +02003653 "Maximum number of SGL entries exceeded\n");
Sam Bradshaw88523a62011-08-30 08:34:26 -06003654 bio_io_error(bio);
3655 mtip_hw_release_scatterlist(dd, tag);
Jens Axboea71f4832011-11-05 08:36:21 +01003656 return;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003657 }
3658
3659 /* Create the scatter list for this bio. */
3660 bio_for_each_segment(bvec, bio, nents) {
3661 sg_set_page(&sg[nents],
3662 bvec->bv_page,
3663 bvec->bv_len,
3664 bvec->bv_offset);
3665 }
3666
3667 /* Issue the read/write. */
3668 mtip_hw_submit_io(dd,
3669 bio->bi_sector,
3670 bio_sectors(bio),
3671 nents,
3672 tag,
3673 bio_endio,
3674 bio,
Sam Bradshaw88523a62011-08-30 08:34:26 -06003675 bio_data_dir(bio));
Jens Axboea71f4832011-11-05 08:36:21 +01003676 } else
Sam Bradshaw88523a62011-08-30 08:34:26 -06003677 bio_io_error(bio);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003678}
3679
3680/*
3681 * Block layer initialization function.
3682 *
3683 * This function is called once by the PCI layer for each P320
3684 * device that is connected to the system.
3685 *
3686 * @dd Pointer to the driver data structure.
3687 *
3688 * return value
3689 * 0 on success else an error code.
3690 */
Jens Axboe63166682011-09-27 21:27:43 -06003691static int mtip_block_initialize(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003692{
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003693 int rv = 0, wait_for_rebuild = 0;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003694 sector_t capacity;
3695 unsigned int index = 0;
3696 struct kobject *kobj;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003697 unsigned char thd_name[16];
Sam Bradshaw88523a62011-08-30 08:34:26 -06003698
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003699 if (dd->disk)
3700 goto skip_create_disk; /* hw init done, before rebuild */
3701
Sam Bradshaw88523a62011-08-30 08:34:26 -06003702 /* Initialize the protocol layer. */
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003703 wait_for_rebuild = mtip_hw_init(dd);
3704 if (wait_for_rebuild < 0) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06003705 dev_err(&dd->pdev->dev,
3706 "Protocol layer initialization failed\n");
3707 rv = -EINVAL;
3708 goto protocol_init_error;
3709 }
3710
Sam Bradshaw88523a62011-08-30 08:34:26 -06003711 dd->disk = alloc_disk(MTIP_MAX_MINORS);
3712 if (dd->disk == NULL) {
3713 dev_err(&dd->pdev->dev,
3714 "Unable to allocate gendisk structure\n");
3715 rv = -EINVAL;
3716 goto alloc_disk_error;
3717 }
3718
3719 /* Generate the disk name, implemented same as in sd.c */
3720 do {
3721 if (!ida_pre_get(&rssd_index_ida, GFP_KERNEL))
3722 goto ida_get_error;
3723
3724 spin_lock(&rssd_index_lock);
3725 rv = ida_get_new(&rssd_index_ida, &index);
3726 spin_unlock(&rssd_index_lock);
3727 } while (rv == -EAGAIN);
3728
3729 if (rv)
3730 goto ida_get_error;
3731
3732 rv = rssd_disk_name_format("rssd",
3733 index,
3734 dd->disk->disk_name,
3735 DISK_NAME_LEN);
3736 if (rv)
3737 goto disk_index_error;
3738
3739 dd->disk->driverfs_dev = &dd->pdev->dev;
3740 dd->disk->major = dd->major;
3741 dd->disk->first_minor = dd->instance * MTIP_MAX_MINORS;
3742 dd->disk->fops = &mtip_block_ops;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003743 dd->disk->private_data = dd;
Sam Bradshaw88523a62011-08-30 08:34:26 -06003744 dd->index = index;
3745
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003746 /*
3747 * if rebuild pending, start the service thread, and delay the block
3748 * queue creation and add_disk()
3749 */
3750 if (wait_for_rebuild == MTIP_FTL_REBUILD_MAGIC)
3751 goto start_service_thread;
3752
3753skip_create_disk:
3754 /* Allocate the request queue. */
3755 dd->queue = blk_alloc_queue(GFP_KERNEL);
3756 if (dd->queue == NULL) {
3757 dev_err(&dd->pdev->dev,
3758 "Unable to allocate request queue\n");
3759 rv = -ENOMEM;
3760 goto block_queue_alloc_init_error;
3761 }
3762
3763 /* Attach our request function to the request queue. */
3764 blk_queue_make_request(dd->queue, mtip_make_request);
3765
3766 dd->disk->queue = dd->queue;
3767 dd->queue->queuedata = dd;
3768
3769 /* Set device limits. */
3770 set_bit(QUEUE_FLAG_NONROT, &dd->queue->queue_flags);
3771 blk_queue_max_segments(dd->queue, MTIP_MAX_SG);
3772 blk_queue_physical_block_size(dd->queue, 4096);
Asai Thambi S P6c8ab692012-05-29 18:42:51 -07003773 blk_queue_max_hw_sectors(dd->queue, 0xffff);
3774 blk_queue_max_segment_size(dd->queue, 0x400000);
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003775 blk_queue_io_min(dd->queue, 4096);
Asai Thambi S P6c8ab692012-05-29 18:42:51 -07003776
Asai Thambi S P4e8670e2012-02-07 07:54:31 +01003777 /*
3778 * write back cache is not supported in the device. FUA depends on
3779 * write back cache support, hence setting flush support to zero.
3780 */
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003781 blk_queue_flush(dd->queue, 0);
3782
Sam Bradshaw88523a62011-08-30 08:34:26 -06003783 /* Set the capacity of the device in 512 byte sectors. */
3784 if (!(mtip_hw_get_capacity(dd, &capacity))) {
3785 dev_warn(&dd->pdev->dev,
3786 "Could not read drive capacity\n");
3787 rv = -EIO;
3788 goto read_capacity_error;
3789 }
3790 set_capacity(dd->disk, capacity);
3791
3792 /* Enable the block device and add it to /dev */
3793 add_disk(dd->disk);
3794
3795 /*
3796 * Now that the disk is active, initialize any sysfs attributes
3797 * managed by the protocol layer.
3798 */
3799 kobj = kobject_get(&disk_to_dev(dd->disk)->kobj);
3800 if (kobj) {
3801 mtip_hw_sysfs_init(dd, kobj);
3802 kobject_put(kobj);
3803 }
Asai Thambi S P7b421d22012-06-04 12:44:02 -07003804 mtip_hw_debugfs_init(dd);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003805
Asai Thambi S P45038362012-04-09 08:35:38 +02003806 if (dd->mtip_svc_handler) {
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003807 set_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag);
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003808 return rv; /* service thread created for handling rebuild */
Asai Thambi S P45038362012-04-09 08:35:38 +02003809 }
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003810
3811start_service_thread:
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003812 sprintf(thd_name, "mtip_svc_thd_%02d", index);
3813
3814 dd->mtip_svc_handler = kthread_run(mtip_service_thread,
3815 dd, thd_name);
3816
3817 if (IS_ERR(dd->mtip_svc_handler)) {
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02003818 dev_err(&dd->pdev->dev, "service thread failed to start\n");
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003819 dd->mtip_svc_handler = NULL;
3820 rv = -EFAULT;
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003821 goto kthread_run_error;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003822 }
3823
Asai Thambi S P45038362012-04-09 08:35:38 +02003824 if (wait_for_rebuild == MTIP_FTL_REBUILD_MAGIC)
3825 rv = wait_for_rebuild;
3826
Sam Bradshaw88523a62011-08-30 08:34:26 -06003827 return rv;
3828
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003829kthread_run_error:
Asai Thambi S P7b421d22012-06-04 12:44:02 -07003830 mtip_hw_debugfs_exit(dd);
3831
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003832 /* Delete our gendisk. This also removes the device from /dev */
Sam Bradshaw88523a62011-08-30 08:34:26 -06003833 del_gendisk(dd->disk);
3834
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003835read_capacity_error:
3836 blk_cleanup_queue(dd->queue);
3837
3838block_queue_alloc_init_error:
Sam Bradshaw88523a62011-08-30 08:34:26 -06003839disk_index_error:
3840 spin_lock(&rssd_index_lock);
3841 ida_remove(&rssd_index_ida, index);
3842 spin_unlock(&rssd_index_lock);
3843
3844ida_get_error:
3845 put_disk(dd->disk);
3846
3847alloc_disk_error:
Asai Thambi S P62ee8c12012-01-04 22:01:32 +01003848 mtip_hw_exit(dd); /* De-initialize the protocol layer. */
Sam Bradshaw88523a62011-08-30 08:34:26 -06003849
3850protocol_init_error:
3851 return rv;
3852}
3853
3854/*
3855 * Block layer deinitialization function.
3856 *
3857 * Called by the PCI layer as each P320 device is removed.
3858 *
3859 * @dd Pointer to the driver data structure.
3860 *
3861 * return value
3862 * 0
3863 */
Jens Axboe63166682011-09-27 21:27:43 -06003864static int mtip_block_remove(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003865{
3866 struct kobject *kobj;
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003867
3868 if (dd->mtip_svc_handler) {
Asai Thambi S Pc74b0f52012-04-09 08:35:39 +02003869 set_bit(MTIP_PF_SVC_THD_STOP_BIT, &dd->port->flags);
Asai Thambi S P60ec0ee2011-11-23 08:29:24 +01003870 wake_up_interruptible(&dd->port->svc_wait);
3871 kthread_stop(dd->mtip_svc_handler);
3872 }
3873
Asai Thambi S Pf6587212012-04-09 08:35:38 +02003874 /* Clean up the sysfs attributes, if created */
Asai Thambi S P8a857a82012-04-09 08:35:38 +02003875 if (test_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag)) {
Asai Thambi S P45038362012-04-09 08:35:38 +02003876 kobj = kobject_get(&disk_to_dev(dd->disk)->kobj);
3877 if (kobj) {
3878 mtip_hw_sysfs_exit(dd, kobj);
3879 kobject_put(kobj);
3880 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06003881 }
Asai Thambi S P7b421d22012-06-04 12:44:02 -07003882 mtip_hw_debugfs_exit(dd);
Sam Bradshaw88523a62011-08-30 08:34:26 -06003883
3884 /*
3885 * Delete our gendisk structure. This also removes the device
3886 * from /dev
3887 */
3888 del_gendisk(dd->disk);
Asai Thambi S P8182b492012-04-09 08:35:38 +02003889
3890 spin_lock(&rssd_index_lock);
3891 ida_remove(&rssd_index_ida, dd->index);
3892 spin_unlock(&rssd_index_lock);
3893
Sam Bradshaw88523a62011-08-30 08:34:26 -06003894 blk_cleanup_queue(dd->queue);
3895 dd->disk = NULL;
3896 dd->queue = NULL;
3897
3898 /* De-initialize the protocol layer. */
3899 mtip_hw_exit(dd);
3900
3901 return 0;
3902}
3903
3904/*
3905 * Function called by the PCI layer when just before the
3906 * machine shuts down.
3907 *
3908 * If a protocol layer shutdown function is present it will be called
3909 * by this function.
3910 *
3911 * @dd Pointer to the driver data structure.
3912 *
3913 * return value
3914 * 0
3915 */
Jens Axboe63166682011-09-27 21:27:43 -06003916static int mtip_block_shutdown(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003917{
3918 dev_info(&dd->pdev->dev,
3919 "Shutting down %s ...\n", dd->disk->disk_name);
3920
3921 /* Delete our gendisk structure, and cleanup the blk queue. */
3922 del_gendisk(dd->disk);
Asai Thambi S P8182b492012-04-09 08:35:38 +02003923
3924 spin_lock(&rssd_index_lock);
3925 ida_remove(&rssd_index_ida, dd->index);
3926 spin_unlock(&rssd_index_lock);
3927
Sam Bradshaw88523a62011-08-30 08:34:26 -06003928 blk_cleanup_queue(dd->queue);
3929 dd->disk = NULL;
3930 dd->queue = NULL;
3931
3932 mtip_hw_shutdown(dd);
3933 return 0;
3934}
3935
Jens Axboe63166682011-09-27 21:27:43 -06003936static int mtip_block_suspend(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003937{
3938 dev_info(&dd->pdev->dev,
3939 "Suspending %s ...\n", dd->disk->disk_name);
3940 mtip_hw_suspend(dd);
3941 return 0;
3942}
3943
Jens Axboe63166682011-09-27 21:27:43 -06003944static int mtip_block_resume(struct driver_data *dd)
Sam Bradshaw88523a62011-08-30 08:34:26 -06003945{
3946 dev_info(&dd->pdev->dev, "Resuming %s ...\n",
3947 dd->disk->disk_name);
3948 mtip_hw_resume(dd);
3949 return 0;
3950}
3951
3952/*
3953 * Called for each supported PCI device detected.
3954 *
3955 * This function allocates the private data structure, enables the
3956 * PCI device and then calls the block layer initialization function.
3957 *
3958 * return value
3959 * 0 on success else an error code.
3960 */
3961static int mtip_pci_probe(struct pci_dev *pdev,
3962 const struct pci_device_id *ent)
3963{
3964 int rv = 0;
3965 struct driver_data *dd = NULL;
3966
3967 /* Allocate memory for this devices private data. */
3968 dd = kzalloc(sizeof(struct driver_data), GFP_KERNEL);
3969 if (dd == NULL) {
3970 dev_err(&pdev->dev,
3971 "Unable to allocate memory for driver data\n");
3972 return -ENOMEM;
3973 }
3974
Sam Bradshaw88523a62011-08-30 08:34:26 -06003975 /* Attach the private data to this PCI device. */
3976 pci_set_drvdata(pdev, dd);
3977
3978 rv = pcim_enable_device(pdev);
3979 if (rv < 0) {
3980 dev_err(&pdev->dev, "Unable to enable device\n");
3981 goto iomap_err;
3982 }
3983
3984 /* Map BAR5 to memory. */
3985 rv = pcim_iomap_regions(pdev, 1 << MTIP_ABAR, MTIP_DRV_NAME);
3986 if (rv < 0) {
3987 dev_err(&pdev->dev, "Unable to map regions\n");
3988 goto iomap_err;
3989 }
3990
3991 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
3992 rv = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
3993
3994 if (rv) {
3995 rv = pci_set_consistent_dma_mask(pdev,
3996 DMA_BIT_MASK(32));
3997 if (rv) {
3998 dev_warn(&pdev->dev,
3999 "64-bit DMA enable failed\n");
4000 goto setmask_err;
4001 }
4002 }
4003 }
4004
4005 pci_set_master(pdev);
4006
4007 if (pci_enable_msi(pdev)) {
4008 dev_warn(&pdev->dev,
4009 "Unable to enable MSI interrupt.\n");
4010 goto block_initialize_err;
4011 }
4012
4013 /* Copy the info we may need later into the private data structure. */
4014 dd->major = mtip_major;
Sam Bradshaw88523a62011-08-30 08:34:26 -06004015 dd->instance = instance;
4016 dd->pdev = pdev;
4017
4018 /* Initialize the block layer. */
4019 rv = mtip_block_initialize(dd);
4020 if (rv < 0) {
4021 dev_err(&pdev->dev,
4022 "Unable to initialize block layer\n");
4023 goto block_initialize_err;
4024 }
4025
4026 /*
4027 * Increment the instance count so that each device has a unique
4028 * instance number.
4029 */
4030 instance++;
Asai Thambi S P45038362012-04-09 08:35:38 +02004031 if (rv != MTIP_FTL_REBUILD_MAGIC)
Asai Thambi S P8a857a82012-04-09 08:35:38 +02004032 set_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004033 goto done;
4034
4035block_initialize_err:
4036 pci_disable_msi(pdev);
4037
4038setmask_err:
4039 pcim_iounmap_regions(pdev, 1 << MTIP_ABAR);
4040
4041iomap_err:
4042 kfree(dd);
4043 pci_set_drvdata(pdev, NULL);
4044 return rv;
4045done:
Sam Bradshaw88523a62011-08-30 08:34:26 -06004046 return rv;
4047}
4048
4049/*
4050 * Called for each probed device when the device is removed or the
4051 * driver is unloaded.
4052 *
4053 * return value
4054 * None
4055 */
4056static void mtip_pci_remove(struct pci_dev *pdev)
4057{
4058 struct driver_data *dd = pci_get_drvdata(pdev);
4059 int counter = 0;
4060
Asai Thambi S P8a857a82012-04-09 08:35:38 +02004061 set_bit(MTIP_DDF_REMOVE_PENDING_BIT, &dd->dd_flag);
Asai Thambi S P45038362012-04-09 08:35:38 +02004062
Sam Bradshaw88523a62011-08-30 08:34:26 -06004063 if (mtip_check_surprise_removal(pdev)) {
Asai Thambi S P8a857a82012-04-09 08:35:38 +02004064 while (!test_bit(MTIP_DDF_CLEANUP_BIT, &dd->dd_flag)) {
Sam Bradshaw88523a62011-08-30 08:34:26 -06004065 counter++;
4066 msleep(20);
4067 if (counter == 10) {
4068 /* Cleanup the outstanding commands */
4069 mtip_command_cleanup(dd);
4070 break;
4071 }
4072 }
4073 }
Sam Bradshaw88523a62011-08-30 08:34:26 -06004074
4075 /* Clean up the block layer. */
4076 mtip_block_remove(dd);
4077
4078 pci_disable_msi(pdev);
4079
4080 kfree(dd);
4081 pcim_iounmap_regions(pdev, 1 << MTIP_ABAR);
4082}
4083
4084/*
4085 * Called for each probed device when the device is suspended.
4086 *
4087 * return value
4088 * 0 Success
4089 * <0 Error
4090 */
4091static int mtip_pci_suspend(struct pci_dev *pdev, pm_message_t mesg)
4092{
4093 int rv = 0;
4094 struct driver_data *dd = pci_get_drvdata(pdev);
4095
4096 if (!dd) {
4097 dev_err(&pdev->dev,
4098 "Driver private datastructure is NULL\n");
4099 return -EFAULT;
4100 }
4101
Asai Thambi S P8a857a82012-04-09 08:35:38 +02004102 set_bit(MTIP_DDF_RESUME_BIT, &dd->dd_flag);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004103
4104 /* Disable ports & interrupts then send standby immediate */
4105 rv = mtip_block_suspend(dd);
4106 if (rv < 0) {
4107 dev_err(&pdev->dev,
4108 "Failed to suspend controller\n");
4109 return rv;
4110 }
4111
4112 /*
4113 * Save the pci config space to pdev structure &
4114 * disable the device
4115 */
4116 pci_save_state(pdev);
4117 pci_disable_device(pdev);
4118
4119 /* Move to Low power state*/
4120 pci_set_power_state(pdev, PCI_D3hot);
4121
4122 return rv;
4123}
4124
4125/*
4126 * Called for each probed device when the device is resumed.
4127 *
4128 * return value
4129 * 0 Success
4130 * <0 Error
4131 */
4132static int mtip_pci_resume(struct pci_dev *pdev)
4133{
4134 int rv = 0;
4135 struct driver_data *dd;
4136
4137 dd = pci_get_drvdata(pdev);
4138 if (!dd) {
4139 dev_err(&pdev->dev,
4140 "Driver private datastructure is NULL\n");
4141 return -EFAULT;
4142 }
4143
4144 /* Move the device to active State */
4145 pci_set_power_state(pdev, PCI_D0);
4146
4147 /* Restore PCI configuration space */
4148 pci_restore_state(pdev);
4149
4150 /* Enable the PCI device*/
4151 rv = pcim_enable_device(pdev);
4152 if (rv < 0) {
4153 dev_err(&pdev->dev,
4154 "Failed to enable card during resume\n");
4155 goto err;
4156 }
4157 pci_set_master(pdev);
4158
4159 /*
4160 * Calls hbaReset, initPort, & startPort function
4161 * then enables interrupts
4162 */
4163 rv = mtip_block_resume(dd);
4164 if (rv < 0)
4165 dev_err(&pdev->dev, "Unable to resume\n");
4166
4167err:
Asai Thambi S P8a857a82012-04-09 08:35:38 +02004168 clear_bit(MTIP_DDF_RESUME_BIT, &dd->dd_flag);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004169
4170 return rv;
4171}
4172
4173/*
4174 * Shutdown routine
4175 *
4176 * return value
4177 * None
4178 */
4179static void mtip_pci_shutdown(struct pci_dev *pdev)
4180{
4181 struct driver_data *dd = pci_get_drvdata(pdev);
4182 if (dd)
4183 mtip_block_shutdown(dd);
4184}
4185
Sam Bradshaw88523a62011-08-30 08:34:26 -06004186/* Table of device ids supported by this driver. */
4187static DEFINE_PCI_DEVICE_TABLE(mtip_pci_tbl) = {
Asai Thambi S P1a131452012-09-05 22:00:38 +05304188 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P320H_DEVICE_ID) },
4189 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P320M_DEVICE_ID) },
4190 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P320S_DEVICE_ID) },
4191 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P325M_DEVICE_ID) },
4192 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P420H_DEVICE_ID) },
4193 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P420M_DEVICE_ID) },
4194 { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P425M_DEVICE_ID) },
Sam Bradshaw88523a62011-08-30 08:34:26 -06004195 { 0 }
4196};
4197
4198/* Structure that describes the PCI driver functions. */
Jens Axboe3ff147d2011-09-27 21:33:53 -06004199static struct pci_driver mtip_pci_driver = {
Sam Bradshaw88523a62011-08-30 08:34:26 -06004200 .name = MTIP_DRV_NAME,
4201 .id_table = mtip_pci_tbl,
4202 .probe = mtip_pci_probe,
4203 .remove = mtip_pci_remove,
4204 .suspend = mtip_pci_suspend,
4205 .resume = mtip_pci_resume,
4206 .shutdown = mtip_pci_shutdown,
4207};
4208
4209MODULE_DEVICE_TABLE(pci, mtip_pci_tbl);
4210
4211/*
4212 * Module initialization function.
4213 *
4214 * Called once when the module is loaded. This function allocates a major
4215 * block device number to the Cyclone devices and registers the PCI layer
4216 * of the driver.
4217 *
4218 * Return value
4219 * 0 on success else error code.
4220 */
4221static int __init mtip_init(void)
4222{
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004223 int error;
4224
Asai Thambi S P45422e72012-09-05 22:03:56 +05304225 pr_info(MTIP_DRV_NAME " Version " MTIP_DRV_VERSION "\n");
Sam Bradshaw88523a62011-08-30 08:34:26 -06004226
4227 /* Allocate a major block device number to use with this driver. */
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004228 error = register_blkdev(0, MTIP_DRV_NAME);
4229 if (error <= 0) {
Asai Thambi S P45422e72012-09-05 22:03:56 +05304230 pr_err("Unable to register block device (%d)\n",
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004231 error);
Sam Bradshaw88523a62011-08-30 08:34:26 -06004232 return -EBUSY;
4233 }
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004234 mtip_major = error;
Sam Bradshaw88523a62011-08-30 08:34:26 -06004235
Asai Thambi S P7b421d22012-06-04 12:44:02 -07004236 if (!dfs_parent) {
4237 dfs_parent = debugfs_create_dir("rssd", NULL);
4238 if (IS_ERR_OR_NULL(dfs_parent)) {
Asai Thambi S P45422e72012-09-05 22:03:56 +05304239 pr_warn("Error creating debugfs parent\n");
Asai Thambi S P7b421d22012-06-04 12:44:02 -07004240 dfs_parent = NULL;
4241 }
4242 }
4243
Sam Bradshaw88523a62011-08-30 08:34:26 -06004244 /* Register our PCI operations. */
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004245 error = pci_register_driver(&mtip_pci_driver);
Asai Thambi S P7b421d22012-06-04 12:44:02 -07004246 if (error) {
4247 debugfs_remove(dfs_parent);
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004248 unregister_blkdev(mtip_major, MTIP_DRV_NAME);
Asai Thambi S P7b421d22012-06-04 12:44:02 -07004249 }
Ryosuke Saito6d27f092012-04-05 08:09:34 -06004250
4251 return error;
Sam Bradshaw88523a62011-08-30 08:34:26 -06004252}
4253
4254/*
4255 * Module de-initialization function.
4256 *
4257 * Called once when the module is unloaded. This function deallocates
4258 * the major block device number allocated by mtip_init() and
4259 * unregisters the PCI layer of the driver.
4260 *
4261 * Return value
4262 * none
4263 */
4264static void __exit mtip_exit(void)
4265{
Asai Thambi S P7b421d22012-06-04 12:44:02 -07004266 debugfs_remove_recursive(dfs_parent);
4267
Sam Bradshaw88523a62011-08-30 08:34:26 -06004268 /* Release the allocated major block device number. */
4269 unregister_blkdev(mtip_major, MTIP_DRV_NAME);
4270
4271 /* Unregister the PCI driver. */
4272 pci_unregister_driver(&mtip_pci_driver);
4273}
4274
4275MODULE_AUTHOR("Micron Technology, Inc");
4276MODULE_DESCRIPTION("Micron RealSSD PCIe Block Driver");
4277MODULE_LICENSE("GPL");
4278MODULE_VERSION(MTIP_DRV_VERSION);
4279
4280module_init(mtip_init);
4281module_exit(mtip_exit);