summaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/cpu/cpu.c
blob: bece89bc726438f51c0775ced963920cbd9023af (plain)
1
2
3
4
5
6
7
8
9
/* SPDX-License-Identifier: GPL-2.0-only */

#include <arch/cpu.h>
#include <amdblocks/cpu.h>

int get_cpu_count(void)
{
	return 1 + (cpuid_ecx(0x80000008) & 0xff);
}