xref: /illumos-gate/usr/src/uts/sun4v/cpu/generic.c (revision 437220cd296f6d8b6654d6d52508b40b1e2d1ac7)
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 /*
23  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #pragma ident	"%Z%%M%	%I%	%E% SMI"
28 
29 #include <sys/types.h>
30 #include <sys/systm.h>
31 #include <sys/archsystm.h>
32 #include <sys/machparam.h>
33 #include <sys/machsystm.h>
34 #include <sys/cpu.h>
35 #include <sys/elf_SPARC.h>
36 #include <vm/hat_sfmmu.h>
37 #include <vm/page.h>
38 #include <vm/vm_dep.h>
39 #include <sys/cpuvar.h>
40 #include <sys/async.h>
41 #include <sys/cmn_err.h>
42 #include <sys/debug.h>
43 #include <sys/dditypes.h>
44 #include <sys/sunddi.h>
45 #include <sys/cpu_module.h>
46 #include <sys/prom_debug.h>
47 #include <sys/vmsystm.h>
48 #include <sys/prom_plat.h>
49 #include <sys/sysmacros.h>
50 #include <sys/intreg.h>
51 #include <sys/machtrap.h>
52 #include <sys/ontrap.h>
53 #include <sys/ivintr.h>
54 #include <sys/atomic.h>
55 #include <sys/panic.h>
56 #include <sys/dtrace.h>
57 #include <vm/seg_spt.h>
58 #include <sys/simulate.h>
59 #include <sys/fault.h>
60 
61 
62 uint_t root_phys_addr_lo_mask = 0xffffffffU;
63 
64 void
65 cpu_setup(void)
66 {
67 	extern int mmu_exported_pagesize_mask;
68 	char *generic_isa_set[] = {
69 	    "sparcv9+vis",
70 	    "sparcv8plus+vis",
71 	    NULL
72 	};
73 
74 	/*
75 	 * The setup common to all CPU modules is done in cpu_setup_common
76 	 * routine.
77 	 */
78 	cpu_setup_common(generic_isa_set);
79 
80 	cache |= (CACHE_PTAG | CACHE_IOCOHERENT);
81 
82 	if (broken_md_flag) {
83 		/*
84 		 * Turn on the missing bits supported by sun4v architecture in
85 		 * MMU pagesize mask returned by MD.
86 		 */
87 		mmu_exported_pagesize_mask |= DEFAULT_SUN4V_MMU_PAGESIZE_MASK;
88 	} else {
89 		/*
90 		 * According to sun4v architecture each processor must
91 		 * support 8K, 64K and 4M page sizes. If any of the page
92 		 * size is missing from page size mask, then panic.
93 		 */
94 		if ((mmu_exported_pagesize_mask &
95 		    DEFAULT_SUN4V_MMU_PAGESIZE_MASK) !=
96 		    DEFAULT_SUN4V_MMU_PAGESIZE_MASK)
97 			cmn_err(CE_PANIC, "machine description"
98 			    " does not have required sun4v page sizes"
99 			    " 8K, 64K and 4M: MD mask is 0x%x",
100 			    mmu_exported_pagesize_mask);
101 	}
102 
103 	/*
104 	 * If processor supports the subset of full 64-bit virtual
105 	 * address space, then set VA hole accordingly.
106 	 */
107 	if (va_bits < VA_ADDRESS_SPACE_BITS) {
108 		hole_start = (caddr_t)(1ull << (va_bits - 1));
109 		hole_end = (caddr_t)(0ull - (1ull << (va_bits - 1)));
110 	} else {
111 		hole_start = hole_end = 0;
112 	}
113 }
114 
115 void
116 cpu_fiximp(struct cpu_node *cpunode)
117 {
118 	/*
119 	 * The Cache node is optional in MD. Therefore in case "Cache"
120 	 * does not exists in MD, set the default L2 cache associativity,
121 	 * size, linesize for generic CPU module.
122 	 */
123 	if (cpunode->ecache_size == 0)
124 		cpunode->ecache_size = 0x100000;
125 	if (cpunode->ecache_linesize == 0)
126 		cpunode->ecache_linesize = 64;
127 	if (cpunode->ecache_associativity == 0)
128 		cpunode->ecache_associativity = 1;
129 }
130 
131 void
132 dtrace_flush_sec(uintptr_t addr)
133 {
134 	pfn_t pfn;
135 	proc_t *procp = ttoproc(curthread);
136 	page_t *pp;
137 	caddr_t va;
138 
139 	pfn = hat_getpfnum(procp->p_as->a_hat, (void *)addr);
140 	if (pfn != -1) {
141 		ASSERT(pf_is_memory(pfn));
142 		pp = page_numtopp_noreclaim(pfn, SE_SHARED);
143 		if (pp != NULL) {
144 			va = ppmapin(pp, PROT_READ | PROT_WRITE, (void *)addr);
145 			/* sparc needs 8-byte align */
146 			doflush((caddr_t)((uintptr_t)va & -8l));
147 			ppmapout(va);
148 			page_unlock(pp);
149 		}
150 	}
151 }
152 
153 void
154 cpu_map_exec_units(struct cpu *cp)
155 {
156 	ASSERT(MUTEX_HELD(&cpu_lock));
157 
158 	/*
159 	 * The cpu_ipipe and cpu_fpu fields are initialized based on
160 	 * the execution unit sharing information from the MD. They
161 	 * default to the CPU id in the absence of such information.
162 	 */
163 	cp->cpu_m.cpu_ipipe = cpunodes[cp->cpu_id].exec_unit_mapping;
164 	if (cp->cpu_m.cpu_ipipe == NO_EU_MAPPING_FOUND)
165 		cp->cpu_m.cpu_ipipe = (id_t)(cp->cpu_id);
166 
167 	cp->cpu_m.cpu_fpu = cpunodes[cp->cpu_id].fpu_mapping;
168 	if (cp->cpu_m.cpu_fpu == NO_EU_MAPPING_FOUND)
169 		cp->cpu_m.cpu_fpu = (id_t)(cp->cpu_id);
170 
171 	cp->cpu_m.cpu_mpipe = cpunodes[cp->cpu_id].l2_cache_mapping;
172 	if (cp->cpu_m.cpu_mpipe == NO_L2_CACHE_MAPPING_FOUND)
173 		cp->cpu_m.cpu_mpipe = CPU_L2_CACHEID_INVALID;
174 
175 	cp->cpu_m.cpu_core = (id_t)(cp->cpu_id);
176 
177 	/*
178 	 * The cpu_chip field is set to invalid(unknown) for generic cpu.
179 	 */
180 	cp->cpu_m.cpu_chip = CPU_CHIPID_INVALID;
181 }
182 
183 void
184 cpu_init_private(struct cpu *cp)
185 {
186 	cpu_map_exec_units(cp);
187 }
188 
189 /*ARGSUSED*/
190 void
191 cpu_uninit_private(struct cpu *cp)
192 {}
193 
194 /*
195  * Invalidate a TSB. Since this needs to work on all sun4v
196  * architecture compliant processors, we use the old method of
197  * walking the TSB, setting each tag to TSBTAG_INVALID.
198  */
199 void
200 cpu_inv_tsb(caddr_t tsb_base, uint_t tsb_bytes)
201 {
202 	struct tsbe *tsbaddr;
203 
204 	for (tsbaddr = (struct tsbe *)tsb_base;
205 	    (uintptr_t)tsbaddr < (uintptr_t)(tsb_base + tsb_bytes);
206 	    tsbaddr++) {
207 		tsbaddr->tte_tag.tag_inthi = TSBTAG_INVALID;
208 	}
209 }
210 
211 /*
212  * Sun4v kernel must emulate code a generic sun4v processor may not support
213  * i.e. VIS1 and VIS2.
214  */
215 #define	IS_FLOAT(i) (((i) & 0x1000000) != 0)
216 #define	IS_IBIT_SET(x)	(x & 0x2000)
217 #define	IS_VIS1(op, op3)(op == 2 && op3 == 0x36)
218 #define	IS_PARTIAL_OR_SHORT_FLOAT_LD_ST(op, op3, asi)		\
219 		(op == 3 && (op3 == IOP_V8_LDDFA ||		\
220 		op3 == IOP_V8_STDFA) &&	asi > ASI_SNFL)
221 int
222 vis1_partial_support(struct regs *rp, k_siginfo_t *siginfo, uint_t *fault)
223 {
224 	char *badaddr;
225 	int instr;
226 	uint_t	optype, op3, asi;
227 	uint_t	rd, ignor;
228 
229 	if (!USERMODE(rp->r_tstate))
230 		return (-1);
231 
232 	instr = fetch_user_instr((caddr_t)rp->r_pc);
233 
234 	rd = (instr >> 25) & 0x1f;
235 	optype = (instr >> 30) & 0x3;
236 	op3 = (instr >> 19) & 0x3f;
237 	ignor = (instr >> 5) & 0xff;
238 	if (IS_IBIT_SET(instr)) {
239 		asi = (uint32_t)((rp->r_tstate >> TSTATE_ASI_SHIFT) &
240 		    TSTATE_ASI_MASK);
241 	} else {
242 		asi = ignor;
243 	}
244 
245 	if (!IS_VIS1(optype, op3) &&
246 	    !IS_PARTIAL_OR_SHORT_FLOAT_LD_ST(optype, op3, asi)) {
247 		return (-1);
248 	}
249 	switch (simulate_unimp(rp, &badaddr)) {
250 	case SIMU_RETRY:
251 		break;	/* regs are already set up */
252 		/*NOTREACHED*/
253 
254 	case SIMU_SUCCESS:
255 		/*
256 		 * skip the successfully
257 		 * simulated instruction
258 		 */
259 		rp->r_pc = rp->r_npc;
260 		rp->r_npc += 4;
261 		break;
262 		/*NOTREACHED*/
263 
264 	case SIMU_FAULT:
265 		siginfo->si_signo = SIGSEGV;
266 		siginfo->si_code = SEGV_MAPERR;
267 		siginfo->si_addr = badaddr;
268 		*fault = FLTBOUNDS;
269 		break;
270 
271 	case SIMU_DZERO:
272 		siginfo->si_signo = SIGFPE;
273 		siginfo->si_code = FPE_INTDIV;
274 		siginfo->si_addr = (caddr_t)rp->r_pc;
275 		*fault = FLTIZDIV;
276 		break;
277 
278 	case SIMU_UNALIGN:
279 		siginfo->si_signo = SIGBUS;
280 		siginfo->si_code = BUS_ADRALN;
281 		siginfo->si_addr = badaddr;
282 		*fault = FLTACCESS;
283 		break;
284 
285 	case SIMU_ILLEGAL:
286 	default:
287 		siginfo->si_signo = SIGILL;
288 		op3 = (instr >> 19) & 0x3F;
289 		if ((IS_FLOAT(instr) && (op3 == IOP_V8_STQFA) ||
290 		    (op3 == IOP_V8_STDFA)))
291 			siginfo->si_code = ILL_ILLADR;
292 		else
293 			siginfo->si_code = ILL_ILLOPC;
294 		siginfo->si_addr = (caddr_t)rp->r_pc;
295 		*fault = FLTILL;
296 		break;
297 	}
298 	return (0);
299 }
300 
301 /*
302  * Trapstat support for generic sun4v processor
303  */
304 int
305 cpu_trapstat_conf(int cmd)
306 {
307 	int status;
308 
309 	switch (cmd) {
310 	case CPU_TSTATCONF_INIT:
311 	case CPU_TSTATCONF_FINI:
312 	case CPU_TSTATCONF_ENABLE:
313 	case CPU_TSTATCONF_DISABLE:
314 		status = ENOTSUP;
315 		break;
316 
317 	default:
318 		status = EINVAL;
319 		break;
320 	}
321 	return (status);
322 }
323 
324 /*ARGSUSED*/
325 void
326 cpu_trapstat_data(void *buf, uint_t tstat_pgszs)
327 {
328 }
329