- 论坛徽章:
- 0
|
本人对赵博<<linux内核完全剖析>>书中第四章的“一个简单的多任务内核实例”进行了一些改变:把boot.s改成了AT%T格式的汇编;head.s中的一些地方略加了改动。在RHAS4下进行了编译和连接调试,但输出跟赵博给出的答案不一致,输出内容如下(整个屏幕就这一点点东东,然后就处于不动的状态了软盘灯常亮):
AC
Loading
我认为任务0已经执行成功,但由 timer_interrupt进行任务切换时没有成功,我看不出来问题在哪儿。
我的问题是:
1、 大家看一看什么地方不妥,如有不对的地方,怎么改正?
2、 在保护模式下(没开启分页情况下)怎么进行任务切换,最好能给个简的例了,不要骂我贪
心,实在是偶的水平太差了:-(
调试方法很简单就是:1、在软驱中插入软盘。2、执行make,我自己加了一个Makefile文件。下面是我改变后的代码:
- boot.s代码:
- BOOTSEG = 0x7c0
- SYSSEG = 0x1000
- SEG = 0x8000
- SYSLEN = 11
- .code16
- .text
- .global _start
- _start:
- ljmp $BOOTSEG, $go
- go:
- movw %cs, %ax
- movw %ax, %ds
- movw %ax, %es
- movw %ax, %ss
- movw $0x400, %sp
-
- call clear_screen
- pushw $9
- pushw $msg1
- movw scrpos, %dx
- call prtstr
- addw $0x04, %sp
- load_system:
- movw $0x0000, %dx
- movw $0x0002, %cx
- movw $SYSSEG, %ax
- movw %ax, %es
- xorw %bx, %bx
- movw $SYSLEN + 0x200, %ax
- int $0x13
- jnc ok_load
- jmp load_system
- ok_load:
- movw $SYSSEG, %ax
- movw %ax, %ds
- xorw %ax, %ax
- movw %ax, %es
- movw $0x1000, %cx
- subw %si, %si
- subw %di,%di
- rep
- movsw
- movw $BOOTSEG, %ax
- movw %ax, %ds
- movw %ax, %es
- set_gdt:
- lidt idt_48
- lgdt gdt_48
- cli
- call enable_a20
- movl %cr0, %eax
- orl $0x1, %eax
- movl %eax, %cr0
- # movw $0x1, %ax
- # lmsw %ax
- ljmp $0x8, $0x0
- prtstr:
- movw %sp, %si
- movw 2(%si), %bp
- movw 4(%si), %cx
- movw $0x0007, %bx
- movw $0x1301, %ax
- int $0x10
- addw $0x0100, (scrpos)
- ret
- clear_screen:
- movw $0x0700, %ax
- movw $0x007, %bx
- movw $0x0000, %cx
- movw $0x184f, %dx
- int $0x10
- ret
- set_scr_pos:
- movw scrpos, %dx
- movb $0x00, %bh
- movb $0x02, %ah
- int $0x10
- ret
- enable_a20:
- inb $0x92, %al
- orb 0x02, %al
- outb %al, $0x92
- ret
- msg1:
- .byte 13,10
- .ascii "Loading"
- msg2:
- .byte 13,10
- .ascii "Enabling protection"
- scrpos:
- .byte 0x00
- .byte 0x00
- gdt:
- .word 0, 0, 0, 0
- .word 0x07ff
- .word 0x0000
- .word 0x9A00
- .word 0x00c0
- .word 0x07ff
- .word 0x0000
- .word 0x9200
- .word 0x00c0
- gdt_48: .word 0x18
- .word 0x7c00+gdt, 0
- idt_48: .word 0, 0, 0
- .org 510
- boot_flag: .word 0xAA55
- head.s文件代码:
- LATCH = 11930
- SCRN_SEL = 0x18
- TSS0_SEL = 0x20
- LDT0_SEL = 0x28
- TSS1_SEL = 0x30
- LDT1_SEL = 0x38
- .global _start
- .text
- _start:
- movl $0x10, %eax
- movw %ax, %ds
- lss init_stack, %esp
- call setup_idt
- call setup_gdt
- movl $0x10, %eax
- movw %ax, %ds
- movw %ax, %es
- movw %ax, %fs
- movw %ax, %gs
- lss init_stack, %esp
- movb $0x36, %al
- movl $0x43, %edx
- outb %al, %dx
- movl $LATCH, %eax
- movl $0x40, %edx
- outb %al, %dx
- movb %ah, %al
- outb %al, %dx
- movl $0x00080000, %eax
- movw $timer_interrupt, %ax
- movl $0x8E00, %edx
- movl $0x08, %ecx
- lea idt(,%ecx,8), %esi
- movl %eax, (%esi)
- movl %edx, 4(%esi)
- movw $system_interrupt, %ax
- movw $0xef00, %dx
- movl $0x80, %ecx
- lea idt(,%ecx,8), %esi
- movl %eax, (%esi)
- movl %edx, 4(%esi)
- pushfl
- andl $0xffffbfff, (%esp)
- popfl
- movl $TSS0_SEL, %eax
- ltr %ax
- movl $LDT0_SEL, %eax
- lldt %ax
- movl $0,current
- sti
- pushl $0x17
- pushl $init_stack
- pushfl
- pushl $0x0f
- pushl $task0
- iret
-
- setup_gdt:
- lgdt lgdt_opcode
- ret
- setup_idt:
- lea ignore_int, %edx
- movl $0x00080000, %eax
- movw %dx, %ax
- movw $0x8e00, %dx
- lea idt, %edi
- mov $256, %ecx
- rp_idt:
- movl %eax, (%edi)
- movl %edx, 4(%edi)
- addl $8, %edi
- dec %ecx
- jne rp_idt
- lidt lidt_opcode
- ret
- write_char:
- pushw %gs
- pushl %ebx
- movl $0xb8000, %ebx
- addl scr_loc, %ebx
- shl $1,%ebx
- movb %al, %gs:(%ebx)
- shr $1, %ebx
- incl %ebx
- cmpl $2000, %ebx
- jb 1f
- movl $0, %ebx
- 1: movl %ebx, scr_loc
- popl %ebx
- popl %gs
- ret
- writechar:
- pushl %ebx
- movl scr_loc, %ebx
- shll $0x1, %ebx
- pushl %ebx
- addl $0xb8000, %ebx
- xorb %ah, %ah
- addb $0x0c, %ah
- movw %ax, (%ebx)
- popl %ebx
- shrl $1, %ebx
- incl %ebx
- movl %ebx, scr_loc
- call delay
- popl %ebx
- ret
- ignore_int:
- pushw %ds
- pushl %eax
- movl $0x10, %eax
- movw %ax, %ds
- movb $67, %al
- call writechar
- popl %eax
- pop %ds
- iret
- timer_interrupt:
- pushw %ds
- pushl %eax
- movl $0x10, %eax
- mov %ax,%ds
- movb $0x20, %al
- outb %al, $0x20
- movl $1, %eax
- cmpl %eax, current
- je 1f
- movl %eax, current
- ljmp $TSS1_SEL, $0
- jmp 2f
- 1: movl $0, current
- ljmp $TSS0_SEL, $0
- 2: popl %eax
- pop %ds
- iret
- system_interrupt:
- pushw %ds
- pushl %edx
- pushl %ecx
- pushl %edx
- push %eax
- movl $0x10, %edx
- movw %dx, %ds
- call writechar
- popl %eax
- popl %edx
- popl %ebx
- popl %ecx
- popl %edx
- popw %ds
- iret
- check_data32:
- pusha
- movl scr_pos, %edi
- shll $4, %edi
- movl value, %esi
- addl $0xb8000, %edi
- movl $0xf0000000, %eax
- movb $28, %cl
- 4:
- movl %esi, %edx
- andl %eax, %edx
- shr %cl, %edx
- addw $0x30, %dx
- cmp $0x3a, %dx
- jb 5f
- add $0x07, %dx
- 5:
- add $0xc00, %dx
- movw %dx, (%edi)
- subb $0x04, %cl
- shrl $0x04, %eax
- addl $0x02, %edi
- cmpl $0x0, %eax
- jnz 4b
- call delay
- incl (scr_pos)
- incl (value)
- popa
- ret
- delay:
- pushl %ecx
- movl $0xfffffff, %ecx
- dly: loop dly
- popl %ecx
- ret
-
- current: .long 0
- scr_loc: .long 0x00
- scr_pos: .long 0
- value: .long 0
- lidt_opcode:
- .word 256*8-1
- .long idt
- lgdt_opcode:
- .word 8*8-1
- .long gdt
- .align 8
- idt: .fill 256, 8, 0
- .align 8
- gdt:
- .quad 0x0000000000000000
- .quad 0x00c09a00000003ff
- .quad 0x00c09200000003ff
- .quad 0x00c0920b80000002
- .word 0x68, tss0, 0xe900, 0x0
- .word 0x40, ldt0, 0xe200, 0x0
- .word 0x68, tss1, 0xe900, 0x0
- .word 0x40, ldt1, 0xe200, 0x0
-
- .fill 128, 4 ,0
- .align 4
- init_stack:
- .long init_stack
- .word 0x10
- .align 8
- ldt0:
- .quad 0x0000000000000000
- .quad 0x00c0fa00000003ff
- .quad 0x00c0f200000003ff
-
- .align 8
- tss0:
- .long 0
- .long krn_stk0,0x10
- .long 0,0,0,0,0
- .long 0,0,0,0,0
- .long 0,0,0,0,0
- .long 0,0,0,0,0,0
- .long LDT0_SEL, 0x8000000
- .fill 128,4,0
- krn_stk0:
- .align 8
- ldt1:
- .quad 0x0000000000000000
- .quad 0x00c0fa00000003ff
- .quad 0x00c0f200000003ff
- .align 8
- tss1:
- .long 0
- .long krn_stk0,0x10
- .long 0, 0, 0, 0, 0
- .long task1, 0x200
- .long 0, 0, 0, 0
- .long usr_stk1, 0, 0, 0
- .long 0x17, 0x17, 0x17, 0x17, 0x17, 0x17
- .long LDT1_SEL, 0x8000000
-
- .fill 128,4,0
- krn_stk1:
- task0:
- movw $0x10, %ax
- movw %ax, %ds
- movb $65, %al
- int $0x80
- movl $0xffffff, %ecx
- 1:
- loop 1b
- jmp task0
- task1:
- movw $0x10, %ax
- movw %ax, %ds
- movb $66, %al
- int $0x80
- movl $0xffffff, %ecx
- 1:
- loop 1b
- jmp task1
- .fill 128, 4, 0
- usr_stk1:
- Makefile文件内容:
- AS = as
- LD = ld
- LDFLAG = -Ttext 0x00 -s -x --oformat binary
- deleting = *.o boot head
- image: boot head
- cat boot head >image
- (dd bs=512 if=image of=/dev/fd0 count=12; rm $(deleting); sync)
- .s.o:
- $(AS) -o $@ $<
- boot:boot.o
- $(LD) $(LDFLAG) -o $@ $<
- head:head.o
- $(LD) $(LDFLAG) -o $@ $<
-
- clean:
- rm *.o boot head
- :
复制代码 |
|