nuttx/arch/tricore/include/irq.h
zhangyu117 909e63b63b arch/tricore: upcsa/lowcsa process && dumpinfo
tricore csa is not continuous. when assert prints information, we need to handle the regs specially in order to dump all the registers.

Signed-off-by: zhangyu117 <zhangyu117@xiaomi.com>
2026-01-15 16:09:13 -03:00

240 lines
7.2 KiB
C

/****************************************************************************
* arch/tricore/include/irq.h
*
* SPDX-License-Identifier: Apache-2.0
*
* 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.
*
****************************************************************************/
/* This file should never be included directly but, rather, only indirectly
* through nuttx/irq.h
*/
#ifndef __ARCH_TRICORE_INCLUDE_IRQ_H
#define __ARCH_TRICORE_INCLUDE_IRQ_H
/****************************************************************************
* Included Files
****************************************************************************/
#include <sys/types.h>
#ifndef __ASSEMBLY__
# include <stdbool.h>
# include <syscall.h>
#endif
/* Include NuttX-specific IRQ definitions */
#include <nuttx/irq.h>
/* Include chip-specific IRQ definitions (including IRQ numbers) */
#include <arch/chip/irq.h>
#if defined(CONFIG_ARCH_TC3XX)
# include <arch/tc3xx/irq.h>
#endif
/****************************************************************************
* Pre-processor Prototypes
****************************************************************************/
/* Address <--> Context Save Areas */
#define tricore_csa2addr(csa) ((uintptr_t *)((((csa) & 0x000F0000) << 12) \
| (((csa) & 0x0000FFFF) << 6)))
#define tricore_addr2csa(addr) ((uintptr_t)(((((uintptr_t)(addr)) & 0xF0000000) >> 12) \
| (((uintptr_t)(addr) & 0x003FFFC0) >> 6)))
#ifndef __ASSEMBLY__
#ifdef __cplusplus
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif
/****************************************************************************
* Public Data
****************************************************************************/
/* g_interrupt_context store irq status */
EXTERN volatile bool g_interrupt_context[CONFIG_SMP_NCPUS];
/****************************************************************************
* Public Function Prototypes
****************************************************************************/
/****************************************************************************
* Name: up_cpu_index
*
* Description:
* Return the real core number regardless CONFIG_SMP setting
*
****************************************************************************/
#ifdef CONFIG_ARCH_HAVE_MULTICPU
int up_cpu_index(void) noinstrument_function;
#endif /* CONFIG_ARCH_HAVE_MULTICPU */
/****************************************************************************
* Name: up_irq_enable
*
* Description:
* Enable interrupts globally.
*
****************************************************************************/
void up_irq_enable(void);
/****************************************************************************
* Inline functions
****************************************************************************/
noinstrument_function static inline_function uintptr_t up_getsp(void)
{
#ifdef CONFIG_TRICORE_TOOLCHAIN_TASKING
return (uintptr_t)__get_sp();
#else
return __builtin_frame_address(0);
#endif
}
/****************************************************************************
* Name: up_irq_save
*
* Description:
* Disable interrupts and return the previous value of the mstatus register
*
****************************************************************************/
noinstrument_function static inline_function irqstate_t up_irq_save(void)
{
return __disable_and_save();
}
/****************************************************************************
* Name: up_irq_restore
*
* Description:
* Restore the value of the mstatus register
*
****************************************************************************/
noinstrument_function static inline_function
void up_irq_restore(irqstate_t flags)
{
__restore(flags);
}
/****************************************************************************
* Inline Functions
****************************************************************************/
/****************************************************************************
* Name: up_set_interrupt_context
*
* Description:
* Set the interrupt handler context.
*
****************************************************************************/
noinstrument_function
static inline_function void up_set_interrupt_context(bool flag)
{
#ifdef CONFIG_SMP
g_interrupt_context[up_this_cpu()] = flag;
#else
g_interrupt_context[0] = flag;
#endif
}
/****************************************************************************
* Name: up_interrupt_context
*
* Description:
* Return true is we are currently executing in the interrupt
* handler context.
*
****************************************************************************/
noinstrument_function
static inline_function bool up_interrupt_context(void)
{
#ifdef CONFIG_SMP
irqstate_t flags = up_irq_save();
bool ret = g_interrupt_context[up_this_cpu()];
up_irq_restore(flags);
return ret;
#else
return g_interrupt_context[0];
#endif
}
/****************************************************************************
* Name: up_getusrsp
****************************************************************************/
static inline_function uintptr_t up_getusrsp(void *regs)
{
uintptr_t *csaregs = regs;
if (csaregs[REG_LPCXI] & PCXI_UL)
{
csaregs = tricore_csa2addr(csaregs[REG_LPCXI]);
}
else
{
csaregs += TC_CONTEXT_REGS;
}
return csaregs[REG_SP];
}
#endif /* __ASSEMBLY__ */
/****************************************************************************
* Name: up_switch_context
****************************************************************************/
#define up_switch_context(tcb, rtcb) \
do { \
if (!up_interrupt_context()) \
{ \
sys_call0(SYS_switch_context); \
} \
UNUSED(rtcb); \
} while (0)
/****************************************************************************
* Name: up_getusrpc
****************************************************************************/
#define up_getusrpc(regs) \
(((uint32_t *)((regs) ? (regs) : running_regs()))[REG_UPC])
#undef EXTERN
#ifdef __cplusplus
}
#endif
#endif /* __ARCH_TRICORE_INCLUDE_IRQ_H */