From: Colin Cross Date: Sun, 24 Oct 2010 06:22:07 +0000 (-0700) Subject: ARM: tegra: irq: Add debugfs file to show wake irqs X-Git-Tag: firefly_0821_release~9833^2~142^2~5 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=73fd3806b4f3f127afca1561c7f3e134776f4686;p=firefly-linux-kernel-4.4.55.git ARM: tegra: irq: Add debugfs file to show wake irqs Change-Id: I66124275869d5f83024937010e14018b7980bb05 Signed-off-by: Colin Cross --- diff --git a/arch/arm/mach-tegra/irq.c b/arch/arm/mach-tegra/irq.c index 6936c8d5f2e4..458f9c8e85cb 100644 --- a/arch/arm/mach-tegra/irq.c +++ b/arch/arm/mach-tegra/irq.c @@ -19,10 +19,12 @@ #include #include +#include #include #include #include #include +#include #include @@ -46,6 +48,8 @@ static u32 tegra_lp0_wake_enb; static u32 tegra_lp0_wake_level; static u32 tegra_lp0_wake_level_any; +static unsigned int tegra_wake_irq_count[32]; + /* ensures that sufficient time is passed for a register write to * serialize into the 32KHz domain */ static void pmc_32kwritel(u32 val, unsigned long offs) @@ -165,6 +169,8 @@ static void tegra_irq_handle_wake(void) pr_info("Resume caused by WAKE%d, %s\n", wake, desc->action->name); + tegra_wake_irq_count[wake]++; + generic_handle_irq(irq); } } @@ -255,3 +261,63 @@ void tegra_irq_resume(void) tegra_legacy_irq_resume(); tegra_irq_handle_wake(); } + +#ifdef CONFIG_DEBUG_FS +static int tegra_wake_irq_debug_show(struct seq_file *s, void *data) +{ + int wake; + int irq; + struct irq_desc *desc; + const char *irq_name; + + seq_printf(s, "wake irq count name\n"); + seq_printf(s, "----------------------\n"); + for (wake = 0; wake < 32; wake++) { + irq = tegra_wake_to_irq(wake); + if (irq < 0) + continue; + + desc = irq_to_desc(irq); + if (tegra_wake_irq_count[wake] == 0 && desc->action == NULL) + continue; + + if (!(desc->status & IRQ_WAKEUP)) + continue; + + irq_name = (desc->action && desc->action->name) ? + desc->action->name : "???"; + + seq_printf(s, "%4d %3d %5d %s\n", + wake, irq, tegra_wake_irq_count[wake], irq_name); + } + return 0; +} + +static int tegra_wake_irq_debug_open(struct inode *inode, struct file *file) +{ + return single_open(file, tegra_wake_irq_debug_show, NULL); +} + +static const struct file_operations tegra_wake_irq_debug_fops = { + .open = tegra_wake_irq_debug_open, + .read = seq_read, + .llseek = seq_lseek, + .release = single_release, +}; + +static int __init tegra_irq_debug_init(void) +{ + struct dentry *d; + + d = debugfs_create_file("wake_irq", 0755, NULL, NULL, + &tegra_wake_irq_debug_fops); + if (!d) { + pr_info("Failed to create suspend_mode debug file\n"); + return -ENOMEM; + } + + return 0; +} + +late_initcall(tegra_irq_debug_init); +#endif