bigsmp_32.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * APIC driver for "bigsmp" xAPIC machines with more than 8 virtual CPUs.
  4. *
  5. * Drives the local APIC in "clustered mode".
  6. */
  7. #include <linux/cpumask.h>
  8. #include <linux/dmi.h>
  9. #include <linux/smp.h>
  10. #include <asm/apic.h>
  11. #include <asm/io_apic.h>
  12. #include "local.h"
  13. static unsigned bigsmp_get_apic_id(unsigned long x)
  14. {
  15. return (x >> 24) & 0xFF;
  16. }
  17. static int bigsmp_apic_id_registered(void)
  18. {
  19. return 1;
  20. }
  21. static bool bigsmp_check_apicid_used(physid_mask_t *map, int apicid)
  22. {
  23. return false;
  24. }
  25. static int bigsmp_early_logical_apicid(int cpu)
  26. {
  27. /* on bigsmp, logical apicid is the same as physical */
  28. return early_per_cpu(x86_cpu_to_apicid, cpu);
  29. }
  30. /*
  31. * bigsmp enables physical destination mode
  32. * and doesn't use LDR and DFR
  33. */
  34. static void bigsmp_init_apic_ldr(void)
  35. {
  36. }
  37. static void bigsmp_setup_apic_routing(void)
  38. {
  39. printk(KERN_INFO
  40. "Enabling APIC mode: Physflat. Using %d I/O APICs\n",
  41. nr_ioapics);
  42. }
  43. static int bigsmp_cpu_present_to_apicid(int mps_cpu)
  44. {
  45. if (mps_cpu < nr_cpu_ids)
  46. return (int) per_cpu(x86_bios_cpu_apicid, mps_cpu);
  47. return BAD_APICID;
  48. }
  49. static void bigsmp_ioapic_phys_id_map(physid_mask_t *phys_map, physid_mask_t *retmap)
  50. {
  51. /* For clustered we don't have a good way to do this yet - hack */
  52. physids_promote(0xFFL, retmap);
  53. }
  54. static int bigsmp_check_phys_apicid_present(int phys_apicid)
  55. {
  56. return 1;
  57. }
  58. static int bigsmp_phys_pkg_id(int cpuid_apic, int index_msb)
  59. {
  60. return cpuid_apic >> index_msb;
  61. }
  62. static void bigsmp_send_IPI_allbutself(int vector)
  63. {
  64. default_send_IPI_mask_allbutself_phys(cpu_online_mask, vector);
  65. }
  66. static void bigsmp_send_IPI_all(int vector)
  67. {
  68. default_send_IPI_mask_sequence_phys(cpu_online_mask, vector);
  69. }
  70. static int dmi_bigsmp; /* can be set by dmi scanners */
  71. static int hp_ht_bigsmp(const struct dmi_system_id *d)
  72. {
  73. printk(KERN_NOTICE "%s detected: force use of apic=bigsmp\n", d->ident);
  74. dmi_bigsmp = 1;
  75. return 0;
  76. }
  77. static const struct dmi_system_id bigsmp_dmi_table[] = {
  78. { hp_ht_bigsmp, "HP ProLiant DL760 G2",
  79. { DMI_MATCH(DMI_BIOS_VENDOR, "HP"),
  80. DMI_MATCH(DMI_BIOS_VERSION, "P44-"),
  81. }
  82. },
  83. { hp_ht_bigsmp, "HP ProLiant DL740",
  84. { DMI_MATCH(DMI_BIOS_VENDOR, "HP"),
  85. DMI_MATCH(DMI_BIOS_VERSION, "P47-"),
  86. }
  87. },
  88. { } /* NULL entry stops DMI scanning */
  89. };
  90. static int probe_bigsmp(void)
  91. {
  92. if (def_to_bigsmp)
  93. dmi_bigsmp = 1;
  94. else
  95. dmi_check_system(bigsmp_dmi_table);
  96. return dmi_bigsmp;
  97. }
  98. static struct apic apic_bigsmp __ro_after_init = {
  99. .name = "bigsmp",
  100. .probe = probe_bigsmp,
  101. .acpi_madt_oem_check = NULL,
  102. .apic_id_valid = default_apic_id_valid,
  103. .apic_id_registered = bigsmp_apic_id_registered,
  104. .delivery_mode = APIC_DELIVERY_MODE_FIXED,
  105. .dest_mode_logical = false,
  106. .disable_esr = 1,
  107. .check_apicid_used = bigsmp_check_apicid_used,
  108. .init_apic_ldr = bigsmp_init_apic_ldr,
  109. .ioapic_phys_id_map = bigsmp_ioapic_phys_id_map,
  110. .setup_apic_routing = bigsmp_setup_apic_routing,
  111. .cpu_present_to_apicid = bigsmp_cpu_present_to_apicid,
  112. .apicid_to_cpu_present = physid_set_mask_of_physid,
  113. .check_phys_apicid_present = bigsmp_check_phys_apicid_present,
  114. .phys_pkg_id = bigsmp_phys_pkg_id,
  115. .get_apic_id = bigsmp_get_apic_id,
  116. .set_apic_id = NULL,
  117. .calc_dest_apicid = apic_default_calc_apicid,
  118. .send_IPI = default_send_IPI_single_phys,
  119. .send_IPI_mask = default_send_IPI_mask_sequence_phys,
  120. .send_IPI_mask_allbutself = NULL,
  121. .send_IPI_allbutself = bigsmp_send_IPI_allbutself,
  122. .send_IPI_all = bigsmp_send_IPI_all,
  123. .send_IPI_self = default_send_IPI_self,
  124. .inquire_remote_apic = default_inquire_remote_apic,
  125. .read = native_apic_mem_read,
  126. .write = native_apic_mem_write,
  127. .eoi_write = native_apic_mem_write,
  128. .icr_read = native_apic_icr_read,
  129. .icr_write = native_apic_icr_write,
  130. .wait_icr_idle = native_apic_wait_icr_idle,
  131. .safe_wait_icr_idle = native_safe_apic_wait_icr_idle,
  132. .x86_32_early_logical_apicid = bigsmp_early_logical_apicid,
  133. };
  134. void __init generic_bigsmp_probe(void)
  135. {
  136. unsigned int cpu;
  137. if (!probe_bigsmp())
  138. return;
  139. apic = &apic_bigsmp;
  140. for_each_possible_cpu(cpu) {
  141. if (early_per_cpu(x86_cpu_to_logical_apicid,
  142. cpu) == BAD_APICID)
  143. continue;
  144. early_per_cpu(x86_cpu_to_logical_apicid, cpu) =
  145. bigsmp_early_logical_apicid(cpu);
  146. }
  147. pr_info("Overriding APIC driver with %s\n", apic_bigsmp.name);
  148. }
  149. apic_driver(apic_bigsmp);