2020-03-21 14:01:56 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/risc-v/include/litex/irq.h
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ARCH_RISCV_INCLUDE_LITEX_IRQ_H
|
|
|
|
#define __ARCH_RISCV_INCLUDE_LITEX_IRQ_H
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2023-01-25 08:44:20 +08:00
|
|
|
#ifdef CONFIG_LITEX_USE_CUSTOM_IRQ_DEFINITIONS
|
|
|
|
#include CONFIG_LITEX_CUSTOM_IRQ_DEFINITIONS_PATH
|
|
|
|
#else
|
|
|
|
|
2023-12-14 22:22:07 +08:00
|
|
|
#include <arch/mode.h>
|
2023-03-28 07:08:51 +08:00
|
|
|
|
2020-03-21 14:01:56 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Map RISC-V exception code to NuttX IRQ */
|
|
|
|
|
2023-10-25 11:51:50 +08:00
|
|
|
#define LITEX_IRQ_UART0 (RISCV_IRQ_EXT + 1)
|
|
|
|
#define LITEX_IRQ_TIMER0 (RISCV_IRQ_EXT + 2)
|
|
|
|
#define LITEX_IRQ_ETHMAC (RISCV_IRQ_EXT + 3)
|
|
|
|
#define LITEX_IRQ_SDCARD (RISCV_IRQ_EXT + 4)
|
|
|
|
#define LITEX_IRQ_GPIO_BASE (RISCV_IRQ_EXT + 5)
|
|
|
|
#define LITEX_IRQ_GPIO_LENGTH 8
|
2023-01-31 09:22:41 +08:00
|
|
|
|
|
|
|
/* The last hardware IRQ number */
|
|
|
|
|
2024-01-06 17:51:32 +08:00
|
|
|
#define LITEX_IRQ_LAST (LITEX_IRQ_GPIO_BASE + LITEX_IRQ_GPIO_LENGTH)
|
2023-01-31 09:22:41 +08:00
|
|
|
|
|
|
|
/* Second level GPIO interrupts. GPIO interrupts are decoded and dispatched
|
|
|
|
* as a second level of decoding: The first level dispatches to the GPIO
|
|
|
|
* interrupt handler. The second to the decoded GPIO interrupt handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_LITEX_GPIO_IRQ
|
2023-10-25 11:51:50 +08:00
|
|
|
# define LITEX_NIRQ_GPIO LITEX_IRQ_GPIO_LENGTH * 32
|
2023-01-31 09:22:41 +08:00
|
|
|
# define LITEX_FIRST_GPIOIRQ (LITEX_IRQ_LAST + 1)
|
|
|
|
# define LITEX_LAST_GPIOIRQ (LITES_FIRST_GPIOIRQ + LITEX_NIRQ_GPIO)
|
|
|
|
#else
|
|
|
|
# define LITEX_NIRQ_GPIO 0
|
|
|
|
#endif
|
2020-03-21 14:01:56 +08:00
|
|
|
|
|
|
|
/* Total number of IRQs */
|
|
|
|
|
2023-01-31 09:22:41 +08:00
|
|
|
#define NR_IRQS (LITEX_IRQ_LAST + LITEX_NIRQ_GPIO + 1)
|
2020-03-21 14:01:56 +08:00
|
|
|
|
2023-01-25 08:44:20 +08:00
|
|
|
#endif /* CONFIG_LITEX_USE_CUSTOM_IRQ_DEFINITIONS */
|
2020-03-21 14:01:56 +08:00
|
|
|
#endif /* __ARCH_RISCV_INCLUDE_LITEX_IRQ_H */
|