1 /********************************************************************** 2 * Author: Cavium, Inc. 3 * 4 * Contact: support@cavium.com 5 * Please include "LiquidIO" in the subject. 6 * 7 * Copyright (c) 2003-2016 Cavium, Inc. 8 * 9 * This file is free software; you can redistribute it and/or modify 10 * it under the terms of the GNU General Public License, Version 2, as 11 * published by the Free Software Foundation. 12 * 13 * This file is distributed in the hope that it will be useful, but 14 * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty 15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or 16 * NONINFRINGEMENT. See the GNU General Public License for more details. 17 ***********************************************************************/ 18 /*! \file liquidio_common.h 19 * \brief Common: Structures and macros used in PCI-NIC package by core and 20 * host driver. 21 */ 22 23 #ifndef __LIQUIDIO_COMMON_H__ 24 #define __LIQUIDIO_COMMON_H__ 25 26 #include "octeon_config.h" 27 28 #define LIQUIDIO_PACKAGE "" 29 #define LIQUIDIO_BASE_MAJOR_VERSION 1 30 #define LIQUIDIO_BASE_MINOR_VERSION 7 31 #define LIQUIDIO_BASE_MICRO_VERSION 0 32 #define LIQUIDIO_BASE_VERSION __stringify(LIQUIDIO_BASE_MAJOR_VERSION) "." \ 33 __stringify(LIQUIDIO_BASE_MINOR_VERSION) 34 #define LIQUIDIO_MICRO_VERSION "." __stringify(LIQUIDIO_BASE_MICRO_VERSION) 35 #define LIQUIDIO_VERSION LIQUIDIO_PACKAGE \ 36 __stringify(LIQUIDIO_BASE_MAJOR_VERSION) "." \ 37 __stringify(LIQUIDIO_BASE_MINOR_VERSION) \ 38 "." __stringify(LIQUIDIO_BASE_MICRO_VERSION) 39 40 struct lio_version { 41 u16 major; 42 u16 minor; 43 u16 micro; 44 u16 reserved; 45 }; 46 47 #define CONTROL_IQ 0 48 /** Tag types used by Octeon cores in its work. */ 49 enum octeon_tag_type { 50 ORDERED_TAG = 0, 51 ATOMIC_TAG = 1, 52 NULL_TAG = 2, 53 NULL_NULL_TAG = 3 54 }; 55 56 /* pre-defined host->NIC tag values */ 57 #define LIO_CONTROL (0x11111110) 58 #define LIO_DATA(i) (0x11111111 + (i)) 59 60 /* Opcodes used by host driver/apps to perform operations on the core. 61 * These are used to identify the major subsystem that the operation 62 * is for. 63 */ 64 #define OPCODE_CORE 0 /* used for generic core operations */ 65 #define OPCODE_NIC 1 /* used for NIC operations */ 66 /* Subcodes are used by host driver/apps to identify the sub-operation 67 * for the core. They only need to by unique for a given subsystem. 68 */ 69 #define OPCODE_SUBCODE(op, sub) ((((op) & 0x0f) << 8) | ((sub) & 0x7f)) 70 71 /** OPCODE_CORE subcodes. For future use. */ 72 73 /** OPCODE_NIC subcodes */ 74 75 /* This subcode is sent by core PCI driver to indicate cores are ready. */ 76 #define OPCODE_NIC_CORE_DRV_ACTIVE 0x01 77 #define OPCODE_NIC_NW_DATA 0x02 /* network packet data */ 78 #define OPCODE_NIC_CMD 0x03 79 #define OPCODE_NIC_INFO 0x04 80 #define OPCODE_NIC_PORT_STATS 0x05 81 #define OPCODE_NIC_MDIO45 0x06 82 #define OPCODE_NIC_TIMESTAMP 0x07 83 #define OPCODE_NIC_INTRMOD_CFG 0x08 84 #define OPCODE_NIC_IF_CFG 0x09 85 #define OPCODE_NIC_VF_DRV_NOTICE 0x0A 86 #define OPCODE_NIC_INTRMOD_PARAMS 0x0B 87 #define OPCODE_NIC_SYNC_OCTEON_TIME 0x14 88 #define VF_DRV_LOADED 1 89 #define VF_DRV_REMOVED -1 90 #define VF_DRV_MACADDR_CHANGED 2 91 92 #define OPCODE_NIC_VF_REP_PKT 0x15 93 #define OPCODE_NIC_VF_REP_CMD 0x16 94 95 #define CORE_DRV_TEST_SCATTER_OP 0xFFF5 96 97 /* Application codes advertised by the core driver initialization packet. */ 98 #define CVM_DRV_APP_START 0x0 99 #define CVM_DRV_NO_APP 0 100 #define CVM_DRV_APP_COUNT 0x2 101 #define CVM_DRV_BASE_APP (CVM_DRV_APP_START + 0x0) 102 #define CVM_DRV_NIC_APP (CVM_DRV_APP_START + 0x1) 103 #define CVM_DRV_INVALID_APP (CVM_DRV_APP_START + 0x2) 104 #define CVM_DRV_APP_END (CVM_DRV_INVALID_APP - 1) 105 106 #define BYTES_PER_DHLEN_UNIT 8 107 #define MAX_REG_CNT 2000000U 108 #define INTRNAMSIZ 32 109 #define IRQ_NAME_OFF(i) ((i) * INTRNAMSIZ) 110 #define MAX_IOQ_INTERRUPTS_PER_PF (64 * 2) 111 #define MAX_IOQ_INTERRUPTS_PER_VF (8 * 2) 112 113 #define SCR2_BIT_FW_LOADED 63 114 115 /* App specific capabilities from firmware to pf driver */ 116 #define LIQUIDIO_TIME_SYNC_CAP 0x1 117 #define LIQUIDIO_SWITCHDEV_CAP 0x2 118 119 static inline u32 incr_index(u32 index, u32 count, u32 max) 120 { 121 if ((index + count) >= max) 122 index = index + count - max; 123 else 124 index += count; 125 126 return index; 127 } 128 129 #define OCT_BOARD_NAME 32 130 #define OCT_SERIAL_LEN 64 131 132 /* Structure used by core driver to send indication that the Octeon 133 * application is ready. 134 */ 135 struct octeon_core_setup { 136 u64 corefreq; 137 138 char boardname[OCT_BOARD_NAME]; 139 140 char board_serial_number[OCT_SERIAL_LEN]; 141 142 u64 board_rev_major; 143 144 u64 board_rev_minor; 145 146 }; 147 148 /*--------------------------- SCATTER GATHER ENTRY -----------------------*/ 149 150 /* The Scatter-Gather List Entry. The scatter or gather component used with 151 * a Octeon input instruction has this format. 152 */ 153 struct octeon_sg_entry { 154 /** The first 64 bit gives the size of data in each dptr.*/ 155 union { 156 u16 size[4]; 157 u64 size64; 158 } u; 159 160 /** The 4 dptr pointers for this entry. */ 161 u64 ptr[4]; 162 163 }; 164 165 #define OCT_SG_ENTRY_SIZE (sizeof(struct octeon_sg_entry)) 166 167 /* \brief Add size to gather list 168 * @param sg_entry scatter/gather entry 169 * @param size size to add 170 * @param pos position to add it. 171 */ 172 static inline void add_sg_size(struct octeon_sg_entry *sg_entry, 173 u16 size, 174 u32 pos) 175 { 176 #ifdef __BIG_ENDIAN_BITFIELD 177 sg_entry->u.size[pos] = size; 178 #else 179 sg_entry->u.size[3 - pos] = size; 180 #endif 181 } 182 183 /*------------------------- End Scatter/Gather ---------------------------*/ 184 185 #define OCTNET_FRM_LENGTH_SIZE 8 186 187 #define OCTNET_FRM_PTP_HEADER_SIZE 8 188 189 #define OCTNET_FRM_HEADER_SIZE 22 /* VLAN + Ethernet */ 190 191 #define OCTNET_MIN_FRM_SIZE 64 192 193 #define OCTNET_MAX_FRM_SIZE (16000 + OCTNET_FRM_HEADER_SIZE) 194 195 #define OCTNET_DEFAULT_FRM_SIZE (1500 + OCTNET_FRM_HEADER_SIZE) 196 197 /** NIC Commands are sent using this Octeon Input Queue */ 198 #define OCTNET_CMD_Q 0 199 200 /* NIC Command types */ 201 #define OCTNET_CMD_CHANGE_MTU 0x1 202 #define OCTNET_CMD_CHANGE_MACADDR 0x2 203 #define OCTNET_CMD_CHANGE_DEVFLAGS 0x3 204 #define OCTNET_CMD_RX_CTL 0x4 205 206 #define OCTNET_CMD_SET_MULTI_LIST 0x5 207 #define OCTNET_CMD_CLEAR_STATS 0x6 208 209 /* command for setting the speed, duplex & autoneg */ 210 #define OCTNET_CMD_SET_SETTINGS 0x7 211 #define OCTNET_CMD_SET_FLOW_CTL 0x8 212 213 #define OCTNET_CMD_MDIO_READ_WRITE 0x9 214 #define OCTNET_CMD_GPIO_ACCESS 0xA 215 #define OCTNET_CMD_LRO_ENABLE 0xB 216 #define OCTNET_CMD_LRO_DISABLE 0xC 217 #define OCTNET_CMD_SET_RSS 0xD 218 #define OCTNET_CMD_WRITE_SA 0xE 219 #define OCTNET_CMD_DELETE_SA 0xF 220 #define OCTNET_CMD_UPDATE_SA 0x12 221 222 #define OCTNET_CMD_TNL_RX_CSUM_CTL 0x10 223 #define OCTNET_CMD_TNL_TX_CSUM_CTL 0x11 224 #define OCTNET_CMD_IPSECV2_AH_ESP_CTL 0x13 225 #define OCTNET_CMD_VERBOSE_ENABLE 0x14 226 #define OCTNET_CMD_VERBOSE_DISABLE 0x15 227 228 #define OCTNET_CMD_VLAN_FILTER_CTL 0x16 229 #define OCTNET_CMD_ADD_VLAN_FILTER 0x17 230 #define OCTNET_CMD_DEL_VLAN_FILTER 0x18 231 #define OCTNET_CMD_VXLAN_PORT_CONFIG 0x19 232 233 #define OCTNET_CMD_ID_ACTIVE 0x1a 234 235 #define OCTNET_CMD_SET_UC_LIST 0x1b 236 #define OCTNET_CMD_SET_VF_LINKSTATE 0x1c 237 238 #define OCTNET_CMD_QUEUE_COUNT_CTL 0x1f 239 240 #define OCTNET_CMD_VXLAN_PORT_ADD 0x0 241 #define OCTNET_CMD_VXLAN_PORT_DEL 0x1 242 #define OCTNET_CMD_RXCSUM_ENABLE 0x0 243 #define OCTNET_CMD_RXCSUM_DISABLE 0x1 244 #define OCTNET_CMD_TXCSUM_ENABLE 0x0 245 #define OCTNET_CMD_TXCSUM_DISABLE 0x1 246 #define OCTNET_CMD_VLAN_FILTER_ENABLE 0x1 247 #define OCTNET_CMD_VLAN_FILTER_DISABLE 0x0 248 249 #define LIO_CMD_WAIT_TM 100 250 251 /* RX(packets coming from wire) Checksum verification flags */ 252 /* TCP/UDP csum */ 253 #define CNNIC_L4SUM_VERIFIED 0x1 254 #define CNNIC_IPSUM_VERIFIED 0x2 255 #define CNNIC_TUN_CSUM_VERIFIED 0x4 256 #define CNNIC_CSUM_VERIFIED (CNNIC_IPSUM_VERIFIED | CNNIC_L4SUM_VERIFIED) 257 258 /*LROIPV4 and LROIPV6 Flags*/ 259 #define OCTNIC_LROIPV4 0x1 260 #define OCTNIC_LROIPV6 0x2 261 262 /* Interface flags communicated between host driver and core app. */ 263 enum octnet_ifflags { 264 OCTNET_IFFLAG_PROMISC = 0x01, 265 OCTNET_IFFLAG_ALLMULTI = 0x02, 266 OCTNET_IFFLAG_MULTICAST = 0x04, 267 OCTNET_IFFLAG_BROADCAST = 0x08, 268 OCTNET_IFFLAG_UNICAST = 0x10 269 }; 270 271 /* wqe 272 * --------------- 0 273 * | wqe word0-3 | 274 * --------------- 32 275 * | PCI IH | 276 * --------------- 40 277 * | RPTR | 278 * --------------- 48 279 * | PCI IRH | 280 * --------------- 56 281 * | OCT_NET_CMD | 282 * --------------- 64 283 * | Addtl 8-BData | 284 * | | 285 * --------------- 286 */ 287 288 union octnet_cmd { 289 u64 u64; 290 291 struct { 292 #ifdef __BIG_ENDIAN_BITFIELD 293 u64 cmd:5; 294 295 u64 more:6; /* How many udd words follow the command */ 296 297 u64 reserved:29; 298 299 u64 param1:16; 300 301 u64 param2:8; 302 303 #else 304 305 u64 param2:8; 306 307 u64 param1:16; 308 309 u64 reserved:29; 310 311 u64 more:6; 312 313 u64 cmd:5; 314 315 #endif 316 } s; 317 318 }; 319 320 #define OCTNET_CMD_SIZE (sizeof(union octnet_cmd)) 321 322 /*pkiih3 + irh + ossp[0] + ossp[1] + rdp + rptr = 40 bytes */ 323 #define LIO_SOFTCMDRESP_IH2 40 324 #define LIO_SOFTCMDRESP_IH3 (40 + 8) 325 326 #define LIO_PCICMD_O2 24 327 #define LIO_PCICMD_O3 (24 + 8) 328 329 /* Instruction Header(DPI) - for OCTEON-III models */ 330 struct octeon_instr_ih3 { 331 #ifdef __BIG_ENDIAN_BITFIELD 332 333 /** Reserved3 */ 334 u64 reserved3:1; 335 336 /** Gather indicator 1=gather*/ 337 u64 gather:1; 338 339 /** Data length OR no. of entries in gather list */ 340 u64 dlengsz:14; 341 342 /** Front Data size */ 343 u64 fsz:6; 344 345 /** Reserved2 */ 346 u64 reserved2:4; 347 348 /** PKI port kind - PKIND */ 349 u64 pkind:6; 350 351 /** Reserved1 */ 352 u64 reserved1:32; 353 354 #else 355 /** Reserved1 */ 356 u64 reserved1:32; 357 358 /** PKI port kind - PKIND */ 359 u64 pkind:6; 360 361 /** Reserved2 */ 362 u64 reserved2:4; 363 364 /** Front Data size */ 365 u64 fsz:6; 366 367 /** Data length OR no. of entries in gather list */ 368 u64 dlengsz:14; 369 370 /** Gather indicator 1=gather*/ 371 u64 gather:1; 372 373 /** Reserved3 */ 374 u64 reserved3:1; 375 376 #endif 377 }; 378 379 /* Optional PKI Instruction Header(PKI IH) - for OCTEON-III models */ 380 /** BIG ENDIAN format. */ 381 struct octeon_instr_pki_ih3 { 382 #ifdef __BIG_ENDIAN_BITFIELD 383 384 /** Wider bit */ 385 u64 w:1; 386 387 /** Raw mode indicator 1 = RAW */ 388 u64 raw:1; 389 390 /** Use Tag */ 391 u64 utag:1; 392 393 /** Use QPG */ 394 u64 uqpg:1; 395 396 /** Reserved2 */ 397 u64 reserved2:1; 398 399 /** Parse Mode */ 400 u64 pm:3; 401 402 /** Skip Length */ 403 u64 sl:8; 404 405 /** Use Tag Type */ 406 u64 utt:1; 407 408 /** Tag type */ 409 u64 tagtype:2; 410 411 /** Reserved1 */ 412 u64 reserved1:2; 413 414 /** QPG Value */ 415 u64 qpg:11; 416 417 /** Tag Value */ 418 u64 tag:32; 419 420 #else 421 422 /** Tag Value */ 423 u64 tag:32; 424 425 /** QPG Value */ 426 u64 qpg:11; 427 428 /** Reserved1 */ 429 u64 reserved1:2; 430 431 /** Tag type */ 432 u64 tagtype:2; 433 434 /** Use Tag Type */ 435 u64 utt:1; 436 437 /** Skip Length */ 438 u64 sl:8; 439 440 /** Parse Mode */ 441 u64 pm:3; 442 443 /** Reserved2 */ 444 u64 reserved2:1; 445 446 /** Use QPG */ 447 u64 uqpg:1; 448 449 /** Use Tag */ 450 u64 utag:1; 451 452 /** Raw mode indicator 1 = RAW */ 453 u64 raw:1; 454 455 /** Wider bit */ 456 u64 w:1; 457 #endif 458 459 }; 460 461 /** Instruction Header */ 462 struct octeon_instr_ih2 { 463 #ifdef __BIG_ENDIAN_BITFIELD 464 /** Raw mode indicator 1 = RAW */ 465 u64 raw:1; 466 467 /** Gather indicator 1=gather*/ 468 u64 gather:1; 469 470 /** Data length OR no. of entries in gather list */ 471 u64 dlengsz:14; 472 473 /** Front Data size */ 474 u64 fsz:6; 475 476 /** Packet Order / Work Unit selection (1 of 8)*/ 477 u64 qos:3; 478 479 /** Core group selection (1 of 16) */ 480 u64 grp:4; 481 482 /** Short Raw Packet Indicator 1=short raw pkt */ 483 u64 rs:1; 484 485 /** Tag type */ 486 u64 tagtype:2; 487 488 /** Tag Value */ 489 u64 tag:32; 490 #else 491 /** Tag Value */ 492 u64 tag:32; 493 494 /** Tag type */ 495 u64 tagtype:2; 496 497 /** Short Raw Packet Indicator 1=short raw pkt */ 498 u64 rs:1; 499 500 /** Core group selection (1 of 16) */ 501 u64 grp:4; 502 503 /** Packet Order / Work Unit selection (1 of 8)*/ 504 u64 qos:3; 505 506 /** Front Data size */ 507 u64 fsz:6; 508 509 /** Data length OR no. of entries in gather list */ 510 u64 dlengsz:14; 511 512 /** Gather indicator 1=gather*/ 513 u64 gather:1; 514 515 /** Raw mode indicator 1 = RAW */ 516 u64 raw:1; 517 #endif 518 }; 519 520 /** Input Request Header */ 521 struct octeon_instr_irh { 522 #ifdef __BIG_ENDIAN_BITFIELD 523 u64 opcode:4; 524 u64 rflag:1; 525 u64 subcode:7; 526 u64 vlan:12; 527 u64 priority:3; 528 u64 reserved:5; 529 u64 ossp:32; /* opcode/subcode specific parameters */ 530 #else 531 u64 ossp:32; /* opcode/subcode specific parameters */ 532 u64 reserved:5; 533 u64 priority:3; 534 u64 vlan:12; 535 u64 subcode:7; 536 u64 rflag:1; 537 u64 opcode:4; 538 #endif 539 }; 540 541 /** Return Data Parameters */ 542 struct octeon_instr_rdp { 543 #ifdef __BIG_ENDIAN_BITFIELD 544 u64 reserved:49; 545 u64 pcie_port:3; 546 u64 rlen:12; 547 #else 548 u64 rlen:12; 549 u64 pcie_port:3; 550 u64 reserved:49; 551 #endif 552 }; 553 554 /** Receive Header */ 555 union octeon_rh { 556 #ifdef __BIG_ENDIAN_BITFIELD 557 u64 u64; 558 struct { 559 u64 opcode:4; 560 u64 subcode:8; 561 u64 len:3; /** additional 64-bit words */ 562 u64 reserved:17; 563 u64 ossp:32; /** opcode/subcode specific parameters */ 564 } r; 565 struct { 566 u64 opcode:4; 567 u64 subcode:8; 568 u64 len:3; /** additional 64-bit words */ 569 u64 extra:28; 570 u64 vlan:12; 571 u64 priority:3; 572 u64 csum_verified:3; /** checksum verified. */ 573 u64 has_hwtstamp:1; /** Has hardware timestamp. 1 = yes. */ 574 u64 encap_on:1; 575 u64 has_hash:1; /** Has hash (rth or rss). 1 = yes. */ 576 } r_dh; 577 struct { 578 u64 opcode:4; 579 u64 subcode:8; 580 u64 len:3; /** additional 64-bit words */ 581 u64 reserved:11; 582 u64 num_gmx_ports:8; 583 u64 max_nic_ports:10; 584 u64 app_cap_flags:4; 585 u64 app_mode:8; 586 u64 pkind:8; 587 } r_core_drv_init; 588 struct { 589 u64 opcode:4; 590 u64 subcode:8; 591 u64 len:3; /** additional 64-bit words */ 592 u64 reserved:8; 593 u64 extra:25; 594 u64 gmxport:16; 595 } r_nic_info; 596 #else 597 u64 u64; 598 struct { 599 u64 ossp:32; /** opcode/subcode specific parameters */ 600 u64 reserved:17; 601 u64 len:3; /** additional 64-bit words */ 602 u64 subcode:8; 603 u64 opcode:4; 604 } r; 605 struct { 606 u64 has_hash:1; /** Has hash (rth or rss). 1 = yes. */ 607 u64 encap_on:1; 608 u64 has_hwtstamp:1; /** 1 = has hwtstamp */ 609 u64 csum_verified:3; /** checksum verified. */ 610 u64 priority:3; 611 u64 vlan:12; 612 u64 extra:28; 613 u64 len:3; /** additional 64-bit words */ 614 u64 subcode:8; 615 u64 opcode:4; 616 } r_dh; 617 struct { 618 u64 pkind:8; 619 u64 app_mode:8; 620 u64 app_cap_flags:4; 621 u64 max_nic_ports:10; 622 u64 num_gmx_ports:8; 623 u64 reserved:11; 624 u64 len:3; /** additional 64-bit words */ 625 u64 subcode:8; 626 u64 opcode:4; 627 } r_core_drv_init; 628 struct { 629 u64 gmxport:16; 630 u64 extra:25; 631 u64 reserved:8; 632 u64 len:3; /** additional 64-bit words */ 633 u64 subcode:8; 634 u64 opcode:4; 635 } r_nic_info; 636 #endif 637 }; 638 639 #define OCT_RH_SIZE (sizeof(union octeon_rh)) 640 641 union octnic_packet_params { 642 u32 u32; 643 struct { 644 #ifdef __BIG_ENDIAN_BITFIELD 645 u32 reserved:24; 646 u32 ip_csum:1; /* Perform IP header checksum(s) */ 647 /* Perform Outer transport header checksum */ 648 u32 transport_csum:1; 649 /* Find tunnel, and perform transport csum. */ 650 u32 tnl_csum:1; 651 u32 tsflag:1; /* Timestamp this packet */ 652 u32 ipsec_ops:4; /* IPsec operation */ 653 #else 654 u32 ipsec_ops:4; 655 u32 tsflag:1; 656 u32 tnl_csum:1; 657 u32 transport_csum:1; 658 u32 ip_csum:1; 659 u32 reserved:24; 660 #endif 661 } s; 662 }; 663 664 /** Status of a RGMII Link on Octeon as seen by core driver. */ 665 union oct_link_status { 666 u64 u64; 667 668 struct { 669 #ifdef __BIG_ENDIAN_BITFIELD 670 u64 duplex:8; 671 u64 mtu:16; 672 u64 speed:16; 673 u64 link_up:1; 674 u64 autoneg:1; 675 u64 if_mode:5; 676 u64 pause:1; 677 u64 flashing:1; 678 u64 reserved:15; 679 #else 680 u64 reserved:15; 681 u64 flashing:1; 682 u64 pause:1; 683 u64 if_mode:5; 684 u64 autoneg:1; 685 u64 link_up:1; 686 u64 speed:16; 687 u64 mtu:16; 688 u64 duplex:8; 689 #endif 690 } s; 691 }; 692 693 /** The txpciq info passed to host from the firmware */ 694 695 union oct_txpciq { 696 u64 u64; 697 698 struct { 699 #ifdef __BIG_ENDIAN_BITFIELD 700 u64 q_no:8; 701 u64 port:8; 702 u64 pkind:6; 703 u64 use_qpg:1; 704 u64 qpg:11; 705 u64 reserved:30; 706 #else 707 u64 reserved:30; 708 u64 qpg:11; 709 u64 use_qpg:1; 710 u64 pkind:6; 711 u64 port:8; 712 u64 q_no:8; 713 #endif 714 } s; 715 }; 716 717 /** The rxpciq info passed to host from the firmware */ 718 719 union oct_rxpciq { 720 u64 u64; 721 722 struct { 723 #ifdef __BIG_ENDIAN_BITFIELD 724 u64 q_no:8; 725 u64 reserved:56; 726 #else 727 u64 reserved:56; 728 u64 q_no:8; 729 #endif 730 } s; 731 }; 732 733 /** Information for a OCTEON ethernet interface shared between core & host. */ 734 struct oct_link_info { 735 union oct_link_status link; 736 u64 hw_addr; 737 738 #ifdef __BIG_ENDIAN_BITFIELD 739 u64 gmxport:16; 740 u64 macaddr_is_admin_asgnd:1; 741 u64 rsvd:31; 742 u64 num_txpciq:8; 743 u64 num_rxpciq:8; 744 #else 745 u64 num_rxpciq:8; 746 u64 num_txpciq:8; 747 u64 rsvd:31; 748 u64 macaddr_is_admin_asgnd:1; 749 u64 gmxport:16; 750 #endif 751 752 union oct_txpciq txpciq[MAX_IOQS_PER_NICIF]; 753 union oct_rxpciq rxpciq[MAX_IOQS_PER_NICIF]; 754 }; 755 756 #define OCT_LINK_INFO_SIZE (sizeof(struct oct_link_info)) 757 758 struct liquidio_if_cfg_info { 759 u64 iqmask; /** mask for IQs enabled for the port */ 760 u64 oqmask; /** mask for OQs enabled for the port */ 761 struct oct_link_info linfo; /** initial link information */ 762 char liquidio_firmware_version[32]; 763 }; 764 765 /** Stats for each NIC port in RX direction. */ 766 struct nic_rx_stats { 767 /* link-level stats */ 768 u64 total_rcvd; 769 u64 bytes_rcvd; 770 u64 total_bcst; 771 u64 total_mcst; 772 u64 runts; 773 u64 ctl_rcvd; 774 u64 fifo_err; /* Accounts for over/under-run of buffers */ 775 u64 dmac_drop; 776 u64 fcs_err; 777 u64 jabber_err; 778 u64 l2_err; 779 u64 frame_err; 780 781 /* firmware stats */ 782 u64 fw_total_rcvd; 783 u64 fw_total_fwd; 784 u64 fw_total_fwd_bytes; 785 u64 fw_err_pko; 786 u64 fw_err_link; 787 u64 fw_err_drop; 788 u64 fw_rx_vxlan; 789 u64 fw_rx_vxlan_err; 790 791 /* LRO */ 792 u64 fw_lro_pkts; /* Number of packets that are LROed */ 793 u64 fw_lro_octs; /* Number of octets that are LROed */ 794 u64 fw_total_lro; /* Number of LRO packets formed */ 795 u64 fw_lro_aborts; /* Number of times lRO of packet aborted */ 796 u64 fw_lro_aborts_port; 797 u64 fw_lro_aborts_seq; 798 u64 fw_lro_aborts_tsval; 799 u64 fw_lro_aborts_timer; 800 /* intrmod: packet forward rate */ 801 u64 fwd_rate; 802 }; 803 804 /** Stats for each NIC port in RX direction. */ 805 struct nic_tx_stats { 806 /* link-level stats */ 807 u64 total_pkts_sent; 808 u64 total_bytes_sent; 809 u64 mcast_pkts_sent; 810 u64 bcast_pkts_sent; 811 u64 ctl_sent; 812 u64 one_collision_sent; /* Packets sent after one collision*/ 813 u64 multi_collision_sent; /* Packets sent after multiple collision*/ 814 u64 max_collision_fail; /* Packets not sent due to max collisions */ 815 u64 max_deferral_fail; /* Packets not sent due to max deferrals */ 816 u64 fifo_err; /* Accounts for over/under-run of buffers */ 817 u64 runts; 818 u64 total_collisions; /* Total number of collisions detected */ 819 820 /* firmware stats */ 821 u64 fw_total_sent; 822 u64 fw_total_fwd; 823 u64 fw_total_fwd_bytes; 824 u64 fw_err_pko; 825 u64 fw_err_link; 826 u64 fw_err_drop; 827 u64 fw_err_tso; 828 u64 fw_tso; /* number of tso requests */ 829 u64 fw_tso_fwd; /* number of packets segmented in tso */ 830 u64 fw_tx_vxlan; 831 u64 fw_err_pki; 832 }; 833 834 struct oct_link_stats { 835 struct nic_rx_stats fromwire; 836 struct nic_tx_stats fromhost; 837 838 }; 839 840 static inline int opcode_slow_path(union octeon_rh *rh) 841 { 842 u16 subcode1, subcode2; 843 844 subcode1 = OPCODE_SUBCODE((rh)->r.opcode, (rh)->r.subcode); 845 subcode2 = OPCODE_SUBCODE(OPCODE_NIC, OPCODE_NIC_NW_DATA); 846 847 return (subcode2 != subcode1); 848 } 849 850 #define LIO68XX_LED_CTRL_ADDR 0x3501 851 #define LIO68XX_LED_CTRL_CFGON 0x1f 852 #define LIO68XX_LED_CTRL_CFGOFF 0x100 853 #define LIO68XX_LED_BEACON_ADDR 0x3508 854 #define LIO68XX_LED_BEACON_CFGON 0x47fd 855 #define LIO68XX_LED_BEACON_CFGOFF 0x11fc 856 #define VITESSE_PHY_GPIO_DRIVEON 0x1 857 #define VITESSE_PHY_GPIO_CFG 0x8 858 #define VITESSE_PHY_GPIO_DRIVEOFF 0x4 859 #define VITESSE_PHY_GPIO_HIGH 0x2 860 #define VITESSE_PHY_GPIO_LOW 0x3 861 #define LED_IDENTIFICATION_ON 0x1 862 #define LED_IDENTIFICATION_OFF 0x0 863 864 struct oct_mdio_cmd { 865 u64 op; 866 u64 mdio_addr; 867 u64 value1; 868 u64 value2; 869 u64 value3; 870 }; 871 872 #define OCT_LINK_STATS_SIZE (sizeof(struct oct_link_stats)) 873 874 struct oct_intrmod_cfg { 875 u64 rx_enable; 876 u64 tx_enable; 877 u64 check_intrvl; 878 u64 maxpkt_ratethr; 879 u64 minpkt_ratethr; 880 u64 rx_maxcnt_trigger; 881 u64 rx_mincnt_trigger; 882 u64 rx_maxtmr_trigger; 883 u64 rx_mintmr_trigger; 884 u64 tx_mincnt_trigger; 885 u64 tx_maxcnt_trigger; 886 u64 rx_frames; 887 u64 tx_frames; 888 u64 rx_usecs; 889 }; 890 891 #define BASE_QUEUE_NOT_REQUESTED 65535 892 893 union oct_nic_if_cfg { 894 u64 u64; 895 struct { 896 #ifdef __BIG_ENDIAN_BITFIELD 897 u64 base_queue:16; 898 u64 num_iqueues:16; 899 u64 num_oqueues:16; 900 u64 gmx_port_id:8; 901 u64 vf_id:8; 902 #else 903 u64 vf_id:8; 904 u64 gmx_port_id:8; 905 u64 num_oqueues:16; 906 u64 num_iqueues:16; 907 u64 base_queue:16; 908 #endif 909 } s; 910 }; 911 912 struct lio_time { 913 s64 sec; /* seconds */ 914 s64 nsec; /* nanoseconds */ 915 }; 916 917 struct lio_vf_rep_stats { 918 u64 tx_packets; 919 u64 tx_bytes; 920 u64 tx_dropped; 921 922 u64 rx_packets; 923 u64 rx_bytes; 924 u64 rx_dropped; 925 }; 926 927 enum lio_vf_rep_req_type { 928 LIO_VF_REP_REQ_NONE, 929 LIO_VF_REP_REQ_STATE, 930 LIO_VF_REP_REQ_MTU, 931 LIO_VF_REP_REQ_STATS, 932 LIO_VF_REP_REQ_DEVNAME 933 }; 934 935 enum { 936 LIO_VF_REP_STATE_DOWN, 937 LIO_VF_REP_STATE_UP 938 }; 939 940 #define LIO_IF_NAME_SIZE 16 941 struct lio_vf_rep_req { 942 u8 req_type; 943 u8 ifidx; 944 u8 rsvd[6]; 945 946 union { 947 struct lio_vf_rep_name { 948 char name[LIO_IF_NAME_SIZE]; 949 } rep_name; 950 951 struct lio_vf_rep_mtu { 952 u32 mtu; 953 u32 rsvd; 954 } rep_mtu; 955 956 struct lio_vf_rep_state { 957 u8 state; 958 u8 rsvd[7]; 959 } rep_state; 960 }; 961 }; 962 963 struct lio_vf_rep_resp { 964 u64 rh; 965 u8 status; 966 u8 rsvd[7]; 967 }; 968 #endif 969