bigsmp_32.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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/threads.h>
  8. #include <linux/cpumask.h>
  9. #include <linux/kernel.h>
  10. #include <linux/init.h>
  11. #include <linux/dmi.h>
  12. #include <linux/smp.h>
  13. #include <asm/apicdef.h>
  14. #include <asm/fixmap.h>
  15. #include <asm/mpspec.h>
  16. #include <asm/apic.h>
  17. #include <asm/ipi.h>
  18. static unsigned bigsmp_get_apic_id(unsigned long x)
  19. {
  20. return (x >> 24) & 0xFF;
  21. }
  22. static int bigsmp_apic_id_registered(void)
  23. {
  24. return 1;
  25. }
  26. static bool bigsmp_check_apicid_used(physid_mask_t *map, int apicid)
  27. {
  28. return false;
  29. }
  30. static int bigsmp_early_logical_apicid(int cpu)
  31. {
  32. /* on bigsmp, logical apicid is the same as physical */
  33. return early_per_cpu(x86_cpu_to_apicid, cpu);
  34. }
  35. static inline unsigned long calculate_ldr(int cpu)
  36. {
  37. unsigned long val, id;
  38. val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
  39. id = per_cpu(x86_bios_cpu_apicid, cpu);
  40. val |= SET_APIC_LOGICAL_ID(id);
  41. return val;
  42. }
  43. /*
  44. * Set up the logical destination ID.
  45. *
  46. * Intel recommends to set DFR, LDR and TPR before enabling
  47. * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
  48. * document number 292116). So here it goes...
  49. */
  50. static void bigsmp_init_apic_ldr(void)
  51. {
  52. unsigned long val;
  53. int cpu = smp_processor_id();
  54. apic_write(APIC_DFR, APIC_DFR_FLAT);
  55. val = calculate_ldr(cpu);
  56. apic_write(APIC_LDR, val);
  57. }
  58. static void bigsmp_setup_apic_routing(void)
  59. {
  60. printk(KERN_INFO
  61. "Enabling APIC mode: Physflat. Using %d I/O APICs\n",
  62. nr_ioapics);
  63. }
  64. static int bigsmp_cpu_present_to_apicid(int mps_cpu)
  65. {
  66. if (mps_cpu < nr_cpu_ids)
  67. return (int) per_cpu(x86_bios_cpu_apicid, mps_cpu);
  68. return BAD_APICID;
  69. }
  70. static void bigsmp_ioapic_phys_id_map(physid_mask_t *phys_map, physid_mask_t *retmap)
  71. {
  72. /* For clustered we don't have a good way to do this yet - hack */
  73. physids_promote(0xFFL, retmap);
  74. }
  75. static int bigsmp_check_phys_apicid_present(int phys_apicid)
  76. {
  77. return 1;
  78. }
  79. static int bigsmp_phys_pkg_id(int cpuid_apic, int index_msb)
  80. {
  81. return cpuid_apic >> index_msb;
  82. }
  83. static void bigsmp_send_IPI_allbutself(int vector)
  84. {
  85. default_send_IPI_mask_allbutself_phys(cpu_online_mask, vector);
  86. }
  87. static void bigsmp_send_IPI_all(int vector)
  88. {
  89. default_send_IPI_mask_sequence_phys(cpu_online_mask, vector);
  90. }
  91. static int dmi_bigsmp; /* can be set by dmi scanners */
  92. static int hp_ht_bigsmp(const struct dmi_system_id *d)
  93. {
  94. printk(KERN_NOTICE "%s detected: force use of apic=bigsmp\n", d->ident);
  95. dmi_bigsmp = 1;
  96. return 0;
  97. }
  98. static const struct dmi_system_id bigsmp_dmi_table[] = {
  99. { hp_ht_bigsmp, "HP ProLiant DL760 G2",
  100. { DMI_MATCH(DMI_BIOS_VENDOR, "HP"),
  101. DMI_MATCH(DMI_BIOS_VERSION, "P44-"),
  102. }
  103. },
  104. { hp_ht_bigsmp, "HP ProLiant DL740",
  105. { DMI_MATCH(DMI_BIOS_VENDOR, "HP"),
  106. DMI_MATCH(DMI_BIOS_VERSION, "P47-"),
  107. }
  108. },
  109. { } /* NULL entry stops DMI scanning */
  110. };
  111. static int probe_bigsmp(void)
  112. {
  113. if (def_to_bigsmp)
  114. dmi_bigsmp = 1;
  115. else
  116. dmi_check_system(bigsmp_dmi_table);
  117. return dmi_bigsmp;
  118. }
  119. static struct apic apic_bigsmp __ro_after_init = {
  120. .name = "bigsmp",
  121. .probe = probe_bigsmp,
  122. .acpi_madt_oem_check = NULL,
  123. .apic_id_valid = default_apic_id_valid,
  124. .apic_id_registered = bigsmp_apic_id_registered,
  125. .irq_delivery_mode = dest_Fixed,
  126. /* phys delivery to target CPU: */
  127. .irq_dest_mode = 0,
  128. .disable_esr = 1,
  129. .dest_logical = 0,
  130. .check_apicid_used = bigsmp_check_apicid_used,
  131. .init_apic_ldr = bigsmp_init_apic_ldr,
  132. .ioapic_phys_id_map = bigsmp_ioapic_phys_id_map,
  133. .setup_apic_routing = bigsmp_setup_apic_routing,
  134. .cpu_present_to_apicid = bigsmp_cpu_present_to_apicid,
  135. .apicid_to_cpu_present = physid_set_mask_of_physid,
  136. .check_phys_apicid_present = bigsmp_check_phys_apicid_present,
  137. .phys_pkg_id = bigsmp_phys_pkg_id,
  138. .get_apic_id = bigsmp_get_apic_id,
  139. .set_apic_id = NULL,
  140. .calc_dest_apicid = apic_default_calc_apicid,
  141. .send_IPI = default_send_IPI_single_phys,
  142. .send_IPI_mask = default_send_IPI_mask_sequence_phys,
  143. .send_IPI_mask_allbutself = NULL,
  144. .send_IPI_allbutself = bigsmp_send_IPI_allbutself,
  145. .send_IPI_all = bigsmp_send_IPI_all,
  146. .send_IPI_self = default_send_IPI_self,
  147. .inquire_remote_apic = default_inquire_remote_apic,
  148. .read = native_apic_mem_read,
  149. .write = native_apic_mem_write,
  150. .eoi_write = native_apic_mem_write,
  151. .icr_read = native_apic_icr_read,
  152. .icr_write = native_apic_icr_write,
  153. .wait_icr_idle = native_apic_wait_icr_idle,
  154. .safe_wait_icr_idle = native_safe_apic_wait_icr_idle,
  155. .x86_32_early_logical_apicid = bigsmp_early_logical_apicid,
  156. };
  157. void __init generic_bigsmp_probe(void)
  158. {
  159. unsigned int cpu;
  160. if (!probe_bigsmp())
  161. return;
  162. apic = &apic_bigsmp;
  163. for_each_possible_cpu(cpu) {
  164. if (early_per_cpu(x86_cpu_to_logical_apicid,
  165. cpu) == BAD_APICID)
  166. continue;
  167. early_per_cpu(x86_cpu_to_logical_apicid, cpu) =
  168. bigsmp_early_logical_apicid(cpu);
  169. }
  170. pr_info("Overriding APIC driver with %s\n", apic_bigsmp.name);
  171. }
  172. apic_driver(apic_bigsmp);