2013-07-19 19:43:04 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/arm/src/armv7-a/arm_doirq.c
|
|
|
|
*
|
2021-03-24 09:12:29 +01:00
|
|
|
* 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
|
2013-07-19 19:43:04 +02:00
|
|
|
*
|
2021-03-24 09:12:29 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-07-19 19:43:04 +02:00
|
|
|
*
|
2021-03-24 09:12:29 +01:00
|
|
|
* 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.
|
2013-07-19 19:43:04 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <assert.h>
|
2021-05-14 04:45:57 +02:00
|
|
|
#include <debug.h>
|
2013-07-19 19:43:04 +02:00
|
|
|
|
2016-11-27 20:18:34 +01:00
|
|
|
#include <nuttx/irq.h>
|
|
|
|
#include <nuttx/arch.h>
|
2015-02-28 00:19:38 +01:00
|
|
|
#include <nuttx/board.h>
|
2013-07-19 19:43:04 +02:00
|
|
|
#include <arch/board/board.h>
|
|
|
|
|
2020-05-01 03:20:29 +02:00
|
|
|
#include "arm_internal.h"
|
2014-08-28 14:34:09 +02:00
|
|
|
#include "group/group.h"
|
2016-11-27 20:18:34 +01:00
|
|
|
#include "gic.h"
|
2014-08-28 14:34:09 +02:00
|
|
|
|
2016-11-27 20:18:34 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2021-07-08 11:57:59 +02:00
|
|
|
* Name: arm_doirq
|
2016-11-27 20:18:34 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2021-07-08 11:57:59 +02:00
|
|
|
* Receives the decoded GIC interrupt information and dispatches control
|
|
|
|
* to the attached interrupt handler.
|
2016-11-27 20:18:34 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
2013-07-19 19:43:04 +02:00
|
|
|
|
2021-07-08 11:57:59 +02:00
|
|
|
uint32_t *arm_doirq(int irq, uint32_t *regs)
|
2016-11-27 20:18:34 +01:00
|
|
|
{
|
2021-07-08 11:57:59 +02:00
|
|
|
board_autoled_on(LED_INIRQ);
|
|
|
|
#ifdef CONFIG_SUPPRESS_INTERRUPTS
|
|
|
|
PANIC();
|
|
|
|
#else
|
|
|
|
/* Nested interrupts are not supported */
|
|
|
|
|
|
|
|
DEBUGASSERT(CURRENT_REGS == NULL);
|
|
|
|
|
2013-07-19 19:43:04 +02:00
|
|
|
/* Current regs non-zero indicates that we are processing an interrupt;
|
2016-03-09 20:41:48 +01:00
|
|
|
* CURRENT_REGS is also used to manage interrupt level context switches.
|
2013-07-19 19:43:04 +02:00
|
|
|
*/
|
|
|
|
|
2016-03-09 20:41:48 +01:00
|
|
|
CURRENT_REGS = regs;
|
2013-07-19 19:43:04 +02:00
|
|
|
|
|
|
|
/* Deliver the IRQ */
|
|
|
|
|
|
|
|
irq_dispatch(irq, regs);
|
|
|
|
|
2022-04-14 12:07:14 +02:00
|
|
|
#ifdef CONFIG_ARCH_ADDRENV
|
2014-08-28 14:34:09 +02:00
|
|
|
/* Check for a context switch. If a context switch occurred, then
|
2016-03-09 20:41:48 +01:00
|
|
|
* CURRENT_REGS will have a different value than it did on entry. If an
|
2022-04-14 12:07:14 +02:00
|
|
|
* interrupt level context switch has occurred, then establish the correct
|
|
|
|
* address environment before returning from the interrupt.
|
2013-07-24 01:52:06 +02:00
|
|
|
*/
|
|
|
|
|
2016-03-09 20:41:48 +01:00
|
|
|
if (regs != CURRENT_REGS)
|
2013-07-24 01:52:06 +02:00
|
|
|
{
|
2014-08-28 14:34:09 +02:00
|
|
|
/* Make sure that the address environment for the previously
|
|
|
|
* running task is closed down gracefully (data caches dump,
|
|
|
|
* MMU flushed) and set up the address environment for the new
|
|
|
|
* thread at the head of the ready-to-run list.
|
|
|
|
*/
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
group_addrenv(NULL);
|
2013-07-24 01:52:06 +02:00
|
|
|
}
|
2013-07-24 15:47:51 +02:00
|
|
|
#endif
|
2013-07-24 01:52:06 +02:00
|
|
|
|
2022-08-10 11:22:48 +02:00
|
|
|
/* Restore the cpu lock */
|
|
|
|
|
|
|
|
if (regs != CURRENT_REGS)
|
|
|
|
{
|
|
|
|
restore_critical_section();
|
|
|
|
regs = (uint32_t *)CURRENT_REGS;
|
|
|
|
}
|
|
|
|
|
2016-03-09 20:41:48 +01:00
|
|
|
/* Set CURRENT_REGS to NULL to indicate that we are no longer in an
|
2013-07-24 01:52:06 +02:00
|
|
|
* interrupt handler.
|
2013-07-19 19:43:04 +02:00
|
|
|
*/
|
|
|
|
|
2016-03-09 20:41:48 +01:00
|
|
|
CURRENT_REGS = NULL;
|
2016-11-27 20:18:34 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
board_autoled_off(LED_INIRQ);
|
|
|
|
return regs;
|
|
|
|
}
|