patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / arch / i386 / kernel / head.S
1 /*
2  *  linux/arch/i386/kernel/head.S -- the 32-bit startup code.
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  *
6  *  Enhanced CPU detection and feature setting code by Mike Jagdis
7  *  and Martin Mares, November 1997.
8  */
9
10 .text
11 #include <linux/config.h>
12 #include <linux/threads.h>
13 #include <linux/linkage.h>
14 #include <asm/segment.h>
15 #include <asm/page.h>
16 #include <asm/pgtable.h>
17 #include <asm/desc.h>
18 #include <asm/cache.h>
19 #include <asm/thread_info.h>
20 #include <asm/asm_offsets.h>
21 #include <asm/setup.h>
22
23 /*
24  * References to members of the new_cpu_data structure.
25  */
26
27 #define X86             new_cpu_data+CPUINFO_x86
28 #define X86_VENDOR      new_cpu_data+CPUINFO_x86_vendor
29 #define X86_MODEL       new_cpu_data+CPUINFO_x86_model
30 #define X86_MASK        new_cpu_data+CPUINFO_x86_mask
31 #define X86_HARD_MATH   new_cpu_data+CPUINFO_hard_math
32 #define X86_CPUID       new_cpu_data+CPUINFO_cpuid_level
33 #define X86_CAPABILITY  new_cpu_data+CPUINFO_x86_capability
34 #define X86_VENDOR_ID   new_cpu_data+CPUINFO_x86_vendor_id
35
36 /*
37  * This is how much memory *in addition to the memory covered up to
38  * and including _end* we need mapped initially.  We need one bit for
39  * each possible page, but only in low memory, which means
40  * 2^32/4096/8 = 128K worst case (4G/4G split.)
41  *
42  * Modulo rounding, each megabyte assigned here requires a kilobyte of
43  * memory, which is currently unreclaimed.
44  *
45  * This should be a multiple of a page.
46  */
47 #define INIT_MAP_BEYOND_END     (128*1024)
48
49
50 /*
51  * 32-bit kernel entrypoint; only used by the boot CPU.  On entry,
52  * %esi points to the real-mode code as a 32-bit pointer.
53  * CS and DS must be 4 GB flat segments, but we don't depend on
54  * any particular GDT layout, because we load our own as soon as we
55  * can.
56  */
57 ENTRY(startup_32)
58
59 /*
60  * Set segments to known values.
61  */
62         cld
63         lgdt boot_gdt_descr - __PAGE_OFFSET
64         movl $(__BOOT_DS),%eax
65         movl %eax,%ds
66         movl %eax,%es
67         movl %eax,%fs
68         movl %eax,%gs
69
70 /*
71  * Clear BSS first so that there are no surprises...
72  * No need to cld as DF is already clear from cld above...
73  */
74         xorl %eax,%eax
75         movl $__bss_start - __PAGE_OFFSET,%edi
76         movl $__bss_stop - __PAGE_OFFSET,%ecx
77         subl %edi,%ecx
78         shrl $2,%ecx
79         rep ; stosl
80
81 /*
82  * Initialize page tables.  This creates a PDE and a set of page
83  * tables, which are located immediately beyond _end.  The variable
84  * init_pg_tables_end is set up to point to the first "safe" location.
85  * Mappings are created both at virtual address 0 (identity mapping)
86  * and PAGE_OFFSET for up to _end+sizeof(page tables)+INIT_MAP_BEYOND_END.
87  *
88  * Warning: don't use %esi or the stack in this code.  However, %esp
89  * can be used as a GPR if you really need it...
90  */
91 page_pde_offset = (__PAGE_OFFSET >> 20);
92
93         movl $(pg0 - __PAGE_OFFSET), %edi
94         movl $(swapper_pg_dir - __PAGE_OFFSET), %edx
95         movl $0x007, %eax                       /* 0x007 = PRESENT+RW+USER */
96 10:
97         leal 0x007(%edi),%ecx                   /* Create PDE entry */
98         movl %ecx,(%edx)                        /* Store identity PDE entry */
99         movl %ecx,page_pde_offset(%edx)         /* Store kernel PDE entry */
100         addl $4,%edx
101         movl $1024, %ecx
102 11:
103         stosl
104         addl $0x1000,%eax
105         loop 11b
106         /* End condition: we must map up to and including INIT_MAP_BEYOND_END */
107         /* bytes beyond the end of our own page tables; the +0x007 is the attribute bits */
108         leal (INIT_MAP_BEYOND_END+0x007)(%edi),%ebp
109         cmpl %ebp,%eax
110         jb 10b
111         movl %edi,(init_pg_tables_end - __PAGE_OFFSET)
112
113 #ifdef CONFIG_SMP
114         xorl %ebx,%ebx                          /* This is the boot CPU (BSP) */
115         jmp 3f
116
117 /*
118  * Non-boot CPU entry point; entered from trampoline.S
119  * We can't lgdt here, because lgdt itself uses a data segment, but
120  * we know the trampoline has already loaded the boot_gdt_table GDT
121  * for us.
122  */
123 ENTRY(startup_32_smp)
124         cld
125         movl $(__BOOT_DS),%eax
126         movl %eax,%ds
127         movl %eax,%es
128         movl %eax,%fs
129         movl %eax,%gs
130
131         xorl %ebx,%ebx
132         incl %ebx                               /* This is a secondary processor (AP) */
133
134 /*
135  *      New page tables may be in 4Mbyte page mode and may
136  *      be using the global pages. 
137  *
138  *      NOTE! If we are on a 486 we may have no cr4 at all!
139  *      So we do not try to touch it unless we really have
140  *      some bits in it to set.  This won't work if the BSP
141  *      implements cr4 but this AP does not -- very unlikely
142  *      but be warned!  The same applies to the pse feature
143  *      if not equally supported. --macro
144  *
145  *      NOTE! We have to correct for the fact that we're
146  *      not yet offset PAGE_OFFSET..
147  */
148 #define cr4_bits mmu_cr4_features-__PAGE_OFFSET
149         movl cr4_bits,%edx
150         andl %edx,%edx
151         jz 3f
152         movl %cr4,%eax          # Turn on paging options (PSE,PAE,..)
153         orl %edx,%eax
154         movl %eax,%cr4
155
156 3:
157 #endif /* CONFIG_SMP */
158
159 /*
160  * Enable paging
161  */
162         movl $swapper_pg_dir-__PAGE_OFFSET,%eax
163         movl %eax,%cr3          /* set the page table pointer.. */
164         movl %cr0,%eax
165         orl $0x80000000,%eax
166         movl %eax,%cr0          /* ..and set paging (PG) bit */
167         ljmp $__BOOT_CS,$1f     /* Clear prefetch and normalize %eip */
168 1:
169         /* Set up the stack pointer */
170         lss stack_start,%esp
171
172 /*
173  * Initialize eflags.  Some BIOS's leave bits like NT set.  This would
174  * confuse the debugger if this code is traced.
175  * XXX - best to initialize before switching to protected mode.
176  */
177         pushl $0
178         popfl
179
180 #ifdef CONFIG_SMP
181         andl %ebx,%ebx
182         jz  1f                          /* Initial CPU cleans BSS */
183         jmp checkCPUtype
184 1:
185 #endif /* CONFIG_SMP */
186
187 /*
188  * start system 32-bit setup. We need to re-do some of the things done
189  * in 16-bit mode for the "real" operations.
190  */
191         call setup_idt
192
193 /*
194  * Copy bootup parameters out of the way.
195  * Note: %esi still has the pointer to the real-mode data.
196  */
197         movl $boot_params,%edi
198         movl $(PARAM_SIZE/4),%ecx
199         cld
200         rep
201         movsl
202         movl boot_params+NEW_CL_POINTER,%esi
203         andl %esi,%esi
204         jnz 2f                  # New command line protocol
205         cmpw $(OLD_CL_MAGIC),OLD_CL_MAGIC_ADDR
206         jne 1f
207         movzwl OLD_CL_OFFSET,%esi
208         addl $(OLD_CL_BASE_ADDR),%esi
209 2:
210         movl $saved_command_line,%edi
211         movl $(COMMAND_LINE_SIZE/4),%ecx
212         rep
213         movsl
214 1:
215 checkCPUtype:
216
217         movl $-1,X86_CPUID              #  -1 for no CPUID initially
218
219 /* check if it is 486 or 386. */
220 /*
221  * XXX - this does a lot of unnecessary setup.  Alignment checks don't
222  * apply at our cpl of 0 and the stack ought to be aligned already, and
223  * we don't need to preserve eflags.
224  */
225
226         movb $3,X86             # at least 386
227         pushfl                  # push EFLAGS
228         popl %eax               # get EFLAGS
229         movl %eax,%ecx          # save original EFLAGS
230         xorl $0x240000,%eax     # flip AC and ID bits in EFLAGS
231         pushl %eax              # copy to EFLAGS
232         popfl                   # set EFLAGS
233         pushfl                  # get new EFLAGS
234         popl %eax               # put it in eax
235         xorl %ecx,%eax          # change in flags
236         pushl %ecx              # restore original EFLAGS
237         popfl
238         testl $0x40000,%eax     # check if AC bit changed
239         je is386
240
241         movb $4,X86             # at least 486
242         testl $0x200000,%eax    # check if ID bit changed
243         je is486
244
245         /* get vendor info */
246         xorl %eax,%eax                  # call CPUID with 0 -> return vendor ID
247         cpuid
248         movl %eax,X86_CPUID             # save CPUID level
249         movl %ebx,X86_VENDOR_ID         # lo 4 chars
250         movl %edx,X86_VENDOR_ID+4       # next 4 chars
251         movl %ecx,X86_VENDOR_ID+8       # last 4 chars
252
253         orl %eax,%eax                   # do we have processor info as well?
254         je is486
255
256         movl $1,%eax            # Use the CPUID instruction to get CPU type
257         cpuid
258         movb %al,%cl            # save reg for future use
259         andb $0x0f,%ah          # mask processor family
260         movb %ah,X86
261         andb $0xf0,%al          # mask model
262         shrb $4,%al
263         movb %al,X86_MODEL
264         andb $0x0f,%cl          # mask mask revision
265         movb %cl,X86_MASK
266         movl %edx,X86_CAPABILITY
267
268 is486:  movl $0x50022,%ecx      # set AM, WP, NE and MP
269         jmp 2f
270
271 is386:  movl $2,%ecx            # set MP
272 2:      movl %cr0,%eax
273         andl $0x80000011,%eax   # Save PG,PE,ET
274         orl %ecx,%eax
275         movl %eax,%cr0
276
277         call check_x87
278         incb ready
279         lgdt cpu_gdt_descr
280         lidt idt_descr
281         ljmp $(__KERNEL_CS),$1f
282 1:      movl $(__KERNEL_DS),%eax        # reload all the segment registers
283         movl %eax,%ss                   # after changing gdt.
284
285         movl $(__USER_DS),%eax          # DS/ES contains default USER segment
286         movl %eax,%ds
287         movl %eax,%es
288
289         xorl %eax,%eax                  # Clear FS/GS and LDT
290         movl %eax,%fs
291         movl %eax,%gs
292         lldt %ax
293         cld                     # gcc2 wants the direction flag cleared at all times
294 #ifdef CONFIG_SMP
295         movb ready, %cl 
296         cmpb $1,%cl
297         je 1f                   # the first CPU calls start_kernel
298                                 # all other CPUs call initialize_secondary
299         call initialize_secondary
300         jmp L6
301 1:
302 #endif /* CONFIG_SMP */
303         call start_kernel
304 L6:
305         jmp L6                  # main should never return here, but
306                                 # just in case, we know what happens.
307
308 /*
309  * We depend on ET to be correct. This checks for 287/387.
310  */
311 check_x87:
312         movb $0,X86_HARD_MATH
313         clts
314         fninit
315         fstsw %ax
316         cmpb $0,%al
317         je 1f
318         movl %cr0,%eax          /* no coprocessor: have to set bits */
319         xorl $4,%eax            /* set EM */
320         movl %eax,%cr0
321         ret
322         ALIGN
323 1:      movb $1,X86_HARD_MATH
324         .byte 0xDB,0xE4         /* fsetpm for 287, ignored by 387 */
325         ret
326
327 /*
328  *  setup_idt
329  *
330  *  sets up a idt with 256 entries pointing to
331  *  ignore_int, interrupt gates. It doesn't actually load
332  *  idt - that can be done only after paging has been enabled
333  *  and the kernel moved to PAGE_OFFSET. Interrupts
334  *  are enabled elsewhere, when we can be relatively
335  *  sure everything is ok.
336  *
337  *  Warning: %esi is live across this function.
338  */
339 setup_idt:
340         lea ignore_int,%edx
341         movl $(__KERNEL_CS << 16),%eax
342         movw %dx,%ax            /* selector = 0x0010 = cs */
343         movw $0x8E00,%dx        /* interrupt gate - dpl=0, present */
344
345         lea idt_table,%edi
346         mov $256,%ecx
347 rp_sidt:
348         movl %eax,(%edi)
349         movl %edx,4(%edi)
350         addl $8,%edi
351         dec %ecx
352         jne rp_sidt
353         ret
354
355 /* This is the default interrupt "handler" :-) */
356         ALIGN
357 ignore_int:
358         cld
359         pushl %eax
360         pushl %ecx
361         pushl %edx
362         pushl %es
363         pushl %ds
364         movl $(__KERNEL_DS),%eax
365         movl %eax,%ds
366         movl %eax,%es
367         pushl 16(%esp)
368         pushl 24(%esp)
369         pushl 32(%esp)
370         pushl 40(%esp)
371         pushl $int_msg
372         call printk
373         addl $(5*4),%esp
374         popl %ds
375         popl %es
376         popl %edx
377         popl %ecx
378         popl %eax
379         iret
380
381 /*
382  * Real beginning of normal "text" segment
383  */
384 ENTRY(stext)
385 ENTRY(_stext)
386
387 /*
388  * BSS section
389  */
390 .section ".bss.page_aligned","w"
391 ENTRY(swapper_pg_dir)
392         .fill 1024,4,0
393 ENTRY(empty_zero_page)
394         .fill 4096,1,0
395
396 /*
397  * This starts the data section.
398  */
399 .data
400
401 ENTRY(stack_start)
402         .long init_thread_union+THREAD_SIZE
403         .long __BOOT_DS
404
405 ready:  .byte 0
406
407 int_msg:
408         .asciz "Unknown interrupt or fault at EIP %p %p %p\n"
409
410 /*
411  * The IDT and GDT 'descriptors' are a strange 48-bit object
412  * only used by the lidt and lgdt instructions. They are not
413  * like usual segment descriptors - they consist of a 16-bit
414  * segment size, and 32-bit linear address value:
415  */
416
417 .globl boot_gdt_descr
418 .globl idt_descr
419 .globl cpu_gdt_descr
420
421         ALIGN
422 # early boot GDT descriptor (must use 1:1 address mapping)
423         .word 0                         # 32 bit align gdt_desc.address
424 boot_gdt_descr:
425         .word __BOOT_DS+7
426         .long boot_gdt_table - __PAGE_OFFSET
427
428         .word 0                         # 32-bit align idt_desc.address
429 idt_descr:
430         .word IDT_ENTRIES*8-1           # idt contains 256 entries
431         .long idt_table
432
433 # boot GDT descriptor (later on used by CPU#0):
434         .word 0                         # 32 bit align gdt_desc.address
435 cpu_gdt_descr:
436         .word GDT_ENTRIES*8-1
437         .long cpu_gdt_table
438
439         .fill NR_CPUS-1,8,0             # space for the other GDT descriptors
440
441 /*
442  * The boot_gdt_table must mirror the equivalent in setup.S and is
443  * used only for booting.
444  */
445         .align L1_CACHE_BYTES
446 ENTRY(boot_gdt_table)
447         .fill GDT_ENTRY_BOOT_CS,8,0
448         .quad 0x00cf9a000000ffff        /* kernel 4GB code at 0x00000000 */
449         .quad 0x00cf92000000ffff        /* kernel 4GB data at 0x00000000 */
450
451 /*
452  * The Global Descriptor Table contains 28 quadwords, per-CPU.
453  */
454         .align PAGE_SIZE_asm
455 ENTRY(cpu_gdt_table)
456         .quad 0x0000000000000000        /* NULL descriptor */
457         .quad 0x0000000000000000        /* 0x0b reserved */
458         .quad 0x0000000000000000        /* 0x13 reserved */
459         .quad 0x0000000000000000        /* 0x1b reserved */
460         .quad 0x0000000000000000        /* 0x20 unused */
461         .quad 0x0000000000000000        /* 0x28 unused */
462         .quad 0x0000000000000000        /* 0x33 TLS entry 1 */
463         .quad 0x0000000000000000        /* 0x3b TLS entry 2 */
464         .quad 0x0000000000000000        /* 0x43 TLS entry 3 */
465         .quad 0x0000000000000000        /* 0x4b reserved */
466         .quad 0x0000000000000000        /* 0x53 reserved */
467         .quad 0x0000000000000000        /* 0x5b reserved */
468
469         .quad 0x00cf9a000000ffff        /* 0x60 kernel 4GB code at 0x00000000 */
470         .quad 0x00cf92000000ffff        /* 0x68 kernel 4GB data at 0x00000000 */
471         .quad 0x00cffa000000ffff        /* 0x73 user 4GB code at 0x00000000 */
472         .quad 0x00cff2000000ffff        /* 0x7b user 4GB data at 0x00000000 */
473
474         .quad 0x0000000000000000        /* 0x80 TSS descriptor */
475         .quad 0x0000000000000000        /* 0x88 LDT descriptor */
476
477         /* Segments used for calling PnP BIOS */
478         .quad 0x00c09a0000000000        /* 0x90 32-bit code */
479         .quad 0x00809a0000000000        /* 0x98 16-bit code */
480         .quad 0x0080920000000000        /* 0xa0 16-bit data */
481         .quad 0x0080920000000000        /* 0xa8 16-bit data */
482         .quad 0x0080920000000000        /* 0xb0 16-bit data */
483         /*
484          * The APM segments have byte granularity and their bases
485          * and limits are set at run time.
486          */
487         .quad 0x00409a0000000000        /* 0xb8 APM CS    code */
488         .quad 0x00009a0000000000        /* 0xc0 APM CS 16 code (16 bit) */
489         .quad 0x0040920000000000        /* 0xc8 APM DS    data */
490
491         .quad 0x0000000000000000        /* 0xd0 - unused */
492         .quad 0x0000000000000000        /* 0xd8 - unused */
493         .quad 0x0000000000000000        /* 0xe0 - unused */
494         .quad 0x0000000000000000        /* 0xe8 - unused */
495         .quad 0x0000000000000000        /* 0xf0 - unused */
496         .quad 0x0000000000000000        /* 0xf8 - GDT entry 31: double-fault TSS */
497
498 #ifdef CONFIG_SMP
499         .fill (NR_CPUS-1)*GDT_ENTRIES,8,0 /* other CPU's GDT */
500 #endif