probe_64.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright 2004 James Cleverdon, IBM.
  3. * Subject to the GNU Public License, v.2
  4. *
  5. * Generic APIC sub-arch probe layer.
  6. *
  7. * Hacked for x86-64 by James Cleverdon from i386 architecture code by
  8. * Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and
  9. * James Cleverdon.
  10. */
  11. #include <linux/threads.h>
  12. #include <linux/cpumask.h>
  13. #include <linux/string.h>
  14. #include <linux/init.h>
  15. #include <linux/kernel.h>
  16. #include <linux/ctype.h>
  17. #include <linux/hardirq.h>
  18. #include <linux/dmar.h>
  19. #include <asm/smp.h>
  20. #include <asm/apic.h>
  21. #include <asm/ipi.h>
  22. #include <asm/setup.h>
  23. /*
  24. * Check the APIC IDs in bios_cpu_apicid and choose the APIC mode.
  25. */
  26. void __init default_setup_apic_routing(void)
  27. {
  28. struct apic **drv;
  29. enable_IR_x2apic();
  30. for (drv = __apicdrivers; drv < __apicdrivers_end; drv++) {
  31. if ((*drv)->probe && (*drv)->probe()) {
  32. if (apic != *drv) {
  33. apic = *drv;
  34. pr_info("Switched APIC routing to %s.\n",
  35. apic->name);
  36. }
  37. break;
  38. }
  39. }
  40. if (x86_platform.apic_post_init)
  41. x86_platform.apic_post_init();
  42. }
  43. /* Same for both flat and physical. */
  44. void apic_send_IPI_self(int vector)
  45. {
  46. __default_send_IPI_shortcut(APIC_DEST_SELF, vector, APIC_DEST_PHYSICAL);
  47. }
  48. int __init default_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
  49. {
  50. struct apic **drv;
  51. for (drv = __apicdrivers; drv < __apicdrivers_end; drv++) {
  52. if ((*drv)->acpi_madt_oem_check(oem_id, oem_table_id)) {
  53. if (apic != *drv) {
  54. apic = *drv;
  55. pr_info("Setting APIC routing to %s.\n",
  56. apic->name);
  57. }
  58. return 1;
  59. }
  60. }
  61. return 0;
  62. }