blob: 7b5db24b62794059cd61a2143439e2f6df770690 [file] [log] [blame]
Thomas Bogendoerfer75055762019-10-24 12:18:29 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#ifndef __IP30_COMMON_H
4#define __IP30_COMMON_H
5
Thomas Bogendoerfer7895d662020-09-20 22:51:50 +02006/*
7 * Power Switch is wired via BaseIO BRIDGE slot #6.
8 *
9 * ACFail is wired via BaseIO BRIDGE slot #7.
10 */
11#define IP30_POWER_IRQ HEART_L2_INT_POWER_BTN
12
13#define IP30_HEART_L0_IRQ (MIPS_CPU_IRQ_BASE + 2)
14#define IP30_HEART_L1_IRQ (MIPS_CPU_IRQ_BASE + 3)
15#define IP30_HEART_L2_IRQ (MIPS_CPU_IRQ_BASE + 4)
16#define IP30_HEART_TIMER_IRQ (MIPS_CPU_IRQ_BASE + 5)
17#define IP30_HEART_ERR_IRQ (MIPS_CPU_IRQ_BASE + 6)
18
19extern void __init ip30_install_ipi(void);
Thomas Bogendoerfer75055762019-10-24 12:18:29 +020020extern struct plat_smp_ops ip30_smp_ops;
21extern void __init ip30_per_cpu_init(void);
22
23#endif /* __IP30_COMMON_H */