/* SPDX-License-Identifier: GPL-2.0-only */1/*2* Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.3*/45#ifndef _ASM_IRQ_H_6#define _ASM_IRQ_H_78/* Number of first-level interrupts associated with the CPU core. */9#define HEXAGON_CPUINTS 321011/*12* Must define NR_IRQS before including <asm-generic/irq.h>13* 64 == the two SIRC's, 176 == the two gpio's14*15* IRQ configuration is still in flux; defining this to a comfortably16* large number.17*/18#define NR_IRQS 5121920#include <asm-generic/irq.h>2122struct pt_regs;23void arch_do_IRQ(struct pt_regs *);2425#endif262728