Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 57374
b: refs/heads/master
c: d1f253e
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller authored and David S. Miller committed Jun 5, 2007
1 parent 9fda734 commit 888f3f0
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: eff3414b7277c4792debfa227f5408238d925f16
refs/heads/master: d1f253e60aefe4d3a3e708b3c2a082f3ec1be6f4
86 changes: 86 additions & 0 deletions trunk/arch/sparc64/kernel/sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,100 @@

static DEFINE_PER_CPU(struct cpu, cpu_devices);

#define SHOW_ULONG_NAME(NAME, MEMBER) \
static ssize_t show_##NAME(struct sys_device *dev, char *buf) \
{ \
struct cpu *cpu = container_of(dev, struct cpu, sysdev); \
cpuinfo_sparc *c = &cpu_data(cpu->sysdev.id); \
return sprintf(buf, "%lu\n", c->MEMBER); \
}

#define SHOW_UINT_NAME(NAME, MEMBER) \
static ssize_t show_##NAME(struct sys_device *dev, char *buf) \
{ \
struct cpu *cpu = container_of(dev, struct cpu, sysdev); \
cpuinfo_sparc *c = &cpu_data(cpu->sysdev.id); \
return sprintf(buf, "%u\n", c->MEMBER); \
}

SHOW_ULONG_NAME(clock_tick, clock_tick);
SHOW_ULONG_NAME(udelay_val, udelay_val);
SHOW_UINT_NAME(l1_dcache_size, dcache_size);
SHOW_UINT_NAME(l1_dcache_line_size, dcache_line_size);
SHOW_UINT_NAME(l1_icache_size, icache_size);
SHOW_UINT_NAME(l1_icache_line_size, icache_line_size);
SHOW_UINT_NAME(l2_cache_size, ecache_size);
SHOW_UINT_NAME(l2_cache_line_size, ecache_line_size);

static struct sysdev_attribute cpu_core_attrs[] = {
_SYSDEV_ATTR(clock_tick, 0444, show_clock_tick, NULL),
_SYSDEV_ATTR(udelay_val, 0444, show_udelay_val, NULL),
_SYSDEV_ATTR(l1_dcache_size, 0444, show_l1_dcache_size, NULL),
_SYSDEV_ATTR(l1_dcache_line_size, 0444, show_l1_dcache_line_size, NULL),
_SYSDEV_ATTR(l1_icache_size, 0444, show_l1_icache_size, NULL),
_SYSDEV_ATTR(l1_icache_line_size, 0444, show_l1_icache_line_size, NULL),
_SYSDEV_ATTR(l2_cache_size, 0444, show_l2_cache_size, NULL),
_SYSDEV_ATTR(l2_cache_line_size, 0444, show_l2_cache_line_size, NULL),
};

static void register_cpu_online(unsigned int cpu)
{
struct cpu *c = &per_cpu(cpu_devices, cpu);
struct sys_device *s = &c->sysdev;
int i;

for (i = 0; i < ARRAY_SIZE(cpu_core_attrs); i++)
sysdev_create_file(s, &cpu_core_attrs[i]);
}

#ifdef CONFIG_HOTPLUG_CPU
static void unregister_cpu_online(unsigned int cpu)
{
struct cpu *c = &per_cpu(cpu_devices, cpu);
struct sys_device *s = &c->sysdev;
int i;

for (i = 0; i < ARRAY_SIZE(cpu_core_attrs); i++)
sysdev_remove_file(s, &cpu_core_attrs[i]);
}
#endif

static int __cpuinit sysfs_cpu_notify(struct notifier_block *self,
unsigned long action, void *hcpu)
{
unsigned int cpu = (unsigned int)(long)hcpu;

switch (action) {
case CPU_ONLINE:
case CPU_ONLINE_FROZEN:
register_cpu_online(cpu);
break;
#ifdef CONFIG_HOTPLUG_CPU
case CPU_DEAD:
case CPU_DEAD_FROZEN:
unregister_cpu_online(cpu);
break;
#endif
}
return NOTIFY_OK;
}

static struct notifier_block __cpuinitdata sysfs_cpu_nb = {
.notifier_call = sysfs_cpu_notify,
};

static int __init topology_init(void)
{
int cpu;

register_cpu_notifier(&sysfs_cpu_nb);

for_each_possible_cpu(cpu) {
struct cpu *c = &per_cpu(cpu_devices, cpu);

register_cpu(c, cpu);
if (cpu_online(cpu))
register_cpu_online(cpu);
}

return 0;
Expand Down

0 comments on commit 888f3f0

Please sign in to comment.