Home | History | Annotate | Line # | Download | only in x86
cpu.c revision 1.80.2.2
      1  1.80.2.2       riz /*	$NetBSD: cpu.c,v 1.80.2.2 2012/02/22 18:59:05 riz Exp $	*/
      2       1.2    bouyer /* NetBSD: cpu.c,v 1.18 2004/02/20 17:35:01 yamt Exp  */
      3       1.2    bouyer 
      4       1.2    bouyer /*-
      5       1.2    bouyer  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      6      1.19     joerg  * Copyright (c) 2002, 2006, 2007 YAMAMOTO Takashi,
      7       1.2    bouyer  * All rights reserved.
      8       1.2    bouyer  *
      9       1.2    bouyer  * This code is derived from software contributed to The NetBSD Foundation
     10       1.2    bouyer  * by RedBack Networks Inc.
     11       1.2    bouyer  *
     12       1.2    bouyer  * Author: Bill Sommerfeld
     13       1.2    bouyer  *
     14       1.2    bouyer  * Redistribution and use in source and binary forms, with or without
     15       1.2    bouyer  * modification, are permitted provided that the following conditions
     16       1.2    bouyer  * are met:
     17       1.2    bouyer  * 1. Redistributions of source code must retain the above copyright
     18       1.2    bouyer  *    notice, this list of conditions and the following disclaimer.
     19       1.2    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     20       1.2    bouyer  *    notice, this list of conditions and the following disclaimer in the
     21       1.2    bouyer  *    documentation and/or other materials provided with the distribution.
     22       1.2    bouyer  *
     23       1.2    bouyer  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     24       1.2    bouyer  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     25       1.2    bouyer  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     26       1.2    bouyer  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     27       1.2    bouyer  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     28       1.2    bouyer  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29       1.2    bouyer  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30       1.2    bouyer  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31       1.2    bouyer  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32       1.2    bouyer  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     33       1.2    bouyer  * POSSIBILITY OF SUCH DAMAGE.
     34       1.2    bouyer  */
     35       1.2    bouyer 
     36       1.2    bouyer /*
     37       1.2    bouyer  * Copyright (c) 1999 Stefan Grefen
     38       1.2    bouyer  *
     39       1.2    bouyer  * Redistribution and use in source and binary forms, with or without
     40       1.2    bouyer  * modification, are permitted provided that the following conditions
     41       1.2    bouyer  * are met:
     42       1.2    bouyer  * 1. Redistributions of source code must retain the above copyright
     43       1.2    bouyer  *    notice, this list of conditions and the following disclaimer.
     44       1.2    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     45       1.2    bouyer  *    notice, this list of conditions and the following disclaimer in the
     46       1.2    bouyer  *    documentation and/or other materials provided with the distribution.
     47       1.2    bouyer  * 3. All advertising materials mentioning features or use of this software
     48       1.2    bouyer  *    must display the following acknowledgement:
     49       1.2    bouyer  *      This product includes software developed by the NetBSD
     50       1.2    bouyer  *      Foundation, Inc. and its contributors.
     51       1.2    bouyer  * 4. Neither the name of The NetBSD Foundation nor the names of its
     52       1.2    bouyer  *    contributors may be used to endorse or promote products derived
     53       1.2    bouyer  *    from this software without specific prior written permission.
     54       1.2    bouyer  *
     55       1.2    bouyer  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
     56       1.2    bouyer  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     57       1.2    bouyer  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     58       1.2    bouyer  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR AND CONTRIBUTORS BE LIABLE
     59       1.2    bouyer  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     60       1.2    bouyer  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     61       1.2    bouyer  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     62       1.2    bouyer  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     63       1.2    bouyer  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     64       1.2    bouyer  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     65       1.2    bouyer  * SUCH DAMAGE.
     66       1.2    bouyer  */
     67       1.2    bouyer 
     68       1.2    bouyer #include <sys/cdefs.h>
     69  1.80.2.2       riz __KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.80.2.2 2012/02/22 18:59:05 riz Exp $");
     70       1.2    bouyer 
     71       1.2    bouyer #include "opt_ddb.h"
     72       1.2    bouyer #include "opt_multiprocessor.h"
     73       1.2    bouyer #include "opt_mpbios.h"		/* for MPDEBUG */
     74       1.2    bouyer #include "opt_mtrr.h"
     75       1.2    bouyer #include "opt_xen.h"
     76       1.2    bouyer 
     77       1.2    bouyer #include "lapic.h"
     78       1.2    bouyer #include "ioapic.h"
     79       1.2    bouyer 
     80       1.2    bouyer #include <sys/param.h>
     81       1.2    bouyer #include <sys/proc.h>
     82       1.2    bouyer #include <sys/systm.h>
     83       1.2    bouyer #include <sys/device.h>
     84      1.31    cegger #include <sys/kmem.h>
     85      1.11    cegger #include <sys/cpu.h>
     86      1.66    jruoho #include <sys/cpufreq.h>
     87      1.11    cegger #include <sys/atomic.h>
     88      1.32    cegger #include <sys/reboot.h>
     89      1.62    cherry #include <sys/idle.h>
     90       1.2    bouyer 
     91      1.51  uebayasi #include <uvm/uvm.h>
     92       1.2    bouyer 
     93       1.2    bouyer #include <machine/cpufunc.h>
     94       1.2    bouyer #include <machine/cpuvar.h>
     95       1.2    bouyer #include <machine/pmap.h>
     96       1.2    bouyer #include <machine/vmparam.h>
     97       1.2    bouyer #include <machine/mpbiosvar.h>
     98       1.2    bouyer #include <machine/pcb.h>
     99       1.2    bouyer #include <machine/specialreg.h>
    100       1.2    bouyer #include <machine/segments.h>
    101       1.2    bouyer #include <machine/gdt.h>
    102       1.2    bouyer #include <machine/mtrr.h>
    103       1.2    bouyer #include <machine/pio.h>
    104       1.2    bouyer 
    105      1.62    cherry #ifdef i386
    106      1.62    cherry #include <machine/npx.h>
    107      1.62    cherry #else
    108      1.62    cherry #include <machine/fpu.h>
    109      1.62    cherry #endif
    110      1.62    cherry 
    111      1.62    cherry #include <xen/xen.h>
    112      1.71    cegger #include <xen/xen-public/vcpu.h>
    113       1.2    bouyer #include <xen/vcpuvar.h>
    114       1.2    bouyer 
    115       1.2    bouyer #if NLAPIC > 0
    116       1.2    bouyer #include <machine/apicvar.h>
    117       1.2    bouyer #include <machine/i82489reg.h>
    118       1.2    bouyer #include <machine/i82489var.h>
    119       1.2    bouyer #endif
    120       1.2    bouyer 
    121       1.2    bouyer #include <dev/ic/mc146818reg.h>
    122       1.2    bouyer #include <dev/isa/isareg.h>
    123       1.2    bouyer 
    124      1.38    cegger #if MAXCPUS > 32
    125      1.38    cegger #error cpu_info contains 32bit bitmasks
    126      1.38    cegger #endif
    127      1.27        ad 
    128      1.56    jruoho static int	cpu_match(device_t, cfdata_t, void *);
    129      1.56    jruoho static void	cpu_attach(device_t, device_t, void *);
    130      1.56    jruoho static void	cpu_defer(device_t);
    131      1.56    jruoho static int	cpu_rescan(device_t, const char *, const int *);
    132      1.56    jruoho static void	cpu_childdetached(device_t, device_t);
    133      1.56    jruoho static int	vcpu_match(device_t, cfdata_t, void *);
    134      1.56    jruoho static void	vcpu_attach(device_t, device_t, void *);
    135      1.56    jruoho static void	cpu_attach_common(device_t, device_t, void *);
    136      1.56    jruoho void		cpu_offline_md(void);
    137       1.2    bouyer 
    138       1.2    bouyer struct cpu_softc {
    139      1.10    cegger 	device_t sc_dev;		/* device tree glue */
    140       1.2    bouyer 	struct cpu_info *sc_info;	/* pointer to CPU info */
    141      1.32    cegger 	bool sc_wasonline;
    142       1.2    bouyer };
    143       1.2    bouyer 
    144      1.62    cherry int mp_cpu_start(struct cpu_info *, vaddr_t);
    145       1.2    bouyer void mp_cpu_start_cleanup(struct cpu_info *);
    146       1.2    bouyer const struct cpu_functions mp_cpu_funcs = { mp_cpu_start, NULL,
    147       1.2    bouyer 				      mp_cpu_start_cleanup };
    148       1.2    bouyer 
    149      1.53    jruoho CFATTACH_DECL2_NEW(cpu, sizeof(struct cpu_softc),
    150      1.53    jruoho     cpu_match, cpu_attach, NULL, NULL, cpu_rescan, cpu_childdetached);
    151      1.53    jruoho 
    152      1.10    cegger CFATTACH_DECL_NEW(vcpu, sizeof(struct cpu_softc),
    153       1.2    bouyer     vcpu_match, vcpu_attach, NULL, NULL);
    154       1.2    bouyer 
    155       1.2    bouyer /*
    156       1.2    bouyer  * Statically-allocated CPU info for the primary CPU (or the only
    157       1.2    bouyer  * CPU, on uniprocessors).  The CPU info list is initialized to
    158       1.2    bouyer  * point at it.
    159       1.2    bouyer  */
    160       1.2    bouyer #ifdef TRAPLOG
    161       1.2    bouyer #include <machine/tlog.h>
    162       1.2    bouyer struct tlog tlog_primary;
    163       1.2    bouyer #endif
    164      1.38    cegger struct cpu_info cpu_info_primary __aligned(CACHE_LINE_SIZE) = {
    165       1.7    bouyer 	.ci_dev = 0,
    166       1.2    bouyer 	.ci_self = &cpu_info_primary,
    167       1.4    bouyer 	.ci_idepth = -1,
    168       1.2    bouyer 	.ci_curlwp = &lwp0,
    169      1.25        ad 	.ci_curldt = -1,
    170      1.58     rmind 	.ci_cpumask = 1,
    171       1.2    bouyer #ifdef TRAPLOG
    172       1.2    bouyer 	.ci_tlog = &tlog_primary,
    173       1.2    bouyer #endif
    174       1.2    bouyer 
    175       1.2    bouyer };
    176      1.38    cegger struct cpu_info phycpu_info_primary __aligned(CACHE_LINE_SIZE) = {
    177       1.7    bouyer 	.ci_dev = 0,
    178       1.2    bouyer 	.ci_self = &phycpu_info_primary,
    179       1.2    bouyer };
    180       1.2    bouyer 
    181       1.2    bouyer struct cpu_info *cpu_info_list = &cpu_info_primary;
    182      1.38    cegger struct cpu_info *phycpu_info_list = &phycpu_info_primary;
    183       1.2    bouyer 
    184      1.58     rmind uint32_t cpus_attached = 1;
    185      1.60     rmind uint32_t cpus_running = 1;
    186      1.11    cegger 
    187      1.38    cegger uint32_t phycpus_attached = 0;
    188      1.38    cegger uint32_t phycpus_running = 0;
    189      1.38    cegger 
    190      1.43       jym uint32_t cpu_feature[5]; /* X86 CPUID feature bits
    191      1.43       jym 			  *	[0] basic features %edx
    192      1.43       jym 			  *	[1] basic features %ecx
    193      1.43       jym 			  *	[2] extended features %edx
    194      1.43       jym 			  *	[3] extended features %ecx
    195      1.43       jym 			  *	[4] VIA padlock features
    196      1.43       jym 			  */
    197      1.43       jym 
    198      1.11    cegger bool x86_mp_online;
    199      1.11    cegger paddr_t mp_trampoline_paddr = MP_TRAMPOLINE;
    200       1.2    bouyer 
    201      1.38    cegger #if defined(MULTIPROCESSOR)
    202       1.2    bouyer void    	cpu_hatch(void *);
    203       1.2    bouyer static void    	cpu_boot_secondary(struct cpu_info *ci);
    204       1.2    bouyer static void    	cpu_start_secondary(struct cpu_info *ci);
    205      1.38    cegger #endif	/* MULTIPROCESSOR */
    206       1.2    bouyer 
    207      1.56    jruoho static int
    208      1.10    cegger cpu_match(device_t parent, cfdata_t match, void *aux)
    209       1.2    bouyer {
    210       1.2    bouyer 
    211       1.2    bouyer 	return 1;
    212       1.2    bouyer }
    213       1.2    bouyer 
    214      1.56    jruoho static void
    215      1.10    cegger cpu_attach(device_t parent, device_t self, void *aux)
    216       1.2    bouyer {
    217      1.10    cegger 	struct cpu_softc *sc = device_private(self);
    218       1.2    bouyer 	struct cpu_attach_args *caa = aux;
    219       1.2    bouyer 	struct cpu_info *ci;
    220      1.34    cegger 	uintptr_t ptr;
    221      1.52    bouyer 	static int nphycpu = 0;
    222       1.2    bouyer 
    223      1.10    cegger 	sc->sc_dev = self;
    224      1.10    cegger 
    225      1.38    cegger 	if (phycpus_attached == ~0) {
    226      1.34    cegger 		aprint_error(": increase MAXCPUS\n");
    227      1.34    cegger 		return;
    228      1.34    cegger 	}
    229      1.34    cegger 
    230       1.2    bouyer 	/*
    231       1.2    bouyer 	 * If we're an Application Processor, allocate a cpu_info
    232      1.52    bouyer 	 * If we're the first attached CPU use the primary cpu_info,
    233      1.52    bouyer 	 * otherwise allocate a new one
    234       1.2    bouyer 	 */
    235      1.52    bouyer 	aprint_naive("\n");
    236      1.52    bouyer 	aprint_normal("\n");
    237      1.52    bouyer 	if (nphycpu > 0) {
    238      1.52    bouyer 		struct cpu_info *tmp;
    239      1.34    cegger 		ptr = (uintptr_t)kmem_zalloc(sizeof(*ci) + CACHE_LINE_SIZE - 1,
    240      1.34    cegger 		    KM_SLEEP);
    241      1.42       jym 		ci = (struct cpu_info *)roundup2(ptr, CACHE_LINE_SIZE);
    242      1.24        ad 		ci->ci_curldt = -1;
    243      1.52    bouyer 
    244      1.52    bouyer 		tmp = phycpu_info_list;
    245      1.52    bouyer 		while (tmp->ci_next)
    246      1.52    bouyer 			tmp = tmp->ci_next;
    247      1.52    bouyer 
    248      1.52    bouyer 		tmp->ci_next = ci;
    249       1.2    bouyer 	} else {
    250       1.2    bouyer 		ci = &phycpu_info_primary;
    251       1.2    bouyer 	}
    252       1.2    bouyer 
    253       1.2    bouyer 	ci->ci_self = ci;
    254       1.2    bouyer 	sc->sc_info = ci;
    255       1.2    bouyer 
    256       1.2    bouyer 	ci->ci_dev = self;
    257      1.50    jruoho 	ci->ci_acpiid = caa->cpu_id;
    258      1.23        ad 	ci->ci_cpuid = caa->cpu_number;
    259      1.16    cegger 	ci->ci_vcpu = NULL;
    260      1.52    bouyer 	ci->ci_index = nphycpu++;
    261      1.52    bouyer 	ci->ci_cpumask = (1 << cpu_index(ci));
    262       1.2    bouyer 
    263      1.52    bouyer 	atomic_or_32(&phycpus_attached, ci->ci_cpumask);
    264      1.38    cegger 
    265      1.52    bouyer 	if (!pmf_device_register(self, NULL, NULL))
    266      1.52    bouyer 		aprint_error_dev(self, "couldn't establish power handler\n");
    267      1.34    cegger 
    268      1.56    jruoho 	(void)config_defer(self, cpu_defer);
    269      1.56    jruoho }
    270      1.56    jruoho 
    271      1.56    jruoho static void
    272      1.56    jruoho cpu_defer(device_t self)
    273      1.56    jruoho {
    274      1.56    jruoho 	cpu_rescan(self, NULL, NULL);
    275       1.2    bouyer }
    276       1.2    bouyer 
    277      1.56    jruoho static int
    278      1.53    jruoho cpu_rescan(device_t self, const char *ifattr, const int *locators)
    279      1.53    jruoho {
    280      1.53    jruoho 	struct cpu_softc *sc = device_private(self);
    281      1.53    jruoho 	struct cpufeature_attach_args cfaa;
    282      1.53    jruoho 	struct cpu_info *ci = sc->sc_info;
    283      1.53    jruoho 
    284      1.53    jruoho 	memset(&cfaa, 0, sizeof(cfaa));
    285      1.53    jruoho 	cfaa.ci = ci;
    286      1.53    jruoho 
    287      1.53    jruoho 	if (ifattr_match(ifattr, "cpufeaturebus")) {
    288      1.53    jruoho 
    289      1.53    jruoho 		if (ci->ci_frequency == NULL) {
    290      1.55    jruoho 			cfaa.name = "frequency";
    291      1.54    jruoho 			ci->ci_frequency = config_found_ia(self,
    292      1.54    jruoho 			    "cpufeaturebus", &cfaa, NULL);
    293      1.54    jruoho 		}
    294      1.53    jruoho 	}
    295      1.53    jruoho 
    296      1.53    jruoho 	return 0;
    297      1.53    jruoho }
    298      1.53    jruoho 
    299      1.56    jruoho static void
    300      1.53    jruoho cpu_childdetached(device_t self, device_t child)
    301      1.53    jruoho {
    302      1.53    jruoho 	struct cpu_softc *sc = device_private(self);
    303      1.53    jruoho 	struct cpu_info *ci = sc->sc_info;
    304      1.53    jruoho 
    305      1.53    jruoho 	if (ci->ci_frequency == child)
    306      1.53    jruoho 		ci->ci_frequency = NULL;
    307      1.53    jruoho }
    308      1.53    jruoho 
    309      1.56    jruoho static int
    310      1.10    cegger vcpu_match(device_t parent, cfdata_t match, void *aux)
    311       1.2    bouyer {
    312       1.2    bouyer 	struct vcpu_attach_args *vcaa = aux;
    313      1.62    cherry 	struct vcpu_runstate_info vcr;
    314      1.62    cherry 	int error;
    315      1.62    cherry 
    316      1.62    cherry 	if (strcmp(vcaa->vcaa_name, match->cf_name) == 0) {
    317      1.62    cherry 		error = HYPERVISOR_vcpu_op(VCPUOP_get_runstate_info,
    318      1.62    cherry 					   vcaa->vcaa_caa.cpu_number,
    319      1.62    cherry 					   &vcr);
    320      1.62    cherry 		switch (error) {
    321      1.62    cherry 		case 0:
    322      1.62    cherry 			return 1;
    323      1.62    cherry 		case -ENOENT:
    324      1.62    cherry 			return 0;
    325      1.62    cherry 		default:
    326      1.62    cherry 			panic("Unknown hypervisor error %d returned on vcpu runstate probe\n", error);
    327      1.62    cherry 		}
    328      1.62    cherry 	}
    329       1.2    bouyer 
    330       1.2    bouyer 	return 0;
    331       1.2    bouyer }
    332       1.2    bouyer 
    333      1.56    jruoho static void
    334      1.10    cegger vcpu_attach(device_t parent, device_t self, void *aux)
    335       1.2    bouyer {
    336       1.2    bouyer 	struct vcpu_attach_args *vcaa = aux;
    337       1.2    bouyer 
    338      1.62    cherry 	KASSERT(vcaa->vcaa_caa.cpu_func == NULL);
    339      1.62    cherry 	vcaa->vcaa_caa.cpu_func = &mp_cpu_funcs;
    340       1.2    bouyer 	cpu_attach_common(parent, self, &vcaa->vcaa_caa);
    341      1.65       jym 
    342      1.65       jym 	if (!pmf_device_register(self, NULL, NULL))
    343      1.65       jym 		aprint_error_dev(self, "couldn't establish power handler\n");
    344       1.2    bouyer }
    345       1.2    bouyer 
    346      1.62    cherry static int
    347      1.62    cherry vcpu_is_up(struct cpu_info *ci)
    348      1.62    cherry {
    349      1.62    cherry 	KASSERT(ci != NULL);
    350      1.62    cherry 	return HYPERVISOR_vcpu_op(VCPUOP_is_up, ci->ci_cpuid, NULL);
    351      1.62    cherry }
    352      1.62    cherry 
    353       1.2    bouyer static void
    354       1.2    bouyer cpu_vm_init(struct cpu_info *ci)
    355       1.2    bouyer {
    356       1.2    bouyer 	int ncolors = 2, i;
    357       1.2    bouyer 
    358       1.2    bouyer 	for (i = CAI_ICACHE; i <= CAI_L2CACHE; i++) {
    359       1.2    bouyer 		struct x86_cache_info *cai;
    360       1.2    bouyer 		int tcolors;
    361       1.2    bouyer 
    362       1.2    bouyer 		cai = &ci->ci_cinfo[i];
    363       1.2    bouyer 
    364       1.2    bouyer 		tcolors = atop(cai->cai_totalsize);
    365       1.2    bouyer 		switch(cai->cai_associativity) {
    366       1.2    bouyer 		case 0xff:
    367       1.2    bouyer 			tcolors = 1; /* fully associative */
    368       1.2    bouyer 			break;
    369       1.2    bouyer 		case 0:
    370       1.2    bouyer 		case 1:
    371       1.2    bouyer 			break;
    372       1.2    bouyer 		default:
    373       1.2    bouyer 			tcolors /= cai->cai_associativity;
    374       1.2    bouyer 		}
    375       1.2    bouyer 		ncolors = max(ncolors, tcolors);
    376       1.2    bouyer 	}
    377       1.2    bouyer 
    378       1.2    bouyer 	/*
    379      1.67       mrg 	 * Knowing the size of the largest cache on this CPU, potentially
    380      1.67       mrg 	 * re-color our pages.
    381       1.2    bouyer 	 */
    382      1.28    bouyer 	aprint_debug_dev(ci->ci_dev, "%d page colors\n", ncolors);
    383       1.2    bouyer 	uvm_page_recolor(ncolors);
    384       1.2    bouyer }
    385       1.2    bouyer 
    386      1.56    jruoho static void
    387      1.11    cegger cpu_attach_common(device_t parent, device_t self, void *aux)
    388       1.2    bouyer {
    389      1.10    cegger 	struct cpu_softc *sc = device_private(self);
    390       1.2    bouyer 	struct cpu_attach_args *caa = aux;
    391       1.2    bouyer 	struct cpu_info *ci;
    392      1.12    cegger 	uintptr_t ptr;
    393       1.2    bouyer 	int cpunum = caa->cpu_number;
    394      1.38    cegger 	static bool again = false;
    395       1.2    bouyer 
    396      1.10    cegger 	sc->sc_dev = self;
    397      1.10    cegger 
    398       1.2    bouyer 	/*
    399       1.2    bouyer 	 * If we're an Application Processor, allocate a cpu_info
    400       1.2    bouyer 	 * structure, otherwise use the primary's.
    401       1.2    bouyer 	 */
    402       1.2    bouyer 	if (caa->cpu_role == CPU_ROLE_AP) {
    403      1.12    cegger 		aprint_naive(": Application Processor\n");
    404      1.31    cegger 		ptr = (uintptr_t)kmem_alloc(sizeof(*ci) + CACHE_LINE_SIZE - 1,
    405      1.31    cegger 		    KM_SLEEP);
    406      1.42       jym 		ci = (struct cpu_info *)roundup2(ptr, CACHE_LINE_SIZE);
    407      1.12    cegger 		memset(ci, 0, sizeof(*ci));
    408       1.2    bouyer #ifdef TRAPLOG
    409      1.31    cegger 		ci->ci_tlog_base = kmem_zalloc(sizeof(struct tlog), KM_SLEEP);
    410       1.2    bouyer #endif
    411       1.2    bouyer 	} else {
    412      1.12    cegger 		aprint_naive(": %s Processor\n",
    413      1.12    cegger 		    caa->cpu_role == CPU_ROLE_SP ? "Single" : "Boot");
    414       1.2    bouyer 		ci = &cpu_info_primary;
    415       1.2    bouyer 	}
    416       1.2    bouyer 
    417       1.2    bouyer 	ci->ci_self = ci;
    418       1.2    bouyer 	sc->sc_info = ci;
    419       1.2    bouyer 	ci->ci_dev = self;
    420      1.23        ad 	ci->ci_cpuid = cpunum;
    421      1.16    cegger 
    422      1.16    cegger 	KASSERT(HYPERVISOR_shared_info != NULL);
    423      1.16    cegger 	ci->ci_vcpu = &HYPERVISOR_shared_info->vcpu_info[cpunum];
    424      1.16    cegger 
    425      1.62    cherry 	KASSERT(ci->ci_func == 0);
    426       1.2    bouyer 	ci->ci_func = caa->cpu_func;
    427       1.2    bouyer 
    428      1.38    cegger 	/* Must be called before mi_cpu_attach(). */
    429      1.38    cegger 	cpu_vm_init(ci);
    430      1.38    cegger 
    431       1.2    bouyer 	if (caa->cpu_role == CPU_ROLE_AP) {
    432       1.2    bouyer 		int error;
    433       1.2    bouyer 
    434       1.2    bouyer 		error = mi_cpu_attach(ci);
    435      1.62    cherry 
    436      1.62    cherry 		KASSERT(ci->ci_data.cpu_idlelwp != NULL);
    437       1.2    bouyer 		if (error != 0) {
    438       1.2    bouyer 			aprint_normal("\n");
    439      1.38    cegger 			aprint_error_dev(self,
    440      1.38    cegger 			    "mi_cpu_attach failed with %d\n", error);
    441       1.2    bouyer 			return;
    442       1.2    bouyer 		}
    443      1.62    cherry 
    444       1.2    bouyer 	} else {
    445       1.2    bouyer 		KASSERT(ci->ci_data.cpu_idlelwp != NULL);
    446       1.2    bouyer 	}
    447       1.2    bouyer 
    448      1.23        ad 	ci->ci_cpumask = (1 << cpu_index(ci));
    449       1.2    bouyer 	pmap_reference(pmap_kernel());
    450       1.2    bouyer 	ci->ci_pmap = pmap_kernel();
    451       1.2    bouyer 	ci->ci_tlbstate = TLBSTATE_STALE;
    452       1.2    bouyer 
    453      1.38    cegger 	/*
    454      1.38    cegger 	 * Boot processor may not be attached first, but the below
    455      1.38    cegger 	 * must be done to allow booting other processors.
    456      1.38    cegger 	 */
    457      1.38    cegger 	if (!again) {
    458      1.38    cegger 		atomic_or_32(&ci->ci_flags, CPUF_PRESENT | CPUF_PRIMARY);
    459      1.38    cegger 		/* Basic init. */
    460      1.38    cegger 		cpu_intr_init(ci);
    461      1.38    cegger 		cpu_get_tsc_freq(ci);
    462      1.38    cegger 		cpu_init(ci);
    463      1.78    cherry 		pmap_cpu_init_late(ci);
    464      1.62    cherry 
    465      1.62    cherry 		/* Every processor needs to init it's own ipi h/w (similar to lapic) */
    466      1.62    cherry 		xen_ipi_init();
    467      1.62    cherry 		/* XXX: clock_init() */
    468      1.62    cherry 
    469      1.38    cegger 		/* Make sure DELAY() is initialized. */
    470      1.38    cegger 		DELAY(1);
    471      1.38    cegger 		again = true;
    472      1.38    cegger 	}
    473      1.38    cegger 
    474       1.2    bouyer 	/* further PCB init done later. */
    475       1.2    bouyer 
    476       1.2    bouyer 	switch (caa->cpu_role) {
    477       1.2    bouyer 	case CPU_ROLE_SP:
    478      1.38    cegger 		atomic_or_32(&ci->ci_flags, CPUF_SP);
    479      1.21        ad 		cpu_identify(ci);
    480      1.12    cegger #if 0
    481      1.12    cegger 		x86_errata();
    482      1.12    cegger #endif
    483      1.38    cegger 		x86_cpu_idle_init();
    484      1.62    cherry 
    485       1.2    bouyer 		break;
    486       1.2    bouyer 
    487       1.2    bouyer 	case CPU_ROLE_BP:
    488      1.38    cegger 		atomic_or_32(&ci->ci_flags, CPUF_BSP);
    489      1.21        ad 		cpu_identify(ci);
    490      1.14    bouyer #if 0
    491      1.12    cegger 		x86_errata();
    492      1.12    cegger #endif
    493      1.38    cegger 		x86_cpu_idle_init();
    494      1.62    cherry 
    495       1.2    bouyer 		break;
    496       1.2    bouyer 
    497       1.2    bouyer 	case CPU_ROLE_AP:
    498      1.62    cherry 		atomic_or_32(&ci->ci_flags, CPUF_AP);
    499      1.62    cherry 
    500       1.2    bouyer 		/*
    501       1.2    bouyer 		 * report on an AP
    502       1.2    bouyer 		 */
    503       1.2    bouyer 
    504       1.2    bouyer #if defined(MULTIPROCESSOR)
    505      1.62    cherry 		/* interrupt handler stack */
    506       1.2    bouyer 		cpu_intr_init(ci);
    507      1.62    cherry 
    508      1.62    cherry 		/* Setup per-cpu memory for gdt */
    509       1.2    bouyer 		gdt_alloc_cpu(ci);
    510      1.62    cherry 
    511      1.62    cherry 		pmap_cpu_init_late(ci);
    512       1.2    bouyer 		cpu_start_secondary(ci);
    513      1.62    cherry 
    514       1.2    bouyer 		if (ci->ci_flags & CPUF_PRESENT) {
    515      1.30    cegger 			struct cpu_info *tmp;
    516      1.30    cegger 
    517      1.62    cherry 			cpu_identify(ci);
    518      1.30    cegger 			tmp = cpu_info_list;
    519      1.30    cegger 			while (tmp->ci_next)
    520      1.30    cegger 				tmp = tmp->ci_next;
    521      1.30    cegger 
    522      1.30    cegger 			tmp->ci_next = ci;
    523       1.2    bouyer 		}
    524       1.2    bouyer #else
    525      1.62    cherry 		aprint_error(": not started\n");
    526       1.2    bouyer #endif
    527       1.2    bouyer 		break;
    528       1.2    bouyer 
    529       1.2    bouyer 	default:
    530      1.12    cegger 		aprint_normal("\n");
    531       1.2    bouyer 		panic("unknown processor type??\n");
    532       1.2    bouyer 	}
    533       1.2    bouyer 
    534      1.34    cegger 	atomic_or_32(&cpus_attached, ci->ci_cpumask);
    535       1.2    bouyer 
    536      1.62    cherry #ifdef MPVERBOSE
    537       1.2    bouyer 	if (mp_verbose) {
    538       1.2    bouyer 		struct lwp *l = ci->ci_data.cpu_idlelwp;
    539      1.37     rmind 		struct pcb *pcb = lwp_getpcb(l);
    540       1.2    bouyer 
    541      1.38    cegger 		aprint_verbose_dev(self,
    542      1.38    cegger 		    "idle lwp at %p, idle sp at 0x%p\n",
    543      1.12    cegger 		    l,
    544      1.12    cegger #ifdef i386
    545      1.37     rmind 		    (void *)pcb->pcb_esp
    546      1.62    cherry #else /* i386 */
    547      1.37     rmind 		    (void *)pcb->pcb_rsp
    548      1.62    cherry #endif /* i386 */
    549      1.12    cegger 		);
    550      1.12    cegger 
    551       1.2    bouyer 	}
    552      1.62    cherry #endif /* MPVERBOSE */
    553       1.2    bouyer }
    554       1.2    bouyer 
    555       1.2    bouyer /*
    556       1.2    bouyer  * Initialize the processor appropriately.
    557       1.2    bouyer  */
    558       1.2    bouyer 
    559       1.2    bouyer void
    560      1.10    cegger cpu_init(struct cpu_info *ci)
    561       1.2    bouyer {
    562       1.2    bouyer 
    563       1.2    bouyer 	/*
    564       1.2    bouyer 	 * On a P6 or above, enable global TLB caching if the
    565       1.2    bouyer 	 * hardware supports it.
    566       1.2    bouyer 	 */
    567      1.43       jym 	if (cpu_feature[0] & CPUID_PGE)
    568       1.2    bouyer 		lcr4(rcr4() | CR4_PGE);	/* enable global TLB caching */
    569       1.2    bouyer 
    570       1.2    bouyer #ifdef XXXMTRR
    571       1.2    bouyer 	/*
    572       1.2    bouyer 	 * On a P6 or above, initialize MTRR's if the hardware supports them.
    573       1.2    bouyer 	 */
    574      1.43       jym 	if (cpu_feature[0] & CPUID_MTRR) {
    575       1.2    bouyer 		if ((ci->ci_flags & CPUF_AP) == 0)
    576       1.2    bouyer 			i686_mtrr_init_first();
    577       1.2    bouyer 		mtrr_init_cpu(ci);
    578       1.2    bouyer 	}
    579       1.2    bouyer #endif
    580       1.2    bouyer 	/*
    581       1.2    bouyer 	 * If we have FXSAVE/FXRESTOR, use them.
    582       1.2    bouyer 	 */
    583      1.43       jym 	if (cpu_feature[0] & CPUID_FXSR) {
    584       1.2    bouyer 		lcr4(rcr4() | CR4_OSFXSR);
    585       1.2    bouyer 
    586       1.2    bouyer 		/*
    587       1.2    bouyer 		 * If we have SSE/SSE2, enable XMM exceptions.
    588       1.2    bouyer 		 */
    589      1.43       jym 		if (cpu_feature[0] & (CPUID_SSE|CPUID_SSE2))
    590       1.2    bouyer 			lcr4(rcr4() | CR4_OSXMMEXCPT);
    591       1.2    bouyer 	}
    592       1.2    bouyer 
    593      1.47       jym #ifdef __x86_64__
    594      1.47       jym 	/* No user PGD mapped for this CPU yet */
    595      1.47       jym 	ci->ci_xen_current_user_pgd = 0;
    596      1.47       jym #endif
    597  1.80.2.1       riz #if defined(__x86_64__) || defined(PAE)
    598  1.80.2.1       riz 	mutex_init(&ci->ci_kpm_mtx, MUTEX_DEFAULT, IPL_VM);
    599  1.80.2.1       riz #endif
    600      1.47       jym 
    601      1.34    cegger 	atomic_or_32(&cpus_running, ci->ci_cpumask);
    602      1.11    cegger 	atomic_or_32(&ci->ci_flags, CPUF_RUNNING);
    603      1.62    cherry 
    604      1.62    cherry 	/* XXX: register vcpu_register_runstate_memory_area, and figure out how to make sure this VCPU is running ? */
    605       1.2    bouyer }
    606       1.2    bouyer 
    607       1.2    bouyer 
    608       1.2    bouyer #ifdef MULTIPROCESSOR
    609      1.62    cherry 
    610       1.2    bouyer void
    611      1.10    cegger cpu_boot_secondary_processors(void)
    612       1.2    bouyer {
    613       1.2    bouyer 	struct cpu_info *ci;
    614       1.2    bouyer 	u_long i;
    615      1.38    cegger 	for (i = 0; i < maxcpus; i++) {
    616      1.38    cegger 		ci = cpu_lookup(i);
    617       1.2    bouyer 		if (ci == NULL)
    618       1.2    bouyer 			continue;
    619       1.2    bouyer 		if (ci->ci_data.cpu_idlelwp == NULL)
    620       1.2    bouyer 			continue;
    621       1.2    bouyer 		if ((ci->ci_flags & CPUF_PRESENT) == 0)
    622       1.2    bouyer 			continue;
    623       1.2    bouyer 		if (ci->ci_flags & (CPUF_BSP|CPUF_SP|CPUF_PRIMARY))
    624       1.2    bouyer 			continue;
    625       1.2    bouyer 		cpu_boot_secondary(ci);
    626       1.2    bouyer 	}
    627      1.11    cegger 
    628      1.11    cegger 	x86_mp_online = true;
    629       1.2    bouyer }
    630       1.2    bouyer 
    631       1.2    bouyer static void
    632       1.2    bouyer cpu_init_idle_lwp(struct cpu_info *ci)
    633       1.2    bouyer {
    634       1.2    bouyer 	struct lwp *l = ci->ci_data.cpu_idlelwp;
    635      1.37     rmind 	struct pcb *pcb = lwp_getpcb(l);
    636       1.2    bouyer 
    637       1.2    bouyer 	pcb->pcb_cr0 = rcr0();
    638       1.2    bouyer }
    639       1.2    bouyer 
    640       1.2    bouyer void
    641      1.10    cegger cpu_init_idle_lwps(void)
    642       1.2    bouyer {
    643       1.2    bouyer 	struct cpu_info *ci;
    644       1.2    bouyer 	u_long i;
    645       1.2    bouyer 
    646      1.38    cegger 	for (i = 0; i < maxcpus; i++) {
    647      1.38    cegger 		ci = cpu_lookup(i);
    648       1.2    bouyer 		if (ci == NULL)
    649       1.2    bouyer 			continue;
    650       1.2    bouyer 		if (ci->ci_data.cpu_idlelwp == NULL)
    651       1.2    bouyer 			continue;
    652       1.2    bouyer 		if ((ci->ci_flags & CPUF_PRESENT) == 0)
    653       1.2    bouyer 			continue;
    654       1.2    bouyer 		cpu_init_idle_lwp(ci);
    655       1.2    bouyer 	}
    656       1.2    bouyer }
    657       1.2    bouyer 
    658      1.62    cherry static void
    659      1.10    cegger cpu_start_secondary(struct cpu_info *ci)
    660       1.2    bouyer {
    661       1.2    bouyer 	int i;
    662       1.2    bouyer 
    663      1.11    cegger 	aprint_debug_dev(ci->ci_dev, "starting\n");
    664       1.2    bouyer 
    665       1.2    bouyer 	ci->ci_curlwp = ci->ci_data.cpu_idlelwp;
    666      1.62    cherry 
    667      1.62    cherry 	if (CPU_STARTUP(ci, (vaddr_t) cpu_hatch) != 0) {
    668      1.11    cegger 		return;
    669      1.62    cherry 	}
    670       1.2    bouyer 
    671       1.2    bouyer 	/*
    672       1.2    bouyer 	 * wait for it to become ready
    673       1.2    bouyer 	 */
    674      1.11    cegger 	for (i = 100000; (!(ci->ci_flags & CPUF_PRESENT)) && i > 0; i--) {
    675       1.2    bouyer 		delay(10);
    676       1.2    bouyer 	}
    677      1.11    cegger 	if ((ci->ci_flags & CPUF_PRESENT) == 0) {
    678       1.9    cegger 		aprint_error_dev(ci->ci_dev, "failed to become ready\n");
    679       1.2    bouyer #if defined(MPDEBUG) && defined(DDB)
    680       1.2    bouyer 		printf("dropping into debugger; continue from here to resume boot\n");
    681       1.2    bouyer 		Debugger();
    682       1.2    bouyer #endif
    683       1.2    bouyer 	}
    684       1.2    bouyer 
    685       1.2    bouyer 	CPU_START_CLEANUP(ci);
    686       1.2    bouyer }
    687       1.2    bouyer 
    688       1.2    bouyer void
    689      1.10    cegger cpu_boot_secondary(struct cpu_info *ci)
    690       1.2    bouyer {
    691       1.2    bouyer 	int i;
    692      1.11    cegger 	atomic_or_32(&ci->ci_flags, CPUF_GO);
    693      1.11    cegger 	for (i = 100000; (!(ci->ci_flags & CPUF_RUNNING)) && i > 0; i--) {
    694       1.2    bouyer 		delay(10);
    695       1.2    bouyer 	}
    696      1.11    cegger 	if ((ci->ci_flags & CPUF_RUNNING) == 0) {
    697      1.11    cegger 		aprint_error_dev(ci->ci_dev, "CPU failed to start\n");
    698       1.2    bouyer #if defined(MPDEBUG) && defined(DDB)
    699       1.2    bouyer 		printf("dropping into debugger; continue from here to resume boot\n");
    700       1.2    bouyer 		Debugger();
    701       1.2    bouyer #endif
    702       1.2    bouyer 	}
    703       1.2    bouyer }
    704       1.2    bouyer 
    705       1.2    bouyer /*
    706      1.62    cherry  * APs end up here immediately after initialisation and VCPUOP_up in
    707      1.62    cherry  * mp_cpu_start().
    708      1.62    cherry  * At this point, we are running in the idle pcb/idle stack of the new
    709      1.62    cherry  * CPU.  This function jumps to the idle loop and starts looking for
    710      1.62    cherry  * work.
    711       1.2    bouyer  */
    712      1.62    cherry extern void x86_64_tls_switch(struct lwp *);
    713       1.2    bouyer void
    714       1.2    bouyer cpu_hatch(void *v)
    715       1.2    bouyer {
    716       1.2    bouyer 	struct cpu_info *ci = (struct cpu_info *)v;
    717      1.37     rmind 	struct pcb *pcb;
    718      1.11    cegger 	int s, i;
    719      1.11    cegger 
    720      1.62    cherry 	/* Setup TLS and kernel GS/FS */
    721      1.62    cherry 	cpu_init_msrs(ci, true);
    722      1.62    cherry 	cpu_init_idt();
    723      1.62    cherry 	gdt_init_cpu(ci);
    724      1.62    cherry 
    725      1.21        ad 	cpu_probe(ci);
    726      1.11    cegger 
    727      1.62    cherry 	atomic_or_32(&ci->ci_flags, CPUF_PRESENT);
    728       1.2    bouyer 
    729      1.11    cegger 	while ((ci->ci_flags & CPUF_GO) == 0) {
    730      1.11    cegger 		/* Don't use delay, boot CPU may be patching the text. */
    731      1.11    cegger 		for (i = 10000; i != 0; i--)
    732      1.11    cegger 			x86_pause();
    733      1.11    cegger 	}
    734       1.2    bouyer 
    735      1.11    cegger 	/* Because the text may have been patched in x86_patch(). */
    736      1.11    cegger 	x86_flush();
    737      1.58     rmind 	tlbflushg();
    738       1.2    bouyer 
    739      1.11    cegger 	KASSERT((ci->ci_flags & CPUF_RUNNING) == 0);
    740       1.2    bouyer 
    741      1.37     rmind 	pcb = lwp_getpcb(curlwp);
    742      1.62    cherry 	pcb->pcb_cr3 = pmap_pdirpa(pmap_kernel(), 0); /* XXX: consider using pmap_load() ? */
    743      1.37     rmind 	pcb = lwp_getpcb(ci->ci_data.cpu_idlelwp);
    744      1.37     rmind 
    745      1.62    cherry 	xen_ipi_init();
    746      1.62    cherry 
    747      1.62    cherry 	xen_initclocks();
    748      1.62    cherry 
    749      1.62    cherry 	/* XXX: lapic_initclocks(); */
    750      1.11    cegger 
    751      1.62    cherry #ifdef __x86_64__
    752      1.12    cegger 	fpuinit(ci);
    753      1.12    cegger #endif
    754       1.2    bouyer 
    755       1.2    bouyer 	lldt(GSEL(GLDT_SEL, SEL_KPL));
    756       1.2    bouyer 
    757       1.2    bouyer 	cpu_init(ci);
    758      1.11    cegger 	cpu_get_tsc_freq(ci);
    759       1.2    bouyer 
    760       1.2    bouyer 	s = splhigh();
    761      1.11    cegger 	x86_enable_intr();
    762      1.11    cegger 	splx(s);
    763      1.12    cegger #if 0
    764      1.11    cegger 	x86_errata();
    765      1.11    cegger #endif
    766       1.2    bouyer 
    767      1.62    cherry 	aprint_debug_dev(ci->ci_dev, "running\n");
    768      1.62    cherry 
    769      1.62    cherry 	cpu_switchto(NULL, ci->ci_data.cpu_idlelwp, true);
    770      1.62    cherry 
    771      1.62    cherry 	panic("switch to idle_loop context returned!\n");
    772      1.62    cherry 	/* NOTREACHED */
    773       1.2    bouyer }
    774       1.2    bouyer 
    775       1.2    bouyer #if defined(DDB)
    776       1.2    bouyer 
    777       1.2    bouyer #include <ddb/db_output.h>
    778       1.2    bouyer #include <machine/db_machdep.h>
    779       1.2    bouyer 
    780       1.2    bouyer /*
    781       1.2    bouyer  * Dump CPU information from ddb.
    782       1.2    bouyer  */
    783       1.2    bouyer void
    784       1.2    bouyer cpu_debug_dump(void)
    785       1.2    bouyer {
    786       1.2    bouyer 	struct cpu_info *ci;
    787       1.2    bouyer 	CPU_INFO_ITERATOR cii;
    788       1.2    bouyer 
    789      1.13      yamt 	db_printf("addr		dev	id	flags	ipis	curlwp 		fpcurlwp\n");
    790       1.2    bouyer 	for (CPU_INFO_FOREACH(cii, ci)) {
    791       1.2    bouyer 		db_printf("%p	%s	%ld	%x	%x	%10p	%10p\n",
    792       1.2    bouyer 		    ci,
    793       1.9    cegger 		    ci->ci_dev == NULL ? "BOOT" : device_xname(ci->ci_dev),
    794      1.12    cegger 		    (long)ci->ci_cpuid,
    795       1.2    bouyer 		    ci->ci_flags, ci->ci_ipis,
    796       1.2    bouyer 		    ci->ci_curlwp,
    797       1.2    bouyer 		    ci->ci_fpcurlwp);
    798       1.2    bouyer 	}
    799       1.2    bouyer }
    800      1.38    cegger #endif /* DDB */
    801       1.2    bouyer 
    802      1.62    cherry #endif /* MULTIPROCESSOR */
    803      1.62    cherry 
    804      1.62    cherry extern void hypervisor_callback(void);
    805      1.62    cherry extern void failsafe_callback(void);
    806      1.62    cherry #ifdef __x86_64__
    807      1.62    cherry typedef void (vector)(void);
    808      1.62    cherry extern vector Xsyscall, Xsyscall32;
    809      1.62    cherry #endif
    810      1.62    cherry 
    811      1.62    cherry /*
    812      1.62    cherry  * Setup the "trampoline". On Xen, we setup nearly all cpu context
    813      1.62    cherry  * outside a trampoline, so we prototype and call targetip like so:
    814      1.62    cherry  * void targetip(struct cpu_info *);
    815      1.62    cherry  */
    816      1.62    cherry 
    817       1.2    bouyer static void
    818      1.62    cherry gdt_prepframes(paddr_t *frames, vaddr_t base, uint32_t entries)
    819       1.2    bouyer {
    820      1.62    cherry 	int i;
    821      1.62    cherry 	for (i = 0; i < roundup(entries, PAGE_SIZE) >> PAGE_SHIFT; i++) {
    822      1.62    cherry 
    823      1.62    cherry 		frames[i] = ((paddr_t) xpmap_ptetomach(
    824      1.62    cherry 				(pt_entry_t *) (base + (i << PAGE_SHIFT))))
    825      1.62    cherry 			>> PAGE_SHIFT;
    826      1.62    cherry 
    827      1.62    cherry 		/* Mark Read-only */
    828      1.62    cherry 		pmap_pte_clearbits(kvtopte(base + (i << PAGE_SHIFT)),
    829      1.62    cherry 		    PG_RW);
    830      1.62    cherry 	}
    831      1.62    cherry }
    832      1.62    cherry 
    833      1.62    cherry #ifdef __x86_64__
    834      1.62    cherry extern char *ldtstore; /* XXX: Xen MP todo */
    835      1.62    cherry 
    836      1.62    cherry static void
    837      1.62    cherry xen_init_amd64_vcpuctxt(struct cpu_info *ci,
    838      1.62    cherry 			struct vcpu_guest_context *initctx,
    839      1.62    cherry 			void targetrip(struct cpu_info *))
    840      1.62    cherry {
    841      1.62    cherry 	/* page frames to point at GDT */
    842      1.62    cherry 	extern int gdt_size;
    843      1.62    cherry 	paddr_t frames[16];
    844      1.62    cherry 	psize_t gdt_ents;
    845      1.62    cherry 
    846      1.62    cherry 	struct lwp *l;
    847      1.62    cherry 	struct pcb *pcb;
    848      1.62    cherry 
    849      1.62    cherry 	volatile struct vcpu_info *vci;
    850      1.62    cherry 
    851      1.62    cherry 	KASSERT(ci != NULL);
    852      1.62    cherry 	KASSERT(ci != &cpu_info_primary);
    853      1.62    cherry 	KASSERT(initctx != NULL);
    854      1.62    cherry 	KASSERT(targetrip != NULL);
    855      1.62    cherry 
    856      1.62    cherry 	memset(initctx, 0, sizeof *initctx);
    857      1.62    cherry 
    858      1.62    cherry 	gdt_ents = roundup(gdt_size, PAGE_SIZE) >> PAGE_SHIFT; /* XXX: re-investigate roundup(gdt_size... ) for gdt_ents. */
    859      1.62    cherry 	KASSERT(gdt_ents <= 16);
    860      1.62    cherry 
    861      1.62    cherry 	gdt_prepframes(frames, (vaddr_t) ci->ci_gdt, gdt_ents);
    862      1.62    cherry 
    863      1.62    cherry 	/* XXX: The stuff in here is amd64 specific. move to mptramp.[Sc] ? */
    864      1.62    cherry 
    865      1.62    cherry 	/* Initialise the vcpu context: We use idle_loop()'s pcb context. */
    866      1.11    cegger 
    867      1.62    cherry 	l = ci->ci_data.cpu_idlelwp;
    868      1.11    cegger 
    869      1.62    cherry 	KASSERT(l != NULL);
    870      1.62    cherry 	pcb = lwp_getpcb(l);
    871      1.62    cherry 	KASSERT(pcb != NULL);
    872      1.11    cegger 
    873      1.62    cherry 	/* resume with interrupts off */
    874      1.62    cherry 	vci = ci->ci_vcpu;
    875      1.62    cherry 	vci->evtchn_upcall_mask = 1;
    876      1.62    cherry 	xen_mb();
    877       1.2    bouyer 
    878      1.62    cherry 	/* resume in kernel-mode */
    879      1.62    cherry 	initctx->flags = VGCF_in_kernel | VGCF_online;
    880       1.2    bouyer 
    881      1.62    cherry 	/* Stack and entry points:
    882      1.62    cherry 	 * We arrange for the stack frame for cpu_hatch() to
    883      1.62    cherry 	 * appear as a callee frame of lwp_trampoline(). Being a
    884      1.62    cherry 	 * leaf frame prevents trampling on any of the MD stack setup
    885      1.62    cherry 	 * that x86/vm_machdep.c:cpu_lwp_fork() does for idle_loop()
    886      1.62    cherry 	 */
    887       1.2    bouyer 
    888      1.62    cherry 	initctx->user_regs.rdi = (uint64_t) ci; /* targetrip(ci); */
    889      1.62    cherry 	initctx->user_regs.rip = (vaddr_t) targetrip;
    890       1.2    bouyer 
    891      1.62    cherry 	initctx->user_regs.cs = GSEL(GCODE_SEL, SEL_KPL);
    892      1.11    cegger 
    893      1.62    cherry 	initctx->user_regs.rflags = pcb->pcb_flags;
    894      1.62    cherry 	initctx->user_regs.rsp = pcb->pcb_rsp;
    895      1.11    cegger 
    896      1.62    cherry 	/* Data segments */
    897      1.62    cherry 	initctx->user_regs.ss = GSEL(GDATA_SEL, SEL_KPL);
    898      1.62    cherry 	initctx->user_regs.es = GSEL(GDATA_SEL, SEL_KPL);
    899      1.62    cherry 	initctx->user_regs.ds = GSEL(GDATA_SEL, SEL_KPL);
    900      1.62    cherry 
    901      1.62    cherry 	/* GDT */
    902      1.62    cherry 	memcpy(initctx->gdt_frames, frames, sizeof frames);
    903      1.62    cherry 	initctx->gdt_ents = gdt_ents;
    904      1.62    cherry 
    905      1.62    cherry 	/* LDT */
    906      1.62    cherry 	initctx->ldt_base = (unsigned long) ldtstore;
    907      1.62    cherry 	initctx->ldt_ents = LDT_SIZE >> 3;
    908      1.62    cherry 
    909      1.62    cherry 	/* Kernel context state */
    910      1.62    cherry 	initctx->kernel_ss = GSEL(GDATA_SEL, SEL_KPL);
    911      1.62    cherry 	initctx->kernel_sp = pcb->pcb_rsp0;
    912      1.62    cherry 	initctx->ctrlreg[0] = pcb->pcb_cr0;
    913      1.62    cherry 	initctx->ctrlreg[1] = 0; /* "resuming" from kernel - no User cr3. */
    914      1.62    cherry 	initctx->ctrlreg[2] = pcb->pcb_cr2; /* XXX: */
    915      1.62    cherry 	/*
    916      1.62    cherry 	 * Use pmap_kernel() L4 PD directly, until we setup the
    917      1.62    cherry 	 * per-cpu L4 PD in pmap_cpu_init_late()
    918       1.2    bouyer 	 */
    919      1.70    cherry 	initctx->ctrlreg[3] = xen_pfn_to_cr3(x86_btop(xpmap_ptom(ci->ci_kpm_pdirpa)));
    920      1.62    cherry 	initctx->ctrlreg[4] = CR4_PAE | CR4_OSFXSR | CR4_OSXMMEXCPT;
    921       1.2    bouyer 
    922      1.62    cherry 
    923      1.62    cherry 	/* Xen callbacks */
    924      1.62    cherry 	initctx->event_callback_eip = (unsigned long) hypervisor_callback;
    925      1.62    cherry 	initctx->failsafe_callback_eip = (unsigned long) failsafe_callback;
    926      1.62    cherry 	initctx->syscall_callback_eip = (unsigned long) Xsyscall;
    927      1.62    cherry 
    928      1.62    cherry 	return;
    929       1.2    bouyer }
    930      1.62    cherry #else /* i386 */
    931      1.62    cherry extern union descriptor *ldt;
    932      1.62    cherry extern void Xsyscall(void);
    933      1.62    cherry 
    934      1.11    cegger static void
    935      1.62    cherry xen_init_i386_vcpuctxt(struct cpu_info *ci,
    936      1.62    cherry 			struct vcpu_guest_context *initctx,
    937      1.62    cherry 			void targeteip(struct cpu_info *))
    938      1.62    cherry {
    939      1.62    cherry 	/* page frames to point at GDT */
    940      1.62    cherry 	extern int gdt_size;
    941      1.62    cherry 	paddr_t frames[16];
    942      1.62    cherry 	psize_t gdt_ents;
    943      1.62    cherry 
    944      1.62    cherry 	struct lwp *l;
    945      1.62    cherry 	struct pcb *pcb;
    946      1.62    cherry 
    947      1.62    cherry 	volatile struct vcpu_info *vci;
    948      1.62    cherry 
    949      1.62    cherry 	KASSERT(ci != NULL);
    950      1.62    cherry 	KASSERT(ci != &cpu_info_primary);
    951      1.62    cherry 	KASSERT(initctx != NULL);
    952      1.62    cherry 	KASSERT(targeteip != NULL);
    953      1.62    cherry 
    954      1.62    cherry 	memset(initctx, 0, sizeof *initctx);
    955      1.11    cegger 
    956      1.62    cherry 	gdt_ents = roundup(gdt_size, PAGE_SIZE) >> PAGE_SHIFT; /* XXX: re-investigate roundup(gdt_size... ) for gdt_ents. */
    957      1.62    cherry 	KASSERT(gdt_ents <= 16);
    958       1.2    bouyer 
    959      1.62    cherry 	gdt_prepframes(frames, (vaddr_t) ci->ci_gdt, gdt_ents);
    960       1.2    bouyer 
    961      1.62    cherry 	/*
    962      1.62    cherry 	 * Initialise the vcpu context:
    963      1.62    cherry 	 * We use this cpu's idle_loop() pcb context.
    964      1.11    cegger 	 */
    965      1.11    cegger 
    966      1.62    cherry 	l = ci->ci_data.cpu_idlelwp;
    967      1.62    cherry 
    968      1.62    cherry 	KASSERT(l != NULL);
    969      1.62    cherry 	pcb = lwp_getpcb(l);
    970      1.62    cherry 	KASSERT(pcb != NULL);
    971      1.62    cherry 
    972      1.62    cherry 	/* resume with interrupts off */
    973      1.62    cherry 	vci = ci->ci_vcpu;
    974      1.62    cherry 	vci->evtchn_upcall_mask = 1;
    975      1.62    cherry 	xen_mb();
    976      1.62    cherry 
    977      1.62    cherry 	/* resume in kernel-mode */
    978      1.62    cherry 	initctx->flags = VGCF_in_kernel | VGCF_online;
    979      1.62    cherry 
    980      1.62    cherry 	/* Stack frame setup for cpu_hatch():
    981      1.62    cherry 	 * We arrange for the stack frame for cpu_hatch() to
    982      1.62    cherry 	 * appear as a callee frame of lwp_trampoline(). Being a
    983      1.62    cherry 	 * leaf frame prevents trampling on any of the MD stack setup
    984      1.62    cherry 	 * that x86/vm_machdep.c:cpu_lwp_fork() does for idle_loop()
    985       1.2    bouyer 	 */
    986       1.2    bouyer 
    987      1.62    cherry 	initctx->user_regs.esp = pcb->pcb_esp - 4; /* Leave word for
    988      1.62    cherry 						      arg1 */
    989      1.62    cherry 	{ /* targeteip(ci); */
    990      1.62    cherry 		uint32_t *arg = (uint32_t *) initctx->user_regs.esp;
    991      1.62    cherry 		arg[1] = (uint32_t) ci; /* arg1 */
    992      1.62    cherry 
    993      1.62    cherry 	}
    994       1.2    bouyer 
    995      1.62    cherry 	initctx->user_regs.eip = (vaddr_t) targeteip;
    996      1.62    cherry 	initctx->user_regs.cs = GSEL(GCODE_SEL, SEL_KPL);
    997      1.62    cherry 	initctx->user_regs.eflags |= pcb->pcb_iopl;
    998      1.62    cherry 
    999      1.62    cherry 	/* Data segments */
   1000      1.62    cherry 	initctx->user_regs.ss = GSEL(GDATA_SEL, SEL_KPL);
   1001      1.62    cherry 	initctx->user_regs.es = GSEL(GDATA_SEL, SEL_KPL);
   1002      1.62    cherry 	initctx->user_regs.ds = GSEL(GDATA_SEL, SEL_KPL);
   1003      1.62    cherry 	initctx->user_regs.fs = GSEL(GDATA_SEL, SEL_KPL);
   1004      1.62    cherry 
   1005      1.62    cherry 	/* GDT */
   1006      1.62    cherry 	memcpy(initctx->gdt_frames, frames, sizeof frames);
   1007      1.62    cherry 	initctx->gdt_ents = gdt_ents;
   1008      1.62    cherry 
   1009      1.62    cherry 	/* LDT */
   1010      1.62    cherry 	initctx->ldt_base = (unsigned long) ldt;
   1011      1.62    cherry 	initctx->ldt_ents = NLDT;
   1012      1.62    cherry 
   1013      1.62    cherry 	/* Kernel context state */
   1014      1.62    cherry 	initctx->kernel_ss = GSEL(GDATA_SEL, SEL_KPL);
   1015      1.62    cherry 	initctx->kernel_sp = pcb->pcb_esp0;
   1016      1.62    cherry 	initctx->ctrlreg[0] = pcb->pcb_cr0;
   1017      1.62    cherry 	initctx->ctrlreg[1] = 0; /* "resuming" from kernel - no User cr3. */
   1018      1.62    cherry 	initctx->ctrlreg[2] = pcb->pcb_cr2; /* XXX: */
   1019      1.70    cherry #ifdef PAE
   1020      1.70    cherry 	initctx->ctrlreg[3] = xen_pfn_to_cr3(x86_btop(xpmap_ptom(ci->ci_pae_l3_pdirpa)));
   1021      1.70    cherry #else /* PAE */
   1022      1.70    cherry 	initctx->ctrlreg[3] = xen_pfn_to_cr3(x86_btop(xpmap_ptom(pcb->pcb_cr3)));
   1023      1.70    cherry #endif /* PAE */
   1024      1.62    cherry 	initctx->ctrlreg[4] = /* CR4_PAE |  */CR4_OSFXSR | CR4_OSXMMEXCPT;
   1025       1.2    bouyer 
   1026       1.2    bouyer 
   1027      1.62    cherry 	/* Xen callbacks */
   1028      1.62    cherry 	initctx->event_callback_eip = (unsigned long) hypervisor_callback;
   1029      1.62    cherry 	initctx->event_callback_cs = GSEL(GCODE_SEL, SEL_KPL);
   1030      1.62    cherry 	initctx->failsafe_callback_eip = (unsigned long) failsafe_callback;
   1031      1.62    cherry 	initctx->failsafe_callback_cs = GSEL(GCODE_SEL, SEL_KPL);
   1032      1.45     rmind 
   1033      1.62    cherry 	return;
   1034      1.62    cherry }
   1035      1.62    cherry #endif /* __x86_64__ */
   1036      1.45     rmind 
   1037      1.62    cherry int
   1038      1.62    cherry mp_cpu_start(struct cpu_info *ci, vaddr_t target)
   1039      1.62    cherry {
   1040      1.62    cherry 
   1041      1.62    cherry 	int hyperror;
   1042      1.62    cherry 	struct vcpu_guest_context vcpuctx;
   1043       1.2    bouyer 
   1044      1.62    cherry 	KASSERT(ci != NULL);
   1045      1.62    cherry 	KASSERT(ci != &cpu_info_primary);
   1046      1.62    cherry 	KASSERT(ci->ci_flags & CPUF_AP);
   1047      1.62    cherry 
   1048      1.62    cherry #ifdef __x86_64__
   1049      1.62    cherry 	xen_init_amd64_vcpuctxt(ci, &vcpuctx, (void (*)(struct cpu_info *))target);
   1050      1.62    cherry #else  /* i386 */
   1051      1.62    cherry 	xen_init_i386_vcpuctxt(ci, &vcpuctx, (void (*)(struct cpu_info *))target);
   1052      1.62    cherry #endif /* __x86_64__ */
   1053      1.62    cherry 
   1054      1.62    cherry 	/* Initialise the given vcpu to execute cpu_hatch(ci); */
   1055      1.62    cherry 	if ((hyperror = HYPERVISOR_vcpu_op(VCPUOP_initialise, ci->ci_cpuid, &vcpuctx))) {
   1056      1.62    cherry 		aprint_error(": context initialisation failed. errno = %d\n", hyperror);
   1057      1.62    cherry 		return hyperror;
   1058      1.62    cherry 	}
   1059      1.62    cherry 
   1060      1.62    cherry 	/* Start it up */
   1061      1.62    cherry 
   1062      1.70    cherry 	/* First bring it down */
   1063      1.62    cherry 	if ((hyperror = HYPERVISOR_vcpu_op(VCPUOP_down, ci->ci_cpuid, NULL))) {
   1064      1.62    cherry 		aprint_error(": VCPUOP_down hypervisor command failed. errno = %d\n", hyperror);
   1065      1.62    cherry 		return hyperror;
   1066      1.62    cherry 	}
   1067      1.62    cherry 
   1068      1.62    cherry 	if ((hyperror = HYPERVISOR_vcpu_op(VCPUOP_up, ci->ci_cpuid, NULL))) {
   1069      1.62    cherry 		aprint_error(": VCPUOP_up hypervisor command failed. errno = %d\n", hyperror);
   1070      1.62    cherry 		return hyperror;
   1071      1.62    cherry 	}
   1072       1.2    bouyer 
   1073      1.62    cherry 	if (!vcpu_is_up(ci)) {
   1074      1.62    cherry 		aprint_error(": did not come up\n");
   1075      1.62    cherry 		return -1;
   1076       1.2    bouyer 	}
   1077      1.62    cherry 
   1078       1.2    bouyer 	return 0;
   1079       1.2    bouyer }
   1080       1.2    bouyer 
   1081       1.2    bouyer void
   1082       1.2    bouyer mp_cpu_start_cleanup(struct cpu_info *ci)
   1083       1.2    bouyer {
   1084       1.2    bouyer #if 0
   1085       1.2    bouyer 	/*
   1086       1.2    bouyer 	 * Ensure the NVRAM reset byte contains something vaguely sane.
   1087       1.2    bouyer 	 */
   1088       1.2    bouyer 
   1089       1.2    bouyer 	outb(IO_RTC, NVRAM_RESET);
   1090       1.2    bouyer 	outb(IO_RTC+1, NVRAM_RESET_RST);
   1091       1.2    bouyer #endif
   1092      1.62    cherry 	if (vcpu_is_up(ci)) {
   1093      1.62    cherry 		aprint_debug_dev(ci->ci_dev, "is started.\n");
   1094      1.62    cherry 	}
   1095      1.62    cherry 	else {
   1096      1.62    cherry 		aprint_error_dev(ci->ci_dev, "did not start up.\n");
   1097      1.62    cherry 	}
   1098      1.62    cherry 
   1099       1.2    bouyer }
   1100       1.2    bouyer 
   1101      1.69    cherry /* curcpu() uses %fs - shim for until cpu_init_msrs(), below */
   1102      1.69    cherry static struct cpu_info *cpu_primary(void)
   1103      1.69    cherry {
   1104      1.69    cherry 	return &cpu_info_primary;
   1105      1.69    cherry }
   1106      1.72    cherry /* XXX: rename to something more generic. users other than xpq exist */
   1107      1.69    cherry struct cpu_info	* (*xpq_cpu)(void) = cpu_primary;
   1108      1.69    cherry 
   1109       1.2    bouyer void
   1110       1.3    bouyer cpu_init_msrs(struct cpu_info *ci, bool full)
   1111       1.2    bouyer {
   1112      1.43       jym #ifdef __x86_64__
   1113       1.3    bouyer 	if (full) {
   1114       1.3    bouyer 		HYPERVISOR_set_segment_base (SEGBASE_FS, 0);
   1115      1.11    cegger 		HYPERVISOR_set_segment_base (SEGBASE_GS_KERNEL, (uint64_t) ci);
   1116       1.3    bouyer 		HYPERVISOR_set_segment_base (SEGBASE_GS_USER, 0);
   1117      1.69    cherry 		xpq_cpu = x86_curcpu;
   1118       1.3    bouyer 	}
   1119      1.43       jym #endif	/* __x86_64__ */
   1120      1.44       jym 
   1121      1.44       jym 	if (cpu_feature[2] & CPUID_NOX)
   1122      1.44       jym 		wrmsr(MSR_EFER, rdmsr(MSR_EFER) | EFER_NXE);
   1123      1.62    cherry 
   1124       1.2    bouyer }
   1125       1.2    bouyer 
   1126      1.11    cegger void
   1127      1.11    cegger cpu_offline_md(void)
   1128      1.11    cegger {
   1129      1.11    cegger         int s;
   1130      1.11    cegger 
   1131      1.11    cegger         s = splhigh();
   1132      1.11    cegger #ifdef __i386__
   1133      1.11    cegger         npxsave_cpu(true);
   1134      1.11    cegger #else
   1135      1.11    cegger         fpusave_cpu(true);
   1136      1.11    cegger #endif
   1137      1.11    cegger         splx(s);
   1138      1.11    cegger }
   1139      1.11    cegger 
   1140       1.2    bouyer void
   1141       1.2    bouyer cpu_get_tsc_freq(struct cpu_info *ci)
   1142       1.2    bouyer {
   1143      1.62    cherry 	uint32_t vcpu_tversion;
   1144      1.16    cegger 	const volatile vcpu_time_info_t *tinfo = &ci->ci_vcpu->time;
   1145      1.62    cherry 
   1146      1.62    cherry 	vcpu_tversion = tinfo->version;
   1147      1.62    cherry 	while (tinfo->version == vcpu_tversion); /* Wait for a time update. XXX: timeout ? */
   1148      1.62    cherry 
   1149       1.2    bouyer 	uint64_t freq = 1000000000ULL << 32;
   1150       1.2    bouyer 	freq = freq / (uint64_t)tinfo->tsc_to_system_mul;
   1151       1.2    bouyer 	if ( tinfo->tsc_shift < 0 )
   1152       1.2    bouyer 		freq = freq << -tinfo->tsc_shift;
   1153       1.2    bouyer 	else
   1154       1.2    bouyer 		freq = freq >> tinfo->tsc_shift;
   1155      1.20        ad 	ci->ci_data.cpu_cc_freq = freq;
   1156       1.2    bouyer }
   1157      1.19     joerg 
   1158      1.19     joerg void
   1159      1.19     joerg x86_cpu_idle_xen(void)
   1160      1.19     joerg {
   1161      1.19     joerg 	struct cpu_info *ci = curcpu();
   1162      1.62    cherry 
   1163      1.19     joerg 	KASSERT(ci->ci_ilevel == IPL_NONE);
   1164      1.19     joerg 
   1165      1.19     joerg 	x86_disable_intr();
   1166      1.19     joerg 	if (!__predict_false(ci->ci_want_resched)) {
   1167      1.19     joerg 		idle_block();
   1168      1.19     joerg 	} else {
   1169      1.19     joerg 		x86_enable_intr();
   1170      1.19     joerg 	}
   1171      1.19     joerg }
   1172      1.47       jym 
   1173      1.47       jym /*
   1174      1.47       jym  * Loads pmap for the current CPU.
   1175      1.47       jym  */
   1176      1.47       jym void
   1177  1.80.2.1       riz cpu_load_pmap(struct pmap *pmap, struct pmap *oldpmap)
   1178      1.47       jym {
   1179  1.80.2.1       riz #if defined(__x86_64__) || defined(PAE)
   1180  1.80.2.1       riz 	struct cpu_info *ci = curcpu();
   1181  1.80.2.1       riz 	uint32_t cpumask = ci->ci_cpumask;
   1182  1.80.2.1       riz 
   1183  1.80.2.1       riz 	mutex_enter(&ci->ci_kpm_mtx);
   1184  1.80.2.1       riz 	/* make new pmap visible to pmap_kpm_sync_xcall() */
   1185  1.80.2.1       riz 	atomic_or_32(&pmap->pm_xen_ptp_cpus, cpumask);
   1186  1.80.2.1       riz #endif
   1187      1.47       jym #ifdef i386
   1188      1.47       jym #ifdef PAE
   1189  1.80.2.1       riz 	{
   1190  1.80.2.1       riz 		int i;
   1191  1.80.2.1       riz 		paddr_t l3_pd = xpmap_ptom_masked(ci->ci_pae_l3_pdirpa);
   1192  1.80.2.1       riz 		/* don't update the kernel L3 slot */
   1193  1.80.2.1       riz 		for (i = 0 ; i < PDP_SIZE - 1; i++) {
   1194  1.80.2.1       riz 			xpq_queue_pte_update(l3_pd + i * sizeof(pd_entry_t),
   1195  1.80.2.1       riz 			    xpmap_ptom(pmap->pm_pdirpa[i]) | PG_V);
   1196  1.80.2.1       riz 		}
   1197  1.80.2.1       riz 		tlbflush();
   1198      1.47       jym 	}
   1199      1.47       jym #else /* PAE */
   1200      1.47       jym 	lcr3(pmap_pdirpa(pmap, 0));
   1201      1.47       jym #endif /* PAE */
   1202      1.47       jym #endif /* i386 */
   1203      1.47       jym 
   1204      1.47       jym #ifdef __x86_64__
   1205  1.80.2.1       riz 	{
   1206  1.80.2.1       riz 		int i;
   1207  1.80.2.1       riz 		pd_entry_t *new_pgd;
   1208  1.80.2.1       riz 		paddr_t l4_pd_ma;
   1209      1.47       jym 
   1210  1.80.2.1       riz 		l4_pd_ma = xpmap_ptom_masked(ci->ci_kpm_pdirpa);
   1211      1.70    cherry 
   1212  1.80.2.1       riz 		/*
   1213  1.80.2.1       riz 		 * Map user space address in kernel space and load
   1214  1.80.2.1       riz 		 * user cr3
   1215  1.80.2.1       riz 		 */
   1216  1.80.2.1       riz 		new_pgd = pmap->pm_pdir;
   1217  1.80.2.1       riz 		KASSERT(pmap == ci->ci_pmap);
   1218      1.70    cherry 
   1219  1.80.2.1       riz 		/* Copy user pmap L4 PDEs (in user addr. range) to per-cpu L4 */
   1220  1.80.2.1       riz 		for (i = 0; i < PDIR_SLOT_PTE; i++) {
   1221  1.80.2.1       riz 			KASSERT(pmap != pmap_kernel() || new_pgd[i] == 0);
   1222  1.80.2.1       riz 			if (ci->ci_kpm_pdir[i] != new_pgd[i]) {
   1223  1.80.2.1       riz 				xpq_queue_pte_update(
   1224  1.80.2.1       riz 				   l4_pd_ma + i * sizeof(pd_entry_t),
   1225  1.80.2.1       riz 				    new_pgd[i]);
   1226  1.80.2.1       riz 			}
   1227  1.80.2.1       riz 		}
   1228      1.70    cherry 
   1229  1.80.2.1       riz 		if (__predict_true(pmap != pmap_kernel())) {
   1230  1.80.2.1       riz 			xen_set_user_pgd(pmap_pdirpa(pmap, 0));
   1231  1.80.2.1       riz 			ci->ci_xen_current_user_pgd = pmap_pdirpa(pmap, 0);
   1232  1.80.2.1       riz 		}
   1233  1.80.2.1       riz 		else {
   1234  1.80.2.1       riz 			xpq_queue_pt_switch(l4_pd_ma);
   1235  1.80.2.1       riz 			ci->ci_xen_current_user_pgd = 0;
   1236  1.80.2.1       riz 		}
   1237      1.70    cherry 
   1238  1.80.2.1       riz 		tlbflush();
   1239  1.80.2.1       riz 	}
   1240      1.70    cherry 
   1241      1.47       jym #endif /* __x86_64__ */
   1242  1.80.2.1       riz #if defined(__x86_64__) || defined(PAE)
   1243  1.80.2.1       riz 	/* old pmap no longer visible to pmap_kpm_sync_xcall() */
   1244  1.80.2.1       riz 	atomic_and_32(&oldpmap->pm_xen_ptp_cpus, ~cpumask);
   1245  1.80.2.1       riz 	mutex_exit(&ci->ci_kpm_mtx);
   1246  1.80.2.1       riz #endif
   1247      1.47       jym }
   1248      1.61    cherry 
   1249      1.70    cherry  /*
   1250      1.70    cherry   * pmap_cpu_init_late: perform late per-CPU initialization.
   1251      1.70    cherry   * Short note about percpu PDIR pages:
   1252      1.70    cherry   * Both the PAE and __x86_64__ architectures have per-cpu PDIR
   1253      1.70    cherry   * tables. This is to get around Xen's pagetable setup constraints for
   1254      1.70    cherry   * PAE (multiple L3[3]s cannot point to the same L2 - Xen
   1255      1.70    cherry   * will refuse to pin a table setup this way.) and for multiple cpus
   1256      1.70    cherry   * to map in different user pmaps on __x86_64__ (see: cpu_load_pmap())
   1257      1.70    cherry   *
   1258      1.70    cherry   * What this means for us is that the PDIR of the pmap_kernel() is
   1259      1.70    cherry   * considered to be a canonical "SHADOW" PDIR with the following
   1260      1.70    cherry   * properties:
   1261      1.70    cherry   * - Its recursive mapping points to itself
   1262      1.79    cherry   * - per-cpu recurseive mappings point to themselves on __x86_64__
   1263      1.70    cherry   * - per-cpu L4 pages' kernel entries are expected to be in sync with
   1264      1.70    cherry   *   the shadow
   1265      1.70    cherry   */
   1266      1.70    cherry 
   1267      1.70    cherry void
   1268      1.70    cherry pmap_cpu_init_late(struct cpu_info *ci)
   1269      1.70    cherry {
   1270      1.70    cherry #if defined(PAE) || defined(__x86_64__)
   1271      1.70    cherry 	/*
   1272      1.70    cherry 	 * The BP has already its own PD page allocated during early
   1273      1.70    cherry 	 * MD startup.
   1274      1.70    cherry 	 */
   1275      1.70    cherry 
   1276      1.78    cherry #if defined(__x86_64__)
   1277      1.78    cherry 	/* Setup per-cpu normal_pdes */
   1278      1.78    cherry 	int i;
   1279      1.78    cherry 	extern pd_entry_t * const normal_pdes[];
   1280      1.78    cherry 	for (i = 0;i < PTP_LEVELS - 1;i++) {
   1281      1.78    cherry 		ci->ci_normal_pdes[i] = normal_pdes[i];
   1282      1.78    cherry 	}
   1283      1.78    cherry #endif /* __x86_64__ */
   1284      1.78    cherry 
   1285      1.70    cherry 	if (ci == &cpu_info_primary)
   1286      1.70    cherry 		return;
   1287      1.70    cherry 
   1288      1.70    cherry 	KASSERT(ci != NULL);
   1289      1.70    cherry 
   1290      1.70    cherry #if defined(PAE)
   1291      1.73    cherry 	cpu_alloc_l3_page(ci);
   1292      1.70    cherry 	KASSERT(ci->ci_pae_l3_pdirpa != 0);
   1293      1.70    cherry 
   1294      1.70    cherry 	/* Initialise L2 entries 0 - 2: Point them to pmap_kernel() */
   1295      1.73    cherry 	int i;
   1296      1.75    cherry 	for (i = 0 ; i < PDP_SIZE - 1; i++) {
   1297      1.73    cherry 		ci->ci_pae_l3_pdir[i] =
   1298      1.73    cherry 		    xpmap_ptom_masked(pmap_kernel()->pm_pdirpa[i]) | PG_V;
   1299      1.73    cherry 	}
   1300      1.70    cherry #endif /* PAE */
   1301      1.70    cherry 
   1302      1.70    cherry 	ci->ci_kpm_pdir = (pd_entry_t *)uvm_km_alloc(kernel_map, PAGE_SIZE, 0,
   1303      1.70    cherry 	    UVM_KMF_WIRED | UVM_KMF_ZERO | UVM_KMF_NOWAIT);
   1304      1.70    cherry 
   1305      1.70    cherry 	if (ci->ci_kpm_pdir == NULL) {
   1306      1.70    cherry 		panic("%s: failed to allocate L4 per-cpu PD for CPU %d\n",
   1307      1.70    cherry 		      __func__, cpu_index(ci));
   1308      1.70    cherry 	}
   1309      1.70    cherry 	ci->ci_kpm_pdirpa = vtophys((vaddr_t) ci->ci_kpm_pdir);
   1310      1.70    cherry 	KASSERT(ci->ci_kpm_pdirpa != 0);
   1311      1.70    cherry 
   1312      1.70    cherry #if defined(__x86_64__)
   1313      1.70    cherry 	/*
   1314      1.70    cherry 	 * Copy over the pmap_kernel() shadow L4 entries
   1315      1.70    cherry 	 */
   1316      1.70    cherry 
   1317      1.70    cherry 	memcpy(ci->ci_kpm_pdir, pmap_kernel()->pm_pdir, PAGE_SIZE);
   1318      1.70    cherry 
   1319      1.70    cherry 	/* Recursive kernel mapping */
   1320      1.70    cherry 	ci->ci_kpm_pdir[PDIR_SLOT_PTE] = xpmap_ptom_masked(ci->ci_kpm_pdirpa) | PG_k | PG_V;
   1321      1.70    cherry #elif defined(PAE)
   1322      1.70    cherry 	/* Copy over the pmap_kernel() shadow L2 entries that map the kernel */
   1323      1.70    cherry 	memcpy(ci->ci_kpm_pdir, pmap_kernel()->pm_pdir + PDIR_SLOT_KERN, nkptp[PTP_LEVELS - 1] * sizeof(pd_entry_t));
   1324      1.70    cherry #endif /* __x86_64__ else PAE */
   1325      1.70    cherry 
   1326      1.70    cherry 	/* Xen wants R/O */
   1327  1.80.2.2       riz 	pmap_protect(pmap_kernel(), (vaddr_t)ci->ci_kpm_pdir,
   1328  1.80.2.2       riz 	    (vaddr_t)ci->ci_kpm_pdir + PAGE_SIZE, VM_PROT_READ);
   1329  1.80.2.2       riz 	pmap_update(pmap_kernel());
   1330      1.70    cherry #if defined(PAE)
   1331      1.70    cherry 	/* Initialise L3 entry 3. This mapping is shared across all
   1332      1.70    cherry 	 * pmaps and is static, ie; loading a new pmap will not update
   1333      1.70    cherry 	 * this entry.
   1334      1.70    cherry 	 */
   1335      1.70    cherry 
   1336      1.70    cherry 	ci->ci_pae_l3_pdir[3] = xpmap_ptom_masked(ci->ci_kpm_pdirpa) | PG_k | PG_V;
   1337      1.70    cherry 
   1338      1.70    cherry 	/* Mark L3 R/O (Xen wants this) */
   1339  1.80.2.2       riz 	pmap_protect(pmap_kernel(), (vaddr_t)ci->ci_pae_l3_pdir,
   1340  1.80.2.2       riz 	    (vaddr_t)ci->ci_pae_l3_pdir + PAGE_SIZE, VM_PROT_READ);
   1341  1.80.2.2       riz 	pmap_update(pmap_kernel());
   1342      1.70    cherry 
   1343      1.70    cherry 	xpq_queue_pin_l3_table(xpmap_ptom_masked(ci->ci_pae_l3_pdirpa));
   1344      1.70    cherry 
   1345      1.70    cherry #elif defined(__x86_64__)
   1346      1.70    cherry 	xpq_queue_pin_l4_table(xpmap_ptom_masked(ci->ci_kpm_pdirpa));
   1347      1.78    cherry #endif /* PAE , __x86_64__ */
   1348      1.70    cherry #endif /* defined(PAE) || defined(__x86_64__) */
   1349      1.70    cherry }
   1350      1.70    cherry 
   1351      1.61    cherry /*
   1352      1.61    cherry  * Notify all other cpus to halt.
   1353      1.61    cherry  */
   1354      1.61    cherry 
   1355      1.61    cherry void
   1356      1.61    cherry cpu_broadcast_halt(void)
   1357      1.61    cherry {
   1358      1.61    cherry 	xen_broadcast_ipi(XEN_IPI_HALT);
   1359      1.61    cherry }
   1360      1.61    cherry 
   1361      1.61    cherry /*
   1362      1.61    cherry  * Send a dummy ipi to a cpu.
   1363      1.61    cherry  */
   1364      1.61    cherry 
   1365      1.61    cherry void
   1366      1.61    cherry cpu_kick(struct cpu_info *ci)
   1367      1.61    cherry {
   1368      1.64  dholland 	(void)xen_send_ipi(ci, XEN_IPI_KICK);
   1369      1.61    cherry }
   1370