mirror of
https://github.com/apache/nuttx.git
synced 2026-05-22 05:42:05 +08:00
arch/tricore: adjust arch-related irq.h
tc3 and tc4 use common irq.h Signed-off-by: zhangyu117 <zhangyu117@xiaomi.com>
This commit is contained in:
committed by
Alin Jerpelea
parent
cb161c2ae3
commit
c98eccf08d
+102
-4
@@ -45,10 +45,7 @@
|
||||
|
||||
#include <arch/chip/irq.h>
|
||||
#include <arch/arch.h>
|
||||
|
||||
#if defined(CONFIG_ARCH_TC3XX)
|
||||
# include <arch/tc3xx/irq.h>
|
||||
#endif
|
||||
#include <IfxCpu_Intrinsics.h>
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Prototypes
|
||||
@@ -61,6 +58,86 @@
|
||||
#define tricore_addr2csa(addr) ((uintptr_t)(((((uintptr_t)(addr)) & 0xF0000000) >> 12) \
|
||||
| (((uintptr_t)(addr) & 0x003FFFC0) >> 6)))
|
||||
|
||||
/* Upper CSA */
|
||||
|
||||
#define REG_UPCXI 0
|
||||
#define REG_PSW 1
|
||||
#define REG_A10 2
|
||||
#define REG_UA11 3
|
||||
#define REG_D8 4
|
||||
#define REG_D9 5
|
||||
#define REG_D10 6
|
||||
#define REG_D11 7
|
||||
#define REG_A12 8
|
||||
#define REG_A13 9
|
||||
#define REG_A14 10
|
||||
#define REG_A15 11
|
||||
#define REG_D12 12
|
||||
#define REG_D13 13
|
||||
#define REG_D14 14
|
||||
#define REG_D15 15
|
||||
|
||||
/* Lower CSA */
|
||||
|
||||
#define REG_LPCXI 0
|
||||
#define REG_LA11 1
|
||||
#define REG_A2 2
|
||||
#define REG_A3 3
|
||||
#define REG_D0 4
|
||||
#define REG_D1 5
|
||||
#define REG_D2 6
|
||||
#define REG_D3 7
|
||||
#define REG_A4 8
|
||||
#define REG_A5 9
|
||||
#define REG_A6 10
|
||||
#define REG_A7 11
|
||||
#define REG_D4 12
|
||||
#define REG_D5 13
|
||||
#define REG_D6 14
|
||||
#define REG_D7 15
|
||||
|
||||
#define REG_RA REG_UA11
|
||||
#define REG_SP REG_A10
|
||||
#define REG_UPC REG_UA11
|
||||
|
||||
#define REG_LPC REG_LA11
|
||||
|
||||
#define TC_CONTEXT_REGS (16)
|
||||
#define TC_CONTEXT_SIZE (sizeof(void *) * TC_CONTEXT_REGS)
|
||||
|
||||
#define XCPTCONTEXT_REGS (TC_CONTEXT_REGS * 2)
|
||||
#define XCPTCONTEXT_SIZE (sizeof(void *) * XCPTCONTEXT_REGS)
|
||||
|
||||
#define NR_IRQS (2048)
|
||||
|
||||
/* PSW: Program Status Word Register */
|
||||
|
||||
#define PSW_CDE (1 << 7) /* Bits 7: Call Depth Count Enable */
|
||||
#define PSW_IS (1 << 9) /* Bits 9: Interrupt Stack Control */
|
||||
#define PSW_IO (10) /* Bits 10-11: Access Privilege Level Control (I/O Privilege) */
|
||||
# define PSW_IO_USER0 (0 << PSW_IO)
|
||||
# define PSW_IO_USER1 (1 << PSW_IO)
|
||||
# define PSW_IO_SUPERVISOR (2 << PSW_IO)
|
||||
|
||||
/* PCXI: Previous Context Information and Pointer Register */
|
||||
|
||||
#define PCXI_UL (1 << 20) /* Bits 20: Upper or Lower Context Tag */
|
||||
#define PCXI_PIE (1 << 21) /* Bits 21: Previous Interrupt Enable */
|
||||
|
||||
/* FCX: Free CSA List Head Pointer Register */
|
||||
|
||||
#define FCX_FCXO (0) /* Bits 0-15: FCX Offset Address */
|
||||
#define FCX_FCXS (16) /* Bits 16-19: FCX Segment Address */
|
||||
#define FCX_FCXO_MASK (0xffff << FCX_FCXO)
|
||||
#define FCX_FCXS_MASK (0xf << FCX_FCXS)
|
||||
#define FCX_FREE (FCX_FCXS_MASK | FCX_FCXO_MASK) /* Free CSA manipulation */
|
||||
|
||||
#define TRICORE_SRCNUM_PER_GPSR 8
|
||||
#define TRICORE_SRC2IRQ(src_addr) \
|
||||
(((uintptr_t)(src_addr) - (uintptr_t)&MODULE_SRC) / 4)
|
||||
#define TRICORE_GPSR_IRQNUM(src_cpu, dest_cpu) \
|
||||
TRICORE_SRC2IRQ(&SRC_GPSR00 + src_cpu * 8 + dest_cpu)
|
||||
|
||||
/* For use with EABI and floating point, the stack must be aligned to 8-byte
|
||||
* addresses.
|
||||
*/
|
||||
@@ -77,6 +154,27 @@ extern "C"
|
||||
#define EXTERN extern
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
struct xcptcontext
|
||||
{
|
||||
#ifdef CONFIG_ENABLE_ALL_SIGNALS
|
||||
/* These are saved copies of the context used during
|
||||
* signal processing.
|
||||
*/
|
||||
|
||||
uintptr_t *saved_regs;
|
||||
#endif
|
||||
/* Register save area with XCPTCONTEXT_SIZE, only valid when:
|
||||
* 1.The task isn't running or
|
||||
* 2.The task is interrupted
|
||||
* otherwise task is running, and regs contain the stale value.
|
||||
*/
|
||||
|
||||
uintptr_t *regs;
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
@@ -34,6 +34,7 @@
|
||||
/****************************************************************************
|
||||
* Pre-processor Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#define TRICORE_UART_RX_IRQ 21
|
||||
|
||||
/****************************************************************************
|
||||
|
||||
@@ -1,145 +0,0 @@
|
||||
/****************************************************************************
|
||||
* arch/tricore/include/tc3xx/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_TC3XX_IRQ_H
|
||||
#define __ARCH_TRICORE_INCLUDE_TC3XX_IRQ_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
#include <IfxCpu_Intrinsics.h>
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
/* Upper CSA */
|
||||
|
||||
#define REG_UPCXI 0
|
||||
#define REG_PSW 1
|
||||
#define REG_A10 2
|
||||
#define REG_UA11 3
|
||||
#define REG_D8 4
|
||||
#define REG_D9 5
|
||||
#define REG_D10 6
|
||||
#define REG_D11 7
|
||||
#define REG_A12 8
|
||||
#define REG_A13 9
|
||||
#define REG_A14 10
|
||||
#define REG_A15 11
|
||||
#define REG_D12 12
|
||||
#define REG_D13 13
|
||||
#define REG_D14 14
|
||||
#define REG_D15 15
|
||||
|
||||
/* Lower CSA */
|
||||
|
||||
#define REG_LPCXI 0
|
||||
#define REG_LA11 1
|
||||
#define REG_A2 2
|
||||
#define REG_A3 3
|
||||
#define REG_D0 4
|
||||
#define REG_D1 5
|
||||
#define REG_D2 6
|
||||
#define REG_D3 7
|
||||
#define REG_A4 8
|
||||
#define REG_A5 9
|
||||
#define REG_A6 10
|
||||
#define REG_A7 11
|
||||
#define REG_D4 12
|
||||
#define REG_D5 13
|
||||
#define REG_D6 14
|
||||
#define REG_D7 15
|
||||
|
||||
#define REG_RA REG_UA11
|
||||
#define REG_SP REG_A10
|
||||
#define REG_UPC REG_UA11
|
||||
|
||||
#define REG_LPC REG_LA11
|
||||
|
||||
#define TC_CONTEXT_REGS (16)
|
||||
#define TC_CONTEXT_SIZE (sizeof(void *) * TC_CONTEXT_REGS)
|
||||
|
||||
#define XCPTCONTEXT_REGS (TC_CONTEXT_REGS * 2)
|
||||
#define XCPTCONTEXT_SIZE (sizeof(void *) * XCPTCONTEXT_REGS)
|
||||
|
||||
#define NR_IRQS (2048)
|
||||
|
||||
/* PSW: Program Status Word Register */
|
||||
|
||||
#define PSW_CDE (1 << 7) /* Bits 7: Call Depth Count Enable */
|
||||
#define PSW_IS (1 << 9) /* Bits 9: Interrupt Stack Control */
|
||||
#define PSW_IO (10) /* Bits 10-11: Access Privilege Level Control (I/O Privilege) */
|
||||
# define PSW_IO_USER0 (0 << PSW_IO)
|
||||
# define PSW_IO_USER1 (1 << PSW_IO)
|
||||
# define PSW_IO_SUPERVISOR (2 << PSW_IO)
|
||||
|
||||
/* PCXI: Previous Context Information and Pointer Register */
|
||||
|
||||
#define PCXI_UL (1 << 20) /* Bits 20: Upper or Lower Context Tag */
|
||||
#define PCXI_PIE (1 << 21) /* Bits 21: Previous Interrupt Enable */
|
||||
|
||||
/* FCX: Free CSA List Head Pointer Register */
|
||||
|
||||
#define FCX_FCXO (0) /* Bits 0-15: FCX Offset Address */
|
||||
#define FCX_FCXS (16) /* Bits 16-19: FCX Segment Address */
|
||||
#define FCX_FCXO_MASK (0xffff << FCX_FCXO)
|
||||
#define FCX_FCXS_MASK (0xf << FCX_FCXS)
|
||||
#define FCX_FREE (FCX_FCXS_MASK | FCX_FCXO_MASK) /* Free CSA manipulation */
|
||||
|
||||
#define TRICORE_SRCNUM_PER_GPSR 8
|
||||
#define TRICORE_SRC2IRQ(src_addr) \
|
||||
(((uintptr_t)(src_addr) - (uintptr_t)&MODULE_SRC) / 4)
|
||||
#define TRICORE_GPSR_IRQNUM(src_cpu, dest_cpu) \
|
||||
TRICORE_SRC2IRQ(&SRC_GPSR00 + src_cpu * 8 + dest_cpu)
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
struct xcptcontext
|
||||
{
|
||||
#ifdef CONFIG_ENABLE_ALL_SIGNALS
|
||||
/* These are saved copies of the context used during
|
||||
* signal processing.
|
||||
*/
|
||||
|
||||
uintptr_t *saved_regs;
|
||||
#endif
|
||||
/* Register save area with XCPTCONTEXT_SIZE, only valid when:
|
||||
* 1.The task isn't running or
|
||||
* 2.The task is interrupted
|
||||
* otherwise task is running, and regs contain the stale value.
|
||||
*/
|
||||
|
||||
uintptr_t *regs;
|
||||
};
|
||||
#endif /* __ASSEMBLY__ */
|
||||
|
||||
#endif /* __ARCH_TRICORE_INCLUDE_TC3XX_IRQ_H */
|
||||
Reference in New Issue
Block a user