Skip to content

Commit f8a4bca

Browse files
author
Ingo Molnar
committed
Merge branches 'x86/apic', 'x86/misc' and 'x86/splitlock' into x86/urgent
Pick up these single-commit branches. Signed-off-by: Ingo Molnar <[email protected]>
4 parents 3d77e6a + de308d1 + 140fd4a + 429ac8b commit f8a4bca

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

arch/x86/kernel/apic/apic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2093,7 +2093,7 @@ void __init init_apic_mappings(void)
20932093
unsigned int new_apicid;
20942094

20952095
if (apic_validate_deadline_timer())
2096-
pr_debug("TSC deadline timer available\n");
2096+
pr_info("TSC deadline timer available\n");
20972097

20982098
if (x2apic_mode) {
20992099
boot_cpu_physical_apicid = read_apic_id();

arch/x86/kernel/cpu/intel.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,9 +1135,12 @@ void switch_to_sld(unsigned long tifn)
11351135
static const struct x86_cpu_id split_lock_cpu_ids[] __initconst = {
11361136
X86_MATCH_INTEL_FAM6_MODEL(ICELAKE_X, 0),
11371137
X86_MATCH_INTEL_FAM6_MODEL(ICELAKE_L, 0),
1138+
X86_MATCH_INTEL_FAM6_MODEL(ICELAKE_D, 0),
11381139
X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT, 1),
11391140
X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT_D, 1),
11401141
X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT_L, 1),
1142+
X86_MATCH_INTEL_FAM6_MODEL(TIGERLAKE_L, 1),
1143+
X86_MATCH_INTEL_FAM6_MODEL(TIGERLAKE, 1),
11411144
{}
11421145
};
11431146

arch/x86/kernel/reboot.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,14 @@ static const struct dmi_system_id reboot_dmi_table[] __initconst = {
197197
DMI_MATCH(DMI_PRODUCT_NAME, "MacBook5"),
198198
},
199199
},
200+
{ /* Handle problems with rebooting on Apple MacBook6,1 */
201+
.callback = set_pci_reboot,
202+
.ident = "Apple MacBook6,1",
203+
.matches = {
204+
DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
205+
DMI_MATCH(DMI_PRODUCT_NAME, "MacBook6,1"),
206+
},
207+
},
200208
{ /* Handle problems with rebooting on Apple MacBookPro5 */
201209
.callback = set_pci_reboot,
202210
.ident = "Apple MacBookPro5",

0 commit comments

Comments
 (0)