2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* drivers/base/cpu.c - basic CPU class support
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/sysdev.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
2006-10-18 05:47:25 +00:00
|
|
|
#include <linux/sched.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/cpu.h>
|
|
|
|
#include <linux/topology.h>
|
|
|
|
#include <linux/device.h>
|
[PATCH] node hotplug: register cpu: remove node struct
With Goto-san's patch, we can add new pgdat/node at runtime. I'm now
considering node-hot-add with cpu + memory on ACPI.
I found acpi container, which describes node, could evaluate cpu before
memory. This means cpu-hot-add occurs before memory hot add.
In most part, cpu-hot-add doesn't depend on node hot add. But register_cpu(),
which creates symbolic link from node to cpu, requires that node should be
onlined before register_cpu(). When a node is onlined, its pgdat should be
there.
This patch-set holds off creating symbolic link from node to cpu
until node is onlined.
This removes node arguments from register_cpu().
Now, register_cpu() requires 'struct node' as its argument. But the array of
struct node is now unified in driver/base/node.c now (By Goto's node hotplug
patch). We can get struct node in generic way. So, this argument is not
necessary now.
This patch also guarantees add cpu under node only when node is onlined. It
is necessary for node-hot-add vs. cpu-hot-add patch following this.
Moreover, register_cpu calculates cpu->node_id by cpu_to_node() without regard
to its 'struct node *root' argument. This patch removes it.
Also modify callers of register_cpu()/unregister_cpu, whose args are changed
by register-cpu-remove-node-struct patch.
[Brice.Goglin@ens-lyon.org: fix it]
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Dave Hansen <haveblue@us.ibm.com>
Signed-off-by: Brice Goglin <Brice.Goglin@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-27 09:53:41 +00:00
|
|
|
#include <linux/node.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-10-13 16:54:41 +00:00
|
|
|
#include "base.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
struct sysdev_class cpu_sysdev_class = {
|
2007-12-20 01:09:39 +00:00
|
|
|
.name = "cpu",
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
EXPORT_SYMBOL(cpu_sysdev_class);
|
|
|
|
|
2005-10-30 22:59:49 +00:00
|
|
|
static struct sys_device *cpu_sys_devices[NR_CPUS];
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
static ssize_t show_online(struct sys_device *dev, char *buf)
|
|
|
|
{
|
|
|
|
struct cpu *cpu = container_of(dev, struct cpu, sysdev);
|
|
|
|
|
|
|
|
return sprintf(buf, "%u\n", !!cpu_online(cpu->sysdev.id));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t store_online(struct sys_device *dev, const char *buf,
|
|
|
|
size_t count)
|
|
|
|
{
|
|
|
|
struct cpu *cpu = container_of(dev, struct cpu, sysdev);
|
|
|
|
ssize_t ret;
|
|
|
|
|
|
|
|
switch (buf[0]) {
|
|
|
|
case '0':
|
|
|
|
ret = cpu_down(cpu->sysdev.id);
|
|
|
|
if (!ret)
|
2005-11-16 08:00:00 +00:00
|
|
|
kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
case '1':
|
2006-03-25 11:08:18 +00:00
|
|
|
ret = cpu_up(cpu->sysdev.id);
|
2005-06-25 21:55:05 +00:00
|
|
|
if (!ret)
|
2005-11-16 08:00:00 +00:00
|
|
|
kobject_uevent(&dev->kobj, KOBJ_ONLINE);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret >= 0)
|
|
|
|
ret = count;
|
|
|
|
return ret;
|
|
|
|
}
|
2007-07-31 07:38:16 +00:00
|
|
|
static SYSDEV_ATTR(online, 0644, show_online, store_online);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static void __devinit register_cpu_control(struct cpu *cpu)
|
|
|
|
{
|
|
|
|
sysdev_create_file(&cpu->sysdev, &attr_online);
|
|
|
|
}
|
[PATCH] node hotplug: register cpu: remove node struct
With Goto-san's patch, we can add new pgdat/node at runtime. I'm now
considering node-hot-add with cpu + memory on ACPI.
I found acpi container, which describes node, could evaluate cpu before
memory. This means cpu-hot-add occurs before memory hot add.
In most part, cpu-hot-add doesn't depend on node hot add. But register_cpu(),
which creates symbolic link from node to cpu, requires that node should be
onlined before register_cpu(). When a node is onlined, its pgdat should be
there.
This patch-set holds off creating symbolic link from node to cpu
until node is onlined.
This removes node arguments from register_cpu().
Now, register_cpu() requires 'struct node' as its argument. But the array of
struct node is now unified in driver/base/node.c now (By Goto's node hotplug
patch). We can get struct node in generic way. So, this argument is not
necessary now.
This patch also guarantees add cpu under node only when node is onlined. It
is necessary for node-hot-add vs. cpu-hot-add patch following this.
Moreover, register_cpu calculates cpu->node_id by cpu_to_node() without regard
to its 'struct node *root' argument. This patch removes it.
Also modify callers of register_cpu()/unregister_cpu, whose args are changed
by register-cpu-remove-node-struct patch.
[Brice.Goglin@ens-lyon.org: fix it]
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Dave Hansen <haveblue@us.ibm.com>
Signed-off-by: Brice Goglin <Brice.Goglin@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-27 09:53:41 +00:00
|
|
|
void unregister_cpu(struct cpu *cpu)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-10-30 22:59:49 +00:00
|
|
|
int logical_cpu = cpu->sysdev.id;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
[PATCH] node hotplug: register cpu: remove node struct
With Goto-san's patch, we can add new pgdat/node at runtime. I'm now
considering node-hot-add with cpu + memory on ACPI.
I found acpi container, which describes node, could evaluate cpu before
memory. This means cpu-hot-add occurs before memory hot add.
In most part, cpu-hot-add doesn't depend on node hot add. But register_cpu(),
which creates symbolic link from node to cpu, requires that node should be
onlined before register_cpu(). When a node is onlined, its pgdat should be
there.
This patch-set holds off creating symbolic link from node to cpu
until node is onlined.
This removes node arguments from register_cpu().
Now, register_cpu() requires 'struct node' as its argument. But the array of
struct node is now unified in driver/base/node.c now (By Goto's node hotplug
patch). We can get struct node in generic way. So, this argument is not
necessary now.
This patch also guarantees add cpu under node only when node is onlined. It
is necessary for node-hot-add vs. cpu-hot-add patch following this.
Moreover, register_cpu calculates cpu->node_id by cpu_to_node() without regard
to its 'struct node *root' argument. This patch removes it.
Also modify callers of register_cpu()/unregister_cpu, whose args are changed
by register-cpu-remove-node-struct patch.
[Brice.Goglin@ens-lyon.org: fix it]
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Dave Hansen <haveblue@us.ibm.com>
Signed-off-by: Brice Goglin <Brice.Goglin@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-27 09:53:41 +00:00
|
|
|
unregister_cpu_under_node(logical_cpu, cpu_to_node(logical_cpu));
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
sysdev_remove_file(&cpu->sysdev, &attr_online);
|
|
|
|
|
|
|
|
sysdev_unregister(&cpu->sysdev);
|
2005-10-30 22:59:49 +00:00
|
|
|
cpu_sys_devices[logical_cpu] = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#else /* ... !CONFIG_HOTPLUG_CPU */
|
|
|
|
static inline void register_cpu_control(struct cpu *cpu)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_HOTPLUG_CPU */
|
|
|
|
|
2006-01-10 04:51:42 +00:00
|
|
|
#ifdef CONFIG_KEXEC
|
|
|
|
#include <linux/kexec.h>
|
|
|
|
|
|
|
|
static ssize_t show_crash_notes(struct sys_device *dev, char *buf)
|
|
|
|
{
|
|
|
|
struct cpu *cpu = container_of(dev, struct cpu, sysdev);
|
|
|
|
ssize_t rc;
|
|
|
|
unsigned long long addr;
|
|
|
|
int cpunum;
|
|
|
|
|
|
|
|
cpunum = cpu->sysdev.id;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Might be reading other cpu's data based on which cpu read thread
|
|
|
|
* has been scheduled. But cpu data (memory) is allocated once during
|
|
|
|
* boot up and this data does not change there after. Hence this
|
|
|
|
* operation should be safe. No locking required.
|
|
|
|
*/
|
|
|
|
addr = __pa(per_cpu_ptr(crash_notes, cpunum));
|
|
|
|
rc = sprintf(buf, "%Lx\n", addr);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
static SYSDEV_ATTR(crash_notes, 0400, show_crash_notes, NULL);
|
|
|
|
#endif
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2007-02-17 18:13:42 +00:00
|
|
|
* register_cpu - Setup a sysfs device for a CPU.
|
2006-12-07 01:14:10 +00:00
|
|
|
* @cpu - cpu->hotpluggable field set to 1 will generate a control file in
|
|
|
|
* sysfs for this CPU.
|
2005-04-16 22:20:36 +00:00
|
|
|
* @num - CPU number to use when creating the device.
|
|
|
|
*
|
|
|
|
* Initialize and register the CPU device.
|
|
|
|
*/
|
2008-02-06 09:36:28 +00:00
|
|
|
int __cpuinit register_cpu(struct cpu *cpu, int num)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
cpu->node_id = cpu_to_node(num);
|
|
|
|
cpu->sysdev.id = num;
|
|
|
|
cpu->sysdev.cls = &cpu_sysdev_class;
|
|
|
|
|
|
|
|
error = sysdev_register(&cpu->sysdev);
|
[PATCH] node hotplug: register cpu: remove node struct
With Goto-san's patch, we can add new pgdat/node at runtime. I'm now
considering node-hot-add with cpu + memory on ACPI.
I found acpi container, which describes node, could evaluate cpu before
memory. This means cpu-hot-add occurs before memory hot add.
In most part, cpu-hot-add doesn't depend on node hot add. But register_cpu(),
which creates symbolic link from node to cpu, requires that node should be
onlined before register_cpu(). When a node is onlined, its pgdat should be
there.
This patch-set holds off creating symbolic link from node to cpu
until node is onlined.
This removes node arguments from register_cpu().
Now, register_cpu() requires 'struct node' as its argument. But the array of
struct node is now unified in driver/base/node.c now (By Goto's node hotplug
patch). We can get struct node in generic way. So, this argument is not
necessary now.
This patch also guarantees add cpu under node only when node is onlined. It
is necessary for node-hot-add vs. cpu-hot-add patch following this.
Moreover, register_cpu calculates cpu->node_id by cpu_to_node() without regard
to its 'struct node *root' argument. This patch removes it.
Also modify callers of register_cpu()/unregister_cpu, whose args are changed
by register-cpu-remove-node-struct patch.
[Brice.Goglin@ens-lyon.org: fix it]
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Dave Hansen <haveblue@us.ibm.com>
Signed-off-by: Brice Goglin <Brice.Goglin@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-27 09:53:41 +00:00
|
|
|
|
2006-12-07 01:14:10 +00:00
|
|
|
if (!error && cpu->hotpluggable)
|
2005-04-16 22:20:36 +00:00
|
|
|
register_cpu_control(cpu);
|
2005-10-30 22:59:49 +00:00
|
|
|
if (!error)
|
|
|
|
cpu_sys_devices[num] = &cpu->sysdev;
|
[PATCH] node hotplug: register cpu: remove node struct
With Goto-san's patch, we can add new pgdat/node at runtime. I'm now
considering node-hot-add with cpu + memory on ACPI.
I found acpi container, which describes node, could evaluate cpu before
memory. This means cpu-hot-add occurs before memory hot add.
In most part, cpu-hot-add doesn't depend on node hot add. But register_cpu(),
which creates symbolic link from node to cpu, requires that node should be
onlined before register_cpu(). When a node is onlined, its pgdat should be
there.
This patch-set holds off creating symbolic link from node to cpu
until node is onlined.
This removes node arguments from register_cpu().
Now, register_cpu() requires 'struct node' as its argument. But the array of
struct node is now unified in driver/base/node.c now (By Goto's node hotplug
patch). We can get struct node in generic way. So, this argument is not
necessary now.
This patch also guarantees add cpu under node only when node is onlined. It
is necessary for node-hot-add vs. cpu-hot-add patch following this.
Moreover, register_cpu calculates cpu->node_id by cpu_to_node() without regard
to its 'struct node *root' argument. This patch removes it.
Also modify callers of register_cpu()/unregister_cpu, whose args are changed
by register-cpu-remove-node-struct patch.
[Brice.Goglin@ens-lyon.org: fix it]
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Dave Hansen <haveblue@us.ibm.com>
Signed-off-by: Brice Goglin <Brice.Goglin@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-27 09:53:41 +00:00
|
|
|
if (!error)
|
|
|
|
register_cpu_under_node(num, cpu_to_node(num));
|
2006-01-10 04:51:42 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_KEXEC
|
|
|
|
if (!error)
|
|
|
|
error = sysdev_create_file(&cpu->sysdev, &attr_crash_notes);
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2006-03-08 07:53:25 +00:00
|
|
|
struct sys_device *get_cpu_sysdev(unsigned cpu)
|
2005-10-30 22:59:49 +00:00
|
|
|
{
|
|
|
|
if (cpu < NR_CPUS)
|
|
|
|
return cpu_sys_devices[cpu];
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(get_cpu_sysdev);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
int __init cpu_dev_init(void)
|
|
|
|
{
|
2006-06-27 09:54:42 +00:00
|
|
|
int err;
|
|
|
|
|
|
|
|
err = sysdev_class_register(&cpu_sysdev_class);
|
|
|
|
#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
|
|
|
|
if (!err)
|
|
|
|
err = sched_create_sysfs_power_savings_entries(&cpu_sysdev_class);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return err;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|