Merge tag 'pull-nios2' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[linux-2.6-block.git] / arch / x86 / include / asm / amd_nb.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
23ac4ae8
AH
2#ifndef _ASM_X86_AMD_NB_H
3#define _ASM_X86_AMD_NB_H
a32073bf 4
24d25dbf 5#include <linux/ioport.h>
a32073bf 6#include <linux/pci.h>
473e90b2 7#include <linux/refcount.h>
a32073bf 8
24d9b70b
JB
9struct amd_nb_bus_dev_range {
10 u8 bus;
11 u8 dev_base;
12 u8 dev_limit;
13};
14
24d9b70b 15extern const struct amd_nb_bus_dev_range amd_nb_bus_dev_ranges[];
a32073bf 16
84fd1d35 17extern bool early_is_amd_nb(u32 value);
24d25dbf 18extern struct resource *amd_get_mmconfig_range(struct resource *res);
eec1d4fa 19extern void amd_flush_garts(void);
940fed2e 20extern int amd_numa_init(void);
cabb5bd7 21extern int amd_get_subcaches(int);
2993ae33 22extern int amd_set_subcaches(int, unsigned long);
a32073bf 23
ddfe43cd
YG
24extern int amd_smn_read(u16 node, u32 address, u32 *value);
25extern int amd_smn_write(u16 node, u32 address, u32 value);
ddfe43cd 26
d2946041
TG
27struct amd_l3_cache {
28 unsigned indices;
29 u8 subcaches[4];
30};
31
019f34fc 32struct threshold_block {
ea2ca36b
AG
33 unsigned int block; /* Number within bank */
34 unsigned int bank; /* MCA bank the block belongs to */
35 unsigned int cpu; /* CPU which controls MCA bank */
36 u32 address; /* MSR address for the block */
37 u16 interrupt_enable; /* Enable/Disable APIC interrupt */
38 bool interrupt_capable; /* Bank can generate an interrupt. */
39
40 u16 threshold_limit; /*
41 * Value upon which threshold
42 * interrupt is generated.
43 */
44
45 struct kobject kobj; /* sysfs object */
46 struct list_head miscj; /*
47 * List of threshold blocks
48 * within a bank.
49 */
019f34fc
BP
50};
51
52struct threshold_bank {
53 struct kobject *kobj;
54 struct threshold_block *blocks;
55
56 /* initialized to the number of CPUs on the node sharing this bank */
473e90b2 57 refcount_t cpus;
f26d2580 58 unsigned int shared;
019f34fc
BP
59};
60
9653a5c7 61struct amd_northbridge {
ddfe43cd 62 struct pci_dev *root;
9653a5c7 63 struct pci_dev *misc;
41b2610c 64 struct pci_dev *link;
d2946041 65 struct amd_l3_cache l3_cache;
019f34fc 66 struct threshold_bank *bank4;
9653a5c7
HR
67};
68
eec1d4fa 69struct amd_northbridge_info {
900f9ac9 70 u16 num;
9653a5c7
HR
71 u64 flags;
72 struct amd_northbridge *nb;
900f9ac9 73};
900f9ac9 74
84fd1d35
BP
75#define AMD_NB_GART BIT(0)
76#define AMD_NB_L3_INDEX_DISABLE BIT(1)
77#define AMD_NB_L3_PARTITIONING BIT(2)
9653a5c7 78
23ac4ae8 79#ifdef CONFIG_AMD_NB
ade029e2 80
c7993890
YG
81u16 amd_nb_num(void);
82bool amd_nb_has_feature(unsigned int feature);
83struct amd_northbridge *node_to_amd_nb(int node);
9653a5c7 84
1a6775c1 85static inline u16 amd_pci_dev_to_node_id(struct pci_dev *pdev)
772c3ff3
DB
86{
87 struct pci_dev *misc;
88 int i;
89
90 for (i = 0; i != amd_nb_num(); i++) {
91 misc = node_to_amd_nb(i)->misc;
92
93 if (pci_domain_nr(misc->bus) == pci_domain_nr(pdev->bus) &&
94 PCI_SLOT(misc->devfn) == PCI_SLOT(pdev->devfn))
95 return i;
96 }
97
98 WARN(1, "Unable to find AMD Northbridge id for %s\n", pci_name(pdev));
99 return 0;
100}
101
1b457429
AG
102static inline bool amd_gart_present(void)
103{
b7a5cb4f
PW
104 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
105 return false;
106
1b457429
AG
107 /* GART present only on Fam15h, upto model 0fh */
108 if (boot_cpu_data.x86 == 0xf || boot_cpu_data.x86 == 0x10 ||
109 (boot_cpu_data.x86 == 0x15 && boot_cpu_data.x86_model < 0x10))
110 return true;
111
112 return false;
113}
114
9653a5c7
HR
115#else
116
117#define amd_nb_num(x) 0
118#define amd_nb_has_feature(x) false
119#define node_to_amd_nb(x) NULL
1b457429 120#define amd_gart_present(x) false
9653a5c7 121
afd9fcee
AH
122#endif
123
124
23ac4ae8 125#endif /* _ASM_X86_AMD_NB_H */