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 2008 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 #ifndef _SYS_NIUMX_VAR_H 27 #define _SYS_NIUMX_VAR_H 28 29 #pragma ident "%Z%%M% %I% %E% SMI" 30 31 #ifdef __cplusplus 32 extern "C" { 33 #endif 34 35 typedef enum { /* same sequence as niumx_debug_sym[] */ 36 /* 0 */ DBG_ATTACH, 37 /* 1 */ DBG_MAP, 38 /* 2 */ DBG_CTLOPS, 39 /* 3 */ DBG_INTROPS, 40 /* 4 */ DBG_A_INTX, 41 /* 5 */ DBG_R_INTX, 42 /* 6 */ DBG_INTR, 43 /* 7 */ DBG_DMA_ALLOCH, 44 /* 8 */ DBG_DMA_BINDH, 45 /* 9 */ DBG_DMA_UNBINDH, 46 /* 10 */ DBG_CHK_MOD 47 } niumx_debug_bit_t; 48 49 #if defined(DEBUG) 50 #define DBG niumx_dbg 51 extern void niumx_dbg(niumx_debug_bit_t bit, dev_info_t *dip, char *fmt, ...); 52 #else 53 #define DBG 0 && 54 #endif /* DEBUG */ 55 56 typedef uint64_t devhandle_t; 57 #define NIUMX_DEVHDLE_MASK 0xFFFFFFF 58 typedef uint32_t cpuid_t; 59 typedef uint32_t devino_t; 60 typedef uint64_t sysino_t; 61 62 /* 63 * The following structure represents an interrupt handler control block for 64 * each interrupt added via ddi_intr_add_handler(). 65 */ 66 typedef struct niumx_ih { 67 dev_info_t *ih_dip; /* devinfo structure */ 68 uint32_t ih_inum; /* interrupt index, from leaf */ 69 sysino_t ih_sysino; /* System virtual inumber, from HV */ 70 cpuid_t ih_cpuid; /* cpu that ino is targeting */ 71 uint_t (*ih_hdlr)(); /* interrupt handler */ 72 caddr_t ih_arg1; /* interrupt handler argument #1 */ 73 caddr_t ih_arg2; /* interrupt handler argument #2 */ 74 struct niumx_ih *ih_next; /* next in the chain */ 75 } niumx_ih_t; 76 77 typedef struct niumx_devstate { 78 dev_info_t *dip; 79 devhandle_t niumx_dev_hdl; /* device handle */ 80 kmutex_t niumx_mutex; 81 int niumx_fm_cap; 82 ddi_iblock_cookie_t niumx_fm_ibc; 83 } niumx_devstate_t; 84 85 #define NIUMX_MAX_INTRS 64 86 #define NIUMX_RSVD_INTRS 16 87 88 /* 89 * flags for overloading dmai_inuse field of the dma request structure: 90 */ 91 #define dmai_pfnlst dmai_iopte 92 #define dmai_pfn0 dmai_sbi 93 #define dmai_roffset dmai_pool 94 95 #define NIUMX_PAGE_SHIFT 13 96 #define NIUMX_PAGE_SIZE (1 << NIUMX_PAGE_SHIFT) 97 #define NIUMX_PAGE_MASK ~(NIUMX_PAGE_SIZE - 1) 98 #define NIUMX_PAGE_OFFSET (NIUMX_PAGE_SIZE - 1) 99 #define NIUMX_PTOB(x) (((uint64_t)(x)) << NIUMX_PAGE_SHIFT) 100 101 /* for "ranges" property */ 102 typedef struct niumx_ranges { 103 uint32_t child_hi; 104 uint32_t child_lo; 105 uint32_t parent_hi; 106 uint32_t parent_lo; 107 uint32_t size_hi; 108 uint32_t size_lo; 109 } niumx_ranges_t; 110 111 /* IPL of 6 for networking devices */ 112 #define NIUMX_DEFAULT_PIL 6 113 114 typedef struct { 115 uint32_t addr_high; 116 uint32_t addr_low; 117 uint32_t size_high; 118 uint32_t size_low; 119 } niu_regspec_t; 120 121 /* 122 * HV INTR API versioning. 123 * 124 * Currently NIU nexus driver supports version 1.0 125 */ 126 #define NIUMX_INTR_MAJOR_VER_1 0x1ull 127 #define NIUMX_INTR_MAJOR_VER NIUMX_INTR_MAJOR_VER_1 128 129 #define NIUMX_INTR_MINOR_VER_0 0x0ull 130 #define NIUMX_INTR_MINOR_VER NIUMX_INTR_MINOR_VER_0 131 132 #define NAMEINST(dip) ddi_driver_name(dip), ddi_get_instance(dip) 133 #define DIP_TO_HANDLE(dip) \ 134 ((niumx_devstate_t *)DIP_TO_STATE(dip))->niumx_dev_hdl 135 #define DIP_TO_INST(dip) ddi_get_instance(dip) 136 #define INST_TO_STATE(inst) ddi_get_soft_state(niumx_state, inst) 137 #define DIP_TO_STATE(dip) INST_TO_STATE(DIP_TO_INST(dip)) 138 139 #ifdef __cplusplus 140 } 141 #endif 142 143 #endif /* _SYS_NIUMX_VAR_H */ 144