head_32.S 17.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *
 *  Enhanced CPU detection and feature setting code by Mike Jagdis
 *  and Martin Mares, November 1997.
 */

.text
#include <linux/threads.h>
11
#include <linux/init.h>
L
Linus Torvalds 已提交
12 13 14 15 16 17 18
#include <linux/linkage.h>
#include <asm/segment.h>
#include <asm/page.h>
#include <asm/pgtable.h>
#include <asm/desc.h>
#include <asm/cache.h>
#include <asm/thread_info.h>
19
#include <asm/asm-offsets.h>
L
Linus Torvalds 已提交
20
#include <asm/setup.h>
21
#include <asm/processor-flags.h>
22
#include <asm/percpu.h>
23 24 25

/* Physical address */
#define pa(X) ((X) - __PAGE_OFFSET)
L
Linus Torvalds 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

/*
 * References to members of the new_cpu_data structure.
 */

#define X86		new_cpu_data+CPUINFO_x86
#define X86_VENDOR	new_cpu_data+CPUINFO_x86_vendor
#define X86_MODEL	new_cpu_data+CPUINFO_x86_model
#define X86_MASK	new_cpu_data+CPUINFO_x86_mask
#define X86_HARD_MATH	new_cpu_data+CPUINFO_hard_math
#define X86_CPUID	new_cpu_data+CPUINFO_cpuid_level
#define X86_CAPABILITY	new_cpu_data+CPUINFO_x86_capability
#define X86_VENDOR_ID	new_cpu_data+CPUINFO_x86_vendor_id

/*
 * This is how much memory *in addition to the memory covered up to
42 43 44 45 46 47 48 49 50
 * and including _end* we need mapped initially.
 * We need:
 *  - one bit for each possible page, but only in low memory, which means
 *     2^32/4096/8 = 128K worst case (4G/4G split.)
 *  - enough space to map all low memory, which means
 *     (2^32/4096) / 1024 pages (worst case, non PAE)
 *     (2^32/4096) / 512 + 4 pages (worst case for PAE)
 *  - a few pages for allocator use before the kernel pagetable has
 *     been set up
L
Linus Torvalds 已提交
51 52 53 54 55 56
 *
 * Modulo rounding, each megabyte assigned here requires a kilobyte of
 * memory, which is currently unreclaimed.
 *
 * This should be a multiple of a page.
 */
57
LOW_PAGES = 1<<(32-PAGE_SHIFT_asm)
L
Linus Torvalds 已提交
58

59 60 61 62 63 64 65 66 67
/*
 * To preserve the DMA pool in PAGEALLOC kernels, we'll allocate
 * pagetables from above the 16MB DMA limit, so we'll have to set
 * up pagetables 16MB more (worst-case):
 */
#ifdef CONFIG_DEBUG_PAGEALLOC
LOW_PAGES = LOW_PAGES + 0x1000000
#endif

68 69 70 71 72 73 74 75 76
#if PTRS_PER_PMD > 1
PAGE_TABLE_SIZE = (LOW_PAGES / PTRS_PER_PMD) + PTRS_PER_PGD
#else
PAGE_TABLE_SIZE = (LOW_PAGES / PTRS_PER_PGD)
#endif
BOOTBITMAP_SIZE = LOW_PAGES / 8
ALLOCATOR_SLOP = 4

INIT_MAP_BEYOND_END = BOOTBITMAP_SIZE + (PAGE_TABLE_SIZE + ALLOCATOR_SLOP)*PAGE_SIZE_asm
L
Linus Torvalds 已提交
77 78 79 80 81 82 83 84

/*
 * 32-bit kernel entrypoint; only used by the boot CPU.  On entry,
 * %esi points to the real-mode code as a 32-bit pointer.
 * CS and DS must be 4 GB flat segments, but we don't depend on
 * any particular GDT layout, because we load our own as soon as we
 * can.
 */
85
.section .text.head,"ax",@progbits
L
Linus Torvalds 已提交
86
ENTRY(startup_32)
R
Rusty Russell 已提交
87 88 89 90
	/* test KEEP_SEGMENTS flag to see if the bootloader is asking
		us to not reload segments */
	testb $(1<<6), BP_loadflags(%esi)
	jnz 2f
L
Linus Torvalds 已提交
91 92 93 94

/*
 * Set segments to known values.
 */
95
	lgdt pa(boot_gdt_descr)
L
Linus Torvalds 已提交
96 97 98 99 100
	movl $(__BOOT_DS),%eax
	movl %eax,%ds
	movl %eax,%es
	movl %eax,%fs
	movl %eax,%gs
R
Rusty Russell 已提交
101
2:
L
Linus Torvalds 已提交
102 103 104 105

/*
 * Clear BSS first so that there are no surprises...
 */
R
Rusty Russell 已提交
106
	cld
L
Linus Torvalds 已提交
107
	xorl %eax,%eax
108 109
	movl $pa(__bss_start),%edi
	movl $pa(__bss_stop),%ecx
L
Linus Torvalds 已提交
110 111 112
	subl %edi,%ecx
	shrl $2,%ecx
	rep ; stosl
113 114 115 116 117 118 119 120
/*
 * Copy bootup parameters out of the way.
 * Note: %esi still has the pointer to the real-mode data.
 * With the kexec as boot loader, parameter segment might be loaded beyond
 * kernel image and might not even be addressable by early boot page tables.
 * (kexec on panic case). Hence copy out the parameters before initializing
 * page tables.
 */
121
	movl $pa(boot_params),%edi
122 123 124 125
	movl $(PARAM_SIZE/4),%ecx
	cld
	rep
	movsl
126
	movl pa(boot_params) + NEW_CL_POINTER,%esi
127
	andl %esi,%esi
128
	jz 1f			# No comand line
129
	movl $pa(boot_command_line),%edi
130 131 132 133
	movl $(COMMAND_LINE_SIZE/4),%ecx
	rep
	movsl
1:
L
Linus Torvalds 已提交
134

R
Rusty Russell 已提交
135
#ifdef CONFIG_PARAVIRT
136 137
	/* This is can only trip for a broken bootloader... */
	cmpw $0x207, pa(boot_params + BP_version)
R
Rusty Russell 已提交
138 139 140 141
	jb default_entry

	/* Paravirt-compatible boot parameters.  Look to see what architecture
		we're booting under. */
142
	movl pa(boot_params + BP_hardware_subarch), %eax
R
Rusty Russell 已提交
143 144 145
	cmpl $num_subarch_entries, %eax
	jae bad_subarch

146
	movl pa(subarch_entries)(,%eax,4), %eax
R
Rusty Russell 已提交
147 148 149 150 151 152 153 154 155
	subl $__PAGE_OFFSET, %eax
	jmp *%eax

bad_subarch:
WEAK(lguest_entry)
WEAK(xen_entry)
	/* Unknown implementation; there's really
	   nothing we can do at this point. */
	ud2a
156 157 158

	__INITDATA

R
Rusty Russell 已提交
159 160 161 162 163 164 165 166
subarch_entries:
	.long default_entry		/* normal x86/PC */
	.long lguest_entry		/* lguest hypervisor */
	.long xen_entry			/* Xen hypervisor */
num_subarch_entries = (. - subarch_entries) / 4
.previous
#endif /* CONFIG_PARAVIRT */

L
Linus Torvalds 已提交
167 168 169 170 171 172 173
/*
 * Initialize page tables.  This creates a PDE and a set of page
 * tables, which are located immediately beyond _end.  The variable
 * init_pg_tables_end is set up to point to the first "safe" location.
 * Mappings are created both at virtual address 0 (identity mapping)
 * and PAGE_OFFSET for up to _end+sizeof(page tables)+INIT_MAP_BEYOND_END.
 *
174
 * Note that the stack is not yet set up!
L
Linus Torvalds 已提交
175
 */
R
Rusty Russell 已提交
176
default_entry:
177 178 179 180 181 182 183 184 185 186 187 188
#ifdef CONFIG_X86_PAE

	/*
	 * In PAE mode swapper_pg_dir is statically defined to contain enough
	 * entries to cover the VMSPLIT option (that is the top 1, 2 or 3
	 * entries). The identity mapping is handled by pointing two PGD
	 * entries to the first kernel PMD.
	 *
	 * Note the upper half of each PMD or PTE are always zero at
	 * this stage.
	 */

J
Joe Korty 已提交
189
#define KPMDS (((-__PAGE_OFFSET) >> 30) & 3) /* Number of kernel PMDs */
190 191 192 193

	xorl %ebx,%ebx				/* %ebx is kept at zero */

	movl $pa(pg0), %edi
194
	movl %edi, pa(init_pg_tables_start)
195
	movl $pa(swapper_pg_pmd), %edx
196
	movl $PTE_IDENT_ATTR, %eax
197
10:
198
	leal PDE_IDENT_ATTR(%edi),%ecx		/* Create PMD entry */
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
	movl %ecx,(%edx)			/* Store PMD entry */
						/* Upper half already zero */
	addl $8,%edx
	movl $512,%ecx
11:
	stosl
	xchgl %eax,%ebx
	stosl
	xchgl %eax,%ebx
	addl $0x1000,%eax
	loop 11b

	/*
	 * End condition: we must map up to and including INIT_MAP_BEYOND_END
	 * bytes beyond the end of our own page tables.
	 */
215
	leal (INIT_MAP_BEYOND_END+PTE_IDENT_ATTR)(%edi),%ebp
216 217 218 219
	cmpl %ebp,%eax
	jb 10b
1:
	movl %edi,pa(init_pg_tables_end)
220 221
	shrl $12, %eax
	movl %eax, pa(max_pfn_mapped)
222 223

	/* Do early initialization of the fixmap area */
224
	movl $pa(swapper_pg_fixmap)+PDE_IDENT_ATTR,%eax
225 226 227 228 229 230
	movl %eax,pa(swapper_pg_pmd+0x1000*KPMDS-8)
#else	/* Not PAE */

page_pde_offset = (__PAGE_OFFSET >> 20);

	movl $pa(pg0), %edi
231
	movl %edi, pa(init_pg_tables_start)
232
	movl $pa(swapper_pg_dir), %edx
233
	movl $PTE_IDENT_ATTR, %eax
L
Linus Torvalds 已提交
234
10:
235
	leal PDE_IDENT_ATTR(%edi),%ecx		/* Create PDE entry */
L
Linus Torvalds 已提交
236 237 238 239 240 241 242 243
	movl %ecx,(%edx)			/* Store identity PDE entry */
	movl %ecx,page_pde_offset(%edx)		/* Store kernel PDE entry */
	addl $4,%edx
	movl $1024, %ecx
11:
	stosl
	addl $0x1000,%eax
	loop 11b
244 245 246 247 248
	/*
	 * End condition: we must map up to and including INIT_MAP_BEYOND_END
	 * bytes beyond the end of our own page tables; the +0x007 is
	 * the attribute bits
	 */
249
	leal (INIT_MAP_BEYOND_END+PTE_IDENT_ATTR)(%edi),%ebp
L
Linus Torvalds 已提交
250 251
	cmpl %ebp,%eax
	jb 10b
252
	movl %edi,pa(init_pg_tables_end)
253 254
	shrl $12, %eax
	movl %eax, pa(max_pfn_mapped)
255

256
	/* Do early initialization of the fixmap area */
257
	movl $pa(swapper_pg_fixmap)+PDE_IDENT_ATTR,%eax
258 259
	movl %eax,pa(swapper_pg_dir+0xffc)
#endif
L
Linus Torvalds 已提交
260 261 262 263
	jmp 3f
/*
 * Non-boot CPU entry point; entered from trampoline.S
 * We can't lgdt here, because lgdt itself uses a data segment, but
264
 * we know the trampoline has already loaded the boot_gdt for us.
265 266 267
 *
 * If cpu hotplug is not supported then this code can go in init section
 * which will be freed later
L
Linus Torvalds 已提交
268
 */
269

A
Andi Kleen 已提交
270
#ifndef CONFIG_HOTPLUG_CPU
271 272 273 274
.section .init.text,"ax",@progbits
#endif

#ifdef CONFIG_SMP
L
Linus Torvalds 已提交
275 276 277 278 279 280 281
ENTRY(startup_32_smp)
	cld
	movl $(__BOOT_DS),%eax
	movl %eax,%ds
	movl %eax,%es
	movl %eax,%fs
	movl %eax,%gs
282 283
#endif /* CONFIG_SMP */
3:
L
Linus Torvalds 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298

/*
 *	New page tables may be in 4Mbyte page mode and may
 *	be using the global pages. 
 *
 *	NOTE! If we are on a 486 we may have no cr4 at all!
 *	So we do not try to touch it unless we really have
 *	some bits in it to set.  This won't work if the BSP
 *	implements cr4 but this AP does not -- very unlikely
 *	but be warned!  The same applies to the pse feature
 *	if not equally supported. --macro
 *
 *	NOTE! We have to correct for the fact that we're
 *	not yet offset PAGE_OFFSET..
 */
299
#define cr4_bits pa(mmu_cr4_features)
L
Linus Torvalds 已提交
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
	movl cr4_bits,%edx
	andl %edx,%edx
	jz 6f
	movl %cr4,%eax		# Turn on paging options (PSE,PAE,..)
	orl %edx,%eax
	movl %eax,%cr4

	btl $5, %eax		# check if PAE is enabled
	jnc 6f

	/* Check if extended functions are implemented */
	movl $0x80000000, %eax
	cpuid
	cmpl $0x80000000, %eax
	jbe 6f
	mov $0x80000001, %eax
	cpuid
	/* Execute Disable bit supported? */
	btl $20, %edx
	jnc 6f

	/* Setup EFER (Extended Feature Enable Register) */
	movl $0xc0000080, %ecx
	rdmsr

	btsl $11, %eax
	/* Make changes effective */
	wrmsr

6:

/*
 * Enable paging
 */
334
	movl $pa(swapper_pg_dir),%eax
L
Linus Torvalds 已提交
335 336
	movl %eax,%cr3		/* set the page table pointer.. */
	movl %cr0,%eax
337
	orl  $X86_CR0_PG,%eax
L
Linus Torvalds 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
	movl %eax,%cr0		/* ..and set paging (PG) bit */
	ljmp $__BOOT_CS,$1f	/* Clear prefetch and normalize %eip */
1:
	/* Set up the stack pointer */
	lss stack_start,%esp

/*
 * Initialize eflags.  Some BIOS's leave bits like NT set.  This would
 * confuse the debugger if this code is traced.
 * XXX - best to initialize before switching to protected mode.
 */
	pushl $0
	popfl

#ifdef CONFIG_SMP
353
	cmpb $0, ready
L
Linus Torvalds 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
	jz  1f				/* Initial CPU cleans BSS */
	jmp checkCPUtype
1:
#endif /* CONFIG_SMP */

/*
 * start system 32-bit setup. We need to re-do some of the things done
 * in 16-bit mode for the "real" operations.
 */
	call setup_idt

checkCPUtype:

	movl $-1,X86_CPUID		#  -1 for no CPUID initially

/* check if it is 486 or 386. */
/*
 * XXX - this does a lot of unnecessary setup.  Alignment checks don't
 * apply at our cpl of 0 and the stack ought to be aligned already, and
 * we don't need to preserve eflags.
 */

	movb $3,X86		# at least 386
	pushfl			# push EFLAGS
	popl %eax		# get EFLAGS
	movl %eax,%ecx		# save original EFLAGS
	xorl $0x240000,%eax	# flip AC and ID bits in EFLAGS
	pushl %eax		# copy to EFLAGS
	popfl			# set EFLAGS
	pushfl			# get new EFLAGS
	popl %eax		# put it in eax
	xorl %ecx,%eax		# change in flags
	pushl %ecx		# restore original EFLAGS
	popfl
	testl $0x40000,%eax	# check if AC bit changed
	je is386

	movb $4,X86		# at least 486
	testl $0x200000,%eax	# check if ID bit changed
	je is486

	/* get vendor info */
	xorl %eax,%eax			# call CPUID with 0 -> return vendor ID
	cpuid
	movl %eax,X86_CPUID		# save CPUID level
	movl %ebx,X86_VENDOR_ID		# lo 4 chars
	movl %edx,X86_VENDOR_ID+4	# next 4 chars
	movl %ecx,X86_VENDOR_ID+8	# last 4 chars

	orl %eax,%eax			# do we have processor info as well?
	je is486

	movl $1,%eax		# Use the CPUID instruction to get CPU type
	cpuid
	movb %al,%cl		# save reg for future use
	andb $0x0f,%ah		# mask processor family
	movb %ah,X86
	andb $0xf0,%al		# mask model
	shrb $4,%al
	movb %al,X86_MODEL
	andb $0x0f,%cl		# mask mask revision
	movb %cl,X86_MASK
	movl %edx,X86_CAPABILITY

is486:	movl $0x50022,%ecx	# set AM, WP, NE and MP
	jmp 2f

is386:	movl $2,%ecx		# set MP
2:	movl %cr0,%eax
	andl $0x80000011,%eax	# Save PG,PE,ET
	orl %ecx,%eax
	movl %eax,%cr0

	call check_x87
428
	lgdt early_gdt_descr
L
Linus Torvalds 已提交
429 430 431 432 433 434 435 436 437
	lidt idt_descr
	ljmp $(__KERNEL_CS),$1f
1:	movl $(__KERNEL_DS),%eax	# reload all the segment registers
	movl %eax,%ss			# after changing gdt.

	movl $(__USER_DS),%eax		# DS/ES contains default USER segment
	movl %eax,%ds
	movl %eax,%es

438 439 440
	movl $(__KERNEL_PERCPU), %eax
	movl %eax,%fs			# set this cpu's percpu

441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
#ifdef CONFIG_CC_STACKPROTECTOR
	/*
	 * The linker can't handle this by relocation.  Manually set
	 * base address in stack canary segment descriptor.
	 */
	cmpb $0,ready
	jne 1f
	movl $per_cpu__gdt_page,%eax
	movl $per_cpu__stack_canary,%ecx
	movw %cx, 8 * GDT_ENTRY_STACK_CANARY + 2(%eax)
	shrl $16, %ecx
	movb %cl, 8 * GDT_ENTRY_STACK_CANARY + 4(%eax)
	movb %ch, 8 * GDT_ENTRY_STACK_CANARY + 7(%eax)
1:
#endif
	movl $(__KERNEL_STACK_CANARY),%eax
457
	movl %eax,%gs
458 459

	xorl %eax,%eax			# Clear LDT
L
Linus Torvalds 已提交
460
	lldt %ax
461

L
Linus Torvalds 已提交
462
	cld			# gcc2 wants the direction flag cleared at all times
463
	pushl $0		# fake return address for unwinder
L
Linus Torvalds 已提交
464
#ifdef CONFIG_SMP
465 466
	movb ready, %cl
	movb $1, ready
467
	cmpb $0,%cl		# the first CPU calls start_kernel
468
	je   1f
469
	movl (stack_start), %esp
470
1:
L
Linus Torvalds 已提交
471
#endif /* CONFIG_SMP */
G
Glauber Costa 已提交
472
	jmp *(initial_code)
L
Linus Torvalds 已提交
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518

/*
 * We depend on ET to be correct. This checks for 287/387.
 */
check_x87:
	movb $0,X86_HARD_MATH
	clts
	fninit
	fstsw %ax
	cmpb $0,%al
	je 1f
	movl %cr0,%eax		/* no coprocessor: have to set bits */
	xorl $4,%eax		/* set EM */
	movl %eax,%cr0
	ret
	ALIGN
1:	movb $1,X86_HARD_MATH
	.byte 0xDB,0xE4		/* fsetpm for 287, ignored by 387 */
	ret

/*
 *  setup_idt
 *
 *  sets up a idt with 256 entries pointing to
 *  ignore_int, interrupt gates. It doesn't actually load
 *  idt - that can be done only after paging has been enabled
 *  and the kernel moved to PAGE_OFFSET. Interrupts
 *  are enabled elsewhere, when we can be relatively
 *  sure everything is ok.
 *
 *  Warning: %esi is live across this function.
 */
setup_idt:
	lea ignore_int,%edx
	movl $(__KERNEL_CS << 16),%eax
	movw %dx,%ax		/* selector = 0x0010 = cs */
	movw $0x8E00,%dx	/* interrupt gate - dpl=0, present */

	lea idt_table,%edi
	mov $256,%ecx
rp_sidt:
	movl %eax,(%edi)
	movl %edx,4(%edi)
	addl $8,%edi
	dec %ecx
	jne rp_sidt
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534

.macro	set_early_handler handler,trapno
	lea \handler,%edx
	movl $(__KERNEL_CS << 16),%eax
	movw %dx,%ax
	movw $0x8E00,%dx	/* interrupt gate - dpl=0, present */
	lea idt_table,%edi
	movl %eax,8*\trapno(%edi)
	movl %edx,8*\trapno+4(%edi)
.endm

	set_early_handler handler=early_divide_err,trapno=0
	set_early_handler handler=early_illegal_opcode,trapno=6
	set_early_handler handler=early_protection_fault,trapno=13
	set_early_handler handler=early_page_fault,trapno=14

L
Linus Torvalds 已提交
535 536
	ret

537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
early_divide_err:
	xor %edx,%edx
	pushl $0	/* fake errcode */
	jmp early_fault

early_illegal_opcode:
	movl $6,%edx
	pushl $0	/* fake errcode */
	jmp early_fault

early_protection_fault:
	movl $13,%edx
	jmp early_fault

early_page_fault:
	movl $14,%edx
	jmp early_fault

early_fault:
	cld
#ifdef CONFIG_PRINTK
I
Ingo Molnar 已提交
558
	pusha
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
	movl $(__KERNEL_DS),%eax
	movl %eax,%ds
	movl %eax,%es
	cmpl $2,early_recursion_flag
	je hlt_loop
	incl early_recursion_flag
	movl %cr2,%eax
	pushl %eax
	pushl %edx		/* trapno */
	pushl $fault_msg
#ifdef CONFIG_EARLY_PRINTK
	call early_printk
#else
	call printk
#endif
#endif
575
	call dump_stack
576 577 578 579
hlt_loop:
	hlt
	jmp hlt_loop

L
Linus Torvalds 已提交
580 581 582 583
/* This is the default interrupt "handler" :-) */
	ALIGN
ignore_int:
	cld
M
Matt Mackall 已提交
584
#ifdef CONFIG_PRINTK
L
Linus Torvalds 已提交
585 586 587 588 589 590 591 592
	pushl %eax
	pushl %ecx
	pushl %edx
	pushl %es
	pushl %ds
	movl $(__KERNEL_DS),%eax
	movl %eax,%ds
	movl %eax,%es
593 594 595
	cmpl $2,early_recursion_flag
	je hlt_loop
	incl early_recursion_flag
L
Linus Torvalds 已提交
596 597 598 599 600
	pushl 16(%esp)
	pushl 24(%esp)
	pushl 32(%esp)
	pushl 40(%esp)
	pushl $int_msg
601 602 603
#ifdef CONFIG_EARLY_PRINTK
	call early_printk
#else
L
Linus Torvalds 已提交
604
	call printk
605
#endif
L
Linus Torvalds 已提交
606 607 608 609 610 611
	addl $(5*4),%esp
	popl %ds
	popl %es
	popl %edx
	popl %ecx
	popl %eax
M
Matt Mackall 已提交
612
#endif
L
Linus Torvalds 已提交
613 614
	iret

T
Thomas Gleixner 已提交
615 616 617 618 619
.section .cpuinit.data,"wa"
.align 4
ENTRY(initial_code)
	.long i386_start_kernel

620
.section .text
L
Linus Torvalds 已提交
621 622 623 624 625 626 627 628 629
/*
 * Real beginning of normal "text" segment
 */
ENTRY(stext)
ENTRY(_stext)

/*
 * BSS section
 */
630 631
.section ".bss.page_aligned","wa"
	.align PAGE_SIZE_asm
632
#ifdef CONFIG_X86_PAE
633
swapper_pg_pmd:
634 635
	.fill 1024*KPMDS,4,0
#else
L
Linus Torvalds 已提交
636 637
ENTRY(swapper_pg_dir)
	.fill 1024,4,0
638
#endif
639
swapper_pg_fixmap:
E
Eric W. Biderman 已提交
640
	.fill 1024,4,0
L
Linus Torvalds 已提交
641 642 643 644 645
ENTRY(empty_zero_page)
	.fill 4096,1,0
/*
 * This starts the data section.
 */
646 647 648 649 650
#ifdef CONFIG_X86_PAE
.section ".data.page_aligned","wa"
	/* Page-aligned for the benefit of paravirt? */
	.align PAGE_SIZE_asm
ENTRY(swapper_pg_dir)
651
	.long	pa(swapper_pg_pmd+PGD_IDENT_ATTR),0	/* low identity map */
652
# if KPMDS == 3
653 654 655
	.long	pa(swapper_pg_pmd+PGD_IDENT_ATTR),0
	.long	pa(swapper_pg_pmd+PGD_IDENT_ATTR+0x1000),0
	.long	pa(swapper_pg_pmd+PGD_IDENT_ATTR+0x2000),0
656 657
# elif KPMDS == 2
	.long	0,0
658 659
	.long	pa(swapper_pg_pmd+PGD_IDENT_ATTR),0
	.long	pa(swapper_pg_pmd+PGD_IDENT_ATTR+0x1000),0
660 661 662
# elif KPMDS == 1
	.long	0,0
	.long	0,0
663
	.long	pa(swapper_pg_pmd+PGD_IDENT_ATTR),0
664 665 666 667 668 669
# else
#  error "Kernel PMDs should be 1, 2 or 3"
# endif
	.align PAGE_SIZE_asm		/* needs to be page-sized too */
#endif

L
Linus Torvalds 已提交
670 671 672 673 674 675 676
.data
ENTRY(stack_start)
	.long init_thread_union+THREAD_SIZE
	.long __BOOT_DS

ready:	.byte 0

677 678 679
early_recursion_flag:
	.long 0

L
Linus Torvalds 已提交
680 681 682
int_msg:
	.asciz "Unknown interrupt or fault at EIP %p %p %p\n"

683
fault_msg:
V
Vegard Nossum 已提交
684 685 686 687 688 689 690 691 692 693
/* fault info: */
	.ascii "BUG: Int %d: CR2 %p\n"
/* pusha regs: */
	.ascii "     EDI %p  ESI %p  EBP %p  ESP %p\n"
	.ascii "     EBX %p  EDX %p  ECX %p  EAX %p\n"
/* fault frame: */
	.ascii "     err %p  EIP %p   CS %p  flg %p\n"
	.ascii "Stack: %p %p %p %p %p %p %p %p\n"
	.ascii "       %p %p %p %p %p %p %p %p\n"
	.asciz "       %p %p %p %p %p %p %p %p\n"
694

T
Thomas Gleixner 已提交
695
#include "../../x86/xen/xen-head.S"
696

L
Linus Torvalds 已提交
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
/*
 * The IDT and GDT 'descriptors' are a strange 48-bit object
 * only used by the lidt and lgdt instructions. They are not
 * like usual segment descriptors - they consist of a 16-bit
 * segment size, and 32-bit linear address value:
 */

.globl boot_gdt_descr
.globl idt_descr

	ALIGN
# early boot GDT descriptor (must use 1:1 address mapping)
	.word 0				# 32 bit align gdt_desc.address
boot_gdt_descr:
	.word __BOOT_DS+7
712
	.long boot_gdt - __PAGE_OFFSET
L
Linus Torvalds 已提交
713 714 715 716 717 718 719 720

	.word 0				# 32-bit align idt_desc.address
idt_descr:
	.word IDT_ENTRIES*8-1		# idt contains 256 entries
	.long idt_table

# boot GDT descriptor (later on used by CPU#0):
	.word 0				# 32 bit align gdt_desc.address
721
ENTRY(early_gdt_descr)
L
Linus Torvalds 已提交
722
	.word GDT_ENTRIES*8-1
723
	.long per_cpu__gdt_page		/* Overwritten for secondary CPUs */
L
Linus Torvalds 已提交
724 725

/*
726
 * The boot_gdt must mirror the equivalent in setup.S and is
L
Linus Torvalds 已提交
727 728 729
 * used only for booting.
 */
	.align L1_CACHE_BYTES
730
ENTRY(boot_gdt)
L
Linus Torvalds 已提交
731 732 733
	.fill GDT_ENTRY_BOOT_CS,8,0
	.quad 0x00cf9a000000ffff	/* kernel 4GB code at 0x00000000 */
	.quad 0x00cf92000000ffff	/* kernel 4GB data at 0x00000000 */