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/module.h>
  15. #include <linux/kernel.h>
  16. #include <linux/ctype.h>
  17. #include <linux/init.h>
  18. #include <linux/hardirq.h>
  19. #include <linux/dmar.h>
  20. #include <asm/smp.h>
  21. #include <asm/apic.h>
  22. #include <asm/ipi.h>
  23. #include <asm/setup.h>
  24. /*
  25. * Check the APIC IDs in bios_cpu_apicid and choose the APIC mode.
  26. */
  27. void __init default_setup_apic_routing(void)
  28. {
  29. struct apic **drv;
  30. enable_IR_x2apic();
  31. for (drv = __apicdrivers; drv < __apicdrivers_end; drv++) {
  32. if ((*drv)->probe && (*drv)->probe()) {
  33. if (apic != *drv) {
  34. apic = *drv;
  35. pr_info("Switched APIC routing to %s.\n",
  36. apic->name);
  37. }
  38. break;
  39. }
  40. }
  41. if (x86_platform.apic_post_init)
  42. x86_platform.apic_post_init();
  43. }
  44. /* Same for both flat and physical. */
  45. void apic_send_IPI_self(int vector)
  46. {
  47. __default_send_IPI_shortcut(APIC_DEST_SELF, vector, APIC_DEST_PHYSICAL);
  48. }
  49. int __init default_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
  50. {
  51. struct apic **drv;
  52. for (drv = __apicdrivers; drv < __apicdrivers_end; drv++) {
  53. if ((*drv)->acpi_madt_oem_check(oem_id, oem_table_id)) {
  54. if (apic != *drv) {
  55. apic = *drv;
  56. pr_info("Setting APIC routing to %s.\n",
  57. apic->name);
  58. }
  59. return 1;
  60. }
  61. }
  62. return 0;
  63. }