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, Version 1.0 only 6 * (the "License"). You may not use this file except in compliance 7 * with the License. 8 * 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10 * or http://www.opensolaris.org/os/licensing. 11 * See the License for the specific language governing permissions 12 * and limitations under the License. 13 * 14 * When distributing Covered Code, include this CDDL HEADER in each 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16 * If applicable, add the following below this CDDL HEADER, with the 17 * fields enclosed by brackets "[]" replaced with your own identifying 18 * information: Portions Copyright [yyyy] [name of copyright owner] 19 * 20 * CDDL HEADER END 21 */ 22 /* 23 * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #ifndef _SYS_MACHCPUVAR_H 28 #define _SYS_MACHCPUVAR_H 29 30 #pragma ident "%Z%%M% %I% %E% SMI" 31 32 #include <sys/intr.h> 33 #include <sys/clock.h> 34 #include <sys/machparam.h> 35 #include <sys/machpcb.h> 36 #include <sys/privregs.h> 37 #include <sys/machlock.h> 38 39 #ifdef __cplusplus 40 extern "C" { 41 #endif 42 43 #ifndef _ASM 44 45 #include <sys/obpdefs.h> 46 #include <sys/async.h> 47 #include <sys/fm/protocol.h> 48 49 /* 50 * CPU state ptl1_panic save. 51 */ 52 typedef struct ptl1_trapregs { 53 uint32_t ptl1_tl; 54 uint32_t ptl1_tt; 55 uint64_t ptl1_tstate; 56 uint64_t ptl1_tpc; 57 uint64_t ptl1_tnpc; 58 } ptl1_trapregs_t; 59 60 typedef struct ptl1_regs { 61 ptl1_trapregs_t ptl1_trap_regs[PTL1_MAXTL]; 62 uint64_t ptl1_g1; 63 uint64_t ptl1_g2; 64 uint64_t ptl1_g3; 65 uint64_t ptl1_g4; 66 uint64_t ptl1_g5; 67 uint64_t ptl1_g6; 68 uint64_t ptl1_g7; 69 uint64_t ptl1_tick; 70 uint64_t ptl1_dmmu_sfar; 71 uint64_t ptl1_dmmu_sfsr; 72 uint64_t ptl1_dmmu_tag_access; 73 uint64_t ptl1_immu_sfsr; 74 uint64_t ptl1_immu_tag_access; 75 struct rwindow ptl1_rwindow[MAXWIN]; 76 uint32_t ptl1_softint; 77 uint16_t ptl1_pstate; 78 uint8_t ptl1_pil; 79 uint8_t ptl1_cwp; 80 uint8_t ptl1_wstate; 81 uint8_t ptl1_otherwin; 82 uint8_t ptl1_cleanwin; 83 uint8_t ptl1_cansave; 84 uint8_t ptl1_canrestore; 85 } ptl1_regs_t; 86 87 typedef struct ptl1_state { 88 ptl1_regs_t ptl1_regs; 89 uint32_t ptl1_entry_count; 90 uintptr_t ptl1_stktop; 91 ulong_t ptl1_stk[1]; 92 } ptl1_state_t; 93 94 /* 95 * Machine specific fields of the cpu struct 96 * defined in common/sys/cpuvar.h. 97 */ 98 struct machcpu { 99 struct machpcb *mpcb; 100 uint64_t mpcb_pa; 101 int mutex_ready; 102 int in_prom; 103 int tl1_hdlr; 104 char cpu_tstat_flags; /* tstat flags */ 105 uint16_t divisor; /* Estar %tick clock ratio */ 106 uint8_t intrcnt; /* number of back-to-back interrupts */ 107 u_longlong_t tmp1; /* per-cpu tmps */ 108 u_longlong_t tmp2; /* used in trap processing */ 109 110 struct intr_req intr_pool[INTR_PENDING_MAX]; /* intr pool */ 111 struct intr_req *intr_head[PIL_LEVELS]; /* intr que heads */ 112 struct intr_req *intr_tail[PIL_LEVELS]; /* intr que tails */ 113 int intr_pool_added; /* add'l intr pool */ 114 boolean_t poke_cpu_outstanding; 115 /* 116 * The cpu module allocates a private data structure for the 117 * E$ data, which is needed for the specific cpu type. 118 */ 119 void *cpu_private; /* ptr to cpu private data */ 120 121 ptl1_state_t ptl1_state; 122 123 uint64_t pil_high_start[HIGH_LEVELS]; /* high-level intrs */ 124 125 /* 126 * intrstat[][] is used to keep track of ticks used at a given pil 127 * level. intrstat[pil][0] is cumulative and exported via kstats. 128 * intrstat[pil][1] is used in intr_get_time() and is private. 129 * 2-dimensional array improves cache locality. 130 */ 131 132 uint64_t intrstat[PIL_MAX+1][2]; 133 134 int kwbuf_full; 135 caddr_t kwbuf_sp; 136 struct rwindow kwbuf; 137 138 caddr_t cpu_q_va; /* cpu intrq base VA */ 139 caddr_t dev_q_va; /* dev intrq base VA */ 140 uint64_t cpu_q_base_pa; /* cpu intrq base PA */ 141 uint64_t cpu_q_size; 142 uint64_t dev_q_base_pa; /* dev intrq base PA */ 143 uint64_t dev_q_size; 144 caddr_t cpu_rq_va; /* resumable Q base VA */ 145 caddr_t cpu_nrq_va; /* nonresumable Q base VA */ 146 uint64_t cpu_rq_base_pa; /* resumable Q base PA */ 147 uint64_t cpu_rq_size; /* resumable Q size */ 148 uint64_t cpu_nrq_base_pa; /* nonresumable Q base PA */ 149 uint64_t cpu_nrq_size; /* nonresumable Q size */ 150 caddr_t mondo_data; /* send mondo data */ 151 uint64_t mondo_data_ra; /* mono data pa */ 152 uint16_t *cpu_list; /* uint16_t [NCPU] */ 153 uint64_t cpu_list_ra; /* cpu list ra */ 154 }; 155 156 typedef struct machcpu machcpu_t; 157 158 /* 159 * Macro to access the "cpu private" data structure. 160 */ 161 #define CPU_PRIVATE(cp) ((cp)->cpu_m.cpu_private) 162 163 /* 164 * The OpenBoot Standalone Interface supplies the kernel with 165 * implementation dependent parameters through the devinfo/property mechanism 166 */ 167 #define MAXSYSNAME 20 168 169 /* 170 * Used to indicate busy/idle state of a cpu. 171 * msram field will be set with ECACHE_CPU_MIRROR if we are on 172 * mirrored sram module. 173 */ 174 #define ECACHE_CPU_IDLE 0x0 /* CPU is idle */ 175 #define ECACHE_CPU_BUSY 0x1 /* CPU is busy */ 176 #define ECACHE_CPU_MIRROR 0x2 /* E$ is mirrored */ 177 #define ECACHE_CPU_NON_MIRROR 0x3 /* E$ is not mirrored */ 178 179 /* 180 * A CPU FRU FMRI string minus the unum component. 181 */ 182 #define CPU_FRU_FMRI FM_FMRI_SCHEME_HC":///" \ 183 FM_FMRI_LEGACY_HC"=" 184 185 struct cpu_node { 186 char name[MAXSYSNAME]; 187 char fru_fmri[sizeof (CPU_FRU_FMRI) + UNUM_NAMLEN]; 188 int cpuid; 189 dnode_t nodeid; 190 uint64_t clock_freq; 191 uint_t tick_nsec_scale; 192 union { 193 int dummy; 194 } u_info; 195 int ecache_size; 196 int ecache_linesize; 197 int ecache_associativity; 198 int ecache_setsize; 199 uint64_t device_id; 200 }; 201 202 extern struct cpu_node cpunodes[]; 203 204 #endif /* _ASM */ 205 206 #ifdef __cplusplus 207 } 208 #endif 209 210 #endif /* _SYS_MACHCPUVAR_H */ 211