1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2021 Broadcom. All Rights Reserved. The term
* “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
*/
/*
* Functions to build and send ELS/CT/BLS commands and responses.
*/
#include "efc.h"
#include "efc_els.h"
#include "../libefc_sli/sli4.h"
#define EFC_LOG_ENABLE_ELS_TRACE(efc) \
(((efc) != NULL) ? (((efc)->logmask & (1U << 1)) != 0) : 0)
#define node_els_trace() \
do { \
if (EFC_LOG_ENABLE_ELS_TRACE(efc)) \
efc_log_info(efc, "[%s] %-20s\n", \
node->display_name, __func__); \
} while (0)
#define els_io_printf(els, fmt, ...) \
efc_log_err((struct efc *)els->node->efc,\
"[%s] %-8s " fmt, \
els->node->display_name,\
els->display_name, ##__VA_ARGS__)
#define EFC_ELS_RSP_LEN 1024
#define EFC_ELS_GID_PT_RSP_LEN 8096
struct efc_els_io_req *
efc_els_io_alloc(struct efc_node *node, u32 reqlen)
{
return efc_els_io_alloc_size(node, reqlen, EFC_ELS_RSP_LEN);
}
struct efc_els_io_req *
efc_els_io_alloc_size(struct efc_node *node, u32 reqlen, u32 rsplen)
{
struct efc *efc;
struct efc_els_io_req *els;
unsigned long flags = 0;
efc = node->efc;
if (!node->els_io_enabled) {
efc_log_err(efc, "els io alloc disabled\n");
return NULL;
}
els = mempool_alloc(efc->els_io_pool, GFP_ATOMIC);
if (!els) {
atomic_add_return(1, &efc->els_io_alloc_failed_count);
return NULL;
}
/* initialize refcount */
kref_init(&els->ref);
els->release = _efc_els_io_free;
/* populate generic io fields */
els->node = node;
/* now allocate DMA for request and response */
els->io.req.size = reqlen;
els->io.req.virt = dma_alloc_coherent(&efc->pci->dev, els->io.req.size,
&els->io.req.phys, GFP_KERNEL);
if (!els->io.req.virt) {
mempool_free(els, efc->els_io_pool);
return NULL;
}
els->io.rsp.size = rsplen;
els->io.rsp.virt = dma_alloc_coherent(&efc->pci->dev, els->io.rsp.size,
&els->io.rsp.phys, GFP_KERNEL);
if (!els->io.rsp.virt) {
dma_free_coherent(&efc->pci->dev, els->io.req.size,
els->io.req.virt, els->io.req.phys);
mempool_free(els, efc->els_io_pool);
els = NULL;
}
if (els) {
/* initialize fields */
els->els_retries_remaining = EFC_FC_ELS_DEFAULT_RETRIES;
/* add els structure to ELS IO list */
INIT_LIST_HEAD(&els->list_entry);
spin_lock_irqsave(&node->els_ios_lock, flags);
list_add_tail(&els->list_entry, &node->els_ios_list);
spin_unlock_irqrestore(&node->els_ios_lock, flags);
}
return els;
}
void
efc_els_io_free(struct efc_els_io_req *els)
{
kref_put(&els->ref, els->release);
}
void
_efc_els_io_free(struct kref *arg)
{
struct efc_els_io_req *els =
container_of(arg, struct efc_els_io_req, ref);
struct efc *efc;
struct efc_node *node;
int send_empty_event = false;
unsigned long flags = 0;
node = els->node;
efc = node->efc;
spin_lock_irqsave(&node->els_ios_lock, flags);
list_del(&els->list_entry);
/* Send list empty event if the IO allocator
* is disabled, and the list is empty
* If node->els_io_enabled was not checked,
* the event would be posted continually
*/
send_empty_event = (!node->els_io_enabled &&
list_empty(&node->els_ios_list));
spin_unlock_irqrestore(&node->els_ios_lock, flags);
/* free ELS request and response buffers */
dma_free_coherent(&efc->pci->dev, els->io.rsp.size,
els->io.rsp.virt, els->io.rsp.phys);
dma_free_coherent(&efc->pci->dev, els->io.req.size,
els->io.req.virt, els->io.req.phys);
mempool_free(els, efc->els_io_pool);
if (send_empty_event)
efc_scsi_io_list_empty(node->efc, node);
}
static void
efc_els_retry(struct efc_els_io_req *els);
static void
efc_els_delay_timer_cb(struct timer_list *t)
{
struct efc_els_io_req *els = from_timer(els, t, delay_timer);
/* Retry delay timer expired, retry the ELS request */
efc_els_retry(els);
}
static int
efc_els_req_cb(void *arg, u32 length, int status, u32 ext_status)
{
struct efc_els_io_req *els;
struct efc_node *node;
struct efc *efc;
struct efc_node_cb cbdata;
u32 reason_code;
els = arg;
node = els->node;
efc = node->efc;
if (status)
els_io_printf(els, "status x%x ext x%x\n", status, ext_status);
/* set the response len element of els->rsp */
els->io.rsp.len = length;
cbdata.status = status;
cbdata.ext_status = ext_status;
cbdata.header = NULL;
cbdata.els_rsp = els->io.rsp;
/* set the response len element of els->rsp */
cbdata.rsp_len = length;
/* FW returns the number of bytes received on the link in
* the WCQE, not the amount placed in the buffer; use this info to
* check if there was an overrun.
*/
if (length > els->io.rsp.size) {
efc_log_warn(efc,
"ELS response returned len=%d > buflen=%zu\n",
length, els->io.rsp.size);
efc_els_io_cleanup(els, EFC_EVT_SRRS_ELS_REQ_FAIL, &cbdata);
return 0;
}
/* Post event to ELS IO object */
switch (status) {
case SLI4_FC_WCQE_STATUS_SUCCESS:
efc_els_io_cleanup(els, EFC_EVT_SRRS_ELS_REQ_OK, &cbdata);
break;
case SLI4_FC_WCQE_STATUS_LS_RJT:
reason_code = (ext_status >> 16) & 0xff;
/* delay and retry if reason code is Logical Busy */
switch (reason_code) {
case ELS_RJT_BUSY:
els->node->els_req_cnt--;
els_io_printf(els,
"LS_RJT Logical Busy, delay and retry\n");
timer_setup(&els->delay_timer,
efc_els_delay_timer_cb, 0);
mod_timer(&els->delay_timer,
jiffies + msecs_to_jiffies(5000));
break;
default:
efc_els_io_cleanup(els, EFC_EVT_SRRS_ELS_REQ_RJT,
&cbdata);
break;
}
break;
case SLI4_FC_WCQE_STATUS_LOCAL_REJECT:
switch (ext_status) {
case SLI4_FC_LOCAL_REJECT_SEQUENCE_TIMEOUT:
efc_els_retry(els);
break;
default:
efc_log_err(efc, "LOCAL_REJECT with ext status:%x\n",
ext_status);
efc_els_io_cleanup(els, EFC_EVT_SRRS_ELS_REQ_FAIL,
&cbdata);
break;
}
break;
default: /* Other error */
efc_log_warn(efc, "els req failed status x%x, ext_status x%x\n",
status, ext_status);
efc_els_io_cleanup(els, EFC_EVT_SRRS_ELS_REQ_FAIL, &cbdata);
break;
}
return 0;
}
void efc_disc_io_complete(struct efc_disc_io *io, u32 len, u32 status,
u32 ext_status)
{
struct efc_els_io_req *els =
container_of(io, struct efc_els_io_req, io);
WARN_ON_ONCE(!els->cb);
((efc_hw_srrs_cb_t)els->cb) (els, len, status, ext_status);
}
static int efc_els_send_req(struct efc_node *node, struct efc_els_io_req *els,
enum efc_disc_io_type io_type)
{
int rc = 0;
struct efc *efc = node->efc;
struct efc_node_cb cbdata;
/* update ELS request counter */
els->node->els_req_cnt++;
/* Prepare the IO request details */
els->io.io_type = io_type;
els->io.xmit_len = els->io.req.size;
els->io.rsp_len = els->io.rsp.size;
els->io.rpi = node->rnode.indicator;
els->io.vpi = node->nport->indicator;
els->io.s_id = node->nport->fc_id;
els->io.d_id = node->rnode.fc_id;
if (node->rnode.attached)
els->io.rpi_registered = true;
els->cb = efc_els_req_cb;
rc = efc->tt.send_els(efc, &els->io);
if (!rc)
return rc;
cbdata.status = EFC_STATUS_INVALID;
cbdata.ext_status = EFC_STATUS_INVALID;
cbdata.els_rsp = els->io.rsp;
efc_log_err(efc, "efc_els_send failed: %d\n", rc);
efc_els_io_cleanup(els, EFC_EVT_SRRS_ELS_REQ_FAIL, &cbdata);
return rc;
}
static void
efc_els_retry(struct efc_els_io_req *els)
{
struct efc *efc;
struct efc_node_cb cbdata;
u32 rc;
efc = els->node->efc;
cbdata.status = EFC_STATUS_INVALID;
cbdata.ext_status = EFC_STATUS_INVALID;
cbdata.els_rsp = els->io.rsp;
if (els->els_retries_remaining) {
els->els_retries_remaining--;
rc = efc->tt.send_els(efc, &els->io);
} else {
rc = -EIO;
}
if (rc) {
efc_log_err(efc, "ELS retries exhausted\n");
efc_els_io_cleanup(els, EFC_EVT_SRRS_ELS_REQ_FAIL, &cbdata);
}
}
static int
efc_els_acc_cb(void *arg, u32 length, int status, u32 ext_status)
{
struct efc_els_io_req *els;
struct efc_node *node;
struct efc *efc;
struct efc_node_cb cbdata;
els = arg;
node = els->node;
efc = node->efc;
cbdata.status = status;
cbdata.ext_status = ext_status;
cbdata.header = NULL;
cbdata.els_rsp = els->io.rsp;
/* Post node event */
switch (status) {
case SLI4_FC_WCQE_STATUS_SUCCESS:
efc_els_io_cleanup(els, EFC_EVT_SRRS_ELS_CMPL_OK, &cbdata);
break;
default: /* Other error */
efc_log_warn(efc, "[%s] %-8s failed status x%x, ext x%x\n",
node->display_name, els->display_name,
status, ext_status);
efc_els_io_cleanup(els, EFC_EVT_SRRS_ELS_CMPL_FAIL, &cbdata);
break;
}
return 0;
}
static int
efc_els_send_rsp(struct efc_els_io_req *els, u32 rsplen)
{
int rc = 0;
struct efc_node_cb cbdata;
struct efc_node *node = els->node;
struct efc *efc = node->efc;
/* increment ELS completion counter */
node->els_cmpl_cnt++;
els->io.io_type = EFC_DISC_IO_ELS_RESP;
els->cb = efc_els_acc_cb;
/* Prepare the IO request details */
els->io.xmit_len = rsplen;
els->io.rsp_len = els->io.rsp.size;
els->io.rpi = node->rnode.indicator;
els->io.vpi = node->nport->indicator;
if (node->nport->fc_id != U32_MAX)
els->io.s_id = node->nport->fc_id;
else
els->io.s_id = els->io.iparam.els.s_id;
els->io.d_id = node->rnode.fc_id;
if (node->attached)
els->io.rpi_registered = true;
rc = efc->tt.send_els(efc, &els->io);
if (!rc)
return rc;
cbdata.status = EFC_STATUS_INVALID;
cbdata.ext_status = EFC_STATUS_INVALID;
cbdata.els_rsp = els->io.rsp;
efc_els_io_cleanup(els, EFC_EVT_SRRS_ELS_CMPL_FAIL, &cbdata);
return rc;
}
int
efc_send_plogi(struct efc_node *node)
{
struct efc_els_io_req *els;
struct efc *efc = node->efc;
struct fc_els_flogi *plogi;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*plogi));
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
els->display_name = "plogi";
/* Build PLOGI request */
plogi = els->io.req.virt;
memcpy(plogi, node->nport->service_params, sizeof(*plogi));
plogi->fl_cmd = ELS_PLOGI;
memset(plogi->_fl_resvd, 0, sizeof(plogi->_fl_resvd));
return efc_els_send_req(node, els, EFC_DISC_IO_ELS_REQ);
}
int
efc_send_flogi(struct efc_node *node)
{
struct efc_els_io_req *els;
struct efc *efc;
struct fc_els_flogi *flogi;
efc = node->efc;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*flogi));
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
els->display_name = "flogi";
/* Build FLOGI request */
flogi = els->io.req.virt;
memcpy(flogi, node->nport->service_params, sizeof(*flogi));
flogi->fl_cmd = ELS_FLOGI;
memset(flogi->_fl_resvd, 0, sizeof(flogi->_fl_resvd));
return efc_els_send_req(node, els, EFC_DISC_IO_ELS_REQ);
}
int
efc_send_fdisc(struct efc_node *node)
{
struct efc_els_io_req *els;
struct efc *efc;
struct fc_els_flogi *fdisc;
efc = node->efc;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*fdisc));
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
els->display_name = "fdisc";
/* Build FDISC request */
fdisc = els->io.req.virt;
memcpy(fdisc, node->nport->service_params, sizeof(*fdisc));
fdisc->fl_cmd = ELS_FDISC;
memset(fdisc->_fl_resvd, 0, sizeof(fdisc->_fl_resvd));
return efc_els_send_req(node, els, EFC_DISC_IO_ELS_REQ);
}
int
efc_send_prli(struct efc_node *node)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els;
struct {
struct fc_els_prli prli;
struct fc_els_spp spp;
} *pp;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*pp));
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
els->display_name = "prli";
/* Build PRLI request */
pp = els->io.req.virt;
memset(pp, 0, sizeof(*pp));
pp->prli.prli_cmd = ELS_PRLI;
pp->prli.prli_spp_len = 16;
pp->prli.prli_len = cpu_to_be16(sizeof(*pp));
pp->spp.spp_type = FC_TYPE_FCP;
pp->spp.spp_type_ext = 0;
pp->spp.spp_flags = FC_SPP_EST_IMG_PAIR;
pp->spp.spp_params = cpu_to_be32(FCP_SPPF_RD_XRDY_DIS |
(node->nport->enable_ini ?
FCP_SPPF_INIT_FCN : 0) |
(node->nport->enable_tgt ?
FCP_SPPF_TARG_FCN : 0));
return efc_els_send_req(node, els, EFC_DISC_IO_ELS_REQ);
}
int
efc_send_logo(struct efc_node *node)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els;
struct fc_els_logo *logo;
struct fc_els_flogi *sparams;
node_els_trace();
sparams = (struct fc_els_flogi *)node->nport->service_params;
els = efc_els_io_alloc(node, sizeof(*logo));
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
els->display_name = "logo";
/* Build LOGO request */
logo = els->io.req.virt;
memset(logo, 0, sizeof(*logo));
logo->fl_cmd = ELS_LOGO;
hton24(logo->fl_n_port_id, node->rnode.nport->fc_id);
logo->fl_n_port_wwn = sparams->fl_wwpn;
return efc_els_send_req(node, els, EFC_DISC_IO_ELS_REQ);
}
int
efc_send_adisc(struct efc_node *node)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els;
struct fc_els_adisc *adisc;
struct fc_els_flogi *sparams;
struct efc_nport *nport = node->nport;
node_els_trace();
sparams = (struct fc_els_flogi *)node->nport->service_params;
els = efc_els_io_alloc(node, sizeof(*adisc));
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
els->display_name = "adisc";
/* Build ADISC request */
adisc = els->io.req.virt;
memset(adisc, 0, sizeof(*adisc));
adisc->adisc_cmd = ELS_ADISC;
hton24(adisc->adisc_hard_addr, nport->fc_id);
adisc->adisc_wwpn = sparams->fl_wwpn;
adisc->adisc_wwnn = sparams->fl_wwnn;
hton24(adisc->adisc_port_id, node->rnode.nport->fc_id);
return efc_els_send_req(node, els, EFC_DISC_IO_ELS_REQ);
}
int
efc_send_scr(struct efc_node *node)
{
struct efc_els_io_req *els;
struct efc *efc = node->efc;
struct fc_els_scr *req;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*req));
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
els->display_name = "scr";
req = els->io.req.virt;
memset(req, 0, sizeof(*req));
req->scr_cmd = ELS_SCR;
req->scr_reg_func = ELS_SCRF_FULL;
return efc_els_send_req(node, els, EFC_DISC_IO_ELS_REQ);
}
int
efc_send_ls_rjt(struct efc_node *node, u32 ox_id, u32 reason_code,
u32 reason_code_expl, u32 vendor_unique)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els = NULL;
struct fc_els_ls_rjt *rjt;
els = efc_els_io_alloc(node, sizeof(*rjt));
if (!els) {
efc_log_err(efc, "els IO alloc failed\n");
return -EIO;
}
node_els_trace();
els->display_name = "ls_rjt";
memset(&els->io.iparam, 0, sizeof(els->io.iparam));
els->io.iparam.els.ox_id = ox_id;
rjt = els->io.req.virt;
memset(rjt, 0, sizeof(*rjt));
rjt->er_cmd = ELS_LS_RJT;
rjt->er_reason = reason_code;
rjt->er_explan = reason_code_expl;
return efc_els_send_rsp(els, sizeof(*rjt));
}
int
efc_send_plogi_acc(struct efc_node *node, u32 ox_id)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els = NULL;
struct fc_els_flogi *plogi;
struct fc_els_flogi *req = (struct fc_els_flogi *)node->service_params;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*plogi));
if (!els) {
efc_log_err(efc, "els IO alloc failed\n");
return -EIO;
}
els->display_name = "plogi_acc";
memset(&els->io.iparam, 0, sizeof(els->io.iparam));
els->io.iparam.els.ox_id = ox_id;
plogi = els->io.req.virt;
/* copy our port's service parameters to payload */
memcpy(plogi, node->nport->service_params, sizeof(*plogi));
plogi->fl_cmd = ELS_LS_ACC;
memset(plogi->_fl_resvd, 0, sizeof(plogi->_fl_resvd));
/* Set Application header support bit if requested */
if (req->fl_csp.sp_features & cpu_to_be16(FC_SP_FT_BCAST))
plogi->fl_csp.sp_features |= cpu_to_be16(FC_SP_FT_BCAST);
return efc_els_send_rsp(els, sizeof(*plogi));
}
int
efc_send_flogi_p2p_acc(struct efc_node *node, u32 ox_id, u32 s_id)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els = NULL;
struct fc_els_flogi *flogi;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*flogi));
if (!els) {
efc_log_err(efc, "els IO alloc failed\n");
return -EIO;
}
els->display_name = "flogi_p2p_acc";
memset(&els->io.iparam, 0, sizeof(els->io.iparam));
els->io.iparam.els.ox_id = ox_id;
els->io.iparam.els.s_id = s_id;
flogi = els->io.req.virt;
/* copy our port's service parameters to payload */
memcpy(flogi, node->nport->service_params, sizeof(*flogi));
flogi->fl_cmd = ELS_LS_ACC;
memset(flogi->_fl_resvd, 0, sizeof(flogi->_fl_resvd));
memset(flogi->fl_cssp, 0, sizeof(flogi->fl_cssp));
return efc_els_send_rsp(els, sizeof(*flogi));
}
int
efc_send_prli_acc(struct efc_node *node, u32 ox_id)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els = NULL;
struct {
struct fc_els_prli prli;
struct fc_els_spp spp;
} *pp;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*pp));
if (!els) {
efc_log_err(efc, "els IO alloc failed\n");
return -EIO;
}
els->display_name = "prli_acc";
memset(&els->io.iparam, 0, sizeof(els->io.iparam));
els->io.iparam.els.ox_id = ox_id;
pp = els->io.req.virt;
memset(pp, 0, sizeof(*pp));
pp->prli.prli_cmd = ELS_LS_ACC;
pp->prli.prli_spp_len = 0x10;
pp->prli.prli_len = cpu_to_be16(sizeof(*pp));
pp->spp.spp_type = FC_TYPE_FCP;
pp->spp.spp_type_ext = 0;
pp->spp.spp_flags = FC_SPP_EST_IMG_PAIR | FC_SPP_RESP_ACK;
pp->spp.spp_params = cpu_to_be32(FCP_SPPF_RD_XRDY_DIS |
(node->nport->enable_ini ?
FCP_SPPF_INIT_FCN : 0) |
(node->nport->enable_tgt ?
FCP_SPPF_TARG_FCN : 0));
return efc_els_send_rsp(els, sizeof(*pp));
}
int
efc_send_prlo_acc(struct efc_node *node, u32 ox_id)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els = NULL;
struct {
struct fc_els_prlo prlo;
struct fc_els_spp spp;
} *pp;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*pp));
if (!els) {
efc_log_err(efc, "els IO alloc failed\n");
return -EIO;
}
els->display_name = "prlo_acc";
memset(&els->io.iparam, 0, sizeof(els->io.iparam));
els->io.iparam.els.ox_id = ox_id;
pp = els->io.req.virt;
memset(pp, 0, sizeof(*pp));
pp->prlo.prlo_cmd = ELS_LS_ACC;
pp->prlo.prlo_obs = 0x10;
pp->prlo.prlo_len = cpu_to_be16(sizeof(*pp));
pp->spp.spp_type = FC_TYPE_FCP;
pp->spp.spp_type_ext = 0;
pp->spp.spp_flags = FC_SPP_RESP_ACK;
return efc_els_send_rsp(els, sizeof(*pp));
}
int
efc_send_ls_acc(struct efc_node *node, u32 ox_id)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els = NULL;
struct fc_els_ls_acc *acc;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*acc));
if (!els) {
efc_log_err(efc, "els IO alloc failed\n");
return -EIO;
}
els->display_name = "ls_acc";
memset(&els->io.iparam, 0, sizeof(els->io.iparam));
els->io.iparam.els.ox_id = ox_id;
acc = els->io.req.virt;
memset(acc, 0, sizeof(*acc));
acc->la_cmd = ELS_LS_ACC;
return efc_els_send_rsp(els, sizeof(*acc));
}
int
efc_send_logo_acc(struct efc_node *node, u32 ox_id)
{
struct efc_els_io_req *els = NULL;
struct efc *efc = node->efc;
struct fc_els_ls_acc *logo;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*logo));
if (!els) {
efc_log_err(efc, "els IO alloc failed\n");
return -EIO;
}
els->display_name = "logo_acc";
memset(&els->io.iparam, 0, sizeof(els->io.iparam));
els->io.iparam.els.ox_id = ox_id;
logo = els->io.req.virt;
memset(logo, 0, sizeof(*logo));
logo->la_cmd = ELS_LS_ACC;
return efc_els_send_rsp(els, sizeof(*logo));
}
int
efc_send_adisc_acc(struct efc_node *node, u32 ox_id)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els = NULL;
struct fc_els_adisc *adisc;
struct fc_els_flogi *sparams;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*adisc));
if (!els) {
efc_log_err(efc, "els IO alloc failed\n");
return -EIO;
}
els->display_name = "adisc_acc";
/* Go ahead and send the ELS_ACC */
memset(&els->io.iparam, 0, sizeof(els->io.iparam));
els->io.iparam.els.ox_id = ox_id;
sparams = (struct fc_els_flogi *)node->nport->service_params;
adisc = els->io.req.virt;
memset(adisc, 0, sizeof(*adisc));
adisc->adisc_cmd = ELS_LS_ACC;
adisc->adisc_wwpn = sparams->fl_wwpn;
adisc->adisc_wwnn = sparams->fl_wwnn;
hton24(adisc->adisc_port_id, node->rnode.nport->fc_id);
return efc_els_send_rsp(els, sizeof(*adisc));
}
static inline void
fcct_build_req_header(struct fc_ct_hdr *hdr, u16 cmd, u16 max_size)
{
hdr->ct_rev = FC_CT_REV;
hdr->ct_fs_type = FC_FST_DIR;
hdr->ct_fs_subtype = FC_NS_SUBTYPE;
hdr->ct_options = 0;
hdr->ct_cmd = cpu_to_be16(cmd);
/* words */
hdr->ct_mr_size = cpu_to_be16(max_size / (sizeof(u32)));
hdr->ct_reason = 0;
hdr->ct_explan = 0;
hdr->ct_vendor = 0;
}
int
efc_ns_send_rftid(struct efc_node *node)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els;
struct {
struct fc_ct_hdr hdr;
struct fc_ns_rft_id rftid;
} *ct;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*ct));
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
els->io.iparam.ct.r_ctl = FC_RCTL_ELS_REQ;
els->io.iparam.ct.type = FC_TYPE_CT;
els->io.iparam.ct.df_ctl = 0;
els->io.iparam.ct.timeout = EFC_FC_ELS_SEND_DEFAULT_TIMEOUT;
els->display_name = "rftid";
ct = els->io.req.virt;
memset(ct, 0, sizeof(*ct));
fcct_build_req_header(&ct->hdr, FC_NS_RFT_ID,
sizeof(struct fc_ns_rft_id));
hton24(ct->rftid.fr_fid.fp_fid, node->rnode.nport->fc_id);
ct->rftid.fr_fts.ff_type_map[FC_TYPE_FCP / FC_NS_BPW] =
cpu_to_be32(1 << (FC_TYPE_FCP % FC_NS_BPW));
return efc_els_send_req(node, els, EFC_DISC_IO_CT_REQ);
}
int
efc_ns_send_rffid(struct efc_node *node)
{
struct efc *efc = node->efc;
struct efc_els_io_req *els;
struct {
struct fc_ct_hdr hdr;
struct fc_ns_rff_id rffid;
} *ct;
node_els_trace();
els = efc_els_io_alloc(node, sizeof(*ct));
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
els->io.iparam.ct.r_ctl = FC_RCTL_ELS_REQ;
els->io.iparam.ct.type = FC_TYPE_CT;
els->io.iparam.ct.df_ctl = 0;
els->io.iparam.ct.timeout = EFC_FC_ELS_SEND_DEFAULT_TIMEOUT;
els->display_name = "rffid";
ct = els->io.req.virt;
memset(ct, 0, sizeof(*ct));
fcct_build_req_header(&ct->hdr, FC_NS_RFF_ID,
sizeof(struct fc_ns_rff_id));
hton24(ct->rffid.fr_fid.fp_fid, node->rnode.nport->fc_id);
if (node->nport->enable_ini)
ct->rffid.fr_feat |= FCP_FEAT_INIT;
if (node->nport->enable_tgt)
ct->rffid.fr_feat |= FCP_FEAT_TARG;
ct->rffid.fr_type = FC_TYPE_FCP;
return efc_els_send_req(node, els, EFC_DISC_IO_CT_REQ);
}
int
efc_ns_send_gidpt(struct efc_node *node)
{
struct efc_els_io_req *els = NULL;
struct efc *efc = node->efc;
struct {
struct fc_ct_hdr hdr;
struct fc_ns_gid_pt gidpt;
} *ct;
node_els_trace();
els = efc_els_io_alloc_size(node, sizeof(*ct), EFC_ELS_GID_PT_RSP_LEN);
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
els->io.iparam.ct.r_ctl = FC_RCTL_ELS_REQ;
els->io.iparam.ct.type = FC_TYPE_CT;
els->io.iparam.ct.df_ctl = 0;
els->io.iparam.ct.timeout = EFC_FC_ELS_SEND_DEFAULT_TIMEOUT;
els->display_name = "gidpt";
ct = els->io.req.virt;
memset(ct, 0, sizeof(*ct));
fcct_build_req_header(&ct->hdr, FC_NS_GID_PT,
sizeof(struct fc_ns_gid_pt));
ct->gidpt.fn_pt_type = FC_TYPE_FCP;
return efc_els_send_req(node, els, EFC_DISC_IO_CT_REQ);
}
void
efc_els_io_cleanup(struct efc_els_io_req *els, int evt, void *arg)
{
/* don't want further events that could come; e.g. abort requests
* from the node state machine; thus, disable state machine
*/
els->els_req_free = true;
efc_node_post_els_resp(els->node, evt, arg);
efc_els_io_free(els);
}
static int
efc_ct_acc_cb(void *arg, u32 length, int status, u32 ext_status)
{
struct efc_els_io_req *els = arg;
efc_els_io_free(els);
return 0;
}
int
efc_send_ct_rsp(struct efc *efc, struct efc_node *node, u16 ox_id,
struct fc_ct_hdr *ct_hdr, u32 cmd_rsp_code,
u32 reason_code, u32 reason_code_explanation)
{
struct efc_els_io_req *els = NULL;
struct fc_ct_hdr *rsp = NULL;
els = efc_els_io_alloc(node, 256);
if (!els) {
efc_log_err(efc, "IO alloc failed\n");
return -EIO;
}
rsp = els->io.rsp.virt;
*rsp = *ct_hdr;
fcct_build_req_header(rsp, cmd_rsp_code, 0);
rsp->ct_reason = reason_code;
rsp->ct_explan = reason_code_explanation;
els->display_name = "ct_rsp";
els->cb = efc_ct_acc_cb;
/* Prepare the IO request details */
els->io.io_type = EFC_DISC_IO_CT_RESP;
els->io.xmit_len = sizeof(*rsp);
els->io.rpi = node->rnode.indicator;
els->io.d_id = node->rnode.fc_id;
memset(&els->io.iparam, 0, sizeof(els->io.iparam));
els->io.iparam.ct.ox_id = ox_id;
els->io.iparam.ct.r_ctl = 3;
els->io.iparam.ct.type = FC_TYPE_CT;
els->io.iparam.ct.df_ctl = 0;
els->io.iparam.ct.timeout = 5;
if (efc->tt.send_els(efc, &els->io)) {
efc_els_io_free(els);
return -EIO;
}
return 0;
}
int
efc_send_bls_acc(struct efc_node *node, struct fc_frame_header *hdr)
{
struct sli_bls_params bls;
struct fc_ba_acc *acc;
struct efc *efc = node->efc;
memset(&bls, 0, sizeof(bls));
bls.ox_id = be16_to_cpu(hdr->fh_ox_id);
bls.rx_id = be16_to_cpu(hdr->fh_rx_id);
bls.s_id = ntoh24(hdr->fh_d_id);
bls.d_id = node->rnode.fc_id;
bls.rpi = node->rnode.indicator;
bls.vpi = node->nport->indicator;
acc = (void *)bls.payload;
acc->ba_ox_id = cpu_to_be16(bls.ox_id);
acc->ba_rx_id = cpu_to_be16(bls.rx_id);
acc->ba_high_seq_cnt = cpu_to_be16(U16_MAX);
return efc->tt.send_bls(efc, FC_RCTL_BA_ACC, &bls);
}
|