aboutsummaryrefslogtreecommitdiff
path: root/src/include/cpu/amd/amdk8_sysconf.h
blob: 87bd4d5dc56266f7e61728be4b0794bbba585135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef AMDK8_SYSCONF_H
#define AMDK8_SYSCONF_H

#define HC_POSSIBLE_NUM 8

struct amdk8_sysconf_t {
	//ht
	unsigned nodes;
	unsigned hc_possible_num;
	unsigned pci1234[HC_POSSIBLE_NUM];
	unsigned hcdn[HC_POSSIBLE_NUM];
	unsigned hcid[HC_POSSIBLE_NUM]; //record ht chain type
	unsigned sbdn;
	unsigned sblk;

	unsigned hcdn_reg[4]; // it will be used by get_sblk_pci1234

	int enabled_apic_ext_id;
	unsigned lift_bsp_apicid;
	int apicid_offset;

	void *mb; // pointer for mb related struct

};

extern struct amdk8_sysconf_t sysconf;

void get_sblk_pci1234(void);
void get_bus_conf(void);
#endif