head64.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/x86_64/kernel/head64.c -- prepare to run common code
  3.  *
  4.  *  Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
  5.  *
  6.  *  $Id: head64.c,v 1.25 2002/07/01 08:01:19 ak Exp $
  7.  */
  8. #include <linux/init.h>
  9. #include <linux/linkage.h>
  10. #include <linux/types.h>
  11. #include <linux/kernel.h>
  12. #include <linux/string.h>
  13. #include <asm/processor.h>
  14. #include <asm/proto.h>
  15. static void __init clear_bss(void)
  16. {
  17. extern char __bss_start[], __bss_end[];
  18. printk("Clearing %ld bytes of bss...", (unsigned long) __bss_end - (unsigned long) __bss_start);
  19. memset(__bss_start, 0,
  20.        (unsigned long) __bss_end - (unsigned long) __bss_start);
  21. printk("okn");
  22. }
  23. extern char x86_boot_params[2048];
  24. #define NEW_CL_POINTER 0x228 /* Relative to real mode data */
  25. #define OLD_CL_MAGIC_ADDR 0x90020
  26. #define OLD_CL_MAGIC            0xA33F
  27. #define OLD_CL_BASE_ADDR        0x90000
  28. #define OLD_CL_OFFSET           0x90022
  29. extern char saved_command_line[];
  30. static void __init copy_bootdata(char *real_mode_data)
  31. {
  32. int new_data;
  33. char * command_line;
  34. memcpy(x86_boot_params, real_mode_data, 2048); 
  35. new_data = *(int *) (x86_boot_params + NEW_CL_POINTER);
  36. if (!new_data) {
  37. if (OLD_CL_MAGIC != * (u16 *) OLD_CL_MAGIC_ADDR) {
  38. printk("so old bootloader that it does not support commandline?!n");
  39. return;
  40. }
  41. new_data = OLD_CL_BASE_ADDR + * (u16 *) OLD_CL_OFFSET;
  42. printk("old bootloader convention, maybe loadlin?n");
  43. }
  44. command_line = (char *) ((u64)(new_data));
  45. memcpy(saved_command_line, command_line, 2048);
  46. printk("Bootdata ok (command line is %s)n", saved_command_line);
  47. }
  48. static void __init setup_boot_cpu_data(void)
  49. {
  50. int dummy, eax;
  51. /* get vendor info */
  52. cpuid(0, &boot_cpu_data.cpuid_level,
  53.       (int *)&boot_cpu_data.x86_vendor_id[0],
  54.       (int *)&boot_cpu_data.x86_vendor_id[8],
  55.       (int *)&boot_cpu_data.x86_vendor_id[4]);
  56. /* get cpu type */
  57. cpuid(1, &eax, &dummy, &dummy, (int *) &boot_cpu_data.x86_capability);
  58. boot_cpu_data.x86 = (eax >> 8) & 0xf;
  59. boot_cpu_data.x86_model = (eax >> 4) & 0xf;
  60. boot_cpu_data.x86_mask = eax & 0xf;
  61. }
  62. void __init x86_64_start_kernel(char * real_mode_data)
  63. {
  64. char *s; 
  65. clear_bss(); /* must be the first thing in C and must not depend on .bss to be zero */
  66. pda_init(0); 
  67. copy_bootdata(real_mode_data);
  68. s = strstr(saved_command_line, "earlyprintk="); 
  69. if (s != NULL)
  70. setup_early_printk(s+12); 
  71. early_printk("booting x86_64 kernel... ");
  72. setup_boot_cpu_data();
  73. start_kernel();
  74. }