fome-fw/firmware/hw_layer/stm32f4/mpu_util.cpp

275 lines
7.0 KiB
C++
Raw Normal View History

2014-08-29 07:52:33 -07:00
/**
* @file mpu_util.cpp
*
* @date Jul 27, 2014
2015-01-12 15:04:10 -08:00
* @author Andrey Belomutskiy, (c) 2012-2015
2014-08-29 07:52:33 -07:00
*/
#include "main.h"
#include "mpu_util.h"
#include "error_handling.h"
2015-01-10 08:04:53 -08:00
#include "engine.h"
#include "pin_repository.h"
EXTERN_ENGINE;
2014-08-29 07:52:33 -07:00
2014-11-06 13:03:13 -08:00
extern "C" {
int getRemainingStack(Thread *otp);
2014-11-06 18:05:30 -08:00
void prvGetRegistersFromStack(uint32_t *pulFaultStackAddress);
2014-11-06 13:03:13 -08:00
}
extern stkalign_t __main_stack_base__;
2014-11-08 08:09:38 -08:00
#define GET_CFSR() (*((volatile uint32_t *) (0xE000ED28)))
2014-11-06 16:03:21 -08:00
#if defined __GNUC__
// GCC version
2014-11-06 13:03:13 -08:00
int getRemainingStack(Thread *otp) {
2014-11-06 18:05:30 -08:00
2014-11-06 13:03:13 -08:00
#if CH_DBG_ENABLE_STACK_CHECK
register struct intctx *r13 asm ("r13");
otp->activeStack = r13;
2014-11-08 16:03:17 -08:00
int remainingStack;
2014-11-06 13:03:13 -08:00
if (dbg_isr_cnt > 0) {
// ISR context
2014-11-08 16:03:17 -08:00
remainingStack = (int)(r13 - 1) - (int)&__main_stack_base__;
2014-11-06 13:03:13 -08:00
} else {
2014-11-08 16:03:17 -08:00
remainingStack = (int)(r13 - 1) - (int)otp->p_stklimit;
2014-11-06 13:03:13 -08:00
}
2014-11-08 16:03:17 -08:00
otp->remainingStack = remainingStack;
return remainingStack;
2014-11-06 13:03:13 -08:00
#else
return 99999;
#endif /* CH_DBG_ENABLE_STACK_CHECK */
}
2014-11-06 16:03:21 -08:00
#else /* __GNUC__ */
2014-11-08 08:09:38 -08:00
extern uint32_t CSTACK$$Base; /* symbol created by the IAR linker */
extern uint32_t IRQSTACK$$Base; /* symbol created by the IAR linker */
2014-11-07 14:03:18 -08:00
2014-11-06 16:03:21 -08:00
int getRemainingStack(Thread *otp) {
#if CH_DBG_ENABLE_STACK_CHECK || defined(__DOXYGEN__)
2014-11-06 18:05:30 -08:00
int remainingStack;
if (dbg_isr_cnt > 0) {
2014-11-07 14:03:18 -08:00
remainingStack = (__get_SP() - sizeof(struct intctx)) - (int)&IRQSTACK$$Base;
2014-11-06 18:05:30 -08:00
} else {
2014-11-08 16:03:17 -08:00
remainingStack = (__get_SP() - sizeof(struct intctx)) - (int)otp->p_stklimit;
2014-11-06 18:05:30 -08:00
}
otp->remainingStack = remainingStack;
return remainingStack;
2014-11-06 16:03:21 -08:00
#else
2014-11-06 18:05:30 -08:00
return 999999;
2014-11-06 16:03:21 -08:00
#endif
}
// IAR version
#endif
2014-08-29 07:52:33 -07:00
void baseHardwareInit(void) {
// looks like this holds a random value on start? Let's set a nice clean zero
DWT_CYCCNT = 0;
}
void DebugMonitorVector(void) {
chDbgPanic3("DebugMonitorVector", __FILE__, __LINE__);
while (TRUE)
;
}
void UsageFaultVector(void) {
chDbgPanic3("UsageFaultVector", __FILE__, __LINE__);
while (TRUE)
;
}
void BusFaultVector(void) {
chDbgPanic3("BusFaultVector", __FILE__, __LINE__);
while (TRUE) {
2014-11-06 18:05:30 -08:00
}
2014-08-29 07:52:33 -07:00
}
2014-11-06 18:05:30 -08:00
/**
+ * @brief Register values for postmortem debugging.
+ */
volatile uint32_t postmortem_r0;
volatile uint32_t postmortem_r1;
volatile uint32_t postmortem_r2;
volatile uint32_t postmortem_r3;
volatile uint32_t postmortem_r12;
volatile uint32_t postmortem_lr; /* Link register. */
volatile uint32_t postmortem_pc; /* Program counter. */
volatile uint32_t postmortem_psr;/* Program status register. */
volatile uint32_t postmortem_CFSR;
volatile uint32_t postmortem_HFSR;
volatile uint32_t postmortem_DFSR;
volatile uint32_t postmortem_AFSR;
volatile uint32_t postmortem_BFAR;
volatile uint32_t postmortem_MMAR;
volatile uint32_t postmortem_SCB_SHCSR;
2014-08-29 07:52:33 -07:00
2014-11-06 18:05:30 -08:00
/**
* @brief Evaluates to TRUE if system runs under debugger control.
* @note This bit resets only by power reset.
*/
#define is_under_debugger() (((CoreDebug)->DHCSR) & \
CoreDebug_DHCSR_C_DEBUGEN_Msk)
/**
*
*/
void prvGetRegistersFromStack(uint32_t *pulFaultStackAddress) {
postmortem_r0 = pulFaultStackAddress[0];
postmortem_r1 = pulFaultStackAddress[1];
postmortem_r2 = pulFaultStackAddress[2];
postmortem_r3 = pulFaultStackAddress[3];
postmortem_r12 = pulFaultStackAddress[4];
postmortem_lr = pulFaultStackAddress[5];
postmortem_pc = pulFaultStackAddress[6];
postmortem_psr = pulFaultStackAddress[7];
/* Configurable Fault Status Register. Consists of MMSR, BFSR and UFSR */
2014-11-08 08:09:38 -08:00
postmortem_CFSR = GET_CFSR();
2014-11-06 18:05:30 -08:00
/* Hard Fault Status Register */
postmortem_HFSR = (*((volatile uint32_t *) (0xE000ED2C)));
/* Debug Fault Status Register */
postmortem_DFSR = (*((volatile uint32_t *) (0xE000ED30)));
/* Auxiliary Fault Status Register */
postmortem_AFSR = (*((volatile uint32_t *) (0xE000ED3C)));
/* Read the Fault Address Registers. These may not contain valid values.
Check BFARVALID/MMARVALID to see if they are valid values
MemManage Fault Address Register */
postmortem_MMAR = (*((volatile uint32_t *) (0xE000ED34)));
/* Bus Fault Address Register */
postmortem_BFAR = (*((volatile uint32_t *) (0xE000ED38)));
postmortem_SCB_SHCSR = SCB->SHCSR;
if (is_under_debugger()) {
__asm("BKPT #0\n");
// Break into the debugger
}
/* harmless infinite loop */
while (1) {
;
}
}
void HardFaultVector(void) {
#if 0 && defined __GNUC__
__asm volatile (
" tst lr, #4 \n"
" ite eq \n"
" mrseq r0, msp \n"
" mrsne r0, psp \n"
" ldr r1, [r0, #24] \n"
" ldr r2, handler2_address_const \n"
" bx r2 \n"
" handler2_address_const: .word prvGetRegistersFromStack \n"
);
2014-11-08 08:09:38 -08:00
2014-11-06 18:05:30 -08:00
#else
#endif
2014-11-08 08:09:38 -08:00
int cfsr = GET_CFSR();
2014-11-08 10:04:00 -08:00
if (cfsr & 0x1) {
chDbgPanic3("H IACCVIOL", __FILE__, __LINE__);
2014-11-08 11:03:07 -08:00
} else if (cfsr & 0x100) {
2014-11-08 08:09:38 -08:00
chDbgPanic3("H IBUSERR", __FILE__, __LINE__);
} else if (cfsr & 0x20000) {
chDbgPanic3("H INVSTATE", __FILE__, __LINE__);
} else {
chDbgPanic3("HardFaultVector", __FILE__, __LINE__);
}
2014-08-29 07:52:33 -07:00
while (TRUE) {
2014-11-08 08:09:38 -08:00
}
2014-08-29 07:52:33 -07:00
}
2015-01-10 08:04:53 -08:00
#if HAL_USE_SPI || defined(__DOXYGEN__)
static bool isSpiInitialized[5] = { false, false, false, false, false };
static int getSpiAf(SPIDriver *driver) {
#if STM32_SPI_USE_SPI1
if (driver == &SPID1) {
return EFI_SPI1_AF;
}
#endif
#if STM32_SPI_USE_SPI2
if (driver == &SPID2) {
return EFI_SPI2_AF;
}
#endif
#if STM32_SPI_USE_SPI3
if (driver == &SPID3) {
return EFI_SPI3_AF;
}
#endif
return -1;
}
void turnOnSpi(spi_device_e device) {
if (isSpiInitialized[device])
return; // already initialized
isSpiInitialized[device] = true;
if (device == SPI_DEVICE_1) {
#if STM32_SPI_USE_SPI1
// scheduleMsg(&logging, "Turning on SPI1 pins");
initSpiModule(&SPID1, boardConfiguration->spi1sckPin,
boardConfiguration->spi1misoPin,
boardConfiguration->spi1mosiPin);
#endif /* STM32_SPI_USE_SPI1 */
}
if (device == SPI_DEVICE_2) {
#if STM32_SPI_USE_SPI2
// scheduleMsg(&logging, "Turning on SPI2 pins");
initSpiModule(&SPID2, boardConfiguration->spi2sckPin,
boardConfiguration->spi2misoPin,
boardConfiguration->spi2mosiPin);
#endif /* STM32_SPI_USE_SPI2 */
}
if (device == SPI_DEVICE_3) {
#if STM32_SPI_USE_SPI3
// scheduleMsg(&logging, "Turning on SPI3 pins");
initSpiModule(&SPID3, boardConfiguration->spi3sckPin,
boardConfiguration->spi3misoPin,
boardConfiguration->spi3mosiPin);
#endif /* STM32_SPI_USE_SPI3 */
}
}
void initSpiModule(SPIDriver *driver, brain_pin_e sck, brain_pin_e miso,
brain_pin_e mosi) {
mySetPadMode2("SPI clock", sck, PAL_MODE_ALTERNATE(getSpiAf(driver)));
mySetPadMode2("SPI master out", mosi, PAL_MODE_ALTERNATE(getSpiAf(driver)));
mySetPadMode2("SPI master in ", miso, PAL_MODE_ALTERNATE(getSpiAf(driver)));
}
void initSpiCs(SPIConfig *spiConfig, brain_pin_e csPin) {
spiConfig->end_cb = NULL;
ioportid_t port = getHwPort(csPin);
ioportmask_t pin = getHwPin(csPin);
spiConfig->ssport = port;
spiConfig->sspad = pin;
mySetPadMode("chip select", port, pin, PAL_STM32_MODE_OUTPUT);
}
#endif