免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2471 | 回复: 2
打印 上一主题 下一主题

一个简单的多任务内核实例,引起赵博源代码--请高手看看有什么问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-03 10:33 |只看该作者 |倒序浏览
本人对赵博<<linux内核完全剖析>>书中第四章的“一个简单的多任务内核实例”进行了一些改变:把boot.s改成了AT%T格式的汇编;head.s中的一些地方略加了改动。在RHAS4下进行了编译和连接调试,但输出跟赵博给出的答案不一致,输出内容如下(整个屏幕就这一点点东东,然后就处于不动的状态了软盘灯常亮):
AC
Loading

我认为任务0已经执行成功,但由 timer_interrupt进行任务切换时没有成功,我看不出来问题在哪儿。
我的问题是:
1、        大家看一看什么地方不妥,如有不对的地方,怎么改正?
2、        在保护模式下(没开启分页情况下)怎么进行任务切换,最好能给个简的例了,不要骂我贪
心,实在是偶的水平太差了:-(
调试方法很简单就是:1、在软驱中插入软盘。2、执行make,我自己加了一个Makefile文件。下面是我改变后的代码:


  1. boot.s代码:
  2. BOOTSEG                = 0x7c0
  3. SYSSEG                = 0x1000
  4. SEG                = 0x8000
  5. SYSLEN                = 11

  6. .code16
  7. .text
  8. .global _start
  9. _start:
  10.         ljmp        $BOOTSEG, $go
  11. go:
  12.         movw        %cs, %ax
  13.         movw        %ax, %ds
  14.         movw        %ax, %es
  15.         movw        %ax, %ss
  16.         movw        $0x400, %sp
  17.        
  18.         call        clear_screen
  19.         pushw        $9
  20.         pushw        $msg1
  21.         movw        scrpos, %dx
  22.         call        prtstr
  23.         addw        $0x04, %sp

  24. load_system:
  25.         movw        $0x0000, %dx
  26.         movw        $0x0002, %cx
  27.         movw        $SYSSEG, %ax
  28.         movw        %ax, %es
  29.         xorw         %bx, %bx
  30.         movw        $SYSLEN + 0x200, %ax
  31.         int        $0x13
  32.         jnc        ok_load       
  33.         jmp        load_system

  34. ok_load:
  35.         movw        $SYSSEG, %ax
  36.         movw        %ax, %ds
  37.         xorw        %ax, %ax
  38.         movw        %ax, %es
  39.         movw        $0x1000, %cx
  40.         subw        %si, %si
  41.         subw        %di,%di
  42.         rep
  43.         movsw

  44.         movw        $BOOTSEG, %ax
  45.         movw        %ax, %ds
  46.         movw        %ax, %es

  47. set_gdt:
  48.         lidt        idt_48
  49.         lgdt        gdt_48

  50.         cli
  51.         call        enable_a20
  52.         movl        %cr0, %eax
  53.         orl        $0x1, %eax
  54.         movl        %eax, %cr0
  55. #        movw        $0x1, %ax
  56. #        lmsw        %ax

  57.         ljmp        $0x8, $0x0

  58. prtstr:
  59.         movw        %sp, %si
  60.         movw        2(%si), %bp
  61.         movw        4(%si), %cx
  62.         movw        $0x0007, %bx
  63.         movw        $0x1301, %ax
  64.         int        $0x10
  65.         addw        $0x0100, (scrpos)
  66.         ret

  67. clear_screen:
  68.         movw        $0x0700, %ax
  69.         movw        $0x007, %bx
  70.         movw        $0x0000, %cx
  71.         movw        $0x184f, %dx
  72.         int        $0x10
  73.         ret

  74. set_scr_pos:
  75.         movw        scrpos, %dx
  76.         movb        $0x00,        %bh
  77.         movb        $0x02,        %ah
  78.         int        $0x10
  79.         ret

  80. enable_a20:
  81.         inb        $0x92, %al
  82.         orb        0x02, %al
  83.         outb        %al, $0x92
  84.         ret

  85. msg1:
  86.         .byte 13,10
  87.         .ascii "Loading"

  88. msg2:
  89.         .byte 13,10
  90.         .ascii "Enabling protection"

  91. scrpos:
  92.         .byte 0x00
  93.         .byte 0x00

  94. gdt:
  95.      .word 0, 0, 0, 0

  96.      .word 0x07ff
  97.      .word 0x0000
  98.      .word 0x9A00
  99.      .word 0x00c0

  100.      .word 0x07ff
  101.      .word 0x0000
  102.      .word 0x9200
  103.      .word 0x00c0

  104. gdt_48: .word 0x18
  105.         .word 0x7c00+gdt, 0

  106. idt_48: .word 0, 0, 0

  107. .org 510
  108. boot_flag: .word 0xAA55







  109. head.s文件代码:

  110. LATCH                = 11930
  111. SCRN_SEL        = 0x18
  112. TSS0_SEL        = 0x20
  113. LDT0_SEL        = 0x28
  114. TSS1_SEL        = 0x30
  115. LDT1_SEL        = 0x38

  116. .global _start
  117. .text
  118. _start:

  119.         movl        $0x10, %eax
  120.         movw        %ax, %ds
  121.         lss        init_stack, %esp

  122.         call        setup_idt
  123.         call        setup_gdt
  124.         movl        $0x10, %eax
  125.         movw        %ax, %ds
  126.         movw        %ax, %es
  127.         movw        %ax, %fs
  128.         movw        %ax, %gs
  129.         lss        init_stack, %esp

  130.         movb        $0x36, %al
  131.         movl        $0x43, %edx
  132.         outb        %al, %dx
  133.         movl        $LATCH, %eax
  134.         movl        $0x40, %edx
  135.         outb        %al, %dx
  136.         movb        %ah, %al
  137.         outb        %al, %dx

  138.         movl        $0x00080000, %eax
  139.         movw        $timer_interrupt, %ax
  140.         movl        $0x8E00, %edx
  141.         movl        $0x08, %ecx
  142.         lea        idt(,%ecx,8), %esi
  143.         movl        %eax, (%esi)
  144.         movl        %edx, 4(%esi)

  145.         movw        $system_interrupt, %ax
  146.         movw        $0xef00, %dx
  147.         movl         $0x80, %ecx
  148.         lea        idt(,%ecx,8), %esi
  149.         movl        %eax, (%esi)
  150.         movl        %edx, 4(%esi)

  151.         pushfl
  152.         andl        $0xffffbfff, (%esp)
  153.         popfl
  154.         movl        $TSS0_SEL, %eax
  155.         ltr        %ax
  156.         movl        $LDT0_SEL, %eax
  157.         lldt        %ax
  158.         movl        $0,current
  159.         sti
  160.         pushl        $0x17
  161.         pushl        $init_stack
  162.         pushfl
  163.         pushl        $0x0f
  164.         pushl        $task0
  165.         iret
  166.        

  167. setup_gdt:
  168.         lgdt lgdt_opcode
  169.         ret

  170. setup_idt:
  171.         lea        ignore_int, %edx
  172.         movl        $0x00080000, %eax
  173.         movw        %dx, %ax
  174.         movw        $0x8e00, %dx
  175.         lea        idt, %edi
  176.         mov        $256, %ecx
  177. rp_idt:
  178.         movl        %eax, (%edi)
  179.         movl        %edx, 4(%edi)
  180.         addl        $8, %edi
  181.         dec        %ecx
  182.         jne        rp_idt
  183.         lidt        lidt_opcode
  184.         ret

  185. write_char:
  186.         pushw        %gs
  187.         pushl        %ebx
  188.         movl        $0xb8000, %ebx
  189.         addl        scr_loc, %ebx
  190.         shl        $1,%ebx
  191.         movb        %al, %gs:(%ebx)
  192.         shr        $1, %ebx
  193.         incl        %ebx
  194.         cmpl        $2000, %ebx
  195.         jb        1f
  196.         movl        $0, %ebx
  197. 1:        movl        %ebx, scr_loc
  198.         popl        %ebx
  199.         popl        %gs
  200.         ret

  201. writechar:
  202.         pushl        %ebx
  203.         movl        scr_loc, %ebx
  204.         shll        $0x1, %ebx
  205.         pushl        %ebx
  206.         addl         $0xb8000, %ebx
  207.         xorb        %ah, %ah
  208.         addb        $0x0c, %ah
  209.         movw        %ax, (%ebx)
  210.         popl        %ebx
  211.         shrl        $1, %ebx
  212.         incl        %ebx
  213.         movl        %ebx, scr_loc
  214.         call        delay
  215.         popl        %ebx
  216.         ret

  217. ignore_int:
  218.         pushw        %ds
  219.         pushl        %eax
  220.         movl        $0x10, %eax
  221.         movw        %ax, %ds
  222.         movb        $67, %al
  223.         call        writechar
  224.         popl        %eax
  225.         pop        %ds
  226.         iret

  227. timer_interrupt:
  228.         pushw        %ds
  229.         pushl        %eax
  230.         movl        $0x10, %eax
  231.         mov        %ax,%ds
  232.         movb        $0x20, %al
  233.         outb         %al, $0x20
  234.         movl        $1, %eax
  235.         cmpl        %eax, current
  236.         je        1f
  237.         movl        %eax, current
  238.         ljmp        $TSS1_SEL, $0
  239.         jmp        2f
  240. 1:        movl        $0, current
  241.         ljmp        $TSS0_SEL, $0
  242. 2:        popl        %eax
  243.         pop        %ds
  244.         iret

  245. system_interrupt:
  246.         pushw        %ds
  247.         pushl        %edx
  248.         pushl        %ecx
  249.         pushl        %edx
  250.         push        %eax
  251.         movl        $0x10, %edx
  252.         movw        %dx, %ds
  253.         call        writechar
  254.         popl        %eax
  255.         popl        %edx
  256.         popl        %ebx
  257.         popl        %ecx
  258.         popl        %edx
  259.         popw        %ds
  260.         iret

  261. check_data32:
  262.         pusha
  263.         movl        scr_pos, %edi
  264.         shll        $4, %edi
  265.         movl        value, %esi
  266.         addl        $0xb8000, %edi
  267.         movl        $0xf0000000, %eax
  268.         movb        $28, %cl
  269. 4:
  270.         movl        %esi, %edx
  271.         andl        %eax, %edx
  272.         shr        %cl, %edx
  273.         addw        $0x30, %dx
  274.         cmp        $0x3a, %dx
  275.         jb        5f
  276.         add        $0x07, %dx
  277. 5:
  278.         add        $0xc00, %dx
  279.         movw        %dx, (%edi)
  280.         subb        $0x04, %cl
  281.         shrl        $0x04, %eax
  282.         addl        $0x02, %edi
  283.         cmpl        $0x0, %eax
  284.         jnz        4b
  285.         call        delay
  286.         incl        (scr_pos)
  287.         incl        (value)
  288.         popa
  289.         ret

  290. delay:
  291.         pushl        %ecx
  292.         movl        $0xfffffff, %ecx
  293. dly:        loop        dly       
  294.         popl        %ecx
  295.         ret
  296.        
  297. current: .long 0
  298. scr_loc: .long 0x00
  299. scr_pos: .long 0
  300. value:         .long 0

  301. lidt_opcode:
  302.         .word 256*8-1
  303.         .long idt

  304. lgdt_opcode:
  305.         .word        8*8-1
  306.         .long gdt

  307. .align 8
  308. idt:        .fill        256, 8, 0

  309. .align 8
  310. gdt:       
  311.         .quad        0x0000000000000000
  312.         .quad        0x00c09a00000003ff
  313.         .quad        0x00c09200000003ff
  314.         .quad        0x00c0920b80000002
  315.         .word        0x68, tss0, 0xe900, 0x0
  316.         .word        0x40, ldt0, 0xe200, 0x0
  317.         .word        0x68, tss1, 0xe900, 0x0
  318.         .word        0x40, ldt1, 0xe200, 0x0
  319.        
  320.         .fill 128, 4 ,0

  321. .align 4
  322. init_stack:
  323.         .long init_stack
  324.         .word 0x10

  325. .align        8
  326. ldt0:
  327.         .quad        0x0000000000000000
  328.         .quad        0x00c0fa00000003ff
  329.         .quad        0x00c0f200000003ff
  330.        
  331. .align 8
  332. tss0:
  333.         .long         0
  334.         .long         krn_stk0,0x10
  335.         .long         0,0,0,0,0
  336.         .long         0,0,0,0,0
  337.         .long         0,0,0,0,0
  338.         .long         0,0,0,0,0,0
  339.         .long        LDT0_SEL, 0x8000000

  340.         .fill        128,4,0
  341. krn_stk0:

  342. .align         8
  343. ldt1:
  344.         .quad        0x0000000000000000
  345.         .quad        0x00c0fa00000003ff
  346.         .quad        0x00c0f200000003ff

  347. .align 8
  348. tss1:
  349.         .long         0
  350.         .long        krn_stk0,0x10
  351.         .long         0, 0, 0, 0, 0
  352.         .long         task1, 0x200       
  353.         .long         0, 0, 0, 0
  354.         .long         usr_stk1, 0, 0, 0
  355.         .long        0x17, 0x17, 0x17, 0x17, 0x17, 0x17
  356.         .long         LDT1_SEL, 0x8000000
  357.        
  358.         .fill        128,4,0
  359. krn_stk1:

  360. task0:
  361.         movw        $0x10, %ax
  362.         movw        %ax, %ds
  363.         movb        $65, %al
  364.         int        $0x80
  365.         movl        $0xffffff, %ecx
  366. 1:       
  367.         loop         1b
  368.         jmp        task0

  369. task1:
  370.         movw        $0x10, %ax
  371.         movw        %ax, %ds
  372.         movb        $66, %al
  373.         int        $0x80
  374.         movl        $0xffffff, %ecx
  375. 1:
  376.         loop         1b       
  377.         jmp        task1

  378.         .fill        128, 4, 0
  379. usr_stk1:



  380. Makefile文件内容:
  381. AS        = as
  382. LD        = ld
  383. LDFLAG        = -Ttext 0x00 -s -x --oformat binary
  384. deleting = *.o boot head

  385. image: boot head
  386.         cat boot head >image
  387.         (dd bs=512 if=image of=/dev/fd0 count=12; rm $(deleting); sync)

  388. .s.o:
  389.         $(AS) -o $@ $<
  390. boot:boot.o
  391.         $(LD) $(LDFLAG) -o $@ $<
  392. head:head.o
  393.         $(LD) $(LDFLAG) -o $@ $<

  394. clean:
  395.         rm *.o boot head


复制代码

论坛徽章:
0
2 [报告]
发表于 2006-05-04 06:48 |只看该作者

悲啊!这么大的一个论坛,没一个人能(愿)回答

失望

论坛徽章:
0
3 [报告]
发表于 2006-05-04 08:26 |只看该作者
我看这位兄弟先学做人比较好一些
http://bbs.chinaunix.net/viewthr ... p;page=2#pid5107308
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP