blob: bece89bc726438f51c0775ced963920cbd9023af [file] [log] [blame]
Arthur Heymans44807ac2022-09-13 12:43:37 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <arch/cpu.h>
4#include <amdblocks/cpu.h>
5
6int get_cpu_count(void)
7{
8 return 1 + (cpuid_ecx(0x80000008) & 0xff);
9}