1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_AMD_NB_H
3 #define _ASM_X86_AMD_NB_H
5 #include <linux/ioport.h>
7 #include <linux/refcount.h>
9 struct amd_nb_bus_dev_range {
15 extern const struct amd_nb_bus_dev_range amd_nb_bus_dev_ranges[];
17 extern bool early_is_amd_nb(u32 value);
18 extern struct resource *amd_get_mmconfig_range(struct resource *res);
19 extern void amd_flush_garts(void);
20 extern int amd_numa_init(void);
21 extern int amd_get_subcaches(int);
22 extern int amd_set_subcaches(int, unsigned long);
24 extern int amd_smn_read(u16 node, u32 address, u32 *value);
25 extern int amd_smn_write(u16 node, u32 address, u32 value);
32 struct threshold_block {
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. */
40 u16 threshold_limit; /*
41 * Value upon which threshold
42 * interrupt is generated.
45 struct kobject kobj; /* sysfs object */
46 struct list_head miscj; /*
47 * List of threshold blocks
52 struct threshold_bank {
54 struct threshold_block *blocks;
56 /* initialized to the number of CPUs on the node sharing this bank */
61 struct amd_northbridge {
65 struct amd_l3_cache l3_cache;
66 struct threshold_bank *bank4;
69 struct amd_northbridge_info {
72 struct amd_northbridge *nb;
75 #define AMD_NB_GART BIT(0)
76 #define AMD_NB_L3_INDEX_DISABLE BIT(1)
77 #define AMD_NB_L3_PARTITIONING BIT(2)
82 bool amd_nb_has_feature(unsigned int feature);
83 struct amd_northbridge *node_to_amd_nb(int node);
85 static inline u16 amd_pci_dev_to_node_id(struct pci_dev *pdev)
90 for (i = 0; i != amd_nb_num(); i++) {
91 misc = node_to_amd_nb(i)->misc;
93 if (pci_domain_nr(misc->bus) == pci_domain_nr(pdev->bus) &&
94 PCI_SLOT(misc->devfn) == PCI_SLOT(pdev->devfn))
98 WARN(1, "Unable to find AMD Northbridge id for %s\n", pci_name(pdev));
102 static inline bool amd_gart_present(void)
104 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
107 /* GART present only on Fam15h, up to 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))
117 #define amd_nb_num(x) 0
118 #define amd_nb_has_feature(x) false
119 #define node_to_amd_nb(x) NULL
120 #define amd_gart_present(x) false
125 #endif /* _ASM_X86_AMD_NB_H */