mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
25 lines
485 B
C
25 lines
485 B
C
#ifndef __APIC__
|
|
#define __APIC__
|
|
|
|
#include <stdbool.h>
|
|
#include "cpuid.h"
|
|
|
|
struct apic {
|
|
uint32_t pkg_mask;
|
|
uint32_t pkg_mask_shift;
|
|
uint32_t core_mask;
|
|
uint32_t smt_mask_width;
|
|
uint32_t smt_mask;
|
|
uint32_t* cache_select_mask;
|
|
uint32_t* cache_id_apic;
|
|
};
|
|
|
|
bool get_topology_from_apic(struct cpuInfo* cpu, struct topology* topo);
|
|
uint32_t is_smt_enabled_amd(struct topology* topo);
|
|
|
|
#ifdef __linux__
|
|
int get_total_cores_module(int total_cores, int module);
|
|
#endif
|
|
|
|
#endif
|