1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 #ifndef _SYS_NXGE_NXGE_IMPL_H 27 #define _SYS_NXGE_NXGE_IMPL_H 28 29 #pragma ident "%Z%%M% %I% %E% SMI" 30 31 #ifdef __cplusplus 32 extern "C" { 33 #endif 34 35 /* 36 * NIU HV API version definitions. 37 */ 38 #define NIU_MAJOR_VER 1 39 #define NIU_MINOR_VER 1 40 41 /* 42 * NIU HV API v1.0 definitions 43 */ 44 #define N2NIU_RX_LP_CONF 0x142 45 #define N2NIU_RX_LP_INFO 0x143 46 #define N2NIU_TX_LP_CONF 0x144 47 #define N2NIU_TX_LP_INFO 0x145 48 49 #ifndef _ASM 50 51 #include <sys/types.h> 52 #include <sys/byteorder.h> 53 #include <sys/debug.h> 54 #include <sys/stropts.h> 55 #include <sys/stream.h> 56 #include <sys/strlog.h> 57 #ifndef COSIM 58 #include <sys/strsubr.h> 59 #endif 60 #include <sys/cmn_err.h> 61 #include <sys/vtrace.h> 62 #include <sys/kmem.h> 63 #include <sys/ddi.h> 64 #include <sys/sunddi.h> 65 #include <sys/strsun.h> 66 #include <sys/stat.h> 67 #include <sys/cpu.h> 68 #include <sys/kstat.h> 69 #include <inet/common.h> 70 #include <inet/ip.h> 71 #include <sys/dlpi.h> 72 #include <inet/nd.h> 73 #include <netinet/in.h> 74 #include <sys/ethernet.h> 75 #include <sys/vlan.h> 76 #include <sys/pci.h> 77 #include <sys/taskq.h> 78 #include <sys/atomic.h> 79 80 #include <sys/nxge/nxge_defs.h> 81 #include <sys/nxge/nxge_hw.h> 82 #include <sys/nxge/nxge_mac.h> 83 #include <sys/nxge/nxge_mii.h> 84 #include <sys/nxge/nxge_fm.h> 85 #if !defined(IODIAG) 86 #include <sys/netlb.h> 87 #endif 88 89 #include <sys/ddi_intr.h> 90 91 #if defined(_KERNEL) 92 #include <sys/mac.h> 93 #include <sys/mac_impl.h> 94 #include <sys/mac_ether.h> 95 #endif 96 97 #if defined(sun4v) 98 #include <sys/hypervisor_api.h> 99 #include <sys/machsystm.h> 100 #include <sys/hsvc.h> 101 #endif 102 103 /* 104 * Handy macros (taken from bge driver) 105 */ 106 #define RBR_SIZE 4 107 #define DMA_COMMON_CHANNEL(area) ((area.dma_channel)) 108 #define DMA_COMMON_VPTR(area) ((area.kaddrp)) 109 #define DMA_COMMON_VPTR_INDEX(area, index) \ 110 (((char *)(area.kaddrp)) + \ 111 (index * RBR_SIZE)) 112 #define DMA_COMMON_HANDLE(area) ((area.dma_handle)) 113 #define DMA_COMMON_ACC_HANDLE(area) ((area.acc_handle)) 114 #define DMA_COMMON_IOADDR(area) ((area.dma_cookie.dmac_laddress)) 115 #define DMA_COMMON_IOADDR_INDEX(area, index) \ 116 ((area.dma_cookie.dmac_laddress) + \ 117 (index * RBR_SIZE)) 118 119 #define DMA_NPI_HANDLE(area) ((area.npi_handle) 120 121 #define DMA_COMMON_SYNC(area, flag) ((void) ddi_dma_sync((area).dma_handle,\ 122 (area).offset, (area).alength, \ 123 (flag))) 124 #define DMA_COMMON_SYNC_OFFSET(area, bufoffset, len, flag) \ 125 ((void) ddi_dma_sync((area).dma_handle,\ 126 (area.offset + bufoffset), len, \ 127 (flag))) 128 129 #define DMA_COMMON_SYNC_RBR_DESC(area, index, flag) \ 130 ((void) ddi_dma_sync((area).dma_handle,\ 131 (index * RBR_SIZE), RBR_SIZE, \ 132 (flag))) 133 134 #define DMA_COMMON_SYNC_RBR_DESC_MULTI(area, index, count, flag) \ 135 ((void) ddi_dma_sync((area).dma_handle,\ 136 (index * RBR_SIZE), count * RBR_SIZE, \ 137 (flag))) 138 #define DMA_COMMON_SYNC_ENTRY(area, index, flag) \ 139 ((void) ddi_dma_sync((area).dma_handle,\ 140 (index * (area).block_size), \ 141 (area).block_size, \ 142 (flag))) 143 144 #define NEXT_ENTRY(index, wrap) ((index + 1) & wrap) 145 #define NEXT_ENTRY_PTR(ptr, first, last) \ 146 ((ptr == last) ? first : (ptr + 1)) 147 148 /* 149 * NPI related macros 150 */ 151 #define NXGE_DEV_NPI_HANDLE(nxgep) (nxgep->npi_handle) 152 153 #define NPI_PCI_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_pci_handle.regh = ah) 154 #define NPI_PCI_ADD_HANDLE_SET(nxgep, ap) (nxgep->npi_pci_handle.regp = ap) 155 156 #define NPI_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_handle.regh = ah) 157 #define NPI_ADD_HANDLE_SET(nxgep, ap) \ 158 nxgep->npi_handle.is_vraddr = B_FALSE; \ 159 nxgep->npi_handle.function.instance = nxgep->instance; \ 160 nxgep->npi_handle.function.function = nxgep->function_num; \ 161 nxgep->npi_handle.nxgep = (void *) nxgep; \ 162 nxgep->npi_handle.regp = ap; 163 164 #define NPI_REG_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_reg_handle.regh = ah) 165 #define NPI_REG_ADD_HANDLE_SET(nxgep, ap) \ 166 nxgep->npi_reg_handle.is_vraddr = B_FALSE; \ 167 nxgep->npi_handle.function.instance = nxgep->instance; \ 168 nxgep->npi_handle.function.function = nxgep->function_num; \ 169 nxgep->npi_reg_handle.nxgep = (void *) nxgep; \ 170 nxgep->npi_reg_handle.regp = ap; 171 172 #define NPI_MSI_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_msi_handle.regh = ah) 173 #define NPI_MSI_ADD_HANDLE_SET(nxgep, ap) (nxgep->npi_msi_handle.regp = ap) 174 175 #define NPI_VREG_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_vreg_handle.regh = ah) 176 #define NPI_VREG_ADD_HANDLE_SET(nxgep, ap) \ 177 nxgep->npi_vreg_handle.is_vraddr = B_TRUE; \ 178 nxgep->npi_handle.function.instance = nxgep->instance; \ 179 nxgep->npi_handle.function.function = nxgep->function_num; \ 180 nxgep->npi_vreg_handle.nxgep = (void *) nxgep; \ 181 nxgep->npi_vreg_handle.regp = ap; 182 183 #define NPI_V2REG_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_v2reg_handle.regh = ah) 184 #define NPI_V2REG_ADD_HANDLE_SET(nxgep, ap) \ 185 nxgep->npi_v2reg_handle.is_vraddr = B_TRUE; \ 186 nxgep->npi_handle.function.instance = nxgep->instance; \ 187 nxgep->npi_handle.function.function = nxgep->function_num; \ 188 nxgep->npi_v2reg_handle.nxgep = (void *) nxgep; \ 189 nxgep->npi_v2reg_handle.regp = ap; 190 191 #define NPI_PCI_ACC_HANDLE_GET(nxgep) (nxgep->npi_pci_handle.regh) 192 #define NPI_PCI_ADD_HANDLE_GET(nxgep) (nxgep->npi_pci_handle.regp) 193 #define NPI_ACC_HANDLE_GET(nxgep) (nxgep->npi_handle.regh) 194 #define NPI_ADD_HANDLE_GET(nxgep) (nxgep->npi_handle.regp) 195 #define NPI_REG_ACC_HANDLE_GET(nxgep) (nxgep->npi_reg_handle.regh) 196 #define NPI_REG_ADD_HANDLE_GET(nxgep) (nxgep->npi_reg_handle.regp) 197 #define NPI_MSI_ACC_HANDLE_GET(nxgep) (nxgep->npi_msi_handle.regh) 198 #define NPI_MSI_ADD_HANDLE_GET(nxgep) (nxgep->npi_msi_handle.regp) 199 #define NPI_VREG_ACC_HANDLE_GET(nxgep) (nxgep->npi_vreg_handle.regh) 200 #define NPI_VREG_ADD_HANDLE_GET(nxgep) (nxgep->npi_vreg_handle.regp) 201 #define NPI_V2REG_ACC_HANDLE_GET(nxgep) (nxgep->npi_v2reg_handle.regh) 202 #define NPI_V2REG_ADD_HANDLE_GET(nxgep) (nxgep->npi_v2reg_handle.regp) 203 204 #define NPI_DMA_ACC_HANDLE_SET(dmap, ah) (dmap->npi_handle.regh = ah) 205 #define NPI_DMA_ACC_HANDLE_GET(dmap) (dmap->npi_handle.regh) 206 207 /* 208 * DMA handles. 209 */ 210 #define NXGE_DESC_D_HANDLE_GET(desc) (desc.dma_handle) 211 #define NXGE_DESC_D_IOADD_GET(desc) (desc.dma_cookie.dmac_laddress) 212 #define NXGE_DMA_IOADD_GET(dma_cookie) (dma_cookie.dmac_laddress) 213 #define NXGE_DMA_AREA_IOADD_GET(dma_area) (dma_area.dma_cookie.dmac_laddress) 214 215 #define LDV_ON(ldv, vector) ((vector >> ldv) & 0x1) 216 #define LDV2_ON_1(ldv, vector) ((vector >> (ldv - 64)) & 0x1) 217 #define LDV2_ON_2(ldv, vector) (((vector >> 5) >> (ldv - 64)) & 0x1) 218 219 typedef uint32_t nxge_status_t; 220 221 typedef enum { 222 IDLE, 223 PROGRESS, 224 CONFIGURED 225 } dev_func_shared_t; 226 227 typedef enum { 228 DVMA, 229 DMA, 230 SDMA 231 } dma_method_t; 232 233 typedef enum { 234 BKSIZE_4K, 235 BKSIZE_8K, 236 BKSIZE_16K, 237 BKSIZE_32K 238 } nxge_rx_block_size_t; 239 240 #ifdef TX_ONE_BUF 241 #define TX_BCOPY_MAX 1514 242 #else 243 #if defined(sun4v) && defined(NIU_LP_WORKAROUND) 244 #define TX_BCOPY_MAX 4096 245 #define TX_BCOPY_SIZE 4096 246 #else 247 #define TX_BCOPY_MAX 2048 248 #define TX_BCOPY_SIZE 2048 249 #endif 250 #endif 251 252 #define TX_STREAM_MIN 512 253 #define TX_FASTDVMA_MIN 1024 254 255 /* 256 * Send repeated FMA ereports or display messages about some non-fatal 257 * hardware errors only the the first NXGE_ERROR_SHOW_MAX -1 times 258 */ 259 #define NXGE_ERROR_SHOW_MAX 2 260 261 262 /* 263 * Defaults 264 */ 265 #define NXGE_RDC_RCR_THRESHOLD 8 266 #define NXGE_RDC_RCR_TIMEOUT 16 267 268 #define NXGE_RDC_RCR_THRESHOLD_MAX 1024 269 #define NXGE_RDC_RCR_TIMEOUT_MAX 64 270 #define NXGE_RDC_RCR_THRESHOLD_MIN 1 271 #define NXGE_RDC_RCR_TIMEOUT_MIN 1 272 #define NXGE_RCR_FULL_HEADER 1 273 274 #define NXGE_IS_VLAN_PACKET(ptr) \ 275 ((((struct ether_vlan_header *)ptr)->ether_tpid) == \ 276 htons(VLAN_ETHERTYPE)) 277 278 typedef enum { 279 NONE, 280 SMALL, 281 MEDIUM, 282 LARGE 283 } dma_size_t; 284 285 typedef enum { 286 USE_NONE, 287 USE_BCOPY, 288 USE_DVMA, 289 USE_DMA, 290 USE_SDMA 291 } dma_type_t; 292 293 typedef enum { 294 NOT_IN_USE, 295 HDR_BUF, 296 MTU_BUF, 297 RE_ASSEMBLY_BUF, 298 FREE_BUF 299 } rx_page_state_t; 300 301 struct _nxge_block_mv_t { 302 uint32_t msg_type; 303 dma_type_t dma_type; 304 }; 305 306 typedef struct _nxge_block_mv_t nxge_block_mv_t, *p_nxge_block_mv_t; 307 308 typedef enum { 309 NIU_TYPE_NONE = 0, 310 311 NEPTUNE_4_1GC = 312 (NXGE_PORT_1G_COPPER | 313 (NXGE_PORT_1G_COPPER << 4) | 314 (NXGE_PORT_1G_COPPER << 8) | 315 (NXGE_PORT_1G_COPPER << 12)), 316 317 NEPTUNE_2_10GF = 318 (NXGE_PORT_10G_FIBRE | 319 (NXGE_PORT_10G_FIBRE << 4) | 320 (NXGE_PORT_NONE << 8) | 321 (NXGE_PORT_NONE << 12)), 322 323 NEPTUNE_2_10GF_2_1GC = 324 (NXGE_PORT_10G_FIBRE | 325 (NXGE_PORT_10G_FIBRE << 4) | 326 (NXGE_PORT_1G_COPPER << 8) | 327 (NXGE_PORT_1G_COPPER << 12)), 328 329 NEPTUNE_1_10GF_3_1GC = 330 (NXGE_PORT_10G_FIBRE | 331 (NXGE_PORT_1G_COPPER << 4) | 332 (NXGE_PORT_1G_COPPER << 8) | 333 (NXGE_PORT_1G_COPPER << 12)), 334 335 NEPTUNE_1_1GC_1_10GF_2_1GC = 336 (NXGE_PORT_1G_COPPER | 337 (NXGE_PORT_10G_FIBRE << 4) | 338 (NXGE_PORT_1G_COPPER << 8) | 339 (NXGE_PORT_1G_COPPER << 12)), 340 341 N2_NIU = 342 (NXGE_PORT_RSVD | 343 (NXGE_PORT_RSVD << 4) | 344 (NXGE_PORT_RSVD << 8) | 345 (NXGE_PORT_RSVD << 12)) 346 347 } niu_type_t; 348 349 typedef enum { 350 P_NEPTUNE_NONE, 351 P_NEPTUNE_ATLAS_2PORT, 352 P_NEPTUNE_ATLAS_4PORT, 353 P_NEPTUNE_MARAMBA_P0, 354 P_NEPTUNE_MARAMBA_P1, 355 P_NEPTUNE_NIU 356 } platform_type_t; 357 358 #define NXGE_IS_VALID_NEPTUNE_TYPE(nxgep) \ 359 (((nxgep->platform_type) == P_NEPTUNE_ATLAS_2PORT) || \ 360 ((nxgep->platform_type) == P_NEPTUNE_ATLAS_4PORT) || \ 361 ((nxgep->platform_type) == P_NEPTUNE_MARAMBA_P0) || \ 362 ((nxgep->platform_type) == P_NEPTUNE_MARAMBA_P1)) 363 364 typedef enum { 365 CFG_DEFAULT = 0, /* default cfg */ 366 CFG_EQUAL, /* Equal */ 367 CFG_FAIR, /* Equal */ 368 CFG_CLASSIFY, 369 CFG_L2_CLASSIFY, 370 CFG_L3_CLASSIFY, 371 CFG_L3_DISTRIBUTE, 372 CFG_L3_WEB, 373 CFG_L3_TCAM, 374 CFG_NOT_SPECIFIED, 375 CFG_CUSTOM /* Custom */ 376 } cfg_type_t; 377 378 typedef enum { 379 NO_MSG = 0x0, /* No message output or storage. */ 380 CONSOLE = 0x1, /* Messages are go to the console. */ 381 BUFFER = 0x2, /* Messages are go to the system buffer. */ 382 CON_BUF = 0x3, /* Messages are go to the console and */ 383 /* system buffer. */ 384 VERBOSE = 0x4 /* Messages are go out only in VERBOSE node. */ 385 } out_msg_t, *p_out_msg_t; 386 387 typedef enum { 388 DBG_NO_MSG = 0x0, /* No message output or storage. */ 389 DBG_CONSOLE = 0x1, /* Messages are go to the console. */ 390 DBG_BUFFER = 0x2, /* Messages are go to the system buffer. */ 391 DBG_CON_BUF = 0x3, /* Messages are go to the console and */ 392 /* system buffer. */ 393 STR_LOG = 4 /* Sessage sent to streams logging driver. */ 394 } out_dbgmsg_t, *p_out_dbgmsg_t; 395 396 397 398 #if defined(_KERNEL) || defined(COSIM) 399 400 typedef struct ether_addr ether_addr_st, *p_ether_addr_t; 401 typedef struct ether_header ether_header_t, *p_ether_header_t; 402 typedef queue_t *p_queue_t; 403 404 #if !defined(IODIAG) 405 typedef mblk_t *p_mblk_t; 406 #endif 407 408 /* 409 * Generic phy table to support different phy types. 410 */ 411 typedef struct _nxge_xcvr_table { 412 nxge_status_t (*serdes_init) (); /* Serdes init routine */ 413 nxge_status_t (*xcvr_init) (); /* xcvr init routine */ 414 nxge_status_t (*link_intr_stop) (); /* Link intr disable routine */ 415 nxge_status_t (*link_intr_start) (); /* Link intr enable routine */ 416 nxge_status_t (*check_link) (); /* Link check routine */ 417 418 uint32_t xcvr_inuse; 419 uint32_t xcvr_addr; 420 } nxge_xcvr_table_t, *p_nxge_xcvr_table_t; 421 422 /* 423 * Common DMA data elements. 424 */ 425 struct _nxge_dma_common_t { 426 uint16_t dma_channel; 427 void *kaddrp; 428 void *first_kaddrp; 429 void *last_kaddrp; 430 void *ioaddr_pp; 431 void *first_ioaddr_pp; 432 void *last_ioaddr_pp; 433 ddi_dma_cookie_t dma_cookie; 434 uint32_t ncookies; 435 436 nxge_block_mv_t msg_dma_flags; 437 ddi_dma_handle_t dma_handle; 438 nxge_os_acc_handle_t acc_handle; 439 npi_handle_t npi_handle; 440 441 size_t block_size; 442 uint32_t nblocks; 443 size_t alength; 444 uint_t offset; 445 uint_t dma_chunk_index; 446 void *orig_ioaddr_pp; 447 uint64_t orig_vatopa; 448 void *orig_kaddrp; 449 size_t orig_alength; 450 boolean_t contig_alloc_type; 451 }; 452 453 typedef struct _nxge_t nxge_t, *p_nxge_t; 454 typedef struct _nxge_dma_common_t nxge_dma_common_t, *p_nxge_dma_common_t; 455 456 typedef struct _nxge_dma_pool_t { 457 p_nxge_dma_common_t *dma_buf_pool_p; 458 uint32_t ndmas; 459 uint32_t *num_chunks; 460 boolean_t buf_allocated; 461 } nxge_dma_pool_t, *p_nxge_dma_pool_t; 462 463 /* 464 * Each logical device (69): 465 * - LDG # 466 * - flag bits 467 * - masks. 468 * - interrupt handler function. 469 * 470 * Generic system interrupt handler with two arguments: 471 * (nxge_sys_intr_t) 472 * Per device instance data structure 473 * Logical group data structure. 474 * 475 * Logical device interrupt handler with two arguments: 476 * (nxge_ldv_intr_t) 477 * Per device instance data structure 478 * Logical device number 479 */ 480 typedef struct _nxge_ldg_t nxge_ldg_t, *p_nxge_ldg_t; 481 typedef struct _nxge_ldv_t nxge_ldv_t, *p_nxge_ldv_t; 482 typedef uint_t (*nxge_sys_intr_t)(void *arg1, void *arg2); 483 typedef uint_t (*nxge_ldv_intr_t)(void *arg1, void *arg2); 484 485 /* 486 * Each logical device Group (64) needs to have the following 487 * configurations: 488 * - timer counter (6 bits) 489 * - timer resolution (20 bits, number of system clocks) 490 * - system data (7 bits) 491 */ 492 struct _nxge_ldg_t { 493 uint8_t ldg; /* logical group number */ 494 uint8_t vldg_index; 495 boolean_t arm; 496 boolean_t interrupted; 497 uint16_t ldg_timer; /* counter */ 498 uint8_t func; 499 uint8_t vector; 500 uint8_t intdata; 501 uint8_t nldvs; 502 p_nxge_ldv_t ldvp; 503 nxge_sys_intr_t sys_intr_handler; 504 uint_t (*ih_cb_func)(caddr_t, caddr_t); 505 p_nxge_t nxgep; 506 }; 507 508 struct _nxge_ldv_t { 509 uint8_t ldg_assigned; 510 uint8_t ldv; 511 boolean_t is_rxdma; 512 boolean_t is_txdma; 513 boolean_t is_mif; 514 boolean_t is_mac; 515 boolean_t is_syserr; 516 boolean_t use_timer; 517 uint8_t channel; 518 uint8_t vdma_index; 519 uint8_t func; 520 p_nxge_ldg_t ldgp; 521 uint8_t ldv_flags; 522 boolean_t is_leve; 523 boolean_t is_edge; 524 uint8_t ldv_ldf_masks; 525 nxge_ldv_intr_t ldv_intr_handler; 526 uint_t (*ih_cb_func)(caddr_t, caddr_t); 527 p_nxge_t nxgep; 528 }; 529 #endif 530 531 typedef struct _nxge_logical_page_t { 532 uint16_t dma; 533 uint16_t page; 534 boolean_t valid; 535 uint64_t mask; 536 uint64_t value; 537 uint64_t reloc; 538 uint32_t handle; 539 } nxge_logical_page_t, *p_nxge_logical_page_t; 540 541 /* 542 * (Internal) return values from ioctl subroutines. 543 */ 544 enum nxge_ioc_reply { 545 IOC_INVAL = -1, /* bad, NAK with EINVAL */ 546 IOC_DONE, /* OK, reply sent */ 547 IOC_ACK, /* OK, just send ACK */ 548 IOC_REPLY, /* OK, just send reply */ 549 IOC_RESTART_ACK, /* OK, restart & ACK */ 550 IOC_RESTART_REPLY /* OK, restart & reply */ 551 }; 552 553 typedef struct _pci_cfg_t { 554 uint16_t vendorid; 555 uint16_t devid; 556 uint16_t command; 557 uint16_t status; 558 uint8_t revid; 559 uint8_t res0; 560 uint16_t junk1; 561 uint8_t cache_line; 562 uint8_t latency; 563 uint8_t header; 564 uint8_t bist; 565 uint32_t base; 566 uint32_t base14; 567 uint32_t base18; 568 uint32_t base1c; 569 uint32_t base20; 570 uint32_t base24; 571 uint32_t base28; 572 uint32_t base2c; 573 uint32_t base30; 574 uint32_t res1[2]; 575 uint8_t int_line; 576 uint8_t int_pin; 577 uint8_t min_gnt; 578 uint8_t max_lat; 579 } pci_cfg_t, *p_pci_cfg_t; 580 581 #if defined(_KERNEL) || defined(COSIM) 582 583 typedef struct _dev_regs_t { 584 nxge_os_acc_handle_t nxge_pciregh; /* PCI config DDI IO handle */ 585 p_pci_cfg_t nxge_pciregp; /* mapped PCI registers */ 586 587 nxge_os_acc_handle_t nxge_regh; /* device DDI IO (BAR 0) */ 588 void *nxge_regp; /* mapped device registers */ 589 590 nxge_os_acc_handle_t nxge_msix_regh; /* MSI/X DDI handle (BAR 2) */ 591 void *nxge_msix_regp; /* MSI/X register */ 592 593 nxge_os_acc_handle_t nxge_vir_regh; /* virtualization (BAR 4) */ 594 unsigned char *nxge_vir_regp; /* virtualization register */ 595 596 nxge_os_acc_handle_t nxge_vir2_regh; /* second virtualization */ 597 unsigned char *nxge_vir2_regp; /* second virtualization */ 598 599 nxge_os_acc_handle_t nxge_romh; /* fcode rom handle */ 600 unsigned char *nxge_romp; /* fcode pointer */ 601 } dev_regs_t, *p_dev_regs_t; 602 603 604 typedef struct _nxge_mac_addr_t { 605 ether_addr_t addr; 606 uint_t flags; 607 } nxge_mac_addr_t; 608 609 /* 610 * The hardware supports 1 unique MAC and 16 alternate MACs (num_mmac) 611 * for each XMAC port and supports 1 unique MAC and 7 alternate MACs 612 * for each BMAC port. The number of MACs assigned by the factory is 613 * different and is as follows, 614 * BMAC port: num_factory_mmac = num_mmac = 7 615 * XMAC port on a 2-port NIC: num_factory_mmac = num_mmac - 1 = 15 616 * XMAC port on a 4-port NIC: num_factory_mmac = 7 617 * So num_factory_mmac is smaller than num_mmac. nxge_m_mmac_add uses 618 * num_mmac and nxge_m_mmac_reserve uses num_factory_mmac. 619 * 620 * total_factory_macs is the total number of factory MACs, including 621 * the unique MAC, assigned to a Neptune based NIC card, it is 32. 622 */ 623 typedef struct _nxge_mmac_t { 624 uint8_t total_factory_macs; 625 uint8_t num_mmac; 626 uint8_t num_factory_mmac; 627 nxge_mac_addr_t mac_pool[XMAC_MAX_ADDR_ENTRY]; 628 ether_addr_t factory_mac_pool[XMAC_MAX_ADDR_ENTRY]; 629 uint8_t naddrfree; /* number of alt mac addr available */ 630 } nxge_mmac_t; 631 632 /* 633 * mmac stats structure 634 */ 635 typedef struct _nxge_mmac_stats_t { 636 uint8_t mmac_max_cnt; 637 uint8_t mmac_avail_cnt; 638 struct ether_addr mmac_avail_pool[16]; 639 } nxge_mmac_stats_t, *p_nxge_mmac_stats_t; 640 641 #define NXGE_MAX_MMAC_ADDRS 32 642 #define NXGE_NUM_MMAC_ADDRS 8 643 #define NXGE_NUM_OF_PORTS_QUAD 4 644 #define NXGE_NUM_OF_PORTS_DUAL 2 645 646 #define NXGE_QGC_LP_BM_STR "501-7606" 647 #define NXGE_2XGF_LP_BM_STR "501-7283" 648 #define NXGE_QGC_PEM_BM_STR "501-7765" 649 #define NXGE_2XGF_PEM_BM_STR "501-7626" 650 #define NXGE_EROM_LEN 1048576 651 652 #endif 653 654 #include <sys/nxge/nxge_common_impl.h> 655 #include <sys/nxge/nxge_common.h> 656 #include <sys/nxge/nxge_txc.h> 657 #include <sys/nxge/nxge_rxdma.h> 658 #include <sys/nxge/nxge_txdma.h> 659 #include <sys/nxge/nxge_fflp.h> 660 #include <sys/nxge/nxge_ipp.h> 661 #include <sys/nxge/nxge_zcp.h> 662 #include <sys/nxge/nxge_fzc.h> 663 #include <sys/nxge/nxge_flow.h> 664 #include <sys/nxge/nxge_virtual.h> 665 666 #include <npi_espc.h> 667 #include <npi_vir.h> 668 669 #include <sys/nxge/nxge.h> 670 671 #include <sys/modctl.h> 672 #include <sys/pattr.h> 673 674 extern int secpolicy_net_config(const cred_t *, boolean_t); 675 extern void nxge_fm_report_error(p_nxge_t, uint8_t, 676 uint8_t, nxge_fm_ereport_id_t); 677 extern int fm_check_acc_handle(ddi_acc_handle_t); 678 extern int fm_check_dma_handle(ddi_dma_handle_t); 679 680 /* nxge_classify.c */ 681 nxge_status_t nxge_classify_init(p_nxge_t); 682 nxge_status_t nxge_classify_uninit(p_nxge_t); 683 nxge_status_t nxge_set_hw_classify_config(p_nxge_t); 684 nxge_status_t nxge_classify_exit_sw(p_nxge_t); 685 686 /* nxge_fflp.c */ 687 void nxge_put_tcam(p_nxge_t, p_mblk_t); 688 void nxge_get_tcam(p_nxge_t, p_mblk_t); 689 nxge_status_t nxge_classify_init_hw(p_nxge_t); 690 nxge_status_t nxge_classify_init_sw(p_nxge_t); 691 nxge_status_t nxge_fflp_ip_class_config_all(p_nxge_t); 692 nxge_status_t nxge_fflp_ip_class_config(p_nxge_t, tcam_class_t, 693 uint32_t); 694 695 nxge_status_t nxge_fflp_ip_class_config_get(p_nxge_t, 696 tcam_class_t, 697 uint32_t *); 698 699 nxge_status_t nxge_cfg_ip_cls_flow_key(p_nxge_t, tcam_class_t, 700 uint32_t); 701 702 nxge_status_t nxge_fflp_ip_usr_class_config(p_nxge_t, tcam_class_t, 703 uint32_t); 704 705 uint64_t nxge_classify_get_cfg_value(p_nxge_t, uint8_t, uint8_t); 706 nxge_status_t nxge_add_flow(p_nxge_t, flow_resource_t *); 707 nxge_status_t nxge_fflp_config_tcam_enable(p_nxge_t); 708 nxge_status_t nxge_fflp_config_tcam_disable(p_nxge_t); 709 710 nxge_status_t nxge_fflp_config_hash_lookup_enable(p_nxge_t); 711 nxge_status_t nxge_fflp_config_hash_lookup_disable(p_nxge_t); 712 713 nxge_status_t nxge_fflp_config_llc_snap_enable(p_nxge_t); 714 nxge_status_t nxge_fflp_config_llc_snap_disable(p_nxge_t); 715 716 nxge_status_t nxge_logical_mac_assign_rdc_table(p_nxge_t, uint8_t); 717 nxge_status_t nxge_fflp_config_vlan_table(p_nxge_t, uint16_t); 718 719 nxge_status_t nxge_fflp_set_hash1(p_nxge_t, uint32_t); 720 721 nxge_status_t nxge_fflp_set_hash2(p_nxge_t, uint16_t); 722 723 nxge_status_t nxge_fflp_init_hostinfo(p_nxge_t); 724 725 void nxge_handle_tcam_fragment_bug(p_nxge_t); 726 nxge_status_t nxge_fflp_hw_reset(p_nxge_t); 727 nxge_status_t nxge_fflp_handle_sys_errors(p_nxge_t); 728 nxge_status_t nxge_zcp_handle_sys_errors(p_nxge_t); 729 730 /* nxge_kstats.c */ 731 void nxge_init_statsp(p_nxge_t); 732 void nxge_setup_kstats(p_nxge_t); 733 void nxge_destroy_kstats(p_nxge_t); 734 int nxge_port_kstat_update(kstat_t *, int); 735 void nxge_save_cntrs(p_nxge_t); 736 737 int nxge_m_stat(void *arg, uint_t, uint64_t *); 738 739 /* nxge_hw.c */ 740 void 741 nxge_hw_ioctl(p_nxge_t, queue_t *, mblk_t *, struct iocblk *); 742 void nxge_loopback_ioctl(p_nxge_t, queue_t *, mblk_t *, struct iocblk *); 743 void nxge_global_reset(p_nxge_t); 744 uint_t nxge_intr(void *, void *); 745 void nxge_intr_enable(p_nxge_t); 746 void nxge_intr_disable(p_nxge_t); 747 void nxge_hw_blank(void *arg, time_t, uint_t); 748 void nxge_hw_id_init(p_nxge_t); 749 void nxge_hw_init_niu_common(p_nxge_t); 750 void nxge_intr_hw_enable(p_nxge_t); 751 void nxge_intr_hw_disable(p_nxge_t); 752 void nxge_hw_stop(p_nxge_t); 753 void nxge_global_reset(p_nxge_t); 754 void nxge_check_hw_state(p_nxge_t); 755 756 void nxge_rxdma_channel_put64(nxge_os_acc_handle_t, 757 void *, uint32_t, uint16_t, 758 uint64_t); 759 uint64_t nxge_rxdma_channel_get64(nxge_os_acc_handle_t, void *, 760 uint32_t, uint16_t); 761 762 763 void nxge_get32(p_nxge_t, p_mblk_t); 764 void nxge_put32(p_nxge_t, p_mblk_t); 765 766 void nxge_hw_set_mac_modes(p_nxge_t); 767 768 /* nxge_send.c. */ 769 uint_t nxge_reschedule(caddr_t); 770 771 /* nxge_rxdma.c */ 772 nxge_status_t nxge_rxdma_cfg_rdcgrp_default_rdc(p_nxge_t, 773 uint8_t, uint8_t); 774 775 nxge_status_t nxge_rxdma_cfg_port_default_rdc(p_nxge_t, 776 uint8_t, uint8_t); 777 nxge_status_t nxge_rxdma_cfg_rcr_threshold(p_nxge_t, uint8_t, 778 uint16_t); 779 nxge_status_t nxge_rxdma_cfg_rcr_timeout(p_nxge_t, uint8_t, 780 uint16_t, uint8_t); 781 782 /* nxge_ndd.c */ 783 void nxge_get_param_soft_properties(p_nxge_t); 784 void nxge_copy_hw_default_to_param(p_nxge_t); 785 void nxge_copy_param_hw_to_config(p_nxge_t); 786 void nxge_setup_param(p_nxge_t); 787 void nxge_init_param(p_nxge_t); 788 void nxge_destroy_param(p_nxge_t); 789 boolean_t nxge_check_rxdma_rdcgrp_member(p_nxge_t, uint8_t, uint8_t); 790 boolean_t nxge_check_rxdma_port_member(p_nxge_t, uint8_t); 791 boolean_t nxge_check_rdcgrp_port_member(p_nxge_t, uint8_t); 792 793 boolean_t nxge_check_txdma_port_member(p_nxge_t, uint8_t); 794 795 int nxge_param_get_generic(p_nxge_t, queue_t *, mblk_t *, caddr_t); 796 int nxge_param_set_generic(p_nxge_t, queue_t *, mblk_t *, char *, caddr_t); 797 int nxge_get_default(p_nxge_t, queue_t *, p_mblk_t, caddr_t); 798 int nxge_set_default(p_nxge_t, queue_t *, p_mblk_t, char *, caddr_t); 799 int nxge_nd_get_names(p_nxge_t, queue_t *, p_mblk_t, caddr_t); 800 int nxge_mk_mblk_tail_space(p_mblk_t, p_mblk_t *, size_t); 801 long nxge_strtol(char *, char **, int); 802 boolean_t nxge_param_get_instance(queue_t *, mblk_t *); 803 void nxge_param_ioctl(p_nxge_t, queue_t *, mblk_t *, struct iocblk *); 804 boolean_t nxge_nd_load(caddr_t *, char *, pfi_t, pfi_t, caddr_t); 805 void nxge_nd_free(caddr_t *); 806 int nxge_nd_getset(p_nxge_t, queue_t *, caddr_t, p_mblk_t); 807 808 void nxge_set_lb_normal(p_nxge_t); 809 boolean_t nxge_set_lb(p_nxge_t, queue_t *, p_mblk_t); 810 811 /* nxge_virtual.c */ 812 nxge_status_t nxge_cntlops(dev_info_t *, nxge_ctl_enum_t, void *, void *); 813 void nxge_common_lock_get(p_nxge_t); 814 void nxge_common_lock_free(p_nxge_t); 815 816 nxge_status_t nxge_get_config_properties(p_nxge_t); 817 void nxge_get_xcvr_properties(p_nxge_t); 818 void nxge_init_vlan_config(p_nxge_t); 819 void nxge_init_mac_config(p_nxge_t); 820 821 822 void nxge_init_logical_devs(p_nxge_t); 823 int nxge_init_ldg_intrs(p_nxge_t); 824 825 void nxge_set_ldgimgmt(p_nxge_t, uint32_t, boolean_t, 826 uint32_t); 827 828 void nxge_init_fzc_txdma_channels(p_nxge_t); 829 830 nxge_status_t nxge_init_fzc_txdma_channel(p_nxge_t, uint16_t, 831 p_tx_ring_t, p_tx_mbox_t); 832 nxge_status_t nxge_init_fzc_txdma_port(p_nxge_t); 833 834 nxge_status_t nxge_init_fzc_rxdma_channel(p_nxge_t, uint16_t, 835 p_rx_rbr_ring_t, p_rx_rcr_ring_t, p_rx_mbox_t); 836 837 nxge_status_t nxge_init_fzc_rdc_tbl(p_nxge_t); 838 nxge_status_t nxge_init_fzc_rx_common(p_nxge_t); 839 nxge_status_t nxge_init_fzc_rxdma_port(p_nxge_t); 840 841 nxge_status_t nxge_init_fzc_rxdma_channel_pages(p_nxge_t, 842 uint16_t, p_rx_rbr_ring_t); 843 nxge_status_t nxge_init_fzc_rxdma_channel_red(p_nxge_t, 844 uint16_t, p_rx_rcr_ring_t); 845 846 nxge_status_t nxge_init_fzc_rxdma_channel_clrlog(p_nxge_t, 847 uint16_t, p_rx_rbr_ring_t); 848 849 850 nxge_status_t nxge_init_fzc_txdma_channel_pages(p_nxge_t, 851 uint16_t, p_tx_ring_t); 852 853 nxge_status_t nxge_init_fzc_txdma_channel_drr(p_nxge_t, uint16_t, 854 p_tx_ring_t); 855 856 nxge_status_t nxge_init_fzc_txdma_port(p_nxge_t); 857 858 void nxge_init_fzc_ldg_num(p_nxge_t); 859 void nxge_init_fzc_sys_int_data(p_nxge_t); 860 void nxge_init_fzc_ldg_int_timer(p_nxge_t); 861 nxge_status_t nxge_intr_mask_mgmt_set(p_nxge_t, boolean_t on); 862 863 /* MAC functions */ 864 nxge_status_t nxge_mac_init(p_nxge_t); 865 nxge_status_t nxge_link_init(p_nxge_t); 866 nxge_status_t nxge_xif_init(p_nxge_t); 867 nxge_status_t nxge_pcs_init(p_nxge_t); 868 nxge_status_t nxge_serdes_init(p_nxge_t); 869 nxge_status_t nxge_xcvr_find(p_nxge_t); 870 nxge_status_t nxge_get_xcvr_type(p_nxge_t); 871 nxge_status_t nxge_setup_xcvr_table(p_nxge_t); 872 nxge_status_t nxge_xcvr_init(p_nxge_t); 873 nxge_status_t nxge_tx_mac_init(p_nxge_t); 874 nxge_status_t nxge_rx_mac_init(p_nxge_t); 875 nxge_status_t nxge_tx_mac_enable(p_nxge_t); 876 nxge_status_t nxge_tx_mac_disable(p_nxge_t); 877 nxge_status_t nxge_rx_mac_enable(p_nxge_t); 878 nxge_status_t nxge_rx_mac_disable(p_nxge_t); 879 nxge_status_t nxge_tx_mac_reset(p_nxge_t); 880 nxge_status_t nxge_rx_mac_reset(p_nxge_t); 881 nxge_status_t nxge_link_intr(p_nxge_t, link_intr_enable_t); 882 nxge_status_t nxge_mii_xcvr_init(p_nxge_t); 883 nxge_status_t nxge_mii_read(p_nxge_t, uint8_t, 884 uint8_t, uint16_t *); 885 nxge_status_t nxge_mii_write(p_nxge_t, uint8_t, 886 uint8_t, uint16_t); 887 nxge_status_t nxge_mdio_read(p_nxge_t, uint8_t, uint8_t, 888 uint16_t, uint16_t *); 889 nxge_status_t nxge_mdio_write(p_nxge_t, uint8_t, 890 uint8_t, uint16_t, uint16_t); 891 nxge_status_t nxge_mii_check(p_nxge_t, mii_bmsr_t, 892 mii_bmsr_t, nxge_link_state_t *); 893 nxge_status_t nxge_pcs_check(p_nxge_t, uint8_t portn, nxge_link_state_t *); 894 nxge_status_t nxge_add_mcast_addr(p_nxge_t, struct ether_addr *); 895 nxge_status_t nxge_del_mcast_addr(p_nxge_t, struct ether_addr *); 896 nxge_status_t nxge_set_mac_addr(p_nxge_t, struct ether_addr *); 897 nxge_status_t nxge_check_bcm8704_link(p_nxge_t, boolean_t *); 898 void nxge_link_is_down(p_nxge_t); 899 void nxge_link_is_up(p_nxge_t); 900 nxge_status_t nxge_link_monitor(p_nxge_t, link_mon_enable_t); 901 uint32_t crc32_mchash(p_ether_addr_t); 902 nxge_status_t nxge_set_promisc(p_nxge_t, boolean_t); 903 nxge_status_t nxge_mac_handle_sys_errors(p_nxge_t); 904 nxge_status_t nxge_10g_link_led_on(p_nxge_t); 905 nxge_status_t nxge_10g_link_led_off(p_nxge_t); 906 nxge_status_t nxge_scan_ports_phy(p_nxge_t, p_nxge_hw_list_t); 907 boolean_t nxge_is_valid_local_mac(ether_addr_st); 908 909 /* espc (sprom) prototypes */ 910 nxge_status_t nxge_espc_mac_addrs_get(p_nxge_t); 911 nxge_status_t nxge_espc_num_macs_get(p_nxge_t, uint8_t *); 912 nxge_status_t nxge_espc_num_ports_get(p_nxge_t); 913 nxge_status_t nxge_espc_phy_type_get(p_nxge_t); 914 nxge_status_t nxge_espc_verify_chksum(p_nxge_t); 915 void nxge_espc_get_next_mac_addr(uint8_t *, uint8_t, struct ether_addr *); 916 void nxge_vpd_info_get(p_nxge_t); 917 918 919 void nxge_debug_msg(p_nxge_t, uint64_t, char *, ...); 920 int nxge_get_nports(p_nxge_t); 921 922 uint64_t hv_niu_rx_logical_page_conf(uint64_t, uint64_t, 923 uint64_t, uint64_t); 924 #pragma weak hv_niu_rx_logical_page_conf 925 926 uint64_t hv_niu_rx_logical_page_info(uint64_t, uint64_t, 927 uint64_t *, uint64_t *); 928 #pragma weak hv_niu_rx_logical_page_info 929 930 uint64_t hv_niu_tx_logical_page_conf(uint64_t, uint64_t, 931 uint64_t, uint64_t); 932 #pragma weak hv_niu_tx_logical_page_conf 933 934 uint64_t hv_niu_tx_logical_page_info(uint64_t, uint64_t, 935 uint64_t *, uint64_t *); 936 #pragma weak hv_niu_tx_logical_page_info 937 938 #ifdef NXGE_DEBUG 939 char *nxge_dump_packet(char *, int); 940 #endif 941 942 #endif /* !_ASM */ 943 944 #ifdef __cplusplus 945 } 946 #endif 947 948 #endif /* _SYS_NXGE_NXGE_IMPL_H */ 949