Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / sys / i386 / i386 / locore.s
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * William Jolitz.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      from: @(#)locore.s      7.3 (Berkeley) 5/13/91
37  * $FreeBSD: src/sys/i386/i386/locore.s,v 1.132.2.10 2003/02/03 20:54:49 jhb Exp $
38  * $DragonFly: src/sys/i386/i386/Attic/locore.s,v 1.2 2003/06/17 04:28:35 dillon Exp $
39  *
40  *              originally from: locore.s, by William F. Jolitz
41  *
42  *              Substantially rewritten by David Greenman, Rod Grimes,
43  *                      Bruce Evans, Wolfgang Solfrank, Poul-Henning Kamp
44  *                      and many others.
45  */
46
47 #include "opt_bootp.h"
48 #include "opt_nfsroot.h"
49
50 #include <sys/syscall.h>
51 #include <sys/reboot.h>
52
53 #include <machine/asmacros.h>
54 #include <machine/cputypes.h>
55 #include <machine/psl.h>
56 #include <machine/pmap.h>
57 #include <machine/specialreg.h>
58
59 #include "assym.s"
60
61 /*
62  *      XXX
63  *
64  * Note: This version greatly munged to avoid various assembler errors
65  * that may be fixed in newer versions of gas. Perhaps newer versions
66  * will have more pleasant appearance.
67  */
68
69 /*
70  * PTmap is recursive pagemap at top of virtual address space.
71  * Within PTmap, the page directory can be found (third indirection).
72  */
73         .globl  _PTmap,_PTD,_PTDpde
74         .set    _PTmap,(PTDPTDI << PDRSHIFT)
75         .set    _PTD,_PTmap + (PTDPTDI * PAGE_SIZE)
76         .set    _PTDpde,_PTD + (PTDPTDI * PDESIZE)
77
78 /*
79  * APTmap, APTD is the alternate recursive pagemap.
80  * It's used when modifying another process's page tables.
81  */
82         .globl  _APTmap,_APTD,_APTDpde
83         .set    _APTmap,APTDPTDI << PDRSHIFT
84         .set    _APTD,_APTmap + (APTDPTDI * PAGE_SIZE)
85         .set    _APTDpde,_PTD + (APTDPTDI * PDESIZE)
86
87 /*
88  * Compiled KERNBASE location
89  */
90         .globl  _kernbase
91         .set    _kernbase,KERNBASE
92
93 /*
94  * Globals
95  */
96         .data
97         ALIGN_DATA              /* just to be sure */
98
99         .globl  HIDENAME(tmpstk)
100         .space  0x2000          /* space for tmpstk - temporary stack */
101 HIDENAME(tmpstk):
102
103         .globl  _boothowto,_bootdev
104
105         .globl  _cpu,_cpu_vendor,_cpu_id,_bootinfo
106         .globl  _cpu_high, _cpu_feature, _cpu_procinfo
107
108 _cpu:           .long   0                       /* are we 386, 386sx, or 486 */
109 _cpu_id:        .long   0                       /* stepping ID */
110 _cpu_high:      .long   0                       /* highest arg to CPUID */
111 _cpu_feature:   .long   0                       /* features */
112 _cpu_procinfo:  .long   0                       /* brand index / HTT info */
113 _cpu_vendor:    .space  20                      /* CPU origin code */
114 _bootinfo:      .space  BOOTINFO_SIZE           /* bootinfo that we can handle */
115
116 _KERNend:       .long   0                       /* phys addr end of kernel (just after bss) */
117 physfree:       .long   0                       /* phys addr of next free page */
118
119 #ifdef SMP
120                 .globl  _cpu0prvpage
121 cpu0pp:         .long   0                       /* phys addr cpu0 private pg */
122 _cpu0prvpage:   .long   0                       /* relocated version */
123
124                 .globl  _SMPpt
125 SMPptpa:        .long   0                       /* phys addr SMP page table */
126 _SMPpt:         .long   0                       /* relocated version */
127 #endif /* SMP */
128
129         .globl  _IdlePTD
130 _IdlePTD:       .long   0                       /* phys addr of kernel PTD */
131
132 #ifdef SMP
133         .globl  _KPTphys
134 #endif
135 _KPTphys:       .long   0                       /* phys addr of kernel page tables */
136
137         .globl  _proc0paddr
138 _proc0paddr:    .long   0                       /* address of proc 0 address space */
139 p0upa:          .long   0                       /* phys addr of proc0's UPAGES */
140
141 vm86phystk:     .long   0                       /* PA of vm86/bios stack */
142
143         .globl  _vm86paddr, _vm86pa
144 _vm86paddr:     .long   0                       /* address of vm86 region */
145 _vm86pa:        .long   0                       /* phys addr of vm86 region */
146
147 #ifdef BDE_DEBUGGER
148         .globl  _bdb_exists                     /* flag to indicate BDE debugger is present */
149 _bdb_exists:    .long   0
150 #endif
151
152 #ifdef PC98
153         .globl  _pc98_system_parameter
154 _pc98_system_parameter:
155         .space  0x240
156 #endif
157
158 /**********************************************************************
159  *
160  * Some handy macros
161  *
162  */
163
164 #define R(foo) ((foo)-KERNBASE)
165
166 #define ALLOCPAGES(foo) \
167         movl    R(physfree), %esi ; \
168         movl    $((foo)*PAGE_SIZE), %eax ; \
169         addl    %esi, %eax ; \
170         movl    %eax, R(physfree) ; \
171         movl    %esi, %edi ; \
172         movl    $((foo)*PAGE_SIZE),%ecx ; \
173         xorl    %eax,%eax ; \
174         cld ; \
175         rep ; \
176         stosb
177
178 /*
179  * fillkpt
180  *      eax = page frame address
181  *      ebx = index into page table
182  *      ecx = how many pages to map
183  *      base = base address of page dir/table
184  *      prot = protection bits
185  */
186 #define fillkpt(base, prot)               \
187         shll    $2,%ebx                 ; \
188         addl    base,%ebx               ; \
189         orl     $PG_V,%eax              ; \
190         orl     prot,%eax               ; \
191 1:      movl    %eax,(%ebx)             ; \
192         addl    $PAGE_SIZE,%eax         ; /* increment physical address */ \
193         addl    $4,%ebx                 ; /* next pte */ \
194         loop    1b
195
196 /*
197  * fillkptphys(prot)
198  *      eax = physical address
199  *      ecx = how many pages to map
200  *      prot = protection bits
201  */
202 #define fillkptphys(prot)                 \
203         movl    %eax, %ebx              ; \
204         shrl    $PAGE_SHIFT, %ebx       ; \
205         fillkpt(R(_KPTphys), prot)
206
207         .text
208 /**********************************************************************
209  *
210  * This is where the bootblocks start us, set the ball rolling...
211  *
212  */
213 NON_GPROF_ENTRY(btext)
214
215 #ifdef PC98
216         /* save SYSTEM PARAMETER for resume (NS/T or other) */
217         movl    $0xa1400,%esi
218         movl    $R(_pc98_system_parameter),%edi
219         movl    $0x0240,%ecx
220         cld
221         rep
222         movsb
223 #else   /* IBM-PC */
224 #ifdef BDE_DEBUGGER
225 #ifdef BIOS_STEALS_3K
226         cmpl    $0x0375c339,0x95504
227 #else
228         cmpl    $0x0375c339,0x96104     /* XXX - debugger signature */
229 #endif
230         jne     1f
231         movb    $1,R(_bdb_exists)
232 1:
233 #endif
234 /* Tell the bios to warmboot next time */
235         movw    $0x1234,0x472
236 #endif  /* PC98 */
237
238 /* Set up a real frame in case the double return in newboot is executed. */
239         pushl   %ebp
240         movl    %esp, %ebp
241
242 /* Don't trust what the BIOS gives for eflags. */
243         pushl   $PSL_KERNEL
244         popfl
245
246 /*
247  * Don't trust what the BIOS gives for %fs and %gs.  Trust the bootstrap
248  * to set %cs, %ds, %es and %ss.
249  */
250         mov     %ds, %ax
251         mov     %ax, %fs
252         mov     %ax, %gs
253
254         call    recover_bootinfo
255
256 /* Get onto a stack that we can trust. */
257 /*
258  * XXX this step is delayed in case recover_bootinfo needs to return via
259  * the old stack, but it need not be, since recover_bootinfo actually
260  * returns via the old frame.
261  */
262         movl    $R(HIDENAME(tmpstk)),%esp
263
264 #ifdef PC98
265         /* pc98_machine_type & M_EPSON_PC98 */
266         testb   $0x02,R(_pc98_system_parameter)+220
267         jz      3f
268         /* epson_machine_id <= 0x0b */
269         cmpb    $0x0b,R(_pc98_system_parameter)+224
270         ja      3f
271
272         /* count up memory */
273         movl    $0x100000,%eax          /* next, talley remaining memory */
274         movl    $0xFFF-0x100,%ecx
275 1:      movl    0(%eax),%ebx            /* save location to check */
276         movl    $0xa55a5aa5,0(%eax)     /* write test pattern */
277         cmpl    $0xa55a5aa5,0(%eax)     /* does not check yet for rollover */
278         jne     2f
279         movl    %ebx,0(%eax)            /* restore memory */
280         addl    $PAGE_SIZE,%eax
281         loop    1b
282 2:      subl    $0x100000,%eax
283         shrl    $17,%eax
284         movb    %al,R(_pc98_system_parameter)+1
285 3:
286
287         movw    R(_pc98_system_parameter+0x86),%ax
288         movw    %ax,R(_cpu_id)
289 #endif
290
291         call    identify_cpu
292
293 /* clear bss */
294 /*
295  * XXX this should be done a little earlier.
296  *
297  * XXX we don't check that there is memory for our bss and page tables
298  * before using it.
299  *
300  * XXX the boot program somewhat bogusly clears the bss.  We still have
301  * to do it in case we were unzipped by kzipboot.  Then the boot program
302  * only clears kzipboot's bss.
303  *
304  * XXX the gdt and idt are still somewhere in the boot program.  We
305  * depend on the convention that the boot program is below 1MB and we
306  * are above 1MB to keep the gdt and idt  away from the bss and page
307  * tables.  The idt is only used if BDE_DEBUGGER is enabled.
308  */
309         movl    $R(_end),%ecx
310         movl    $R(_edata),%edi
311         subl    %edi,%ecx
312         xorl    %eax,%eax
313         cld
314         rep
315         stosb
316
317         call    create_pagetables
318
319 /*
320  * If the CPU has support for VME, turn it on.
321  */ 
322         testl   $CPUID_VME, R(_cpu_feature)
323         jz      1f
324         movl    %cr4, %eax
325         orl     $CR4_VME, %eax
326         movl    %eax, %cr4
327 1:
328
329 #ifdef BDE_DEBUGGER
330 /*
331  * Adjust as much as possible for paging before enabling paging so that the
332  * adjustments can be traced.
333  */
334         call    bdb_prepare_paging
335 #endif
336
337 /* Now enable paging */
338         movl    R(_IdlePTD), %eax
339         movl    %eax,%cr3                       /* load ptd addr into mmu */
340         movl    %cr0,%eax                       /* get control word */
341         orl     $CR0_PE|CR0_PG,%eax             /* enable paging */
342         movl    %eax,%cr0                       /* and let's page NOW! */
343
344 #ifdef BDE_DEBUGGER
345 /*
346  * Complete the adjustments for paging so that we can keep tracing through
347  * initi386() after the low (physical) addresses for the gdt and idt become
348  * invalid.
349  */
350         call    bdb_commit_paging
351 #endif
352
353         pushl   $begin                          /* jump to high virtualized address */
354         ret
355
356 /* now running relocated at KERNBASE where the system is linked to run */
357 begin:
358         /* set up bootstrap stack */
359         movl    _proc0paddr,%esp        /* location of in-kernel pages */
360         addl    $UPAGES*PAGE_SIZE,%esp  /* bootstrap stack end location */
361         xorl    %eax,%eax                       /* mark end of frames */
362         movl    %eax,%ebp
363         movl    _proc0paddr,%eax
364         movl    _IdlePTD, %esi
365         movl    %esi,PCB_CR3(%eax)
366
367         testl   $CPUID_PGE, R(_cpu_feature)
368         jz      1f
369         movl    %cr4, %eax
370         orl     $CR4_PGE, %eax
371         movl    %eax, %cr4
372 1:
373
374         movl    physfree, %esi
375         pushl   %esi                            /* value of first for init386(first) */
376         call    _init386                        /* wire 386 chip for unix operation */
377         popl    %esi
378
379         call    _mi_startup                     /* autoconfiguration, mountroot etc */
380
381         hlt             /* never returns to here */
382
383 /*
384  * Signal trampoline, copied to top of user stack
385  */
386 NON_GPROF_ENTRY(sigcode)
387         call    *SIGF_HANDLER(%esp)             /* call signal handler */
388         lea     SIGF_UC(%esp),%eax              /* get ucontext_t */
389         pushl   %eax
390         testl   $PSL_VM,UC_EFLAGS(%eax)
391         jne     9f
392         movl    UC_GS(%eax),%gs                 /* restore %gs */
393 9:
394         movl    $SYS_sigreturn,%eax
395         pushl   %eax                            /* junk to fake return addr. */
396         int     $0x80                           /* enter kernel with args */
397 0:      jmp     0b
398
399         ALIGN_TEXT
400 _osigcode:
401         call    *SIGF_HANDLER(%esp)             /* call signal handler */
402         lea     SIGF_SC(%esp),%eax              /* get sigcontext */
403         pushl   %eax
404         testl   $PSL_VM,SC_PS(%eax)
405         jne     9f
406         movl    SC_GS(%eax),%gs                 /* restore %gs */
407 9:
408         movl    $0x01d516,SC_TRAPNO(%eax)       /* magic: 0ldSiG */
409         movl    $SYS_sigreturn,%eax
410         pushl   %eax                            /* junk to fake return addr. */
411         int     $0x80                           /* enter kernel with args */
412 0:      jmp     0b
413
414         ALIGN_TEXT
415 _esigcode:
416
417         .data
418         .globl  _szsigcode, _szosigcode
419 _szsigcode:
420         .long   _esigcode-_sigcode
421 _szosigcode:
422         .long   _esigcode-_osigcode
423         .text
424
425 /**********************************************************************
426  *
427  * Recover the bootinfo passed to us from the boot program
428  *
429  */
430 recover_bootinfo:
431         /*
432          * This code is called in different ways depending on what loaded
433          * and started the kernel.  This is used to detect how we get the
434          * arguments from the other code and what we do with them.
435          *
436          * Old disk boot blocks:
437          *      (*btext)(howto, bootdev, cyloffset, esym);
438          *      [return address == 0, and can NOT be returned to]
439          *      [cyloffset was not supported by the FreeBSD boot code
440          *       and always passed in as 0]
441          *      [esym is also known as total in the boot code, and
442          *       was never properly supported by the FreeBSD boot code]
443          *
444          * Old diskless netboot code:
445          *      (*btext)(0,0,0,0,&nfsdiskless,0,0,0);
446          *      [return address != 0, and can NOT be returned to]
447          *      If we are being booted by this code it will NOT work,
448          *      so we are just going to halt if we find this case.
449          *
450          * New uniform boot code:
451          *      (*btext)(howto, bootdev, 0, 0, 0, &bootinfo)
452          *      [return address != 0, and can be returned to]
453          *
454          * There may seem to be a lot of wasted arguments in here, but
455          * that is so the newer boot code can still load very old kernels
456          * and old boot code can load new kernels.
457          */
458
459         /*
460          * The old style disk boot blocks fake a frame on the stack and
461          * did an lret to get here.  The frame on the stack has a return
462          * address of 0.
463          */
464         cmpl    $0,4(%ebp)
465         je      olddiskboot
466
467         /*
468          * We have some form of return address, so this is either the
469          * old diskless netboot code, or the new uniform code.  That can
470          * be detected by looking at the 5th argument, if it is 0
471          * we are being booted by the new uniform boot code.
472          */
473         cmpl    $0,24(%ebp)
474         je      newboot
475
476         /*
477          * Seems we have been loaded by the old diskless boot code, we
478          * don't stand a chance of running as the diskless structure
479          * changed considerably between the two, so just halt.
480          */
481          hlt
482
483         /*
484          * We have been loaded by the new uniform boot code.
485          * Let's check the bootinfo version, and if we do not understand
486          * it we return to the loader with a status of 1 to indicate this error
487          */
488 newboot:
489         movl    28(%ebp),%ebx           /* &bootinfo.version */
490         movl    BI_VERSION(%ebx),%eax
491         cmpl    $1,%eax                 /* We only understand version 1 */
492         je      1f
493         movl    $1,%eax                 /* Return status */
494         leave
495         /*
496          * XXX this returns to our caller's caller (as is required) since
497          * we didn't set up a frame and our caller did.
498          */
499         ret
500
501 1:
502         /*
503          * If we have a kernelname copy it in
504          */
505         movl    BI_KERNELNAME(%ebx),%esi
506         cmpl    $0,%esi
507         je      2f                      /* No kernelname */
508         movl    $MAXPATHLEN,%ecx        /* Brute force!!! */
509         movl    $R(_kernelname),%edi
510         cmpb    $'/',(%esi)             /* Make sure it starts with a slash */
511         je      1f
512         movb    $'/',(%edi)
513         incl    %edi
514         decl    %ecx
515 1:
516         cld
517         rep
518         movsb
519
520 2:
521         /*
522          * Determine the size of the boot loader's copy of the bootinfo
523          * struct.  This is impossible to do properly because old versions
524          * of the struct don't contain a size field and there are 2 old
525          * versions with the same version number.
526          */
527         movl    $BI_ENDCOMMON,%ecx      /* prepare for sizeless version */
528         testl   $RB_BOOTINFO,8(%ebp)    /* bi_size (and bootinfo) valid? */
529         je      got_bi_size             /* no, sizeless version */
530         movl    BI_SIZE(%ebx),%ecx
531 got_bi_size:
532
533         /*
534          * Copy the common part of the bootinfo struct
535          */
536         movl    %ebx,%esi
537         movl    $R(_bootinfo),%edi
538         cmpl    $BOOTINFO_SIZE,%ecx
539         jbe     got_common_bi_size
540         movl    $BOOTINFO_SIZE,%ecx
541 got_common_bi_size:
542         cld
543         rep
544         movsb
545
546 #ifdef NFS_ROOT
547 #ifndef BOOTP_NFSV3
548         /*
549          * If we have a nfs_diskless structure copy it in
550          */
551         movl    BI_NFS_DISKLESS(%ebx),%esi
552         cmpl    $0,%esi
553         je      olddiskboot
554         movl    $R(_nfs_diskless),%edi
555         movl    $NFSDISKLESS_SIZE,%ecx
556         cld
557         rep
558         movsb
559         movl    $R(_nfs_diskless_valid),%edi
560         movl    $1,(%edi)
561 #endif
562 #endif
563
564         /*
565          * The old style disk boot.
566          *      (*btext)(howto, bootdev, cyloffset, esym);
567          * Note that the newer boot code just falls into here to pick
568          * up howto and bootdev, cyloffset and esym are no longer used
569          */
570 olddiskboot:
571         movl    8(%ebp),%eax
572         movl    %eax,R(_boothowto)
573         movl    12(%ebp),%eax
574         movl    %eax,R(_bootdev)
575
576         ret
577
578
579 /**********************************************************************
580  *
581  * Identify the CPU and initialize anything special about it
582  *
583  */
584 identify_cpu:
585
586         /* Try to toggle alignment check flag; does not exist on 386. */
587         pushfl
588         popl    %eax
589         movl    %eax,%ecx
590         orl     $PSL_AC,%eax
591         pushl   %eax
592         popfl
593         pushfl
594         popl    %eax
595         xorl    %ecx,%eax
596         andl    $PSL_AC,%eax
597         pushl   %ecx
598         popfl
599
600         testl   %eax,%eax
601         jnz     try486
602
603         /* NexGen CPU does not have aligment check flag. */
604         pushfl
605         movl    $0x5555, %eax
606         xorl    %edx, %edx
607         movl    $2, %ecx
608         clc
609         divl    %ecx
610         jz      trynexgen
611         popfl
612         movl    $CPU_386,R(_cpu)
613         jmp     3f
614
615 trynexgen:
616         popfl
617         movl    $CPU_NX586,R(_cpu)
618         movl    $0x4778654e,R(_cpu_vendor)      # store vendor string
619         movl    $0x72446e65,R(_cpu_vendor+4)
620         movl    $0x6e657669,R(_cpu_vendor+8)
621         movl    $0,R(_cpu_vendor+12)
622         jmp     3f
623
624 try486: /* Try to toggle identification flag; does not exist on early 486s. */
625         pushfl
626         popl    %eax
627         movl    %eax,%ecx
628         xorl    $PSL_ID,%eax
629         pushl   %eax
630         popfl
631         pushfl
632         popl    %eax
633         xorl    %ecx,%eax
634         andl    $PSL_ID,%eax
635         pushl   %ecx
636         popfl
637
638         testl   %eax,%eax
639         jnz     trycpuid
640         movl    $CPU_486,R(_cpu)
641
642         /*
643          * Check Cyrix CPU
644          * Cyrix CPUs do not change the undefined flags following
645          * execution of the divide instruction which divides 5 by 2.
646          *
647          * Note: CPUID is enabled on M2, so it passes another way.
648          */
649         pushfl
650         movl    $0x5555, %eax
651         xorl    %edx, %edx
652         movl    $2, %ecx
653         clc
654         divl    %ecx
655         jnc     trycyrix
656         popfl
657         jmp     3f              /* You may use Intel CPU. */
658
659 trycyrix:
660         popfl
661         /*
662          * IBM Bluelighting CPU also doesn't change the undefined flags.
663          * Because IBM doesn't disclose the information for Bluelighting
664          * CPU, we couldn't distinguish it from Cyrix's (including IBM
665          * brand of Cyrix CPUs).
666          */
667         movl    $0x69727943,R(_cpu_vendor)      # store vendor string
668         movl    $0x736e4978,R(_cpu_vendor+4)
669         movl    $0x64616574,R(_cpu_vendor+8)
670         jmp     3f
671
672 trycpuid:       /* Use the `cpuid' instruction. */
673         xorl    %eax,%eax
674         cpuid                                   # cpuid 0
675         movl    %eax,R(_cpu_high)               # highest capability
676         movl    %ebx,R(_cpu_vendor)             # store vendor string
677         movl    %edx,R(_cpu_vendor+4)
678         movl    %ecx,R(_cpu_vendor+8)
679         movb    $0,R(_cpu_vendor+12)
680
681         movl    $1,%eax
682         cpuid                                   # cpuid 1
683         movl    %eax,R(_cpu_id)                 # store cpu_id
684         movl    %ebx,R(_cpu_procinfo)           # store cpu_procinfo
685         movl    %edx,R(_cpu_feature)            # store cpu_feature
686         rorl    $8,%eax                         # extract family type
687         andl    $15,%eax
688         cmpl    $5,%eax
689         jae     1f
690
691         /* less than Pentium; must be 486 */
692         movl    $CPU_486,R(_cpu)
693         jmp     3f
694 1:
695         /* a Pentium? */
696         cmpl    $5,%eax
697         jne     2f
698         movl    $CPU_586,R(_cpu)
699         jmp     3f
700 2:
701         /* Greater than Pentium...call it a Pentium Pro */
702         movl    $CPU_686,R(_cpu)
703 3:
704         ret
705
706
707 /**********************************************************************
708  *
709  * Create the first page directory and its page tables.
710  *
711  */
712
713 create_pagetables:
714
715 /* Find end of kernel image (rounded up to a page boundary). */
716         movl    $R(_end),%esi
717
718 /* Include symbols, if any. */
719         movl    R(_bootinfo+BI_ESYMTAB),%edi
720         testl   %edi,%edi
721         je      over_symalloc
722         movl    %edi,%esi
723         movl    $KERNBASE,%edi
724         addl    %edi,R(_bootinfo+BI_SYMTAB)
725         addl    %edi,R(_bootinfo+BI_ESYMTAB)
726 over_symalloc:
727
728 /* If we are told where the end of the kernel space is, believe it. */
729         movl    R(_bootinfo+BI_KERNEND),%edi
730         testl   %edi,%edi
731         je      no_kernend
732         movl    %edi,%esi
733 no_kernend:
734         
735         addl    $PAGE_MASK,%esi
736         andl    $~PAGE_MASK,%esi
737         movl    %esi,R(_KERNend)        /* save end of kernel */
738         movl    %esi,R(physfree)        /* next free page is at end of kernel */
739
740 /* Allocate Kernel Page Tables */
741         ALLOCPAGES(NKPT)
742         movl    %esi,R(_KPTphys)
743
744 /* Allocate Page Table Directory */
745         ALLOCPAGES(1)
746         movl    %esi,R(_IdlePTD)
747
748 /* Allocate UPAGES */
749         ALLOCPAGES(UPAGES)
750         movl    %esi,R(p0upa)
751         addl    $KERNBASE, %esi
752         movl    %esi, R(_proc0paddr)
753
754         ALLOCPAGES(1)                   /* vm86/bios stack */
755         movl    %esi,R(vm86phystk)
756
757         ALLOCPAGES(3)                   /* pgtable + ext + IOPAGES */
758         movl    %esi,R(_vm86pa)
759         addl    $KERNBASE, %esi
760         movl    %esi, R(_vm86paddr)
761
762 #ifdef SMP
763 /* Allocate cpu0's private data page */
764         ALLOCPAGES(1)
765         movl    %esi,R(cpu0pp)
766         addl    $KERNBASE, %esi
767         movl    %esi, R(_cpu0prvpage)   /* relocated to KVM space */
768
769 /* Allocate SMP page table page */
770         ALLOCPAGES(1)
771         movl    %esi,R(SMPptpa)
772         addl    $KERNBASE, %esi
773         movl    %esi, R(_SMPpt)         /* relocated to KVM space */
774 #endif  /* SMP */
775
776 /* Map read-only from zero to the end of the kernel text section */
777         xorl    %eax, %eax
778 #ifdef BDE_DEBUGGER
779 /* If the debugger is present, actually map everything read-write. */
780         cmpl    $0,R(_bdb_exists)
781         jne     map_read_write
782 #endif
783         xorl    %edx,%edx
784
785 #if !defined(SMP)
786         testl   $CPUID_PGE, R(_cpu_feature)
787         jz      2f
788         orl     $PG_G,%edx
789 #endif
790         
791 2:      movl    $R(_etext),%ecx
792         addl    $PAGE_MASK,%ecx
793         shrl    $PAGE_SHIFT,%ecx
794         fillkptphys(%edx)
795
796 /* Map read-write, data, bss and symbols */
797         movl    $R(_etext),%eax
798         addl    $PAGE_MASK, %eax
799         andl    $~PAGE_MASK, %eax
800 map_read_write:
801         movl    $PG_RW,%edx
802 #if !defined(SMP)
803         testl   $CPUID_PGE, R(_cpu_feature)
804         jz      1f
805         orl     $PG_G,%edx
806 #endif
807         
808 1:      movl    R(_KERNend),%ecx
809         subl    %eax,%ecx
810         shrl    $PAGE_SHIFT,%ecx
811         fillkptphys(%edx)
812
813 /* Map page directory. */
814         movl    R(_IdlePTD), %eax
815         movl    $1, %ecx
816         fillkptphys($PG_RW)
817
818 /* Map proc0's UPAGES in the physical way ... */
819         movl    R(p0upa), %eax
820         movl    $UPAGES, %ecx
821         fillkptphys($PG_RW)
822
823 /* Map ISA hole */
824         movl    $ISA_HOLE_START, %eax
825         movl    $ISA_HOLE_LENGTH>>PAGE_SHIFT, %ecx
826         fillkptphys($PG_RW)
827
828 /* Map space for the vm86 region */
829         movl    R(vm86phystk), %eax
830         movl    $4, %ecx
831         fillkptphys($PG_RW)
832
833 /* Map page 0 into the vm86 page table */
834         movl    $0, %eax
835         movl    $0, %ebx
836         movl    $1, %ecx
837         fillkpt(R(_vm86pa), $PG_RW|PG_U)
838
839 /* ...likewise for the ISA hole */
840         movl    $ISA_HOLE_START, %eax
841         movl    $ISA_HOLE_START>>PAGE_SHIFT, %ebx
842         movl    $ISA_HOLE_LENGTH>>PAGE_SHIFT, %ecx
843         fillkpt(R(_vm86pa), $PG_RW|PG_U)
844
845 #ifdef SMP
846 /* Map cpu0's private page into global kmem (4K @ cpu0prvpage) */
847         movl    R(cpu0pp), %eax
848         movl    $1, %ecx
849         fillkptphys($PG_RW)
850
851 /* Map SMP page table page into global kmem FWIW */
852         movl    R(SMPptpa), %eax
853         movl    $1, %ecx
854         fillkptphys($PG_RW)
855
856 /* Map the private page into the SMP page table */
857         movl    R(cpu0pp), %eax
858         movl    $0, %ebx                /* pte offset = 0 */
859         movl    $1, %ecx                /* one private page coming right up */
860         fillkpt(R(SMPptpa), $PG_RW)
861
862 /* ... and put the page table table in the pde. */
863         movl    R(SMPptpa), %eax
864         movl    $MPPTDI, %ebx
865         movl    $1, %ecx
866         fillkpt(R(_IdlePTD), $PG_RW)
867
868 /* Fakeup VA for the local apic to allow early traps. */
869         ALLOCPAGES(1)
870         movl    %esi, %eax
871         movl    $(NPTEPG-1), %ebx       /* pte offset = NTEPG-1 */
872         movl    $1, %ecx                /* one private pt coming right up */
873         fillkpt(R(SMPptpa), $PG_RW)
874
875 /* Initialize mp lock to allow early traps */
876         movl    $1, R(_mp_lock)
877 #endif  /* SMP */
878
879 /* install a pde for temporary double map of bottom of VA */
880         movl    R(_KPTphys), %eax
881         xorl    %ebx, %ebx
882         movl    $NKPT, %ecx
883         fillkpt(R(_IdlePTD), $PG_RW)
884
885 /* install pde's for pt's */
886         movl    R(_KPTphys), %eax
887         movl    $KPTDI, %ebx
888         movl    $NKPT, %ecx
889         fillkpt(R(_IdlePTD), $PG_RW)
890
891 /* install a pde recursively mapping page directory as a page table */
892         movl    R(_IdlePTD), %eax
893         movl    $PTDPTDI, %ebx
894         movl    $1,%ecx
895         fillkpt(R(_IdlePTD), $PG_RW)
896
897         ret
898
899 #ifdef BDE_DEBUGGER
900 bdb_prepare_paging:
901         cmpl    $0,R(_bdb_exists)
902         je      bdb_prepare_paging_exit
903
904         subl    $6,%esp
905
906         /*
907          * Copy and convert debugger entries from the bootstrap gdt and idt
908          * to the kernel gdt and idt.  Everything is still in low memory.
909          * Tracing continues to work after paging is enabled because the
910          * low memory addresses remain valid until everything is relocated.
911          * However, tracing through the setidt() that initializes the trace
912          * trap will crash.
913          */
914         sgdt    (%esp)
915         movl    2(%esp),%esi            /* base address of bootstrap gdt */
916         movl    $R(_gdt),%edi
917         movl    %edi,2(%esp)            /* prepare to load kernel gdt */
918         movl    $8*18/4,%ecx
919         cld
920         rep                             /* copy gdt */
921         movsl
922         movl    $R(_gdt),-8+2(%edi)     /* adjust gdt self-ptr */
923         movb    $0x92,-8+5(%edi)
924         lgdt    (%esp)
925
926         sidt    (%esp)
927         movl    2(%esp),%esi            /* base address of current idt */
928         movl    8+4(%esi),%eax          /* convert dbg descriptor to ... */
929         movw    8(%esi),%ax
930         movl    %eax,R(bdb_dbg_ljmp+1)  /* ... immediate offset ... */
931         movl    8+2(%esi),%eax
932         movw    %ax,R(bdb_dbg_ljmp+5)   /* ... and selector for ljmp */
933         movl    24+4(%esi),%eax         /* same for bpt descriptor */
934         movw    24(%esi),%ax
935         movl    %eax,R(bdb_bpt_ljmp+1)
936         movl    24+2(%esi),%eax
937         movw    %ax,R(bdb_bpt_ljmp+5)
938         movl    R(_idt),%edi
939         movl    %edi,2(%esp)            /* prepare to load kernel idt */
940         movl    $8*4/4,%ecx
941         cld
942         rep                             /* copy idt */
943         movsl
944         lidt    (%esp)
945
946         addl    $6,%esp
947
948 bdb_prepare_paging_exit:
949         ret
950
951 /* Relocate debugger gdt entries and gdt and idt pointers. */
952 bdb_commit_paging:
953         cmpl    $0,_bdb_exists
954         je      bdb_commit_paging_exit
955
956         movl    $_gdt+8*9,%eax          /* adjust slots 9-17 */
957         movl    $9,%ecx
958 reloc_gdt:
959         movb    $KERNBASE>>24,7(%eax)   /* top byte of base addresses, was 0, */
960         addl    $8,%eax                 /* now KERNBASE>>24 */
961         loop    reloc_gdt
962
963         subl    $6,%esp
964         sgdt    (%esp)
965         addl    $KERNBASE,2(%esp)
966         lgdt    (%esp)
967         sidt    (%esp)
968         addl    $KERNBASE,2(%esp)
969         lidt    (%esp)
970         addl    $6,%esp
971
972         int     $3
973
974 bdb_commit_paging_exit:
975         ret
976
977 #endif /* BDE_DEBUGGER */