apic.c 23 KB

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