Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 1 | /* |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 2 | * Copyright (c) 2009, Microsoft Corporation. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms and conditions of the GNU General Public License, |
| 6 | * version 2, as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 11 | * more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License along with |
| 14 | * this program; if not, write to the Free Software Foundation, Inc., 59 Temple |
| 15 | * Place - Suite 330, Boston, MA 02111-1307 USA. |
| 16 | * |
| 17 | * Authors: |
| 18 | * Haiyang Zhang <haiyangz@microsoft.com> |
| 19 | * Hank Janssen <hjanssen@microsoft.com> |
K. Y. Srinivasan | 972621c | 2011-05-10 07:54:19 -0700 | [diff] [blame] | 20 | * K. Y. Srinivasan <kys@microsoft.com> |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 21 | */ |
K. Y. Srinivasan | a1be170 | 2011-08-27 11:31:23 -0700 | [diff] [blame] | 22 | |
| 23 | #include <linux/kernel.h> |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 24 | #include <linux/wait.h> |
K. Y. Srinivasan | a1be170 | 2011-08-27 11:31:23 -0700 | [diff] [blame] | 25 | #include <linux/sched.h> |
| 26 | #include <linux/completion.h> |
| 27 | #include <linux/string.h> |
| 28 | #include <linux/mm.h> |
| 29 | #include <linux/delay.h> |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 30 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 31 | #include <linux/slab.h> |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 32 | #include <linux/module.h> |
| 33 | #include <linux/device.h> |
Greg Kroah-Hartman | 46a9719 | 2011-10-04 12:29:52 -0700 | [diff] [blame] | 34 | #include <linux/hyperv.h> |
K. Y. Srinivasan | 56b26e6 | 2014-07-12 09:48:30 -0700 | [diff] [blame] | 35 | #include <linux/blkdev.h> |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 36 | #include <scsi/scsi.h> |
| 37 | #include <scsi/scsi_cmnd.h> |
| 38 | #include <scsi/scsi_host.h> |
| 39 | #include <scsi/scsi_device.h> |
| 40 | #include <scsi/scsi_tcq.h> |
| 41 | #include <scsi/scsi_eh.h> |
| 42 | #include <scsi/scsi_devinfo.h> |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 43 | #include <scsi/scsi_dbg.h> |
K. Y. Srinivasan | 3f335ea | 2011-05-12 19:34:15 -0700 | [diff] [blame] | 44 | |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 45 | /* |
K. Y. Srinivasan | af9584b | 2012-01-12 12:38:08 -0800 | [diff] [blame] | 46 | * All wire protocol details (storage protocol between the guest and the host) |
| 47 | * are consolidated here. |
| 48 | * |
| 49 | * Begin protocol definitions. |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 50 | */ |
| 51 | |
K. Y. Srinivasan | 09f0355 | 2012-01-12 12:37:54 -0800 | [diff] [blame] | 52 | /* |
| 53 | * Version history: |
| 54 | * V1 Beta: 0.1 |
| 55 | * V1 RC < 2008/1/31: 1.0 |
| 56 | * V1 RC > 2008/1/31: 2.0 |
| 57 | * Win7: 4.2 |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 58 | * Win8: 5.1 |
K. Y. Srinivasan | 09f0355 | 2012-01-12 12:37:54 -0800 | [diff] [blame] | 59 | */ |
| 60 | |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 61 | |
| 62 | #define VMSTOR_WIN7_MAJOR 4 |
| 63 | #define VMSTOR_WIN7_MINOR 2 |
| 64 | |
| 65 | #define VMSTOR_WIN8_MAJOR 5 |
| 66 | #define VMSTOR_WIN8_MINOR 1 |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 67 | |
| 68 | |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 69 | /* Packet structure describing virtual storage requests. */ |
| 70 | enum vstor_packet_operation { |
| 71 | VSTOR_OPERATION_COMPLETE_IO = 1, |
| 72 | VSTOR_OPERATION_REMOVE_DEVICE = 2, |
| 73 | VSTOR_OPERATION_EXECUTE_SRB = 3, |
| 74 | VSTOR_OPERATION_RESET_LUN = 4, |
| 75 | VSTOR_OPERATION_RESET_ADAPTER = 5, |
| 76 | VSTOR_OPERATION_RESET_BUS = 6, |
| 77 | VSTOR_OPERATION_BEGIN_INITIALIZATION = 7, |
| 78 | VSTOR_OPERATION_END_INITIALIZATION = 8, |
| 79 | VSTOR_OPERATION_QUERY_PROTOCOL_VERSION = 9, |
| 80 | VSTOR_OPERATION_QUERY_PROPERTIES = 10, |
K. Y. Srinivasan | 2b9525f | 2011-11-08 09:01:48 -0800 | [diff] [blame] | 81 | VSTOR_OPERATION_ENUMERATE_BUS = 11, |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 82 | VSTOR_OPERATION_FCHBA_DATA = 12, |
| 83 | VSTOR_OPERATION_CREATE_SUB_CHANNELS = 13, |
| 84 | VSTOR_OPERATION_MAXIMUM = 13 |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | /* |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 88 | * WWN packet for Fibre Channel HBA |
| 89 | */ |
| 90 | |
| 91 | struct hv_fc_wwn_packet { |
| 92 | bool primary_active; |
| 93 | u8 reserved1; |
| 94 | u8 reserved2; |
| 95 | u8 primary_port_wwn[8]; |
| 96 | u8 primary_node_wwn[8]; |
| 97 | u8 secondary_port_wwn[8]; |
| 98 | u8 secondary_node_wwn[8]; |
| 99 | }; |
| 100 | |
| 101 | |
| 102 | |
| 103 | /* |
| 104 | * SRB Flag Bits |
| 105 | */ |
| 106 | |
| 107 | #define SRB_FLAGS_QUEUE_ACTION_ENABLE 0x00000002 |
| 108 | #define SRB_FLAGS_DISABLE_DISCONNECT 0x00000004 |
| 109 | #define SRB_FLAGS_DISABLE_SYNCH_TRANSFER 0x00000008 |
| 110 | #define SRB_FLAGS_BYPASS_FROZEN_QUEUE 0x00000010 |
| 111 | #define SRB_FLAGS_DISABLE_AUTOSENSE 0x00000020 |
| 112 | #define SRB_FLAGS_DATA_IN 0x00000040 |
| 113 | #define SRB_FLAGS_DATA_OUT 0x00000080 |
| 114 | #define SRB_FLAGS_NO_DATA_TRANSFER 0x00000000 |
| 115 | #define SRB_FLAGS_UNSPECIFIED_DIRECTION (SRB_FLAGS_DATA_IN | SRB_FLAGS_DATA_OUT) |
| 116 | #define SRB_FLAGS_NO_QUEUE_FREEZE 0x00000100 |
| 117 | #define SRB_FLAGS_ADAPTER_CACHE_ENABLE 0x00000200 |
| 118 | #define SRB_FLAGS_FREE_SENSE_BUFFER 0x00000400 |
| 119 | |
| 120 | /* |
| 121 | * This flag indicates the request is part of the workflow for processing a D3. |
| 122 | */ |
| 123 | #define SRB_FLAGS_D3_PROCESSING 0x00000800 |
| 124 | #define SRB_FLAGS_IS_ACTIVE 0x00010000 |
| 125 | #define SRB_FLAGS_ALLOCATED_FROM_ZONE 0x00020000 |
| 126 | #define SRB_FLAGS_SGLIST_FROM_POOL 0x00040000 |
| 127 | #define SRB_FLAGS_BYPASS_LOCKED_QUEUE 0x00080000 |
| 128 | #define SRB_FLAGS_NO_KEEP_AWAKE 0x00100000 |
| 129 | #define SRB_FLAGS_PORT_DRIVER_ALLOCSENSE 0x00200000 |
| 130 | #define SRB_FLAGS_PORT_DRIVER_SENSEHASPORT 0x00400000 |
| 131 | #define SRB_FLAGS_DONT_START_NEXT_PACKET 0x00800000 |
| 132 | #define SRB_FLAGS_PORT_DRIVER_RESERVED 0x0F000000 |
| 133 | #define SRB_FLAGS_CLASS_DRIVER_RESERVED 0xF0000000 |
| 134 | |
| 135 | |
| 136 | /* |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 137 | * Platform neutral description of a scsi request - |
| 138 | * this remains the same across the write regardless of 32/64 bit |
| 139 | * note: it's patterned off the SCSI_PASS_THROUGH structure |
| 140 | */ |
K. Y. Srinivasan | 6b2f949 | 2012-01-12 12:38:05 -0800 | [diff] [blame] | 141 | #define STORVSC_MAX_CMD_LEN 0x10 |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 142 | |
| 143 | #define POST_WIN7_STORVSC_SENSE_BUFFER_SIZE 0x14 |
| 144 | #define PRE_WIN8_STORVSC_SENSE_BUFFER_SIZE 0x12 |
| 145 | |
| 146 | #define STORVSC_SENSE_BUFFER_SIZE 0x14 |
K. Y. Srinivasan | 6b2f949 | 2012-01-12 12:38:05 -0800 | [diff] [blame] | 147 | #define STORVSC_MAX_BUF_LEN_WITH_PADDING 0x14 |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 148 | |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 149 | /* |
| 150 | * Sense buffer size changed in win8; have a run-time |
| 151 | * variable to track the size we should use. |
| 152 | */ |
| 153 | static int sense_buffer_size; |
| 154 | |
| 155 | /* |
| 156 | * The size of the vmscsi_request has changed in win8. The |
| 157 | * additional size is because of new elements added to the |
| 158 | * structure. These elements are valid only when we are talking |
| 159 | * to a win8 host. |
| 160 | * Track the correction to size we need to apply. |
| 161 | */ |
| 162 | |
| 163 | static int vmscsi_size_delta; |
| 164 | static int vmstor_current_major; |
| 165 | static int vmstor_current_minor; |
| 166 | |
| 167 | struct vmscsi_win8_extension { |
| 168 | /* |
| 169 | * The following were added in Windows 8 |
| 170 | */ |
| 171 | u16 reserve; |
| 172 | u8 queue_tag; |
| 173 | u8 queue_action; |
| 174 | u32 srb_flags; |
| 175 | u32 time_out_value; |
| 176 | u32 queue_sort_ey; |
| 177 | } __packed; |
| 178 | |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 179 | struct vmscsi_request { |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 180 | u16 length; |
| 181 | u8 srb_status; |
| 182 | u8 scsi_status; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 183 | |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 184 | u8 port_number; |
| 185 | u8 path_id; |
| 186 | u8 target_id; |
| 187 | u8 lun; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 188 | |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 189 | u8 cdb_length; |
| 190 | u8 sense_info_length; |
| 191 | u8 data_in; |
| 192 | u8 reserved; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 193 | |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 194 | u32 data_transfer_length; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 195 | |
| 196 | union { |
K. Y. Srinivasan | 6b2f949 | 2012-01-12 12:38:05 -0800 | [diff] [blame] | 197 | u8 cdb[STORVSC_MAX_CMD_LEN]; |
| 198 | u8 sense_data[STORVSC_SENSE_BUFFER_SIZE]; |
| 199 | u8 reserved_array[STORVSC_MAX_BUF_LEN_WITH_PADDING]; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 200 | }; |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 201 | /* |
| 202 | * The following was added in win8. |
| 203 | */ |
| 204 | struct vmscsi_win8_extension win8_extension; |
| 205 | |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 206 | } __attribute((packed)); |
| 207 | |
| 208 | |
| 209 | /* |
| 210 | * This structure is sent during the intialization phase to get the different |
| 211 | * properties of the channel. |
| 212 | */ |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 213 | |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 214 | #define STORAGE_CHANNEL_SUPPORTS_MULTI_CHANNEL 0x1 |
| 215 | |
| 216 | struct vmstorage_channel_properties { |
| 217 | u32 reserved; |
| 218 | u16 max_channel_cnt; |
| 219 | u16 reserved1; |
| 220 | |
| 221 | u32 flags; |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 222 | u32 max_transfer_bytes; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 223 | |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 224 | u64 reserved2; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 225 | } __packed; |
| 226 | |
| 227 | /* This structure is sent during the storage protocol negotiations. */ |
| 228 | struct vmstorage_protocol_version { |
| 229 | /* Major (MSW) and minor (LSW) version numbers. */ |
K. Y. Srinivasan | 85904a5 | 2012-01-12 12:38:04 -0800 | [diff] [blame] | 230 | u16 major_minor; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 231 | |
| 232 | /* |
| 233 | * Revision number is auto-incremented whenever this file is changed |
| 234 | * (See FILL_VMSTOR_REVISION macro above). Mismatch does not |
| 235 | * definitely indicate incompatibility--but it does indicate mismatched |
| 236 | * builds. |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 237 | * This is only used on the windows side. Just set it to 0. |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 238 | */ |
K. Y. Srinivasan | 85904a5 | 2012-01-12 12:38:04 -0800 | [diff] [blame] | 239 | u16 revision; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 240 | } __packed; |
| 241 | |
| 242 | /* Channel Property Flags */ |
| 243 | #define STORAGE_CHANNEL_REMOVABLE_FLAG 0x1 |
| 244 | #define STORAGE_CHANNEL_EMULATED_IDE_FLAG 0x2 |
| 245 | |
| 246 | struct vstor_packet { |
| 247 | /* Requested operation type */ |
| 248 | enum vstor_packet_operation operation; |
| 249 | |
| 250 | /* Flags - see below for values */ |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 251 | u32 flags; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 252 | |
| 253 | /* Status of the request returned from the server side. */ |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 254 | u32 status; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 255 | |
| 256 | /* Data payload area */ |
| 257 | union { |
| 258 | /* |
| 259 | * Structure used to forward SCSI commands from the |
| 260 | * client to the server. |
| 261 | */ |
| 262 | struct vmscsi_request vm_srb; |
| 263 | |
| 264 | /* Structure used to query channel properties. */ |
| 265 | struct vmstorage_channel_properties storage_channel_properties; |
| 266 | |
| 267 | /* Used during version negotiations. */ |
| 268 | struct vmstorage_protocol_version version; |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 269 | |
| 270 | /* Fibre channel address packet */ |
| 271 | struct hv_fc_wwn_packet wwn_packet; |
| 272 | |
| 273 | /* Number of sub-channels to create */ |
| 274 | u16 sub_channel_count; |
| 275 | |
| 276 | /* This will be the maximum of the union members */ |
| 277 | u8 buffer[0x34]; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 278 | }; |
| 279 | } __packed; |
| 280 | |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 281 | /* |
K. Y. Srinivasan | 09f0355 | 2012-01-12 12:37:54 -0800 | [diff] [blame] | 282 | * Packet Flags: |
| 283 | * |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 284 | * This flag indicates that the server should send back a completion for this |
| 285 | * packet. |
| 286 | */ |
K. Y. Srinivasan | 09f0355 | 2012-01-12 12:37:54 -0800 | [diff] [blame] | 287 | |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 288 | #define REQUEST_COMPLETION_FLAG 0x1 |
| 289 | |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 290 | /* Matches Windows-end */ |
| 291 | enum storvsc_request_type { |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 292 | WRITE_TYPE = 0, |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 293 | READ_TYPE, |
| 294 | UNKNOWN_TYPE, |
| 295 | }; |
| 296 | |
K. Y. Srinivasan | 1604632 | 2012-01-12 12:37:57 -0800 | [diff] [blame] | 297 | /* |
| 298 | * SRB status codes and masks; a subset of the codes used here. |
| 299 | */ |
| 300 | |
| 301 | #define SRB_STATUS_AUTOSENSE_VALID 0x80 |
| 302 | #define SRB_STATUS_INVALID_LUN 0x20 |
| 303 | #define SRB_STATUS_SUCCESS 0x01 |
K. Y. Srinivasan | 6781209 | 2013-02-21 12:04:53 -0800 | [diff] [blame] | 304 | #define SRB_STATUS_ABORTED 0x02 |
K. Y. Srinivasan | 1604632 | 2012-01-12 12:37:57 -0800 | [diff] [blame] | 305 | #define SRB_STATUS_ERROR 0x04 |
| 306 | |
K. Y. Srinivasan | af9584b | 2012-01-12 12:38:08 -0800 | [diff] [blame] | 307 | /* |
| 308 | * This is the end of Protocol specific defines. |
| 309 | */ |
| 310 | |
K. Y. Srinivasan | af9584b | 2012-01-12 12:38:08 -0800 | [diff] [blame] | 311 | static int storvsc_ringbuffer_size = (20 * PAGE_SIZE); |
| 312 | |
| 313 | module_param(storvsc_ringbuffer_size, int, S_IRUGO); |
| 314 | MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)"); |
| 315 | |
K. Y. Srinivasan | 893def3 | 2013-06-04 12:05:05 -0700 | [diff] [blame] | 316 | /* |
| 317 | * Timeout in seconds for all devices managed by this driver. |
| 318 | */ |
| 319 | static int storvsc_timeout = 180; |
| 320 | |
K. Y. Srinivasan | f3cfabc | 2014-07-21 16:06:01 -0700 | [diff] [blame] | 321 | static int msft_blist_flags = BLIST_TRY_VPD_PAGES; |
| 322 | |
K. Y. Srinivasan | bb6a4df | 2013-06-04 12:05:09 -0700 | [diff] [blame] | 323 | #define STORVSC_MAX_IO_REQUESTS 200 |
K. Y. Srinivasan | af9584b | 2012-01-12 12:38:08 -0800 | [diff] [blame] | 324 | |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 325 | static void storvsc_on_channel_callback(void *context); |
| 326 | |
K. Y. Srinivasan | 4cd83ec | 2014-07-12 09:48:26 -0700 | [diff] [blame] | 327 | #define STORVSC_MAX_LUNS_PER_TARGET 255 |
| 328 | #define STORVSC_MAX_TARGETS 2 |
| 329 | #define STORVSC_MAX_CHANNELS 8 |
K. Y. Srinivasan | af9584b | 2012-01-12 12:38:08 -0800 | [diff] [blame] | 330 | |
K. Y. Srinivasan | 4cd83ec | 2014-07-12 09:48:26 -0700 | [diff] [blame] | 331 | #define STORVSC_FC_MAX_LUNS_PER_TARGET 255 |
| 332 | #define STORVSC_FC_MAX_TARGETS 128 |
| 333 | #define STORVSC_FC_MAX_CHANNELS 8 |
K. Y. Srinivasan | af9584b | 2012-01-12 12:38:08 -0800 | [diff] [blame] | 334 | |
K. Y. Srinivasan | 4cd83ec | 2014-07-12 09:48:26 -0700 | [diff] [blame] | 335 | #define STORVSC_IDE_MAX_LUNS_PER_TARGET 64 |
| 336 | #define STORVSC_IDE_MAX_TARGETS 1 |
| 337 | #define STORVSC_IDE_MAX_CHANNELS 1 |
K. Y. Srinivasan | 1604632 | 2012-01-12 12:37:57 -0800 | [diff] [blame] | 338 | |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 339 | struct storvsc_cmd_request { |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 340 | struct scsi_cmnd *cmd; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 341 | |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 342 | unsigned int bounce_sgl_count; |
| 343 | struct scatterlist *bounce_sgl; |
| 344 | |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 345 | struct hv_device *device; |
| 346 | |
| 347 | /* Synchronize the request/response if needed */ |
| 348 | struct completion wait_event; |
| 349 | |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 350 | struct hv_multipage_buffer data_buffer; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 351 | struct vstor_packet vstor_packet; |
| 352 | }; |
| 353 | |
| 354 | |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 355 | /* A storvsc device is a device object that contains a vmbus channel */ |
| 356 | struct storvsc_device { |
| 357 | struct hv_device *device; |
| 358 | |
| 359 | bool destroy; |
| 360 | bool drain_notify; |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 361 | bool open_sub_channel; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 362 | atomic_t num_outstanding_req; |
K. Y. Srinivasan | cd654ea | 2011-09-13 10:59:48 -0700 | [diff] [blame] | 363 | struct Scsi_Host *host; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 364 | |
| 365 | wait_queue_head_t waiting_to_drain; |
| 366 | |
| 367 | /* |
| 368 | * Each unique Port/Path/Target represents 1 channel ie scsi |
| 369 | * controller. In reality, the pathid, targetid is always 0 |
| 370 | * and the port is set by us |
| 371 | */ |
| 372 | unsigned int port_number; |
| 373 | unsigned char path_id; |
| 374 | unsigned char target_id; |
| 375 | |
| 376 | /* Used for vsc/vsp channel reset process */ |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 377 | struct storvsc_cmd_request init_request; |
| 378 | struct storvsc_cmd_request reset_request; |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 379 | }; |
| 380 | |
K. Y. Srinivasan | ce3e301 | 2011-12-01 04:59:20 -0800 | [diff] [blame] | 381 | struct hv_host_device { |
| 382 | struct hv_device *dev; |
K. Y. Srinivasan | c1b3d06 | 2011-08-27 11:31:25 -0700 | [diff] [blame] | 383 | unsigned int port; |
| 384 | unsigned char path; |
| 385 | unsigned char target; |
| 386 | }; |
| 387 | |
K. Y. Srinivasan | 12675799 | 2011-11-08 09:01:49 -0800 | [diff] [blame] | 388 | struct storvsc_scan_work { |
| 389 | struct work_struct work; |
| 390 | struct Scsi_Host *host; |
| 391 | uint lun; |
| 392 | }; |
| 393 | |
K. Y. Srinivasan | 6781209 | 2013-02-21 12:04:53 -0800 | [diff] [blame] | 394 | static void storvsc_device_scan(struct work_struct *work) |
| 395 | { |
| 396 | struct storvsc_scan_work *wrk; |
| 397 | uint lun; |
| 398 | struct scsi_device *sdev; |
| 399 | |
| 400 | wrk = container_of(work, struct storvsc_scan_work, work); |
| 401 | lun = wrk->lun; |
| 402 | |
| 403 | sdev = scsi_device_lookup(wrk->host, 0, 0, lun); |
| 404 | if (!sdev) |
| 405 | goto done; |
| 406 | scsi_rescan_device(&sdev->sdev_gendev); |
| 407 | scsi_device_put(sdev); |
| 408 | |
| 409 | done: |
| 410 | kfree(wrk); |
| 411 | } |
| 412 | |
K. Y. Srinivasan | 2a09ed3 | 2014-12-16 13:21:42 -0800 | [diff] [blame^] | 413 | static void storvsc_host_scan(struct work_struct *work) |
K. Y. Srinivasan | 12675799 | 2011-11-08 09:01:49 -0800 | [diff] [blame] | 414 | { |
| 415 | struct storvsc_scan_work *wrk; |
K. Y. Srinivasan | 2a09ed3 | 2014-12-16 13:21:42 -0800 | [diff] [blame^] | 416 | struct Scsi_Host *host; |
K. Y. Srinivasan | 12675799 | 2011-11-08 09:01:49 -0800 | [diff] [blame] | 417 | |
| 418 | wrk = container_of(work, struct storvsc_scan_work, work); |
K. Y. Srinivasan | 2a09ed3 | 2014-12-16 13:21:42 -0800 | [diff] [blame^] | 419 | host = wrk->host; |
K. Y. Srinivasan | 12675799 | 2011-11-08 09:01:49 -0800 | [diff] [blame] | 420 | |
K. Y. Srinivasan | 2a09ed3 | 2014-12-16 13:21:42 -0800 | [diff] [blame^] | 421 | scsi_scan_host(host); |
| 422 | |
K. Y. Srinivasan | 12675799 | 2011-11-08 09:01:49 -0800 | [diff] [blame] | 423 | kfree(wrk); |
| 424 | } |
| 425 | |
K. Y. Srinivasan | b401731 | 2011-11-08 09:01:50 -0800 | [diff] [blame] | 426 | static void storvsc_remove_lun(struct work_struct *work) |
| 427 | { |
| 428 | struct storvsc_scan_work *wrk; |
| 429 | struct scsi_device *sdev; |
| 430 | |
| 431 | wrk = container_of(work, struct storvsc_scan_work, work); |
| 432 | if (!scsi_host_get(wrk->host)) |
| 433 | goto done; |
| 434 | |
| 435 | sdev = scsi_device_lookup(wrk->host, 0, 0, wrk->lun); |
| 436 | |
| 437 | if (sdev) { |
| 438 | scsi_remove_device(sdev); |
| 439 | scsi_device_put(sdev); |
| 440 | } |
| 441 | scsi_host_put(wrk->host); |
| 442 | |
| 443 | done: |
| 444 | kfree(wrk); |
| 445 | } |
| 446 | |
K. Y. Srinivasan | a8c18c5 | 2012-01-12 12:38:00 -0800 | [diff] [blame] | 447 | /* |
K. Y. Srinivasan | af9584b | 2012-01-12 12:38:08 -0800 | [diff] [blame] | 448 | * Major/minor macros. Minor version is in LSB, meaning that earlier flat |
| 449 | * version numbers will be interpreted as "0.x" (i.e., 1 becomes 0.1). |
| 450 | */ |
| 451 | |
| 452 | static inline u16 storvsc_get_version(u8 major, u8 minor) |
| 453 | { |
| 454 | u16 version; |
| 455 | |
| 456 | version = ((major << 8) | minor); |
| 457 | return version; |
| 458 | } |
| 459 | |
| 460 | /* |
K. Y. Srinivasan | a8c18c5 | 2012-01-12 12:38:00 -0800 | [diff] [blame] | 461 | * We can get incoming messages from the host that are not in response to |
| 462 | * messages that we have sent out. An example of this would be messages |
| 463 | * received by the guest to notify dynamic addition/removal of LUNs. To |
| 464 | * deal with potential race conditions where the driver may be in the |
| 465 | * midst of being unloaded when we might receive an unsolicited message |
| 466 | * from the host, we have implemented a mechanism to gurantee sequential |
| 467 | * consistency: |
| 468 | * |
| 469 | * 1) Once the device is marked as being destroyed, we will fail all |
| 470 | * outgoing messages. |
| 471 | * 2) We permit incoming messages when the device is being destroyed, |
| 472 | * only to properly account for messages already sent out. |
| 473 | */ |
| 474 | |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 475 | static inline struct storvsc_device *get_out_stor_device( |
| 476 | struct hv_device *device) |
| 477 | { |
| 478 | struct storvsc_device *stor_device; |
| 479 | |
K. Y. Srinivasan | cd654ea | 2011-09-13 10:59:48 -0700 | [diff] [blame] | 480 | stor_device = hv_get_drvdata(device); |
K. Y. Srinivasan | f0d79fe | 2011-08-27 11:31:24 -0700 | [diff] [blame] | 481 | |
| 482 | if (stor_device && stor_device->destroy) |
| 483 | stor_device = NULL; |
| 484 | |
| 485 | return stor_device; |
| 486 | } |
| 487 | |
| 488 | |
| 489 | static inline void storvsc_wait_to_drain(struct storvsc_device *dev) |
| 490 | { |
| 491 | dev->drain_notify = true; |
| 492 | wait_event(dev->waiting_to_drain, |
| 493 | atomic_read(&dev->num_outstanding_req) == 0); |
| 494 | dev->drain_notify = false; |
| 495 | } |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 496 | |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 497 | static inline struct storvsc_device *get_in_stor_device( |
| 498 | struct hv_device *device) |
| 499 | { |
| 500 | struct storvsc_device *stor_device; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 501 | |
K. Y. Srinivasan | cd654ea | 2011-09-13 10:59:48 -0700 | [diff] [blame] | 502 | stor_device = hv_get_drvdata(device); |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 503 | |
| 504 | if (!stor_device) |
| 505 | goto get_in_err; |
| 506 | |
| 507 | /* |
| 508 | * If the device is being destroyed; allow incoming |
| 509 | * traffic only to cleanup outstanding requests. |
| 510 | */ |
| 511 | |
| 512 | if (stor_device->destroy && |
| 513 | (atomic_read(&stor_device->num_outstanding_req) == 0)) |
| 514 | stor_device = NULL; |
| 515 | |
| 516 | get_in_err: |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 517 | return stor_device; |
| 518 | |
| 519 | } |
| 520 | |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 521 | static void destroy_bounce_buffer(struct scatterlist *sgl, |
| 522 | unsigned int sg_count) |
| 523 | { |
| 524 | int i; |
| 525 | struct page *page_buf; |
| 526 | |
| 527 | for (i = 0; i < sg_count; i++) { |
| 528 | page_buf = sg_page((&sgl[i])); |
| 529 | if (page_buf != NULL) |
| 530 | __free_page(page_buf); |
| 531 | } |
| 532 | |
| 533 | kfree(sgl); |
| 534 | } |
| 535 | |
| 536 | static int do_bounce_buffer(struct scatterlist *sgl, unsigned int sg_count) |
| 537 | { |
| 538 | int i; |
| 539 | |
| 540 | /* No need to check */ |
| 541 | if (sg_count < 2) |
| 542 | return -1; |
| 543 | |
| 544 | /* We have at least 2 sg entries */ |
| 545 | for (i = 0; i < sg_count; i++) { |
| 546 | if (i == 0) { |
| 547 | /* make sure 1st one does not have hole */ |
| 548 | if (sgl[i].offset + sgl[i].length != PAGE_SIZE) |
| 549 | return i; |
| 550 | } else if (i == sg_count - 1) { |
| 551 | /* make sure last one does not have hole */ |
| 552 | if (sgl[i].offset != 0) |
| 553 | return i; |
| 554 | } else { |
| 555 | /* make sure no hole in the middle */ |
| 556 | if (sgl[i].length != PAGE_SIZE || sgl[i].offset != 0) |
| 557 | return i; |
| 558 | } |
| 559 | } |
| 560 | return -1; |
| 561 | } |
| 562 | |
| 563 | static struct scatterlist *create_bounce_buffer(struct scatterlist *sgl, |
| 564 | unsigned int sg_count, |
| 565 | unsigned int len, |
| 566 | int write) |
| 567 | { |
| 568 | int i; |
| 569 | int num_pages; |
| 570 | struct scatterlist *bounce_sgl; |
| 571 | struct page *page_buf; |
| 572 | unsigned int buf_len = ((write == WRITE_TYPE) ? 0 : PAGE_SIZE); |
| 573 | |
| 574 | num_pages = ALIGN(len, PAGE_SIZE) >> PAGE_SHIFT; |
| 575 | |
| 576 | bounce_sgl = kcalloc(num_pages, sizeof(struct scatterlist), GFP_ATOMIC); |
| 577 | if (!bounce_sgl) |
| 578 | return NULL; |
| 579 | |
K. Y. Srinivasan | 9d2696e | 2013-02-06 05:15:28 -0800 | [diff] [blame] | 580 | sg_init_table(bounce_sgl, num_pages); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 581 | for (i = 0; i < num_pages; i++) { |
| 582 | page_buf = alloc_page(GFP_ATOMIC); |
| 583 | if (!page_buf) |
| 584 | goto cleanup; |
| 585 | sg_set_page(&bounce_sgl[i], page_buf, buf_len, 0); |
| 586 | } |
| 587 | |
| 588 | return bounce_sgl; |
| 589 | |
| 590 | cleanup: |
| 591 | destroy_bounce_buffer(bounce_sgl, num_pages); |
| 592 | return NULL; |
| 593 | } |
| 594 | |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 595 | /* Disgusting wrapper functions */ |
| 596 | static inline unsigned long sg_kmap_atomic(struct scatterlist *sgl, int idx) |
| 597 | { |
| 598 | void *addr = kmap_atomic(sg_page(sgl + idx)); |
| 599 | return (unsigned long)addr; |
| 600 | } |
| 601 | |
| 602 | static inline void sg_kunmap_atomic(unsigned long addr) |
| 603 | { |
| 604 | kunmap_atomic((void *)addr); |
| 605 | } |
| 606 | |
| 607 | |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 608 | /* Assume the original sgl has enough room */ |
| 609 | static unsigned int copy_from_bounce_buffer(struct scatterlist *orig_sgl, |
| 610 | struct scatterlist *bounce_sgl, |
| 611 | unsigned int orig_sgl_count, |
| 612 | unsigned int bounce_sgl_count) |
| 613 | { |
| 614 | int i; |
| 615 | int j = 0; |
| 616 | unsigned long src, dest; |
| 617 | unsigned int srclen, destlen, copylen; |
| 618 | unsigned int total_copied = 0; |
| 619 | unsigned long bounce_addr = 0; |
| 620 | unsigned long dest_addr = 0; |
| 621 | unsigned long flags; |
| 622 | |
| 623 | local_irq_save(flags); |
| 624 | |
| 625 | for (i = 0; i < orig_sgl_count; i++) { |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 626 | dest_addr = sg_kmap_atomic(orig_sgl,i) + orig_sgl[i].offset; |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 627 | dest = dest_addr; |
| 628 | destlen = orig_sgl[i].length; |
| 629 | |
| 630 | if (bounce_addr == 0) |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 631 | bounce_addr = sg_kmap_atomic(bounce_sgl,j); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 632 | |
| 633 | while (destlen) { |
| 634 | src = bounce_addr + bounce_sgl[j].offset; |
| 635 | srclen = bounce_sgl[j].length - bounce_sgl[j].offset; |
| 636 | |
| 637 | copylen = min(srclen, destlen); |
| 638 | memcpy((void *)dest, (void *)src, copylen); |
| 639 | |
| 640 | total_copied += copylen; |
| 641 | bounce_sgl[j].offset += copylen; |
| 642 | destlen -= copylen; |
| 643 | dest += copylen; |
| 644 | |
| 645 | if (bounce_sgl[j].offset == bounce_sgl[j].length) { |
| 646 | /* full */ |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 647 | sg_kunmap_atomic(bounce_addr); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 648 | j++; |
| 649 | |
| 650 | /* |
| 651 | * It is possible that the number of elements |
| 652 | * in the bounce buffer may not be equal to |
| 653 | * the number of elements in the original |
| 654 | * scatter list. Handle this correctly. |
| 655 | */ |
| 656 | |
| 657 | if (j == bounce_sgl_count) { |
| 658 | /* |
| 659 | * We are done; cleanup and return. |
| 660 | */ |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 661 | sg_kunmap_atomic(dest_addr - orig_sgl[i].offset); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 662 | local_irq_restore(flags); |
| 663 | return total_copied; |
| 664 | } |
| 665 | |
| 666 | /* if we need to use another bounce buffer */ |
| 667 | if (destlen || i != orig_sgl_count - 1) |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 668 | bounce_addr = sg_kmap_atomic(bounce_sgl,j); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 669 | } else if (destlen == 0 && i == orig_sgl_count - 1) { |
| 670 | /* unmap the last bounce that is < PAGE_SIZE */ |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 671 | sg_kunmap_atomic(bounce_addr); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 672 | } |
| 673 | } |
| 674 | |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 675 | sg_kunmap_atomic(dest_addr - orig_sgl[i].offset); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 676 | } |
| 677 | |
| 678 | local_irq_restore(flags); |
| 679 | |
| 680 | return total_copied; |
| 681 | } |
| 682 | |
| 683 | /* Assume the bounce_sgl has enough room ie using the create_bounce_buffer() */ |
| 684 | static unsigned int copy_to_bounce_buffer(struct scatterlist *orig_sgl, |
| 685 | struct scatterlist *bounce_sgl, |
| 686 | unsigned int orig_sgl_count) |
| 687 | { |
| 688 | int i; |
| 689 | int j = 0; |
| 690 | unsigned long src, dest; |
| 691 | unsigned int srclen, destlen, copylen; |
| 692 | unsigned int total_copied = 0; |
| 693 | unsigned long bounce_addr = 0; |
| 694 | unsigned long src_addr = 0; |
| 695 | unsigned long flags; |
| 696 | |
| 697 | local_irq_save(flags); |
| 698 | |
| 699 | for (i = 0; i < orig_sgl_count; i++) { |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 700 | src_addr = sg_kmap_atomic(orig_sgl,i) + orig_sgl[i].offset; |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 701 | src = src_addr; |
| 702 | srclen = orig_sgl[i].length; |
| 703 | |
| 704 | if (bounce_addr == 0) |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 705 | bounce_addr = sg_kmap_atomic(bounce_sgl,j); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 706 | |
| 707 | while (srclen) { |
| 708 | /* assume bounce offset always == 0 */ |
| 709 | dest = bounce_addr + bounce_sgl[j].length; |
| 710 | destlen = PAGE_SIZE - bounce_sgl[j].length; |
| 711 | |
| 712 | copylen = min(srclen, destlen); |
| 713 | memcpy((void *)dest, (void *)src, copylen); |
| 714 | |
| 715 | total_copied += copylen; |
| 716 | bounce_sgl[j].length += copylen; |
| 717 | srclen -= copylen; |
| 718 | src += copylen; |
| 719 | |
| 720 | if (bounce_sgl[j].length == PAGE_SIZE) { |
| 721 | /* full..move to next entry */ |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 722 | sg_kunmap_atomic(bounce_addr); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 723 | j++; |
| 724 | |
| 725 | /* if we need to use another bounce buffer */ |
| 726 | if (srclen || i != orig_sgl_count - 1) |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 727 | bounce_addr = sg_kmap_atomic(bounce_sgl,j); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 728 | |
| 729 | } else if (srclen == 0 && i == orig_sgl_count - 1) { |
| 730 | /* unmap the last bounce that is < PAGE_SIZE */ |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 731 | sg_kunmap_atomic(bounce_addr); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 732 | } |
| 733 | } |
| 734 | |
Linus Torvalds | 9f39383 | 2012-03-21 09:40:26 -0700 | [diff] [blame] | 735 | sg_kunmap_atomic(src_addr - orig_sgl[i].offset); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | local_irq_restore(flags); |
| 739 | |
| 740 | return total_copied; |
| 741 | } |
| 742 | |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 743 | static void handle_sc_creation(struct vmbus_channel *new_sc) |
| 744 | { |
| 745 | struct hv_device *device = new_sc->primary_channel->device_obj; |
| 746 | struct storvsc_device *stor_device; |
| 747 | struct vmstorage_channel_properties props; |
| 748 | |
| 749 | stor_device = get_out_stor_device(device); |
| 750 | if (!stor_device) |
| 751 | return; |
| 752 | |
| 753 | if (stor_device->open_sub_channel == false) |
| 754 | return; |
| 755 | |
| 756 | memset(&props, 0, sizeof(struct vmstorage_channel_properties)); |
| 757 | |
| 758 | vmbus_open(new_sc, |
| 759 | storvsc_ringbuffer_size, |
| 760 | storvsc_ringbuffer_size, |
| 761 | (void *)&props, |
| 762 | sizeof(struct vmstorage_channel_properties), |
| 763 | storvsc_on_channel_callback, new_sc); |
| 764 | } |
| 765 | |
| 766 | static void handle_multichannel_storage(struct hv_device *device, int max_chns) |
| 767 | { |
| 768 | struct storvsc_device *stor_device; |
| 769 | int num_cpus = num_online_cpus(); |
| 770 | int num_sc; |
| 771 | struct storvsc_cmd_request *request; |
| 772 | struct vstor_packet *vstor_packet; |
| 773 | int ret, t; |
| 774 | |
| 775 | num_sc = ((max_chns > num_cpus) ? num_cpus : max_chns); |
| 776 | stor_device = get_out_stor_device(device); |
| 777 | if (!stor_device) |
| 778 | return; |
| 779 | |
| 780 | request = &stor_device->init_request; |
| 781 | vstor_packet = &request->vstor_packet; |
| 782 | |
| 783 | stor_device->open_sub_channel = true; |
| 784 | /* |
| 785 | * Establish a handler for dealing with subchannels. |
| 786 | */ |
| 787 | vmbus_set_sc_create_callback(device->channel, handle_sc_creation); |
| 788 | |
| 789 | /* |
| 790 | * Check to see if sub-channels have already been created. This |
| 791 | * can happen when this driver is re-loaded after unloading. |
| 792 | */ |
| 793 | |
| 794 | if (vmbus_are_subchannels_present(device->channel)) |
| 795 | return; |
| 796 | |
| 797 | stor_device->open_sub_channel = false; |
| 798 | /* |
| 799 | * Request the host to create sub-channels. |
| 800 | */ |
| 801 | memset(request, 0, sizeof(struct storvsc_cmd_request)); |
| 802 | init_completion(&request->wait_event); |
| 803 | vstor_packet->operation = VSTOR_OPERATION_CREATE_SUB_CHANNELS; |
| 804 | vstor_packet->flags = REQUEST_COMPLETION_FLAG; |
| 805 | vstor_packet->sub_channel_count = num_sc; |
| 806 | |
| 807 | ret = vmbus_sendpacket(device->channel, vstor_packet, |
| 808 | (sizeof(struct vstor_packet) - |
| 809 | vmscsi_size_delta), |
| 810 | (unsigned long)request, |
| 811 | VM_PKT_DATA_INBAND, |
| 812 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); |
| 813 | |
| 814 | if (ret != 0) |
| 815 | return; |
| 816 | |
| 817 | t = wait_for_completion_timeout(&request->wait_event, 10*HZ); |
| 818 | if (t == 0) |
| 819 | return; |
| 820 | |
| 821 | if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO || |
| 822 | vstor_packet->status != 0) |
| 823 | return; |
| 824 | |
| 825 | /* |
| 826 | * Now that we created the sub-channels, invoke the check; this |
| 827 | * may trigger the callback. |
| 828 | */ |
| 829 | stor_device->open_sub_channel = true; |
| 830 | vmbus_are_subchannels_present(device->channel); |
| 831 | } |
| 832 | |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 833 | static int storvsc_channel_init(struct hv_device *device) |
| 834 | { |
| 835 | struct storvsc_device *stor_device; |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 836 | struct storvsc_cmd_request *request; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 837 | struct vstor_packet *vstor_packet; |
| 838 | int ret, t; |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 839 | int max_chns; |
| 840 | bool process_sub_channels = false; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 841 | |
| 842 | stor_device = get_out_stor_device(device); |
| 843 | if (!stor_device) |
| 844 | return -ENODEV; |
| 845 | |
| 846 | request = &stor_device->init_request; |
| 847 | vstor_packet = &request->vstor_packet; |
| 848 | |
| 849 | /* |
| 850 | * Now, initiate the vsc/vsp initialization protocol on the open |
| 851 | * channel |
| 852 | */ |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 853 | memset(request, 0, sizeof(struct storvsc_cmd_request)); |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 854 | init_completion(&request->wait_event); |
| 855 | vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION; |
| 856 | vstor_packet->flags = REQUEST_COMPLETION_FLAG; |
| 857 | |
| 858 | ret = vmbus_sendpacket(device->channel, vstor_packet, |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 859 | (sizeof(struct vstor_packet) - |
| 860 | vmscsi_size_delta), |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 861 | (unsigned long)request, |
| 862 | VM_PKT_DATA_INBAND, |
| 863 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); |
| 864 | if (ret != 0) |
| 865 | goto cleanup; |
| 866 | |
| 867 | t = wait_for_completion_timeout(&request->wait_event, 5*HZ); |
| 868 | if (t == 0) { |
| 869 | ret = -ETIMEDOUT; |
| 870 | goto cleanup; |
| 871 | } |
| 872 | |
| 873 | if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO || |
| 874 | vstor_packet->status != 0) |
| 875 | goto cleanup; |
| 876 | |
| 877 | |
| 878 | /* reuse the packet for version range supported */ |
| 879 | memset(vstor_packet, 0, sizeof(struct vstor_packet)); |
| 880 | vstor_packet->operation = VSTOR_OPERATION_QUERY_PROTOCOL_VERSION; |
| 881 | vstor_packet->flags = REQUEST_COMPLETION_FLAG; |
| 882 | |
K. Y. Srinivasan | 85904a5 | 2012-01-12 12:38:04 -0800 | [diff] [blame] | 883 | vstor_packet->version.major_minor = |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 884 | storvsc_get_version(vmstor_current_major, vmstor_current_minor); |
K. Y. Srinivasan | 85904a5 | 2012-01-12 12:38:04 -0800 | [diff] [blame] | 885 | |
| 886 | /* |
| 887 | * The revision number is only used in Windows; set it to 0. |
| 888 | */ |
K. Y. Srinivasan | c649114 | 2012-01-12 12:38:03 -0800 | [diff] [blame] | 889 | vstor_packet->version.revision = 0; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 890 | |
| 891 | ret = vmbus_sendpacket(device->channel, vstor_packet, |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 892 | (sizeof(struct vstor_packet) - |
| 893 | vmscsi_size_delta), |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 894 | (unsigned long)request, |
| 895 | VM_PKT_DATA_INBAND, |
| 896 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); |
| 897 | if (ret != 0) |
| 898 | goto cleanup; |
| 899 | |
| 900 | t = wait_for_completion_timeout(&request->wait_event, 5*HZ); |
| 901 | if (t == 0) { |
| 902 | ret = -ETIMEDOUT; |
| 903 | goto cleanup; |
| 904 | } |
| 905 | |
| 906 | if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO || |
| 907 | vstor_packet->status != 0) |
| 908 | goto cleanup; |
| 909 | |
| 910 | |
| 911 | memset(vstor_packet, 0, sizeof(struct vstor_packet)); |
| 912 | vstor_packet->operation = VSTOR_OPERATION_QUERY_PROPERTIES; |
| 913 | vstor_packet->flags = REQUEST_COMPLETION_FLAG; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 914 | |
| 915 | ret = vmbus_sendpacket(device->channel, vstor_packet, |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 916 | (sizeof(struct vstor_packet) - |
| 917 | vmscsi_size_delta), |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 918 | (unsigned long)request, |
| 919 | VM_PKT_DATA_INBAND, |
| 920 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); |
| 921 | |
| 922 | if (ret != 0) |
| 923 | goto cleanup; |
| 924 | |
| 925 | t = wait_for_completion_timeout(&request->wait_event, 5*HZ); |
| 926 | if (t == 0) { |
| 927 | ret = -ETIMEDOUT; |
| 928 | goto cleanup; |
| 929 | } |
| 930 | |
| 931 | if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO || |
| 932 | vstor_packet->status != 0) |
| 933 | goto cleanup; |
| 934 | |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 935 | /* |
| 936 | * Check to see if multi-channel support is there. |
| 937 | * Hosts that implement protocol version of 5.1 and above |
| 938 | * support multi-channel. |
| 939 | */ |
| 940 | max_chns = vstor_packet->storage_channel_properties.max_channel_cnt; |
| 941 | if ((vmbus_proto_version != VERSION_WIN7) && |
| 942 | (vmbus_proto_version != VERSION_WS2008)) { |
| 943 | if (vstor_packet->storage_channel_properties.flags & |
| 944 | STORAGE_CHANNEL_SUPPORTS_MULTI_CHANNEL) |
| 945 | process_sub_channels = true; |
| 946 | } |
| 947 | |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 948 | memset(vstor_packet, 0, sizeof(struct vstor_packet)); |
| 949 | vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION; |
| 950 | vstor_packet->flags = REQUEST_COMPLETION_FLAG; |
| 951 | |
| 952 | ret = vmbus_sendpacket(device->channel, vstor_packet, |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 953 | (sizeof(struct vstor_packet) - |
| 954 | vmscsi_size_delta), |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 955 | (unsigned long)request, |
| 956 | VM_PKT_DATA_INBAND, |
| 957 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); |
| 958 | |
| 959 | if (ret != 0) |
| 960 | goto cleanup; |
| 961 | |
| 962 | t = wait_for_completion_timeout(&request->wait_event, 5*HZ); |
| 963 | if (t == 0) { |
| 964 | ret = -ETIMEDOUT; |
| 965 | goto cleanup; |
| 966 | } |
| 967 | |
| 968 | if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO || |
| 969 | vstor_packet->status != 0) |
| 970 | goto cleanup; |
| 971 | |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 972 | if (process_sub_channels) |
| 973 | handle_multichannel_storage(device, max_chns); |
| 974 | |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 975 | |
| 976 | cleanup: |
| 977 | return ret; |
| 978 | } |
| 979 | |
K. Y. Srinivasan | c50bd44 | 2013-02-21 12:04:52 -0800 | [diff] [blame] | 980 | static void storvsc_handle_error(struct vmscsi_request *vm_srb, |
| 981 | struct scsi_cmnd *scmnd, |
| 982 | struct Scsi_Host *host, |
| 983 | u8 asc, u8 ascq) |
| 984 | { |
| 985 | struct storvsc_scan_work *wrk; |
| 986 | void (*process_err_fn)(struct work_struct *work); |
| 987 | bool do_work = false; |
| 988 | |
| 989 | switch (vm_srb->srb_status) { |
| 990 | case SRB_STATUS_ERROR: |
| 991 | /* |
| 992 | * If there is an error; offline the device since all |
| 993 | * error recovery strategies would have already been |
| 994 | * deployed on the host side. However, if the command |
| 995 | * were a pass-through command deal with it appropriately. |
| 996 | */ |
| 997 | switch (scmnd->cmnd[0]) { |
| 998 | case ATA_16: |
| 999 | case ATA_12: |
| 1000 | set_host_byte(scmnd, DID_PASSTHROUGH); |
| 1001 | break; |
K. Y. Srinivasan | 3533f860 | 2014-07-12 09:48:32 -0700 | [diff] [blame] | 1002 | /* |
| 1003 | * On Some Windows hosts TEST_UNIT_READY command can return |
| 1004 | * SRB_STATUS_ERROR, let the upper level code deal with it |
| 1005 | * based on the sense information. |
| 1006 | */ |
| 1007 | case TEST_UNIT_READY: |
| 1008 | break; |
K. Y. Srinivasan | c50bd44 | 2013-02-21 12:04:52 -0800 | [diff] [blame] | 1009 | default: |
| 1010 | set_host_byte(scmnd, DID_TARGET_FAILURE); |
| 1011 | } |
| 1012 | break; |
| 1013 | case SRB_STATUS_INVALID_LUN: |
| 1014 | do_work = true; |
| 1015 | process_err_fn = storvsc_remove_lun; |
| 1016 | break; |
K. Y. Srinivasan | 6781209 | 2013-02-21 12:04:53 -0800 | [diff] [blame] | 1017 | case (SRB_STATUS_ABORTED | SRB_STATUS_AUTOSENSE_VALID): |
| 1018 | if ((asc == 0x2a) && (ascq == 0x9)) { |
| 1019 | do_work = true; |
| 1020 | process_err_fn = storvsc_device_scan; |
| 1021 | /* |
| 1022 | * Retry the I/O that trigerred this. |
| 1023 | */ |
| 1024 | set_host_byte(scmnd, DID_REQUEUE); |
| 1025 | } |
| 1026 | break; |
K. Y. Srinivasan | c50bd44 | 2013-02-21 12:04:52 -0800 | [diff] [blame] | 1027 | } |
K. Y. Srinivasan | 6781209 | 2013-02-21 12:04:53 -0800 | [diff] [blame] | 1028 | |
K. Y. Srinivasan | c50bd44 | 2013-02-21 12:04:52 -0800 | [diff] [blame] | 1029 | if (!do_work) |
| 1030 | return; |
| 1031 | |
| 1032 | /* |
| 1033 | * We need to schedule work to process this error; schedule it. |
| 1034 | */ |
| 1035 | wrk = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC); |
| 1036 | if (!wrk) { |
| 1037 | set_host_byte(scmnd, DID_TARGET_FAILURE); |
| 1038 | return; |
| 1039 | } |
| 1040 | |
| 1041 | wrk->host = host; |
| 1042 | wrk->lun = vm_srb->lun; |
| 1043 | INIT_WORK(&wrk->work, process_err_fn); |
| 1044 | schedule_work(&wrk->work); |
| 1045 | } |
| 1046 | |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1047 | |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1048 | static void storvsc_command_completion(struct storvsc_cmd_request *cmd_request) |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1049 | { |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1050 | struct scsi_cmnd *scmnd = cmd_request->cmd; |
| 1051 | struct hv_host_device *host_dev = shost_priv(scmnd->device->host); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1052 | struct scsi_sense_hdr sense_hdr; |
| 1053 | struct vmscsi_request *vm_srb; |
K. Y. Srinivasan | c50bd44 | 2013-02-21 12:04:52 -0800 | [diff] [blame] | 1054 | struct Scsi_Host *host; |
| 1055 | struct storvsc_device *stor_dev; |
| 1056 | struct hv_device *dev = host_dev->dev; |
| 1057 | |
| 1058 | stor_dev = get_in_stor_device(dev); |
| 1059 | host = stor_dev->host; |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1060 | |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1061 | vm_srb = &cmd_request->vstor_packet.vm_srb; |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1062 | if (cmd_request->bounce_sgl_count) { |
| 1063 | if (vm_srb->data_in == READ_TYPE) |
| 1064 | copy_from_bounce_buffer(scsi_sglist(scmnd), |
| 1065 | cmd_request->bounce_sgl, |
| 1066 | scsi_sg_count(scmnd), |
| 1067 | cmd_request->bounce_sgl_count); |
| 1068 | destroy_bounce_buffer(cmd_request->bounce_sgl, |
| 1069 | cmd_request->bounce_sgl_count); |
| 1070 | } |
| 1071 | |
K. Y. Srinivasan | 42e22ca | 2012-04-05 12:26:52 -0700 | [diff] [blame] | 1072 | scmnd->result = vm_srb->scsi_status; |
| 1073 | |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1074 | if (scmnd->result) { |
| 1075 | if (scsi_normalize_sense(scmnd->sense_buffer, |
| 1076 | SCSI_SENSE_BUFFERSIZE, &sense_hdr)) |
Hannes Reinecke | d811b84 | 2014-10-24 14:26:45 +0200 | [diff] [blame] | 1077 | scsi_print_sense_hdr(scmnd->device, "storvsc", |
| 1078 | &sense_hdr); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1079 | } |
| 1080 | |
K. Y. Srinivasan | c50bd44 | 2013-02-21 12:04:52 -0800 | [diff] [blame] | 1081 | if (vm_srb->srb_status != SRB_STATUS_SUCCESS) |
| 1082 | storvsc_handle_error(vm_srb, scmnd, host, sense_hdr.asc, |
| 1083 | sense_hdr.ascq); |
| 1084 | |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1085 | scsi_set_resid(scmnd, |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1086 | cmd_request->data_buffer.len - |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1087 | vm_srb->data_transfer_length); |
| 1088 | |
Christoph Hellwig | ead3700 | 2014-12-29 20:05:09 -0800 | [diff] [blame] | 1089 | scmnd->scsi_done(scmnd); |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1090 | } |
| 1091 | |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1092 | static void storvsc_on_io_completion(struct hv_device *device, |
| 1093 | struct vstor_packet *vstor_packet, |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1094 | struct storvsc_cmd_request *request) |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1095 | { |
| 1096 | struct storvsc_device *stor_device; |
| 1097 | struct vstor_packet *stor_pkt; |
| 1098 | |
K. Y. Srinivasan | cd654ea | 2011-09-13 10:59:48 -0700 | [diff] [blame] | 1099 | stor_device = hv_get_drvdata(device); |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1100 | stor_pkt = &request->vstor_packet; |
| 1101 | |
K. Y. Srinivasan | 4ed51a2 | 2011-08-27 11:31:26 -0700 | [diff] [blame] | 1102 | /* |
| 1103 | * The current SCSI handling on the host side does |
| 1104 | * not correctly handle: |
| 1105 | * INQUIRY command with page code parameter set to 0x80 |
| 1106 | * MODE_SENSE command with cmd[2] == 0x1c |
| 1107 | * |
| 1108 | * Setup srb and scsi status so this won't be fatal. |
| 1109 | * We do this so we can distinguish truly fatal failues |
| 1110 | * (srb status == 0x4) and off-line the device in that case. |
| 1111 | */ |
| 1112 | |
| 1113 | if ((stor_pkt->vm_srb.cdb[0] == INQUIRY) || |
K. Y. Srinivasan | a8c18c5 | 2012-01-12 12:38:00 -0800 | [diff] [blame] | 1114 | (stor_pkt->vm_srb.cdb[0] == MODE_SENSE)) { |
K. Y. Srinivasan | 4ed51a2 | 2011-08-27 11:31:26 -0700 | [diff] [blame] | 1115 | vstor_packet->vm_srb.scsi_status = 0; |
K. Y. Srinivasan | 1604632 | 2012-01-12 12:37:57 -0800 | [diff] [blame] | 1116 | vstor_packet->vm_srb.srb_status = SRB_STATUS_SUCCESS; |
K. Y. Srinivasan | 4ed51a2 | 2011-08-27 11:31:26 -0700 | [diff] [blame] | 1117 | } |
| 1118 | |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1119 | |
| 1120 | /* Copy over the status...etc */ |
| 1121 | stor_pkt->vm_srb.scsi_status = vstor_packet->vm_srb.scsi_status; |
| 1122 | stor_pkt->vm_srb.srb_status = vstor_packet->vm_srb.srb_status; |
| 1123 | stor_pkt->vm_srb.sense_info_length = |
| 1124 | vstor_packet->vm_srb.sense_info_length; |
| 1125 | |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1126 | |
| 1127 | if ((vstor_packet->vm_srb.scsi_status & 0xFF) == 0x02) { |
| 1128 | /* CHECK_CONDITION */ |
K. Y. Srinivasan | 1604632 | 2012-01-12 12:37:57 -0800 | [diff] [blame] | 1129 | if (vstor_packet->vm_srb.srb_status & |
| 1130 | SRB_STATUS_AUTOSENSE_VALID) { |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1131 | /* autosense data available */ |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1132 | |
Christoph Hellwig | ead3700 | 2014-12-29 20:05:09 -0800 | [diff] [blame] | 1133 | memcpy(request->cmd->sense_buffer, |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1134 | vstor_packet->vm_srb.sense_data, |
| 1135 | vstor_packet->vm_srb.sense_info_length); |
| 1136 | |
| 1137 | } |
| 1138 | } |
| 1139 | |
| 1140 | stor_pkt->vm_srb.data_transfer_length = |
| 1141 | vstor_packet->vm_srb.data_transfer_length; |
| 1142 | |
K. Y. Srinivasan | 2707388c | 2012-01-12 12:38:01 -0800 | [diff] [blame] | 1143 | storvsc_command_completion(request); |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1144 | |
| 1145 | if (atomic_dec_and_test(&stor_device->num_outstanding_req) && |
| 1146 | stor_device->drain_notify) |
| 1147 | wake_up(&stor_device->waiting_to_drain); |
| 1148 | |
| 1149 | |
| 1150 | } |
| 1151 | |
| 1152 | static void storvsc_on_receive(struct hv_device *device, |
| 1153 | struct vstor_packet *vstor_packet, |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1154 | struct storvsc_cmd_request *request) |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1155 | { |
K. Y. Srinivasan | 12675799 | 2011-11-08 09:01:49 -0800 | [diff] [blame] | 1156 | struct storvsc_scan_work *work; |
| 1157 | struct storvsc_device *stor_device; |
| 1158 | |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1159 | switch (vstor_packet->operation) { |
| 1160 | case VSTOR_OPERATION_COMPLETE_IO: |
| 1161 | storvsc_on_io_completion(device, vstor_packet, request); |
| 1162 | break; |
K. Y. Srinivasan | 12675799 | 2011-11-08 09:01:49 -0800 | [diff] [blame] | 1163 | |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1164 | case VSTOR_OPERATION_REMOVE_DEVICE: |
K. Y. Srinivasan | 12675799 | 2011-11-08 09:01:49 -0800 | [diff] [blame] | 1165 | case VSTOR_OPERATION_ENUMERATE_BUS: |
| 1166 | stor_device = get_in_stor_device(device); |
| 1167 | work = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC); |
| 1168 | if (!work) |
| 1169 | return; |
| 1170 | |
K. Y. Srinivasan | 2a09ed3 | 2014-12-16 13:21:42 -0800 | [diff] [blame^] | 1171 | INIT_WORK(&work->work, storvsc_host_scan); |
K. Y. Srinivasan | 12675799 | 2011-11-08 09:01:49 -0800 | [diff] [blame] | 1172 | work->host = stor_device->host; |
| 1173 | schedule_work(&work->work); |
| 1174 | break; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1175 | |
| 1176 | default: |
| 1177 | break; |
| 1178 | } |
| 1179 | } |
| 1180 | |
| 1181 | static void storvsc_on_channel_callback(void *context) |
| 1182 | { |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 1183 | struct vmbus_channel *channel = (struct vmbus_channel *)context; |
| 1184 | struct hv_device *device; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1185 | struct storvsc_device *stor_device; |
| 1186 | u32 bytes_recvd; |
| 1187 | u64 request_id; |
| 1188 | unsigned char packet[ALIGN(sizeof(struct vstor_packet), 8)]; |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1189 | struct storvsc_cmd_request *request; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1190 | int ret; |
| 1191 | |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 1192 | if (channel->primary_channel != NULL) |
| 1193 | device = channel->primary_channel->device_obj; |
| 1194 | else |
| 1195 | device = channel->device_obj; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1196 | |
| 1197 | stor_device = get_in_stor_device(device); |
| 1198 | if (!stor_device) |
| 1199 | return; |
| 1200 | |
| 1201 | do { |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 1202 | ret = vmbus_recvpacket(channel, packet, |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1203 | ALIGN((sizeof(struct vstor_packet) - |
| 1204 | vmscsi_size_delta), 8), |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1205 | &bytes_recvd, &request_id); |
| 1206 | if (ret == 0 && bytes_recvd > 0) { |
| 1207 | |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1208 | request = (struct storvsc_cmd_request *) |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1209 | (unsigned long)request_id; |
| 1210 | |
| 1211 | if ((request == &stor_device->init_request) || |
| 1212 | (request == &stor_device->reset_request)) { |
| 1213 | |
| 1214 | memcpy(&request->vstor_packet, packet, |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1215 | (sizeof(struct vstor_packet) - |
| 1216 | vmscsi_size_delta)); |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1217 | complete(&request->wait_event); |
| 1218 | } else { |
| 1219 | storvsc_on_receive(device, |
| 1220 | (struct vstor_packet *)packet, |
| 1221 | request); |
| 1222 | } |
| 1223 | } else { |
| 1224 | break; |
| 1225 | } |
| 1226 | } while (1); |
| 1227 | |
| 1228 | return; |
| 1229 | } |
| 1230 | |
| 1231 | static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size) |
| 1232 | { |
| 1233 | struct vmstorage_channel_properties props; |
| 1234 | int ret; |
| 1235 | |
| 1236 | memset(&props, 0, sizeof(struct vmstorage_channel_properties)); |
| 1237 | |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1238 | ret = vmbus_open(device->channel, |
| 1239 | ring_size, |
| 1240 | ring_size, |
| 1241 | (void *)&props, |
| 1242 | sizeof(struct vmstorage_channel_properties), |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 1243 | storvsc_on_channel_callback, device->channel); |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1244 | |
| 1245 | if (ret != 0) |
| 1246 | return ret; |
| 1247 | |
| 1248 | ret = storvsc_channel_init(device); |
| 1249 | |
| 1250 | return ret; |
| 1251 | } |
| 1252 | |
K. Y. Srinivasan | c1b3d06 | 2011-08-27 11:31:25 -0700 | [diff] [blame] | 1253 | static int storvsc_dev_remove(struct hv_device *device) |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1254 | { |
| 1255 | struct storvsc_device *stor_device; |
| 1256 | unsigned long flags; |
| 1257 | |
K. Y. Srinivasan | cd654ea | 2011-09-13 10:59:48 -0700 | [diff] [blame] | 1258 | stor_device = hv_get_drvdata(device); |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1259 | |
| 1260 | spin_lock_irqsave(&device->channel->inbound_lock, flags); |
| 1261 | stor_device->destroy = true; |
| 1262 | spin_unlock_irqrestore(&device->channel->inbound_lock, flags); |
| 1263 | |
| 1264 | /* |
| 1265 | * At this point, all outbound traffic should be disable. We |
| 1266 | * only allow inbound traffic (responses) to proceed so that |
| 1267 | * outstanding requests can be completed. |
| 1268 | */ |
| 1269 | |
| 1270 | storvsc_wait_to_drain(stor_device); |
| 1271 | |
| 1272 | /* |
| 1273 | * Since we have already drained, we don't need to busy wait |
| 1274 | * as was done in final_release_stor_device() |
| 1275 | * Note that we cannot set the ext pointer to NULL until |
| 1276 | * we have drained - to drain the outgoing packets, we need to |
| 1277 | * allow incoming packets. |
| 1278 | */ |
| 1279 | spin_lock_irqsave(&device->channel->inbound_lock, flags); |
K. Y. Srinivasan | cd654ea | 2011-09-13 10:59:48 -0700 | [diff] [blame] | 1280 | hv_set_drvdata(device, NULL); |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1281 | spin_unlock_irqrestore(&device->channel->inbound_lock, flags); |
| 1282 | |
| 1283 | /* Close the channel */ |
| 1284 | vmbus_close(device->channel); |
| 1285 | |
| 1286 | kfree(stor_device); |
| 1287 | return 0; |
| 1288 | } |
| 1289 | |
K. Y. Srinivasan | c1b3d06 | 2011-08-27 11:31:25 -0700 | [diff] [blame] | 1290 | static int storvsc_do_io(struct hv_device *device, |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1291 | struct storvsc_cmd_request *request) |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1292 | { |
| 1293 | struct storvsc_device *stor_device; |
| 1294 | struct vstor_packet *vstor_packet; |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 1295 | struct vmbus_channel *outgoing_channel; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1296 | int ret = 0; |
| 1297 | |
| 1298 | vstor_packet = &request->vstor_packet; |
| 1299 | stor_device = get_out_stor_device(device); |
| 1300 | |
| 1301 | if (!stor_device) |
| 1302 | return -ENODEV; |
| 1303 | |
| 1304 | |
| 1305 | request->device = device; |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 1306 | /* |
| 1307 | * Select an an appropriate channel to send the request out. |
| 1308 | */ |
| 1309 | |
| 1310 | outgoing_channel = vmbus_get_outgoing_channel(device->channel); |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1311 | |
| 1312 | |
| 1313 | vstor_packet->flags |= REQUEST_COMPLETION_FLAG; |
| 1314 | |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1315 | vstor_packet->vm_srb.length = (sizeof(struct vmscsi_request) - |
| 1316 | vmscsi_size_delta); |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1317 | |
| 1318 | |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1319 | vstor_packet->vm_srb.sense_info_length = sense_buffer_size; |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1320 | |
| 1321 | |
| 1322 | vstor_packet->vm_srb.data_transfer_length = |
| 1323 | request->data_buffer.len; |
| 1324 | |
| 1325 | vstor_packet->operation = VSTOR_OPERATION_EXECUTE_SRB; |
| 1326 | |
| 1327 | if (request->data_buffer.len) { |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 1328 | ret = vmbus_sendpacket_multipagebuffer(outgoing_channel, |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1329 | &request->data_buffer, |
| 1330 | vstor_packet, |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1331 | (sizeof(struct vstor_packet) - |
| 1332 | vmscsi_size_delta), |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1333 | (unsigned long)request); |
| 1334 | } else { |
| 1335 | ret = vmbus_sendpacket(device->channel, vstor_packet, |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1336 | (sizeof(struct vstor_packet) - |
| 1337 | vmscsi_size_delta), |
K. Y. Srinivasan | 8dcf37d | 2011-08-27 11:31:22 -0700 | [diff] [blame] | 1338 | (unsigned long)request, |
| 1339 | VM_PKT_DATA_INBAND, |
| 1340 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); |
| 1341 | } |
| 1342 | |
| 1343 | if (ret != 0) |
| 1344 | return ret; |
| 1345 | |
| 1346 | atomic_inc(&stor_device->num_outstanding_req); |
| 1347 | |
| 1348 | return ret; |
| 1349 | } |
| 1350 | |
K. Y. Srinivasan | 419f2d0 | 2011-05-10 07:54:27 -0700 | [diff] [blame] | 1351 | static int storvsc_device_configure(struct scsi_device *sdevice) |
| 1352 | { |
Christoph Hellwig | db5ed4d | 2014-11-13 15:08:42 +0100 | [diff] [blame] | 1353 | scsi_change_queue_depth(sdevice, STORVSC_MAX_IO_REQUESTS); |
K. Y. Srinivasan | 419f2d0 | 2011-05-10 07:54:27 -0700 | [diff] [blame] | 1354 | |
K. Y. Srinivasan | 419f2d0 | 2011-05-10 07:54:27 -0700 | [diff] [blame] | 1355 | blk_queue_max_segment_size(sdevice->request_queue, PAGE_SIZE); |
| 1356 | |
K. Y. Srinivasan | 419f2d0 | 2011-05-10 07:54:27 -0700 | [diff] [blame] | 1357 | blk_queue_bounce_limit(sdevice->request_queue, BLK_BOUNCE_ANY); |
K. Y. Srinivasan | 419f2d0 | 2011-05-10 07:54:27 -0700 | [diff] [blame] | 1358 | |
K. Y. Srinivasan | 893def3 | 2013-06-04 12:05:05 -0700 | [diff] [blame] | 1359 | blk_queue_rq_timeout(sdevice->request_queue, (storvsc_timeout * HZ)); |
| 1360 | |
Olaf Hering | 3e8f4f4 | 2013-02-21 12:04:51 -0800 | [diff] [blame] | 1361 | sdevice->no_write_same = 1; |
| 1362 | |
K. Y. Srinivasan | f3cfabc | 2014-07-21 16:06:01 -0700 | [diff] [blame] | 1363 | /* |
| 1364 | * Add blist flags to permit the reading of the VPD pages even when |
| 1365 | * the target may claim SPC-2 compliance. MSFT targets currently |
| 1366 | * claim SPC-2 compliance while they implement post SPC-2 features. |
| 1367 | * With this patch we can correctly handle WRITE_SAME_16 issues. |
| 1368 | */ |
| 1369 | sdevice->sdev_bflags |= msft_blist_flags; |
| 1370 | |
K. Y. Srinivasan | 419f2d0 | 2011-05-10 07:54:27 -0700 | [diff] [blame] | 1371 | return 0; |
| 1372 | } |
| 1373 | |
K. Y. Srinivasan | 62838ce | 2011-05-10 07:54:34 -0700 | [diff] [blame] | 1374 | static int storvsc_get_chs(struct scsi_device *sdev, struct block_device * bdev, |
| 1375 | sector_t capacity, int *info) |
| 1376 | { |
K. Y. Srinivasan | 5326fd5 | 2011-05-10 07:54:52 -0700 | [diff] [blame] | 1377 | sector_t nsect = capacity; |
| 1378 | sector_t cylinders = nsect; |
| 1379 | int heads, sectors_pt; |
K. Y. Srinivasan | 62838ce | 2011-05-10 07:54:34 -0700 | [diff] [blame] | 1380 | |
K. Y. Srinivasan | 5326fd5 | 2011-05-10 07:54:52 -0700 | [diff] [blame] | 1381 | /* |
| 1382 | * We are making up these values; let us keep it simple. |
| 1383 | */ |
| 1384 | heads = 0xff; |
| 1385 | sectors_pt = 0x3f; /* Sectors per track */ |
| 1386 | sector_div(cylinders, heads * sectors_pt); |
| 1387 | if ((sector_t)(cylinders + 1) * heads * sectors_pt < nsect) |
| 1388 | cylinders = 0xffff; |
K. Y. Srinivasan | 62838ce | 2011-05-10 07:54:34 -0700 | [diff] [blame] | 1389 | |
| 1390 | info[0] = heads; |
K. Y. Srinivasan | 5326fd5 | 2011-05-10 07:54:52 -0700 | [diff] [blame] | 1391 | info[1] = sectors_pt; |
| 1392 | info[2] = (int)cylinders; |
K. Y. Srinivasan | 62838ce | 2011-05-10 07:54:34 -0700 | [diff] [blame] | 1393 | |
K. Y. Srinivasan | 62838ce | 2011-05-10 07:54:34 -0700 | [diff] [blame] | 1394 | return 0; |
| 1395 | } |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1396 | |
K. Y. Srinivasan | 4b270c8 | 2012-01-12 12:37:58 -0800 | [diff] [blame] | 1397 | static int storvsc_host_reset_handler(struct scsi_cmnd *scmnd) |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1398 | { |
K. Y. Srinivasan | 4b270c8 | 2012-01-12 12:37:58 -0800 | [diff] [blame] | 1399 | struct hv_host_device *host_dev = shost_priv(scmnd->device->host); |
| 1400 | struct hv_device *device = host_dev->dev; |
| 1401 | |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1402 | struct storvsc_device *stor_device; |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1403 | struct storvsc_cmd_request *request; |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1404 | struct vstor_packet *vstor_packet; |
| 1405 | int ret, t; |
| 1406 | |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1407 | |
K. Y. Srinivasan | 1eaaddf | 2011-08-27 11:31:03 -0700 | [diff] [blame] | 1408 | stor_device = get_out_stor_device(device); |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1409 | if (!stor_device) |
K. Y. Srinivasan | a00e822 | 2011-11-08 09:01:43 -0800 | [diff] [blame] | 1410 | return FAILED; |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1411 | |
| 1412 | request = &stor_device->reset_request; |
| 1413 | vstor_packet = &request->vstor_packet; |
| 1414 | |
| 1415 | init_completion(&request->wait_event); |
| 1416 | |
| 1417 | vstor_packet->operation = VSTOR_OPERATION_RESET_BUS; |
| 1418 | vstor_packet->flags = REQUEST_COMPLETION_FLAG; |
| 1419 | vstor_packet->vm_srb.path_id = stor_device->path_id; |
| 1420 | |
| 1421 | ret = vmbus_sendpacket(device->channel, vstor_packet, |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1422 | (sizeof(struct vstor_packet) - |
| 1423 | vmscsi_size_delta), |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1424 | (unsigned long)&stor_device->reset_request, |
| 1425 | VM_PKT_DATA_INBAND, |
| 1426 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); |
| 1427 | if (ret != 0) |
K. Y. Srinivasan | a00e822 | 2011-11-08 09:01:43 -0800 | [diff] [blame] | 1428 | return FAILED; |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1429 | |
K. Y. Srinivasan | 46d2eb6 | 2011-06-16 13:16:36 -0700 | [diff] [blame] | 1430 | t = wait_for_completion_timeout(&request->wait_event, 5*HZ); |
K. Y. Srinivasan | a00e822 | 2011-11-08 09:01:43 -0800 | [diff] [blame] | 1431 | if (t == 0) |
| 1432 | return TIMEOUT_ERROR; |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1433 | |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1434 | |
| 1435 | /* |
| 1436 | * At this point, all outstanding requests in the adapter |
| 1437 | * should have been flushed out and return to us |
K. Y. Srinivasan | 5c1b10a | 2012-10-02 11:03:31 -0700 | [diff] [blame] | 1438 | * There is a potential race here where the host may be in |
| 1439 | * the process of responding when we return from here. |
| 1440 | * Just wait for all in-transit packets to be accounted for |
| 1441 | * before we return from here. |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1442 | */ |
K. Y. Srinivasan | 5c1b10a | 2012-10-02 11:03:31 -0700 | [diff] [blame] | 1443 | storvsc_wait_to_drain(stor_device); |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1444 | |
K. Y. Srinivasan | a00e822 | 2011-11-08 09:01:43 -0800 | [diff] [blame] | 1445 | return SUCCESS; |
K. Y. Srinivasan | aa3d789 | 2011-05-10 07:54:37 -0700 | [diff] [blame] | 1446 | } |
| 1447 | |
K. Y. Srinivasan | 56b26e6 | 2014-07-12 09:48:30 -0700 | [diff] [blame] | 1448 | /* |
| 1449 | * The host guarantees to respond to each command, although I/O latencies might |
| 1450 | * be unbounded on Azure. Reset the timer unconditionally to give the host a |
| 1451 | * chance to perform EH. |
| 1452 | */ |
| 1453 | static enum blk_eh_timer_return storvsc_eh_timed_out(struct scsi_cmnd *scmnd) |
| 1454 | { |
| 1455 | return BLK_EH_RESET_TIMER; |
| 1456 | } |
| 1457 | |
K. Y. Srinivasan | c77b63b | 2012-01-12 12:37:56 -0800 | [diff] [blame] | 1458 | static bool storvsc_scsi_cmd_ok(struct scsi_cmnd *scmnd) |
Olaf Hering | 92ae4eb | 2011-10-10 09:37:39 +0200 | [diff] [blame] | 1459 | { |
| 1460 | bool allowed = true; |
| 1461 | u8 scsi_op = scmnd->cmnd[0]; |
| 1462 | |
| 1463 | switch (scsi_op) { |
Olaf Hering | 3e8f4f4 | 2013-02-21 12:04:51 -0800 | [diff] [blame] | 1464 | /* the host does not handle WRITE_SAME, log accident usage */ |
| 1465 | case WRITE_SAME: |
K. Y. Srinivasan | c77b63b | 2012-01-12 12:37:56 -0800 | [diff] [blame] | 1466 | /* |
| 1467 | * smartd sends this command and the host does not handle |
| 1468 | * this. So, don't send it. |
| 1469 | */ |
K. Y. Srinivasan | 41098f8 | 2011-10-14 21:31:57 -0700 | [diff] [blame] | 1470 | case SET_WINDOW: |
K. Y. Srinivasan | 59e00e7 | 2011-11-08 09:01:42 -0800 | [diff] [blame] | 1471 | scmnd->result = ILLEGAL_REQUEST << 16; |
K. Y. Srinivasan | 41098f8 | 2011-10-14 21:31:57 -0700 | [diff] [blame] | 1472 | allowed = false; |
| 1473 | break; |
| 1474 | default: |
| 1475 | break; |
Olaf Hering | 92ae4eb | 2011-10-10 09:37:39 +0200 | [diff] [blame] | 1476 | } |
| 1477 | return allowed; |
| 1478 | } |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1479 | |
K. Y. Srinivasan | bab445e | 2011-11-08 09:01:45 -0800 | [diff] [blame] | 1480 | static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd) |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1481 | { |
| 1482 | int ret; |
K. Y. Srinivasan | bab445e | 2011-11-08 09:01:45 -0800 | [diff] [blame] | 1483 | struct hv_host_device *host_dev = shost_priv(host); |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1484 | struct hv_device *dev = host_dev->dev; |
Christoph Hellwig | ead3700 | 2014-12-29 20:05:09 -0800 | [diff] [blame] | 1485 | struct storvsc_cmd_request *cmd_request = scsi_cmd_priv(scmnd); |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1486 | int i; |
| 1487 | struct scatterlist *sgl; |
| 1488 | unsigned int sg_count = 0; |
| 1489 | struct vmscsi_request *vm_srb; |
| 1490 | |
K. Y. Srinivasan | 8caf92d | 2014-07-12 09:48:28 -0700 | [diff] [blame] | 1491 | if (vmstor_current_major <= VMSTOR_WIN8_MAJOR) { |
| 1492 | /* |
| 1493 | * On legacy hosts filter unimplemented commands. |
| 1494 | * Future hosts are expected to correctly handle |
| 1495 | * unsupported commands. Furthermore, it is |
| 1496 | * possible that some of the currently |
| 1497 | * unsupported commands maybe supported in |
| 1498 | * future versions of the host. |
| 1499 | */ |
| 1500 | if (!storvsc_scsi_cmd_ok(scmnd)) { |
| 1501 | scmnd->scsi_done(scmnd); |
| 1502 | return 0; |
| 1503 | } |
Olaf Hering | 92ae4eb | 2011-10-10 09:37:39 +0200 | [diff] [blame] | 1504 | } |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1505 | |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1506 | /* Setup the cmd request */ |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1507 | cmd_request->cmd = scmnd; |
| 1508 | |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1509 | vm_srb = &cmd_request->vstor_packet.vm_srb; |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1510 | vm_srb->win8_extension.time_out_value = 60; |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1511 | |
K. Y. Srinivasan | f885fb7 | 2014-07-12 09:48:31 -0700 | [diff] [blame] | 1512 | vm_srb->win8_extension.srb_flags |= |
| 1513 | (SRB_FLAGS_QUEUE_ACTION_ENABLE | |
| 1514 | SRB_FLAGS_DISABLE_SYNCH_TRANSFER); |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1515 | |
| 1516 | /* Build the SRB */ |
| 1517 | switch (scmnd->sc_data_direction) { |
| 1518 | case DMA_TO_DEVICE: |
| 1519 | vm_srb->data_in = WRITE_TYPE; |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1520 | vm_srb->win8_extension.srb_flags |= SRB_FLAGS_DATA_OUT; |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1521 | break; |
| 1522 | case DMA_FROM_DEVICE: |
| 1523 | vm_srb->data_in = READ_TYPE; |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1524 | vm_srb->win8_extension.srb_flags |= SRB_FLAGS_DATA_IN; |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1525 | break; |
| 1526 | default: |
| 1527 | vm_srb->data_in = UNKNOWN_TYPE; |
K. Y. Srinivasan | f885fb7 | 2014-07-12 09:48:31 -0700 | [diff] [blame] | 1528 | vm_srb->win8_extension.srb_flags |= (SRB_FLAGS_DATA_IN | |
| 1529 | SRB_FLAGS_DATA_OUT); |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1530 | break; |
| 1531 | } |
| 1532 | |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1533 | |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1534 | vm_srb->port_number = host_dev->port; |
| 1535 | vm_srb->path_id = scmnd->device->channel; |
| 1536 | vm_srb->target_id = scmnd->device->id; |
| 1537 | vm_srb->lun = scmnd->device->lun; |
| 1538 | |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1539 | vm_srb->cdb_length = scmnd->cmd_len; |
| 1540 | |
| 1541 | memcpy(vm_srb->cdb, scmnd->cmnd, vm_srb->cdb_length); |
| 1542 | |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1543 | cmd_request->data_buffer.len = scsi_bufflen(scmnd); |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1544 | if (scsi_sg_count(scmnd)) { |
| 1545 | sgl = (struct scatterlist *)scsi_sglist(scmnd); |
| 1546 | sg_count = scsi_sg_count(scmnd); |
| 1547 | |
| 1548 | /* check if we need to bounce the sgl */ |
| 1549 | if (do_bounce_buffer(sgl, scsi_sg_count(scmnd)) != -1) { |
| 1550 | cmd_request->bounce_sgl = |
| 1551 | create_bounce_buffer(sgl, scsi_sg_count(scmnd), |
K. Y. Srinivasan | 6e8087a | 2011-12-07 07:15:52 -0800 | [diff] [blame] | 1552 | scsi_bufflen(scmnd), |
| 1553 | vm_srb->data_in); |
Christoph Hellwig | ead3700 | 2014-12-29 20:05:09 -0800 | [diff] [blame] | 1554 | if (!cmd_request->bounce_sgl) |
| 1555 | return SCSI_MLQUEUE_HOST_BUSY; |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1556 | |
| 1557 | cmd_request->bounce_sgl_count = |
| 1558 | ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >> |
| 1559 | PAGE_SHIFT; |
| 1560 | |
K. Y. Srinivasan | fa23b8c | 2011-08-27 11:31:21 -0700 | [diff] [blame] | 1561 | if (vm_srb->data_in == WRITE_TYPE) |
| 1562 | copy_to_bounce_buffer(sgl, |
| 1563 | cmd_request->bounce_sgl, |
| 1564 | scsi_sg_count(scmnd)); |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1565 | |
| 1566 | sgl = cmd_request->bounce_sgl; |
| 1567 | sg_count = cmd_request->bounce_sgl_count; |
| 1568 | } |
| 1569 | |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1570 | cmd_request->data_buffer.offset = sgl[0].offset; |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1571 | |
| 1572 | for (i = 0; i < sg_count; i++) |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1573 | cmd_request->data_buffer.pfn_array[i] = |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1574 | page_to_pfn(sg_page((&sgl[i]))); |
| 1575 | |
| 1576 | } else if (scsi_sglist(scmnd)) { |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1577 | cmd_request->data_buffer.offset = |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1578 | virt_to_phys(scsi_sglist(scmnd)) & (PAGE_SIZE-1); |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1579 | cmd_request->data_buffer.pfn_array[0] = |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1580 | virt_to_phys(scsi_sglist(scmnd)) >> PAGE_SHIFT; |
| 1581 | } |
| 1582 | |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1583 | /* Invokes the vsc to start an IO */ |
K. Y. Srinivasan | 61eaffc | 2012-01-12 12:38:07 -0800 | [diff] [blame] | 1584 | ret = storvsc_do_io(dev, cmd_request); |
K. Y. Srinivasan | 636f0fd | 2011-05-10 07:54:50 -0700 | [diff] [blame] | 1585 | |
K. Y. Srinivasan | d2598f0 | 2011-08-25 09:48:58 -0700 | [diff] [blame] | 1586 | if (ret == -EAGAIN) { |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1587 | /* no more space */ |
| 1588 | |
Long Li | e86fb5e | 2014-12-05 19:38:18 -0800 | [diff] [blame] | 1589 | if (cmd_request->bounce_sgl_count) |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1590 | destroy_bounce_buffer(cmd_request->bounce_sgl, |
K. Y. Srinivasan | 70691ec | 2011-08-27 11:31:29 -0700 | [diff] [blame] | 1591 | cmd_request->bounce_sgl_count); |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1592 | |
Christoph Hellwig | ead3700 | 2014-12-29 20:05:09 -0800 | [diff] [blame] | 1593 | return SCSI_MLQUEUE_DEVICE_BUSY; |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1594 | } |
| 1595 | |
K. Y. Srinivasan | c77b63b | 2012-01-12 12:37:56 -0800 | [diff] [blame] | 1596 | return 0; |
K. Y. Srinivasan | c5b463a | 2011-05-10 07:54:42 -0700 | [diff] [blame] | 1597 | } |
| 1598 | |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 1599 | static struct scsi_host_template scsi_driver = { |
Greg Kroah-Hartman | ff568d3 | 2009-09-02 08:37:47 -0700 | [diff] [blame] | 1600 | .module = THIS_MODULE, |
| 1601 | .name = "storvsc_host_t", |
Christoph Hellwig | ead3700 | 2014-12-29 20:05:09 -0800 | [diff] [blame] | 1602 | .cmd_size = sizeof(struct storvsc_cmd_request), |
Greg Kroah-Hartman | ff568d3 | 2009-09-02 08:37:47 -0700 | [diff] [blame] | 1603 | .bios_param = storvsc_get_chs, |
| 1604 | .queuecommand = storvsc_queuecommand, |
| 1605 | .eh_host_reset_handler = storvsc_host_reset_handler, |
Christoph Hellwig | ead3700 | 2014-12-29 20:05:09 -0800 | [diff] [blame] | 1606 | .proc_name = "storvsc_host", |
K. Y. Srinivasan | 56b26e6 | 2014-07-12 09:48:30 -0700 | [diff] [blame] | 1607 | .eh_timed_out = storvsc_eh_timed_out, |
Greg Kroah-Hartman | ff568d3 | 2009-09-02 08:37:47 -0700 | [diff] [blame] | 1608 | .slave_configure = storvsc_device_configure, |
K. Y. Srinivasan | 52f9614 | 2014-07-12 09:48:27 -0700 | [diff] [blame] | 1609 | .cmd_per_lun = 255, |
Lars Lindley | 0686e4f | 2010-03-11 23:51:23 +0100 | [diff] [blame] | 1610 | .can_queue = STORVSC_MAX_IO_REQUESTS*STORVSC_MAX_TARGETS, |
Greg Kroah-Hartman | ff568d3 | 2009-09-02 08:37:47 -0700 | [diff] [blame] | 1611 | .this_id = -1, |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 1612 | /* no use setting to 0 since ll_blk_rw reset it to 1 */ |
Greg Kroah-Hartman | ff568d3 | 2009-09-02 08:37:47 -0700 | [diff] [blame] | 1613 | /* currently 32 */ |
| 1614 | .sg_tablesize = MAX_MULTIPAGE_BUFFER_COUNT, |
K. Y. Srinivasan | 039db52 | 2011-12-01 04:59:16 -0800 | [diff] [blame] | 1615 | .use_clustering = DISABLE_CLUSTERING, |
Bill Pemberton | 454f18a | 2009-07-27 16:47:24 -0400 | [diff] [blame] | 1616 | /* Make sure we dont get a sg segment crosses a page boundary */ |
Greg Kroah-Hartman | ff568d3 | 2009-09-02 08:37:47 -0700 | [diff] [blame] | 1617 | .dma_boundary = PAGE_SIZE-1, |
Martin K. Petersen | 54b2b50 | 2013-10-23 06:25:40 -0400 | [diff] [blame] | 1618 | .no_write_same = 1, |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 1619 | }; |
| 1620 | |
K. Y. Srinivasan | ef52a81 | 2011-09-13 10:59:39 -0700 | [diff] [blame] | 1621 | enum { |
| 1622 | SCSI_GUID, |
| 1623 | IDE_GUID, |
K. Y. Srinivasan | bde6d0f | 2013-06-04 12:05:08 -0700 | [diff] [blame] | 1624 | SFC_GUID, |
K. Y. Srinivasan | ef52a81 | 2011-09-13 10:59:39 -0700 | [diff] [blame] | 1625 | }; |
| 1626 | |
K. Y. Srinivasan | d847b5f | 2011-08-25 09:48:33 -0700 | [diff] [blame] | 1627 | static const struct hv_vmbus_device_id id_table[] = { |
Greg Kroah-Hartman | c45cf2d | 2011-08-25 11:41:33 -0700 | [diff] [blame] | 1628 | /* SCSI guid */ |
K. Y. Srinivasan | 35c3bc2 | 2013-01-23 17:42:43 -0800 | [diff] [blame] | 1629 | { HV_SCSI_GUID, |
| 1630 | .driver_data = SCSI_GUID |
| 1631 | }, |
K. Y. Srinivasan | 21e3774 | 2011-08-27 11:31:18 -0700 | [diff] [blame] | 1632 | /* IDE guid */ |
K. Y. Srinivasan | 35c3bc2 | 2013-01-23 17:42:43 -0800 | [diff] [blame] | 1633 | { HV_IDE_GUID, |
| 1634 | .driver_data = IDE_GUID |
| 1635 | }, |
K. Y. Srinivasan | bde6d0f | 2013-06-04 12:05:08 -0700 | [diff] [blame] | 1636 | /* Fibre Channel GUID */ |
| 1637 | { |
| 1638 | HV_SYNTHFC_GUID, |
| 1639 | .driver_data = SFC_GUID |
| 1640 | }, |
Greg Kroah-Hartman | c45cf2d | 2011-08-25 11:41:33 -0700 | [diff] [blame] | 1641 | { }, |
K. Y. Srinivasan | d847b5f | 2011-08-25 09:48:33 -0700 | [diff] [blame] | 1642 | }; |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 1643 | |
K. Y. Srinivasan | d847b5f | 2011-08-25 09:48:33 -0700 | [diff] [blame] | 1644 | MODULE_DEVICE_TABLE(vmbus, id_table); |
K. Y. Srinivasan | bd1f5d6 | 2011-08-27 11:31:17 -0700 | [diff] [blame] | 1645 | |
K. Y. Srinivasan | 8494689 | 2011-09-13 10:59:38 -0700 | [diff] [blame] | 1646 | static int storvsc_probe(struct hv_device *device, |
| 1647 | const struct hv_vmbus_device_id *dev_id) |
K. Y. Srinivasan | f5c7887 | 2011-05-10 07:54:43 -0700 | [diff] [blame] | 1648 | { |
| 1649 | int ret; |
K. Y. Srinivasan | f5c7887 | 2011-05-10 07:54:43 -0700 | [diff] [blame] | 1650 | struct Scsi_Host *host; |
| 1651 | struct hv_host_device *host_dev; |
K. Y. Srinivasan | ef52a81 | 2011-09-13 10:59:39 -0700 | [diff] [blame] | 1652 | bool dev_is_ide = ((dev_id->driver_data == IDE_GUID) ? true : false); |
K. Y. Srinivasan | bd1f5d6 | 2011-08-27 11:31:17 -0700 | [diff] [blame] | 1653 | int target = 0; |
K. Y. Srinivasan | 6e4198c | 2011-09-13 10:59:45 -0700 | [diff] [blame] | 1654 | struct storvsc_device *stor_device; |
K. Y. Srinivasan | bd1f5d6 | 2011-08-27 11:31:17 -0700 | [diff] [blame] | 1655 | |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1656 | /* |
| 1657 | * Based on the windows host we are running on, |
| 1658 | * set state to properly communicate with the host. |
| 1659 | */ |
| 1660 | |
K. Y. Srinivasan | adb6f9e | 2014-07-12 09:48:29 -0700 | [diff] [blame] | 1661 | switch (vmbus_proto_version) { |
| 1662 | case VERSION_WS2008: |
| 1663 | case VERSION_WIN7: |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1664 | sense_buffer_size = PRE_WIN8_STORVSC_SENSE_BUFFER_SIZE; |
| 1665 | vmscsi_size_delta = sizeof(struct vmscsi_win8_extension); |
| 1666 | vmstor_current_major = VMSTOR_WIN7_MAJOR; |
| 1667 | vmstor_current_minor = VMSTOR_WIN7_MINOR; |
K. Y. Srinivasan | adb6f9e | 2014-07-12 09:48:29 -0700 | [diff] [blame] | 1668 | break; |
| 1669 | default: |
| 1670 | sense_buffer_size = POST_WIN7_STORVSC_SENSE_BUFFER_SIZE; |
| 1671 | vmscsi_size_delta = 0; |
| 1672 | vmstor_current_major = VMSTOR_WIN8_MAJOR; |
| 1673 | vmstor_current_minor = VMSTOR_WIN8_MINOR; |
| 1674 | break; |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1675 | } |
| 1676 | |
K. Y. Srinivasan | 4cd83ec | 2014-07-12 09:48:26 -0700 | [diff] [blame] | 1677 | if (dev_id->driver_data == SFC_GUID) |
| 1678 | scsi_driver.can_queue = (STORVSC_MAX_IO_REQUESTS * |
| 1679 | STORVSC_FC_MAX_TARGETS); |
K. Y. Srinivasan | f5c7887 | 2011-05-10 07:54:43 -0700 | [diff] [blame] | 1680 | host = scsi_host_alloc(&scsi_driver, |
| 1681 | sizeof(struct hv_host_device)); |
| 1682 | if (!host) |
| 1683 | return -ENOMEM; |
| 1684 | |
K. Y. Srinivasan | 7f33f30 | 2011-11-08 09:01:44 -0800 | [diff] [blame] | 1685 | host_dev = shost_priv(host); |
K. Y. Srinivasan | f5c7887 | 2011-05-10 07:54:43 -0700 | [diff] [blame] | 1686 | memset(host_dev, 0, sizeof(struct hv_host_device)); |
| 1687 | |
| 1688 | host_dev->port = host->host_no; |
| 1689 | host_dev->dev = device; |
| 1690 | |
K. Y. Srinivasan | 4e03e69 | 2011-11-08 09:01:40 -0800 | [diff] [blame] | 1691 | |
K. Y. Srinivasan | a13d35a | 2011-09-13 10:59:46 -0700 | [diff] [blame] | 1692 | stor_device = kzalloc(sizeof(struct storvsc_device), GFP_KERNEL); |
K. Y. Srinivasan | 6e4198c | 2011-09-13 10:59:45 -0700 | [diff] [blame] | 1693 | if (!stor_device) { |
K. Y. Srinivasan | 225ce6e | 2011-11-08 09:01:41 -0800 | [diff] [blame] | 1694 | ret = -ENOMEM; |
K. Y. Srinivasan | ce3e301 | 2011-12-01 04:59:20 -0800 | [diff] [blame] | 1695 | goto err_out0; |
K. Y. Srinivasan | 6e4198c | 2011-09-13 10:59:45 -0700 | [diff] [blame] | 1696 | } |
| 1697 | |
K. Y. Srinivasan | a13d35a | 2011-09-13 10:59:46 -0700 | [diff] [blame] | 1698 | stor_device->destroy = false; |
K. Y. Srinivasan | 6f94d5d | 2013-06-04 12:05:07 -0700 | [diff] [blame] | 1699 | stor_device->open_sub_channel = false; |
K. Y. Srinivasan | a13d35a | 2011-09-13 10:59:46 -0700 | [diff] [blame] | 1700 | init_waitqueue_head(&stor_device->waiting_to_drain); |
| 1701 | stor_device->device = device; |
K. Y. Srinivasan | cd654ea | 2011-09-13 10:59:48 -0700 | [diff] [blame] | 1702 | stor_device->host = host; |
| 1703 | hv_set_drvdata(device, stor_device); |
K. Y. Srinivasan | a13d35a | 2011-09-13 10:59:46 -0700 | [diff] [blame] | 1704 | |
K. Y. Srinivasan | 6e4198c | 2011-09-13 10:59:45 -0700 | [diff] [blame] | 1705 | stor_device->port_number = host->host_no; |
| 1706 | ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size); |
K. Y. Srinivasan | 225ce6e | 2011-11-08 09:01:41 -0800 | [diff] [blame] | 1707 | if (ret) |
K. Y. Srinivasan | ce3e301 | 2011-12-01 04:59:20 -0800 | [diff] [blame] | 1708 | goto err_out1; |
K. Y. Srinivasan | f5c7887 | 2011-05-10 07:54:43 -0700 | [diff] [blame] | 1709 | |
K. Y. Srinivasan | 6e4198c | 2011-09-13 10:59:45 -0700 | [diff] [blame] | 1710 | host_dev->path = stor_device->path_id; |
| 1711 | host_dev->target = stor_device->target_id; |
K. Y. Srinivasan | f5c7887 | 2011-05-10 07:54:43 -0700 | [diff] [blame] | 1712 | |
K. Y. Srinivasan | 4cd83ec | 2014-07-12 09:48:26 -0700 | [diff] [blame] | 1713 | switch (dev_id->driver_data) { |
| 1714 | case SFC_GUID: |
| 1715 | host->max_lun = STORVSC_FC_MAX_LUNS_PER_TARGET; |
| 1716 | host->max_id = STORVSC_FC_MAX_TARGETS; |
| 1717 | host->max_channel = STORVSC_FC_MAX_CHANNELS - 1; |
| 1718 | break; |
| 1719 | |
| 1720 | case SCSI_GUID: |
| 1721 | host->max_lun = STORVSC_MAX_LUNS_PER_TARGET; |
| 1722 | host->max_id = STORVSC_MAX_TARGETS; |
| 1723 | host->max_channel = STORVSC_MAX_CHANNELS - 1; |
| 1724 | break; |
| 1725 | |
| 1726 | default: |
| 1727 | host->max_lun = STORVSC_IDE_MAX_LUNS_PER_TARGET; |
| 1728 | host->max_id = STORVSC_IDE_MAX_TARGETS; |
| 1729 | host->max_channel = STORVSC_IDE_MAX_CHANNELS - 1; |
| 1730 | break; |
| 1731 | } |
Mike Sterling | cf55f4a | 2011-09-06 16:10:55 -0700 | [diff] [blame] | 1732 | /* max cmd length */ |
| 1733 | host->max_cmd_len = STORVSC_MAX_CMD_LEN; |
K. Y. Srinivasan | f5c7887 | 2011-05-10 07:54:43 -0700 | [diff] [blame] | 1734 | |
| 1735 | /* Register the HBA and start the scsi bus scan */ |
| 1736 | ret = scsi_add_host(host, &device->device); |
K. Y. Srinivasan | bd1f5d6 | 2011-08-27 11:31:17 -0700 | [diff] [blame] | 1737 | if (ret != 0) |
K. Y. Srinivasan | ce3e301 | 2011-12-01 04:59:20 -0800 | [diff] [blame] | 1738 | goto err_out2; |
K. Y. Srinivasan | f5c7887 | 2011-05-10 07:54:43 -0700 | [diff] [blame] | 1739 | |
K. Y. Srinivasan | bd1f5d6 | 2011-08-27 11:31:17 -0700 | [diff] [blame] | 1740 | if (!dev_is_ide) { |
| 1741 | scsi_scan_host(host); |
K. Y. Srinivasan | 59d2295 | 2012-01-12 12:37:55 -0800 | [diff] [blame] | 1742 | } else { |
| 1743 | target = (device->dev_instance.b[5] << 8 | |
| 1744 | device->dev_instance.b[4]); |
| 1745 | ret = scsi_add_device(host, 0, target, 0); |
| 1746 | if (ret) { |
| 1747 | scsi_remove_host(host); |
| 1748 | goto err_out2; |
| 1749 | } |
K. Y. Srinivasan | bd1f5d6 | 2011-08-27 11:31:17 -0700 | [diff] [blame] | 1750 | } |
| 1751 | return 0; |
K. Y. Srinivasan | f5c7887 | 2011-05-10 07:54:43 -0700 | [diff] [blame] | 1752 | |
K. Y. Srinivasan | ce3e301 | 2011-12-01 04:59:20 -0800 | [diff] [blame] | 1753 | err_out2: |
K. Y. Srinivasan | 225ce6e | 2011-11-08 09:01:41 -0800 | [diff] [blame] | 1754 | /* |
| 1755 | * Once we have connected with the host, we would need to |
| 1756 | * to invoke storvsc_dev_remove() to rollback this state and |
| 1757 | * this call also frees up the stor_device; hence the jump around |
K. Y. Srinivasan | ce3e301 | 2011-12-01 04:59:20 -0800 | [diff] [blame] | 1758 | * err_out1 label. |
K. Y. Srinivasan | 225ce6e | 2011-11-08 09:01:41 -0800 | [diff] [blame] | 1759 | */ |
K. Y. Srinivasan | bd1f5d6 | 2011-08-27 11:31:17 -0700 | [diff] [blame] | 1760 | storvsc_dev_remove(device); |
K. Y. Srinivasan | ce3e301 | 2011-12-01 04:59:20 -0800 | [diff] [blame] | 1761 | goto err_out0; |
K. Y. Srinivasan | 225ce6e | 2011-11-08 09:01:41 -0800 | [diff] [blame] | 1762 | |
| 1763 | err_out1: |
K. Y. Srinivasan | ce3e301 | 2011-12-01 04:59:20 -0800 | [diff] [blame] | 1764 | kfree(stor_device); |
K. Y. Srinivasan | 225ce6e | 2011-11-08 09:01:41 -0800 | [diff] [blame] | 1765 | |
| 1766 | err_out0: |
K. Y. Srinivasan | bd1f5d6 | 2011-08-27 11:31:17 -0700 | [diff] [blame] | 1767 | scsi_host_put(host); |
K. Y. Srinivasan | 225ce6e | 2011-11-08 09:01:41 -0800 | [diff] [blame] | 1768 | return ret; |
K. Y. Srinivasan | f5c7887 | 2011-05-10 07:54:43 -0700 | [diff] [blame] | 1769 | } |
| 1770 | |
K. Y. Srinivasan | ddcbf65 | 2012-01-12 12:37:59 -0800 | [diff] [blame] | 1771 | static int storvsc_remove(struct hv_device *dev) |
| 1772 | { |
| 1773 | struct storvsc_device *stor_device = hv_get_drvdata(dev); |
| 1774 | struct Scsi_Host *host = stor_device->host; |
| 1775 | |
| 1776 | scsi_remove_host(host); |
| 1777 | storvsc_dev_remove(dev); |
| 1778 | scsi_host_put(host); |
| 1779 | |
| 1780 | return 0; |
| 1781 | } |
| 1782 | |
K. Y. Srinivasan | 40bf63e | 2011-05-10 07:56:09 -0700 | [diff] [blame] | 1783 | static struct hv_driver storvsc_drv = { |
K. Y. Srinivasan | fafb0ef | 2011-11-08 09:01:46 -0800 | [diff] [blame] | 1784 | .name = KBUILD_MODNAME, |
K. Y. Srinivasan | d847b5f | 2011-08-25 09:48:33 -0700 | [diff] [blame] | 1785 | .id_table = id_table, |
K. Y. Srinivasan | 40bf63e | 2011-05-10 07:56:09 -0700 | [diff] [blame] | 1786 | .probe = storvsc_probe, |
| 1787 | .remove = storvsc_remove, |
K. Y. Srinivasan | 39ae6fa | 2011-05-10 07:54:46 -0700 | [diff] [blame] | 1788 | }; |
K. Y. Srinivasan | 7bd05b9 | 2011-05-10 07:54:45 -0700 | [diff] [blame] | 1789 | |
K. Y. Srinivasan | d9bbae8 | 2011-06-06 15:49:27 -0700 | [diff] [blame] | 1790 | static int __init storvsc_drv_init(void) |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 1791 | { |
K. Y. Srinivasan | 01415ab3 | 2011-05-10 07:55:58 -0700 | [diff] [blame] | 1792 | u32 max_outstanding_req_per_channel; |
| 1793 | |
| 1794 | /* |
| 1795 | * Divide the ring buffer data size (which is 1 page less |
| 1796 | * than the ring buffer size since that page is reserved for |
| 1797 | * the ring buffer indices) by the max request size (which is |
| 1798 | * vmbus_channel_packet_multipage_buffer + struct vstor_packet + u64) |
| 1799 | */ |
K. Y. Srinivasan | 01415ab3 | 2011-05-10 07:55:58 -0700 | [diff] [blame] | 1800 | max_outstanding_req_per_channel = |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 1801 | ((storvsc_ringbuffer_size - PAGE_SIZE) / |
| 1802 | ALIGN(MAX_MULTIPAGE_BUFFER_PACKET + |
K. Y. Srinivasan | 8b612fa | 2013-06-04 12:05:06 -0700 | [diff] [blame] | 1803 | sizeof(struct vstor_packet) + sizeof(u64) - |
| 1804 | vmscsi_size_delta, |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 1805 | sizeof(u64))); |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 1806 | |
K. Y. Srinivasan | 01415ab3 | 2011-05-10 07:55:58 -0700 | [diff] [blame] | 1807 | if (max_outstanding_req_per_channel < |
K. Y. Srinivasan | f8feed0 | 2011-05-10 07:54:24 -0700 | [diff] [blame] | 1808 | STORVSC_MAX_IO_REQUESTS) |
K. Y. Srinivasan | b06efc1 | 2011-08-25 09:49:10 -0700 | [diff] [blame] | 1809 | return -EINVAL; |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 1810 | |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 1811 | return vmbus_driver_register(&storvsc_drv); |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 1812 | } |
| 1813 | |
K. Y. Srinivasan | c63ba9e | 2011-06-06 15:49:26 -0700 | [diff] [blame] | 1814 | static void __exit storvsc_drv_exit(void) |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 1815 | { |
Greg Kroah-Hartman | 768fa21 | 2011-08-25 15:07:32 -0700 | [diff] [blame] | 1816 | vmbus_driver_unregister(&storvsc_drv); |
Hank Janssen | bef4a34 | 2009-07-13 16:01:31 -0700 | [diff] [blame] | 1817 | } |
| 1818 | |
Greg Kroah-Hartman | ff568d3 | 2009-09-02 08:37:47 -0700 | [diff] [blame] | 1819 | MODULE_LICENSE("GPL"); |
Stephen Hemminger | 3afc7cc3 | 2010-05-06 21:44:45 -0700 | [diff] [blame] | 1820 | MODULE_DESCRIPTION("Microsoft Hyper-V virtual storage driver"); |
K. Y. Srinivasan | d9bbae8 | 2011-06-06 15:49:27 -0700 | [diff] [blame] | 1821 | module_init(storvsc_drv_init); |
K. Y. Srinivasan | c63ba9e | 2011-06-06 15:49:26 -0700 | [diff] [blame] | 1822 | module_exit(storvsc_drv_exit); |