irq.h 523 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _ASM_IRQ_H_
  6. #define _ASM_IRQ_H_
  7. /* Number of first-level interrupts associated with the CPU core. */
  8. #define HEXAGON_CPUINTS 32
  9. /*
  10. * Must define NR_IRQS before including <asm-generic/irq.h>
  11. * 64 == the two SIRC's, 176 == the two gpio's
  12. *
  13. * IRQ configuration is still in flux; defining this to a comfortably
  14. * large number.
  15. */
  16. #define NR_IRQS 512
  17. #include <asm-generic/irq.h>
  18. #endif