blob: d192b52d1b814423534ca3ff33b6450645175183 [file] [log] [blame]
Angel Ponsf23ae0b2020-04-02 23:48:12 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Damien Roth07a196e2016-01-19 20:20:15 -07003
Eric Biedermanfcd5ace2004-10-14 19:29:29 +00004#include <console/console.h>
Eric Biedermanfcd5ace2004-10-14 19:29:29 +00005#include <cpu/x86/lapic.h>
6#include <cpu/intel/hyperthreading.h>
7#include <device/device.h>
Kyösti Mälkkicbf95712020-01-05 08:05:45 +02008#include <option.h>
Eric Biedermanfcd5ace2004-10-14 19:29:29 +00009#include <smp/spinlock.h>
Kyösti Mälkki8b28d502012-03-09 17:02:37 +020010
Julius Wernercd49cce2019-03-05 16:53:33 -080011#if CONFIG(PARALLEL_CPU_INIT)
Elyes HAOUASd82be922016-07-28 18:58:27 +020012#error Intel hyper-threading requires serialized CPU init
Sven Schnelle51676b12012-07-29 19:18:03 +020013#endif
14
15static int first_time = 1;
Julius Werner5d1f9a02019-03-07 17:07:26 -080016static int disable_siblings = !CONFIG(LOGICAL_CPUS);
Sven Schnelle51676b12012-07-29 19:18:03 +020017
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +110018void intel_sibling_init(struct device *cpu)
Sven Schnelle51676b12012-07-29 19:18:03 +020019{
Lee Leahy73a28942017-03-15 17:52:06 -070020 unsigned int i, siblings;
Sven Schnelle51676b12012-07-29 19:18:03 +020021 struct cpuid_result result;
22
23 /* On the bootstrap processor see if I want sibling cpus enabled */
24 if (first_time) {
25 first_time = 0;
26 get_option(&disable_siblings, "hyper_threading");
27 }
28 result = cpuid(1);
29 /* Is hyperthreading supported */
Lee Leahy26eeb0f2017-03-15 18:08:50 -070030 if (!(result.edx & (1 << 28)))
Sven Schnelle51676b12012-07-29 19:18:03 +020031 return;
Lee Leahy26eeb0f2017-03-15 18:08:50 -070032
Sven Schnelle51676b12012-07-29 19:18:03 +020033 /* See how many sibling cpus we have */
34 siblings = (result.ebx >> 16) & 0xff;
Lee Leahy26eeb0f2017-03-15 18:08:50 -070035 if (siblings < 1)
Sven Schnelle51676b12012-07-29 19:18:03 +020036 siblings = 1;
Sven Schnelle51676b12012-07-29 19:18:03 +020037
38 printk(BIOS_DEBUG, "CPU: %u %d siblings\n",
39 cpu->path.apic.apic_id,
40 siblings);
41
42 /* See if I am a sibling cpu */
Lee Leahy9d62e7e2017-03-15 17:40:50 -070043 if (cpu->path.apic.apic_id & (siblings - 1)) {
Lee Leahy26eeb0f2017-03-15 18:08:50 -070044 if (disable_siblings)
Sven Schnelle51676b12012-07-29 19:18:03 +020045 cpu->enabled = 0;
Sven Schnelle51676b12012-07-29 19:18:03 +020046 return;
47 }
48
Elyes HAOUASd82be922016-07-28 18:58:27 +020049 /* I am the primary CPU start up my siblings */
Elyes HAOUAScbe7464c2016-08-23 21:07:28 +020050 for (i = 1; i < siblings; i++) {
Sven Schnelle51676b12012-07-29 19:18:03 +020051 struct device_path cpu_path;
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +110052 struct device *new;
Elyes HAOUASd82be922016-07-28 18:58:27 +020053 /* Build the CPU device path */
Sven Schnelle51676b12012-07-29 19:18:03 +020054 cpu_path.type = DEVICE_PATH_APIC;
55 cpu_path.apic.apic_id = cpu->path.apic.apic_id + i;
56
57
Elyes HAOUASd82be922016-07-28 18:58:27 +020058 /* Allocate new CPU device structure iff sibling CPU
Sven Schnelle51676b12012-07-29 19:18:03 +020059 * was not in static device tree.
60 */
61 new = alloc_find_dev(cpu->bus, &cpu_path);
62
Lee Leahy26eeb0f2017-03-15 18:08:50 -070063 if (!new)
Sven Schnelle51676b12012-07-29 19:18:03 +020064 continue;
Sven Schnelle51676b12012-07-29 19:18:03 +020065
66 printk(BIOS_DEBUG, "CPU: %u has sibling %u\n",
67 cpu->path.apic.apic_id,
68 new->path.apic.apic_id);
69 }
70}