d1a3f5e47f
to fix the following clang warning: Error: chip/eoss3_irq.c:138:47: error: format specifies type 'unsigned int' but the argument has type 'uint32_t' (aka 'unsigned long') [-Werror,-Wformat] _err("PANIC!!! Bus fault received: %08x\n", getreg32(NVIC_CFAULTS)); ~~~~ ^~~~~~~~~~~~~~~~~~~~~~ %08lx /github/workspace/sources/nuttx/include/debug.h:126:57: note: expanded from macro '_err' __arch_syslog(LOG_ERR, EXTRA_FMT format EXTRA_ARG, ##__VA_ARGS__) ~~~~~~ ^~~~~~~~~~~ /github/workspace/sources/nuttx/arch/arm/src/common/arm_internal.h:134:24: note: expanded from macro 'getreg32' ^~~~~~~~~~~~~~~~~~~~~~~~~~~ Error: chip/eoss3_irq.c:146:49: error: format specifies type 'unsigned int' but the argument has type 'uint32_t' (aka 'unsigned long') [-Werror,-Wformat] _err("PANIC!!! Usage fault received: %08x\n", getreg32(NVIC_CFAULTS)); ~~~~ ^~~~~~~~~~~~~~~~~~~~~~ %08lx Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
109 lines
3.4 KiB
C
109 lines
3.4 KiB
C
/****************************************************************************
|
|
* arch/arm/src/armv7-m/arm_busfault.c
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <debug.h>
|
|
|
|
#include <arch/irq.h>
|
|
|
|
#include "nvic.h"
|
|
#include "arm_internal.h"
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
#ifdef CONFIG_DEBUG_BUSFAULT
|
|
# define bfalert(format, ...) _alert(format, ##__VA_ARGS__)
|
|
#else
|
|
# define bfalert(x...)
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: arm_busfault
|
|
*
|
|
* Description:
|
|
* This is Bus Fault exception handler. It also catches SVC call
|
|
* exceptions that are performed in bad contexts.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int arm_busfault(int irq, void *context, void *arg)
|
|
{
|
|
uint32_t cfsr = getreg32(NVIC_CFAULTS);
|
|
|
|
bfalert("PANIC!!! Bus Fault:\n");
|
|
bfalert("\tIRQ: %d regs: %p\n", irq, context);
|
|
bfalert("\tBASEPRI: %08x PRIMASK: %08x IPSR: %08"
|
|
PRIx32 " CONTROL: %08" PRIx32 "\n",
|
|
getbasepri(), getprimask(), getipsr(), getcontrol());
|
|
bfalert("\tCFSR: %08" PRIx32 " HFSR: %08" PRIx32 " DFSR: %08"
|
|
PRIx32 " BFAR: %08" PRIx32 " AFSR: %08" PRIx32 "\n",
|
|
cfsr, getreg32(NVIC_HFAULTS), getreg32(NVIC_DFAULTS),
|
|
getreg32(NVIC_BFAULT_ADDR), getreg32(NVIC_AFAULTS));
|
|
|
|
bfalert("Bus Fault Reason:\n");
|
|
if (cfsr & NVIC_CFAULTS_IBUSERR)
|
|
{
|
|
bfalert("\tInstruction bus error\n");
|
|
}
|
|
|
|
if (cfsr & NVIC_CFAULTS_PRECISERR)
|
|
{
|
|
bfalert("\tPrecise data bus error\n");
|
|
}
|
|
|
|
if (cfsr & NVIC_CFAULTS_IMPRECISERR)
|
|
{
|
|
bfalert("\tImprecise data bus error\n");
|
|
}
|
|
|
|
if (cfsr & NVIC_CFAULTS_UNSTKERR)
|
|
{
|
|
bfalert("\tBusFault on unstacking for a return from exception\n");
|
|
}
|
|
|
|
if (cfsr & NVIC_CFAULTS_STKERR)
|
|
{
|
|
bfalert("\tBusFault on stacking for exception entry\n");
|
|
}
|
|
|
|
if (cfsr & NVIC_CFAULTS_LSPERR)
|
|
{
|
|
bfalert("\tFloating-point lazy state preservation error\n");
|
|
}
|
|
|
|
up_irq_save();
|
|
PANIC();
|
|
return OK;
|
|
}
|