blob: 0c683d376b1cddddf6a9da9a07644f18d7acbb92 [file] [log] [blame]
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/cpu.h>
3#include <linux/smp.h>
4#include <linux/percpu.h>
5#include <linux/init.h>
6#include <linux/sched.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -04007#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/nodemask.h>
9#include <linux/cpumask.h>
10#include <linux/notifier.h>
11
12#include <asm/current.h>
13#include <asm/processor.h>
14#include <asm/cputable.h>
15#include <asm/hvcall.h>
16#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/machdep.h>
Paul Mackerras2249ca92005-11-07 13:18:13 +110018#include <asm/smp.h>
Paul Mackerrasa6dbf932009-09-09 01:26:03 +000019#include <asm/pmc.h>
Deepthi Dharwar707827f2011-11-30 02:46:42 +000020#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Nathan Lynch93197a32008-12-23 18:55:54 +000022#include "cacheinfo.h"
23
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +100024#ifdef CONFIG_PPC64
25#include <asm/paca.h>
26#include <asm/lppaca.h>
27#endif
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static DEFINE_PER_CPU(struct cpu, cpu_devices);
30
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +100031/*
32 * SMT snooze delay stuff, 64-bit only for now
33 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +100035#ifdef CONFIG_PPC64
36
Anton Blanchard0ddd3e72006-09-22 20:30:14 +100037/* Time in microseconds we delay before sleeping in the idle loop */
Anton Blanchardb878dc02010-05-16 20:02:39 +000038DEFINE_PER_CPU(long, smt_snooze_delay) = { 100 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Kay Sievers8a25a2f2011-12-21 14:29:42 -080040static ssize_t store_smt_snooze_delay(struct device *dev,
41 struct device_attribute *attr,
Andi Kleen4a0b2b42008-07-01 18:48:41 +020042 const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 size_t count)
44{
Kay Sievers8a25a2f2011-12-21 14:29:42 -080045 struct cpu *cpu = container_of(dev, struct cpu, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 ssize_t ret;
Anton Blanchardb878dc02010-05-16 20:02:39 +000047 long snooze;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Anton Blanchardb878dc02010-05-16 20:02:39 +000049 ret = sscanf(buf, "%ld", &snooze);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 if (ret != 1)
51 return -EINVAL;
52
Kay Sievers8a25a2f2011-12-21 14:29:42 -080053 per_cpu(smt_snooze_delay, cpu->dev.id) = snooze;
Deepthi Dharwar707827f2011-11-30 02:46:42 +000054 update_smt_snooze_delay(snooze);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 return count;
57}
58
Kay Sievers8a25a2f2011-12-21 14:29:42 -080059static ssize_t show_smt_snooze_delay(struct device *dev,
60 struct device_attribute *attr,
Andi Kleen4a0b2b42008-07-01 18:48:41 +020061 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Kay Sievers8a25a2f2011-12-21 14:29:42 -080063 struct cpu *cpu = container_of(dev, struct cpu, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Kay Sievers8a25a2f2011-12-21 14:29:42 -080065 return sprintf(buf, "%ld\n", per_cpu(smt_snooze_delay, cpu->dev.id));
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Kay Sievers8a25a2f2011-12-21 14:29:42 -080068static DEVICE_ATTR(smt_snooze_delay, 0644, show_smt_snooze_delay,
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 store_smt_snooze_delay);
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static int __init setup_smt_snooze_delay(char *str)
72{
73 unsigned int cpu;
Anton Blanchardb878dc02010-05-16 20:02:39 +000074 long snooze;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 if (!cpu_has_feature(CPU_FTR_SMT))
77 return 1;
78
Anton Blanchardb878dc02010-05-16 20:02:39 +000079 snooze = simple_strtol(str, NULL, 10);
80 for_each_possible_cpu(cpu)
81 per_cpu(smt_snooze_delay, cpu) = snooze;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 return 1;
84}
85__setup("smt-snooze-delay=", setup_smt_snooze_delay);
86
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +100087#endif /* CONFIG_PPC64 */
Michael Ellerman180a3362005-08-09 11:13:36 +100088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * Enabling PMCs will slow partition context switch times so we only do
91 * it the first time we write to the PMCs.
92 */
93
94static DEFINE_PER_CPU(char, pmcs_enabled);
95
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +100096void ppc_enable_pmcs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Paul Mackerrasa6dbf932009-09-09 01:26:03 +000098 ppc_set_pmu_inuse(1);
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 /* Only need to enable them once */
101 if (__get_cpu_var(pmcs_enabled))
102 return;
103
104 __get_cpu_var(pmcs_enabled) = 1;
105
Michael Ellerman180a3362005-08-09 11:13:36 +1000106 if (ppc_md.enable_pmcs)
107 ppc_md.enable_pmcs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000109EXPORT_SYMBOL(ppc_enable_pmcs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define SYSFS_PMCSETUP(NAME, ADDRESS) \
Rusty Russell9a371932009-03-11 12:20:05 +0000112static void read_##NAME(void *val) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{ \
Benjamin Herrenschmidtec78c8a2009-03-26 19:29:06 +0000114 *(unsigned long *)val = mfspr(ADDRESS); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115} \
Benjamin Herrenschmidtec78c8a2009-03-26 19:29:06 +0000116static void write_##NAME(void *val) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{ \
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000118 ppc_enable_pmcs(); \
Rusty Russell9a371932009-03-11 12:20:05 +0000119 mtspr(ADDRESS, *(unsigned long *)val); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120} \
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800121static ssize_t show_##NAME(struct device *dev, \
122 struct device_attribute *attr, \
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200123 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{ \
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800125 struct cpu *cpu = container_of(dev, struct cpu, dev); \
Rusty Russell9a371932009-03-11 12:20:05 +0000126 unsigned long val; \
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800127 smp_call_function_single(cpu->dev.id, read_##NAME, &val, 1); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return sprintf(buf, "%lx\n", val); \
129} \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100130static ssize_t __used \
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800131 store_##NAME(struct device *dev, struct device_attribute *attr, \
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200132 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{ \
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800134 struct cpu *cpu = container_of(dev, struct cpu, dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 unsigned long val; \
136 int ret = sscanf(buf, "%lx", &val); \
137 if (ret != 1) \
138 return -EINVAL; \
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800139 smp_call_function_single(cpu->dev.id, write_##NAME, &val, 1); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return count; \
141}
142
Olof Johansson6529c132007-01-28 21:25:57 -0600143
144/* Let's define all possible registers, we'll only hook up the ones
145 * that are implemented on the current processor
146 */
147
Kumar Gala33a7f122008-09-18 17:50:42 -0500148#if defined(CONFIG_PPC64)
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000149#define HAS_PPC_PMC_CLASSIC 1
150#define HAS_PPC_PMC_IBM 1
151#define HAS_PPC_PMC_PA6T 1
Kumar Gala33a7f122008-09-18 17:50:42 -0500152#elif defined(CONFIG_6xx)
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000153#define HAS_PPC_PMC_CLASSIC 1
154#define HAS_PPC_PMC_IBM 1
155#define HAS_PPC_PMC_G4 1
156#endif
157
158
159#ifdef HAS_PPC_PMC_CLASSIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160SYSFS_PMCSETUP(mmcr0, SPRN_MMCR0);
161SYSFS_PMCSETUP(mmcr1, SPRN_MMCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162SYSFS_PMCSETUP(pmc1, SPRN_PMC1);
163SYSFS_PMCSETUP(pmc2, SPRN_PMC2);
164SYSFS_PMCSETUP(pmc3, SPRN_PMC3);
165SYSFS_PMCSETUP(pmc4, SPRN_PMC4);
166SYSFS_PMCSETUP(pmc5, SPRN_PMC5);
167SYSFS_PMCSETUP(pmc6, SPRN_PMC6);
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000168
169#ifdef HAS_PPC_PMC_G4
170SYSFS_PMCSETUP(mmcr2, SPRN_MMCR2);
171#endif
172
173#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174SYSFS_PMCSETUP(pmc7, SPRN_PMC7);
175SYSFS_PMCSETUP(pmc8, SPRN_PMC8);
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000176
177SYSFS_PMCSETUP(mmcra, SPRN_MMCRA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178SYSFS_PMCSETUP(purr, SPRN_PURR);
Anton Blanchardf0509822006-12-08 17:51:13 +1100179SYSFS_PMCSETUP(spurr, SPRN_SPURR);
Anton Blanchard4c1985572006-12-08 17:46:58 +1100180SYSFS_PMCSETUP(dscr, SPRN_DSCR);
Ananth N Mavinakayanahalli595fe912011-11-10 19:58:53 +0000181SYSFS_PMCSETUP(pir, SPRN_PIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800183static DEVICE_ATTR(mmcra, 0600, show_mmcra, store_mmcra);
184static DEVICE_ATTR(spurr, 0600, show_spurr, NULL);
185static DEVICE_ATTR(dscr, 0600, show_dscr, store_dscr);
186static DEVICE_ATTR(purr, 0600, show_purr, store_purr);
Linus Torvalds7affca32012-01-07 12:03:30 -0800187static DEVICE_ATTR(pir, 0400, show_pir, NULL);
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000188
189unsigned long dscr_default = 0;
190EXPORT_SYMBOL(dscr_default);
191
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800192static ssize_t show_dscr_default(struct device *dev,
193 struct device_attribute *attr, char *buf)
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000194{
195 return sprintf(buf, "%lx\n", dscr_default);
196}
197
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800198static ssize_t __used store_dscr_default(struct device *dev,
199 struct device_attribute *attr, const char *buf,
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000200 size_t count)
201{
202 unsigned long val;
203 int ret = 0;
204
205 ret = sscanf(buf, "%lx", &val);
206 if (ret != 1)
207 return -EINVAL;
208 dscr_default = val;
209
210 return count;
211}
212
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800213static DEVICE_ATTR(dscr_default, 0600,
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000214 show_dscr_default, store_dscr_default);
215
216static void sysfs_create_dscr_default(void)
217{
218 int err = 0;
219 if (cpu_has_feature(CPU_FTR_DSCR))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800220 err = device_create_file(cpu_subsys.dev_root, &dev_attr_dscr_default);
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000221}
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000222#endif /* CONFIG_PPC64 */
223
224#ifdef HAS_PPC_PMC_PA6T
Olof Johansson25fc5302007-04-18 16:38:21 +1000225SYSFS_PMCSETUP(pa6t_pmc0, SPRN_PA6T_PMC0);
226SYSFS_PMCSETUP(pa6t_pmc1, SPRN_PA6T_PMC1);
227SYSFS_PMCSETUP(pa6t_pmc2, SPRN_PA6T_PMC2);
228SYSFS_PMCSETUP(pa6t_pmc3, SPRN_PA6T_PMC3);
229SYSFS_PMCSETUP(pa6t_pmc4, SPRN_PA6T_PMC4);
230SYSFS_PMCSETUP(pa6t_pmc5, SPRN_PA6T_PMC5);
Olof Johansson2e1957f2007-09-05 12:09:06 +1000231#ifdef CONFIG_DEBUG_KERNEL
232SYSFS_PMCSETUP(hid0, SPRN_HID0);
233SYSFS_PMCSETUP(hid1, SPRN_HID1);
234SYSFS_PMCSETUP(hid4, SPRN_HID4);
235SYSFS_PMCSETUP(hid5, SPRN_HID5);
236SYSFS_PMCSETUP(ima0, SPRN_PA6T_IMA0);
237SYSFS_PMCSETUP(ima1, SPRN_PA6T_IMA1);
238SYSFS_PMCSETUP(ima2, SPRN_PA6T_IMA2);
239SYSFS_PMCSETUP(ima3, SPRN_PA6T_IMA3);
240SYSFS_PMCSETUP(ima4, SPRN_PA6T_IMA4);
241SYSFS_PMCSETUP(ima5, SPRN_PA6T_IMA5);
242SYSFS_PMCSETUP(ima6, SPRN_PA6T_IMA6);
243SYSFS_PMCSETUP(ima7, SPRN_PA6T_IMA7);
244SYSFS_PMCSETUP(ima8, SPRN_PA6T_IMA8);
245SYSFS_PMCSETUP(ima9, SPRN_PA6T_IMA9);
246SYSFS_PMCSETUP(imaat, SPRN_PA6T_IMAAT);
247SYSFS_PMCSETUP(btcr, SPRN_PA6T_BTCR);
248SYSFS_PMCSETUP(pccr, SPRN_PA6T_PCCR);
249SYSFS_PMCSETUP(rpccr, SPRN_PA6T_RPCCR);
250SYSFS_PMCSETUP(der, SPRN_PA6T_DER);
251SYSFS_PMCSETUP(mer, SPRN_PA6T_MER);
252SYSFS_PMCSETUP(ber, SPRN_PA6T_BER);
253SYSFS_PMCSETUP(ier, SPRN_PA6T_IER);
254SYSFS_PMCSETUP(sier, SPRN_PA6T_SIER);
255SYSFS_PMCSETUP(siar, SPRN_PA6T_SIAR);
256SYSFS_PMCSETUP(tsr0, SPRN_PA6T_TSR0);
257SYSFS_PMCSETUP(tsr1, SPRN_PA6T_TSR1);
258SYSFS_PMCSETUP(tsr2, SPRN_PA6T_TSR2);
259SYSFS_PMCSETUP(tsr3, SPRN_PA6T_TSR3);
260#endif /* CONFIG_DEBUG_KERNEL */
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000261#endif /* HAS_PPC_PMC_PA6T */
Olof Johansson6529c132007-01-28 21:25:57 -0600262
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000263#ifdef HAS_PPC_PMC_IBM
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800264static struct device_attribute ibm_common_attrs[] = {
265 __ATTR(mmcr0, 0600, show_mmcr0, store_mmcr0),
266 __ATTR(mmcr1, 0600, show_mmcr1, store_mmcr1),
Olof Johansson6529c132007-01-28 21:25:57 -0600267};
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000268#endif /* HAS_PPC_PMC_G4 */
Olof Johansson6529c132007-01-28 21:25:57 -0600269
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000270#ifdef HAS_PPC_PMC_G4
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800271static struct device_attribute g4_common_attrs[] = {
272 __ATTR(mmcr0, 0600, show_mmcr0, store_mmcr0),
273 __ATTR(mmcr1, 0600, show_mmcr1, store_mmcr1),
274 __ATTR(mmcr2, 0600, show_mmcr2, store_mmcr2),
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000275};
276#endif /* HAS_PPC_PMC_G4 */
277
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800278static struct device_attribute classic_pmc_attrs[] = {
279 __ATTR(pmc1, 0600, show_pmc1, store_pmc1),
280 __ATTR(pmc2, 0600, show_pmc2, store_pmc2),
281 __ATTR(pmc3, 0600, show_pmc3, store_pmc3),
282 __ATTR(pmc4, 0600, show_pmc4, store_pmc4),
283 __ATTR(pmc5, 0600, show_pmc5, store_pmc5),
284 __ATTR(pmc6, 0600, show_pmc6, store_pmc6),
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000285#ifdef CONFIG_PPC64
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800286 __ATTR(pmc7, 0600, show_pmc7, store_pmc7),
287 __ATTR(pmc8, 0600, show_pmc8, store_pmc8),
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000288#endif
Olof Johansson6529c132007-01-28 21:25:57 -0600289};
290
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000291#ifdef HAS_PPC_PMC_PA6T
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800292static struct device_attribute pa6t_attrs[] = {
293 __ATTR(mmcr0, 0600, show_mmcr0, store_mmcr0),
294 __ATTR(mmcr1, 0600, show_mmcr1, store_mmcr1),
295 __ATTR(pmc0, 0600, show_pa6t_pmc0, store_pa6t_pmc0),
296 __ATTR(pmc1, 0600, show_pa6t_pmc1, store_pa6t_pmc1),
297 __ATTR(pmc2, 0600, show_pa6t_pmc2, store_pa6t_pmc2),
298 __ATTR(pmc3, 0600, show_pa6t_pmc3, store_pa6t_pmc3),
299 __ATTR(pmc4, 0600, show_pa6t_pmc4, store_pa6t_pmc4),
300 __ATTR(pmc5, 0600, show_pa6t_pmc5, store_pa6t_pmc5),
Olof Johansson2e1957f2007-09-05 12:09:06 +1000301#ifdef CONFIG_DEBUG_KERNEL
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800302 __ATTR(hid0, 0600, show_hid0, store_hid0),
303 __ATTR(hid1, 0600, show_hid1, store_hid1),
304 __ATTR(hid4, 0600, show_hid4, store_hid4),
305 __ATTR(hid5, 0600, show_hid5, store_hid5),
306 __ATTR(ima0, 0600, show_ima0, store_ima0),
307 __ATTR(ima1, 0600, show_ima1, store_ima1),
308 __ATTR(ima2, 0600, show_ima2, store_ima2),
309 __ATTR(ima3, 0600, show_ima3, store_ima3),
310 __ATTR(ima4, 0600, show_ima4, store_ima4),
311 __ATTR(ima5, 0600, show_ima5, store_ima5),
312 __ATTR(ima6, 0600, show_ima6, store_ima6),
313 __ATTR(ima7, 0600, show_ima7, store_ima7),
314 __ATTR(ima8, 0600, show_ima8, store_ima8),
315 __ATTR(ima9, 0600, show_ima9, store_ima9),
316 __ATTR(imaat, 0600, show_imaat, store_imaat),
317 __ATTR(btcr, 0600, show_btcr, store_btcr),
318 __ATTR(pccr, 0600, show_pccr, store_pccr),
319 __ATTR(rpccr, 0600, show_rpccr, store_rpccr),
320 __ATTR(der, 0600, show_der, store_der),
321 __ATTR(mer, 0600, show_mer, store_mer),
322 __ATTR(ber, 0600, show_ber, store_ber),
323 __ATTR(ier, 0600, show_ier, store_ier),
324 __ATTR(sier, 0600, show_sier, store_sier),
325 __ATTR(siar, 0600, show_siar, store_siar),
326 __ATTR(tsr0, 0600, show_tsr0, store_tsr0),
327 __ATTR(tsr1, 0600, show_tsr1, store_tsr1),
328 __ATTR(tsr2, 0600, show_tsr2, store_tsr2),
329 __ATTR(tsr3, 0600, show_tsr3, store_tsr3),
Olof Johansson2e1957f2007-09-05 12:09:06 +1000330#endif /* CONFIG_DEBUG_KERNEL */
Olof Johansson6529c132007-01-28 21:25:57 -0600331};
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000332#endif /* HAS_PPC_PMC_PA6T */
333#endif /* HAS_PPC_PMC_CLASSIC */
Olof Johansson6529c132007-01-28 21:25:57 -0600334
Nathan Lynch9ba19842008-07-27 15:24:51 +1000335static void __cpuinit register_cpu_online(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 struct cpu *c = &per_cpu(cpu_devices, cpu);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800338 struct device *s = &c->dev;
339 struct device_attribute *attrs, *pmc_attrs;
Olof Johansson6529c132007-01-28 21:25:57 -0600340 int i, nattrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000342#ifdef CONFIG_PPC64
Stephen Rothwellf5339272012-03-15 18:18:00 +0000343 if (cpu_has_feature(CPU_FTR_SMT))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800344 device_create_file(s, &dev_attr_smt_snooze_delay);
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000345#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 /* PMC stuff */
Olof Johansson6529c132007-01-28 21:25:57 -0600348 switch (cur_cpu_spec->pmc_type) {
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000349#ifdef HAS_PPC_PMC_IBM
Olof Johansson6529c132007-01-28 21:25:57 -0600350 case PPC_PMC_IBM:
351 attrs = ibm_common_attrs;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800352 nattrs = sizeof(ibm_common_attrs) / sizeof(struct device_attribute);
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000353 pmc_attrs = classic_pmc_attrs;
Olof Johansson6529c132007-01-28 21:25:57 -0600354 break;
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000355#endif /* HAS_PPC_PMC_IBM */
356#ifdef HAS_PPC_PMC_G4
357 case PPC_PMC_G4:
358 attrs = g4_common_attrs;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800359 nattrs = sizeof(g4_common_attrs) / sizeof(struct device_attribute);
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000360 pmc_attrs = classic_pmc_attrs;
361 break;
362#endif /* HAS_PPC_PMC_G4 */
363#ifdef HAS_PPC_PMC_PA6T
Olof Johansson6529c132007-01-28 21:25:57 -0600364 case PPC_PMC_PA6T:
365 /* PA Semi starts counting at PMC0 */
366 attrs = pa6t_attrs;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800367 nattrs = sizeof(pa6t_attrs) / sizeof(struct device_attribute);
Olof Johansson6529c132007-01-28 21:25:57 -0600368 pmc_attrs = NULL;
369 break;
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000370#endif /* HAS_PPC_PMC_PA6T */
Olof Johansson6529c132007-01-28 21:25:57 -0600371 default:
372 attrs = NULL;
373 nattrs = 0;
374 pmc_attrs = NULL;
375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Olof Johansson6529c132007-01-28 21:25:57 -0600377 for (i = 0; i < nattrs; i++)
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800378 device_create_file(s, &attrs[i]);
Olof Johansson6529c132007-01-28 21:25:57 -0600379
380 if (pmc_attrs)
381 for (i = 0; i < cur_cpu_spec->num_pmcs; i++)
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800382 device_create_file(s, &pmc_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000384#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (cpu_has_feature(CPU_FTR_MMCRA))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800386 device_create_file(s, &dev_attr_mmcra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Michael Neulingafd05422006-07-28 13:58:37 +1000388 if (cpu_has_feature(CPU_FTR_PURR))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800389 device_create_file(s, &dev_attr_purr);
Anton Blanchard4c1985572006-12-08 17:46:58 +1100390
Anton Blanchardf0509822006-12-08 17:51:13 +1100391 if (cpu_has_feature(CPU_FTR_SPURR))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800392 device_create_file(s, &dev_attr_spurr);
Anton Blanchardf0509822006-12-08 17:51:13 +1100393
Anton Blanchard4c1985572006-12-08 17:46:58 +1100394 if (cpu_has_feature(CPU_FTR_DSCR))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800395 device_create_file(s, &dev_attr_dscr);
Ananth N Mavinakayanahalli595fe912011-11-10 19:58:53 +0000396
397 if (cpu_has_feature(CPU_FTR_PPCAS_ARCH_V2))
Linus Torvalds7affca32012-01-07 12:03:30 -0800398 device_create_file(s, &dev_attr_pir);
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000399#endif /* CONFIG_PPC64 */
Nathan Lynch124c27d2008-07-27 15:24:55 +1000400
Nathan Lynch93197a32008-12-23 18:55:54 +0000401 cacheinfo_cpu_online(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404#ifdef CONFIG_HOTPLUG_CPU
405static void unregister_cpu_online(unsigned int cpu)
406{
407 struct cpu *c = &per_cpu(cpu_devices, cpu);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800408 struct device *s = &c->dev;
409 struct device_attribute *attrs, *pmc_attrs;
Olof Johansson6529c132007-01-28 21:25:57 -0600410 int i, nattrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Siddha, Suresh B72486f12006-12-07 02:14:10 +0100412 BUG_ON(!c->hotpluggable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Milton Millera1e0eb12008-11-16 11:44:42 +0000414#ifdef CONFIG_PPC64
Stephen Rothwellf5339272012-03-15 18:18:00 +0000415 if (cpu_has_feature(CPU_FTR_SMT))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800416 device_remove_file(s, &dev_attr_smt_snooze_delay);
Milton Millera1e0eb12008-11-16 11:44:42 +0000417#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 /* PMC stuff */
Olof Johansson6529c132007-01-28 21:25:57 -0600420 switch (cur_cpu_spec->pmc_type) {
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000421#ifdef HAS_PPC_PMC_IBM
Olof Johansson6529c132007-01-28 21:25:57 -0600422 case PPC_PMC_IBM:
423 attrs = ibm_common_attrs;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800424 nattrs = sizeof(ibm_common_attrs) / sizeof(struct device_attribute);
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000425 pmc_attrs = classic_pmc_attrs;
Olof Johansson6529c132007-01-28 21:25:57 -0600426 break;
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000427#endif /* HAS_PPC_PMC_IBM */
428#ifdef HAS_PPC_PMC_G4
429 case PPC_PMC_G4:
430 attrs = g4_common_attrs;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800431 nattrs = sizeof(g4_common_attrs) / sizeof(struct device_attribute);
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000432 pmc_attrs = classic_pmc_attrs;
433 break;
434#endif /* HAS_PPC_PMC_G4 */
435#ifdef HAS_PPC_PMC_PA6T
Olof Johansson6529c132007-01-28 21:25:57 -0600436 case PPC_PMC_PA6T:
437 /* PA Semi starts counting at PMC0 */
438 attrs = pa6t_attrs;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800439 nattrs = sizeof(pa6t_attrs) / sizeof(struct device_attribute);
Olof Johansson6529c132007-01-28 21:25:57 -0600440 pmc_attrs = NULL;
441 break;
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000442#endif /* HAS_PPC_PMC_PA6T */
Olof Johansson6529c132007-01-28 21:25:57 -0600443 default:
444 attrs = NULL;
445 nattrs = 0;
446 pmc_attrs = NULL;
447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Olof Johansson6529c132007-01-28 21:25:57 -0600449 for (i = 0; i < nattrs; i++)
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800450 device_remove_file(s, &attrs[i]);
Olof Johansson6529c132007-01-28 21:25:57 -0600451
452 if (pmc_attrs)
453 for (i = 0; i < cur_cpu_spec->num_pmcs; i++)
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800454 device_remove_file(s, &pmc_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000456#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (cpu_has_feature(CPU_FTR_MMCRA))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800458 device_remove_file(s, &dev_attr_mmcra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Michael Neulingafd05422006-07-28 13:58:37 +1000460 if (cpu_has_feature(CPU_FTR_PURR))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800461 device_remove_file(s, &dev_attr_purr);
Anton Blanchard4c1985572006-12-08 17:46:58 +1100462
Anton Blanchardf0509822006-12-08 17:51:13 +1100463 if (cpu_has_feature(CPU_FTR_SPURR))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800464 device_remove_file(s, &dev_attr_spurr);
Anton Blanchardf0509822006-12-08 17:51:13 +1100465
Anton Blanchard4c1985572006-12-08 17:46:58 +1100466 if (cpu_has_feature(CPU_FTR_DSCR))
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800467 device_remove_file(s, &dev_attr_dscr);
Ananth N Mavinakayanahalli595fe912011-11-10 19:58:53 +0000468
469 if (cpu_has_feature(CPU_FTR_PPCAS_ARCH_V2))
Linus Torvalds7affca32012-01-07 12:03:30 -0800470 device_remove_file(s, &dev_attr_pir);
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000471#endif /* CONFIG_PPC64 */
Nathan Lynch124c27d2008-07-27 15:24:55 +1000472
Nathan Lynch93197a32008-12-23 18:55:54 +0000473 cacheinfo_cpu_offline(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
Nathan Fontenot12633e82009-11-25 17:23:25 +0000475
476#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
477ssize_t arch_cpu_probe(const char *buf, size_t count)
478{
479 if (ppc_md.cpu_probe)
480 return ppc_md.cpu_probe(buf, count);
481
482 return -EINVAL;
483}
484
485ssize_t arch_cpu_release(const char *buf, size_t count)
486{
487 if (ppc_md.cpu_release)
488 return ppc_md.cpu_release(buf, count);
489
490 return -EINVAL;
491}
492#endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494#endif /* CONFIG_HOTPLUG_CPU */
495
Chandra Seetharaman8c78f302006-07-30 03:03:35 -0700496static int __cpuinit sysfs_cpu_notify(struct notifier_block *self,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 unsigned long action, void *hcpu)
498{
499 unsigned int cpu = (unsigned int)(long)hcpu;
500
501 switch (action) {
502 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700503 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 register_cpu_online(cpu);
505 break;
506#ifdef CONFIG_HOTPLUG_CPU
507 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700508 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 unregister_cpu_online(cpu);
510 break;
511#endif
512 }
513 return NOTIFY_OK;
514}
515
Chandra Seetharaman8c78f302006-07-30 03:03:35 -0700516static struct notifier_block __cpuinitdata sysfs_cpu_nb = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 .notifier_call = sysfs_cpu_notify,
518};
519
Christian Krafft0344c6c2006-10-24 18:31:24 +0200520static DEFINE_MUTEX(cpu_mutex);
521
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800522int cpu_add_dev_attr(struct device_attribute *attr)
Christian Krafft0344c6c2006-10-24 18:31:24 +0200523{
524 int cpu;
525
526 mutex_lock(&cpu_mutex);
527
528 for_each_possible_cpu(cpu) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800529 device_create_file(get_cpu_device(cpu), attr);
Christian Krafft0344c6c2006-10-24 18:31:24 +0200530 }
531
532 mutex_unlock(&cpu_mutex);
533 return 0;
534}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800535EXPORT_SYMBOL_GPL(cpu_add_dev_attr);
Christian Krafft0344c6c2006-10-24 18:31:24 +0200536
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800537int cpu_add_dev_attr_group(struct attribute_group *attrs)
Christian Krafft0344c6c2006-10-24 18:31:24 +0200538{
539 int cpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800540 struct device *dev;
Olof Johansson6bcc4c02007-09-05 12:43:17 +1000541 int ret;
Christian Krafft0344c6c2006-10-24 18:31:24 +0200542
543 mutex_lock(&cpu_mutex);
544
545 for_each_possible_cpu(cpu) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800546 dev = get_cpu_device(cpu);
547 ret = sysfs_create_group(&dev->kobj, attrs);
Olof Johansson6bcc4c02007-09-05 12:43:17 +1000548 WARN_ON(ret != 0);
Christian Krafft0344c6c2006-10-24 18:31:24 +0200549 }
550
551 mutex_unlock(&cpu_mutex);
552 return 0;
553}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800554EXPORT_SYMBOL_GPL(cpu_add_dev_attr_group);
Christian Krafft0344c6c2006-10-24 18:31:24 +0200555
556
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800557void cpu_remove_dev_attr(struct device_attribute *attr)
Christian Krafft0344c6c2006-10-24 18:31:24 +0200558{
559 int cpu;
560
561 mutex_lock(&cpu_mutex);
562
563 for_each_possible_cpu(cpu) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800564 device_remove_file(get_cpu_device(cpu), attr);
Christian Krafft0344c6c2006-10-24 18:31:24 +0200565 }
566
567 mutex_unlock(&cpu_mutex);
568}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800569EXPORT_SYMBOL_GPL(cpu_remove_dev_attr);
Christian Krafft0344c6c2006-10-24 18:31:24 +0200570
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800571void cpu_remove_dev_attr_group(struct attribute_group *attrs)
Christian Krafft0344c6c2006-10-24 18:31:24 +0200572{
573 int cpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800574 struct device *dev;
Christian Krafft0344c6c2006-10-24 18:31:24 +0200575
576 mutex_lock(&cpu_mutex);
577
578 for_each_possible_cpu(cpu) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800579 dev = get_cpu_device(cpu);
580 sysfs_remove_group(&dev->kobj, attrs);
Christian Krafft0344c6c2006-10-24 18:31:24 +0200581 }
582
583 mutex_unlock(&cpu_mutex);
584}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800585EXPORT_SYMBOL_GPL(cpu_remove_dev_attr_group);
Christian Krafft0344c6c2006-10-24 18:31:24 +0200586
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588/* NUMA stuff */
589
590#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591static void register_nodes(void)
592{
593 int i;
594
Yasunori Goto0fc44152006-06-27 02:53:38 -0700595 for (i = 0; i < MAX_NUMNODES; i++)
596 register_one_node(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
Jeremy Kerr953039c2006-05-01 12:16:12 -0700598
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800599int sysfs_add_device_to_node(struct device *dev, int nid)
Jeremy Kerr953039c2006-05-01 12:16:12 -0700600{
601 struct node *node = &node_devices[nid];
Kay Sievers10fbcf42011-12-21 14:48:43 -0800602 return sysfs_create_link(&node->dev.kobj, &dev->kobj,
Jeremy Kerr953039c2006-05-01 12:16:12 -0700603 kobject_name(&dev->kobj));
604}
Johannes Berg12654f72007-07-05 19:35:33 +1000605EXPORT_SYMBOL_GPL(sysfs_add_device_to_node);
Jeremy Kerr953039c2006-05-01 12:16:12 -0700606
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800607void sysfs_remove_device_from_node(struct device *dev, int nid)
Jeremy Kerr953039c2006-05-01 12:16:12 -0700608{
609 struct node *node = &node_devices[nid];
Kay Sievers10fbcf42011-12-21 14:48:43 -0800610 sysfs_remove_link(&node->dev.kobj, kobject_name(&dev->kobj));
Jeremy Kerr953039c2006-05-01 12:16:12 -0700611}
Johannes Berg12654f72007-07-05 19:35:33 +1000612EXPORT_SYMBOL_GPL(sysfs_remove_device_from_node);
Jeremy Kerr953039c2006-05-01 12:16:12 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#else
615static void register_nodes(void)
616{
617 return;
618}
Jeremy Kerr953039c2006-05-01 12:16:12 -0700619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620#endif
621
622/* Only valid if CPU is present. */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800623static ssize_t show_physical_id(struct device *dev,
624 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800626 struct cpu *cpu = container_of(dev, struct cpu, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800628 return sprintf(buf, "%d\n", get_hard_smp_processor_id(cpu->dev.id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800630static DEVICE_ATTR(physical_id, 0444, show_physical_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632static int __init topology_init(void)
633{
634 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 register_nodes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 register_cpu_notifier(&sysfs_cpu_nb);
638
KAMEZAWA Hiroyuki0e551952006-03-28 14:50:51 -0800639 for_each_possible_cpu(cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 struct cpu *c = &per_cpu(cpu_devices, cpu);
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /*
643 * For now, we just see if the system supports making
644 * the RTAS calls for CPU hotplug. But, there may be a
645 * more comprehensive way to do this for an individual
646 * CPU. For instance, the boot cpu might never be valid
647 * for hotplugging.
648 */
Siddha, Suresh B72486f12006-12-07 02:14:10 +0100649 if (ppc_md.cpu_die)
650 c->hotpluggable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Siddha, Suresh B72486f12006-12-07 02:14:10 +0100652 if (cpu_online(cpu) || c->hotpluggable) {
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700653 register_cpu(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800655 device_create_file(&c->dev, &dev_attr_physical_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657
658 if (cpu_online(cpu))
659 register_cpu_online(cpu);
660 }
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +0000661#ifdef CONFIG_PPC64
662 sysfs_create_dscr_default();
663#endif /* CONFIG_PPC64 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 return 0;
666}
Kevin Corrye9e77ce2007-05-03 03:11:49 +1000667subsys_initcall(topology_init);