039a5dcd2f
Dynamically create the kset instead of declaring it statically. We also rename power_subsys to power_kset to catch all users of the variable and we properly export it so that people don't have to guess that it really is present in the system. The pseries code is wierd, why is it createing /sys/power if CONFIG_PM is disabled? Oh well, stupid big boxes ignoring config options... Cc: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
85 lines
2.2 KiB
C
85 lines
2.2 KiB
C
/*
|
|
* Interface for power-management for ppc64 compliant platform
|
|
*
|
|
* Manish Ahuja <mahuja@us.ibm.com>
|
|
*
|
|
* Feb 2007
|
|
*
|
|
* Copyright (C) 2007 IBM Corporation.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include <linux/kobject.h>
|
|
#include <linux/string.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/init.h>
|
|
|
|
unsigned long rtas_poweron_auto; /* default and normal state is 0 */
|
|
|
|
static ssize_t auto_poweron_show(struct kset *kset, char *buf)
|
|
{
|
|
return sprintf(buf, "%lu\n", rtas_poweron_auto);
|
|
}
|
|
|
|
static ssize_t
|
|
auto_poweron_store(struct kset *kset, const char *buf, size_t n)
|
|
{
|
|
int ret;
|
|
unsigned long ups_restart;
|
|
ret = sscanf(buf, "%lu", &ups_restart);
|
|
|
|
if ((ret == 1) && ((ups_restart == 1) || (ups_restart == 0))){
|
|
rtas_poweron_auto = ups_restart;
|
|
return n;
|
|
}
|
|
return -EINVAL;
|
|
}
|
|
|
|
static struct subsys_attribute auto_poweron_attr = {
|
|
.attr = {
|
|
.name = __stringify(auto_poweron),
|
|
.mode = 0644,
|
|
},
|
|
.show = auto_poweron_show,
|
|
.store = auto_poweron_store,
|
|
};
|
|
|
|
#ifndef CONFIG_PM
|
|
struct kset *power_kset;
|
|
|
|
static struct attribute *g[] = {
|
|
&auto_poweron_attr.attr,
|
|
NULL,
|
|
};
|
|
|
|
static struct attribute_group attr_group = {
|
|
.attrs = g,
|
|
};
|
|
|
|
static int __init pm_init(void)
|
|
{
|
|
power_kset = kset_create_and_add("power", NULL, NULL);
|
|
if (!power_kset)
|
|
return -ENOMEM;
|
|
return sysfs_create_group(&power_kset->kobj, &attr_group);
|
|
}
|
|
core_initcall(pm_init);
|
|
#else
|
|
static int __init apo_pm_init(void)
|
|
{
|
|
return (subsys_create_file(power_kset, &auto_poweron_attr));
|
|
}
|
|
__initcall(apo_pm_init);
|
|
#endif
|