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.
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.
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]
22 * Copyright 2010 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #ifndef _SYS_NXGE_NXGE_IMPL_H
27 #define _SYS_NXGE_NXGE_IMPL_H
34 * NIU HV API version definitions.
36 * If additional major (HV API) is to be supported,
37 * please increment NIU_MAJOR_HI.
38 * If additional minor # is to be supported,
39 * please increment NIU_MINOR_HI.
41 #define NIU_MAJOR_HI 2
42 #define NIU_MINOR_HI 1
43 #define NIU_MAJOR_VER 1
44 #define NIU_MINOR_VER 1
45 #define NIU_MAJOR_VER_2 2
50 * NIU HV API v1.0 definitions
52 #define N2NIU_RX_LP_CONF 0x142
53 #define N2NIU_RX_LP_INFO 0x143
54 #define N2NIU_TX_LP_CONF 0x144
55 #define N2NIU_TX_LP_INFO 0x145
57 #endif /* defined(sun4v) */
61 #include <sys/types.h>
62 #include <sys/byteorder.h>
63 #include <sys/debug.h>
64 #include <sys/stropts.h>
65 #include <sys/stream.h>
66 #include <sys/strlog.h>
67 #include <sys/strsubr.h>
68 #include <sys/cmn_err.h>
69 #include <sys/vtrace.h>
72 #include <sys/sunddi.h>
73 #include <sys/strsun.h>
76 #include <sys/kstat.h>
77 #include <inet/common.h>
81 #include <netinet/in.h>
82 #include <sys/ethernet.h>
85 #include <sys/taskq.h>
86 #include <sys/atomic.h>
88 #include <sys/nxge/nxge_defs.h>
89 #include <sys/nxge/nxge_hw.h>
90 #include <sys/nxge/nxge_mac.h>
91 #include <sys/nxge/nxge_mii.h>
92 #include <sys/nxge/nxge_fm.h>
93 #include <sys/netlb.h>
95 #include <sys/ddi_intr.h>
96 #include <sys/mac_provider.h>
97 #include <sys/mac_ether.h>
100 #include <sys/hypervisor_api.h>
101 #include <sys/machsystm.h>
102 #include <sys/hsvc.h>
108 * Handy macros (taken from bge driver)
111 #define DMA_COMMON_CHANNEL(area) ((area.dma_channel))
112 #define DMA_COMMON_VPTR(area) ((area.kaddrp))
113 #define DMA_COMMON_VPTR_INDEX(area, index) \
114 (((char *)(area.kaddrp)) + \
116 #define DMA_COMMON_HANDLE(area) ((area.dma_handle))
117 #define DMA_COMMON_ACC_HANDLE(area) ((area.acc_handle))
118 #define DMA_COMMON_IOADDR(area) ((area.dma_cookie.dmac_laddress))
119 #define DMA_COMMON_IOADDR_INDEX(area, index) \
120 ((area.dma_cookie.dmac_laddress) + \
123 #define DMA_NPI_HANDLE(area) ((area.npi_handle)
125 #define DMA_COMMON_SYNC(area, flag) ((void) ddi_dma_sync((area).dma_handle,\
126 (area).offset, (area).alength, \
128 #define DMA_COMMON_SYNC_OFFSET(area, bufoffset, len, flag) \
129 ((void) ddi_dma_sync((area).dma_handle,\
130 (area.offset + bufoffset), len, \
133 #define DMA_COMMON_SYNC_RBR_DESC(area, index, flag) \
134 ((void) ddi_dma_sync((area).dma_handle,\
135 (index * RBR_SIZE), RBR_SIZE, \
138 #define DMA_COMMON_SYNC_RBR_DESC_MULTI(area, index, count, flag) \
139 ((void) ddi_dma_sync((area).dma_handle,\
140 (index * RBR_SIZE), count * RBR_SIZE, \
142 #define DMA_COMMON_SYNC_ENTRY(area, index, flag) \
143 ((void) ddi_dma_sync((area).dma_handle,\
144 (index * (area).block_size), \
148 #define NEXT_ENTRY(index, wrap) ((index + 1) & wrap)
149 #define NEXT_ENTRY_PTR(ptr, first, last) \
150 ((ptr == last) ? first : (ptr + 1))
155 #define NXGE_DEV_NPI_HANDLE(nxgep) (nxgep->npi_handle)
157 #define NPI_PCI_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_pci_handle.regh = ah)
158 #define NPI_PCI_ADD_HANDLE_SET(nxgep, ap) (nxgep->npi_pci_handle.regp = ap)
160 #define NPI_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_handle.regh = ah)
161 #define NPI_ADD_HANDLE_SET(nxgep, ap) \
162 nxgep->npi_handle.is_vraddr = B_FALSE; \
163 nxgep->npi_handle.function.instance = nxgep->instance; \
164 nxgep->npi_handle.function.function = nxgep->function_num; \
165 nxgep->npi_handle.nxgep = (void *) nxgep; \
166 nxgep->npi_handle.regp = ap;
168 #define NPI_REG_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_reg_handle.regh = ah)
169 #define NPI_REG_ADD_HANDLE_SET(nxgep, ap) \
170 nxgep->npi_reg_handle.is_vraddr = B_FALSE; \
171 nxgep->npi_handle.function.instance = nxgep->instance; \
172 nxgep->npi_handle.function.function = nxgep->function_num; \
173 nxgep->npi_reg_handle.nxgep = (void *) nxgep; \
174 nxgep->npi_reg_handle.regp = ap;
176 #define NPI_MSI_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_msi_handle.regh = ah)
177 #define NPI_MSI_ADD_HANDLE_SET(nxgep, ap) (nxgep->npi_msi_handle.regp = ap)
179 #define NPI_VREG_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_vreg_handle.regh = ah)
180 #define NPI_VREG_ADD_HANDLE_SET(nxgep, ap) \
181 nxgep->npi_vreg_handle.is_vraddr = B_TRUE; \
182 nxgep->npi_handle.function.instance = nxgep->instance; \
183 nxgep->npi_handle.function.function = nxgep->function_num; \
184 nxgep->npi_vreg_handle.nxgep = (void *) nxgep; \
185 nxgep->npi_vreg_handle.regp = ap;
187 #define NPI_V2REG_ACC_HANDLE_SET(nxgep, ah) (nxgep->npi_v2reg_handle.regh = ah)
188 #define NPI_V2REG_ADD_HANDLE_SET(nxgep, ap) \
189 nxgep->npi_v2reg_handle.is_vraddr = B_TRUE; \
190 nxgep->npi_handle.function.instance = nxgep->instance; \
191 nxgep->npi_handle.function.function = nxgep->function_num; \
192 nxgep->npi_v2reg_handle.nxgep = (void *) nxgep; \
193 nxgep->npi_v2reg_handle.regp = ap;
195 #define NPI_PCI_ACC_HANDLE_GET(nxgep) (nxgep->npi_pci_handle.regh)
196 #define NPI_PCI_ADD_HANDLE_GET(nxgep) (nxgep->npi_pci_handle.regp)
197 #define NPI_ACC_HANDLE_GET(nxgep) (nxgep->npi_handle.regh)
198 #define NPI_ADD_HANDLE_GET(nxgep) (nxgep->npi_handle.regp)
199 #define NPI_REG_ACC_HANDLE_GET(nxgep) (nxgep->npi_reg_handle.regh)
200 #define NPI_REG_ADD_HANDLE_GET(nxgep) (nxgep->npi_reg_handle.regp)
201 #define NPI_MSI_ACC_HANDLE_GET(nxgep) (nxgep->npi_msi_handle.regh)
202 #define NPI_MSI_ADD_HANDLE_GET(nxgep) (nxgep->npi_msi_handle.regp)
203 #define NPI_VREG_ACC_HANDLE_GET(nxgep) (nxgep->npi_vreg_handle.regh)
204 #define NPI_VREG_ADD_HANDLE_GET(nxgep) (nxgep->npi_vreg_handle.regp)
205 #define NPI_V2REG_ACC_HANDLE_GET(nxgep) (nxgep->npi_v2reg_handle.regh)
206 #define NPI_V2REG_ADD_HANDLE_GET(nxgep) (nxgep->npi_v2reg_handle.regp)
208 #define NPI_DMA_ACC_HANDLE_SET(dmap, ah) (dmap->npi_handle.regh = ah)
209 #define NPI_DMA_ACC_HANDLE_GET(dmap) (dmap->npi_handle.regh)
214 #define NXGE_DESC_D_HANDLE_GET(desc) (desc.dma_handle)
215 #define NXGE_DESC_D_IOADD_GET(desc) (desc.dma_cookie.dmac_laddress)
216 #define NXGE_DMA_IOADD_GET(dma_cookie) (dma_cookie.dmac_laddress)
217 #define NXGE_DMA_AREA_IOADD_GET(dma_area) (dma_area.dma_cookie.dmac_laddress)
219 #define LDV_ON(ldv, vector) ((vector >> ldv) & 0x1)
220 #define LDV2_ON_1(ldv, vector) ((vector >> (ldv - 64)) & 0x1)
221 #define LDV2_ON_2(ldv, vector) (((vector >> 5) >> (ldv - 64)) & 0x1)
223 typedef uint32_t nxge_status_t
;
242 } nxge_rx_block_size_t
;
245 #define TX_BCOPY_MAX 1514
247 #if defined(sun4v) && defined(NIU_LP_WORKAROUND)
248 #define TX_BCOPY_MAX 4096
249 #define TX_BCOPY_SIZE 4096
251 #define TX_BCOPY_MAX 2048
252 #define TX_BCOPY_SIZE 2048
256 #define TX_STREAM_MIN 512
257 #define TX_FASTDVMA_MIN 1024
260 * Send repeated FMA ereports or display messages about some non-fatal
261 * hardware errors only the the first NXGE_ERROR_SHOW_MAX -1 times
263 #define NXGE_ERROR_SHOW_MAX 2
269 #define NXGE_RDC_RCR_THRESHOLD 32
270 #define NXGE_RDC_RCR_TIMEOUT 8
272 #define NXGE_RDC_RCR_THRESHOLD_MAX 1024
273 #define NXGE_RDC_RCR_TIMEOUT_MAX 64
274 #define NXGE_RDC_RCR_THRESHOLD_MIN 8
275 #define NXGE_RDC_RCR_TIMEOUT_MIN 1
276 #define NXGE_RCR_FULL_HEADER 1
278 #define NXGE_IS_VLAN_PACKET(ptr) \
279 ((((struct ether_vlan_header *)ptr)->ether_tpid) == \
280 htons(VLAN_ETHERTYPE))
305 struct _nxge_block_mv_t
{
310 typedef struct _nxge_block_mv_t nxge_block_mv_t
, *p_nxge_block_mv_t
;
317 (NXGE_PORT_1G_COPPER
|
318 (NXGE_PORT_1G_COPPER
<< 4) |
319 (NXGE_PORT_1G_COPPER
<< 8) |
320 (NXGE_PORT_1G_COPPER
<< 12)),
322 /* Huron: 2 fiber XAUI cards */
324 (NXGE_PORT_10G_FIBRE
|
325 (NXGE_PORT_10G_FIBRE
<< 4) |
326 (NXGE_PORT_NONE
<< 8) |
327 (NXGE_PORT_NONE
<< 12)),
329 /* Huron: port0 is a TN1010 copper XAUI */
332 (NXGE_PORT_NONE
<< 4) |
333 (NXGE_PORT_NONE
<< 8) |
334 (NXGE_PORT_NONE
<< 12)),
336 /* Huron: port1 is a TN1010 copper XAUI */
337 NEPTUNE_1_NONE_1_TN1010
=
339 (NXGE_PORT_TN1010
<< 4) |
340 (NXGE_PORT_NONE
<< 8) |
341 (NXGE_PORT_NONE
<< 12)),
343 /* Huron: 2 TN1010 copper XAUI cards */
346 (NXGE_PORT_TN1010
<< 4) |
347 (NXGE_PORT_NONE
<< 8) |
348 (NXGE_PORT_NONE
<< 12)),
350 /* Huron: port0 is fiber XAUI, port1 is copper XAUI */
351 NEPTUNE_1_10GF_1_TN1010
=
352 (NXGE_PORT_10G_FIBRE
|
353 (NXGE_PORT_TN1010
<< 4) |
354 (NXGE_PORT_NONE
<< 8) |
355 (NXGE_PORT_NONE
<< 12)),
357 /* Huron: port0 is copper XAUI, port1 is fiber XAUI */
358 NEPTUNE_1_TN1010_1_10GF
=
360 (NXGE_PORT_10G_FIBRE
<< 4) |
361 (NXGE_PORT_NONE
<< 8) |
362 (NXGE_PORT_NONE
<< 12)),
364 /* Maramba: port0 and port1 are fiber XAUIs */
365 NEPTUNE_2_10GF_2_1GC
=
366 (NXGE_PORT_10G_FIBRE
|
367 (NXGE_PORT_10G_FIBRE
<< 4) |
368 (NXGE_PORT_1G_COPPER
<< 8) |
369 (NXGE_PORT_1G_COPPER
<< 12)),
371 /* Maramba: port0 and port1 are copper TN1010 XAUIs */
372 NEPTUNE_2_TN1010_2_1GC
=
374 (NXGE_PORT_TN1010
<< 4) |
375 (NXGE_PORT_1G_COPPER
<< 8) |
376 (NXGE_PORT_1G_COPPER
<< 12)),
378 /* Maramba: port0 is copper XAUI, port1 is Fiber XAUI */
379 NEPTUNE_1_TN1010_1_10GF_2_1GC
=
381 (NXGE_PORT_10G_FIBRE
<< 4) |
382 (NXGE_PORT_1G_COPPER
<< 8) |
383 (NXGE_PORT_1G_COPPER
<< 12)),
385 /* Maramba: port0 is fiber XAUI, port1 is copper XAUI */
386 NEPTUNE_1_10GF_1_TN1010_2_1GC
=
387 (NXGE_PORT_10G_FIBRE
|
388 (NXGE_PORT_TN1010
<< 4) |
389 (NXGE_PORT_1G_COPPER
<< 8) |
390 (NXGE_PORT_1G_COPPER
<< 12)),
392 /* Maramba: port0 is fiber XAUI */
393 NEPTUNE_1_10GF_3_1GC
=
394 (NXGE_PORT_10G_FIBRE
|
395 (NXGE_PORT_1G_COPPER
<< 4) |
396 (NXGE_PORT_1G_COPPER
<< 8) |
397 (NXGE_PORT_1G_COPPER
<< 12)),
399 /* Maramba: port0 is TN1010 copper XAUI */
400 NEPTUNE_1_TN1010_3_1GC
=
402 (NXGE_PORT_1G_COPPER
<< 4) |
403 (NXGE_PORT_1G_COPPER
<< 8) |
404 (NXGE_PORT_1G_COPPER
<< 12)),
406 /* Maramba: port1 is fiber XAUI */
407 NEPTUNE_1_1GC_1_10GF_2_1GC
=
408 (NXGE_PORT_1G_COPPER
|
409 (NXGE_PORT_10G_FIBRE
<< 4) |
410 (NXGE_PORT_1G_COPPER
<< 8) |
411 (NXGE_PORT_1G_COPPER
<< 12)),
413 /* Maramba: port1 is TN1010 copper XAUI */
414 NEPTUNE_1_1GC_1_TN1010_2_1GC
=
415 (NXGE_PORT_1G_COPPER
|
416 (NXGE_PORT_TN1010
<< 4) |
417 (NXGE_PORT_1G_COPPER
<< 8) |
418 (NXGE_PORT_1G_COPPER
<< 12)),
422 (NXGE_PORT_NONE
<< 4) |
423 (NXGE_PORT_1G_RGMII_FIBER
<< 8) |
424 (NXGE_PORT_1G_RGMII_FIBER
<< 12)),
426 NEPTUNE_2_10GF_2_1GRF
=
427 (NXGE_PORT_10G_FIBRE
|
428 (NXGE_PORT_10G_FIBRE
<< 4) |
429 (NXGE_PORT_1G_RGMII_FIBER
<< 8) |
430 (NXGE_PORT_1G_RGMII_FIBER
<< 12)),
434 (NXGE_PORT_RSVD
<< 4) |
435 (NXGE_PORT_RSVD
<< 8) |
436 (NXGE_PORT_RSVD
<< 12))
441 * The niu_hw_type is for non-PHY related functions
442 * designed on various versions of NIU chips (i.e. RF/NIU has
443 * additional classification features and communicates with
444 * a different SerDes than N2/NIU).
447 NIU_HW_TYPE_DEFAULT
= 0, /* N2/NIU */
448 NIU_HW_TYPE_RF
= 1, /* RF/NIU */
453 * The cover-all case for Neptune (as opposed to NIU) where we do not
454 * care the exact platform as we do not do anything that is platform
456 * P_NEPTUNE_ATLAS_2PORT:
457 * Dual Port Fiber Neptune based NIC (2XGF)
458 * P_NEPTUNE_ATLAS_4PORT:
459 * Quad Port Copper Neptune based NIC (QGC)
461 * This is NIU. Could be Huron, Glendale, Monza or any other NIU based
467 P_NEPTUNE_ATLAS_2PORT
,
468 P_NEPTUNE_ATLAS_4PORT
,
469 P_NEPTUNE_MARAMBA_P0
,
470 P_NEPTUNE_MARAMBA_P1
,
476 #define NXGE_IS_VALID_NEPTUNE_TYPE(nxgep) \
477 (((nxgep->platform_type) == P_NEPTUNE_ATLAS_2PORT) || \
478 ((nxgep->platform_type) == P_NEPTUNE_ATLAS_4PORT) || \
479 ((nxgep->platform_type) == P_NEPTUNE_MARAMBA_P0) || \
480 ((nxgep->platform_type) == P_NEPTUNE_MARAMBA_P1) || \
481 ((nxgep->platform_type) == P_NEPTUNE_GENERIC) || \
482 ((nxgep->platform_type) == P_NEPTUNE_ALONSO) || \
483 ((nxgep->platform_type) == P_NEPTUNE_ROCK))
485 #define NXGE_IS_XAUI_PLATFORM(nxgep) \
486 (((nxgep->platform_type) == P_NEPTUNE_NIU) || \
487 ((nxgep->platform_type) == P_NEPTUNE_MARAMBA_P0) || \
488 ((nxgep->platform_type) == P_NEPTUNE_MARAMBA_P1))
492 CFG_DEFAULT
= 0, /* default cfg */
493 CFG_EQUAL
, /* Equal */
494 CFG_FAIR
, /* Equal */
502 CFG_CUSTOM
/* Custom */
506 NO_MSG
= 0x0, /* No message output or storage. */
507 CONSOLE
= 0x1, /* Messages are go to the console. */
508 BUFFER
= 0x2, /* Messages are go to the system buffer. */
509 CON_BUF
= 0x3, /* Messages are go to the console and */
511 VERBOSE
= 0x4 /* Messages are go out only in VERBOSE node. */
512 } out_msg_t
, *p_out_msg_t
;
515 DBG_NO_MSG
= 0x0, /* No message output or storage. */
516 DBG_CONSOLE
= 0x1, /* Messages are go to the console. */
517 DBG_BUFFER
= 0x2, /* Messages are go to the system buffer. */
518 DBG_CON_BUF
= 0x3, /* Messages are go to the console and */
520 STR_LOG
= 4 /* Sessage sent to streams logging driver. */
521 } out_dbgmsg_t
, *p_out_dbgmsg_t
;
524 DDI_MEM_ALLOC
, /* default (use ddi_dma_mem_alloc) */
525 KMEM_ALLOC
, /* use kmem_alloc(). */
526 CONTIG_MEM_ALLOC
/* use contig_mem_alloc() (N2/NIU only) */
529 #define BUF_ALLOCATED 0x00000001
530 #define BUF_ALLOCATED_WAIT_FREE 0x00000002
532 typedef struct ether_addr ether_addr_st
, *p_ether_addr_t
;
533 typedef struct ether_header ether_header_t
, *p_ether_header_t
;
534 typedef queue_t
*p_queue_t
;
535 typedef mblk_t
*p_mblk_t
;
538 * Generic phy table to support different phy types.
540 * The argument for check_link is nxgep, which is passed to check_link
541 * as an argument to the timer routine.
543 typedef struct _nxge_xcvr_table
{
544 nxge_status_t (*serdes_init
) (); /* Serdes init routine */
545 nxge_status_t (*xcvr_init
) (); /* xcvr init routine */
546 nxge_status_t (*link_intr_stop
) (); /* Link intr disable routine */
547 nxge_status_t (*link_intr_start
) (); /* Link intr enable routine */
548 nxge_status_t (*check_link
) (); /* Link check routine */
551 } nxge_xcvr_table_t
, *p_nxge_xcvr_table_t
;
554 * Common DMA data elements.
556 typedef struct _nxge_dma_pool_t nxge_dma_pool_t
, *p_nxge_dma_pool_t
;
558 struct _nxge_dma_common_t
{
559 uint16_t dma_channel
;
563 void *first_ioaddr_pp
;
564 void *last_ioaddr_pp
;
565 ddi_dma_cookie_t dma_cookie
;
568 ddi_dma_handle_t dma_handle
;
569 nxge_os_acc_handle_t acc_handle
;
570 npi_handle_t npi_handle
;
576 uint_t dma_chunk_index
;
577 void *orig_ioaddr_pp
;
578 uint64_t orig_vatopa
;
581 boolean_t contig_alloc_type
;
583 * Receive buffers may be allocated using
584 * kmem_alloc(). The buffer free function
585 * depends on its allocation function.
587 boolean_t kmem_alloc_type
;
588 uint32_t buf_alloc_state
;
589 buf_alloc_type_t buf_alloc_type
;
590 p_nxge_dma_pool_t rx_buf_pool_p
;
593 typedef struct _nxge_t nxge_t
, *p_nxge_t
;
594 typedef struct _nxge_dma_common_t nxge_dma_common_t
, *p_nxge_dma_common_t
;
596 struct _nxge_dma_pool_t
{
597 p_nxge_dma_common_t
*dma_buf_pool_p
;
599 uint32_t *num_chunks
;
600 boolean_t buf_allocated
;
604 * Each logical device (69):
608 * - interrupt handler function.
610 * Generic system interrupt handler with two arguments:
612 * Per device instance data structure
613 * Logical group data structure.
615 * Logical device interrupt handler with two arguments:
617 * Per device instance data structure
618 * Logical device number
620 typedef struct _nxge_ldg_t nxge_ldg_t
, *p_nxge_ldg_t
;
621 typedef struct _nxge_ldv_t nxge_ldv_t
, *p_nxge_ldv_t
;
622 typedef uint_t (*nxge_sys_intr_t
)(void *arg1
, void *arg2
);
623 typedef uint_t (*nxge_ldv_intr_t
)(void *arg1
, void *arg2
);
626 * Each logical device Group (64) needs to have the following
628 * - timer counter (6 bits)
629 * - timer resolution (20 bits, number of system clocks)
630 * - system data (7 bits)
633 uint8_t ldg
; /* logical group number */
636 uint16_t ldg_timer
; /* counter */
642 nxge_sys_intr_t sys_intr_handler
;
648 uint8_t ldg_assigned
;
661 uint8_t ldv_ldf_masks
;
662 nxge_ldv_intr_t ldv_intr_handler
;
666 typedef struct _nxge_logical_page_t
{
674 } nxge_logical_page_t
, *p_nxge_logical_page_t
;
677 * (Internal) return values from ioctl subroutines.
679 enum nxge_ioc_reply
{
680 IOC_INVAL
= -1, /* bad, NAK with EINVAL */
681 IOC_DONE
, /* OK, reply sent */
682 IOC_ACK
, /* OK, just send ACK */
683 IOC_REPLY
, /* OK, just send reply */
684 IOC_RESTART_ACK
, /* OK, restart & ACK */
685 IOC_RESTART_REPLY
/* OK, restart & reply */
688 typedef struct _pci_cfg_t
{
714 } pci_cfg_t
, *p_pci_cfg_t
;
716 typedef struct _dev_regs_t
{
717 nxge_os_acc_handle_t nxge_pciregh
; /* PCI config DDI IO handle */
718 p_pci_cfg_t nxge_pciregp
; /* mapped PCI registers */
720 nxge_os_acc_handle_t nxge_regh
; /* device DDI IO (BAR 0) */
721 void *nxge_regp
; /* mapped device registers */
723 nxge_os_acc_handle_t nxge_msix_regh
; /* MSI/X DDI handle (BAR 2) */
724 void *nxge_msix_regp
; /* MSI/X register */
726 nxge_os_acc_handle_t nxge_vir_regh
; /* virtualization (BAR 4) */
727 unsigned char *nxge_vir_regp
; /* virtualization register */
729 nxge_os_acc_handle_t nxge_vir2_regh
; /* second virtualization */
730 unsigned char *nxge_vir2_regp
; /* second virtualization */
732 nxge_os_acc_handle_t nxge_romh
; /* fcode rom handle */
733 unsigned char *nxge_romp
; /* fcode pointer */
734 } dev_regs_t
, *p_dev_regs_t
;
737 typedef struct _nxge_mac_addr_t
{
743 * The hardware supports 1 unique MAC and 16 alternate MACs (num_mmac)
744 * for each XMAC port and supports 1 unique MAC and 7 alternate MACs
745 * for each BMAC port. The number of MACs assigned by the factory is
746 * different and is as follows,
747 * BMAC port: num_factory_mmac = num_mmac = 7
748 * XMAC port on a 2-port NIC: num_factory_mmac = num_mmac - 1 = 15
749 * XMAC port on a 4-port NIC: num_factory_mmac = 7
750 * So num_factory_mmac is smaller than num_mmac. nxge_m_mmac_add uses
751 * num_mmac and nxge_m_mmac_reserve uses num_factory_mmac.
753 * total_factory_macs is the total number of factory MACs, including
754 * the unique MAC, assigned to a Neptune based NIC card, it is 32.
756 typedef struct _nxge_mmac_t
{
757 uint8_t total_factory_macs
;
759 uint8_t num_factory_mmac
;
760 nxge_mac_addr_t mac_pool
[XMAC_MAX_ADDR_ENTRY
];
761 ether_addr_t factory_mac_pool
[XMAC_MAX_ADDR_ENTRY
];
762 uint8_t naddrfree
; /* number of alt mac addr available */
766 * mmac stats structure
768 typedef struct _nxge_mmac_stats_t
{
769 uint8_t mmac_max_cnt
;
770 uint8_t mmac_avail_cnt
;
771 struct ether_addr mmac_avail_pool
[16];
772 } nxge_mmac_stats_t
, *p_nxge_mmac_stats_t
;
775 * Copied from mac.h. Should be cleaned up by driver.
777 #define MMAC_SLOT_USED 0x1 /* address slot used */
778 #define MMAC_VENDOR_ADDR 0x2 /* address returned is vendor supplied */
781 #define NXGE_MAX_MMAC_ADDRS 32
782 #define NXGE_NUM_MMAC_ADDRS 8
783 #define NXGE_NUM_OF_PORTS_QUAD 4
784 #define NXGE_NUM_OF_PORTS_DUAL 2
786 #define NXGE_QGC_LP_BM_STR "501-7606"
787 #define NXGE_2XGF_LP_BM_STR "501-7283"
788 #define NXGE_QGC_PEM_BM_STR "501-7765"
789 #define NXGE_2XGF_PEM_BM_STR "501-7626"
790 #define NXGE_ALONSO_BM_STR "373-0202-01"
791 #define NXGE_ALONSO_MODEL_STR "SUNW,CP3220"
792 #define NXGE_RFEM_BM_STR "501-7961-01"
793 #define NXGE_RFEM_MODEL_STR "SUNW,pcie-rfem"
794 #define NXGE_ARTM_BM_STR "375-3544-01"
795 #define NXGE_ARTM_MODEL_STR "SUNW,pcie-artm"
796 /* ROCK OBP creates a compatible property for ROCK */
797 #define NXGE_ROCK_COMPATIBLE "SUNW,rock-pciex108e,abcd"
798 #define NXGE_EROM_LEN 1048576
800 #include <sys/nxge/nxge_common_impl.h>
801 #include <sys/nxge/nxge_common.h>
802 #include <sys/nxge/nxge_txc.h>
803 #include <sys/nxge/nxge_rxdma.h>
804 #include <sys/nxge/nxge_txdma.h>
805 #include <sys/nxge/nxge_fflp.h>
806 #include <sys/nxge/nxge_ipp.h>
807 #include <sys/nxge/nxge_zcp.h>
808 #include <sys/nxge/nxge_fzc.h>
809 #include <sys/nxge/nxge_flow.h>
810 #include <sys/nxge/nxge_virtual.h>
812 #include <npi_espc.h>
815 #include <sys/nxge/nxge.h>
817 #include <sys/modctl.h>
818 #include <sys/pattr.h>
820 extern int secpolicy_net_config(const cred_t
*, boolean_t
);
821 extern void nxge_fm_report_error(p_nxge_t
, uint8_t,
822 uint8_t, nxge_fm_ereport_id_t
);
823 extern int fm_check_acc_handle(ddi_acc_handle_t
);
824 extern int fm_check_dma_handle(ddi_dma_handle_t
);
826 /* nxge_classify.c */
827 nxge_status_t
nxge_classify_init(p_nxge_t
);
828 nxge_status_t
nxge_classify_uninit(p_nxge_t
);
829 nxge_status_t
nxge_set_hw_classify_config(p_nxge_t
);
830 nxge_status_t
nxge_classify_exit_sw(p_nxge_t
);
833 void nxge_put_tcam(p_nxge_t
, p_mblk_t
);
834 void nxge_get_tcam(p_nxge_t
, p_mblk_t
);
835 nxge_status_t
nxge_classify_init_hw(p_nxge_t
);
836 nxge_status_t
nxge_classify_init_sw(p_nxge_t
);
837 nxge_status_t
nxge_fflp_ip_class_config_all(p_nxge_t
);
838 nxge_status_t
nxge_fflp_ip_class_config(p_nxge_t
, tcam_class_t
,
841 nxge_status_t
nxge_fflp_ip_class_config_get(p_nxge_t
,
845 nxge_status_t
nxge_cfg_ip_cls_flow_key(p_nxge_t
, tcam_class_t
,
848 nxge_status_t
nxge_fflp_ip_usr_class_config(p_nxge_t
, tcam_class_t
,
851 uint64_t nxge_classify_get_cfg_value(p_nxge_t
, uint8_t, uint8_t);
852 nxge_status_t
nxge_add_flow(p_nxge_t
, flow_resource_t
*);
853 nxge_status_t
nxge_fflp_config_tcam_enable(p_nxge_t
);
854 nxge_status_t
nxge_fflp_config_tcam_disable(p_nxge_t
);
856 nxge_status_t
nxge_fflp_config_hash_lookup_enable(p_nxge_t
);
857 nxge_status_t
nxge_fflp_config_hash_lookup_disable(p_nxge_t
);
859 nxge_status_t
nxge_fflp_config_llc_snap_enable(p_nxge_t
);
860 nxge_status_t
nxge_fflp_config_llc_snap_disable(p_nxge_t
);
862 nxge_status_t
nxge_logical_mac_assign_rdc_table(p_nxge_t
, uint8_t);
863 nxge_status_t
nxge_fflp_config_vlan_table(p_nxge_t
, uint16_t);
865 nxge_status_t
nxge_fflp_set_hash1(p_nxge_t
, uint32_t);
867 nxge_status_t
nxge_fflp_set_hash2(p_nxge_t
, uint16_t);
869 nxge_status_t
nxge_fflp_init_hostinfo(p_nxge_t
);
871 void nxge_handle_tcam_fragment_bug(p_nxge_t
);
872 int nxge_rxclass_ioctl(p_nxge_t
, queue_t
*, mblk_t
*);
873 int nxge_rxhash_ioctl(p_nxge_t
, queue_t
*, mblk_t
*);
875 nxge_status_t
nxge_fflp_hw_reset(p_nxge_t
);
876 nxge_status_t
nxge_fflp_handle_sys_errors(p_nxge_t
);
877 nxge_status_t
nxge_zcp_handle_sys_errors(p_nxge_t
);
880 void nxge_init_statsp(p_nxge_t
);
881 void nxge_setup_kstats(p_nxge_t
);
882 void nxge_setup_rdc_kstats(p_nxge_t
, int);
883 void nxge_setup_tdc_kstats(p_nxge_t
, int);
884 void nxge_destroy_kstats(p_nxge_t
);
885 int nxge_port_kstat_update(kstat_t
*, int);
886 void nxge_save_cntrs(p_nxge_t
);
888 int nxge_m_stat(void *arg
, uint_t
, uint64_t *);
889 int nxge_rx_ring_stat(mac_ring_driver_t
, uint_t
, uint64_t *);
890 int nxge_tx_ring_stat(mac_ring_driver_t
, uint_t
, uint64_t *);
894 nxge_hw_ioctl(p_nxge_t
, queue_t
*, mblk_t
*, struct iocblk
*);
895 void nxge_loopback_ioctl(p_nxge_t
, queue_t
*, mblk_t
*, struct iocblk
*);
896 nxge_status_t
nxge_global_reset(p_nxge_t
);
897 uint_t
nxge_intr(void *, void *);
898 void nxge_intr_enable(p_nxge_t
);
899 void nxge_intr_disable(p_nxge_t
);
900 void nxge_hw_blank(void *arg
, time_t, uint_t
);
901 void nxge_hw_id_init(p_nxge_t
);
902 void nxge_hw_init_niu_common(p_nxge_t
);
903 void nxge_intr_hw_enable(p_nxge_t
);
904 void nxge_intr_hw_disable(p_nxge_t
);
905 void nxge_hw_stop(p_nxge_t
);
906 void nxge_check_hw_state(p_nxge_t
);
908 void nxge_rxdma_channel_put64(nxge_os_acc_handle_t
,
909 void *, uint32_t, uint16_t,
911 uint64_t nxge_rxdma_channel_get64(nxge_os_acc_handle_t
, void *,
915 void nxge_get32(p_nxge_t
, p_mblk_t
);
916 void nxge_put32(p_nxge_t
, p_mblk_t
);
918 void nxge_hw_set_mac_modes(p_nxge_t
);
921 uint_t
nxge_reschedule(caddr_t
);
922 mblk_t
*nxge_tx_ring_send(void *, mblk_t
*);
923 int nxge_start(p_nxge_t
, p_tx_ring_t
, p_mblk_t
);
926 nxge_status_t
nxge_rxdma_cfg_rdcgrp_default_rdc(p_nxge_t
,
929 nxge_status_t
nxge_rxdma_cfg_port_default_rdc(p_nxge_t
,
931 nxge_status_t
nxge_rxdma_cfg_rcr_threshold(p_nxge_t
, uint8_t,
933 nxge_status_t
nxge_rxdma_cfg_rcr_timeout(p_nxge_t
, uint8_t,
937 void nxge_get_param_soft_properties(p_nxge_t
);
938 void nxge_copy_hw_default_to_param(p_nxge_t
);
939 void nxge_copy_param_hw_to_config(p_nxge_t
);
940 void nxge_setup_param(p_nxge_t
);
941 void nxge_init_param(p_nxge_t
);
942 void nxge_destroy_param(p_nxge_t
);
943 boolean_t
nxge_check_rxdma_rdcgrp_member(p_nxge_t
, uint8_t, uint8_t);
944 boolean_t
nxge_check_rxdma_port_member(p_nxge_t
, uint8_t);
945 boolean_t
nxge_check_rdcgrp_port_member(p_nxge_t
, uint8_t);
947 boolean_t
nxge_check_txdma_port_member(p_nxge_t
, uint8_t);
949 int nxge_param_get_generic(p_nxge_t
, queue_t
*, mblk_t
*, caddr_t
);
950 int nxge_param_set_generic(p_nxge_t
, queue_t
*, mblk_t
*, char *, caddr_t
);
951 int nxge_get_default(p_nxge_t
, queue_t
*, p_mblk_t
, caddr_t
);
952 int nxge_set_default(p_nxge_t
, queue_t
*, p_mblk_t
, char *, caddr_t
);
953 int nxge_nd_get_names(p_nxge_t
, queue_t
*, p_mblk_t
, caddr_t
);
954 int nxge_mk_mblk_tail_space(p_mblk_t
, p_mblk_t
*, size_t);
955 long nxge_strtol(char *, char **, int);
956 boolean_t
nxge_param_get_instance(queue_t
*, mblk_t
*);
957 void nxge_param_ioctl(p_nxge_t
, queue_t
*, mblk_t
*, struct iocblk
*);
958 boolean_t
nxge_nd_load(caddr_t
*, char *, pfi_t
, pfi_t
, caddr_t
);
959 void nxge_nd_free(caddr_t
*);
960 int nxge_nd_getset(p_nxge_t
, queue_t
*, caddr_t
, p_mblk_t
);
962 nxge_status_t
nxge_set_lb_normal(p_nxge_t
);
963 boolean_t
nxge_set_lb(p_nxge_t
, queue_t
*, p_mblk_t
);
964 boolean_t
nxge_param_link_update(p_nxge_t
);
965 int nxge_param_set_ip_opt(p_nxge_t
, queue_t
*, mblk_t
*, char *, caddr_t
);
966 int nxge_dld_get_ip_opt(p_nxge_t
, caddr_t
);
967 int nxge_param_rx_intr_pkts(p_nxge_t
, queue_t
*,
968 mblk_t
*, char *, caddr_t
);
969 int nxge_param_rx_intr_time(p_nxge_t
, queue_t
*,
970 mblk_t
*, char *, caddr_t
);
974 nxge_status_t
nxge_cntlops(dev_info_t
*, nxge_ctl_enum_t
, void *, void *);
975 void nxge_common_lock_get(p_nxge_t
);
976 void nxge_common_lock_free(p_nxge_t
);
978 nxge_status_t
nxge_get_config_properties(p_nxge_t
);
979 void nxge_get_xcvr_properties(p_nxge_t
);
980 void nxge_init_vlan_config(p_nxge_t
);
981 void nxge_init_mac_config(p_nxge_t
);
984 void nxge_init_logical_devs(p_nxge_t
);
985 int nxge_init_ldg_intrs(p_nxge_t
);
987 void nxge_set_ldgimgmt(p_nxge_t
, uint32_t, boolean_t
,
990 void nxge_init_fzc_txdma_channels(p_nxge_t
);
992 nxge_status_t
nxge_init_fzc_txdma_channel(p_nxge_t
, uint16_t,
993 p_tx_ring_t
, p_tx_mbox_t
);
994 nxge_status_t
nxge_init_fzc_txdma_port(p_nxge_t
);
996 nxge_status_t
nxge_init_fzc_rxdma_channel(p_nxge_t
, uint16_t);
998 nxge_status_t
nxge_init_fzc_rx_common(p_nxge_t
);
999 nxge_status_t
nxge_init_fzc_rxdma_port(p_nxge_t
);
1001 nxge_status_t
nxge_init_fzc_rxdma_channel_pages(p_nxge_t
,
1002 uint16_t, p_rx_rbr_ring_t
);
1003 nxge_status_t
nxge_init_fzc_rxdma_channel_red(p_nxge_t
,
1004 uint16_t, p_rx_rcr_ring_t
);
1006 nxge_status_t
nxge_init_fzc_rxdma_channel_clrlog(p_nxge_t
,
1007 uint16_t, p_rx_rbr_ring_t
);
1010 nxge_status_t
nxge_init_fzc_txdma_channel_pages(p_nxge_t
,
1011 uint16_t, p_tx_ring_t
);
1013 nxge_status_t
nxge_init_fzc_txdma_channel_drr(p_nxge_t
, uint16_t,
1016 nxge_status_t
nxge_init_fzc_txdma_port(p_nxge_t
);
1018 void nxge_init_fzc_ldg_num(p_nxge_t
);
1019 void nxge_init_fzc_sys_int_data(p_nxge_t
);
1020 void nxge_init_fzc_ldg_int_timer(p_nxge_t
);
1021 nxge_status_t
nxge_intr_mask_mgmt_set(p_nxge_t
, boolean_t on
);
1024 nxge_status_t
nxge_mac_init(p_nxge_t
);
1025 nxge_status_t
nxge_link_init(p_nxge_t
);
1026 nxge_status_t
nxge_xif_init(p_nxge_t
);
1027 nxge_status_t
nxge_pcs_init(p_nxge_t
);
1028 nxge_status_t
nxge_mac_ctrl_init(p_nxge_t
);
1029 nxge_status_t
nxge_serdes_init(p_nxge_t
);
1030 nxge_status_t
nxge_serdes_reset(p_nxge_t
);
1031 nxge_status_t
nxge_xcvr_find(p_nxge_t
);
1032 nxge_status_t
nxge_get_xcvr_type(p_nxge_t
);
1033 nxge_status_t
nxge_setup_xcvr_table(p_nxge_t
);
1034 nxge_status_t
nxge_xcvr_init(p_nxge_t
);
1035 nxge_status_t
nxge_tx_mac_init(p_nxge_t
);
1036 nxge_status_t
nxge_rx_mac_init(p_nxge_t
);
1037 nxge_status_t
nxge_tx_mac_enable(p_nxge_t
);
1038 nxge_status_t
nxge_tx_mac_disable(p_nxge_t
);
1039 nxge_status_t
nxge_rx_mac_enable(p_nxge_t
);
1040 nxge_status_t
nxge_rx_mac_disable(p_nxge_t
);
1041 nxge_status_t
nxge_tx_mac_reset(p_nxge_t
);
1042 nxge_status_t
nxge_rx_mac_reset(p_nxge_t
);
1043 nxge_status_t
nxge_link_intr(p_nxge_t
, link_intr_enable_t
);
1044 nxge_status_t
nxge_mii_xcvr_init(p_nxge_t
);
1045 nxge_status_t
nxge_mii_xcvr_fiber_init(p_nxge_t
);
1046 nxge_status_t
nxge_mii_read(p_nxge_t
, uint8_t,
1047 uint8_t, uint16_t *);
1048 nxge_status_t
nxge_mii_write(p_nxge_t
, uint8_t,
1050 nxge_status_t
nxge_mdio_read(p_nxge_t
, uint8_t, uint8_t,
1051 uint16_t, uint16_t *);
1052 nxge_status_t
nxge_mdio_write(p_nxge_t
, uint8_t,
1053 uint8_t, uint16_t, uint16_t);
1054 nxge_status_t
nxge_mii_check(p_nxge_t
, mii_bmsr_t
,
1055 mii_bmsr_t
, nxge_link_state_t
*);
1056 void nxge_pcs_check(p_nxge_t
, uint8_t portn
, nxge_link_state_t
*);
1057 nxge_status_t
nxge_add_mcast_addr(p_nxge_t
, struct ether_addr
*);
1058 nxge_status_t
nxge_del_mcast_addr(p_nxge_t
, struct ether_addr
*);
1059 nxge_status_t
nxge_set_mac_addr(p_nxge_t
, struct ether_addr
*);
1060 nxge_status_t
nxge_check_bcm8704_link(p_nxge_t
, boolean_t
*);
1061 nxge_status_t
nxge_check_tn1010_link(p_nxge_t
);
1062 void nxge_link_is_down(p_nxge_t
);
1063 void nxge_link_is_up(p_nxge_t
);
1064 nxge_status_t
nxge_link_monitor(p_nxge_t
, link_mon_enable_t
);
1065 uint32_t crc32_mchash(p_ether_addr_t
);
1066 nxge_status_t
nxge_set_promisc(p_nxge_t
, boolean_t
);
1067 nxge_status_t
nxge_mac_handle_sys_errors(p_nxge_t
);
1068 nxge_status_t
nxge_10g_link_led_on(p_nxge_t
);
1069 nxge_status_t
nxge_10g_link_led_off(p_nxge_t
);
1070 nxge_status_t
nxge_scan_ports_phy(p_nxge_t
, p_nxge_hw_list_t
);
1071 boolean_t
nxge_is_valid_local_mac(ether_addr_st
);
1072 nxge_status_t
nxge_mac_set_framesize(p_nxge_t
);
1074 /* espc (sprom) prototypes */
1075 nxge_status_t
nxge_espc_mac_addrs_get(p_nxge_t
);
1076 nxge_status_t
nxge_espc_num_macs_get(p_nxge_t
, uint8_t *);
1077 nxge_status_t
nxge_espc_num_ports_get(p_nxge_t
);
1078 nxge_status_t
nxge_espc_phy_type_get(p_nxge_t
);
1079 nxge_status_t
nxge_espc_verify_chksum(p_nxge_t
);
1080 void nxge_espc_get_next_mac_addr(uint8_t *, uint8_t, struct ether_addr
*);
1081 void nxge_vpd_info_get(p_nxge_t
);
1084 void nxge_debug_msg(p_nxge_t
, uint64_t, char *, ...);
1085 int nxge_get_nports(p_nxge_t
);
1087 void nxge_free_buf(buf_alloc_type_t
, uint64_t, uint32_t);
1091 uint64_t hv_niu_rx_logical_page_conf(uint64_t, uint64_t,
1092 uint64_t, uint64_t);
1093 #pragma weak hv_niu_rx_logical_page_conf
1095 uint64_t hv_niu_rx_logical_page_info(uint64_t, uint64_t,
1096 uint64_t *, uint64_t *);
1097 #pragma weak hv_niu_rx_logical_page_info
1099 uint64_t hv_niu_tx_logical_page_conf(uint64_t, uint64_t,
1100 uint64_t, uint64_t);
1101 #pragma weak hv_niu_tx_logical_page_conf
1103 uint64_t hv_niu_tx_logical_page_info(uint64_t, uint64_t,
1104 uint64_t *, uint64_t *);
1105 #pragma weak hv_niu_tx_logical_page_info
1107 uint64_t hv_niu_vr_assign(uint64_t vridx
, uint64_t ldc_id
, uint32_t *cookie
);
1108 #pragma weak hv_niu_vr_assign
1110 uint64_t hv_niu_vr_unassign(uint32_t cookie
);
1111 #pragma weak hv_niu_vr_unassign
1113 uint64_t hv_niu_vr_getinfo(uint32_t cookie
, uint64_t *real_start
,
1115 #pragma weak hv_niu_vr_getinfo
1117 uint64_t hv_niu_vr_get_rxmap(uint32_t cookie
, uint64_t *dma_map
);
1118 #pragma weak hv_niu_vr_get_rxmap
1120 uint64_t hv_niu_vr_get_txmap(uint32_t cookie
, uint64_t *dma_map
);
1121 #pragma weak hv_niu_vr_get_txmap
1123 uint64_t hv_niu_rx_dma_assign(uint32_t cookie
, uint64_t chidx
,
1125 #pragma weak hv_niu_rx_dma_assign
1127 uint64_t hv_niu_rx_dma_unassign(uint32_t cookie
, uint64_t chidx
);
1128 #pragma weak hv_niu_rx_dma_unassign
1130 uint64_t hv_niu_tx_dma_assign(uint32_t cookie
, uint64_t chidx
,
1132 #pragma weak hv_niu_tx_dma_assign
1134 uint64_t hv_niu_tx_dma_unassign(uint32_t cookie
, uint64_t chidx
);
1135 #pragma weak hv_niu_tx_dma_unassign
1137 uint64_t hv_niu_vrrx_logical_page_conf(uint32_t cookie
, uint64_t chidx
,
1138 uint64_t pgidx
, uint64_t raddr
, uint64_t size
);
1139 #pragma weak hv_niu_vrrx_logical_page_conf
1141 uint64_t hv_niu_vrrx_logical_page_info(uint32_t cookie
, uint64_t chidx
,
1142 uint64_t pgidx
, uint64_t *raddr
, uint64_t *size
);
1143 #pragma weak hv_niu_vrrx_logical_page_info
1145 uint64_t hv_niu_vrtx_logical_page_conf(uint32_t cookie
, uint64_t chidx
,
1146 uint64_t pgidx
, uint64_t raddr
, uint64_t size
);
1147 #pragma weak hv_niu_vrtx_logical_page_conf
1149 uint64_t hv_niu_vrtx_logical_page_info(uint32_t cookie
, uint64_t chidx
,
1150 uint64_t pgidx
, uint64_t *raddr
, uint64_t *size
);
1151 #pragma weak hv_niu_vrtx_logical_page_info
1153 uint64_t hv_niu_cfgh_rx_logical_page_conf(uint64_t, uint64_t, uint64_t,
1154 uint64_t, uint64_t);
1155 #pragma weak hv_niu_cfgh_rx_logical_page_conf
1157 uint64_t hv_niu_cfgh_rx_logical_page_info(uint64_t, uint64_t, uint64_t,
1158 uint64_t *, uint64_t *);
1159 #pragma weak hv_niu_cfgh_rx_logical_page_info
1161 uint64_t hv_niu_cfgh_tx_logical_page_conf(uint64_t, uint64_t, uint64_t,
1162 uint64_t, uint64_t);
1163 #pragma weak hv_niu_cfgh_tx_logical_page_conf
1165 uint64_t hv_niu_cfgh_tx_logical_page_info(uint64_t, uint64_t, uint64_t,
1166 uint64_t *, uint64_t *);
1167 #pragma weak hv_niu_cfgh_tx_logical_page_info
1169 uint64_t hv_niu_cfgh_vr_assign(uint64_t, uint64_t vridx
, uint64_t ldc_id
,
1171 #pragma weak hv_niu_cfgh_vr_assign
1174 // NIU-specific interrupt API
1176 uint64_t hv_niu_vrrx_getinfo(uint32_t cookie
, uint64_t v_chidx
,
1177 uint64_t *group
, uint64_t *logdev
);
1178 #pragma weak hv_niu_vrrx_getinfo
1180 uint64_t hv_niu_vrtx_getinfo(uint32_t cookie
, uint64_t v_chidx
,
1181 uint64_t *group
, uint64_t *logdev
);
1182 #pragma weak hv_niu_vrtx_getinfo
1184 uint64_t hv_niu_vrrx_to_logical_dev(uint32_t cookie
, uint64_t v_chidx
,
1186 #pragma weak hv_niu_vrrx_to_logical_dev
1188 uint64_t hv_niu_vrtx_to_logical_dev(uint32_t cookie
, uint64_t v_chidx
,
1190 #pragma weak hv_niu_vrtx_to_logical_dev
1192 #endif /* defined(sun4v) */
1195 char *nxge_dump_packet(char *, int);
1204 #endif /* _SYS_NXGE_NXGE_IMPL_H */