2 * Driver for the Micron P320 SSD
3 * Copyright (C) 2011 Micron Technology, Inc.
5 * Portions of this code were derived from works subjected to the
7 * Copyright (C) 2009 Integrated Device Technology, Inc.
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.
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.
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>
31 #include <linux/genhd.h>
32 #include <linux/blkdev.h>
33 #include <linux/bio.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/idr.h>
36 #include <../drivers/ata/ahci.h>
39 #define HW_CMD_SLOT_SZ (MTIP_MAX_COMMAND_SLOTS * 32)
40 #define HW_CMD_TBL_SZ (AHCI_CMD_TBL_HDR_SZ + (MTIP_MAX_SG * 16))
41 #define HW_CMD_TBL_AR_SZ (HW_CMD_TBL_SZ * MTIP_MAX_COMMAND_SLOTS)
42 #define HW_PORT_PRIV_DMA_SZ \
43 (HW_CMD_SLOT_SZ + HW_CMD_TBL_AR_SZ + AHCI_RX_FIS_SZ)
45 #define HOST_HSORG 0xFC
46 #define HSORG_DISABLE_SLOTGRP_INTR (1<<24)
47 #define HSORG_DISABLE_SLOTGRP_PXIS (1<<16)
48 #define HSORG_HWREV 0xFF00
49 #define HSORG_STYLE 0x8
50 #define HSORG_SLOTGROUPS 0x7
52 #define PORT_COMMAND_ISSUE 0x38
53 #define PORT_SDBV 0x7C
55 #define PORT_OFFSET 0x100
56 #define PORT_MEM_SIZE 0x80
58 #define PORT_IRQ_ERR \
59 (PORT_IRQ_HBUS_ERR | PORT_IRQ_IF_ERR | PORT_IRQ_CONNECT | \
60 PORT_IRQ_PHYRDY | PORT_IRQ_UNK_FIS | PORT_IRQ_BAD_PMP | \
61 PORT_IRQ_TF_ERR | PORT_IRQ_HBUS_DATA_ERR | PORT_IRQ_IF_NONFATAL | \
63 #define PORT_IRQ_LEGACY \
64 (PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS)
65 #define PORT_IRQ_HANDLED \
66 (PORT_IRQ_SDB_FIS | PORT_IRQ_LEGACY | \
67 PORT_IRQ_TF_ERR | PORT_IRQ_IF_ERR | \
68 PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY)
69 #define DEF_PORT_IRQ \
70 (PORT_IRQ_ERR | PORT_IRQ_LEGACY | PORT_IRQ_SDB_FIS)
73 #define MTIP_PRODUCT_UNKNOWN 0x00
74 #define MTIP_PRODUCT_ASICFPGA 0x11
76 /* Device instance number, incremented each time a device is probed. */
80 * Global variable used to hold the major block device number
81 * allocated in mtip_init().
85 static DEFINE_SPINLOCK(rssd_index_lock
);
86 static DEFINE_IDA(rssd_index_ida
);
88 struct mtip_compat_ide_task_request_s
{
91 ide_reg_valid_t out_flags
;
92 ide_reg_valid_t in_flags
;
95 compat_ulong_t out_size
;
96 compat_ulong_t in_size
;
99 static int mtip_exec_internal_command(struct mtip_port
*port
,
106 unsigned long timeout
);
109 * Obtain an empty command slot.
111 * This function needs to be reentrant since it could be called
112 * at the same time on multiple CPUs. The allocation of the
113 * command slot must be atomic.
115 * @port Pointer to the port data structure.
118 * >= 0 Index of command slot obtained.
119 * -1 No command slots available.
121 static int get_slot(struct mtip_port
*port
)
124 unsigned int num_command_slots
= port
->dd
->slot_groups
* 32;
127 * Try 10 times, because there is a small race here.
128 * that's ok, because it's still cheaper than a lock.
130 * Race: Since this section is not protected by lock, same bit
131 * could be chosen by different process contexts running in
132 * different processor. So instead of costly lock, we are going
135 for (i
= 0; i
< 10; i
++) {
136 slot
= find_next_zero_bit(port
->allocated
,
137 num_command_slots
, 1);
138 if ((slot
< num_command_slots
) &&
139 (!test_and_set_bit(slot
, port
->allocated
)))
142 dev_warn(&port
->dd
->pdev
->dev
, "Failed to get a tag.\n");
144 if (mtip_check_surprise_removal(port
->dd
->pdev
)) {
145 /* Device not present, clean outstanding commands */
146 mtip_command_cleanup(port
->dd
);
152 * Release a command slot.
154 * @port Pointer to the port data structure.
155 * @tag Tag of command to release
160 static inline void release_slot(struct mtip_port
*port
, int tag
)
162 smp_mb__before_clear_bit();
163 clear_bit(tag
, port
->allocated
);
164 smp_mb__after_clear_bit();
168 * Issue a command to the hardware.
170 * Set the appropriate bit in the s_active and Command Issue hardware
171 * registers, causing hardware command processing to begin.
173 * @port Pointer to the port structure.
174 * @tag The tag of the command to be issued.
179 static inline void mtip_issue_ncq_command(struct mtip_port
*port
, int tag
)
181 unsigned long flags
= 0;
183 atomic_set(&port
->commands
[tag
].active
, 1);
185 spin_lock_irqsave(&port
->cmd_issue_lock
, flags
);
187 writel((1 << MTIP_TAG_BIT(tag
)),
188 port
->s_active
[MTIP_TAG_INDEX(tag
)]);
189 writel((1 << MTIP_TAG_BIT(tag
)),
190 port
->cmd_issue
[MTIP_TAG_INDEX(tag
)]);
192 spin_unlock_irqrestore(&port
->cmd_issue_lock
, flags
);
196 * Called periodically to see if any read/write commands are
197 * taking too long to complete.
199 * @data Pointer to the PORT data structure.
204 void mtip_timeout_function(unsigned long int data
)
206 struct mtip_port
*port
= (struct mtip_port
*) data
;
207 struct host_to_dev_fis
*fis
;
208 struct mtip_cmd
*command
;
209 int tag
, cmdto_cnt
= 0;
210 unsigned int bit
, group
;
211 unsigned int num_command_slots
= port
->dd
->slot_groups
* 32;
216 if (atomic_read(&port
->dd
->resumeflag
) == true) {
217 mod_timer(&port
->cmd_timer
,
218 jiffies
+ msecs_to_jiffies(30000));
222 for (tag
= 0; tag
< num_command_slots
; tag
++) {
224 * Skip internal command slot as it has
225 * its own timeout mechanism
227 if (tag
== MTIP_TAG_INTERNAL
)
230 if (atomic_read(&port
->commands
[tag
].active
) &&
231 (time_after(jiffies
, port
->commands
[tag
].comp_time
))) {
235 command
= &port
->commands
[tag
];
236 fis
= (struct host_to_dev_fis
*) command
->command
;
238 dev_warn(&port
->dd
->pdev
->dev
,
239 "Timeout for command tag %d\n", tag
);
243 atomic_inc(&port
->dd
->eh_active
);
246 * Clear the completed bit. This should prevent
247 * any interrupt handlers from trying to retire
250 writel(1 << bit
, port
->completed
[group
]);
252 /* Call the async completion callback. */
253 if (likely(command
->async_callback
))
254 command
->async_callback(command
->async_data
,
256 command
->async_callback
= NULL
;
257 command
->comp_func
= NULL
;
259 /* Unmap the DMA scatter list entries */
260 dma_unmap_sg(&port
->dd
->pdev
->dev
,
262 command
->scatter_ents
,
266 * Clear the allocated bit and active tag for the
269 atomic_set(&port
->commands
[tag
].active
, 0);
270 release_slot(port
, tag
);
277 dev_warn(&port
->dd
->pdev
->dev
,
278 "%d commands timed out: restarting port",
280 mtip_restart_port(port
);
281 atomic_dec(&port
->dd
->eh_active
);
284 /* Restart the timer */
285 mod_timer(&port
->cmd_timer
,
286 jiffies
+ msecs_to_jiffies(MTIP_TIMEOUT_CHECK_PERIOD
));
290 * IO completion function.
292 * This completion function is called by the driver ISR when a
293 * command that was issued by the kernel completes. It first calls the
294 * asynchronous completion function which normally calls back into the block
295 * layer passing the asynchronous callback data, then unmaps the
296 * scatter list associated with the completed command, and finally
297 * clears the allocated bit associated with the completed command.
299 * @port Pointer to the port data structure.
300 * @tag Tag of the command.
301 * @data Pointer to driver_data.
302 * @status Completion status.
307 static void mtip_async_complete(struct mtip_port
*port
,
312 struct mtip_cmd
*command
;
313 struct driver_data
*dd
= data
;
314 int cb_status
= status
? -EIO
: 0;
316 if (unlikely(!dd
) || unlikely(!port
))
319 command
= &port
->commands
[tag
];
321 if (unlikely(status
== PORT_IRQ_TF_ERR
)) {
322 dev_warn(&port
->dd
->pdev
->dev
,
323 "Command tag %d failed due to TFE\n", tag
);
326 /* Upper layer callback */
327 if (likely(command
->async_callback
))
328 command
->async_callback(command
->async_data
, cb_status
);
330 command
->async_callback
= NULL
;
331 command
->comp_func
= NULL
;
333 /* Unmap the DMA scatter list entries */
334 dma_unmap_sg(&dd
->pdev
->dev
,
336 command
->scatter_ents
,
339 /* Clear the allocated and active bits for the command */
340 atomic_set(&port
->commands
[tag
].active
, 0);
341 release_slot(port
, tag
);
347 * Internal command completion callback function.
349 * This function is normally called by the driver ISR when an internal
350 * command completed. This function signals the command completion by
351 * calling complete().
353 * @port Pointer to the port data structure.
354 * @tag Tag of the command that has completed.
355 * @data Pointer to a completion structure.
356 * @status Completion status.
361 static void mtip_completion(struct mtip_port
*port
,
366 struct mtip_cmd
*command
= &port
->commands
[tag
];
367 struct completion
*waiting
= data
;
368 if (unlikely(status
== PORT_IRQ_TF_ERR
))
369 dev_warn(&port
->dd
->pdev
->dev
,
370 "Internal command %d completed with TFE\n", tag
);
372 command
->async_callback
= NULL
;
373 command
->comp_func
= NULL
;
379 * Enable/disable the reception of FIS
381 * @port Pointer to the port data structure
382 * @enable 1 to enable, 0 to disable
385 * Previous state: 1 enabled, 0 disabled
387 static int mtip_enable_fis(struct mtip_port
*port
, int enable
)
391 /* enable FIS reception */
392 tmp
= readl(port
->mmio
+ PORT_CMD
);
394 writel(tmp
| PORT_CMD_FIS_RX
, port
->mmio
+ PORT_CMD
);
396 writel(tmp
& ~PORT_CMD_FIS_RX
, port
->mmio
+ PORT_CMD
);
399 readl(port
->mmio
+ PORT_CMD
);
401 return (((tmp
& PORT_CMD_FIS_RX
) == PORT_CMD_FIS_RX
));
405 * Enable/disable the DMA engine
407 * @port Pointer to the port data structure
408 * @enable 1 to enable, 0 to disable
411 * Previous state: 1 enabled, 0 disabled.
413 static int mtip_enable_engine(struct mtip_port
*port
, int enable
)
417 /* enable FIS reception */
418 tmp
= readl(port
->mmio
+ PORT_CMD
);
420 writel(tmp
| PORT_CMD_START
, port
->mmio
+ PORT_CMD
);
422 writel(tmp
& ~PORT_CMD_START
, port
->mmio
+ PORT_CMD
);
424 readl(port
->mmio
+ PORT_CMD
);
425 return (((tmp
& PORT_CMD_START
) == PORT_CMD_START
));
429 * Enables the port DMA engine and FIS reception.
434 static inline void mtip_start_port(struct mtip_port
*port
)
436 /* Enable FIS reception */
437 mtip_enable_fis(port
, 1);
439 /* Enable the DMA engine */
440 mtip_enable_engine(port
, 1);
444 * Deinitialize a port by disabling port interrupts, the DMA engine,
447 * @port Pointer to the port structure
452 static inline void mtip_deinit_port(struct mtip_port
*port
)
454 /* Disable interrupts on this port */
455 writel(0, port
->mmio
+ PORT_IRQ_MASK
);
457 /* Disable the DMA engine */
458 mtip_enable_engine(port
, 0);
460 /* Disable FIS reception */
461 mtip_enable_fis(port
, 0);
467 * This function deinitializes the port by calling mtip_deinit_port() and
468 * then initializes it by setting the command header and RX FIS addresses,
469 * clearing the SError register and any pending port interrupts before
470 * re-enabling the default set of port interrupts.
472 * @port Pointer to the port structure.
477 static void mtip_init_port(struct mtip_port
*port
)
480 mtip_deinit_port(port
);
482 /* Program the command list base and FIS base addresses */
483 if (readl(port
->dd
->mmio
+ HOST_CAP
) & HOST_CAP_64
) {
484 writel((port
->command_list_dma
>> 16) >> 16,
485 port
->mmio
+ PORT_LST_ADDR_HI
);
486 writel((port
->rxfis_dma
>> 16) >> 16,
487 port
->mmio
+ PORT_FIS_ADDR_HI
);
490 writel(port
->command_list_dma
& 0xffffffff,
491 port
->mmio
+ PORT_LST_ADDR
);
492 writel(port
->rxfis_dma
& 0xffffffff, port
->mmio
+ PORT_FIS_ADDR
);
495 writel(readl(port
->mmio
+ PORT_SCR_ERR
), port
->mmio
+ PORT_SCR_ERR
);
497 /* reset the completed registers.*/
498 for (i
= 0; i
< port
->dd
->slot_groups
; i
++)
499 writel(0xFFFFFFFF, port
->completed
[i
]);
501 /* Clear any pending interrupts for this port */
502 writel(readl(port
->mmio
+ PORT_IRQ_STAT
), port
->mmio
+ PORT_IRQ_STAT
);
504 /* Enable port interrupts */
505 writel(DEF_PORT_IRQ
, port
->mmio
+ PORT_IRQ_MASK
);
509 * Reset the HBA (without sleeping)
511 * Just like hba_reset, except does not call sleep, so can be
512 * run from interrupt/tasklet context.
514 * @dd Pointer to the driver data structure.
517 * 0 The reset was successful.
518 * -1 The HBA Reset bit did not clear.
520 int hba_reset_nosleep(struct driver_data
*dd
)
522 unsigned long timeout
;
524 /* Chip quirk: quiesce any chip function */
527 /* Set the reset bit */
528 writel(HOST_RESET
, dd
->mmio
+ HOST_CTL
);
531 readl(dd
->mmio
+ HOST_CTL
);
534 * Wait 10ms then spin for up to 1 second
535 * waiting for reset acknowledgement
537 timeout
= jiffies
+ msecs_to_jiffies(1000);
539 while ((readl(dd
->mmio
+ HOST_CTL
) & HOST_RESET
)
540 && time_before(jiffies
, timeout
))
543 if (readl(dd
->mmio
+ HOST_CTL
) & HOST_RESET
)
552 * @port Pointer to the port data structure.
557 void mtip_restart_port(struct mtip_port
*port
)
559 unsigned long timeout
;
561 /* Disable the DMA engine */
562 mtip_enable_engine(port
, 0);
564 /* Chip quirk: wait up to 500ms for PxCMD.CR == 0 */
565 timeout
= jiffies
+ msecs_to_jiffies(500);
566 while ((readl(port
->mmio
+ PORT_CMD
) & PORT_CMD_LIST_ON
)
567 && time_before(jiffies
, timeout
))
571 * Chip quirk: escalate to hba reset if
572 * PxCMD.CR not clear after 500 ms
574 if (readl(port
->mmio
+ PORT_CMD
) & PORT_CMD_LIST_ON
) {
575 dev_warn(&port
->dd
->pdev
->dev
,
576 "PxCMD.CR not clear, escalating reset\n");
578 if (hba_reset_nosleep(port
->dd
))
579 dev_err(&port
->dd
->pdev
->dev
,
580 "HBA reset escalation failed.\n");
582 /* 30 ms delay before com reset to quiesce chip */
586 dev_warn(&port
->dd
->pdev
->dev
, "Issuing COM reset\n");
589 writel(readl(port
->mmio
+ PORT_SCR_CTL
) |
590 1, port
->mmio
+ PORT_SCR_CTL
);
591 readl(port
->mmio
+ PORT_SCR_CTL
);
593 /* Wait 1 ms to quiesce chip function */
594 timeout
= jiffies
+ msecs_to_jiffies(1);
595 while (time_before(jiffies
, timeout
))
598 /* Clear PxSCTL.DET */
599 writel(readl(port
->mmio
+ PORT_SCR_CTL
) & ~1,
600 port
->mmio
+ PORT_SCR_CTL
);
601 readl(port
->mmio
+ PORT_SCR_CTL
);
603 /* Wait 500 ms for bit 0 of PORT_SCR_STS to be set */
604 timeout
= jiffies
+ msecs_to_jiffies(500);
605 while (((readl(port
->mmio
+ PORT_SCR_STAT
) & 0x01) == 0)
606 && time_before(jiffies
, timeout
))
609 if ((readl(port
->mmio
+ PORT_SCR_STAT
) & 0x01) == 0)
610 dev_warn(&port
->dd
->pdev
->dev
,
611 "COM reset failed\n");
613 /* Clear SError, the PxSERR.DIAG.x should be set so clear it */
614 writel(readl(port
->mmio
+ PORT_SCR_ERR
), port
->mmio
+ PORT_SCR_ERR
);
616 /* Enable the DMA engine */
617 mtip_enable_engine(port
, 1);
621 * Helper function for tag logging
623 static void print_tags(struct driver_data
*dd
,
625 unsigned long *tagbits
)
627 unsigned int tag
, count
= 0;
629 for (tag
= 0; tag
< (dd
->slot_groups
) * 32; tag
++) {
630 if (test_bit(tag
, tagbits
))
634 dev_info(&dd
->pdev
->dev
, "%s [%i tags]\n", msg
, count
);
640 * @dd Pointer to the DRIVER_DATA structure.
645 static void mtip_handle_tfe(struct driver_data
*dd
)
647 int group
, tag
, bit
, reissue
;
648 struct mtip_port
*port
;
649 struct mtip_cmd
*command
;
651 struct host_to_dev_fis
*fis
;
652 unsigned long tagaccum
[SLOTBITS_IN_LONGS
];
654 dev_warn(&dd
->pdev
->dev
, "Taskfile error\n");
658 /* Stop the timer to prevent command timeouts. */
659 del_timer(&port
->cmd_timer
);
662 atomic_inc(&dd
->eh_active
);
664 /* Loop through all the groups */
665 for (group
= 0; group
< dd
->slot_groups
; group
++) {
666 completed
= readl(port
->completed
[group
]);
668 /* clear completed status register in the hardware.*/
669 writel(completed
, port
->completed
[group
]);
671 /* clear the tag accumulator */
672 memset(tagaccum
, 0, SLOTBITS_IN_LONGS
* sizeof(long));
674 /* Process successfully completed commands */
675 for (bit
= 0; bit
< 32 && completed
; bit
++) {
676 if (!(completed
& (1<<bit
)))
678 tag
= (group
<< 5) + bit
;
680 /* Skip the internal command slot */
681 if (tag
== MTIP_TAG_INTERNAL
)
684 command
= &port
->commands
[tag
];
685 if (likely(command
->comp_func
)) {
686 set_bit(tag
, tagaccum
);
687 atomic_set(&port
->commands
[tag
].active
, 0);
688 command
->comp_func(port
,
693 dev_err(&port
->dd
->pdev
->dev
,
694 "Missing completion func for tag %d",
696 if (mtip_check_surprise_removal(dd
->pdev
)) {
697 mtip_command_cleanup(dd
);
698 /* don't proceed further */
704 print_tags(dd
, "TFE tags completed:", tagaccum
);
706 /* Restart the port */
708 mtip_restart_port(port
);
710 /* clear the tag accumulator */
711 memset(tagaccum
, 0, SLOTBITS_IN_LONGS
* sizeof(long));
713 /* Loop through all the groups */
714 for (group
= 0; group
< dd
->slot_groups
; group
++) {
715 for (bit
= 0; bit
< 32; bit
++) {
717 tag
= (group
<< 5) + bit
;
719 /* If the active bit is set re-issue the command */
720 if (atomic_read(&port
->commands
[tag
].active
) == 0)
723 fis
= (struct host_to_dev_fis
*)
724 port
->commands
[tag
].command
;
726 /* Should re-issue? */
727 if (tag
== MTIP_TAG_INTERNAL
||
728 fis
->command
== ATA_CMD_SET_FEATURES
)
732 * First check if this command has
733 * exceeded its retries.
736 (port
->commands
[tag
].retries
-- > 0)) {
738 set_bit(tag
, tagaccum
);
740 /* Update the timeout value. */
741 port
->commands
[tag
].comp_time
=
742 jiffies
+ msecs_to_jiffies(
743 MTIP_NCQ_COMMAND_TIMEOUT_MS
);
744 /* Re-issue the command. */
745 mtip_issue_ncq_command(port
, tag
);
750 /* Retire a command that will not be reissued */
751 dev_warn(&port
->dd
->pdev
->dev
,
752 "retiring tag %d\n", tag
);
753 atomic_set(&port
->commands
[tag
].active
, 0);
755 if (port
->commands
[tag
].comp_func
)
756 port
->commands
[tag
].comp_func(
759 port
->commands
[tag
].comp_data
,
762 dev_warn(&port
->dd
->pdev
->dev
,
763 "Bad completion for tag %d\n",
767 print_tags(dd
, "TFE tags reissued:", tagaccum
);
769 /* Decrement eh_active */
770 atomic_dec(&dd
->eh_active
);
772 mod_timer(&port
->cmd_timer
,
773 jiffies
+ msecs_to_jiffies(MTIP_TIMEOUT_CHECK_PERIOD
));
777 * Handle a set device bits interrupt
779 static inline void mtip_process_sdbf(struct driver_data
*dd
)
781 struct mtip_port
*port
= dd
->port
;
784 struct mtip_cmd
*command
;
786 /* walk all bits in all slot groups */
787 for (group
= 0; group
< dd
->slot_groups
; group
++) {
788 completed
= readl(port
->completed
[group
]);
790 /* clear completed status register in the hardware.*/
791 writel(completed
, port
->completed
[group
]);
793 /* Process completed commands. */
795 (bit
< 32) && completed
;
796 bit
++, completed
>>= 1) {
797 if (completed
& 0x01) {
798 tag
= (group
<< 5) | bit
;
800 /* skip internal command slot. */
801 if (unlikely(tag
== MTIP_TAG_INTERNAL
))
804 command
= &port
->commands
[tag
];
806 /* make internal callback */
807 if (likely(command
->comp_func
)) {
814 dev_warn(&dd
->pdev
->dev
,
819 if (mtip_check_surprise_removal(
821 mtip_command_cleanup(dd
);
831 * Process legacy pio and d2h interrupts
833 static inline void mtip_process_legacy(struct driver_data
*dd
, u32 port_stat
)
835 struct mtip_port
*port
= dd
->port
;
836 struct mtip_cmd
*cmd
= &port
->commands
[MTIP_TAG_INTERNAL
];
838 if (port
->internal_cmd_in_progress
&&
840 !(readl(port
->cmd_issue
[MTIP_TAG_INTERNAL
])
841 & (1 << MTIP_TAG_INTERNAL
))) {
842 if (cmd
->comp_func
) {
851 dev_warn(&dd
->pdev
->dev
, "IRQ status 0x%x ignored.\n", port_stat
);
857 * Demux and handle errors
859 static inline void mtip_process_errors(struct driver_data
*dd
, u32 port_stat
)
861 if (likely(port_stat
& (PORT_IRQ_TF_ERR
| PORT_IRQ_IF_ERR
)))
864 if (unlikely(port_stat
& PORT_IRQ_CONNECT
)) {
865 dev_warn(&dd
->pdev
->dev
,
866 "Clearing PxSERR.DIAG.x\n");
867 writel((1 << 26), dd
->port
->mmio
+ PORT_SCR_ERR
);
870 if (unlikely(port_stat
& PORT_IRQ_PHYRDY
)) {
871 dev_warn(&dd
->pdev
->dev
,
872 "Clearing PxSERR.DIAG.n\n");
873 writel((1 << 16), dd
->port
->mmio
+ PORT_SCR_ERR
);
876 if (unlikely(port_stat
& ~PORT_IRQ_HANDLED
)) {
877 dev_warn(&dd
->pdev
->dev
,
878 "Port stat errors %x unhandled\n",
879 (port_stat
& ~PORT_IRQ_HANDLED
));
883 static inline irqreturn_t
mtip_handle_irq(struct driver_data
*data
)
885 struct driver_data
*dd
= (struct driver_data
*) data
;
886 struct mtip_port
*port
= dd
->port
;
887 u32 hba_stat
, port_stat
;
890 hba_stat
= readl(dd
->mmio
+ HOST_IRQ_STAT
);
894 /* Acknowledge the interrupt status on the port.*/
895 port_stat
= readl(port
->mmio
+ PORT_IRQ_STAT
);
896 writel(port_stat
, port
->mmio
+ PORT_IRQ_STAT
);
898 /* Demux port status */
899 if (likely(port_stat
& PORT_IRQ_SDB_FIS
))
900 mtip_process_sdbf(dd
);
902 if (unlikely(port_stat
& PORT_IRQ_ERR
)) {
903 if (unlikely(mtip_check_surprise_removal(dd
->pdev
))) {
904 mtip_command_cleanup(dd
);
905 /* don't proceed further */
909 mtip_process_errors(dd
, port_stat
& PORT_IRQ_ERR
);
912 if (unlikely(port_stat
& PORT_IRQ_LEGACY
))
913 mtip_process_legacy(dd
, port_stat
& PORT_IRQ_LEGACY
);
916 /* acknowledge interrupt */
917 writel(hba_stat
, dd
->mmio
+ HOST_IRQ_STAT
);
923 * Wrapper for mtip_handle_irq
924 * (ignores return code)
926 static void mtip_tasklet(unsigned long data
)
928 mtip_handle_irq((struct driver_data
*) data
);
932 * HBA interrupt subroutine.
935 * @instance Pointer to the driver data structure.
938 * IRQ_HANDLED A HBA interrupt was pending and handled.
939 * IRQ_NONE This interrupt was not for the HBA.
941 static irqreturn_t
mtip_irq_handler(int irq
, void *instance
)
943 struct driver_data
*dd
= instance
;
944 tasklet_schedule(&dd
->tasklet
);
948 static void mtip_issue_non_ncq_command(struct mtip_port
*port
, int tag
)
950 atomic_set(&port
->commands
[tag
].active
, 1);
951 writel(1 << MTIP_TAG_BIT(tag
),
952 port
->cmd_issue
[MTIP_TAG_INDEX(tag
)]);
956 * Wait for port to quiesce
958 * @port Pointer to port data structure
959 * @timeout Max duration to wait (ms)
963 * -EBUSY Commands still active
965 static int mtip_quiesce_io(struct mtip_port
*port
, unsigned long timeout
)
968 unsigned int n
, active
;
970 to
= jiffies
+ msecs_to_jiffies(timeout
);
973 * Ignore s_active bit 0 of array element 0.
974 * This bit will always be set
976 active
= readl(port
->s_active
[0]) & 0xfffffffe;
977 for (n
= 1; n
< port
->dd
->slot_groups
; n
++)
978 active
|= readl(port
->s_active
[n
]);
984 } while (time_before(jiffies
, to
));
986 return active
? -EBUSY
: 0;
990 * Execute an internal command and wait for the completion.
992 * @port Pointer to the port data structure.
993 * @fis Pointer to the FIS that describes the command.
994 * @fisLen Length in WORDS of the FIS.
995 * @buffer DMA accessible for command data.
996 * @bufLen Length, in bytes, of the data buffer.
997 * @opts Command header options, excluding the FIS length
998 * and the number of PRD entries.
999 * @timeout Time in ms to wait for the command to complete.
1002 * 0 Command completed successfully.
1003 * -EFAULT The buffer address is not correctly aligned.
1004 * -EBUSY Internal command or other IO in progress.
1005 * -EAGAIN Time out waiting for command to complete.
1007 static int mtip_exec_internal_command(struct mtip_port
*port
,
1014 unsigned long timeout
)
1016 struct mtip_cmd_sg
*command_sg
;
1017 DECLARE_COMPLETION_ONSTACK(wait
);
1019 struct mtip_cmd
*int_cmd
= &port
->commands
[MTIP_TAG_INTERNAL
];
1021 /* Make sure the buffer is 8 byte aligned. This is asic specific. */
1022 if (buffer
& 0x00000007) {
1023 dev_err(&port
->dd
->pdev
->dev
,
1024 "SG buffer is not 8 byte aligned\n");
1028 /* Only one internal command should be running at a time */
1029 if (test_and_set_bit(MTIP_TAG_INTERNAL
, port
->allocated
)) {
1030 dev_warn(&port
->dd
->pdev
->dev
,
1031 "Internal command already active\n");
1034 port
->internal_cmd_in_progress
= 1;
1036 if (atomic
== GFP_KERNEL
) {
1037 /* wait for io to complete if non atomic */
1038 if (mtip_quiesce_io(port
, 5000) < 0) {
1039 dev_warn(&port
->dd
->pdev
->dev
,
1040 "Failed to quiesce IO\n");
1041 release_slot(port
, MTIP_TAG_INTERNAL
);
1042 port
->internal_cmd_in_progress
= 0;
1046 /* Set the completion function and data for the command. */
1047 int_cmd
->comp_data
= &wait
;
1048 int_cmd
->comp_func
= mtip_completion
;
1051 /* Clear completion - we're going to poll */
1052 int_cmd
->comp_data
= NULL
;
1053 int_cmd
->comp_func
= NULL
;
1056 /* Copy the command to the command table */
1057 memcpy(int_cmd
->command
, fis
, fisLen
*4);
1059 /* Populate the SG list */
1060 int_cmd
->command_header
->opts
=
1061 cpu_to_le32(opts
| fisLen
);
1063 command_sg
= int_cmd
->command
+ AHCI_CMD_TBL_HDR_SZ
;
1065 command_sg
->info
= cpu_to_le32((bufLen
-1) & 0x3fffff);
1066 command_sg
->dba
= cpu_to_le32(buffer
& 0xffffffff);
1067 command_sg
->dba_upper
= cpu_to_le32((buffer
>> 16) >> 16);
1069 int_cmd
->command_header
->opts
|= cpu_to_le32((1 << 16));
1072 /* Populate the command header */
1073 int_cmd
->command_header
->byte_count
= 0;
1075 /* Issue the command to the hardware */
1076 mtip_issue_non_ncq_command(port
, MTIP_TAG_INTERNAL
);
1078 /* Poll if atomic, wait_for_completion otherwise */
1079 if (atomic
== GFP_KERNEL
) {
1080 /* Wait for the command to complete or timeout. */
1081 if (wait_for_completion_timeout(
1083 msecs_to_jiffies(timeout
)) == 0) {
1084 dev_err(&port
->dd
->pdev
->dev
,
1085 "Internal command did not complete [%d]\n",
1090 if (readl(port
->cmd_issue
[MTIP_TAG_INTERNAL
])
1091 & (1 << MTIP_TAG_INTERNAL
)) {
1092 dev_warn(&port
->dd
->pdev
->dev
,
1093 "Retiring internal command but CI is 1.\n");
1097 /* Spin for <timeout> checking if command still outstanding */
1098 timeout
= jiffies
+ msecs_to_jiffies(timeout
);
1101 port
->cmd_issue
[MTIP_TAG_INTERNAL
])
1102 & (1 << MTIP_TAG_INTERNAL
))
1103 && time_before(jiffies
, timeout
))
1106 if (readl(port
->cmd_issue
[MTIP_TAG_INTERNAL
])
1107 & (1 << MTIP_TAG_INTERNAL
)) {
1108 dev_err(&port
->dd
->pdev
->dev
,
1109 "Internal command did not complete [%d]\n",
1115 /* Clear the allocated and active bits for the internal command. */
1116 atomic_set(&int_cmd
->active
, 0);
1117 release_slot(port
, MTIP_TAG_INTERNAL
);
1118 port
->internal_cmd_in_progress
= 0;
1124 * Byte-swap ATA ID strings.
1126 * ATA identify data contains strings in byte-swapped 16-bit words.
1127 * They must be swapped (on all architectures) to be usable as C strings.
1128 * This function swaps bytes in-place.
1130 * @buf The buffer location of the string
1131 * @len The number of bytes to swap
1136 static inline void ata_swap_string(u16
*buf
, unsigned int len
)
1139 for (i
= 0; i
< (len
/2); i
++)
1140 be16_to_cpus(&buf
[i
]);
1144 * Request the device identity information.
1146 * If a user space buffer is not specified, i.e. is NULL, the
1147 * identify information is still read from the drive and placed
1148 * into the identify data buffer (@e port->identify) in the
1149 * port data structure.
1150 * When the identify buffer contains valid identify information @e
1151 * port->identify_valid is non-zero.
1153 * @port Pointer to the port structure.
1154 * @user_buffer A user space buffer where the identify data should be
1158 * 0 Command completed successfully.
1159 * -EFAULT An error occurred while coping data to the user buffer.
1160 * -1 Command failed.
1162 static int mtip_get_identify(struct mtip_port
*port
, void __user
*user_buffer
)
1165 struct host_to_dev_fis fis
;
1167 down_write(&port
->dd
->internal_sem
);
1169 /* Build the FIS. */
1170 memset(&fis
, 0, sizeof(struct host_to_dev_fis
));
1173 fis
.command
= ATA_CMD_ID_ATA
;
1175 /* Set the identify information as invalid. */
1176 port
->identify_valid
= 0;
1178 /* Clear the identify information. */
1179 memset(port
->identify
, 0, sizeof(u16
) * ATA_ID_WORDS
);
1181 /* Execute the command. */
1182 if (mtip_exec_internal_command(port
,
1186 sizeof(u16
) * ATA_ID_WORDS
,
1189 MTIP_INTERNAL_COMMAND_TIMEOUT_MS
)
1196 * Perform any necessary byte-swapping. Yes, the kernel does in fact
1197 * perform field-sensitive swapping on the string fields.
1198 * See the kernel use of ata_id_string() for proof of this.
1200 #ifdef __LITTLE_ENDIAN
1201 ata_swap_string(port
->identify
+ 27, 40); /* model string*/
1202 ata_swap_string(port
->identify
+ 23, 8); /* firmware string*/
1203 ata_swap_string(port
->identify
+ 10, 20); /* serial# string*/
1207 for (i
= 0; i
< ATA_ID_WORDS
; i
++)
1208 port
->identify
[i
] = le16_to_cpu(port
->identify
[i
]);
1212 /* Set the identify buffer as valid. */
1213 port
->identify_valid
= 1;
1219 ATA_ID_WORDS
* sizeof(u16
))) {
1226 up_write(&port
->dd
->internal_sem
);
1231 * Issue a standby immediate command to the device.
1233 * @port Pointer to the port structure.
1236 * 0 Command was executed successfully.
1237 * -1 An error occurred while executing the command.
1239 static int mtip_standby_immediate(struct mtip_port
*port
)
1242 struct host_to_dev_fis fis
;
1244 down_write(&port
->dd
->internal_sem
);
1246 /* Build the FIS. */
1247 memset(&fis
, 0, sizeof(struct host_to_dev_fis
));
1250 fis
.command
= ATA_CMD_STANDBYNOW1
;
1252 /* Execute the command. Use a 15-second timeout for large drives. */
1253 rv
= mtip_exec_internal_command(port
,
1262 up_write(&port
->dd
->internal_sem
);
1268 * Get the drive capacity.
1270 * @dd Pointer to the device data structure.
1271 * @sectors Pointer to the variable that will receive the sector count.
1274 * 1 Capacity was returned successfully.
1275 * 0 The identify information is invalid.
1277 bool mtip_hw_get_capacity(struct driver_data
*dd
, sector_t
*sectors
)
1279 struct mtip_port
*port
= dd
->port
;
1280 u64 total
, raw0
, raw1
, raw2
, raw3
;
1281 raw0
= port
->identify
[100];
1282 raw1
= port
->identify
[101];
1283 raw2
= port
->identify
[102];
1284 raw3
= port
->identify
[103];
1285 total
= raw0
| raw1
<<16 | raw2
<<32 | raw3
<<48;
1287 return (bool) !!port
->identify_valid
;
1293 * Resets the HBA by setting the HBA Reset bit in the Global
1294 * HBA Control register. After setting the HBA Reset bit the
1295 * function waits for 1 second before reading the HBA Reset
1296 * bit to make sure it has cleared. If HBA Reset is not clear
1297 * an error is returned. Cannot be used in non-blockable
1300 * @dd Pointer to the driver data structure.
1303 * 0 The reset was successful.
1304 * -1 The HBA Reset bit did not clear.
1306 static int mtip_hba_reset(struct driver_data
*dd
)
1308 mtip_deinit_port(dd
->port
);
1310 /* Set the reset bit */
1311 writel(HOST_RESET
, dd
->mmio
+ HOST_CTL
);
1314 readl(dd
->mmio
+ HOST_CTL
);
1316 /* Wait for reset to clear */
1319 /* Check the bit has cleared */
1320 if (readl(dd
->mmio
+ HOST_CTL
) & HOST_RESET
) {
1321 dev_err(&dd
->pdev
->dev
,
1322 "Reset bit did not clear.\n");
1330 * Display the identify command data.
1332 * @port Pointer to the port data structure.
1337 static void mtip_dump_identify(struct mtip_port
*port
)
1340 unsigned short revid
;
1343 if (!port
->identify_valid
)
1346 strlcpy(cbuf
, (char *)(port
->identify
+10), 21);
1347 dev_info(&port
->dd
->pdev
->dev
,
1348 "Serial No.: %s\n", cbuf
);
1350 strlcpy(cbuf
, (char *)(port
->identify
+23), 9);
1351 dev_info(&port
->dd
->pdev
->dev
,
1352 "Firmware Ver.: %s\n", cbuf
);
1354 strlcpy(cbuf
, (char *)(port
->identify
+27), 41);
1355 dev_info(&port
->dd
->pdev
->dev
, "Model: %s\n", cbuf
);
1357 if (mtip_hw_get_capacity(port
->dd
, §ors
))
1358 dev_info(&port
->dd
->pdev
->dev
,
1359 "Capacity: %llu sectors (%llu MB)\n",
1361 ((u64
)sectors
) * ATA_SECT_SIZE
>> 20);
1363 pci_read_config_word(port
->dd
->pdev
, PCI_REVISION_ID
, &revid
);
1364 switch (revid
& 0xff) {
1366 strlcpy(cbuf
, "A0", 3);
1369 strlcpy(cbuf
, "A2", 3);
1372 strlcpy(cbuf
, "?", 2);
1375 dev_info(&port
->dd
->pdev
->dev
,
1376 "Card Type: %s\n", cbuf
);
1380 * Map the commands scatter list into the command table.
1382 * @command Pointer to the command.
1383 * @nents Number of scatter list entries.
1388 static inline void fill_command_sg(struct driver_data
*dd
,
1389 struct mtip_cmd
*command
,
1393 unsigned int dma_len
;
1394 struct mtip_cmd_sg
*command_sg
;
1395 struct scatterlist
*sg
= command
->sg
;
1397 command_sg
= command
->command
+ AHCI_CMD_TBL_HDR_SZ
;
1399 for (n
= 0; n
< nents
; n
++) {
1400 dma_len
= sg_dma_len(sg
);
1401 if (dma_len
> 0x400000)
1402 dev_err(&dd
->pdev
->dev
,
1403 "DMA segment length truncated\n");
1404 command_sg
->info
= cpu_to_le32((dma_len
-1) & 0x3fffff);
1405 #if (BITS_PER_LONG == 64)
1406 *((unsigned long *) &command_sg
->dba
) =
1407 cpu_to_le64(sg_dma_address(sg
));
1409 command_sg
->dba
= cpu_to_le32(sg_dma_address(sg
));
1410 command_sg
->dba_upper
=
1411 cpu_to_le32((sg_dma_address(sg
) >> 16) >> 16);
1419 * @brief Execute a drive command.
1421 * return value 0 The command completed successfully.
1422 * return value -1 An error occurred while executing the command.
1424 int exec_drive_task(struct mtip_port
*port
, u8
*command
)
1426 struct host_to_dev_fis fis
;
1427 struct host_to_dev_fis
*reply
= (port
->rxfis
+ RX_FIS_D2H_REG
);
1429 /* Lock the internal command semaphore. */
1430 down_write(&port
->dd
->internal_sem
);
1432 /* Build the FIS. */
1433 memset(&fis
, 0, sizeof(struct host_to_dev_fis
));
1436 fis
.command
= command
[0];
1437 fis
.features
= command
[1];
1438 fis
.sect_count
= command
[2];
1439 fis
.sector
= command
[3];
1440 fis
.cyl_low
= command
[4];
1441 fis
.cyl_hi
= command
[5];
1442 fis
.device
= command
[6] & ~0x10; /* Clear the dev bit*/
1445 dbg_printk(MTIP_DRV_NAME
"%s: User Command: cmd %x, feat %x, "
1446 "nsect %x, sect %x, lcyl %x, "
1447 "hcyl %x, sel %x\n",
1457 /* Execute the command. */
1458 if (mtip_exec_internal_command(port
,
1465 MTIP_IOCTL_COMMAND_TIMEOUT_MS
) < 0) {
1466 up_write(&port
->dd
->internal_sem
);
1470 command
[0] = reply
->command
; /* Status*/
1471 command
[1] = reply
->features
; /* Error*/
1472 command
[4] = reply
->cyl_low
;
1473 command
[5] = reply
->cyl_hi
;
1475 dbg_printk(MTIP_DRV_NAME
"%s: Completion Status: stat %x, "
1476 "err %x , cyl_lo %x cyl_hi %x\n",
1483 up_write(&port
->dd
->internal_sem
);
1488 * @brief Execute a drive command.
1490 * @param port Pointer to the port data structure.
1491 * @param command Pointer to the user specified command parameters.
1492 * @param user_buffer Pointer to the user space buffer where read sector
1493 * data should be copied.
1495 * return value 0 The command completed successfully.
1496 * return value -EFAULT An error occurred while copying the completion
1497 * data to the user space buffer.
1498 * return value -1 An error occurred while executing the command.
1500 int exec_drive_command(struct mtip_port
*port
, u8
*command
,
1501 void __user
*user_buffer
)
1503 struct host_to_dev_fis fis
;
1504 struct host_to_dev_fis
*reply
= (port
->rxfis
+ RX_FIS_D2H_REG
);
1506 /* Lock the internal command semaphore. */
1507 down_write(&port
->dd
->internal_sem
);
1509 /* Build the FIS. */
1510 memset(&fis
, 0, sizeof(struct host_to_dev_fis
));
1513 fis
.command
= command
[0];
1514 fis
.features
= command
[2];
1515 fis
.sect_count
= command
[3];
1516 if (fis
.command
== ATA_CMD_SMART
) {
1517 fis
.sector
= command
[1];
1522 dbg_printk(MTIP_DRV_NAME
1523 "%s: User Command: cmd %x, sect %x, "
1524 "feat %x, sectcnt %x\n",
1531 memset(port
->sector_buffer
, 0x00, ATA_SECT_SIZE
);
1533 /* Execute the command. */
1534 if (mtip_exec_internal_command(port
,
1537 port
->sector_buffer_dma
,
1538 (command
[3] != 0) ? ATA_SECT_SIZE
: 0,
1541 MTIP_IOCTL_COMMAND_TIMEOUT_MS
)
1543 up_write(&port
->dd
->internal_sem
);
1547 /* Collect the completion status. */
1548 command
[0] = reply
->command
; /* Status*/
1549 command
[1] = reply
->features
; /* Error*/
1550 command
[2] = command
[3];
1552 dbg_printk(MTIP_DRV_NAME
1553 "%s: Completion Status: stat %x, "
1560 if (user_buffer
&& command
[3]) {
1561 if (copy_to_user(user_buffer
,
1562 port
->sector_buffer
,
1563 ATA_SECT_SIZE
* command
[3])) {
1564 up_write(&port
->dd
->internal_sem
);
1569 up_write(&port
->dd
->internal_sem
);
1574 * Indicates whether a command has a single sector payload.
1576 * @command passed to the device to perform the certain event.
1577 * @features passed to the device to perform the certain event.
1580 * 1 command is one that always has a single sector payload,
1581 * regardless of the value in the Sector Count field.
1585 static unsigned int implicit_sector(unsigned char command
,
1586 unsigned char features
)
1588 unsigned int rv
= 0;
1590 /* list of commands that have an implicit sector count of 1 */
1603 if (features
== 0x03)
1607 if ((features
== 0xD0) || (features
== 0xD1))
1611 if ((features
== 0xC2) || (features
== 0xC3))
1619 * Executes a taskfile
1620 * See ide_taskfile_ioctl() for derivation
1622 static int exec_drive_taskfile(struct driver_data
*dd
,
1624 unsigned char compat
)
1626 struct host_to_dev_fis fis
;
1627 struct host_to_dev_fis
*reply
;
1628 ide_task_request_t
*req_task
;
1631 dma_addr_t outbuf_dma
= (dma_addr_t
)NULL
;
1632 dma_addr_t inbuf_dma
= (dma_addr_t
)NULL
;
1633 dma_addr_t dma_buffer
= (dma_addr_t
)NULL
;
1635 int tasksize
= sizeof(struct ide_task_request_s
);
1636 unsigned int taskin
= 0;
1637 unsigned int taskout
= 0;
1639 char __user
*buf
= (char __user
*)arg
;
1640 unsigned int timeout
= MTIP_IOCTL_COMMAND_TIMEOUT_MS
;
1641 unsigned int force_single_sector
;
1642 unsigned int transfer_size
;
1643 unsigned long task_file_data
;
1644 int intotal
, outtotal
;
1645 struct mtip_compat_ide_task_request_s
*compat_req_task
= NULL
;
1646 int compat_tasksize
= sizeof(struct mtip_compat_ide_task_request_s
);
1648 req_task
= kzalloc(tasksize
, GFP_KERNEL
);
1649 if (req_task
== NULL
)
1654 (struct mtip_compat_ide_task_request_s __user
*) arg
;
1656 if (copy_from_user(req_task
, buf
,
1658 (2 * sizeof(compat_long_t
)))) {
1663 if (get_user(req_task
->out_size
, &compat_req_task
->out_size
)) {
1668 if (get_user(req_task
->in_size
, &compat_req_task
->in_size
)) {
1673 outtotal
= compat_tasksize
;
1674 intotal
= compat_tasksize
+ req_task
->out_size
;
1676 if (copy_from_user(req_task
, buf
, tasksize
)) {
1682 outtotal
= tasksize
;
1683 intotal
= tasksize
+ req_task
->out_size
;
1686 taskout
= req_task
->out_size
;
1687 taskin
= req_task
->in_size
;
1688 /* 130560 = 512 * 0xFF*/
1689 if (taskin
> 130560 || taskout
> 130560) {
1695 outbuf
= kzalloc(taskout
, GFP_KERNEL
);
1696 if (outbuf
== NULL
) {
1700 if (copy_from_user(outbuf
, buf
+ outtotal
, taskout
)) {
1704 outbuf_dma
= pci_map_single(dd
->pdev
,
1708 if (outbuf_dma
== (dma_addr_t
)NULL
) {
1712 dma_buffer
= outbuf_dma
;
1716 inbuf
= kzalloc(taskin
, GFP_KERNEL
);
1717 if (inbuf
== NULL
) {
1722 if (copy_from_user(inbuf
, buf
+ intotal
, taskin
)) {
1726 inbuf_dma
= pci_map_single(dd
->pdev
,
1728 taskin
, DMA_FROM_DEVICE
);
1729 if (inbuf_dma
== (dma_addr_t
)NULL
) {
1733 dma_buffer
= inbuf_dma
;
1736 /* only supports PIO and non-data commands from this ioctl. */
1737 switch (req_task
->data_phase
) {
1739 nsect
= taskout
/ ATA_SECT_SIZE
;
1740 reply
= (dd
->port
->rxfis
+ RX_FIS_PIO_SETUP
);
1743 reply
= (dd
->port
->rxfis
+ RX_FIS_PIO_SETUP
);
1745 case TASKFILE_NO_DATA
:
1746 reply
= (dd
->port
->rxfis
+ RX_FIS_D2H_REG
);
1753 /* Lock the internal command semaphore. */
1754 down_write(&dd
->internal_sem
);
1756 /* Build the FIS. */
1757 memset(&fis
, 0, sizeof(struct host_to_dev_fis
));
1761 fis
.command
= req_task
->io_ports
[7];
1762 fis
.features
= req_task
->io_ports
[1];
1763 fis
.sect_count
= req_task
->io_ports
[2];
1764 fis
.lba_low
= req_task
->io_ports
[3];
1765 fis
.lba_mid
= req_task
->io_ports
[4];
1766 fis
.lba_hi
= req_task
->io_ports
[5];
1767 /* Clear the dev bit*/
1768 fis
.device
= req_task
->io_ports
[6] & ~0x10;
1770 if ((req_task
->in_flags
.all
== 0) && (req_task
->out_flags
.all
& 1)) {
1771 req_task
->in_flags
.all
=
1772 IDE_TASKFILE_STD_IN_FLAGS
|
1773 (IDE_HOB_STD_IN_FLAGS
<< 8);
1774 fis
.lba_low_ex
= req_task
->hob_ports
[3];
1775 fis
.lba_mid_ex
= req_task
->hob_ports
[4];
1776 fis
.lba_hi_ex
= req_task
->hob_ports
[5];
1777 fis
.features_ex
= req_task
->hob_ports
[1];
1778 fis
.sect_cnt_ex
= req_task
->hob_ports
[2];
1781 req_task
->in_flags
.all
= IDE_TASKFILE_STD_IN_FLAGS
;
1784 force_single_sector
= implicit_sector(fis
.command
, fis
.features
);
1786 if ((taskin
|| taskout
) && (!fis
.sect_count
)) {
1788 fis
.sect_count
= nsect
;
1790 if (!force_single_sector
) {
1791 dev_warn(&dd
->pdev
->dev
,
1792 "data movement but "
1793 "sect_count is 0\n");
1794 up_write(&dd
->internal_sem
);
1801 dbg_printk(MTIP_DRV_NAME
1802 "taskfile: cmd %x, feat %x, nsect %x,"
1803 " sect/lbal %x, lcyl/lbam %x, hcyl/lbah %x,"
1813 switch (fis
.command
) {
1814 case 0x92: /* Change timeout for Download Microcode to 60 seconds.*/
1817 case 0xf4: /* Change timeout for Security Erase Unit to 4 minutes.*/
1820 case 0xe0: /* Change timeout for standby immediate to 10 seconds.*/
1823 case 0xf7: /* Change timeout for vendor unique command to 10 secs */
1826 case 0xfa: /* Change timeout for vendor unique command to 10 secs */
1830 timeout
= MTIP_IOCTL_COMMAND_TIMEOUT_MS
;
1834 /* Determine the correct transfer size.*/
1835 if (force_single_sector
)
1836 transfer_size
= ATA_SECT_SIZE
;
1838 transfer_size
= ATA_SECT_SIZE
* fis
.sect_count
;
1840 /* Execute the command.*/
1841 if (mtip_exec_internal_command(dd
->port
,
1849 up_write(&dd
->internal_sem
);
1854 task_file_data
= readl(dd
->port
->mmio
+PORT_TFDATA
);
1856 if ((req_task
->data_phase
== TASKFILE_IN
) && !(task_file_data
& 1)) {
1857 reply
= dd
->port
->rxfis
+ RX_FIS_PIO_SETUP
;
1858 req_task
->io_ports
[7] = reply
->control
;
1860 reply
= dd
->port
->rxfis
+ RX_FIS_D2H_REG
;
1861 req_task
->io_ports
[7] = reply
->command
;
1864 /* reclaim the DMA buffers.*/
1866 pci_unmap_single(dd
->pdev
, inbuf_dma
,
1867 taskin
, DMA_FROM_DEVICE
);
1869 pci_unmap_single(dd
->pdev
, outbuf_dma
,
1870 taskout
, DMA_TO_DEVICE
);
1871 inbuf_dma
= (dma_addr_t
) NULL
;
1872 outbuf_dma
= (dma_addr_t
) NULL
;
1874 /* return the ATA registers to the caller.*/
1875 req_task
->io_ports
[1] = reply
->features
;
1876 req_task
->io_ports
[2] = reply
->sect_count
;
1877 req_task
->io_ports
[3] = reply
->lba_low
;
1878 req_task
->io_ports
[4] = reply
->lba_mid
;
1879 req_task
->io_ports
[5] = reply
->lba_hi
;
1880 req_task
->io_ports
[6] = reply
->device
;
1882 if (req_task
->out_flags
.all
& 1) {
1884 req_task
->hob_ports
[3] = reply
->lba_low_ex
;
1885 req_task
->hob_ports
[4] = reply
->lba_mid_ex
;
1886 req_task
->hob_ports
[5] = reply
->lba_hi_ex
;
1887 req_task
->hob_ports
[1] = reply
->features_ex
;
1888 req_task
->hob_ports
[2] = reply
->sect_cnt_ex
;
1891 /* Com rest after secure erase or lowlevel format */
1892 if (((fis
.command
== 0xF4) ||
1893 ((fis
.command
== 0xFC) &&
1894 (fis
.features
== 0x27 || fis
.features
== 0x72 ||
1895 fis
.features
== 0x62 || fis
.features
== 0x26))) &&
1896 !(reply
->command
& 1)) {
1897 mtip_restart_port(dd
->port
);
1900 dbg_printk(MTIP_DRV_NAME
1901 "%s: Completion: stat %x,"
1902 "err %x, sect_cnt %x, lbalo %x,"
1903 "lbamid %x, lbahi %x, dev %x\n",
1905 req_task
->io_ports
[7],
1906 req_task
->io_ports
[1],
1907 req_task
->io_ports
[2],
1908 req_task
->io_ports
[3],
1909 req_task
->io_ports
[4],
1910 req_task
->io_ports
[5],
1911 req_task
->io_ports
[6]);
1913 up_write(&dd
->internal_sem
);
1916 if (copy_to_user(buf
, req_task
,
1918 (2 * sizeof(compat_long_t
)))) {
1922 if (put_user(req_task
->out_size
,
1923 &compat_req_task
->out_size
)) {
1927 if (put_user(req_task
->in_size
, &compat_req_task
->in_size
)) {
1932 if (copy_to_user(buf
, req_task
, tasksize
)) {
1938 if (copy_to_user(buf
+ outtotal
, outbuf
, taskout
)) {
1944 if (copy_to_user(buf
+ intotal
, inbuf
, taskin
)) {
1951 pci_unmap_single(dd
->pdev
, inbuf_dma
,
1952 taskin
, DMA_FROM_DEVICE
);
1954 pci_unmap_single(dd
->pdev
, outbuf_dma
,
1955 taskout
, DMA_TO_DEVICE
);
1964 * Handle IOCTL calls from the Block Layer.
1966 * This function is called by the Block Layer when it receives an IOCTL
1967 * command that it does not understand. If the IOCTL command is not supported
1968 * this function returns -ENOTTY.
1970 * @dd Pointer to the driver data structure.
1971 * @cmd IOCTL command passed from the Block Layer.
1972 * @arg IOCTL argument passed from the Block Layer.
1975 * 0 The IOCTL completed successfully.
1976 * -ENOTTY The specified command is not supported.
1977 * -EFAULT An error occurred copying data to a user space buffer.
1978 * -EIO An error occurred while executing the command.
1980 int mtip_hw_ioctl(struct driver_data
*dd
,
1983 unsigned char compat
)
1986 case HDIO_GET_IDENTITY
:
1987 if (mtip_get_identify(dd
->port
, (void __user
*) arg
) < 0) {
1988 dev_warn(&dd
->pdev
->dev
,
1989 "Unable to read identity\n");
1994 case HDIO_DRIVE_CMD
:
1996 u8 drive_command
[4];
1998 /* Copy the user command info to our buffer. */
1999 if (copy_from_user(drive_command
,
2000 (void __user
*) arg
,
2001 sizeof(drive_command
)))
2004 /* Execute the drive command. */
2005 if (exec_drive_command(dd
->port
,
2007 (void __user
*) (arg
+4)))
2010 /* Copy the status back to the users buffer. */
2011 if (copy_to_user((void __user
*) arg
,
2013 sizeof(drive_command
)))
2018 case HDIO_DRIVE_TASK
:
2020 u8 drive_command
[7];
2022 /* Copy the user command info to our buffer. */
2023 if (copy_from_user(drive_command
,
2024 (void __user
*) arg
,
2025 sizeof(drive_command
)))
2028 /* Execute the drive command. */
2029 if (exec_drive_task(dd
->port
, drive_command
))
2032 /* Copy the status back to the users buffer. */
2033 if (copy_to_user((void __user
*) arg
,
2035 sizeof(drive_command
)))
2040 case HDIO_DRIVE_TASKFILE
:
2041 return exec_drive_taskfile(dd
, arg
, compat
);
2050 * Submit an IO to the hw
2052 * This function is called by the block layer to issue an io
2053 * to the device. Upon completion, the callback function will
2054 * be called with the data parameter passed as the callback data.
2056 * @dd Pointer to the driver data structure.
2057 * @start First sector to read.
2058 * @nsect Number of sectors to read.
2059 * @nents Number of entries in scatter list for the read command.
2060 * @tag The tag of this read command.
2061 * @callback Pointer to the function that should be called
2062 * when the read completes.
2063 * @data Callback data passed to the callback function
2064 * when the read completes.
2065 * @barrier If non-zero, this command must be completed before
2066 * issuing any other commands.
2067 * @dir Direction (read or write)
2072 void mtip_hw_submit_io(struct driver_data
*dd
,
2082 struct host_to_dev_fis
*fis
;
2083 struct mtip_port
*port
= dd
->port
;
2084 struct mtip_cmd
*command
= &port
->commands
[tag
];
2086 /* Map the scatter list for DMA access */
2088 nents
= dma_map_sg(&dd
->pdev
->dev
, command
->sg
,
2089 nents
, DMA_FROM_DEVICE
);
2091 nents
= dma_map_sg(&dd
->pdev
->dev
, command
->sg
,
2092 nents
, DMA_TO_DEVICE
);
2094 command
->scatter_ents
= nents
;
2097 * The number of retries for this command before it is
2098 * reported as a failure to the upper layers.
2100 command
->retries
= MTIP_MAX_RETRIES
;
2103 fis
= command
->command
;
2107 (dir
== READ
? ATA_CMD_FPDMA_READ
: ATA_CMD_FPDMA_WRITE
);
2108 *((unsigned int *) &fis
->lba_low
) = (start
& 0xffffff);
2109 *((unsigned int *) &fis
->lba_low_ex
) = ((start
>> 24) & 0xffffff);
2110 fis
->device
= 1 << 6;
2112 fis
->device
|= FUA_BIT
;
2113 fis
->features
= nsect
& 0xff;
2114 fis
->features_ex
= (nsect
>> 8) & 0xff;
2115 fis
->sect_count
= ((tag
<< 3) | (tag
>> 5));
2116 fis
->sect_cnt_ex
= 0;
2120 fill_command_sg(dd
, command
, nents
);
2122 /* Populate the command header */
2123 command
->command_header
->opts
= cpu_to_le32(
2124 (nents
<< 16) | 5 | AHCI_CMD_PREFETCH
);
2125 command
->command_header
->byte_count
= 0;
2128 * Set the completion function and data for the command
2129 * within this layer.
2131 command
->comp_data
= dd
;
2132 command
->comp_func
= mtip_async_complete
;
2133 command
->direction
= (dir
== READ
? DMA_FROM_DEVICE
: DMA_TO_DEVICE
);
2136 * Set the completion function and data for the command passed
2137 * from the upper layer.
2139 command
->async_data
= data
;
2140 command
->async_callback
= callback
;
2143 * Lock used to prevent this command from being issued
2144 * if an internal command is in progress.
2146 down_read(&port
->dd
->internal_sem
);
2148 /* Issue the command to the hardware */
2149 mtip_issue_ncq_command(port
, tag
);
2151 /* Set the command's timeout value.*/
2152 port
->commands
[tag
].comp_time
= jiffies
+ msecs_to_jiffies(
2153 MTIP_NCQ_COMMAND_TIMEOUT_MS
);
2155 up_read(&port
->dd
->internal_sem
);
2159 * Release a command slot.
2161 * @dd Pointer to the driver data structure.
2167 void mtip_hw_release_scatterlist(struct driver_data
*dd
, int tag
)
2169 release_slot(dd
->port
, tag
);
2173 * Obtain a command slot and return its associated scatter list.
2175 * @dd Pointer to the driver data structure.
2176 * @tag Pointer to an int that will receive the allocated command
2180 * Pointer to the scatter list for the allocated command slot
2181 * or NULL if no command slots are available.
2183 struct scatterlist
*mtip_hw_get_scatterlist(struct driver_data
*dd
,
2187 * It is possible that, even with this semaphore, a thread
2188 * may think that no command slots are available. Therefore, we
2189 * need to make an attempt to get_slot().
2191 down(&dd
->port
->cmd_slot
);
2192 *tag
= get_slot(dd
->port
);
2194 if (unlikely(*tag
< 0))
2197 return dd
->port
->commands
[*tag
].sg
;
2201 * Sysfs register/status dump.
2203 * @dev Pointer to the device structure, passed by the kernrel.
2204 * @attr Pointer to the device_attribute structure passed by the kernel.
2205 * @buf Pointer to the char buffer that will receive the stats info.
2208 * The size, in bytes, of the data copied into buf.
2210 static ssize_t
hw_show_registers(struct device
*dev
,
2211 struct device_attribute
*attr
,
2214 u32 group_allocated
;
2215 struct driver_data
*dd
= dev_to_disk(dev
)->private_data
;
2219 size
+= sprintf(&buf
[size
], "%s:\ns_active:\n", __func__
);
2221 for (n
= 0; n
< dd
->slot_groups
; n
++)
2222 size
+= sprintf(&buf
[size
], "0x%08x\n",
2223 readl(dd
->port
->s_active
[n
]));
2225 size
+= sprintf(&buf
[size
], "Command Issue:\n");
2227 for (n
= 0; n
< dd
->slot_groups
; n
++)
2228 size
+= sprintf(&buf
[size
], "0x%08x\n",
2229 readl(dd
->port
->cmd_issue
[n
]));
2231 size
+= sprintf(&buf
[size
], "Allocated:\n");
2233 for (n
= 0; n
< dd
->slot_groups
; n
++) {
2234 if (sizeof(long) > sizeof(u32
))
2236 dd
->port
->allocated
[n
/2] >> (32*(n
&1));
2238 group_allocated
= dd
->port
->allocated
[n
];
2239 size
+= sprintf(&buf
[size
], "0x%08x\n",
2243 size
+= sprintf(&buf
[size
], "completed:\n");
2245 for (n
= 0; n
< dd
->slot_groups
; n
++)
2246 size
+= sprintf(&buf
[size
], "0x%08x\n",
2247 readl(dd
->port
->completed
[n
]));
2249 size
+= sprintf(&buf
[size
], "PORT_IRQ_STAT 0x%08x\n",
2250 readl(dd
->port
->mmio
+ PORT_IRQ_STAT
));
2251 size
+= sprintf(&buf
[size
], "HOST_IRQ_STAT 0x%08x\n",
2252 readl(dd
->mmio
+ HOST_IRQ_STAT
));
2256 static DEVICE_ATTR(registers
, S_IRUGO
, hw_show_registers
, NULL
);
2259 * Create the sysfs related attributes.
2261 * @dd Pointer to the driver data structure.
2262 * @kobj Pointer to the kobj for the block device.
2265 * 0 Operation completed successfully.
2266 * -EINVAL Invalid parameter.
2268 int mtip_hw_sysfs_init(struct driver_data
*dd
, struct kobject
*kobj
)
2273 if (sysfs_create_file(kobj
, &dev_attr_registers
.attr
))
2274 dev_warn(&dd
->pdev
->dev
,
2275 "Error creating registers sysfs entry\n");
2280 * Remove the sysfs related attributes.
2282 * @dd Pointer to the driver data structure.
2283 * @kobj Pointer to the kobj for the block device.
2286 * 0 Operation completed successfully.
2287 * -EINVAL Invalid parameter.
2289 int mtip_hw_sysfs_exit(struct driver_data
*dd
, struct kobject
*kobj
)
2294 sysfs_remove_file(kobj
, &dev_attr_registers
.attr
);
2300 * Perform any init/resume time hardware setup
2302 * @dd Pointer to the driver data structure.
2307 static inline void hba_setup(struct driver_data
*dd
)
2310 hwdata
= readl(dd
->mmio
+ HOST_HSORG
);
2312 /* interrupt bug workaround: use only 1 IS bit.*/
2314 HSORG_DISABLE_SLOTGRP_INTR
|
2315 HSORG_DISABLE_SLOTGRP_PXIS
,
2316 dd
->mmio
+ HOST_HSORG
);
2320 * Detect the details of the product, and store anything needed
2321 * into the driver data structure. This includes product type and
2322 * version and number of slot groups.
2324 * @dd Pointer to the driver data structure.
2329 static void mtip_detect_product(struct driver_data
*dd
)
2332 unsigned int rev
, slotgroups
;
2335 * HBA base + 0xFC [15:0] - vendor-specific hardware interface
2337 * [15:8] hardware/software interface rev#
2338 * [ 3] asic-style interface
2339 * [ 2:0] number of slot groups, minus 1 (only valid for asic-style).
2341 hwdata
= readl(dd
->mmio
+ HOST_HSORG
);
2343 dd
->product_type
= MTIP_PRODUCT_UNKNOWN
;
2344 dd
->slot_groups
= 1;
2347 dd
->product_type
= MTIP_PRODUCT_ASICFPGA
;
2348 rev
= (hwdata
& HSORG_HWREV
) >> 8;
2349 slotgroups
= (hwdata
& HSORG_SLOTGROUPS
) + 1;
2350 dev_info(&dd
->pdev
->dev
,
2351 "ASIC-FPGA design, HS rev 0x%x, "
2352 "%i slot groups [%i slots]\n",
2357 if (slotgroups
> MTIP_MAX_SLOT_GROUPS
) {
2358 dev_warn(&dd
->pdev
->dev
,
2359 "Warning: driver only supports "
2360 "%i slot groups.\n", MTIP_MAX_SLOT_GROUPS
);
2361 slotgroups
= MTIP_MAX_SLOT_GROUPS
;
2363 dd
->slot_groups
= slotgroups
;
2367 dev_warn(&dd
->pdev
->dev
, "Unrecognized product id\n");
2371 * Blocking wait for FTL rebuild to complete
2373 * @dd Pointer to the DRIVER_DATA structure.
2376 * 0 FTL rebuild completed successfully
2377 * -EFAULT FTL rebuild error/timeout/interruption
2379 static int mtip_ftl_rebuild_poll(struct driver_data
*dd
)
2381 unsigned long timeout
, cnt
= 0, start
;
2383 dev_warn(&dd
->pdev
->dev
,
2384 "FTL rebuild in progress. Polling for completion.\n");
2387 dd
->ftlrebuildflag
= 1;
2388 timeout
= jiffies
+ msecs_to_jiffies(MTIP_FTL_REBUILD_TIMEOUT_MS
);
2391 #ifdef CONFIG_HOTPLUG
2392 if (mtip_check_surprise_removal(dd
->pdev
))
2395 if (mtip_get_identify(dd
->port
, NULL
) < 0)
2398 if (*(dd
->port
->identify
+ MTIP_FTL_REBUILD_OFFSET
) ==
2399 MTIP_FTL_REBUILD_MAGIC
) {
2401 /* Print message every 3 minutes */
2403 dev_warn(&dd
->pdev
->dev
,
2404 "FTL rebuild in progress (%d secs).\n",
2405 jiffies_to_msecs(jiffies
- start
) / 1000);
2409 dev_warn(&dd
->pdev
->dev
,
2410 "FTL rebuild complete (%d secs).\n",
2411 jiffies_to_msecs(jiffies
- start
) / 1000);
2412 dd
->ftlrebuildflag
= 0;
2416 } while (time_before(jiffies
, timeout
));
2418 /* Check for timeout */
2419 if (dd
->ftlrebuildflag
) {
2420 dev_err(&dd
->pdev
->dev
,
2421 "Timed out waiting for FTL rebuild to complete (%d secs).\n",
2422 jiffies_to_msecs(jiffies
- start
) / 1000);
2430 * Called once for each card.
2432 * @dd Pointer to the driver data structure.
2435 * 0 on success, else an error code.
2437 int mtip_hw_init(struct driver_data
*dd
)
2441 unsigned int num_command_slots
;
2443 dd
->mmio
= pcim_iomap_table(dd
->pdev
)[MTIP_ABAR
];
2445 mtip_detect_product(dd
);
2446 if (dd
->product_type
== MTIP_PRODUCT_UNKNOWN
) {
2450 num_command_slots
= dd
->slot_groups
* 32;
2455 * Initialize the internal semaphore
2456 * Use a rw semaphore to enable prioritization of
2457 * mgmnt ioctl traffic during heavy IO load
2459 init_rwsem(&dd
->internal_sem
);
2461 tasklet_init(&dd
->tasklet
, mtip_tasklet
, (unsigned long)dd
);
2463 dd
->port
= kzalloc(sizeof(struct mtip_port
), GFP_KERNEL
);
2465 dev_err(&dd
->pdev
->dev
,
2466 "Memory allocation: port structure\n");
2470 /* Counting semaphore to track command slot usage */
2471 sema_init(&dd
->port
->cmd_slot
, num_command_slots
- 1);
2473 /* Spinlock to prevent concurrent issue */
2474 spin_lock_init(&dd
->port
->cmd_issue_lock
);
2476 /* Set the port mmio base address. */
2477 dd
->port
->mmio
= dd
->mmio
+ PORT_OFFSET
;
2480 /* Allocate memory for the command list. */
2481 dd
->port
->command_list
=
2482 dmam_alloc_coherent(&dd
->pdev
->dev
,
2483 HW_PORT_PRIV_DMA_SZ
+ (ATA_SECT_SIZE
* 2),
2484 &dd
->port
->command_list_dma
,
2486 if (!dd
->port
->command_list
) {
2487 dev_err(&dd
->pdev
->dev
,
2488 "Memory allocation: command list\n");
2493 /* Clear the memory we have allocated. */
2494 memset(dd
->port
->command_list
,
2496 HW_PORT_PRIV_DMA_SZ
+ (ATA_SECT_SIZE
* 2));
2498 /* Setup the addresse of the RX FIS. */
2499 dd
->port
->rxfis
= dd
->port
->command_list
+ HW_CMD_SLOT_SZ
;
2500 dd
->port
->rxfis_dma
= dd
->port
->command_list_dma
+ HW_CMD_SLOT_SZ
;
2502 /* Setup the address of the command tables. */
2503 dd
->port
->command_table
= dd
->port
->rxfis
+ AHCI_RX_FIS_SZ
;
2504 dd
->port
->command_tbl_dma
= dd
->port
->rxfis_dma
+ AHCI_RX_FIS_SZ
;
2506 /* Setup the address of the identify data. */
2507 dd
->port
->identify
= dd
->port
->command_table
+
2509 dd
->port
->identify_dma
= dd
->port
->command_tbl_dma
+
2512 /* Setup the address of the sector buffer. */
2513 dd
->port
->sector_buffer
= (void *) dd
->port
->identify
+ ATA_SECT_SIZE
;
2514 dd
->port
->sector_buffer_dma
= dd
->port
->identify_dma
+ ATA_SECT_SIZE
;
2516 /* Point the command headers at the command tables. */
2517 for (i
= 0; i
< num_command_slots
; i
++) {
2518 dd
->port
->commands
[i
].command_header
=
2519 dd
->port
->command_list
+
2520 (sizeof(struct mtip_cmd_hdr
) * i
);
2521 dd
->port
->commands
[i
].command_header_dma
=
2522 dd
->port
->command_list_dma
+
2523 (sizeof(struct mtip_cmd_hdr
) * i
);
2525 dd
->port
->commands
[i
].command
=
2526 dd
->port
->command_table
+ (HW_CMD_TBL_SZ
* i
);
2527 dd
->port
->commands
[i
].command_dma
=
2528 dd
->port
->command_tbl_dma
+ (HW_CMD_TBL_SZ
* i
);
2530 if (readl(dd
->mmio
+ HOST_CAP
) & HOST_CAP_64
)
2531 dd
->port
->commands
[i
].command_header
->ctbau
=
2533 (dd
->port
->commands
[i
].command_dma
>> 16) >> 16);
2534 dd
->port
->commands
[i
].command_header
->ctba
= cpu_to_le32(
2535 dd
->port
->commands
[i
].command_dma
& 0xffffffff);
2538 * If this is not done, a bug is reported by the stock
2539 * FC11 i386. Due to the fact that it has lots of kernel
2540 * debugging enabled.
2542 sg_init_table(dd
->port
->commands
[i
].sg
, MTIP_MAX_SG
);
2544 /* Mark all commands as currently inactive.*/
2545 atomic_set(&dd
->port
->commands
[i
].active
, 0);
2548 /* Setup the pointers to the extended s_active and CI registers. */
2549 for (i
= 0; i
< dd
->slot_groups
; i
++) {
2550 dd
->port
->s_active
[i
] =
2551 dd
->port
->mmio
+ i
*0x80 + PORT_SCR_ACT
;
2552 dd
->port
->cmd_issue
[i
] =
2553 dd
->port
->mmio
+ i
*0x80 + PORT_COMMAND_ISSUE
;
2554 dd
->port
->completed
[i
] =
2555 dd
->port
->mmio
+ i
*0x80 + PORT_SDBV
;
2558 /* Reset the HBA. */
2559 if (mtip_hba_reset(dd
) < 0) {
2560 dev_err(&dd
->pdev
->dev
,
2561 "Card did not reset within timeout\n");
2566 mtip_init_port(dd
->port
);
2567 mtip_start_port(dd
->port
);
2569 /* Setup the ISR and enable interrupts. */
2570 rv
= devm_request_irq(&dd
->pdev
->dev
,
2574 dev_driver_string(&dd
->pdev
->dev
),
2578 dev_err(&dd
->pdev
->dev
,
2579 "Unable to allocate IRQ %d\n", dd
->pdev
->irq
);
2583 /* Enable interrupts on the HBA. */
2584 writel(readl(dd
->mmio
+ HOST_CTL
) | HOST_IRQ_EN
,
2585 dd
->mmio
+ HOST_CTL
);
2587 init_timer(&dd
->port
->cmd_timer
);
2588 dd
->port
->cmd_timer
.data
= (unsigned long int) dd
->port
;
2589 dd
->port
->cmd_timer
.function
= mtip_timeout_function
;
2590 mod_timer(&dd
->port
->cmd_timer
,
2591 jiffies
+ msecs_to_jiffies(MTIP_TIMEOUT_CHECK_PERIOD
));
2593 if (mtip_get_identify(dd
->port
, NULL
) < 0) {
2597 mtip_dump_identify(dd
->port
);
2599 if (*(dd
->port
->identify
+ MTIP_FTL_REBUILD_OFFSET
) ==
2600 MTIP_FTL_REBUILD_MAGIC
) {
2601 return mtip_ftl_rebuild_poll(dd
);
2606 del_timer_sync(&dd
->port
->cmd_timer
);
2608 /* Disable interrupts on the HBA. */
2609 writel(readl(dd
->mmio
+ HOST_CTL
) & ~HOST_IRQ_EN
,
2610 dd
->mmio
+ HOST_CTL
);
2612 /*Release the IRQ. */
2613 devm_free_irq(&dd
->pdev
->dev
, dd
->pdev
->irq
, dd
);
2616 mtip_deinit_port(dd
->port
);
2618 /* Free the command/command header memory. */
2619 dmam_free_coherent(&dd
->pdev
->dev
,
2620 HW_PORT_PRIV_DMA_SZ
+ (ATA_SECT_SIZE
* 2),
2621 dd
->port
->command_list
,
2622 dd
->port
->command_list_dma
);
2624 /* Free the memory allocated for the for structure. */
2631 * Called to deinitialize an interface.
2633 * @dd Pointer to the driver data structure.
2638 int mtip_hw_exit(struct driver_data
*dd
)
2641 * Send standby immediate (E0h) to the drive so that it
2644 if (atomic_read(&dd
->drv_cleanup_done
) != true) {
2646 mtip_standby_immediate(dd
->port
);
2648 /* de-initialize the port. */
2649 mtip_deinit_port(dd
->port
);
2651 /* Disable interrupts on the HBA. */
2652 writel(readl(dd
->mmio
+ HOST_CTL
) & ~HOST_IRQ_EN
,
2653 dd
->mmio
+ HOST_CTL
);
2656 del_timer_sync(&dd
->port
->cmd_timer
);
2658 /* Stop the bottom half tasklet. */
2659 tasklet_kill(&dd
->tasklet
);
2661 /* Release the IRQ. */
2662 devm_free_irq(&dd
->pdev
->dev
, dd
->pdev
->irq
, dd
);
2664 /* Free the command/command header memory. */
2665 dmam_free_coherent(&dd
->pdev
->dev
,
2666 HW_PORT_PRIV_DMA_SZ
+ (ATA_SECT_SIZE
* 2),
2667 dd
->port
->command_list
,
2668 dd
->port
->command_list_dma
);
2669 /* Free the memory allocated for the for structure. */
2676 * Issue a Standby Immediate command to the device.
2678 * This function is called by the Block Layer just before the
2679 * system powers off during a shutdown.
2681 * @dd Pointer to the driver data structure.
2686 int mtip_hw_shutdown(struct driver_data
*dd
)
2689 * Send standby immediate (E0h) to the drive so that it
2692 mtip_standby_immediate(dd
->port
);
2700 * This function is called by the Block Layer just before the
2701 * system hibernates.
2703 * @dd Pointer to the driver data structure.
2706 * 0 Suspend was successful
2707 * -EFAULT Suspend was not successful
2709 int mtip_hw_suspend(struct driver_data
*dd
)
2712 * Send standby immediate (E0h) to the drive
2713 * so that it saves its state.
2715 if (mtip_standby_immediate(dd
->port
) != 0) {
2716 dev_err(&dd
->pdev
->dev
,
2717 "Failed standby-immediate command\n");
2721 /* Disable interrupts on the HBA.*/
2722 writel(readl(dd
->mmio
+ HOST_CTL
) & ~HOST_IRQ_EN
,
2723 dd
->mmio
+ HOST_CTL
);
2724 mtip_deinit_port(dd
->port
);
2732 * This function is called by the Block Layer as the
2735 * @dd Pointer to the driver data structure.
2738 * 0 Resume was successful
2739 * -EFAULT Resume was not successful
2741 int mtip_hw_resume(struct driver_data
*dd
)
2743 /* Perform any needed hardware setup steps */
2747 if (mtip_hba_reset(dd
) != 0) {
2748 dev_err(&dd
->pdev
->dev
,
2749 "Unable to reset the HBA\n");
2754 * Enable the port, DMA engine, and FIS reception specific
2755 * h/w in controller.
2757 mtip_init_port(dd
->port
);
2758 mtip_start_port(dd
->port
);
2760 /* Enable interrupts on the HBA.*/
2761 writel(readl(dd
->mmio
+ HOST_CTL
) | HOST_IRQ_EN
,
2762 dd
->mmio
+ HOST_CTL
);
2768 * This function is called for clean the pending command in the
2769 * command slot during the surprise removal of device and return
2770 * error to the upper layer.
2772 * @dd Pointer to the DRIVER_DATA structure.
2777 void mtip_command_cleanup(struct driver_data
*dd
)
2779 int group
= 0, commandslot
= 0, commandindex
= 0;
2780 struct mtip_cmd
*command
;
2781 struct mtip_port
*port
= dd
->port
;
2783 for (group
= 0; group
< 4; group
++) {
2784 for (commandslot
= 0; commandslot
< 32; commandslot
++) {
2785 if (!(port
->allocated
[group
] & (1 << commandslot
)))
2788 commandindex
= group
<< 5 | commandslot
;
2789 command
= &port
->commands
[commandindex
];
2791 if (atomic_read(&command
->active
)
2792 && (command
->async_callback
)) {
2793 command
->async_callback(command
->async_data
,
2795 command
->async_callback
= NULL
;
2796 command
->async_data
= NULL
;
2799 dma_unmap_sg(&port
->dd
->pdev
->dev
,
2801 command
->scatter_ents
,
2802 command
->direction
);
2806 up(&port
->cmd_slot
);
2808 atomic_set(&dd
->drv_cleanup_done
, true);
2812 * Helper function for reusing disk name
2813 * upon hot insertion.
2815 static int rssd_disk_name_format(char *prefix
,
2820 const int base
= 'z' - 'a' + 1;
2821 char *begin
= buf
+ strlen(prefix
);
2822 char *end
= buf
+ buflen
;
2832 *--p
= 'a' + (index
% unit
);
2833 index
= (index
/ unit
) - 1;
2834 } while (index
>= 0);
2836 memmove(begin
, p
, end
- p
);
2837 memcpy(buf
, prefix
, strlen(prefix
));
2843 * Block layer IOCTL handler.
2845 * @dev Pointer to the block_device structure.
2847 * @cmd IOCTL command passed from the user application.
2848 * @arg Argument passed from the user application.
2851 * 0 IOCTL completed successfully.
2852 * -ENOTTY IOCTL not supported or invalid driver data
2853 * structure pointer.
2855 static int mtip_block_ioctl(struct block_device
*dev
,
2860 struct driver_data
*dd
= dev
->bd_disk
->private_data
;
2862 if (!capable(CAP_SYS_ADMIN
))
2872 return mtip_hw_ioctl(dd
, cmd
, arg
, 0);
2877 * Block layer compat IOCTL handler.
2879 * @dev Pointer to the block_device structure.
2881 * @cmd IOCTL command passed from the user application.
2882 * @arg Argument passed from the user application.
2885 * 0 IOCTL completed successfully.
2886 * -ENOTTY IOCTL not supported or invalid driver data
2887 * structure pointer.
2889 static int mtip_block_compat_ioctl(struct block_device
*dev
,
2894 struct driver_data
*dd
= dev
->bd_disk
->private_data
;
2896 if (!capable(CAP_SYS_ADMIN
))
2906 return mtip_hw_ioctl(dd
, cmd
, arg
, 1);
2911 * Obtain the geometry of the device.
2913 * You may think that this function is obsolete, but some applications,
2914 * fdisk for example still used CHS values. This function describes the
2915 * device as having 224 heads and 56 sectors per cylinder. These values are
2916 * chosen so that each cylinder is aligned on a 4KB boundary. Since a
2917 * partition is described in terms of a start and end cylinder this means
2918 * that each partition is also 4KB aligned. Non-aligned partitions adversely
2919 * affects performance.
2921 * @dev Pointer to the block_device strucutre.
2922 * @geo Pointer to a hd_geometry structure.
2925 * 0 Operation completed successfully.
2926 * -ENOTTY An error occurred while reading the drive capacity.
2928 static int mtip_block_getgeo(struct block_device
*dev
,
2929 struct hd_geometry
*geo
)
2931 struct driver_data
*dd
= dev
->bd_disk
->private_data
;
2937 if (!(mtip_hw_get_capacity(dd
, &capacity
))) {
2938 dev_warn(&dd
->pdev
->dev
,
2939 "Could not get drive capacity.\n");
2945 #if BITS_PER_LONG == 64
2946 geo
->cylinders
= capacity
/ (geo
->heads
* geo
->sectors
);
2948 do_div(capacity
, (geo
->heads
* geo
->sectors
));
2949 geo
->cylinders
= capacity
;
2955 * Block device operation function.
2957 * This structure contains pointers to the functions required by the block
2960 static const struct block_device_operations mtip_block_ops
= {
2961 .ioctl
= mtip_block_ioctl
,
2962 .compat_ioctl
= mtip_block_compat_ioctl
,
2963 .getgeo
= mtip_block_getgeo
,
2964 .owner
= THIS_MODULE
2968 * Block layer make request function.
2970 * This function is called by the kernel to process a BIO for
2973 * @queue Pointer to the request queue. Unused other than to obtain
2974 * the driver data structure.
2975 * @bio Pointer to the BIO.
2980 static int mtip_make_request(struct request_queue
*queue
, struct bio
*bio
)
2982 struct driver_data
*dd
= queue
->queuedata
;
2983 struct scatterlist
*sg
;
2984 struct bio_vec
*bvec
;
2988 if (unlikely(!bio_has_data(bio
))) {
2989 blk_queue_flush(queue
, 0);
2994 if (unlikely(atomic_read(&dd
->eh_active
))) {
2995 bio_endio(bio
, -EBUSY
);
2999 sg
= mtip_hw_get_scatterlist(dd
, &tag
);
3000 if (likely(sg
!= NULL
)) {
3001 blk_queue_bounce(queue
, &bio
);
3003 if (unlikely((bio
)->bi_vcnt
> MTIP_MAX_SG
)) {
3004 dev_warn(&dd
->pdev
->dev
,
3005 "Maximum number of SGL entries exceeded");
3007 mtip_hw_release_scatterlist(dd
, tag
);
3011 /* Create the scatter list for this bio. */
3012 bio_for_each_segment(bvec
, bio
, nents
) {
3013 sg_set_page(&sg
[nents
],
3019 /* Issue the read/write. */
3020 mtip_hw_submit_io(dd
,
3027 bio
->bi_rw
& REQ_FLUSH
,
3037 * Block layer initialization function.
3039 * This function is called once by the PCI layer for each P320
3040 * device that is connected to the system.
3042 * @dd Pointer to the driver data structure.
3045 * 0 on success else an error code.
3047 int mtip_block_initialize(struct driver_data
*dd
)
3051 unsigned int index
= 0;
3052 struct kobject
*kobj
;
3054 /* Initialize the protocol layer. */
3055 rv
= mtip_hw_init(dd
);
3057 dev_err(&dd
->pdev
->dev
,
3058 "Protocol layer initialization failed\n");
3060 goto protocol_init_error
;
3063 /* Allocate the request queue. */
3064 dd
->queue
= blk_alloc_queue(GFP_KERNEL
);
3065 if (dd
->queue
== NULL
) {
3066 dev_err(&dd
->pdev
->dev
,
3067 "Unable to allocate request queue\n");
3069 goto block_queue_alloc_init_error
;
3072 /* Attach our request function to the request queue. */
3073 blk_queue_make_request(dd
->queue
, mtip_make_request
);
3075 /* Set device limits. */
3076 set_bit(QUEUE_FLAG_NONROT
, &dd
->queue
->queue_flags
);
3077 blk_queue_max_segments(dd
->queue
, MTIP_MAX_SG
);
3078 blk_queue_physical_block_size(dd
->queue
, 4096);
3079 blk_queue_io_min(dd
->queue
, 4096);
3081 dd
->disk
= alloc_disk(MTIP_MAX_MINORS
);
3082 if (dd
->disk
== NULL
) {
3083 dev_err(&dd
->pdev
->dev
,
3084 "Unable to allocate gendisk structure\n");
3086 goto alloc_disk_error
;
3089 /* Generate the disk name, implemented same as in sd.c */
3091 if (!ida_pre_get(&rssd_index_ida
, GFP_KERNEL
))
3094 spin_lock(&rssd_index_lock
);
3095 rv
= ida_get_new(&rssd_index_ida
, &index
);
3096 spin_unlock(&rssd_index_lock
);
3097 } while (rv
== -EAGAIN
);
3102 rv
= rssd_disk_name_format("rssd",
3104 dd
->disk
->disk_name
,
3107 goto disk_index_error
;
3109 dd
->disk
->driverfs_dev
= &dd
->pdev
->dev
;
3110 dd
->disk
->major
= dd
->major
;
3111 dd
->disk
->first_minor
= dd
->instance
* MTIP_MAX_MINORS
;
3112 dd
->disk
->fops
= &mtip_block_ops
;
3113 dd
->disk
->queue
= dd
->queue
;
3114 dd
->disk
->private_data
= dd
;
3115 dd
->queue
->queuedata
= dd
;
3118 /* Set the capacity of the device in 512 byte sectors. */
3119 if (!(mtip_hw_get_capacity(dd
, &capacity
))) {
3120 dev_warn(&dd
->pdev
->dev
,
3121 "Could not read drive capacity\n");
3123 goto read_capacity_error
;
3125 set_capacity(dd
->disk
, capacity
);
3127 /* Enable the block device and add it to /dev */
3131 * Now that the disk is active, initialize any sysfs attributes
3132 * managed by the protocol layer.
3134 kobj
= kobject_get(&disk_to_dev(dd
->disk
)->kobj
);
3136 mtip_hw_sysfs_init(dd
, kobj
);
3142 read_capacity_error
:
3144 * Delete our gendisk structure. This also removes the device
3147 del_gendisk(dd
->disk
);
3150 spin_lock(&rssd_index_lock
);
3151 ida_remove(&rssd_index_ida
, index
);
3152 spin_unlock(&rssd_index_lock
);
3158 blk_cleanup_queue(dd
->queue
);
3160 block_queue_alloc_init_error
:
3161 /* De-initialize the protocol layer. */
3164 protocol_init_error
:
3169 * Block layer deinitialization function.
3171 * Called by the PCI layer as each P320 device is removed.
3173 * @dd Pointer to the driver data structure.
3178 int mtip_block_remove(struct driver_data
*dd
)
3180 struct kobject
*kobj
;
3181 /* Clean up the sysfs attributes managed by the protocol layer. */
3182 kobj
= kobject_get(&disk_to_dev(dd
->disk
)->kobj
);
3184 mtip_hw_sysfs_exit(dd
, kobj
);
3189 * Delete our gendisk structure. This also removes the device
3192 del_gendisk(dd
->disk
);
3193 blk_cleanup_queue(dd
->queue
);
3197 /* De-initialize the protocol layer. */
3204 * Function called by the PCI layer when just before the
3205 * machine shuts down.
3207 * If a protocol layer shutdown function is present it will be called
3210 * @dd Pointer to the driver data structure.
3215 int mtip_block_shutdown(struct driver_data
*dd
)
3217 dev_info(&dd
->pdev
->dev
,
3218 "Shutting down %s ...\n", dd
->disk
->disk_name
);
3220 /* Delete our gendisk structure, and cleanup the blk queue. */
3221 del_gendisk(dd
->disk
);
3222 blk_cleanup_queue(dd
->queue
);
3226 mtip_hw_shutdown(dd
);
3230 int mtip_block_suspend(struct driver_data
*dd
)
3232 dev_info(&dd
->pdev
->dev
,
3233 "Suspending %s ...\n", dd
->disk
->disk_name
);
3234 mtip_hw_suspend(dd
);
3238 int mtip_block_resume(struct driver_data
*dd
)
3240 dev_info(&dd
->pdev
->dev
, "Resuming %s ...\n",
3241 dd
->disk
->disk_name
);
3247 * Called for each supported PCI device detected.
3249 * This function allocates the private data structure, enables the
3250 * PCI device and then calls the block layer initialization function.
3253 * 0 on success else an error code.
3255 static int mtip_pci_probe(struct pci_dev
*pdev
,
3256 const struct pci_device_id
*ent
)
3259 struct driver_data
*dd
= NULL
;
3261 /* Allocate memory for this devices private data. */
3262 dd
= kzalloc(sizeof(struct driver_data
), GFP_KERNEL
);
3265 "Unable to allocate memory for driver data\n");
3269 /* Set the atomic variable as 1 in case of SRSI */
3270 atomic_set(&dd
->drv_cleanup_done
, true);
3272 atomic_set(&dd
->resumeflag
, false);
3273 atomic_set(&dd
->eh_active
, 0);
3275 /* Attach the private data to this PCI device. */
3276 pci_set_drvdata(pdev
, dd
);
3278 rv
= pcim_enable_device(pdev
);
3280 dev_err(&pdev
->dev
, "Unable to enable device\n");
3284 /* Map BAR5 to memory. */
3285 rv
= pcim_iomap_regions(pdev
, 1 << MTIP_ABAR
, MTIP_DRV_NAME
);
3287 dev_err(&pdev
->dev
, "Unable to map regions\n");
3291 if (!pci_set_dma_mask(pdev
, DMA_BIT_MASK(64))) {
3292 rv
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(64));
3295 rv
= pci_set_consistent_dma_mask(pdev
,
3298 dev_warn(&pdev
->dev
,
3299 "64-bit DMA enable failed\n");
3305 pci_set_master(pdev
);
3307 if (pci_enable_msi(pdev
)) {
3308 dev_warn(&pdev
->dev
,
3309 "Unable to enable MSI interrupt.\n");
3310 goto block_initialize_err
;
3313 /* Copy the info we may need later into the private data structure. */
3314 dd
->major
= mtip_major
;
3315 dd
->protocol
= ent
->driver_data
;
3316 dd
->instance
= instance
;
3319 /* Initialize the block layer. */
3320 rv
= mtip_block_initialize(dd
);
3323 "Unable to initialize block layer\n");
3324 goto block_initialize_err
;
3328 * Increment the instance count so that each device has a unique
3335 block_initialize_err
:
3336 pci_disable_msi(pdev
);
3339 pcim_iounmap_regions(pdev
, 1 << MTIP_ABAR
);
3343 pci_set_drvdata(pdev
, NULL
);
3346 /* Set the atomic variable as 0 in case of SRSI */
3347 atomic_set(&dd
->drv_cleanup_done
, true);
3353 * Called for each probed device when the device is removed or the
3354 * driver is unloaded.
3359 static void mtip_pci_remove(struct pci_dev
*pdev
)
3361 struct driver_data
*dd
= pci_get_drvdata(pdev
);
3364 if (mtip_check_surprise_removal(pdev
)) {
3365 while (atomic_read(&dd
->drv_cleanup_done
) == false) {
3368 if (counter
== 10) {
3369 /* Cleanup the outstanding commands */
3370 mtip_command_cleanup(dd
);
3375 /* Set the atomic variable as 1 in case of SRSI */
3376 atomic_set(&dd
->drv_cleanup_done
, true);
3378 /* Clean up the block layer. */
3379 mtip_block_remove(dd
);
3381 pci_disable_msi(pdev
);
3384 pcim_iounmap_regions(pdev
, 1 << MTIP_ABAR
);
3388 * Called for each probed device when the device is suspended.
3394 static int mtip_pci_suspend(struct pci_dev
*pdev
, pm_message_t mesg
)
3397 struct driver_data
*dd
= pci_get_drvdata(pdev
);
3401 "Driver private datastructure is NULL\n");
3405 atomic_set(&dd
->resumeflag
, true);
3407 /* Disable ports & interrupts then send standby immediate */
3408 rv
= mtip_block_suspend(dd
);
3411 "Failed to suspend controller\n");
3416 * Save the pci config space to pdev structure &
3417 * disable the device
3419 pci_save_state(pdev
);
3420 pci_disable_device(pdev
);
3422 /* Move to Low power state*/
3423 pci_set_power_state(pdev
, PCI_D3hot
);
3429 * Called for each probed device when the device is resumed.
3435 static int mtip_pci_resume(struct pci_dev
*pdev
)
3438 struct driver_data
*dd
;
3440 dd
= pci_get_drvdata(pdev
);
3443 "Driver private datastructure is NULL\n");
3447 /* Move the device to active State */
3448 pci_set_power_state(pdev
, PCI_D0
);
3450 /* Restore PCI configuration space */
3451 pci_restore_state(pdev
);
3453 /* Enable the PCI device*/
3454 rv
= pcim_enable_device(pdev
);
3457 "Failed to enable card during resume\n");
3460 pci_set_master(pdev
);
3463 * Calls hbaReset, initPort, & startPort function
3464 * then enables interrupts
3466 rv
= mtip_block_resume(dd
);
3468 dev_err(&pdev
->dev
, "Unable to resume\n");
3471 atomic_set(&dd
->resumeflag
, false);
3482 static void mtip_pci_shutdown(struct pci_dev
*pdev
)
3484 struct driver_data
*dd
= pci_get_drvdata(pdev
);
3486 mtip_block_shutdown(dd
);
3490 * This function check_for_surprise_removal is called
3491 * while card is removed from the system and it will
3492 * read the vendor id from the configration space
3494 * @pdev Pointer to the pci_dev structure.
3497 * true if device removed, else false
3499 bool mtip_check_surprise_removal(struct pci_dev
*pdev
)
3503 /* Read the vendorID from the configuration space */
3504 pci_read_config_word(pdev
, 0x00, &vendor_id
);
3505 if (vendor_id
== 0xFFFF)
3506 return true; /* device removed */
3508 return false; /* device present */
3511 /* Table of device ids supported by this driver. */
3512 static DEFINE_PCI_DEVICE_TABLE(mtip_pci_tbl
) = {
3513 { PCI_DEVICE(PCI_VENDOR_ID_MICRON
, P320_DEVICE_ID
) },
3517 /* Structure that describes the PCI driver functions. */
3518 struct pci_driver mtip_pci_driver
= {
3519 .name
= MTIP_DRV_NAME
,
3520 .id_table
= mtip_pci_tbl
,
3521 .probe
= mtip_pci_probe
,
3522 .remove
= mtip_pci_remove
,
3523 .suspend
= mtip_pci_suspend
,
3524 .resume
= mtip_pci_resume
,
3525 .shutdown
= mtip_pci_shutdown
,
3528 MODULE_DEVICE_TABLE(pci
, mtip_pci_tbl
);
3531 * Module initialization function.
3533 * Called once when the module is loaded. This function allocates a major
3534 * block device number to the Cyclone devices and registers the PCI layer
3538 * 0 on success else error code.
3540 static int __init
mtip_init(void)
3542 printk(KERN_INFO MTIP_DRV_NAME
" Version " MTIP_DRV_VERSION
"\n");
3544 /* Allocate a major block device number to use with this driver. */
3545 mtip_major
= register_blkdev(0, MTIP_DRV_NAME
);
3546 if (mtip_major
< 0) {
3547 printk(KERN_ERR
"Unable to register block device (%d)\n",
3552 /* Register our PCI operations. */
3553 return pci_register_driver(&mtip_pci_driver
);
3557 * Module de-initialization function.
3559 * Called once when the module is unloaded. This function deallocates
3560 * the major block device number allocated by mtip_init() and
3561 * unregisters the PCI layer of the driver.
3566 static void __exit
mtip_exit(void)
3568 /* Release the allocated major block device number. */
3569 unregister_blkdev(mtip_major
, MTIP_DRV_NAME
);
3571 /* Unregister the PCI driver. */
3572 pci_unregister_driver(&mtip_pci_driver
);
3575 MODULE_AUTHOR("Micron Technology, Inc");
3576 MODULE_DESCRIPTION("Micron RealSSD PCIe Block Driver");
3577 MODULE_LICENSE("GPL");
3578 MODULE_VERSION(MTIP_DRV_VERSION
);
3580 module_init(mtip_init
);
3581 module_exit(mtip_exit
);