cregit-Linux how code gets into the kernel

Release 4.7 arch/sparc/kernel/power.c

/* 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

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller2195.45%375.00%
pre-gitpre-git14.55%125.00%
Total22100.00%4100.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

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller42100.00%4100.00%
Total42100.00%4100.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

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller6256.88%956.25%
pre-gitpre-git3330.28%212.50%
grant likelygrant likely98.26%318.75%
linus torvaldslinus torvalds43.67%16.25%
sam ravnborgsam ravnborg10.92%16.25%
Total109100.00%16100.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, }, };
static int __init power_init(void) { return platform_driver_register(&power_driver); }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller1593.75%375.00%
grant likelygrant likely16.25%125.00%
Total16100.00%4100.00%

device_initcall(power_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller18769.26%1551.72%
pre-gitpre-git4516.67%26.90%
grant likelygrant likely165.93%517.24%
stephen rothwellstephen rothwell124.44%26.90%
linus torvaldslinus torvalds41.48%13.45%
pete zaitcevpete zaitcev20.74%13.45%
arnaldo carvalho de meloarnaldo carvalho de melo20.74%13.45%
sam ravnborgsam ravnborg10.37%13.45%
paul gortmakerpaul gortmaker10.37%13.45%
Total270100.00%29100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}