aboutsummaryrefslogtreecommitdiff
path: root/src/include/cpu/amd/amdk8_sysconf.h
blob: 665f9f96b9748078408da6428919aa1747e90869 (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 int nodes;
	unsigned int hc_possible_num;
	unsigned int pci1234[HC_POSSIBLE_NUM];
	unsigned int hcdn[HC_POSSIBLE_NUM];
	unsigned int hcid[HC_POSSIBLE_NUM]; //record ht chain type
	unsigned int sbdn;
	unsigned int sblk;

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

	int enabled_apic_ext_id;
	unsigned int 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