2007-07-12 09:18:04 +08:00
|
|
|
/* power.c: Power management driver.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
2008-08-30 16:18:56 +08:00
|
|
|
* Copyright (C) 1999, 2007, 2008 David S. Miller (davem@davemloft.net)
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/interrupt.h>
|
2007-07-19 04:12:45 +08:00
|
|
|
#include <linux/reboot.h>
|
2008-08-08 06:33:36 +08:00
|
|
|
#include <linux/of_device.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-06-30 06:22:46 +08:00
|
|
|
#include <asm/prom.h>
|
|
|
|
#include <asm/io.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
static void __iomem *power_reg;
|
|
|
|
|
2007-07-12 09:18:04 +08:00
|
|
|
static irqreturn_t power_handler(int irq, void *dev_id)
|
|
|
|
{
|
2007-07-19 04:12:45 +08:00
|
|
|
orderly_poweroff(true);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* FIXME: Check registers for status... */
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2009-04-07 15:47:44 +08:00
|
|
|
static int __devinit has_button_interrupt(unsigned int irq, struct device_node *dp)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2007-07-12 09:18:04 +08:00
|
|
|
if (irq == 0xffffffff)
|
2005-04-17 06:20:36 +08:00
|
|
|
return 0;
|
2006-06-23 10:12:03 +08:00
|
|
|
if (!of_find_property(dp, "button", NULL))
|
2005-04-17 06:20:36 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-07-23 06:04:30 +08:00
|
|
|
static int __devinit power_probe(struct platform_device *op, const struct of_device_id *match)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2006-06-30 06:22:46 +08:00
|
|
|
struct resource *res = &op->resource[0];
|
2010-06-19 01:09:58 +08:00
|
|
|
unsigned int irq = op->archdata.irqs[0];
|
2006-06-23 16:44:10 +08:00
|
|
|
|
2006-06-30 06:22:46 +08:00
|
|
|
power_reg = of_ioremap(res, 0, 0x4, "power");
|
|
|
|
|
2009-01-07 05:19:28 +08:00
|
|
|
printk(KERN_INFO "%s: Control reg at %llx\n",
|
2010-04-14 07:12:29 +08:00
|
|
|
op->dev.of_node->name, res->start);
|
2006-06-23 16:44:10 +08:00
|
|
|
|
2010-04-14 07:12:29 +08:00
|
|
|
if (has_button_interrupt(irq, op->dev.of_node)) {
|
2005-10-07 11:43:54 +08:00
|
|
|
if (request_irq(irq,
|
2006-06-30 05:39:11 +08:00
|
|
|
power_handler, 0, "power", NULL) < 0)
|
2007-07-12 09:18:04 +08:00
|
|
|
printk(KERN_ERR "power: Cannot setup IRQ handler.\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2006-06-30 06:22:46 +08:00
|
|
|
|
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2006-06-23 16:44:10 +08:00
|
|
|
|
2008-08-31 16:23:17 +08:00
|
|
|
static struct of_device_id __initdata power_match[] = {
|
2006-06-23 16:44:10 +08:00
|
|
|
{
|
|
|
|
.name = "power",
|
|
|
|
},
|
|
|
|
{},
|
|
|
|
};
|
|
|
|
|
2006-06-30 06:22:46 +08:00
|
|
|
static struct of_platform_driver power_driver = {
|
|
|
|
.probe = power_probe,
|
2010-04-14 07:13:02 +08:00
|
|
|
.driver = {
|
|
|
|
.name = "power",
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.of_match_table = power_match,
|
2007-10-11 14:27:34 +08:00
|
|
|
},
|
2006-06-23 16:44:10 +08:00
|
|
|
};
|
|
|
|
|
2008-08-30 16:18:56 +08:00
|
|
|
static int __init power_init(void)
|
2006-06-23 16:44:10 +08:00
|
|
|
{
|
2010-06-25 05:14:37 +08:00
|
|
|
return of_register_platform_driver(&power_driver);
|
2006-06-23 16:44:10 +08:00
|
|
|
}
|
2008-08-30 16:18:56 +08:00
|
|
|
|
|
|
|
device_initcall(power_init);
|