apic.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742
  1. #include "apic.h"
  2. #include <common/kprint.h>
  3. #include <common/printk.h>
  4. #include <common/cpu.h>
  5. #include <common/glib.h>
  6. #include <exception/gate.h>
  7. #include <driver/acpi/acpi.h>
  8. #include <exception/softirq.h>
  9. #include <process/process.h>
  10. #include <sched/sched.h>
  11. #pragma GCC push_options
  12. #pragma GCC optimize("O0")
  13. // 导出定义在irq.c中的中段门表
  14. extern void (*interrupt_table[24])(void);
  15. bool flag_support_apic = false;
  16. bool flag_support_x2apic = false;
  17. uint local_apic_version;
  18. uint local_apic_max_LVT_entries;
  19. static struct acpi_Multiple_APIC_Description_Table_t *madt;
  20. static struct acpi_IO_APIC_Structure_t *io_apic_ICS;
  21. #define send_EOI() \
  22. do \
  23. { \
  24. __asm__ __volatile__("movq $0x00, %%rdx \n\t" \
  25. "movq $0x00, %%rax \n\t" \
  26. "movq $0x80b, %%rcx \n\t" \
  27. "wrmsr \n\t" :: \
  28. : "memory"); \
  29. } while (0)
  30. /**
  31. * @brief 初始化io_apic
  32. *
  33. */
  34. void apic_io_apic_init()
  35. {
  36. ul madt_addr;
  37. acpi_iter_SDT(acpi_get_MADT, &madt_addr);
  38. madt = (struct acpi_Multiple_APIC_Description_Table_t *)madt_addr;
  39. // kdebug("MADT->local intr controller addr=%#018lx", madt->Local_Interrupt_Controller_Address);
  40. // kdebug("MADT->length= %d bytes", madt->header.Length);
  41. // 寻找io apic的ICS
  42. void *ent = (void *)(madt_addr) + sizeof(struct acpi_Multiple_APIC_Description_Table_t);
  43. struct apic_Interrupt_Controller_Structure_header_t *header = (struct apic_Interrupt_Controller_Structure_header_t *)ent;
  44. while (header->length > 2)
  45. {
  46. header = (struct apic_Interrupt_Controller_Structure_header_t *)ent;
  47. if (header->type == 1)
  48. {
  49. struct acpi_IO_APIC_Structure_t *t = (struct acpi_IO_APIC_Structure_t *)ent;
  50. // kdebug("IO apic addr = %#018lx", t->IO_APIC_Address);
  51. io_apic_ICS = t;
  52. break;
  53. }
  54. ent += header->length;
  55. }
  56. // kdebug("Global_System_Interrupt_Base=%d", io_apic_ICS->Global_System_Interrupt_Base);
  57. apic_ioapic_map.addr_phys = io_apic_ICS->IO_APIC_Address;
  58. apic_ioapic_map.virtual_index_addr = (unsigned char *)APIC_IO_APIC_VIRT_BASE_ADDR;
  59. apic_ioapic_map.virtual_data_addr = (uint *)(APIC_IO_APIC_VIRT_BASE_ADDR + 0x10);
  60. apic_ioapic_map.virtual_EOI_addr = (uint *)(APIC_IO_APIC_VIRT_BASE_ADDR + 0x40);
  61. // kdebug("(ul)apic_ioapic_map.virtual_index_addr=%#018lx", (ul)apic_ioapic_map.virtual_index_addr);
  62. // 填写页表,完成地址映射
  63. mm_map_phys_addr((ul)apic_ioapic_map.virtual_index_addr, apic_ioapic_map.addr_phys, PAGE_2M_SIZE, PAGE_KERNEL_PAGE | PAGE_PWT | PAGE_PCD, false);
  64. // 设置IO APIC ID 为0x0f000000
  65. *apic_ioapic_map.virtual_index_addr = 0x00;
  66. io_mfence();
  67. *apic_ioapic_map.virtual_data_addr = 0x0f000000;
  68. io_mfence();
  69. // kdebug("I/O APIC ID:%#010x", ((*apic_ioapic_map.virtual_data_addr) >> 24) & 0xff);
  70. io_mfence();
  71. // 获取IO APIC Version
  72. *apic_ioapic_map.virtual_index_addr = 0x01;
  73. io_mfence();
  74. kdebug("IO APIC Version=%d, Max Redirection Entries=%d", *apic_ioapic_map.virtual_data_addr & 0xff, (((*apic_ioapic_map.virtual_data_addr) >> 16) & 0xff) + 1);
  75. // 初始化RTE表项,将所有RTE表项屏蔽
  76. for (int i = 0x10; i < 0x40; i += 2)
  77. {
  78. // 以0x20为起始中断向量号,初始化RTE
  79. apic_ioapic_write_rte(i, 0x10020 + ((i - 0x10) >> 1));
  80. }
  81. // 不需要手动启动IO APIC,只要初始化了RTE寄存器之后,io apic就会自动启用了。
  82. // 而且不是每台电脑都有RCBA寄存器,因此不需要手动启用IO APIC
  83. /*
  84. // get RCBA address
  85. io_out32(0xcf8, 0x8000f8f0);
  86. uint x = io_in32(0xcfc);
  87. uint *p;
  88. printk_color(RED, BLACK, "Get RCBA Address:%#010x\n", x);
  89. x = x & 0xffffc000UL;
  90. printk_color(RED, BLACK, "Get RCBA Address:%#010x\n", x);
  91. // get OIC address
  92. if (x > 0xfec00000 && x < 0xfee00000)
  93. {
  94. p = (unsigned int *)(x + 0x31feUL-apic_ioapic_map.addr_phys+apic_ioapic_map.virtual_index_addr);
  95. }
  96. // enable IOAPIC
  97. x = (*p & 0xffffff00) | 0x100;
  98. io_mfence();
  99. *p = x;
  100. io_mfence();
  101. */
  102. }
  103. /**
  104. * @brief 初始化AP处理器的Local apic
  105. *
  106. */
  107. void apic_init_ap_core_local_apic()
  108. {
  109. kinfo("Initializing AP-core's local apic...");
  110. uint eax, edx;
  111. // 启用xAPIC 和x2APIC
  112. __asm__ __volatile__("movq $0x1b, %%rcx \n\t" // 读取IA32_APIC_BASE寄存器
  113. "rdmsr \n\t"
  114. "bts $10, %%rax \n\t"
  115. "bts $11, %%rax \n\t"
  116. "wrmsr \n\t"
  117. "movq $0x1b, %%rcx \n\t"
  118. "rdmsr \n\t"
  119. : "=a"(eax), "=d"(edx)::"memory");
  120. // kdebug("After enable xAPIC and x2APIC: edx=%#010x, eax=%#010x", edx, eax);
  121. // 检测是否成功启用xAPIC和x2APIC
  122. if (eax & 0xc00)
  123. kinfo("xAPIC & x2APIC enabled!");
  124. // 设置SVR寄存器,开启local APIC、禁止EOI广播
  125. // enable SVR[8]
  126. __asm__ __volatile__("movq $0x80f, %%rcx \n\t"
  127. "rdmsr \n\t"
  128. "bts $8, %%rax \n\t"
  129. // "bts $12, %%rax\n\t"
  130. "wrmsr \n\t"
  131. "movq $0x80f, %%rcx \n\t"
  132. "rdmsr \n\t"
  133. : "=a"(eax), "=d"(edx)
  134. :
  135. : "memory");
  136. if (eax & 0x100)
  137. printk_color(RED, YELLOW, "SVR[8] enabled\n");
  138. if (edx & 0x1000)
  139. printk_color(RED, YELLOW, "SVR[12] enabled\n");
  140. // get local APIC ID
  141. __asm__ __volatile__("movq $0x802, %%rcx \n\t"
  142. "rdmsr \n\t"
  143. : "=a"(eax), "=d"(edx)
  144. :
  145. : "memory");
  146. printk_color(RED, YELLOW, "x2APIC ID:%#010x\n", eax);
  147. // 由于尚未配置LVT对应的处理程序,因此先屏蔽所有的LVT
  148. // mask all LVT
  149. __asm__ __volatile__( //"movq $0x82f, %%rcx \n\t" //CMCI
  150. //"wrmsr \n\t"
  151. "movq $0x832, %%rcx \n\t" // Timer
  152. "wrmsr \n\t"
  153. "movq $0x833, %%rcx \n\t" // Thermal Monitor
  154. "wrmsr \n\t"
  155. "movq $0x834, %%rcx \n\t" // Performance Counter
  156. "wrmsr \n\t"
  157. "movq $0x835, %%rcx \n\t" // LINT0
  158. "wrmsr \n\t"
  159. "movq $0x836, %%rcx \n\t" // LINT1
  160. "wrmsr \n\t"
  161. "movq $0x837, %%rcx \n\t" // Error
  162. "wrmsr \n\t"
  163. :
  164. : "a"(0x10000), "d"(0x00)
  165. : "memory");
  166. kdebug("All LVT Masked");
  167. }
  168. /**
  169. * @brief 初始化local apic
  170. *
  171. */
  172. void apic_local_apic_init()
  173. {
  174. // 映射Local APIC 寄存器地址
  175. mm_map_phys_addr(APIC_LOCAL_APIC_VIRT_BASE_ADDR, 0xfee00000UL, PAGE_2M_SIZE, PAGE_KERNEL_PAGE | PAGE_PWT | PAGE_PCD, false);
  176. uint a, b, c, d;
  177. cpu_cpuid(1, 0, &a, &b, &c, &d);
  178. // kdebug("CPUID 0x01, eax:%#010lx, ebx:%#010lx, ecx:%#010lx, edx:%#010lx", a, b, c, d);
  179. // 判断是否支持APIC和xAPIC
  180. if ((1 << 9) & d)
  181. {
  182. flag_support_apic = true;
  183. kdebug("This computer support APIC&xAPIC");
  184. }
  185. else
  186. {
  187. flag_support_apic = false;
  188. kerror("This computer does not support APIC&xAPIC");
  189. while (1)
  190. ;
  191. }
  192. // 判断是否支持x2APIC
  193. if ((1 << 21) & c)
  194. {
  195. flag_support_x2apic = true;
  196. kdebug("This computer support x2APIC");
  197. }
  198. else
  199. {
  200. kerror("This computer does not support x2APIC");
  201. }
  202. uint eax, edx;
  203. // 启用xAPIC 和x2APIC
  204. __asm__ __volatile__("movq $0x1b, %%rcx \n\t" // 读取IA32_APIC_BASE寄存器
  205. "rdmsr \n\t"
  206. "bts $10, %%rax \n\t"
  207. "bts $11, %%rax \n\t"
  208. "wrmsr \n\t"
  209. "movq $0x1b, %%rcx \n\t"
  210. "rdmsr \n\t"
  211. : "=a"(eax), "=d"(edx)::"memory");
  212. // kdebug("After enable xAPIC and x2APIC: edx=%#010x, eax=%#010x", edx, eax);
  213. // 检测是否成功启用xAPIC和x2APIC
  214. if (eax & 0xc00)
  215. kinfo("xAPIC & x2APIC enabled!");
  216. /*
  217. io_mfence();
  218. uint *svr = (uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_SVR);
  219. uint tmp_svr = *svr;
  220. tmp_svr &= (~(1 << 12));
  221. tmp_svr |= (1 << 8);
  222. kdebug("tmp_svr = %#018lx", tmp_svr);
  223. io_mfence();
  224. *svr = tmp_svr;
  225. io_mfence();
  226. kdebug("svr = %#018lx", *svr);
  227. */
  228. // 设置SVR寄存器,开启local APIC、禁止EOI广播
  229. __asm__ __volatile__("movq $0x80f, %%rcx \n\t"
  230. "rdmsr \n\t"
  231. "bts $8, %%rax \n\t"
  232. // "bts $12, %%rax \n\t"
  233. "movq $0x80f, %%rcx \n\t"
  234. "wrmsr \n\t"
  235. "movq $0x80f , %%rcx \n\t"
  236. "rdmsr \n\t"
  237. : "=a"(eax), "=d"(edx)::"memory");
  238. /*
  239. //enable SVR[8]
  240. __asm__ __volatile__( "movq $0x80f, %%rcx \n\t"
  241. "rdmsr \n\t"
  242. "bts $8, %%rax \n\t"
  243. "bts $12,%%rax\n\t"
  244. "wrmsr \n\t"
  245. "movq $0x80f, %%rcx \n\t"
  246. "rdmsr \n\t"
  247. :"=a"(eax),"=d"(edx)
  248. :
  249. :"memory");
  250. */
  251. // kdebug("After setting SVR: edx=%#010x, eax=%#010x", edx, eax);
  252. if (eax & 0x100)
  253. kinfo("APIC Software Enabled.");
  254. if (eax & 0x1000)
  255. kinfo("EOI-Broadcast Suppression Enabled.");
  256. // 获取Local APIC的基础信息 (参见英特尔开发手册Vol3A 10-39)
  257. // Table 10-6. Local APIC Register Address Map Supported by x2APIC
  258. // 获取 Local APIC ID
  259. // 0x802处是x2APIC ID 位宽32bits 的 Local APIC ID register
  260. /*
  261. __asm__ __volatile__("movq $0x802, %%rcx \n\t"
  262. "rdmsr \n\t"
  263. : "=a"(eax), "=d"(edx)::"memory");
  264. */
  265. // kdebug("get Local APIC ID: edx=%#010x, eax=%#010x", edx, eax);
  266. // kdebug("local_apic_id=%#018lx", *(uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_ID));
  267. // 获取Local APIC Version
  268. // 0x803处是 Local APIC Version register
  269. __asm__ __volatile__("movq $0x803, %%rcx \n\t"
  270. "rdmsr \n\t"
  271. : "=a"(eax), "=d"(edx)::"memory");
  272. local_apic_max_LVT_entries = ((eax >> 16) & 0xff) + 1;
  273. local_apic_version = eax & 0xff;
  274. kdebug("local APIC Version:%#010x,Max LVT Entry:%#010x,SVR(Suppress EOI Broadcast):%#04x\t", local_apic_version, local_apic_max_LVT_entries, (eax >> 24) & 0x1);
  275. if ((eax & 0xff) < 0x10)
  276. {
  277. kdebug("82489DX discrete APIC");
  278. }
  279. else if (((eax & 0xff) >= 0x10) && ((eax & 0xff) <= 0x15))
  280. kdebug("Integrated APIC.");
  281. // 由于尚未配置LVT对应的处理程序,因此先屏蔽所有的LVT
  282. // mask all LVT
  283. __asm__ __volatile__( //"movq $0x82f, %%rcx \n\t" //CMCI
  284. //"wrmsr \n\t"
  285. "movq $0x832, %%rcx \n\t" // Timer
  286. "wrmsr \n\t"
  287. "movq $0x833, %%rcx \n\t" // Thermal Monitor
  288. "wrmsr \n\t"
  289. "movq $0x834, %%rcx \n\t" // Performance Counter
  290. "wrmsr \n\t"
  291. "movq $0x835, %%rcx \n\t" // LINT0
  292. "wrmsr \n\t"
  293. "movq $0x836, %%rcx \n\t" // LINT1
  294. "wrmsr \n\t"
  295. "movq $0x837, %%rcx \n\t" // Error
  296. "wrmsr \n\t"
  297. :
  298. : "a"(0x10000), "d"(0x00)
  299. : "memory");
  300. /*
  301. io_mfence();
  302. *(uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_LVT_CMCI) = 0x1000000;
  303. io_mfence();
  304. kdebug("cmci = %#018lx", *(uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_LVT_CMCI));
  305. */
  306. *(uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_LVT_TIMER) = APIC_LVT_INT_MASKED;
  307. io_mfence();
  308. /*
  309. *(uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_LVT_THERMAL) = 0x1000000;
  310. io_mfence();
  311. *(uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_LVT_PERFORMANCE_MONITOR) = 0x1000000;
  312. io_mfence();
  313. *(uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_LVT_LINT0) = 0x1000000;
  314. io_mfence();
  315. *(uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_LVT_LINT1) = 0x1000000;
  316. io_mfence();
  317. *(uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_LVT_ERROR) = 0x1000000;
  318. io_mfence();
  319. */
  320. kdebug("All LVT Masked");
  321. /*
  322. // 获取TPR寄存器的值
  323. __asm__ __volatile__("movq $0x808, %%rcx \n\t"
  324. "rdmsr \n\t"
  325. : "=a"(eax), "=d"(edx)::"memory");
  326. kdebug("LVT_TPR=%#010x", eax);
  327. // 获取PPR寄存器的值
  328. __asm__ __volatile__("movq $0x80a, %%rcx \n\t"
  329. "rdmsr \n\t"
  330. : "=a"(eax), "=d"(edx)::"memory");
  331. kdebug("LVT_PPR=%#010x", eax);
  332. */
  333. }
  334. /**
  335. * @brief 初始化apic控制器
  336. *
  337. */
  338. void apic_init()
  339. {
  340. // 初始化中断门, 中断使用rsp0防止在软中断时发生嵌套,然后处理器重新加载导致数据被抹掉
  341. for (int i = 32; i <= 55; ++i)
  342. set_intr_gate(i, 0, interrupt_table[i - 32]);
  343. // 设置local apic中断门
  344. for (int i = 150; i < 160; ++i)
  345. set_intr_gate(i, 0, local_apic_interrupt_table[i - 150]);
  346. /*
  347. // 初始化主芯片
  348. io_out8(0x20, 0x11); // 初始化主芯片的icw1
  349. io_out8(0x21, 0x20); // 设置主芯片的中断向量号为0x20(0x20-0x27)
  350. io_out8(0x21, 0x04); // 设置int2端口级联从芯片
  351. io_out8(0x21, 0x01); // 设置为AEOI模式、FNM、无缓冲
  352. // 初始化从芯片
  353. io_out8(0xa0, 0x11);
  354. io_out8(0xa1, 0x28); // 设置从芯片的中断向量号为0x28(0x28-0x2f)
  355. io_out8(0xa1, 0x02); // 设置从芯片连接到主芯片的int2
  356. io_out8(0xa1, 0x01);
  357. */
  358. // 屏蔽类8259A芯片
  359. io_mfence();
  360. io_out8(0xa1, 0xff);
  361. io_mfence();
  362. io_out8(0x21, 0xff);
  363. io_mfence();
  364. kdebug("8259A Masked.");
  365. // enable IMCR
  366. io_out8(0x22, 0x70);
  367. io_out8(0x23, 0x01);
  368. apic_local_apic_init();
  369. apic_io_apic_init();
  370. // get RCBA address
  371. io_out32(0xcf8, 0x8000f8f0);
  372. uint32_t RCBA_phys = io_in32(0xcfc);
  373. // 获取RCBA寄存器的地址
  374. if (RCBA_phys > 0xfec00000 && RCBA_phys < 0xfee00000)
  375. RCBA_vaddr = SPECIAL_MEMOEY_MAPPING_VIRT_ADDR_BASE + RCBA_phys;
  376. else
  377. {
  378. RCBA_vaddr = 0;
  379. kwarn("Cannot get RCBA address. RCBA_phys=%#010lx", RCBA_phys);
  380. }
  381. sti();
  382. }
  383. /**
  384. * @brief 中断服务程序
  385. *
  386. * @param rsp 中断栈指针
  387. * @param number 中断向量号
  388. */
  389. void do_IRQ(struct pt_regs *rsp, ul number)
  390. {
  391. if (number < 0x80 && number >= 32) // 以0x80为界限,低于0x80的是外部中断控制器,高于0x80的是Local APIC
  392. {
  393. // ==========外部中断控制器========
  394. irq_desc_t *irq = &interrupt_desc[number - 32];
  395. // 执行中断上半部处理程序
  396. if (irq != NULL && irq->handler != NULL)
  397. irq->handler(number, irq->parameter, rsp);
  398. else
  399. kwarn("Intr vector [%d] does not have a handler!");
  400. // 向中断控制器发送应答消息
  401. if (irq->controller != NULL && irq->controller->ack != NULL)
  402. irq->controller->ack(number);
  403. else
  404. {
  405. // 向EOI寄存器写入0x00表示结束中断
  406. __asm__ __volatile__("movq $0x00, %%rdx \n\t"
  407. "movq $0x00, %%rax \n\t"
  408. "movq $0x80b, %%rcx \n\t"
  409. "wrmsr \n\t" ::
  410. : "memory");
  411. }
  412. }
  413. else if (number == 0x80) // 系统调用
  414. {
  415. // ps: 当前已经将系统调用直接使用系统调用门实现,不走这里。。
  416. do_syscall_int(rsp, 0);
  417. }
  418. else if (number >= 200)
  419. {
  420. // printk_color(RED, BLACK, "SMP IPI [ %d ]\n", number);
  421. apic_local_apic_edge_ack(number);
  422. {
  423. irq_desc_t *irq = &SMP_IPI_desc[number - 200];
  424. if (irq->handler != NULL)
  425. irq->handler(number, irq->parameter, rsp);
  426. }
  427. }
  428. else if (number >= 150 && number < 200)
  429. {
  430. irq_desc_t *irq = &local_apic_interrupt_desc[number - 150];
  431. // 执行中断上半部处理程序
  432. if (irq != NULL && irq->handler != NULL)
  433. irq->handler(number, irq->parameter, rsp);
  434. else
  435. kwarn("Intr vector [%d] does not have a handler!");
  436. // 向中断控制器发送应答消息
  437. if (irq->controller != NULL && irq->controller->ack != NULL)
  438. irq->controller->ack(number);
  439. else
  440. {
  441. // 向EOI寄存器写入0x00表示结束中断
  442. send_EOI();
  443. }
  444. }
  445. else
  446. {
  447. kwarn("do IRQ receive: %d", number);
  448. }
  449. // kdebug("before softirq");
  450. // 进入软中断处理程序
  451. do_softirq();
  452. // kdebug("after softirq");
  453. // 检测当前进程是否持有自旋锁,若持有自旋锁,则不进行抢占式的进程调度
  454. if (current_pcb->preempt_count > 0)
  455. return;
  456. else if (current_pcb->preempt_count < 0)
  457. kBUG("current_pcb->preempt_count<0! pid=%d", current_pcb->pid); // should not be here
  458. // 检测当前进程是否可被调度
  459. if (current_pcb->flags & PF_NEED_SCHED)
  460. {
  461. // kdebug("to sched");
  462. sched_cfs();
  463. }
  464. }
  465. /**
  466. * @brief 读取RTE寄存器
  467. * 由于RTE位宽为64位而IO window寄存器只有32位,因此需要两次读取
  468. * @param index 索引值
  469. * @return ul
  470. */
  471. ul apic_ioapic_read_rte(unsigned char index)
  472. {
  473. // 由于处理器的乱序执行的问题,需要加入内存屏障以保证结果的正确性。
  474. ul ret;
  475. // 先读取高32bit
  476. *apic_ioapic_map.virtual_index_addr = index + 1;
  477. io_mfence();
  478. ret = *apic_ioapic_map.virtual_data_addr;
  479. ret <<= 32;
  480. io_mfence();
  481. // 读取低32bit
  482. *apic_ioapic_map.virtual_index_addr = index;
  483. io_mfence();
  484. ret |= *apic_ioapic_map.virtual_data_addr;
  485. io_mfence();
  486. return ret;
  487. }
  488. /**
  489. * @brief 写入RTE寄存器
  490. *
  491. * @param index 索引值
  492. * @param value 要写入的值
  493. */
  494. void apic_ioapic_write_rte(unsigned char index, ul value)
  495. {
  496. // 先写入低32bit
  497. *apic_ioapic_map.virtual_index_addr = index;
  498. io_mfence();
  499. *apic_ioapic_map.virtual_data_addr = value & 0xffffffff;
  500. io_mfence();
  501. // 再写入高32bit
  502. value >>= 32;
  503. io_mfence();
  504. *apic_ioapic_map.virtual_index_addr = index + 1;
  505. io_mfence();
  506. *apic_ioapic_map.virtual_data_addr = value & 0xffffffff;
  507. io_mfence();
  508. }
  509. // =========== 中断控制操作接口 ============
  510. void apic_ioapic_enable(ul irq_num)
  511. {
  512. ul index = 0x10 + ((irq_num - 32) << 1);
  513. ul value = apic_ioapic_read_rte(index);
  514. value &= (~0x10000UL);
  515. apic_ioapic_write_rte(index, value);
  516. }
  517. void apic_ioapic_disable(ul irq_num)
  518. {
  519. ul index = 0x10 + ((irq_num - 32) << 1);
  520. ul value = apic_ioapic_read_rte(index);
  521. value |= (0x10000UL);
  522. apic_ioapic_write_rte(index, value);
  523. }
  524. ul apic_ioapic_install(ul irq_num, void *arg)
  525. {
  526. struct apic_IO_APIC_RTE_entry *entry = (struct apic_IO_APIC_RTE_entry *)arg;
  527. // RTE表项值写入对应的RTE寄存器
  528. apic_ioapic_write_rte(0x10 + ((irq_num - 32) << 1), *(ul *)entry);
  529. return 0;
  530. }
  531. void apic_ioapic_uninstall(ul irq_num)
  532. {
  533. // 将对应的RTE表项设置为屏蔽状态
  534. apic_ioapic_write_rte(0x10 + ((irq_num - 32) << 1), 0x10000UL);
  535. }
  536. void apic_ioapic_level_ack(ul irq_num) // 电平触发
  537. {
  538. // 向EOI寄存器写入0x00表示结束中断
  539. /*io_mfence();
  540. uint *eoi = (uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_EOI);
  541. *eoi = 0x00;
  542. io_mfence(); */
  543. __asm__ __volatile__("movq $0x00, %%rdx \n\t"
  544. "movq $0x00, %%rax \n\t"
  545. "movq $0x80b, %%rcx \n\t"
  546. "wrmsr \n\t" ::
  547. : "memory");
  548. *apic_ioapic_map.virtual_EOI_addr = irq_num;
  549. }
  550. void apic_ioapic_edge_ack(ul irq_num) // 边沿触发
  551. {
  552. // 向EOI寄存器写入0x00表示结束中断
  553. /*
  554. uint *eoi = (uint *)(APIC_LOCAL_APIC_VIRT_BASE_ADDR + LOCAL_APIC_OFFSET_Local_APIC_EOI);
  555. *eoi = 0x00;
  556. */
  557. __asm__ __volatile__("movq $0x00, %%rdx \n\t"
  558. "movq $0x00, %%rax \n\t"
  559. "movq $0x80b, %%rcx \n\t"
  560. "wrmsr \n\t" ::
  561. : "memory");
  562. }
  563. /**
  564. * @brief local apic 边沿触发应答
  565. *
  566. * @param irq_num
  567. */
  568. void apic_local_apic_edge_ack(ul irq_num)
  569. {
  570. // 向EOI寄存器写入0x00表示结束中断
  571. __asm__ __volatile__("movq $0x00, %%rdx \n\t"
  572. "movq $0x00, %%rax \n\t"
  573. "movq $0x80b, %%rcx \n\t"
  574. "wrmsr \n\t" ::
  575. : "memory");
  576. }
  577. /**
  578. * @brief 读取指定类型的 Interrupt Control Structure
  579. *
  580. * @param type ics的类型
  581. * @param ret_vaddr 对应的ICS的虚拟地址数组
  582. * @param total 返回数组的元素总个数
  583. * @return uint
  584. */
  585. uint apic_get_ics(const uint type, ul ret_vaddr[], uint *total)
  586. {
  587. void *ent = (void *)(madt) + sizeof(struct acpi_Multiple_APIC_Description_Table_t);
  588. struct apic_Interrupt_Controller_Structure_header_t *header = (struct apic_Interrupt_Controller_Structure_header_t *)ent;
  589. bool flag = false;
  590. uint cnt = 0;
  591. while (header->length > 2)
  592. {
  593. header = (struct apic_Interrupt_Controller_Structure_header_t *)ent;
  594. if (header->type == type)
  595. {
  596. ret_vaddr[cnt++] = (ul)ent;
  597. flag = true;
  598. }
  599. ent += header->length;
  600. }
  601. *total = cnt;
  602. if (!flag)
  603. return APIC_E_NOTFOUND;
  604. else
  605. return APIC_SUCCESS;
  606. }
  607. /**
  608. * @brief 构造RTE Entry结构体
  609. *
  610. * @param entry 返回的结构体
  611. * @param vector 中断向量
  612. * @param deliver_mode 投递模式
  613. * @param dest_mode 目标模式
  614. * @param deliver_status 投递状态
  615. * @param polarity 电平触发极性
  616. * @param irr 远程IRR标志位(只读)
  617. * @param trigger 触发模式
  618. * @param mask 屏蔽标志位,(0为未屏蔽, 1为已屏蔽)
  619. * @param dest_apicID 目标apicID
  620. */
  621. void apic_make_rte_entry(struct apic_IO_APIC_RTE_entry *entry, uint8_t vector, uint8_t deliver_mode, uint8_t dest_mode,
  622. uint8_t deliver_status, uint8_t polarity, uint8_t irr, uint8_t trigger, uint8_t mask, uint8_t dest_apicID)
  623. {
  624. entry->vector = vector;
  625. entry->deliver_mode = deliver_mode;
  626. entry->dest_mode = dest_mode;
  627. entry->deliver_status = deliver_status;
  628. entry->polarity = polarity;
  629. entry->remote_IRR = irr;
  630. entry->trigger_mode = trigger;
  631. entry->mask = mask;
  632. entry->reserved = 0;
  633. if (dest_mode == DEST_PHYSICAL)
  634. {
  635. entry->destination.physical.phy_dest = dest_apicID;
  636. entry->destination.physical.reserved1 = 0;
  637. entry->destination.physical.reserved2 = 0;
  638. }
  639. else
  640. {
  641. entry->destination.logical.logical_dest = dest_apicID;
  642. entry->destination.logical.reserved1 = 0;
  643. }
  644. }
  645. #pragma GCC pop_options