setup64.c 7.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/* 
 * X86-64 specific CPU setup.
 * Copyright (C) 1995  Linus Torvalds
 * Copyright 2001, 2002, 2003 SuSE Labs / Andi Kleen.
 * See setup.c for older changelog.
 */ 
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/string.h>
#include <linux/bootmem.h>
#include <linux/bitops.h>
13
#include <linux/module.h>
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21 22 23
#include <asm/pda.h>
#include <asm/pgtable.h>
#include <asm/processor.h>
#include <asm/desc.h>
#include <asm/atomic.h>
#include <asm/mmu_context.h>
#include <asm/smp.h>
#include <asm/i387.h>
#include <asm/percpu.h>
#include <asm/proto.h>
24
#include <asm/sections.h>
25
#include <asm/setup.h>
L
Linus Torvalds 已提交
26

27
struct boot_params __initdata boot_params;
L
Linus Torvalds 已提交
28

29
cpumask_t cpu_initialized __cpuinitdata = CPU_MASK_NONE;
L
Linus Torvalds 已提交
30

31
struct x8664_pda *_cpu_pda[NR_CPUS] __read_mostly;
32
EXPORT_SYMBOL(_cpu_pda);
33
struct x8664_pda boot_cpu_pda[NR_CPUS] __cacheline_aligned;
L
Linus Torvalds 已提交
34

35
struct desc_ptr idt_descr = { 256 * 16 - 1, (unsigned long) idt_table };
L
Linus Torvalds 已提交
36 37 38

char boot_cpu_stack[IRQSTACKSIZE] __attribute__((section(".bss.page_aligned")));

39
unsigned long __supported_pte_mask __read_mostly = ~0UL;
40
static int do_not_nx __cpuinitdata = 0;
L
Linus Torvalds 已提交
41 42 43 44 45 46 47

/* noexec=on|off
Control non executable mappings for 64bit processes.

on	Enable(default)
off	Disable
*/ 
48
static int __init nonx_setup(char *str)
L
Linus Torvalds 已提交
49
{
50 51
	if (!str)
		return -EINVAL;
L
Linus Torvalds 已提交
52 53 54 55 56 57 58
	if (!strncmp(str, "on", 2)) {
                __supported_pte_mask |= _PAGE_NX; 
 		do_not_nx = 0; 
	} else if (!strncmp(str, "off", 3)) {
		do_not_nx = 1;
		__supported_pte_mask &= ~_PAGE_NX;
        }
59
	return 0;
L
Linus Torvalds 已提交
60
} 
61
early_param("noexec", nonx_setup);
L
Linus Torvalds 已提交
62

63
int force_personality32 = 0; 
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77

/* noexec32=on|off
Control non executable heap for 32bit processes.
To control the stack too use noexec=off

on	PROT_READ does not imply PROT_EXEC for 32bit processes
off	PROT_READ implies PROT_EXEC (default)
*/
static int __init nonx32_setup(char *str)
{
	if (!strcmp(str, "on"))
		force_personality32 &= ~READ_IMPLIES_EXEC;
	else if (!strcmp(str, "off"))
		force_personality32 |= READ_IMPLIES_EXEC;
78
	return 1;
L
Linus Torvalds 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91
}
__setup("noexec32=", nonx32_setup);

/*
 * Great future plan:
 * Declare PDA itself and support (irqstack,tss,pgd) as per cpu data.
 * Always point %gs to its beginning
 */
void __init setup_per_cpu_areas(void)
{ 
	int i;
	unsigned long size;

92 93 94 95
#ifdef CONFIG_HOTPLUG_CPU
	prefill_possible_map();
#endif

L
Linus Torvalds 已提交
96
	/* Copy section for each CPU (we discard the original) */
97
	size = PERCPU_ENOUGH_ROOM;
L
Linus Torvalds 已提交
98

99
	printk(KERN_INFO "PERCPU: Allocating %lu bytes of per cpu data\n", size);
100
	for_each_cpu_mask (i, cpu_possible_map) {
101
		char *ptr;
L
Linus Torvalds 已提交
102 103 104 105

		if (!NODE_DATA(cpu_to_node(i))) {
			printk("cpu with no node %d, num_online_nodes %d\n",
			       i, num_online_nodes());
106
			ptr = alloc_bootmem_pages(size);
L
Linus Torvalds 已提交
107
		} else { 
108
			ptr = alloc_bootmem_pages_node(NODE_DATA(cpu_to_node(i)), size);
L
Linus Torvalds 已提交
109 110 111
		}
		if (!ptr)
			panic("Cannot allocate cpu data for CPU %d\n", i);
112
		cpu_pda(i)->data_offset = ptr - __per_cpu_start;
L
Linus Torvalds 已提交
113 114 115 116 117 118
		memcpy(ptr, __per_cpu_start, __per_cpu_end - __per_cpu_start);
	}
} 

void pda_init(int cpu)
{ 
119
	struct x8664_pda *pda = cpu_pda(cpu);
L
Linus Torvalds 已提交
120 121 122

	/* Setup up data that may be needed in __get_free_pages early */
	asm volatile("movl %0,%%fs ; movl %0,%%gs" :: "r" (0)); 
123 124
	/* Memory clobbers used to order PDA accessed */
	mb();
125
	wrmsrl(MSR_GS_BASE, pda);
126
	mb();
L
Linus Torvalds 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149

	pda->cpunumber = cpu; 
	pda->irqcount = -1;
	pda->kernelstack = 
		(unsigned long)stack_thread_info() - PDA_STACKOFFSET + THREAD_SIZE; 
	pda->active_mm = &init_mm;
	pda->mmu_state = 0;

	if (cpu == 0) {
		/* others are initialized in smpboot.c */
		pda->pcurrent = &init_task;
		pda->irqstackptr = boot_cpu_stack; 
	} else {
		pda->irqstackptr = (char *)
			__get_free_pages(GFP_ATOMIC, IRQSTACK_ORDER);
		if (!pda->irqstackptr)
			panic("cannot allocate irqstack for cpu %d", cpu); 
	}


	pda->irqstackptr += IRQSTACKSIZE-64;
} 

150
char boot_exception_stacks[(N_EXCEPTION_STACKS - 1) * EXCEPTION_STKSZ + DEBUG_STKSZ]
L
Linus Torvalds 已提交
151 152
__attribute__((section(".bss.page_aligned")));

153 154
extern asmlinkage void ignore_sysret(void);

L
Linus Torvalds 已提交
155 156 157 158 159 160 161 162 163 164
/* May not be marked __init: used by software suspend */
void syscall_init(void)
{
	/* 
	 * LSTAR and STAR live in a bit strange symbiosis.
	 * They both write to the same internal register. STAR allows to set CS/DS
	 * but only a 32bit target. LSTAR sets the 64bit rip. 	 
	 */ 
	wrmsrl(MSR_STAR,  ((u64)__USER32_CS)<<48  | ((u64)__KERNEL_CS)<<32); 
	wrmsrl(MSR_LSTAR, system_call); 
165
	wrmsrl(MSR_CSTAR, ignore_sysret);
L
Linus Torvalds 已提交
166 167 168 169 170 171

#ifdef CONFIG_IA32_EMULATION   		
	syscall32_cpu_init ();
#endif

	/* Flags to clear on syscall */
R
Roland McGrath 已提交
172 173
	wrmsrl(MSR_SYSCALL_MASK,
	       X86_EFLAGS_TF|X86_EFLAGS_DF|X86_EFLAGS_IF|X86_EFLAGS_IOPL);
L
Linus Torvalds 已提交
174 175
}

176
void __cpuinit check_efer(void)
L
Linus Torvalds 已提交
177 178 179 180 181 182 183 184 185
{
	unsigned long efer;

	rdmsrl(MSR_EFER, efer); 
        if (!(efer & EFER_NX) || do_not_nx) { 
                __supported_pte_mask &= ~_PAGE_NX; 
        }       
}

186 187
unsigned long kernel_eflags;

H
Hiroshi Shimamoto 已提交
188 189 190 191 192 193
/*
 * Copies of the original ist values from the tss are only accessed during
 * debugging, no special alignment required.
 */
DEFINE_PER_CPU(struct orig_ist, orig_ist);

L
Linus Torvalds 已提交
194 195 196 197 198 199 200
/*
 * cpu_init() initializes state that is per-CPU. Some data is already
 * initialized (naturally) in the bootstrap process, such as the GDT
 * and IDT. We reload them nevertheless, this function acts as a
 * 'CPU state barrier', nothing should get across.
 * A lot of state is already set up in PDA init.
 */
201
void __cpuinit cpu_init (void)
L
Linus Torvalds 已提交
202 203 204
{
	int cpu = stack_smp_processor_id();
	struct tss_struct *t = &per_cpu(init_tss, cpu);
205
	struct orig_ist *orig_ist = &per_cpu(orig_ist, cpu);
L
Linus Torvalds 已提交
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
	unsigned long v; 
	char *estacks = NULL; 
	struct task_struct *me;
	int i;

	/* CPU 0 is initialised in head64.c */
	if (cpu != 0) {
		pda_init(cpu);
	} else 
		estacks = boot_exception_stacks; 

	me = current;

	if (cpu_test_and_set(cpu, cpu_initialized))
		panic("CPU#%d already initialized!\n", cpu);

	printk("Initializing CPU#%d\n", cpu);

224
	clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
L
Linus Torvalds 已提交
225 226 227 228 229

	/*
	 * Initialize the per-CPU GDT with the boot GDT,
	 * and set up the GDT descriptor:
	 */
230
	if (cpu)
231
		memcpy(get_cpu_gdt_table(cpu), cpu_gdt_table, GDT_SIZE);
L
Linus Torvalds 已提交
232 233

	cpu_gdt_descr[cpu].size = GDT_SIZE;
234 235
	load_gdt((const struct desc_ptr *)&cpu_gdt_descr[cpu]);
	load_idt((const struct desc_ptr *)&idt_descr);
L
Linus Torvalds 已提交
236

237
	memset(me->thread.tls_array, 0, GDT_ENTRY_TLS_ENTRIES * 8);
L
Linus Torvalds 已提交
238 239 240 241 242 243 244 245 246 247 248 249
	syscall_init();

	wrmsrl(MSR_FS_BASE, 0);
	wrmsrl(MSR_KERNEL_GS_BASE, 0);
	barrier(); 

	check_efer();

	/*
	 * set up and load the per-CPU TSS
	 */
	for (v = 0; v < N_EXCEPTION_STACKS; v++) {
250 251 252 253
		static const unsigned int order[N_EXCEPTION_STACKS] = {
			[0 ... N_EXCEPTION_STACKS - 1] = EXCEPTION_STACK_ORDER,
			[DEBUG_STACK - 1] = DEBUG_STACK_ORDER
		};
L
Linus Torvalds 已提交
254
		if (cpu) {
255
			estacks = (char *)__get_free_pages(GFP_ATOMIC, order[v]);
L
Linus Torvalds 已提交
256 257 258 259
			if (!estacks)
				panic("Cannot allocate exception stack %ld %d\n",
				      v, cpu); 
		}
260
		estacks += PAGE_SIZE << order[v];
261
		orig_ist->ist[v] = t->x86_tss.ist[v] = (unsigned long)estacks;
L
Linus Torvalds 已提交
262 263
	}

264
	t->x86_tss.io_bitmap_base = offsetof(struct tss_struct, io_bitmap);
L
Linus Torvalds 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
	/*
	 * <= is required because the CPU will access up to
	 * 8 bits beyond the end of the IO permission bitmap.
	 */
	for (i = 0; i <= IO_BITMAP_LONGS; i++)
		t->io_bitmap[i] = ~0UL;

	atomic_inc(&init_mm.mm_count);
	me->active_mm = &init_mm;
	if (me->mm)
		BUG();
	enter_lazy_tlb(&init_mm, me);

	set_tss_desc(cpu, t);
	load_TR_desc();
	load_LDT(&init_mm.context);

	/*
	 * Clear all 6 debug registers:
	 */

286 287 288 289 290 291
	set_debugreg(0UL, 0);
	set_debugreg(0UL, 1);
	set_debugreg(0UL, 2);
	set_debugreg(0UL, 3);
	set_debugreg(0UL, 6);
	set_debugreg(0UL, 7);
L
Linus Torvalds 已提交
292 293

	fpu_init(); 
294 295

	raw_local_save_flags(kernel_eflags);
L
Linus Torvalds 已提交
296
}