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