spi-topcliff-pch: add recovery processing in case wait-event timeout
[zen-stable.git] / arch / x86 / kernel / cpu / perf_event_amd_ibs.c
blob3b8a2d30d14e8ebeb2c58406212fbbd3c79ba935
1 /*
2 * Performance events - AMD IBS
4 * Copyright (C) 2011 Advanced Micro Devices, Inc., Robert Richter
6 * For licencing details see kernel-base/COPYING
7 */
9 #include <linux/perf_event.h>
10 #include <linux/module.h>
11 #include <linux/pci.h>
13 #include <asm/apic.h>
15 static u32 ibs_caps;
17 #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD)
19 static struct pmu perf_ibs;
21 static int perf_ibs_init(struct perf_event *event)
23 if (perf_ibs.type != event->attr.type)
24 return -ENOENT;
25 return 0;
28 static int perf_ibs_add(struct perf_event *event, int flags)
30 return 0;
33 static void perf_ibs_del(struct perf_event *event, int flags)
37 static struct pmu perf_ibs = {
38 .event_init= perf_ibs_init,
39 .add= perf_ibs_add,
40 .del= perf_ibs_del,
43 static __init int perf_event_ibs_init(void)
45 if (!ibs_caps)
46 return -ENODEV; /* ibs not supported by the cpu */
48 perf_pmu_register(&perf_ibs, "ibs", -1);
49 printk(KERN_INFO "perf: AMD IBS detected (0x%08x)\n", ibs_caps);
51 return 0;
54 #else /* defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD) */
56 static __init int perf_event_ibs_init(void) { return 0; }
58 #endif
60 /* IBS - apic initialization, for perf and oprofile */
62 static __init u32 __get_ibs_caps(void)
64 u32 caps;
65 unsigned int max_level;
67 if (!boot_cpu_has(X86_FEATURE_IBS))
68 return 0;
70 /* check IBS cpuid feature flags */
71 max_level = cpuid_eax(0x80000000);
72 if (max_level < IBS_CPUID_FEATURES)
73 return IBS_CAPS_DEFAULT;
75 caps = cpuid_eax(IBS_CPUID_FEATURES);
76 if (!(caps & IBS_CAPS_AVAIL))
77 /* cpuid flags not valid */
78 return IBS_CAPS_DEFAULT;
80 return caps;
83 u32 get_ibs_caps(void)
85 return ibs_caps;
88 EXPORT_SYMBOL(get_ibs_caps);
90 static inline int get_eilvt(int offset)
92 return !setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_NMI, 1);
95 static inline int put_eilvt(int offset)
97 return !setup_APIC_eilvt(offset, 0, 0, 1);
101 * Check and reserve APIC extended interrupt LVT offset for IBS if available.
103 static inline int ibs_eilvt_valid(void)
105 int offset;
106 u64 val;
107 int valid = 0;
109 preempt_disable();
111 rdmsrl(MSR_AMD64_IBSCTL, val);
112 offset = val & IBSCTL_LVT_OFFSET_MASK;
114 if (!(val & IBSCTL_LVT_OFFSET_VALID)) {
115 pr_err(FW_BUG "cpu %d, invalid IBS interrupt offset %d (MSR%08X=0x%016llx)\n",
116 smp_processor_id(), offset, MSR_AMD64_IBSCTL, val);
117 goto out;
120 if (!get_eilvt(offset)) {
121 pr_err(FW_BUG "cpu %d, IBS interrupt offset %d not available (MSR%08X=0x%016llx)\n",
122 smp_processor_id(), offset, MSR_AMD64_IBSCTL, val);
123 goto out;
126 valid = 1;
127 out:
128 preempt_enable();
130 return valid;
133 static int setup_ibs_ctl(int ibs_eilvt_off)
135 struct pci_dev *cpu_cfg;
136 int nodes;
137 u32 value = 0;
139 nodes = 0;
140 cpu_cfg = NULL;
141 do {
142 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
143 PCI_DEVICE_ID_AMD_10H_NB_MISC,
144 cpu_cfg);
145 if (!cpu_cfg)
146 break;
147 ++nodes;
148 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
149 | IBSCTL_LVT_OFFSET_VALID);
150 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
151 if (value != (ibs_eilvt_off | IBSCTL_LVT_OFFSET_VALID)) {
152 pci_dev_put(cpu_cfg);
153 printk(KERN_DEBUG "Failed to setup IBS LVT offset, "
154 "IBSCTL = 0x%08x\n", value);
155 return -EINVAL;
157 } while (1);
159 if (!nodes) {
160 printk(KERN_DEBUG "No CPU node configured for IBS\n");
161 return -ENODEV;
164 return 0;
168 * This runs only on the current cpu. We try to find an LVT offset and
169 * setup the local APIC. For this we must disable preemption. On
170 * success we initialize all nodes with this offset. This updates then
171 * the offset in the IBS_CTL per-node msr. The per-core APIC setup of
172 * the IBS interrupt vector is handled by perf_ibs_cpu_notifier that
173 * is using the new offset.
175 static int force_ibs_eilvt_setup(void)
177 int offset;
178 int ret;
180 preempt_disable();
181 /* find the next free available EILVT entry, skip offset 0 */
182 for (offset = 1; offset < APIC_EILVT_NR_MAX; offset++) {
183 if (get_eilvt(offset))
184 break;
186 preempt_enable();
188 if (offset == APIC_EILVT_NR_MAX) {
189 printk(KERN_DEBUG "No EILVT entry available\n");
190 return -EBUSY;
193 ret = setup_ibs_ctl(offset);
194 if (ret)
195 goto out;
197 if (!ibs_eilvt_valid()) {
198 ret = -EFAULT;
199 goto out;
202 pr_info("IBS: LVT offset %d assigned\n", offset);
204 return 0;
205 out:
206 preempt_disable();
207 put_eilvt(offset);
208 preempt_enable();
209 return ret;
212 static inline int get_ibs_lvt_offset(void)
214 u64 val;
216 rdmsrl(MSR_AMD64_IBSCTL, val);
217 if (!(val & IBSCTL_LVT_OFFSET_VALID))
218 return -EINVAL;
220 return val & IBSCTL_LVT_OFFSET_MASK;
223 static void setup_APIC_ibs(void *dummy)
225 int offset;
227 offset = get_ibs_lvt_offset();
228 if (offset < 0)
229 goto failed;
231 if (!setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_NMI, 0))
232 return;
233 failed:
234 pr_warn("perf: IBS APIC setup failed on cpu #%d\n",
235 smp_processor_id());
238 static void clear_APIC_ibs(void *dummy)
240 int offset;
242 offset = get_ibs_lvt_offset();
243 if (offset >= 0)
244 setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_FIX, 1);
247 static int __cpuinit
248 perf_ibs_cpu_notifier(struct notifier_block *self, unsigned long action, void *hcpu)
250 switch (action & ~CPU_TASKS_FROZEN) {
251 case CPU_STARTING:
252 setup_APIC_ibs(NULL);
253 break;
254 case CPU_DYING:
255 clear_APIC_ibs(NULL);
256 break;
257 default:
258 break;
261 return NOTIFY_OK;
264 static __init int amd_ibs_init(void)
266 u32 caps;
267 int ret = -EINVAL;
269 caps = __get_ibs_caps();
270 if (!caps)
271 return -ENODEV; /* ibs not supported by the cpu */
274 * Force LVT offset assignment for family 10h: The offsets are
275 * not assigned by the BIOS for this family, so the OS is
276 * responsible for doing it. If the OS assignment fails, fall
277 * back to BIOS settings and try to setup this.
279 if (boot_cpu_data.x86 == 0x10)
280 force_ibs_eilvt_setup();
282 if (!ibs_eilvt_valid())
283 goto out;
285 get_online_cpus();
286 ibs_caps = caps;
287 /* make ibs_caps visible to other cpus: */
288 smp_mb();
289 perf_cpu_notifier(perf_ibs_cpu_notifier);
290 smp_call_function(setup_APIC_ibs, NULL, 1);
291 put_online_cpus();
293 ret = perf_event_ibs_init();
294 out:
295 if (ret)
296 pr_err("Failed to setup IBS, %d\n", ret);
297 return ret;
300 /* Since we need the pci subsystem to init ibs we can't do this earlier: */
301 device_initcall(amd_ibs_init);