summaryrefslogtreecommitdiff
path: root/src/include/cpu/amd/dualcore.h
blob: a38565b01f6df1e1e6fd792864fc6bef89c3603d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef CPU_AMD_DUALCORE_H
#define CPU_AMD_DUALCORE_H

struct device;

struct node_core_id {
        unsigned nodeid;
        unsigned coreid;
};

void amd_sibling_init(struct device *cpu, struct node_core_id id);
struct node_core_id get_node_core_id(void);

#endif /* CPU_AMD_DUALCORE_H */