smp.c 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #include "smp.h"
  2. #include "../common/kprint.h"
  3. #include "../driver/interrupt/apic/apic.h"
  4. #include "../exception/gate.h"
  5. #include "../common/cpu.h"
  6. #include "../mm/slab.h"
  7. #include "../process/process.h"
  8. static struct acpi_Processor_Local_APIC_Structure_t *proc_local_apic_structs[MAX_SUPPORTED_PROCESSOR_NUM];
  9. static uint32_t total_processor_num = 0;
  10. int current_starting_cpu = 0;
  11. void smp_init()
  12. {
  13. ul tmp_vaddr[MAX_SUPPORTED_PROCESSOR_NUM] = {0};
  14. apic_get_ics(ACPI_ICS_TYPE_PROCESSOR_LOCAL_APIC, tmp_vaddr, &total_processor_num);
  15. kdebug("processor num=%d", total_processor_num);
  16. for (int i = 0; i < total_processor_num; ++i)
  17. proc_local_apic_structs[i] = (struct acpi_Processor_Local_APIC_Structure_t *)(tmp_vaddr[i]);
  18. //*(uchar *)0x20000 = 0xf4; // 在内存的0x20000处写入HLT指令(AP处理器会执行物理地址0x20000的代码)
  19. // 将引导程序复制到物理地址0x20000处
  20. memcpy((unsigned char *)0x20000, _apu_boot_start, (unsigned long)&_apu_boot_end - (unsigned long)&_apu_boot_start);
  21. wrmsr(0x830, 0xc4500); // init IPI
  22. struct INT_CMD_REG icr_entry;
  23. icr_entry.dest_mode = DEST_PHYSICAL;
  24. icr_entry.deliver_status = IDLE;
  25. icr_entry.res_1 = 0;
  26. icr_entry.level = ICR_LEVEL_DE_ASSERT;
  27. icr_entry.trigger = EDGE_TRIGGER;
  28. icr_entry.res_2 = 0;
  29. icr_entry.res_3 = 0;
  30. for (int i = 1; i < total_processor_num; ++i) // i从1开始,不初始化bsp
  31. {
  32. current_starting_cpu = i;
  33. kdebug("[core %d] acpi processor UID=%d, APIC ID=%d, flags=%#010lx", i, proc_local_apic_structs[i]->ACPI_Processor_UID, proc_local_apic_structs[i]->ACPI_ID, proc_local_apic_structs[i]->flags);
  34. // 为每个AP处理器分配栈空间、tss空间
  35. cpu_core_info[i].stack_start = (uint64_t)kmalloc(STACK_SIZE, 0) + STACK_SIZE;
  36. cpu_core_info[i].tss_vaddr = (uint64_t)kmalloc(128, 0);
  37. set_tss_descriptor(10 + (i * 2), (void *)(cpu_core_info[i].tss_vaddr));
  38. set_TSS64(cpu_core_info[i].tss_vaddr, cpu_core_info[i].stack_start, cpu_core_info[i].stack_start, cpu_core_info[i].stack_start, cpu_core_info[i].stack_start, cpu_core_info[i].stack_start, cpu_core_info[i].stack_start, cpu_core_info[i].stack_start, cpu_core_info[i].stack_start, cpu_core_info[i].stack_start);
  39. kdebug("GDT Table %#018lx, \t %#018lx", GDT_Table[10 + i * 2], GDT_Table[10 + i * 2 + 1]);
  40. icr_entry.vector = 0x20;
  41. icr_entry.deliver_mode = ICR_Start_up;
  42. icr_entry.dest_shorthand = ICR_No_Shorthand;
  43. icr_entry.destination.x2apic_destination = current_starting_cpu;
  44. // 先init ipi, 然后连续发送两次start-up IPI
  45. // x2APIC下,ICR寄存器地址为0x830
  46. // xAPIC下则为0xfee00300(31-0) 0xfee00310 (63-32)
  47. wrmsr(0x830, *(ul *)&icr_entry); // start-up IPI
  48. wrmsr(0x830, *(ul *)&icr_entry); // start-up IPI
  49. }
  50. }
  51. /**
  52. * @brief AP处理器启动后执行的第一个函数
  53. *
  54. */
  55. void smp_ap_start()
  56. {
  57. ksuccess("AP core successfully started!");
  58. kdebug("current=%d", current_starting_cpu);
  59. load_TR(10 + current_starting_cpu * 2);
  60. apic_init_ap_core_local_apic();
  61. int a =1/0; // 在这儿会出现异常,cs fs gs ss寄存器会被改变
  62. hlt();
  63. }