blob: f6f37a05a0c3a5664503040bcdfaae32516d6e6c [file] [log] [blame]
Zhang, Yanmin69dcc992006-02-03 03:04:36 -08001/*
2 * driver/base/topology.c - Populate sysfs with cpu topology information
3 *
4 * Written by: Zhang Yanmin, Intel Corporation
5 *
6 * Copyright (C) 2006, Intel Corp.
7 *
8 * All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
18 * NON INFRINGEMENT. See the GNU General Public License for more
19 * details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 */
26#include <linux/sysdev.h>
27#include <linux/init.h>
28#include <linux/mm.h>
29#include <linux/cpu.h>
30#include <linux/module.h>
David Millerb13d3722009-01-07 15:30:05 -080031#include <linux/hardirq.h>
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080032#include <linux/topology.h>
33
Rusty Russellfbd59a82009-01-10 21:58:08 -080034#define define_one_ro_named(_name, _func) \
35static SYSDEV_ATTR(_name, 0444, _func, NULL)
36
37#define define_one_ro(_name) \
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080038static SYSDEV_ATTR(_name, 0444, show_##_name, NULL)
39
40#define define_id_show_func(name) \
Andi Kleen4a0b2b42008-07-01 18:48:41 +020041static ssize_t show_##name(struct sys_device *dev, \
42 struct sysdev_attribute *attr, char *buf) \
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080043{ \
44 unsigned int cpu = dev->id; \
45 return sprintf(buf, "%d\n", topology_##name(cpu)); \
46}
47
Heiko Carstensb40d8ed2010-08-31 10:28:17 +020048#if defined(topology_thread_cpumask) || defined(topology_core_cpumask) || \
49 defined(topology_book_cpumask)
Rusty Russellfbd59a82009-01-10 21:58:08 -080050static ssize_t show_cpumap(int type, const struct cpumask *mask, char *buf)
Mike Travis39106dc2008-04-08 11:43:03 -070051{
52 ptrdiff_t len = PTR_ALIGN(buf + PAGE_SIZE - 1, PAGE_SIZE) - buf;
53 int n = 0;
54
55 if (len > 1) {
56 n = type?
Rusty Russell29c01772008-12-13 21:20:25 +103057 cpulist_scnprintf(buf, len-2, mask) :
58 cpumask_scnprintf(buf, len-2, mask);
Mike Travis39106dc2008-04-08 11:43:03 -070059 buf[n++] = '\n';
60 buf[n] = '\0';
61 }
62 return n;
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080063}
Mike Travis23ca4bb2008-05-12 21:21:12 +020064#endif
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080065
Mike Travis23ca4bb2008-05-12 21:21:12 +020066#ifdef arch_provides_topology_pointers
Mike Travis39106dc2008-04-08 11:43:03 -070067#define define_siblings_show_map(name) \
Andi Kleen4a0b2b42008-07-01 18:48:41 +020068static ssize_t show_##name(struct sys_device *dev, \
69 struct sysdev_attribute *attr, char *buf) \
Mike Travis39106dc2008-04-08 11:43:03 -070070{ \
71 unsigned int cpu = dev->id; \
Rusty Russellfbd59a82009-01-10 21:58:08 -080072 return show_cpumap(0, topology_##name(cpu), buf); \
Mike Travis39106dc2008-04-08 11:43:03 -070073}
74
75#define define_siblings_show_list(name) \
Andi Kleen4a0b2b42008-07-01 18:48:41 +020076static ssize_t show_##name##_list(struct sys_device *dev, \
77 struct sysdev_attribute *attr, \
78 char *buf) \
Mike Travis39106dc2008-04-08 11:43:03 -070079{ \
80 unsigned int cpu = dev->id; \
Rusty Russellfbd59a82009-01-10 21:58:08 -080081 return show_cpumap(1, topology_##name(cpu), buf); \
Mike Travis39106dc2008-04-08 11:43:03 -070082}
83
Mike Travis23ca4bb2008-05-12 21:21:12 +020084#else
85#define define_siblings_show_map(name) \
Andi Kleen4a0b2b42008-07-01 18:48:41 +020086static ssize_t show_##name(struct sys_device *dev, \
87 struct sysdev_attribute *attr, char *buf) \
Mike Travis23ca4bb2008-05-12 21:21:12 +020088{ \
Rusty Russellfbd59a82009-01-10 21:58:08 -080089 return show_cpumap(0, topology_##name(dev->id), buf); \
Mike Travis23ca4bb2008-05-12 21:21:12 +020090}
91
92#define define_siblings_show_list(name) \
Andi Kleen4a0b2b42008-07-01 18:48:41 +020093static ssize_t show_##name##_list(struct sys_device *dev, \
94 struct sysdev_attribute *attr, \
95 char *buf) \
Mike Travis23ca4bb2008-05-12 21:21:12 +020096{ \
Rusty Russellfbd59a82009-01-10 21:58:08 -080097 return show_cpumap(1, topology_##name(dev->id), buf); \
Mike Travis23ca4bb2008-05-12 21:21:12 +020098}
99#endif
100
Mike Travis39106dc2008-04-08 11:43:03 -0700101#define define_siblings_show_func(name) \
102 define_siblings_show_map(name); define_siblings_show_list(name)
103
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800104define_id_show_func(physical_package_id);
105define_one_ro(physical_package_id);
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800106
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800107define_id_show_func(core_id);
108define_one_ro(core_id);
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800109
Rusty Russellfbd59a82009-01-10 21:58:08 -0800110define_siblings_show_func(thread_cpumask);
111define_one_ro_named(thread_siblings, show_thread_cpumask);
112define_one_ro_named(thread_siblings_list, show_thread_cpumask_list);
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800113
Rusty Russellfbd59a82009-01-10 21:58:08 -0800114define_siblings_show_func(core_cpumask);
115define_one_ro_named(core_siblings, show_core_cpumask);
116define_one_ro_named(core_siblings_list, show_core_cpumask_list);
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800117
Heiko Carstensb40d8ed2010-08-31 10:28:17 +0200118#ifdef CONFIG_SCHED_BOOK
119define_id_show_func(book_id);
120define_one_ro(book_id);
121define_siblings_show_func(book_cpumask);
122define_one_ro_named(book_siblings, show_book_cpumask);
123define_one_ro_named(book_siblings_list, show_book_cpumask_list);
124#endif
125
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800126static struct attribute *default_attrs[] = {
Ben Hutchingsc50cbb02008-06-04 21:47:29 -0700127 &attr_physical_package_id.attr,
128 &attr_core_id.attr,
129 &attr_thread_siblings.attr,
130 &attr_thread_siblings_list.attr,
131 &attr_core_siblings.attr,
132 &attr_core_siblings_list.attr,
Heiko Carstensb40d8ed2010-08-31 10:28:17 +0200133#ifdef CONFIG_SCHED_BOOK
134 &attr_book_id.attr,
135 &attr_book_siblings.attr,
136 &attr_book_siblings_list.attr,
137#endif
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800138 NULL
139};
140
141static struct attribute_group topology_attr_group = {
142 .attrs = default_attrs,
143 .name = "topology"
144};
145
146/* Add/Remove cpu_topology interface for CPU device */
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800147static int __cpuinit topology_add_dev(unsigned int cpu)
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800148{
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800149 struct sys_device *sys_dev = get_cpu_sysdev(cpu);
150
Akinobu Mita9780e3e2007-10-18 03:05:12 -0700151 return sysfs_create_group(&sys_dev->kobj, &topology_attr_group);
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800152}
153
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800154static void __cpuinit topology_remove_dev(unsigned int cpu)
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800155{
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800156 struct sys_device *sys_dev = get_cpu_sysdev(cpu);
157
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800158 sysfs_remove_group(&sys_dev->kobj, &topology_attr_group);
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800159}
160
Chandra Seetharaman9c7b2162006-06-27 02:54:07 -0700161static int __cpuinit topology_cpu_callback(struct notifier_block *nfb,
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800162 unsigned long action, void *hcpu)
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800163{
164 unsigned int cpu = (unsigned long)hcpu;
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800165 int rc = 0;
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800166
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800167 switch (action) {
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800168 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700169 case CPU_UP_PREPARE_FROZEN:
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800170 rc = topology_add_dev(cpu);
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800171 break;
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800172 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700173 case CPU_UP_CANCELED_FROZEN:
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800174 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700175 case CPU_DEAD_FROZEN:
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800176 topology_remove_dev(cpu);
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800177 break;
178 }
Akinobu Mitaad84bb52010-05-26 14:43:31 -0700179 return notifier_from_errno(rc);
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800180}
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800181
182static int __cpuinit topology_sysfs_init(void)
183{
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800184 int cpu;
185 int rc;
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800186
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800187 for_each_online_cpu(cpu) {
188 rc = topology_add_dev(cpu);
189 if (rc)
190 return rc;
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800191 }
Heiko Carstens06a4bca2006-11-08 19:46:09 -0800192 hotcpu_notifier(topology_cpu_callback, 0);
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800193
194 return 0;
195}
196
197device_initcall(topology_sysfs_init);