127 lines
3.5 KiB
C
127 lines
3.5 KiB
C
/*
|
|
* Copyright (c) 2015-2016, Freescale Semiconductor, Inc.
|
|
* Copyright 2016 NXP
|
|
* All rights reserved.
|
|
*
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
/*************************************************
|
|
File name: fsl_common
|
|
Description:
|
|
Others: take for references
|
|
https://github.com/open-isa-org/open-isa.org
|
|
History:
|
|
1. Date: 2022-02-16
|
|
Author: AIIT XUOS Lab
|
|
Modification:
|
|
*************************************************/
|
|
#include "fsl_common.h"
|
|
// #include "fsl_debug_console.h"
|
|
|
|
#ifndef NDEBUG
|
|
#if (defined(__CC_ARM)) || (defined(__ICCARM__))
|
|
void __aeabi_assert(const char *failedExpr, const char *file, int line)
|
|
{
|
|
PRINTF("ASSERT ERROR \" %s \": file \"%s\" Line \"%d\" \n", failedExpr, file, line);
|
|
for (;;)
|
|
{
|
|
__BKPT(0);
|
|
}
|
|
}
|
|
#elif(defined(__GNUC__))
|
|
void __assert_func(const char *file, int line, const char *func, const char *failedExpr)
|
|
{
|
|
PRINTF("ASSERT ERROR \" %s \": file \"%s\" Line \"%d\" function name \"%s\" \n", failedExpr, file, line, func);
|
|
for (;;)
|
|
{
|
|
__BKPT(0);
|
|
}
|
|
}
|
|
#endif /* (defined(__CC_ARM)) || (defined (__ICCARM__)) */
|
|
#endif /* NDEBUG */
|
|
|
|
#ifndef __GIC_PRIO_BITS
|
|
#ifndef __riscv
|
|
uint32_t InstallIRQHandler(IRQn_Type irq, uint32_t irqHandler)
|
|
{
|
|
/* Addresses for VECTOR_TABLE and VECTOR_RAM come from the linker file */
|
|
#if defined(__CC_ARM)
|
|
extern uint32_t Image$$VECTOR_ROM$$Base[];
|
|
extern uint32_t Image$$VECTOR_RAM$$Base[];
|
|
extern uint32_t Image$$RW_m_data$$Base[];
|
|
|
|
#define __VECTOR_TABLE Image$$VECTOR_ROM$$Base
|
|
#define __VECTOR_RAM Image$$VECTOR_RAM$$Base
|
|
#define __RAM_VECTOR_TABLE_SIZE (((uint32_t)Image$$RW_m_data$$Base - (uint32_t)Image$$VECTOR_RAM$$Base))
|
|
#elif defined(__ICCARM__)
|
|
extern uint32_t __RAM_VECTOR_TABLE_SIZE[];
|
|
extern uint32_t __VECTOR_TABLE[];
|
|
extern uint32_t __VECTOR_RAM[];
|
|
#elif defined(__GNUC__)
|
|
extern uint32_t __VECTOR_TABLE[];
|
|
extern uint32_t __VECTOR_RAM[];
|
|
extern uint32_t __RAM_VECTOR_TABLE_SIZE_BYTES[];
|
|
uint32_t __RAM_VECTOR_TABLE_SIZE = (uint32_t)(__RAM_VECTOR_TABLE_SIZE_BYTES);
|
|
#endif /* defined(__CC_ARM) */
|
|
uint32_t n;
|
|
uint32_t ret;
|
|
uint32_t irqMaskValue;
|
|
|
|
irqMaskValue = DisableGlobalIRQ();
|
|
if (SCB->VTOR != (uint32_t)__VECTOR_RAM)
|
|
{
|
|
/* Copy the vector table from ROM to RAM */
|
|
for (n = 0; n < ((uint32_t)__RAM_VECTOR_TABLE_SIZE) / sizeof(uint32_t); n++)
|
|
{
|
|
__VECTOR_RAM[n] = __VECTOR_TABLE[n];
|
|
}
|
|
/* Point the VTOR to the position of vector table */
|
|
SCB->VTOR = (uint32_t)__VECTOR_RAM;
|
|
}
|
|
|
|
ret = __VECTOR_RAM[irq + 16];
|
|
/* make sure the __VECTOR_RAM is noncachable */
|
|
__VECTOR_RAM[irq + 16] = irqHandler;
|
|
|
|
EnableGlobalIRQ(irqMaskValue);
|
|
|
|
return ret;
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef QN908XC_SERIES
|
|
#if (defined(FSL_FEATURE_SOC_SYSCON_COUNT) && (FSL_FEATURE_SOC_SYSCON_COUNT > 0))
|
|
|
|
void EnableDeepSleepIRQ(IRQn_Type interrupt)
|
|
{
|
|
uint32_t index = 0;
|
|
uint32_t intNumber = (uint32_t)interrupt;
|
|
while (intNumber >= 32u)
|
|
{
|
|
index++;
|
|
intNumber -= 32u;
|
|
}
|
|
|
|
SYSCON->STARTERSET[index] = 1u << intNumber;
|
|
EnableIRQ(interrupt); /* also enable interrupt at NVIC */
|
|
}
|
|
|
|
void DisableDeepSleepIRQ(IRQn_Type interrupt)
|
|
{
|
|
uint32_t index = 0;
|
|
uint32_t intNumber = (uint32_t)interrupt;
|
|
while (intNumber >= 32u)
|
|
{
|
|
index++;
|
|
intNumber -= 32u;
|
|
}
|
|
|
|
DisableIRQ(interrupt); /* also disable interrupt at NVIC */
|
|
SYSCON->STARTERCLR[index] = 1u << intNumber;
|
|
}
|
|
#endif /* FSL_FEATURE_SOC_SYSCON_COUNT */
|
|
|
|
#endif /* QN908XC_SERIES */
|