1 /*- 2 * Copyright (c) 2017 Broadcom. All rights reserved. 3 * The term "Broadcom" refers to Broadcom Limited and/or its subsidiaries. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright notice, 9 * this list of conditions and the following disclaimer. 10 * 11 * 2. Redistributions in binary form must reproduce the above copyright notice, 12 * this list of conditions and the following disclaimer in the documentation 13 * and/or other materials provided with the distribution. 14 * 15 * 3. Neither the name of the copyright holder nor the names of its contributors 16 * may be used to endorse or promote products derived from this software 17 * without specific prior written permission. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 * POSSIBILITY OF SUCH DAMAGE. 30 * 31 * $FreeBSD$ 32 */ 33 34 /** 35 * @file 36 * FC transport API 37 * 38 */ 39 40 #include "ocs.h" 41 #include "ocs_device.h" 42 43 static void ocs_xport_link_stats_cb(int32_t status, uint32_t num_counters, ocs_hw_link_stat_counts_t *counters, void *arg); 44 static void ocs_xport_host_stats_cb(int32_t status, uint32_t num_counters, ocs_hw_host_stat_counts_t *counters, void *arg); 45 /** 46 * @brief Post node event callback argument. 47 */ 48 typedef struct { 49 ocs_sem_t sem; 50 ocs_node_t *node; 51 ocs_sm_event_t evt; 52 void *context; 53 } ocs_xport_post_node_event_t; 54 55 /** 56 * @brief Allocate a transport object. 57 * 58 * @par Description 59 * A transport object is allocated, and associated with a device instance. 60 * 61 * @param ocs Pointer to device instance. 62 * 63 * @return Returns the pointer to the allocated transport object, or NULL if failed. 64 */ 65 ocs_xport_t * 66 ocs_xport_alloc(ocs_t *ocs) 67 { 68 ocs_xport_t *xport; 69 70 ocs_assert(ocs, NULL); 71 xport = ocs_malloc(ocs, sizeof(*xport), OCS_M_ZERO); 72 if (xport != NULL) { 73 xport->ocs = ocs; 74 } 75 return xport; 76 } 77 78 /** 79 * @brief Create the RQ threads and the circular buffers used to pass sequences. 80 * 81 * @par Description 82 * Creates the circular buffers and the servicing threads for RQ processing. 83 * 84 * @param xport Pointer to transport object 85 * 86 * @return Returns 0 on success, or a non-zero value on failure. 87 */ 88 static void 89 ocs_xport_rq_threads_teardown(ocs_xport_t *xport) 90 { 91 ocs_t *ocs = xport->ocs; 92 uint32_t i; 93 94 if (xport->num_rq_threads == 0 || 95 xport->rq_thread_info == NULL) { 96 return; 97 } 98 99 /* Abort any threads */ 100 for (i = 0; i < xport->num_rq_threads; i++) { 101 if (xport->rq_thread_info[i].thread_started) { 102 ocs_thread_terminate(&xport->rq_thread_info[i].thread); 103 /* wait for the thread to exit */ 104 ocs_log_debug(ocs, "wait for thread %d to exit\n", i); 105 while (xport->rq_thread_info[i].thread_started) { 106 ocs_udelay(10000); 107 } 108 ocs_log_debug(ocs, "thread %d to exited\n", i); 109 } 110 if (xport->rq_thread_info[i].seq_cbuf != NULL) { 111 ocs_cbuf_free(xport->rq_thread_info[i].seq_cbuf); 112 xport->rq_thread_info[i].seq_cbuf = NULL; 113 } 114 } 115 } 116 117 /** 118 * @brief Create the RQ threads and the circular buffers used to pass sequences. 119 * 120 * @par Description 121 * Creates the circular buffers and the servicing threads for RQ processing. 122 * 123 * @param xport Pointer to transport object. 124 * @param num_rq_threads Number of RQ processing threads that the 125 * driver creates. 126 * 127 * @return Returns 0 on success, or a non-zero value on failure. 128 */ 129 static int32_t 130 ocs_xport_rq_threads_create(ocs_xport_t *xport, uint32_t num_rq_threads) 131 { 132 ocs_t *ocs = xport->ocs; 133 int32_t rc = 0; 134 uint32_t i; 135 136 xport->num_rq_threads = num_rq_threads; 137 ocs_log_debug(ocs, "number of RQ threads %d\n", num_rq_threads); 138 if (num_rq_threads == 0) { 139 return 0; 140 } 141 142 /* Allocate the space for the thread objects */ 143 xport->rq_thread_info = ocs_malloc(ocs, sizeof(ocs_xport_rq_thread_info_t) * num_rq_threads, OCS_M_ZERO); 144 if (xport->rq_thread_info == NULL) { 145 ocs_log_err(ocs, "memory allocation failure\n"); 146 return -1; 147 } 148 149 /* Create the circular buffers and threads. */ 150 for (i = 0; i < num_rq_threads; i++) { 151 xport->rq_thread_info[i].ocs = ocs; 152 xport->rq_thread_info[i].seq_cbuf = ocs_cbuf_alloc(ocs, OCS_HW_RQ_NUM_HDR); 153 if (xport->rq_thread_info[i].seq_cbuf == NULL) { 154 goto ocs_xport_rq_threads_create_error; 155 } 156 157 ocs_snprintf(xport->rq_thread_info[i].thread_name, 158 sizeof(xport->rq_thread_info[i].thread_name), 159 "ocs_unsol_rq:%d:%d", ocs->instance_index, i); 160 rc = ocs_thread_create(ocs, &xport->rq_thread_info[i].thread, ocs_unsol_rq_thread, 161 xport->rq_thread_info[i].thread_name, 162 &xport->rq_thread_info[i], OCS_THREAD_RUN); 163 if (rc) { 164 ocs_log_err(ocs, "ocs_thread_create failed: %d\n", rc); 165 goto ocs_xport_rq_threads_create_error; 166 } 167 xport->rq_thread_info[i].thread_started = TRUE; 168 } 169 return 0; 170 171 ocs_xport_rq_threads_create_error: 172 ocs_xport_rq_threads_teardown(xport); 173 return -1; 174 } 175 176 /** 177 * @brief Do as much allocation as possible, but do not initialization the device. 178 * 179 * @par Description 180 * Performs the functions required to get a device ready to run. 181 * 182 * @param xport Pointer to transport object. 183 * 184 * @return Returns 0 on success, or a non-zero value on failure. 185 */ 186 int32_t 187 ocs_xport_attach(ocs_xport_t *xport) 188 { 189 ocs_t *ocs = xport->ocs; 190 int32_t rc; 191 uint32_t max_sgl; 192 uint32_t n_sgl; 193 uint32_t i; 194 uint32_t value; 195 uint32_t max_remote_nodes; 196 197 /* booleans used for cleanup if initialization fails */ 198 uint8_t io_pool_created = FALSE; 199 uint8_t node_pool_created = FALSE; 200 uint8_t rq_threads_created = FALSE; 201 202 ocs_list_init(&ocs->domain_list, ocs_domain_t, link); 203 204 for (i = 0; i < SLI4_MAX_FCFI; i++) { 205 xport->fcfi[i].hold_frames = 1; 206 ocs_lock_init(ocs, &xport->fcfi[i].pend_frames_lock, "xport pend_frames[%d]", i); 207 ocs_list_init(&xport->fcfi[i].pend_frames, ocs_hw_sequence_t, link); 208 } 209 210 rc = ocs_hw_set_ptr(&ocs->hw, OCS_HW_WAR_VERSION, ocs->hw_war_version); 211 if (rc) { 212 ocs_log_test(ocs, "can't set OCS_HW_WAR_VERSION\n"); 213 return -1; 214 } 215 216 rc = ocs_hw_setup(&ocs->hw, ocs, SLI4_PORT_TYPE_FC); 217 if (rc) { 218 ocs_log_err(ocs, "%s: Can't setup hardware\n", ocs->desc); 219 return -1; 220 } else if (ocs->ctrlmask & OCS_CTRLMASK_CRASH_RESET) { 221 ocs_log_debug(ocs, "stopping after ocs_hw_setup\n"); 222 return -1; 223 } 224 225 ocs_hw_set(&ocs->hw, OCS_HW_BOUNCE, ocs->hw_bounce); 226 ocs_log_debug(ocs, "HW bounce: %d\n", ocs->hw_bounce); 227 228 ocs_hw_set(&ocs->hw, OCS_HW_RQ_SELECTION_POLICY, ocs->rq_selection_policy); 229 ocs_hw_set(&ocs->hw, OCS_HW_RR_QUANTA, ocs->rr_quanta); 230 ocs_hw_get(&ocs->hw, OCS_HW_RQ_SELECTION_POLICY, &value); 231 ocs_log_debug(ocs, "RQ Selection Policy: %d\n", value); 232 233 ocs_hw_set_ptr(&ocs->hw, OCS_HW_FILTER_DEF, (void*) ocs->filter_def); 234 235 ocs_hw_get(&ocs->hw, OCS_HW_MAX_SGL, &max_sgl); 236 max_sgl -= SLI4_SGE_MAX_RESERVED; 237 n_sgl = MIN(OCS_FC_MAX_SGL, max_sgl); 238 239 /* EVT: For chained SGL testing */ 240 if (ocs->ctrlmask & OCS_CTRLMASK_TEST_CHAINED_SGLS) { 241 n_sgl = 4; 242 } 243 244 /* Note: number of SGLs must be set for ocs_node_create_pool */ 245 if (ocs_hw_set(&ocs->hw, OCS_HW_N_SGL, n_sgl) != OCS_HW_RTN_SUCCESS) { 246 ocs_log_err(ocs, "%s: Can't set number of SGLs\n", ocs->desc); 247 return -1; 248 } else { 249 ocs_log_debug(ocs, "%s: Configured for %d SGLs\n", ocs->desc, n_sgl); 250 } 251 252 ocs_hw_get(&ocs->hw, OCS_HW_MAX_NODES, &max_remote_nodes); 253 254 if (!ocs->max_remote_nodes) 255 ocs->max_remote_nodes = max_remote_nodes; 256 257 rc = ocs_node_create_pool(ocs, ocs->max_remote_nodes); 258 if (rc) { 259 ocs_log_err(ocs, "Can't allocate node pool\n"); 260 goto ocs_xport_attach_cleanup; 261 } else { 262 node_pool_created = TRUE; 263 } 264 265 /* EVT: if testing chained SGLs allocate OCS_FC_MAX_SGL SGE's in the IO */ 266 xport->io_pool = ocs_io_pool_create(ocs, ocs->num_scsi_ios, 267 (ocs->ctrlmask & OCS_CTRLMASK_TEST_CHAINED_SGLS) ? OCS_FC_MAX_SGL : n_sgl); 268 if (xport->io_pool == NULL) { 269 ocs_log_err(ocs, "Can't allocate IO pool\n"); 270 goto ocs_xport_attach_cleanup; 271 } else { 272 io_pool_created = TRUE; 273 } 274 275 /* 276 * setup the RQ processing threads 277 */ 278 if (ocs_xport_rq_threads_create(xport, ocs->rq_threads) != 0) { 279 ocs_log_err(ocs, "failure creating RQ threads\n"); 280 goto ocs_xport_attach_cleanup; 281 } 282 rq_threads_created = TRUE; 283 284 return 0; 285 286 ocs_xport_attach_cleanup: 287 if (io_pool_created) { 288 ocs_io_pool_free(xport->io_pool); 289 } 290 291 if (node_pool_created) { 292 ocs_node_free_pool(ocs); 293 } 294 295 return -1; 296 } 297 298 /** 299 * @brief Determines how to setup auto Xfer ready. 300 * 301 * @par Description 302 * @param xport Pointer to transport object. 303 * 304 * @return Returns 0 on success or a non-zero value on failure. 305 */ 306 static int32_t 307 ocs_xport_initialize_auto_xfer_ready(ocs_xport_t *xport) 308 { 309 ocs_t *ocs = xport->ocs; 310 uint32_t auto_xfer_rdy; 311 char prop_buf[32]; 312 uint32_t ramdisc_blocksize = 512; 313 uint8_t p_type = 0; 314 315 ocs_hw_get(&ocs->hw, OCS_HW_AUTO_XFER_RDY_CAPABLE, &auto_xfer_rdy); 316 if (!auto_xfer_rdy) { 317 ocs->auto_xfer_rdy_size = 0; 318 ocs_log_test(ocs, "Cannot enable auto xfer rdy for this port\n"); 319 return 0; 320 } 321 322 if (ocs_hw_set(&ocs->hw, OCS_HW_AUTO_XFER_RDY_SIZE, ocs->auto_xfer_rdy_size)) { 323 ocs_log_test(ocs, "%s: Can't set auto xfer rdy mode\n", ocs->desc); 324 return -1; 325 } 326 327 /* 328 * Determine if we are doing protection in the backend. We are looking 329 * at the modules parameters here. The backend cannot allow a format 330 * command to change the protection mode when using this feature, 331 * otherwise the firmware will not do the proper thing. 332 */ 333 if (ocs_get_property("p_type", prop_buf, sizeof(prop_buf)) == 0) { 334 p_type = ocs_strtoul(prop_buf, 0, 0); 335 } 336 if (ocs_get_property("ramdisc_blocksize", prop_buf, sizeof(prop_buf)) == 0) { 337 ramdisc_blocksize = ocs_strtoul(prop_buf, 0, 0); 338 } 339 if (ocs_get_property("external_dif", prop_buf, sizeof(prop_buf)) == 0) { 340 if(ocs_strlen(prop_buf)) { 341 if (p_type == 0) { 342 p_type = 1; 343 } 344 } 345 } 346 347 if (p_type != 0) { 348 if (ocs_hw_set(&ocs->hw, OCS_HW_AUTO_XFER_RDY_T10_ENABLE, TRUE)) { 349 ocs_log_test(ocs, "%s: Can't set auto xfer rdy mode\n", ocs->desc); 350 return -1; 351 } 352 if (ocs_hw_set(&ocs->hw, OCS_HW_AUTO_XFER_RDY_BLK_SIZE, ramdisc_blocksize)) { 353 ocs_log_test(ocs, "%s: Can't set auto xfer rdy blk size\n", ocs->desc); 354 return -1; 355 } 356 if (ocs_hw_set(&ocs->hw, OCS_HW_AUTO_XFER_RDY_P_TYPE, p_type)) { 357 ocs_log_test(ocs, "%s: Can't set auto xfer rdy mode\n", ocs->desc); 358 return -1; 359 } 360 if (ocs_hw_set(&ocs->hw, OCS_HW_AUTO_XFER_RDY_REF_TAG_IS_LBA, TRUE)) { 361 ocs_log_test(ocs, "%s: Can't set auto xfer rdy ref tag\n", ocs->desc); 362 return -1; 363 } 364 if (ocs_hw_set(&ocs->hw, OCS_HW_AUTO_XFER_RDY_APP_TAG_VALID, FALSE)) { 365 ocs_log_test(ocs, "%s: Can't set auto xfer rdy app tag valid\n", ocs->desc); 366 return -1; 367 } 368 } 369 ocs_log_debug(ocs, "Auto xfer rdy is enabled, p_type=%d, blksize=%d\n", 370 p_type, ramdisc_blocksize); 371 return 0; 372 } 373 374 /** 375 * @brief Initializes the device. 376 * 377 * @par Description 378 * Performs the functions required to make a device functional. 379 * 380 * @param xport Pointer to transport object. 381 * 382 * @return Returns 0 on success, or a non-zero value on failure. 383 */ 384 int32_t 385 ocs_xport_initialize(ocs_xport_t *xport) 386 { 387 ocs_t *ocs = xport->ocs; 388 int32_t rc; 389 uint32_t i; 390 uint32_t max_hw_io; 391 uint32_t max_sgl; 392 uint32_t hlm; 393 uint32_t rq_limit; 394 uint32_t dif_capable; 395 uint8_t dif_separate = 0; 396 char prop_buf[32]; 397 398 /* booleans used for cleanup if initialization fails */ 399 uint8_t ini_device_set = FALSE; 400 uint8_t tgt_device_set = FALSE; 401 uint8_t hw_initialized = FALSE; 402 403 ocs_hw_get(&ocs->hw, OCS_HW_MAX_IO, &max_hw_io); 404 if (ocs_hw_set(&ocs->hw, OCS_HW_N_IO, max_hw_io) != OCS_HW_RTN_SUCCESS) { 405 ocs_log_err(ocs, "%s: Can't set number of IOs\n", ocs->desc); 406 return -1; 407 } 408 409 ocs_hw_get(&ocs->hw, OCS_HW_MAX_SGL, &max_sgl); 410 max_sgl -= SLI4_SGE_MAX_RESERVED; 411 412 if (ocs->enable_hlm) { 413 ocs_hw_get(&ocs->hw, OCS_HW_HIGH_LOGIN_MODE, &hlm); 414 if (!hlm) { 415 ocs->enable_hlm = FALSE; 416 ocs_log_err(ocs, "Cannot enable high login mode for this port\n"); 417 } else { 418 ocs_log_debug(ocs, "High login mode is enabled\n"); 419 if (ocs_hw_set(&ocs->hw, OCS_HW_HIGH_LOGIN_MODE, TRUE)) { 420 ocs_log_err(ocs, "%s: Can't set high login mode\n", ocs->desc); 421 return -1; 422 } 423 } 424 } 425 426 /* validate the auto xfer_rdy size */ 427 if (ocs->auto_xfer_rdy_size > 0 && 428 (ocs->auto_xfer_rdy_size < 2048 || 429 ocs->auto_xfer_rdy_size > 65536)) { 430 ocs_log_err(ocs, "Auto XFER_RDY size is out of range (2K-64K)\n"); 431 return -1; 432 } 433 434 ocs_hw_get(&ocs->hw, OCS_HW_MAX_IO, &max_hw_io); 435 436 if (ocs->auto_xfer_rdy_size > 0) { 437 if (ocs_xport_initialize_auto_xfer_ready(xport)) { 438 ocs_log_err(ocs, "%s: Failed auto xfer ready setup\n", ocs->desc); 439 return -1; 440 } 441 if (ocs->esoc){ 442 ocs_hw_set(&ocs->hw, OCS_ESOC, TRUE); 443 } 444 } 445 446 if (ocs->explicit_buffer_list) { 447 /* Are pre-registered SGL's required? */ 448 ocs_hw_get(&ocs->hw, OCS_HW_PREREGISTER_SGL, &i); 449 if (i == TRUE) { 450 ocs_log_err(ocs, "Explicit Buffer List not supported on this device, not enabled\n"); 451 } else { 452 ocs_hw_set(&ocs->hw, OCS_HW_PREREGISTER_SGL, FALSE); 453 } 454 } 455 456 if (ocs_hw_set(&ocs->hw, OCS_HW_TOPOLOGY, ocs->topology) != OCS_HW_RTN_SUCCESS) { 457 ocs_log_err(ocs, "%s: Can't set the toplogy\n", ocs->desc); 458 return -1; 459 } 460 ocs_hw_set(&ocs->hw, OCS_HW_RQ_DEFAULT_BUFFER_SIZE, OCS_FC_RQ_SIZE_DEFAULT); 461 462 if (ocs_hw_set(&ocs->hw, OCS_HW_LINK_SPEED, ocs->speed) != OCS_HW_RTN_SUCCESS) { 463 ocs_log_err(ocs, "%s: Can't set the link speed\n", ocs->desc); 464 return -1; 465 } 466 467 if (ocs_hw_set(&ocs->hw, OCS_HW_ETH_LICENSE, ocs->ethernet_license) != OCS_HW_RTN_SUCCESS) { 468 ocs_log_err(ocs, "%s: Can't set the ethernet license\n", ocs->desc); 469 return -1; 470 } 471 472 /* currently only lancer support setting the CRC seed value */ 473 if (ocs->hw.sli.asic_type == SLI4_ASIC_TYPE_LANCER) { 474 if (ocs_hw_set(&ocs->hw, OCS_HW_DIF_SEED, OCS_FC_DIF_SEED) != OCS_HW_RTN_SUCCESS) { 475 ocs_log_err(ocs, "%s: Can't set the DIF seed\n", ocs->desc); 476 return -1; 477 } 478 } 479 480 /* Set the Dif mode */ 481 if (0 == ocs_hw_get(&ocs->hw, OCS_HW_DIF_CAPABLE, &dif_capable)) { 482 if (dif_capable) { 483 if (ocs_get_property("dif_separate", prop_buf, sizeof(prop_buf)) == 0) { 484 dif_separate = ocs_strtoul(prop_buf, 0, 0); 485 } 486 487 if ((rc = ocs_hw_set(&ocs->hw, OCS_HW_DIF_MODE, 488 (dif_separate == 0 ? OCS_HW_DIF_MODE_INLINE : OCS_HW_DIF_MODE_SEPARATE)))) { 489 ocs_log_err(ocs, "Requested DIF MODE not supported\n"); 490 } 491 } 492 } 493 494 if (ocs->target_io_timer_sec) { 495 ocs_log_debug(ocs, "setting target io timer=%d\n", ocs->target_io_timer_sec); 496 ocs_hw_set(&ocs->hw, OCS_HW_EMULATE_TARGET_WQE_TIMEOUT, TRUE); 497 } 498 499 ocs_hw_callback(&ocs->hw, OCS_HW_CB_DOMAIN, ocs_domain_cb, ocs); 500 ocs_hw_callback(&ocs->hw, OCS_HW_CB_REMOTE_NODE, ocs_remote_node_cb, ocs); 501 ocs_hw_callback(&ocs->hw, OCS_HW_CB_UNSOLICITED, ocs_unsolicited_cb, ocs); 502 ocs_hw_callback(&ocs->hw, OCS_HW_CB_PORT, ocs_port_cb, ocs); 503 504 ocs->fw_version = (const char*) ocs_hw_get_ptr(&ocs->hw, OCS_HW_FW_REV); 505 506 /* Initialize vport list */ 507 ocs_list_init(&xport->vport_list, ocs_vport_spec_t, link); 508 ocs_lock_init(ocs, &xport->io_pending_lock, "io_pending_lock[%d]", ocs->instance_index); 509 ocs_list_init(&xport->io_pending_list, ocs_io_t, io_pending_link); 510 ocs_atomic_init(&xport->io_active_count, 0); 511 ocs_atomic_init(&xport->io_pending_count, 0); 512 ocs_atomic_init(&xport->io_total_free, 0); 513 ocs_atomic_init(&xport->io_total_pending, 0); 514 ocs_atomic_init(&xport->io_alloc_failed_count, 0); 515 ocs_atomic_init(&xport->io_pending_recursing, 0); 516 ocs_lock_init(ocs, &ocs->hw.watchdog_lock, " Watchdog Lock[%d]", ocs_instance(ocs)); 517 rc = ocs_hw_init(&ocs->hw); 518 if (rc) { 519 ocs_log_err(ocs, "ocs_hw_init failure\n"); 520 goto ocs_xport_init_cleanup; 521 } else { 522 hw_initialized = TRUE; 523 } 524 525 rq_limit = max_hw_io/2; 526 if (ocs_hw_set(&ocs->hw, OCS_HW_RQ_PROCESS_LIMIT, rq_limit) != OCS_HW_RTN_SUCCESS) { 527 ocs_log_err(ocs, "%s: Can't set the RQ process limit\n", ocs->desc); 528 } 529 530 if (ocs->config_tgt) { 531 rc = ocs_scsi_tgt_new_device(ocs); 532 if (rc) { 533 ocs_log_err(ocs, "failed to initialize target\n"); 534 goto ocs_xport_init_cleanup; 535 } else { 536 tgt_device_set = TRUE; 537 } 538 } 539 540 if (ocs->enable_ini) { 541 rc = ocs_scsi_ini_new_device(ocs); 542 if (rc) { 543 ocs_log_err(ocs, "failed to initialize initiator\n"); 544 goto ocs_xport_init_cleanup; 545 } else { 546 ini_device_set = TRUE; 547 } 548 549 } 550 551 /* Add vports */ 552 if (ocs->num_vports != 0) { 553 554 uint32_t max_vports; 555 ocs_hw_get(&ocs->hw, OCS_HW_MAX_VPORTS, &max_vports); 556 557 if (ocs->num_vports < max_vports) { 558 ocs_log_debug(ocs, "Provisioning %d vports\n", ocs->num_vports); 559 for (i = 0; i < ocs->num_vports; i++) { 560 ocs_vport_create_spec(ocs, 0, 0, UINT32_MAX, ocs->enable_ini, ocs->enable_tgt, NULL, NULL); 561 } 562 } else { 563 ocs_log_err(ocs, "failed to create vports. num_vports range should be (1-%d) \n", max_vports-1); 564 goto ocs_xport_init_cleanup; 565 } 566 } 567 568 return 0; 569 570 ocs_xport_init_cleanup: 571 if (ini_device_set) { 572 ocs_scsi_ini_del_device(ocs); 573 } 574 575 if (tgt_device_set) { 576 ocs_scsi_tgt_del_device(ocs); 577 } 578 579 if (hw_initialized) { 580 /* ocs_hw_teardown can only execute after ocs_hw_init */ 581 ocs_hw_teardown(&ocs->hw); 582 } 583 584 return -1; 585 } 586 587 /** 588 * @brief Detaches the transport from the device. 589 * 590 * @par Description 591 * Performs the functions required to shut down a device. 592 * 593 * @param xport Pointer to transport object. 594 * 595 * @return Returns 0 on success or a non-zero value on failure. 596 */ 597 int32_t 598 ocs_xport_detach(ocs_xport_t *xport) 599 { 600 ocs_t *ocs = xport->ocs; 601 602 /* free resources associated with target-server and initiator-client */ 603 if (ocs->config_tgt) 604 ocs_scsi_tgt_del_device(ocs); 605 606 if (ocs->enable_ini) { 607 ocs_scsi_ini_del_device(ocs); 608 609 /*Shutdown FC Statistics timer*/ 610 if (ocs_timer_pending(&ocs->xport->stats_timer)) 611 ocs_del_timer(&ocs->xport->stats_timer); 612 } 613 614 ocs_hw_teardown(&ocs->hw); 615 616 return 0; 617 } 618 619 /** 620 * @brief domain list empty callback 621 * 622 * @par Description 623 * Function is invoked when the device domain list goes empty. By convention 624 * @c arg points to an ocs_sem_t instance, that is incremented. 625 * 626 * @param ocs Pointer to device object. 627 * @param arg Pointer to semaphore instance. 628 * 629 * @return None. 630 */ 631 632 static void 633 ocs_xport_domain_list_empty_cb(ocs_t *ocs, void *arg) 634 { 635 ocs_sem_t *sem = arg; 636 637 ocs_assert(ocs); 638 ocs_assert(sem); 639 640 ocs_sem_v(sem); 641 } 642 643 /** 644 * @brief post node event callback 645 * 646 * @par Description 647 * This function is called from the mailbox completion interrupt context to post an 648 * event to a node object. By doing this in the interrupt context, it has 649 * the benefit of only posting events in the interrupt context, deferring the need to 650 * create a per event node lock. 651 * 652 * @param hw Pointer to HW structure. 653 * @param status Completion status for mailbox command. 654 * @param mqe Mailbox queue completion entry. 655 * @param arg Callback argument. 656 * 657 * @return Returns 0 on success, a negative error code value on failure. 658 */ 659 660 static int32_t 661 ocs_xport_post_node_event_cb(ocs_hw_t *hw, int32_t status, uint8_t *mqe, void *arg) 662 { 663 ocs_xport_post_node_event_t *payload = arg; 664 665 if (payload != NULL) { 666 ocs_node_post_event(payload->node, payload->evt, payload->context); 667 ocs_sem_v(&payload->sem); 668 } 669 670 return 0; 671 } 672 673 /** 674 * @brief Initiate force free. 675 * 676 * @par Description 677 * Perform force free of OCS. 678 * 679 * @param xport Pointer to transport object. 680 * 681 * @return None. 682 */ 683 684 static void 685 ocs_xport_force_free(ocs_xport_t *xport) 686 { 687 ocs_t *ocs = xport->ocs; 688 ocs_domain_t *domain; 689 ocs_domain_t *next; 690 691 ocs_log_debug(ocs, "reset required, do force shutdown\n"); 692 ocs_device_lock(ocs); 693 ocs_list_foreach_safe(&ocs->domain_list, domain, next) { 694 ocs_domain_force_free(domain); 695 } 696 ocs_device_unlock(ocs); 697 } 698 699 /** 700 * @brief Perform transport attach function. 701 * 702 * @par Description 703 * Perform the attach function, which for the FC transport makes a HW call 704 * to bring up the link. 705 * 706 * @param xport pointer to transport object. 707 * @param cmd command to execute. 708 * 709 * ocs_xport_control(ocs_xport_t *xport, OCS_XPORT_PORT_ONLINE) 710 * ocs_xport_control(ocs_xport_t *xport, OCS_XPORT_PORT_OFFLINE) 711 * ocs_xport_control(ocs_xport_t *xport, OCS_XPORT_PORT_SHUTDOWN) 712 * ocs_xport_control(ocs_xport_t *xport, OCS_XPORT_POST_NODE_EVENT, ocs_node_t *node, ocs_sm_event_t, void *context) 713 * 714 * @return Returns 0 on success, or a negative error code value on failure. 715 */ 716 717 int32_t 718 ocs_xport_control(ocs_xport_t *xport, ocs_xport_ctrl_e cmd, ...) 719 { 720 uint32_t rc = 0; 721 ocs_t *ocs = NULL; 722 va_list argp; 723 724 ocs_assert(xport, -1); 725 ocs_assert(xport->ocs, -1); 726 ocs = xport->ocs; 727 728 switch (cmd) { 729 case OCS_XPORT_PORT_ONLINE: { 730 /* Bring the port on-line */ 731 rc = ocs_hw_port_control(&ocs->hw, OCS_HW_PORT_INIT, 0, NULL, NULL); 732 if (rc) { 733 ocs_log_err(ocs, "%s: Can't init port\n", ocs->desc); 734 } else { 735 xport->configured_link_state = cmd; 736 } 737 break; 738 } 739 case OCS_XPORT_PORT_OFFLINE: { 740 if (ocs_hw_port_control(&ocs->hw, OCS_HW_PORT_SHUTDOWN, 0, NULL, NULL)) { 741 ocs_log_err(ocs, "port shutdown failed\n"); 742 } else { 743 xport->configured_link_state = cmd; 744 } 745 break; 746 } 747 748 case OCS_XPORT_SHUTDOWN: { 749 ocs_sem_t sem; 750 uint32_t reset_required; 751 752 /* if a PHYSDEV reset was performed (e.g. hw dump), will affect 753 * all PCI functions; orderly shutdown won't work, just force free 754 */ 755 /* TODO: need to poll this regularly... */ 756 if (ocs_hw_get(&ocs->hw, OCS_HW_RESET_REQUIRED, &reset_required) != OCS_HW_RTN_SUCCESS) { 757 reset_required = 0; 758 } 759 760 if (reset_required) { 761 ocs_log_debug(ocs, "reset required, do force shutdown\n"); 762 ocs_xport_force_free(xport); 763 break; 764 } 765 ocs_sem_init(&sem, 0, "domain_list_sem"); 766 ocs_register_domain_list_empty_cb(ocs, ocs_xport_domain_list_empty_cb, &sem); 767 768 if (ocs_hw_port_control(&ocs->hw, OCS_HW_PORT_SHUTDOWN, 0, NULL, NULL)) { 769 ocs_log_debug(ocs, "port shutdown failed, do force shutdown\n"); 770 ocs_xport_force_free(xport); 771 } else { 772 ocs_log_debug(ocs, "Waiting %d seconds for domain shutdown.\n", (OCS_FC_DOMAIN_SHUTDOWN_TIMEOUT_USEC/1000000)); 773 774 rc = ocs_sem_p(&sem, OCS_FC_DOMAIN_SHUTDOWN_TIMEOUT_USEC); 775 if (rc) { 776 ocs_log_debug(ocs, "Note: Domain shutdown timed out\n"); 777 ocs_xport_force_free(xport); 778 } 779 } 780 781 ocs_register_domain_list_empty_cb(ocs, NULL, NULL); 782 783 /* Free up any saved virtual ports */ 784 ocs_vport_del_all(ocs); 785 break; 786 } 787 788 /* 789 * POST_NODE_EVENT: post an event to a node object 790 * 791 * This transport function is used to post an event to a node object. It does 792 * this by submitting a NOP mailbox command to defer execution to the 793 * interrupt context (thereby enforcing the serialized execution of event posting 794 * to the node state machine instances) 795 * 796 * A counting semaphore is used to make the call synchronous (we wait until 797 * the callback increments the semaphore before returning (or times out) 798 */ 799 case OCS_XPORT_POST_NODE_EVENT: { 800 ocs_node_t *node; 801 ocs_sm_event_t evt; 802 void *context; 803 ocs_xport_post_node_event_t payload; 804 ocs_t *ocs; 805 ocs_hw_t *hw; 806 807 /* Retrieve arguments */ 808 va_start(argp, cmd); 809 node = va_arg(argp, ocs_node_t*); 810 evt = va_arg(argp, ocs_sm_event_t); 811 context = va_arg(argp, void *); 812 va_end(argp); 813 814 ocs_assert(node, -1); 815 ocs_assert(node->ocs, -1); 816 817 ocs = node->ocs; 818 hw = &ocs->hw; 819 820 /* if node's state machine is disabled, don't bother continuing */ 821 if (!node->sm.current_state) { 822 ocs_log_test(ocs, "node %p state machine disabled\n", node); 823 return -1; 824 } 825 826 /* Setup payload */ 827 ocs_memset(&payload, 0, sizeof(payload)); 828 ocs_sem_init(&payload.sem, 0, "xport_post_node_Event"); 829 payload.node = node; 830 payload.evt = evt; 831 payload.context = context; 832 833 if (ocs_hw_async_call(hw, ocs_xport_post_node_event_cb, &payload)) { 834 ocs_log_test(ocs, "ocs_hw_async_call failed\n"); 835 rc = -1; 836 break; 837 } 838 839 /* Wait for completion */ 840 if (ocs_sem_p(&payload.sem, OCS_SEM_FOREVER)) { 841 ocs_log_test(ocs, "POST_NODE_EVENT: sem wait failed\n"); 842 rc = -1; 843 } 844 845 break; 846 } 847 /* 848 * Set wwnn for the port. This will be used instead of the default provided by FW. 849 */ 850 case OCS_XPORT_WWNN_SET: { 851 uint64_t wwnn; 852 853 /* Retrieve arguments */ 854 va_start(argp, cmd); 855 wwnn = va_arg(argp, uint64_t); 856 va_end(argp); 857 858 ocs_log_debug(ocs, " WWNN %016" PRIx64 "\n", wwnn); 859 xport->req_wwnn = wwnn; 860 861 break; 862 } 863 /* 864 * Set wwpn for the port. This will be used instead of the default provided by FW. 865 */ 866 case OCS_XPORT_WWPN_SET: { 867 uint64_t wwpn; 868 869 /* Retrieve arguments */ 870 va_start(argp, cmd); 871 wwpn = va_arg(argp, uint64_t); 872 va_end(argp); 873 874 ocs_log_debug(ocs, " WWPN %016" PRIx64 "\n", wwpn); 875 xport->req_wwpn = wwpn; 876 877 break; 878 } 879 880 881 default: 882 break; 883 } 884 return rc; 885 } 886 887 /** 888 * @brief Return status on a link. 889 * 890 * @par Description 891 * Returns status information about a link. 892 * 893 * @param xport Pointer to transport object. 894 * @param cmd Command to execute. 895 * @param result Pointer to result value. 896 * 897 * ocs_xport_status(ocs_xport_t *xport, OCS_XPORT_PORT_STATUS) 898 * ocs_xport_status(ocs_xport_t *xport, OCS_XPORT_LINK_SPEED, ocs_xport_stats_t *result) 899 * return link speed in MB/sec 900 * ocs_xport_status(ocs_xport_t *xport, OCS_XPORT_IS_SUPPORTED_LINK_SPEED, ocs_xport_stats_t *result) 901 * [in] *result is speed to check in MB/s 902 * returns 1 if supported, 0 if not 903 * ocs_xport_status(ocs_xport_t *xport, OCS_XPORT_LINK_STATISTICS, ocs_xport_stats_t *result) 904 * return link/host port stats 905 * ocs_xport_status(ocs_xport_t *xport, OCS_XPORT_LINK_STAT_RESET, ocs_xport_stats_t *result) 906 * resets link/host stats 907 * 908 * 909 * @return Returns 0 on success, or a negative error code value on failure. 910 */ 911 912 int32_t 913 ocs_xport_status(ocs_xport_t *xport, ocs_xport_status_e cmd, ocs_xport_stats_t *result) 914 { 915 uint32_t rc = 0; 916 ocs_t *ocs = NULL; 917 ocs_xport_stats_t value; 918 ocs_hw_rtn_e hw_rc; 919 920 ocs_assert(xport, -1); 921 ocs_assert(xport->ocs, -1); 922 923 ocs = xport->ocs; 924 925 switch (cmd) { 926 case OCS_XPORT_CONFIG_PORT_STATUS: 927 ocs_assert(result, -1); 928 if (xport->configured_link_state == 0) { 929 /* Initial state is offline. configured_link_state is */ 930 /* set to online explicitly when port is brought online. */ 931 xport->configured_link_state = OCS_XPORT_PORT_OFFLINE; 932 } 933 result->value = xport->configured_link_state; 934 break; 935 936 case OCS_XPORT_PORT_STATUS: 937 ocs_assert(result, -1); 938 /* Determine port status based on link speed. */ 939 hw_rc = ocs_hw_get(&(ocs->hw), OCS_HW_LINK_SPEED, &value.value); 940 if (hw_rc == OCS_HW_RTN_SUCCESS) { 941 if (value.value == 0) { 942 result->value = 0; 943 } else { 944 result->value = 1; 945 } 946 rc = 0; 947 } else { 948 rc = -1; 949 } 950 break; 951 952 case OCS_XPORT_LINK_SPEED: { 953 uint32_t speed; 954 955 ocs_assert(result, -1); 956 result->value = 0; 957 958 rc = ocs_hw_get(&ocs->hw, OCS_HW_LINK_SPEED, &speed); 959 if (rc == 0) { 960 result->value = speed; 961 } 962 break; 963 } 964 965 case OCS_XPORT_IS_SUPPORTED_LINK_SPEED: { 966 uint32_t speed; 967 uint32_t link_module_type; 968 969 ocs_assert(result, -1); 970 speed = result->value; 971 972 rc = ocs_hw_get(&ocs->hw, OCS_HW_LINK_MODULE_TYPE, &link_module_type); 973 if (rc == 0) { 974 switch(speed) { 975 case 1000: rc = (link_module_type & OCS_HW_LINK_MODULE_TYPE_1GB) != 0; break; 976 case 2000: rc = (link_module_type & OCS_HW_LINK_MODULE_TYPE_2GB) != 0; break; 977 case 4000: rc = (link_module_type & OCS_HW_LINK_MODULE_TYPE_4GB) != 0; break; 978 case 8000: rc = (link_module_type & OCS_HW_LINK_MODULE_TYPE_8GB) != 0; break; 979 case 10000: rc = (link_module_type & OCS_HW_LINK_MODULE_TYPE_10GB) != 0; break; 980 case 16000: rc = (link_module_type & OCS_HW_LINK_MODULE_TYPE_16GB) != 0; break; 981 case 32000: rc = (link_module_type & OCS_HW_LINK_MODULE_TYPE_32GB) != 0; break; 982 default: rc = 0; break; 983 } 984 } else { 985 rc = 0; 986 } 987 break; 988 } 989 case OCS_XPORT_LINK_STATISTICS: 990 ocs_device_lock(ocs); 991 ocs_memcpy((void *)result, &ocs->xport->fc_xport_stats, sizeof(ocs_xport_stats_t)); 992 ocs_device_unlock(ocs); 993 break; 994 case OCS_XPORT_LINK_STAT_RESET: { 995 /* Create a semaphore to synchronize the stat reset process. */ 996 ocs_sem_init(&(result->stats.semaphore), 0, "fc_stats_reset"); 997 998 /* First reset the link stats */ 999 if ((rc = ocs_hw_get_link_stats(&ocs->hw, 0, 1, 1, ocs_xport_link_stats_cb, result)) != 0) { 1000 ocs_log_err(ocs, "%s: Failed to reset link statistics\n", __func__); 1001 break; 1002 } 1003 1004 /* Wait for semaphore to be signaled when the command completes */ 1005 /* TODO: Should there be a timeout on this? If so, how long? */ 1006 if (ocs_sem_p(&(result->stats.semaphore), OCS_SEM_FOREVER) != 0) { 1007 /* Undefined failure */ 1008 ocs_log_test(ocs, "ocs_sem_p failed\n"); 1009 rc = -ENXIO; 1010 break; 1011 } 1012 1013 /* Next reset the host stats */ 1014 if ((rc = ocs_hw_get_host_stats(&ocs->hw, 1, ocs_xport_host_stats_cb, result)) != 0) { 1015 ocs_log_err(ocs, "%s: Failed to reset host statistics\n", __func__); 1016 break; 1017 } 1018 1019 /* Wait for semaphore to be signaled when the command completes */ 1020 if (ocs_sem_p(&(result->stats.semaphore), OCS_SEM_FOREVER) != 0) { 1021 /* Undefined failure */ 1022 ocs_log_test(ocs, "ocs_sem_p failed\n"); 1023 rc = -ENXIO; 1024 break; 1025 } 1026 break; 1027 } 1028 case OCS_XPORT_IS_QUIESCED: 1029 ocs_device_lock(ocs); 1030 result->value = ocs_list_empty(&ocs->domain_list); 1031 ocs_device_unlock(ocs); 1032 break; 1033 default: 1034 rc = -1; 1035 break; 1036 } 1037 1038 return rc; 1039 1040 } 1041 1042 static void 1043 ocs_xport_link_stats_cb(int32_t status, uint32_t num_counters, ocs_hw_link_stat_counts_t *counters, void *arg) 1044 { 1045 ocs_xport_stats_t *result = arg; 1046 1047 result->stats.link_stats.link_failure_error_count = counters[OCS_HW_LINK_STAT_LINK_FAILURE_COUNT].counter; 1048 result->stats.link_stats.loss_of_sync_error_count = counters[OCS_HW_LINK_STAT_LOSS_OF_SYNC_COUNT].counter; 1049 result->stats.link_stats.primitive_sequence_error_count = counters[OCS_HW_LINK_STAT_PRIMITIVE_SEQ_COUNT].counter; 1050 result->stats.link_stats.invalid_transmission_word_error_count = counters[OCS_HW_LINK_STAT_INVALID_XMIT_WORD_COUNT].counter; 1051 result->stats.link_stats.crc_error_count = counters[OCS_HW_LINK_STAT_CRC_COUNT].counter; 1052 1053 ocs_sem_v(&(result->stats.semaphore)); 1054 } 1055 1056 1057 static void 1058 ocs_xport_host_stats_cb(int32_t status, uint32_t num_counters, ocs_hw_host_stat_counts_t *counters, void *arg) 1059 { 1060 ocs_xport_stats_t *result = arg; 1061 1062 result->stats.host_stats.transmit_kbyte_count = counters[OCS_HW_HOST_STAT_TX_KBYTE_COUNT].counter; 1063 result->stats.host_stats.receive_kbyte_count = counters[OCS_HW_HOST_STAT_RX_KBYTE_COUNT].counter; 1064 result->stats.host_stats.transmit_frame_count = counters[OCS_HW_HOST_STAT_TX_FRAME_COUNT].counter; 1065 result->stats.host_stats.receive_frame_count = counters[OCS_HW_HOST_STAT_RX_FRAME_COUNT].counter; 1066 1067 ocs_sem_v(&(result->stats.semaphore)); 1068 } 1069 1070 1071 /** 1072 * @brief Free a transport object. 1073 * 1074 * @par Description 1075 * The transport object is freed. 1076 * 1077 * @param xport Pointer to transport object. 1078 * 1079 * @return None. 1080 */ 1081 1082 void 1083 ocs_xport_free(ocs_xport_t *xport) 1084 { 1085 ocs_t *ocs; 1086 uint32_t i; 1087 1088 if (xport) { 1089 ocs = xport->ocs; 1090 ocs_io_pool_free(xport->io_pool); 1091 ocs_node_free_pool(ocs); 1092 if(mtx_initialized(&xport->io_pending_lock.lock)) 1093 ocs_lock_free(&xport->io_pending_lock); 1094 1095 for (i = 0; i < SLI4_MAX_FCFI; i++) { 1096 ocs_lock_free(&xport->fcfi[i].pend_frames_lock); 1097 } 1098 1099 ocs_xport_rq_threads_teardown(xport); 1100 1101 ocs_free(ocs, xport, sizeof(*xport)); 1102 } 1103 } 1104