Home | History | Annotate | Line # | Download | only in include
cpu.h revision 1.161
      1 /*	$NetBSD: cpu.h,v 1.161 2008/02/10 14:37:41 ad Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1990 The Regents of the University of California.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * William Jolitz.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. Neither the name of the University nor the names of its contributors
     19  *    may be used to endorse or promote products derived from this software
     20  *    without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  * SUCH DAMAGE.
     33  *
     34  *	@(#)cpu.h	5.4 (Berkeley) 5/9/91
     35  */
     36 
     37 #ifndef _I386_CPU_H_
     38 #define _I386_CPU_H_
     39 
     40 #ifdef _KERNEL
     41 #if defined(_KERNEL_OPT)
     42 #include "opt_multiprocessor.h"
     43 #include "opt_user_ldt.h"
     44 #include "opt_vm86.h"
     45 #include "opt_xen.h"
     46 #endif
     47 
     48 /*
     49  * Definitions unique to i386 cpu support.
     50  */
     51 #include <machine/frame.h>
     52 #include <machine/segments.h>
     53 #include <machine/tss.h>
     54 #include <machine/intrdefs.h>
     55 #include <x86/cacheinfo.h>
     56 #include <x86/via_padlock.h>
     57 
     58 #include <sys/device.h>
     59 #include <sys/cpu_data.h>
     60 #include <sys/cc_microtime.h>
     61 
     62 #include <lib/libkern/libkern.h>	/* offsetof */
     63 
     64 struct intrsource;
     65 struct pmap;
     66 
     67 #define	NIOPORTS	1024		/* # of ports we allow to be mapped */
     68 #define	IOMAPSIZE	(NIOPORTS / 8)	/* I/O bitmap size in bytes */
     69 
     70 /*
     71  * a bunch of this belongs in cpuvar.h; move it later..
     72  */
     73 
     74 struct cpu_info {
     75 	struct device *ci_dev;		/* pointer to our device */
     76 	struct cpu_info *ci_self;	/* self-pointer */
     77 	void	*ci_tlog_base;		/* Trap log base */
     78 	int32_t ci_tlog_offset;		/* Trap log current offset */
     79 
     80 	/*
     81 	 * Will be accessed by other CPUs.
     82 	 */
     83 	struct cpu_info *ci_next;	/* next cpu */
     84 	struct lwp *ci_curlwp;		/* current owner of the processor */
     85 	int		ci_want_resched;
     86 	struct pmap_cpu *ci_pmap_cpu;	/* per-CPU pmap data */
     87 	struct lwp *ci_fpcurlwp;	/* current owner of the FPU */
     88 	int	ci_fpsaving;		/* save in progress */
     89 	cpuid_t ci_cpuid;		/* our CPU ID */
     90 	int	ci_cpumask;		/* (1 << CPU ID) */
     91 	u_int ci_apicid;		/* our APIC ID */
     92 	uint8_t ci_initapicid;		/* our intitial APIC ID */
     93 	uint8_t ci_packageid;
     94 	uint8_t ci_coreid;
     95 	uint8_t ci_smtid;
     96 	struct cpu_data ci_data;	/* MI per-cpu data */
     97 
     98 	/*
     99 	 * Private members.
    100 	 */
    101 	struct cc_microtime_state ci_cc __aligned(64);/* cc_microtime state */
    102 	struct evcnt ci_tlb_evcnt;	/* tlb shootdown counter */
    103 	struct pmap *ci_pmap;		/* current pmap */
    104 	int ci_need_tlbwait;		/* need to wait for TLB invalidations */
    105 	int ci_want_pmapload;		/* pmap_load() is needed */
    106 	volatile int ci_tlbstate;	/* one of TLBSTATE_ states. see below */
    107 #define	TLBSTATE_VALID	0	/* all user tlbs are valid */
    108 #define	TLBSTATE_LAZY	1	/* tlbs are valid but won't be kept uptodate */
    109 #define	TLBSTATE_STALE	2	/* we might have stale user tlbs */
    110 
    111 #ifdef XEN
    112 	struct iplsource  *ci_isources[NIPL];
    113 #else
    114 	struct intrsource *ci_isources[MAX_INTR_SOURCES];
    115 #endif
    116 	volatile int	ci_mtx_count;	/* Negative count of spin mutexes */
    117 	volatile int	ci_mtx_oldspl;	/* Old SPL at this ci_idepth */
    118 
    119 	/* The following must be aligned for cmpxchg8b. */
    120 	struct {
    121 		uint32_t	ipending;
    122 		int		ilevel;
    123 	} ci_istate __aligned(8);
    124 #define ci_ipending	ci_istate.ipending
    125 #define	ci_ilevel	ci_istate.ilevel
    126 
    127 	int		ci_idepth;
    128 	void *		ci_intrstack;
    129 	uint32_t	ci_imask[NIPL];
    130 	uint32_t	ci_iunmask[NIPL];
    131 
    132 	uint32_t ci_flags;		/* flags; see below */
    133 	uint32_t ci_ipis;		/* interprocessor interrupts pending */
    134 	int sc_apic_version;		/* local APIC version */
    135 
    136 	int32_t		ci_cpuid_level;
    137 	uint32_t	ci_signature;	 /* X86 cpuid type */
    138 	uint32_t	ci_feature_flags;/* X86 %edx CPUID feature bits */
    139 	uint32_t	ci_feature2_flags;/* X86 %ecx CPUID feature bits */
    140 	uint32_t	ci_feature3_flags;/* X86 extended feature bits */
    141 	uint32_t	ci_padlock_flags;/* VIA PadLock feature bits */
    142 	uint32_t	ci_cpu_class;	 /* CPU class */
    143 	uint32_t	ci_brand_id;	 /* Intel brand id */
    144 	uint32_t	ci_vendor[4];	 /* vendor string */
    145 	uint32_t	ci_cpu_serial[3]; /* PIII serial number */
    146 	uint64_t	ci_tsc_freq;	 /* cpu cycles/second */
    147 	volatile uint32_t	ci_lapic_counter;
    148 
    149 	const struct cpu_functions *ci_func;  /* start/stop functions */
    150 	void (*cpu_setup)(struct cpu_info *);
    151  					/* proc-dependant init */
    152 	void (*ci_info)(struct cpu_info *);
    153 
    154 	struct trapframe *ci_ddb_regs;
    155 
    156 	u_int ci_cflush_lsize;	/* CFLUSH insn line size */
    157 	struct x86_cache_info ci_cinfo[CAI_COUNT];
    158 
    159 	union descriptor *ci_gdt;
    160 
    161 	struct i386tss	ci_doubleflt_tss;
    162 	struct i386tss	ci_ddbipi_tss;
    163 
    164 	char *ci_doubleflt_stack;
    165 	char *ci_ddbipi_stack;
    166 
    167 	struct evcnt ci_ipi_events[X86_NIPI];
    168 
    169 	struct via_padlock	ci_vp;	/* VIA PadLock private storage */
    170 
    171 	struct i386tss	ci_tss;		/* Per-cpu TSS; shared among LWPs */
    172 	char		ci_iomap[IOMAPSIZE]; /* I/O Bitmap */
    173 	int ci_tss_sel;			/* TSS selector of this cpu */
    174 
    175 	/*
    176 	 * The following two are actually region_descriptors,
    177 	 * but that would pollute the namespace.
    178 	 */
    179 	uint32_t	ci_suspend_gdt;
    180 	uint16_t	ci_suspend_gdt_padding;
    181 	uint32_t	ci_suspend_idt;
    182 	uint16_t	ci_suspend_idt_padding;
    183 
    184 	uint16_t	ci_suspend_tr;
    185 	uint16_t	ci_suspend_ldt;
    186 	uint16_t	ci_suspend_fs;
    187 	uint16_t	ci_suspend_gs;
    188 	uint32_t	ci_suspend_ebx;
    189 	uint32_t	ci_suspend_esi;
    190 	uint32_t	ci_suspend_edi;
    191 	uint32_t	ci_suspend_ebp;
    192 	uint32_t	ci_suspend_esp;
    193 	uint32_t	ci_suspend_efl;
    194 	uint32_t	ci_suspend_cr0;
    195 	uint32_t	ci_suspend_cr2;
    196 	uint32_t	ci_suspend_cr3;
    197 	uint32_t	ci_suspend_cr4;
    198 #ifdef XEN
    199 	int		ci_fpused;	/* FPU was used by curlwp */
    200 #endif
    201 };
    202 
    203 /*
    204  * Processor flag notes: The "primary" CPU has certain MI-defined
    205  * roles (mostly relating to hardclock handling); we distinguish
    206  * betwen the processor which booted us, and the processor currently
    207  * holding the "primary" role just to give us the flexibility later to
    208  * change primaries should we be sufficiently twisted.
    209  */
    210 
    211 #define	CPUF_BSP	0x0001		/* CPU is the original BSP */
    212 #define	CPUF_AP		0x0002		/* CPU is an AP */
    213 #define	CPUF_SP		0x0004		/* CPU is only processor */
    214 #define	CPUF_PRIMARY	0x0008		/* CPU is active primary processor */
    215 
    216 #define CPUF_APIC_CD    0x0010		/* CPU has apic configured */
    217 
    218 #define	CPUF_PRESENT	0x1000		/* CPU is present */
    219 #define	CPUF_RUNNING	0x2000		/* CPU is running */
    220 #define	CPUF_PAUSE	0x4000		/* CPU is paused in DDB */
    221 #define	CPUF_GO		0x8000		/* CPU should start running */
    222 
    223 /*
    224  * We statically allocate the CPU info for the primary CPU (or,
    225  * the only CPU on uniprocessors), and the primary CPU is the
    226  * first CPU on the CPU info list.
    227  */
    228 extern struct cpu_info cpu_info_primary;
    229 extern struct cpu_info *cpu_info_list;
    230 
    231 #define	CPU_INFO_ITERATOR		int
    232 #define	CPU_INFO_FOREACH(cii, ci)	cii = 0, ci = cpu_info_list; \
    233 					ci != NULL; ci = ci->ci_next
    234 
    235 #define X86_MAXPROCS		32	/* because we use a bitmask */
    236 
    237 #define CPU_STARTUP(_ci, _target)	((_ci)->ci_func->start(_ci, _target))
    238 #define CPU_STOP(_ci)	        	((_ci)->ci_func->stop(_ci))
    239 #define CPU_START_CLEANUP(_ci)		((_ci)->ci_func->cleanup(_ci))
    240 
    241 #if defined(__GNUC__) && defined(_KERNEL)
    242 static struct cpu_info *x86_curcpu(void);
    243 static lwp_t *x86_curlwp(void);
    244 
    245 __inline static struct cpu_info * __unused
    246 x86_curcpu(void)
    247 {
    248 	struct cpu_info *ci;
    249 
    250 	__asm volatile("movl %%fs:%1, %0" :
    251 	    "=r" (ci) :
    252 	    "m"
    253 	    (*(struct cpu_info * const *)offsetof(struct cpu_info, ci_self)));
    254 	return ci;
    255 }
    256 
    257 __inline static lwp_t * __unused
    258 x86_curlwp(void)
    259 {
    260 	lwp_t *l;
    261 
    262 	__asm volatile("movl %%fs:%1, %0" :
    263 	    "=r" (l) :
    264 	    "m"
    265 	    (*(struct cpu_info * const *)offsetof(struct cpu_info, ci_curlwp)));
    266 	return l;
    267 }
    268 #else	/* __GNUC__ && _KERNEL */
    269 /* For non-GCC and LKMs */
    270 struct cpu_info	*x86_curcpu(void);
    271 lwp_t	*x86_curlwp(void);
    272 #endif	/* __GNUC__ && _KERNEL */
    273 
    274 #define cpu_number() 		(curcpu()->ci_cpuid)
    275 
    276 #define CPU_IS_PRIMARY(ci)	((ci)->ci_flags & CPUF_PRIMARY)
    277 
    278 #define aston(l)		((l)->l_md.md_astpending = 1)
    279 
    280 extern	struct cpu_info *cpu_info[X86_MAXPROCS];
    281 
    282 void cpu_boot_secondary_processors(void);
    283 void cpu_init_idle_lwps(void);
    284 
    285 extern uint32_t cpus_attached;
    286 #ifndef XEN
    287 #define	curcpu()		x86_curcpu()
    288 #define	curlwp			x86_curlwp()
    289 #else
    290 /* XXX initgdt() calls pmap_kenter_pa() which calls splvm() before %fs is set */
    291 #define curcpu()		(&cpu_info_primary)
    292 #define curlwp			curcpu()->ci_curlwp
    293 #endif
    294 #define	curpcb			(&curlwp->l_addr->u_pcb)
    295 
    296 /*
    297  * Arguments to hardclock, softclock and statclock
    298  * encapsulate the previous machine state in an opaque
    299  * clockframe; for now, use generic intrframe.
    300  */
    301 struct clockframe {
    302 	struct intrframe cf_if;
    303 };
    304 
    305 #define	CLKF_USERMODE(frame)	USERMODE((frame)->cf_if.if_cs, (frame)->cf_if.if_eflags)
    306 #define	CLKF_PC(frame)		((frame)->cf_if.if_eip)
    307 #define	CLKF_INTR(frame)	(curcpu()->ci_idepth > 0)
    308 
    309 /*
    310  * This is used during profiling to integrate system time.  It can safely
    311  * assume that the process is resident.
    312  */
    313 #define	LWP_PC(l)		((l)->l_md.md_regs->tf_eip)
    314 
    315 /*
    316  * Give a profiling tick to the current process when the user profiling
    317  * buffer pages are invalid.  On the i386, request an ast to send us
    318  * through trap(), marking the proc as needing a profiling tick.
    319  */
    320 extern void	cpu_need_proftick(struct lwp *l);
    321 
    322 /*
    323  * Notify the LWP l that it has a signal pending, process as soon as
    324  * possible.
    325  */
    326 extern void	cpu_signotify(struct lwp *);
    327 
    328 /*
    329  * We need a machine-independent name for this.
    330  */
    331 extern void (*delay_func)(unsigned int);
    332 struct timeval;
    333 
    334 #define	DELAY(x)		(*delay_func)(x)
    335 #define delay(x)		(*delay_func)(x)
    336 
    337 /*
    338  * pull in #defines for kinds of processors
    339  */
    340 #include <machine/cputypes.h>
    341 
    342 struct cpu_nocpuid_nameclass {
    343 	int cpu_vendor;
    344 	const char *cpu_vendorname;
    345 	const char *cpu_name;
    346 	int cpu_class;
    347 	void (*cpu_setup)(struct cpu_info *);
    348 	void (*cpu_cacheinfo)(struct cpu_info *);
    349 	void (*cpu_info)(struct cpu_info *);
    350 };
    351 
    352 
    353 struct cpu_cpuid_nameclass {
    354 	const char *cpu_id;
    355 	int cpu_vendor;
    356 	const char *cpu_vendorname;
    357 	struct cpu_cpuid_family {
    358 		int cpu_class;
    359 		const char *cpu_models[CPU_MAXMODEL+2];
    360 		void (*cpu_setup)(struct cpu_info *);
    361 		void (*cpu_probe)(struct cpu_info *);
    362 		void (*cpu_info)(struct cpu_info *);
    363 	} cpu_family[CPU_MAXFAMILY - CPU_MINFAMILY + 1];
    364 };
    365 
    366 extern int biosbasemem;
    367 extern int biosextmem;
    368 extern unsigned int cpu_feature;
    369 extern unsigned int cpu_feature2;
    370 extern unsigned int cpu_feature_padlock;
    371 extern int cpu;
    372 extern int cpu_class;
    373 extern char cpu_brand_string[];
    374 extern const struct cpu_nocpuid_nameclass i386_nocpuid_cpus[];
    375 extern const struct cpu_cpuid_nameclass i386_cpuid_cpus[];
    376 
    377 extern int i386_use_fxsave;
    378 extern int i386_has_sse;
    379 extern int i386_has_sse2;
    380 
    381 /* machdep.c */
    382 void	dumpconf(void);
    383 void	cpu_reset(void);
    384 void	i386_proc0_tss_ldt_init(void);
    385 
    386 extern int tmx86_has_longrun;
    387 extern u_int crusoe_longrun;
    388 extern u_int crusoe_frequency;
    389 extern u_int crusoe_voltage;
    390 extern u_int crusoe_percentage;
    391 extern u_int tmx86_set_longrun_mode(u_int);
    392 void tmx86_get_longrun_status_all(void);
    393 u_int tmx86_get_longrun_mode(void);
    394 void identifycpu(struct cpu_info *);
    395 
    396 /* vm_machdep.c */
    397 void	cpu_proc_fork(struct proc *, struct proc *);
    398 
    399 /* locore.s */
    400 struct region_descriptor;
    401 void	lgdt(struct region_descriptor *);
    402 #ifdef XEN
    403 void	lgdt_finish(void);
    404 void	i386_switch_context(lwp_t *);
    405 #endif
    406 void	fillw(short, void *, size_t);
    407 
    408 struct pcb;
    409 void	savectx(struct pcb *);
    410 void	lwp_trampoline(void);
    411 #ifdef XEN
    412 void	startrtclock(void);
    413 void	xen_delay(unsigned int);
    414 void	xen_initclocks(void);
    415 #else
    416 /* clock.c */
    417 void	initrtclock(u_long);
    418 void	startrtclock(void);
    419 void	i8254_delay(unsigned int);
    420 void	i8254_microtime(struct timeval *);
    421 void	i8254_initclocks(void);
    422 #endif
    423 
    424 /* cpu.c */
    425 
    426 void	cpu_probe_features(struct cpu_info *);
    427 
    428 /* npx.c */
    429 void	npxsave_lwp(struct lwp *, bool);
    430 void	npxsave_cpu(bool);
    431 
    432 /* vm_machdep.c */
    433 int kvtop(void *);
    434 
    435 #ifdef USER_LDT
    436 /* sys_machdep.h */
    437 int	x86_get_ldt(struct lwp *, void *, register_t *);
    438 int	x86_set_ldt(struct lwp *, void *, register_t *);
    439 #endif
    440 
    441 /* isa_machdep.c */
    442 void	isa_defaultirq(void);
    443 int	isa_nmi(void);
    444 
    445 #ifdef VM86
    446 /* vm86.c */
    447 void	vm86_gpfault(struct lwp *, int);
    448 #endif /* VM86 */
    449 
    450 /* consinit.c */
    451 void kgdb_port_init(void);
    452 
    453 /* bus_machdep.c */
    454 void x86_bus_space_init(void);
    455 void x86_bus_space_mallocok(void);
    456 
    457 #include <machine/psl.h>	/* Must be after struct cpu_info declaration */
    458 
    459 #endif /* _KERNEL */
    460 
    461 /*
    462  * CTL_MACHDEP definitions.
    463  */
    464 #define	CPU_CONSDEV		1	/* dev_t: console terminal device */
    465 #define	CPU_BIOSBASEMEM		2	/* int: bios-reported base mem (K) */
    466 #define	CPU_BIOSEXTMEM		3	/* int: bios-reported ext. mem (K) */
    467 /* 	CPU_NKPDE		4	obsolete: int: number of kernel PDEs */
    468 #define	CPU_BOOTED_KERNEL	5	/* string: booted kernel name */
    469 #define CPU_DISKINFO		6	/* struct disklist *:
    470 					 * disk geometry information */
    471 #define CPU_FPU_PRESENT		7	/* int: FPU is present */
    472 #define	CPU_OSFXSR		8	/* int: OS uses FXSAVE/FXRSTOR */
    473 #define	CPU_SSE			9	/* int: OS/CPU supports SSE */
    474 #define	CPU_SSE2		10	/* int: OS/CPU supports SSE2 */
    475 #define CPU_TMLR_MODE		11 	/* int: longrun mode
    476 					 * 0: minimum frequency
    477 					 * 1: economy
    478 					 * 2: performance
    479 					 * 3: maximum frequency
    480 					 */
    481 #define CPU_TMLR_FREQUENCY	12 	/* int: current frequency */
    482 #define CPU_TMLR_VOLTAGE	13 	/* int: curret voltage */
    483 #define CPU_TMLR_PERCENTAGE	14	/* int: current clock percentage */
    484 #define	CPU_MAXID		15	/* number of valid machdep ids */
    485 
    486 #define	CTL_MACHDEP_NAMES { \
    487 	{ 0, 0 }, \
    488 	{ "console_device", CTLTYPE_STRUCT }, \
    489 	{ "biosbasemem", CTLTYPE_INT }, \
    490 	{ "biosextmem", CTLTYPE_INT }, \
    491 	{ "booted_kernel", CTLTYPE_STRING }, \
    492 	{ "diskinfo", CTLTYPE_STRUCT }, \
    493 	{ "fpu_present", CTLTYPE_INT }, \
    494 	{ "osfxsr", CTLTYPE_INT }, \
    495 	{ "sse", CTLTYPE_INT }, \
    496 	{ "sse2", CTLTYPE_INT }, \
    497 	{ "tm_longrun_mode", CTLTYPE_INT }, \
    498 	{ "tm_longrun_frequency", CTLTYPE_INT }, \
    499 	{ "tm_longrun_voltage", CTLTYPE_INT }, \
    500 	{ "tm_longrun_percentage", CTLTYPE_INT }, \
    501 }
    502 
    503 /*
    504  * Structure for CPU_DISKINFO sysctl call.
    505  * XXX this should be somewhere else.
    506  */
    507 #define MAX_BIOSDISKS	16
    508 
    509 struct disklist {
    510 	int dl_nbiosdisks;			   /* number of bios disks */
    511 	struct biosdisk_info {
    512 		int bi_dev;			   /* BIOS device # (0x80 ..) */
    513 		int bi_cyl;			   /* cylinders on disk */
    514 		int bi_head;			   /* heads per track */
    515 		int bi_sec;			   /* sectors per track */
    516 		uint64_t bi_lbasecs;		   /* total sec. (iff ext13) */
    517 #define BIFLAG_INVALID		0x01
    518 #define BIFLAG_EXTINT13		0x02
    519 		int bi_flags;
    520 	} dl_biosdisks[MAX_BIOSDISKS];
    521 
    522 	int dl_nnativedisks;			   /* number of native disks */
    523 	struct nativedisk_info {
    524 		char ni_devname[16];		   /* native device name */
    525 		int ni_nmatches; 		   /* # of matches w/ BIOS */
    526 		int ni_biosmatches[MAX_BIOSDISKS]; /* indices in dl_biosdisks */
    527 	} dl_nativedisks[1];			   /* actually longer */
    528 };
    529 #endif /* !_I386_CPU_H_ */
    530