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

struct device;
void amd_sibling_init(struct device *cpu);

int is_e0_later_in_bsp(int nodeid);
unsigned int read_nb_cfg_54(void);

struct node_core_id {
        unsigned nodeid;
        unsigned coreid;
};

// it can be used to get unitid and coreid it running only
struct node_core_id get_node_core_id(unsigned int nb_cfg_54);
unsigned get_apicid_base(unsigned ioapic_num);

#endif /* CPU_AMD_DUALCORE_H */