blob: a4cd1b3102d3a1c13a8fc33d604ceb5444834a9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <console/console.h>
#include <acpi/acpi.h>
#include <acpi/acpigen.h>
#include <device/device.h>
#include "i82371eb.h"
static void generate_cpu_entry(int cpu)
{
int pcontrol_blk = DEFAULT_PMBASE + PCNTRL, plen = 6;
acpigen_write_processor(cpu, pcontrol_blk, plen);
acpigen_pop_len();
}
void generate_cpu_entries(const struct device *device)
{
int cpu;
int numcpus = dev_count_cpu();
printk(BIOS_DEBUG, "Found %d CPU(s).\n", numcpus);
/* without the outer scope, further ssdt addition will end up
* within the processor statement */
acpigen_write_scope("\\_SB");
for (cpu = 0; cpu < numcpus; cpu++)
generate_cpu_entry(cpu);
acpigen_pop_len();
}
|