Release 4.14 arch/sparc/kernel/power.c
// SPDX-License-Identifier: GPL-2.0
/* power.c: Power management driver.
*
* Copyright (C) 1999, 2007, 2008 David S. Miller (davem@davemloft.net)
*/
#include <linux/kernel.h>
#include <linux/export.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/reboot.h>
#include <linux/of_device.h>
#include <asm/prom.h>
#include <asm/io.h>
static void __iomem *power_reg;
static irqreturn_t power_handler(int irq, void *dev_id)
{
orderly_poweroff(true);
/* FIXME: Check registers for status... */
return IRQ_HANDLED;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 21 | 95.45% | 3 | 75.00% |
Linus Torvalds (pre-git) | 1 | 4.55% | 1 | 25.00% |
Total | 22 | 100.00% | 4 | 100.00% |
static int has_button_interrupt(unsigned int irq, struct device_node *dp)
{
if (irq == 0xffffffff)
return 0;
if (!of_find_property(dp, "button", NULL))
return 0;
return 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 42 | 100.00% | 4 | 100.00% |
Total | 42 | 100.00% | 4 | 100.00% |
static int power_probe(struct platform_device *op)
{
struct resource *res = &op->resource[0];
unsigned int irq = op->archdata.irqs[0];
power_reg = of_ioremap(res, 0, 0x4, "power");
printk(KERN_INFO "%s: Control reg at %llx\n",
op->dev.of_node->name, res->start);
if (has_button_interrupt(irq, op->dev.of_node)) {
if (request_irq(irq,
power_handler, 0, "power", NULL) < 0)
printk(KERN_ERR "power: Cannot setup IRQ handler.\n");
}
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 62 | 56.88% | 9 | 56.25% |
Linus Torvalds (pre-git) | 33 | 30.28% | 2 | 12.50% |
Grant C. Likely | 9 | 8.26% | 3 | 18.75% |
Linus Torvalds | 4 | 3.67% | 1 | 6.25% |
Sam Ravnborg | 1 | 0.92% | 1 | 6.25% |
Total | 109 | 100.00% | 16 | 100.00% |
static const struct of_device_id power_match[] = {
{
.name = "power",
},
{},
};
static struct platform_driver power_driver = {
.probe = power_probe,
.driver = {
.name = "power",
.of_match_table = power_match,
},
};
builtin_platform_driver(power_driver);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 166 | 65.10% | 15 | 46.88% |
Linus Torvalds (pre-git) | 47 | 18.43% | 2 | 6.25% |
Grant C. Likely | 15 | 5.88% | 5 | 15.62% |
Stephen Rothwell | 12 | 4.71% | 2 | 6.25% |
Linus Torvalds | 4 | 1.57% | 1 | 3.12% |
Eric Brower | 2 | 0.78% | 1 | 3.12% |
Arnaldo Carvalho de Melo | 2 | 0.78% | 1 | 3.12% |
Geliang Tang | 2 | 0.78% | 1 | 3.12% |
Pete Zaitcev | 2 | 0.78% | 1 | 3.12% |
Sam Ravnborg | 1 | 0.39% | 1 | 3.12% |
Greg Kroah-Hartman | 1 | 0.39% | 1 | 3.12% |
Paul Gortmaker | 1 | 0.39% | 1 | 3.12% |
Total | 255 | 100.00% | 32 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.