1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2011 Google, Inc.
6 * Colin Cross <ccross@android.com>
8 * Copyright (C) 2010,2013, NVIDIA Corporation
11 #include <linux/cpu_pm.h>
12 #include <linux/interrupt.h>
14 #include <linux/irqchip/arm-gic.h>
15 #include <linux/irq.h>
16 #include <linux/kernel.h>
17 #include <linux/of_address.h>
19 #include <linux/syscore_ops.h>
21 #include <soc/tegra/irq.h>
26 #define SGI_MASK 0xFFFF
28 #ifdef CONFIG_PM_SLEEP
29 static void __iomem
*tegra_gic_cpu_base
;
32 bool tegra_pending_sgi(void)
35 void __iomem
*distbase
= IO_ADDRESS(TEGRA_ARM_INT_DIST_BASE
);
37 pending_set
= readl_relaxed(distbase
+ GIC_DIST_PENDING_SET
);
39 if (pending_set
& SGI_MASK
)
45 #ifdef CONFIG_PM_SLEEP
46 static int tegra_gic_notifier(struct notifier_block
*self
,
47 unsigned long cmd
, void *v
)
51 writel_relaxed(0x1E0, tegra_gic_cpu_base
+ GIC_CPU_CTRL
);
58 static struct notifier_block tegra_gic_notifier_block
= {
59 .notifier_call
= tegra_gic_notifier
,
62 static const struct of_device_id tegra114_dt_gic_match
[] __initconst
= {
63 { .compatible
= "arm,cortex-a15-gic" },
67 static void __init
tegra114_gic_cpu_pm_registration(void)
69 struct device_node
*dn
;
71 dn
= of_find_matching_node(NULL
, tegra114_dt_gic_match
);
75 tegra_gic_cpu_base
= of_iomap(dn
, 1);
77 cpu_pm_register_notifier(&tegra_gic_notifier_block
);
80 static void __init
tegra114_gic_cpu_pm_registration(void) { }
83 static const struct of_device_id tegra_ictlr_match
[] __initconst
= {
84 { .compatible
= "nvidia,tegra20-ictlr" },
85 { .compatible
= "nvidia,tegra30-ictlr" },
89 void __init
tegra_init_irq(void)
91 if (WARN_ON(!of_find_matching_node(NULL
, tegra_ictlr_match
)))
92 pr_warn("Outdated DT detected, suspend/resume will NOT work\n");
94 tegra114_gic_cpu_pm_registration();