荔园在线

荔园之美,在春之萌芽,在夏之绽放,在秋之收获,在冬之沉淀

[回到开始] [上一篇][下一篇]


发信人: jjksam (欢迎光临荔园晨风Linux版, InstallBBS版!), 信区: Linux
标  题: [转载] 我对linux启动的一点分析(四)
发信站: 荔园晨风BBS站 (Sun Dec  9 13:15:47 2001), 转信

发信人: babyant (云淡风清), 信区: KernelTech
标  题: [转载] 我对linux启动的一点分析(四)
发信站: BBS 水木清华站 (Sat Dec  8 08:46:23 2001)

linux/boot/head.s

/*
 *  linux/boot/head.S
 *
 *  Copyright (C) 1991, 1992, 1993  Linus Torvalds
 */
/*
 *  head.S contains the 32-bit startup code.
 *
 * NOTE!!! Startup happens at absolute address 0x00001000, which is also whe
re
 * the page directory will exist. The startup code will be overwritten by
 * the page directory. [According to comments etc elsewhere on a compressed
 * kernel it will end up at 0x1000 + 1Mb I hope so as I assume this. - AC]
 *
 * Page 0 is deliberately kept safe, since System Management Mode code in
 * laptops may need to access the BIOS data stored there.  This is also
 * useful for future device drivers that either access the BIOS via VM86
 * mode.
 */
/*
 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
 */
.text
#include <linux/linkage.h>
#include <asm/segment.h>
 .globl startup_32
startup_32:                     ;将系统数据段的选择符KERNEL_DS装入DS、ES、FS
、GS
 cld
 cli
 movl $(__KERNEL_DS),%eax
 movl %eax,%ds
 movl %eax,%es
 movl %eax,%fs
 movl %eax,%gs
 lss SYMBOL_NAME(stack_start),%esp
 xorl %eax,%eax
1: incl %eax  # check that A20 really IS enabled
 movl %eax,0x000000 # loop forever if it isn't
 cmpl %eax,0x100000
 je 1b
/*
 * 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
/*
 * Clear BSS                    ;将BSS(Block Start by Symbol)段清空
 */
 xorl %eax,%eax
 movl $ SYMBOL_NAME(_edata),%edi
 movl $ SYMBOL_NAME(_end),%ecx
 subl %edi,%ecx
 cld
 rep
 stosb
/*
 * Do the decompression, and jump to the new kernel..
 */
 subl $16,%esp # place for structure on the stack
 movl %esp,%eax
 pushl %esi # real mode pointer as second arg
 pushl %eax # address of structure as first arg
 call SYMBOL_NAME(decompress_kernel)
 orl  %eax,%eax                        ;大内核吗?
 jnz  3f
 popl %esi # discard address
 popl %esi # real mode pointer
 xorl %ebx,%ebx
 ljmp $(__KERNEL_CS), $0x100000
/*
 * We come here, if we were loaded high.
 * We need to move the move-in-place routine down to 0x1000
 * and then start it with the buffer addresses in registers,
 * which we got from the stack.
 */
3:
 movl $move_routine_start,%esi
 movl $0x1000,%edi
 movl $move_routine_end,%ecx
 subl %esi,%ecx
 addl $3,%ecx
 shrl $2,%ecx
 cld
 rep
 movsl              ;move_routine_start现在在0100:0h处
 popl %esi # discard the address
 popl %ebx # real mode pointer
 popl %esi # low_buffer_start
 popl %ecx # lcount
 popl %edx # high_buffer_start
 popl %eax # hcount
 movl $0x100000,%edi
 cli  # make sure we don't get interrupted
 ljmp $(__KERNEL_CS), $0x1000 # and jump to the move routine
/*
 * Routine (template) for moving the decompressed kernel in place,
 * if we were high loaded. This _must_ PIC-code !
 */
move_routine_start:     ;把解压的内核合并到100000h处,并跳过去执行。
 movl %ecx,%ebp
 shrl $2,%ecx
 rep
 movsl
 movl %ebp,%ecx
 andl $3,%ecx
 rep
 movsb
 movl %edx,%esi
 movl %eax,%ecx # NOTE: rep movsb won't move if %ecx == 0
 addl $3,%ecx
 shrl $2,%ecx
 rep
 movsl
 movl %ebx,%esi # Restore setup pointer
 xorl %ebx,%ebx
 ljmp $(__KERNEL_CS), $0x100000
move_routine_end:
compressed/head及解压模块misc位于压缩内核的前端,其作用主要是:
对于普通内核,解压压缩内核为基本内核并且其起始地址直接为0x100000;
对于大内核,先解压压缩内核为基本内核,但分为两个部分分别存在低、
高两个地址,然后将这两个部分顺序移至起始地址0x100000合二为一
跳转到基本内核vmlinux的起始地址0x100000,继续运行

--
※ 来源:·BBS 水木清华站 smth.org·[FROM: 137.194.8.113]
--
※ 修改:·jjksam 於 Dec  9 13:54:52 修改本文·[FROM: 192.168.0.146]
※ 转载:·荔园晨风BBS站 bbs.szu.edu.cn·[FROM: 192.168.0.146]


[回到开始] [上一篇][下一篇]

荔园在线首页 友情链接:深圳大学 深大招生 荔园晨风BBS S-Term软件 网络书店