pci_ids: Add PCI device ID functions 3 and 4 for newer F15h models.
[linux-2.6-block.git] / arch / x86 / kernel / amd_nb.c
CommitLineData
a32073bf
AK
1/*
2 * Shared support code for AMD K8 northbridges and derivates.
3 * Copyright 2006 Andi Kleen, SUSE Labs. Subject to GPLv2.
4 */
c767a54b
JP
5
6#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
a32073bf 8#include <linux/types.h>
5a0e3ad6 9#include <linux/slab.h>
a32073bf
AK
10#include <linux/init.h>
11#include <linux/errno.h>
12#include <linux/module.h>
13#include <linux/spinlock.h>
23ac4ae8 14#include <asm/amd_nb.h>
a32073bf 15
a32073bf
AK
16static u32 *flush_words;
17
691269f0 18const struct pci_device_id amd_nb_misc_ids[] = {
cf169702
JR
19 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB_MISC) },
20 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_10H_NB_MISC) },
cb293250 21 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_15H_NB_F3) },
24214449 22 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_15H_M10H_F3) },
94c1acf2 23 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_16H_NB_F3) },
a32073bf
AK
24 {}
25};
9653a5c7 26EXPORT_SYMBOL(amd_nb_misc_ids);
a32073bf 27
c391c788 28static const struct pci_device_id amd_nb_link_ids[] = {
cb6c8520 29 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_15H_NB_F4) },
94c1acf2 30 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_16H_NB_F4) },
41b2610c
HR
31 {}
32};
33
24d9b70b
JB
34const struct amd_nb_bus_dev_range amd_nb_bus_dev_ranges[] __initconst = {
35 { 0x00, 0x18, 0x20 },
36 { 0xff, 0x00, 0x20 },
37 { 0xfe, 0x00, 0x20 },
38 { }
39};
40
eec1d4fa
HR
41struct amd_northbridge_info amd_northbridges;
42EXPORT_SYMBOL(amd_northbridges);
a32073bf 43
9653a5c7 44static struct pci_dev *next_northbridge(struct pci_dev *dev,
691269f0 45 const struct pci_device_id *ids)
a32073bf
AK
46{
47 do {
48 dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev);
49 if (!dev)
50 break;
9653a5c7 51 } while (!pci_match_id(ids, dev));
a32073bf
AK
52 return dev;
53}
54
9653a5c7 55int amd_cache_northbridges(void)
a32073bf 56{
84fd1d35 57 u16 i = 0;
9653a5c7 58 struct amd_northbridge *nb;
41b2610c 59 struct pci_dev *misc, *link;
3c6df2a9 60
9653a5c7 61 if (amd_nb_num())
a32073bf
AK
62 return 0;
63
9653a5c7
HR
64 misc = NULL;
65 while ((misc = next_northbridge(misc, amd_nb_misc_ids)) != NULL)
66 i++;
900f9ac9 67
9653a5c7
HR
68 if (i == 0)
69 return 0;
a32073bf 70
9653a5c7
HR
71 nb = kzalloc(i * sizeof(struct amd_northbridge), GFP_KERNEL);
72 if (!nb)
a32073bf
AK
73 return -ENOMEM;
74
9653a5c7
HR
75 amd_northbridges.nb = nb;
76 amd_northbridges.num = i;
3c6df2a9 77
41b2610c 78 link = misc = NULL;
9653a5c7
HR
79 for (i = 0; i != amd_nb_num(); i++) {
80 node_to_amd_nb(i)->misc = misc =
81 next_northbridge(misc, amd_nb_misc_ids);
41b2610c
HR
82 node_to_amd_nb(i)->link = link =
83 next_northbridge(link, amd_nb_link_ids);
9653a5c7
HR
84 }
85
9653a5c7
HR
86 if (boot_cpu_data.x86 == 0xf || boot_cpu_data.x86 == 0x10 ||
87 boot_cpu_data.x86 == 0x15)
88 amd_northbridges.flags |= AMD_NB_GART;
a32073bf 89
f658bcfb
HR
90 /*
91 * Some CPU families support L3 Cache Index Disable. There are some
92 * limitations because of E382 and E388 on family 0x10.
93 */
94 if (boot_cpu_data.x86 == 0x10 &&
95 boot_cpu_data.x86_model >= 0x8 &&
96 (boot_cpu_data.x86_model > 0x9 ||
97 boot_cpu_data.x86_mask >= 0x1))
98 amd_northbridges.flags |= AMD_NB_L3_INDEX_DISABLE;
99
b453de02
HR
100 if (boot_cpu_data.x86 == 0x15)
101 amd_northbridges.flags |= AMD_NB_L3_INDEX_DISABLE;
102
cabb5bd7
HR
103 /* L3 cache partitioning is supported on family 0x15 */
104 if (boot_cpu_data.x86 == 0x15)
105 amd_northbridges.flags |= AMD_NB_L3_PARTITIONING;
106
a32073bf
AK
107 return 0;
108}
9653a5c7 109EXPORT_SYMBOL_GPL(amd_cache_northbridges);
a32073bf 110
84fd1d35
BP
111/*
112 * Ignores subdevice/subvendor but as far as I can figure out
113 * they're useless anyways
114 */
115bool __init early_is_amd_nb(u32 device)
a32073bf 116{
691269f0 117 const struct pci_device_id *id;
a32073bf 118 u32 vendor = device & 0xffff;
691269f0 119
a32073bf 120 device >>= 16;
9653a5c7 121 for (id = amd_nb_misc_ids; id->vendor; id++)
a32073bf 122 if (vendor == id->vendor && device == id->device)
84fd1d35
BP
123 return true;
124 return false;
a32073bf
AK
125}
126
24d25dbf
BH
127struct resource *amd_get_mmconfig_range(struct resource *res)
128{
129 u32 address;
130 u64 base, msr;
131 unsigned segn_busn_bits;
132
133 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
134 return NULL;
135
136 /* assume all cpus from fam10h have mmconfig */
137 if (boot_cpu_data.x86 < 0x10)
138 return NULL;
139
140 address = MSR_FAM10H_MMIO_CONF_BASE;
141 rdmsrl(address, msr);
142
143 /* mmconfig is not enabled */
144 if (!(msr & FAM10H_MMIO_CONF_ENABLE))
145 return NULL;
146
147 base = msr & (FAM10H_MMIO_CONF_BASE_MASK<<FAM10H_MMIO_CONF_BASE_SHIFT);
148
149 segn_busn_bits = (msr >> FAM10H_MMIO_CONF_BUSRANGE_SHIFT) &
150 FAM10H_MMIO_CONF_BUSRANGE_MASK;
151
152 res->flags = IORESOURCE_MEM;
153 res->start = base;
154 res->end = base + (1ULL<<(segn_busn_bits + 20)) - 1;
155 return res;
156}
157
cabb5bd7
HR
158int amd_get_subcaches(int cpu)
159{
160 struct pci_dev *link = node_to_amd_nb(amd_get_nb_id(cpu))->link;
161 unsigned int mask;
141168c3 162 int cuid;
cabb5bd7
HR
163
164 if (!amd_nb_has_feature(AMD_NB_L3_PARTITIONING))
165 return 0;
166
167 pci_read_config_dword(link, 0x1d4, &mask);
168
cabb5bd7 169 cuid = cpu_data(cpu).compute_unit_id;
cabb5bd7
HR
170 return (mask >> (4 * cuid)) & 0xf;
171}
172
173int amd_set_subcaches(int cpu, int mask)
174{
175 static unsigned int reset, ban;
176 struct amd_northbridge *nb = node_to_amd_nb(amd_get_nb_id(cpu));
177 unsigned int reg;
141168c3 178 int cuid;
cabb5bd7
HR
179
180 if (!amd_nb_has_feature(AMD_NB_L3_PARTITIONING) || mask > 0xf)
181 return -EINVAL;
182
183 /* if necessary, collect reset state of L3 partitioning and BAN mode */
184 if (reset == 0) {
185 pci_read_config_dword(nb->link, 0x1d4, &reset);
186 pci_read_config_dword(nb->misc, 0x1b8, &ban);
187 ban &= 0x180000;
188 }
189
190 /* deactivate BAN mode if any subcaches are to be disabled */
191 if (mask != 0xf) {
192 pci_read_config_dword(nb->misc, 0x1b8, &reg);
193 pci_write_config_dword(nb->misc, 0x1b8, reg & ~0x180000);
194 }
195
cabb5bd7 196 cuid = cpu_data(cpu).compute_unit_id;
cabb5bd7
HR
197 mask <<= 4 * cuid;
198 mask |= (0xf ^ (1 << cuid)) << 26;
199
200 pci_write_config_dword(nb->link, 0x1d4, mask);
201
202 /* reset BAN mode if L3 partitioning returned to reset state */
203 pci_read_config_dword(nb->link, 0x1d4, &reg);
204 if (reg == reset) {
205 pci_read_config_dword(nb->misc, 0x1b8, &reg);
206 reg &= ~0x180000;
207 pci_write_config_dword(nb->misc, 0x1b8, reg | ban);
208 }
209
210 return 0;
211}
212
84fd1d35 213static int amd_cache_gart(void)
9653a5c7 214{
84fd1d35 215 u16 i;
9653a5c7
HR
216
217 if (!amd_nb_has_feature(AMD_NB_GART))
218 return 0;
219
220 flush_words = kmalloc(amd_nb_num() * sizeof(u32), GFP_KERNEL);
221 if (!flush_words) {
222 amd_northbridges.flags &= ~AMD_NB_GART;
223 return -ENOMEM;
224 }
225
226 for (i = 0; i != amd_nb_num(); i++)
227 pci_read_config_dword(node_to_amd_nb(i)->misc, 0x9c,
228 &flush_words[i]);
229
230 return 0;
231}
232
eec1d4fa 233void amd_flush_garts(void)
a32073bf
AK
234{
235 int flushed, i;
236 unsigned long flags;
237 static DEFINE_SPINLOCK(gart_lock);
238
9653a5c7 239 if (!amd_nb_has_feature(AMD_NB_GART))
900f9ac9
AH
240 return;
241
a32073bf
AK
242 /* Avoid races between AGP and IOMMU. In theory it's not needed
243 but I'm not sure if the hardware won't lose flush requests
244 when another is pending. This whole thing is so expensive anyways
245 that it doesn't matter to serialize more. -AK */
246 spin_lock_irqsave(&gart_lock, flags);
247 flushed = 0;
9653a5c7
HR
248 for (i = 0; i < amd_nb_num(); i++) {
249 pci_write_config_dword(node_to_amd_nb(i)->misc, 0x9c,
250 flush_words[i] | 1);
a32073bf
AK
251 flushed++;
252 }
9653a5c7 253 for (i = 0; i < amd_nb_num(); i++) {
a32073bf
AK
254 u32 w;
255 /* Make sure the hardware actually executed the flush*/
256 for (;;) {
9653a5c7 257 pci_read_config_dword(node_to_amd_nb(i)->misc,
a32073bf
AK
258 0x9c, &w);
259 if (!(w & 1))
260 break;
261 cpu_relax();
262 }
263 }
264 spin_unlock_irqrestore(&gart_lock, flags);
265 if (!flushed)
c767a54b 266 pr_notice("nothing to flush?\n");
a32073bf 267}
eec1d4fa 268EXPORT_SYMBOL_GPL(amd_flush_garts);
a32073bf 269
eec1d4fa 270static __init int init_amd_nbs(void)
0e152cd7
BP
271{
272 int err = 0;
273
9653a5c7 274 err = amd_cache_northbridges();
0e152cd7
BP
275
276 if (err < 0)
c767a54b 277 pr_notice("Cannot enumerate AMD northbridges\n");
0e152cd7 278
9653a5c7 279 if (amd_cache_gart() < 0)
c767a54b 280 pr_notice("Cannot initialize GART flush words, GART support disabled\n");
9653a5c7 281
0e152cd7
BP
282 return err;
283}
284
285/* This has to go after the PCI subsystem */
eec1d4fa 286fs_initcall(init_amd_nbs);