This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I am having troubles running self-tests, error-forcing mode and self-test error forcing mode on the CCM-R5F module.
For self testing, I am writing 6h into the CCMKEYR1 to CCMKEYR4 registers and then waiting for 100ms. I have tried writing in them separately and varying the wait time, however after this procedure when I read in the relevant status register (CCMSR1 to CCMSR4), I never see the self-test-complete bit as a 1. The entire status register is 0. I do however see that when write 6h to CCMKEYR1, that the CPU Compare module goes out of lockstep as I get a channel 92 CCM operating status error in my ESM.
For error-forcing mode, I am writing 9h into the key registers, and then waiting for 100ms. Again, all the status registers show up as 0. I do not get any ESM errors for key registers 1-3. When I write to CCMKEYR4, the Power domain inactivity monitor, I get a group 1 channel 31 ccm self test error and a .group 2 channel 28 ccm power domain monitor error. This seems to be the correct behaviour I that I expect to see with the other three registers, although the status register is still 0.
For self-test-error-forcing mode I am writing Fh into the key registers and then waiting 100ms. I see similar behaviour to error-forcing mode. The status registers are always 0 at the end, and key registers 1-3 do not output any error to the ESM. For key register 4, I get a CCM self test error from the ESM.
Am I going about these tests the wrong way or is there a step I am missing? Any help or guidance would be much appreciated.
Thank you
Hi,
You are running self-test for comparing the CPU outputs compare logic, VIM outputs compare logic, CPU inactivity logic, and power domain inactivity logic at a time. Can you separate those test?
Thanks a lot for the help and code. I implemented this code in our main function. From what we can see, only CCMSR4 is set. If we leave the code running, it gets blocked at the first while loop.
Attached is c_int00() code that runs before main(). Is there anything in here that we are doing wrong?
void _c_int00() { /* Initialize Core Registers to avoid CCM Error */ _coreInitRegisters_(); /* Initialize Stack Pointers */ _coreInitStackPointer_(); /* Reset handler: the following instructions read from the system exception status register * to identify the cause of the CPU reset. */ switch (getResetSource()) { case POWERON_RESET: case DEBUG_RESET: case EXT_RESET: case OSC_FAILURE_RESET: case WATCHDOG_RESET: case WATCHDOG2_RESET: case CPU0_RESET: case SW_RESET: default: /* indicated by a forum question if system or cpu reset was issued * Some types of reset don't disable the MPU so do it explicitly * before any memory accesses are done * https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/493739/rm57-reset-through-cpurstc-leaves-cpu-in-bad-state */ _mpuDisable_(); /* Initialize L2RAM to avoid ECC errors right after power on */ _memInit_(); /* Enable CPU Event Export */ /* This allows the CPU to signal any single-bit or double-bit errors detected * by its ECC logic for accesses to program flash or data RAM. */ _coreEnableEventBusExport_(); /* Check if there were ESM group3 errors during power-up. * These could occur during eFuse auto-load or during reads from flash OTP * during power-up. Device operation is not reliable and not recommended * in this case. */ if ((esmREG->SR1[2]) != 0U) { esmGroup3Notification(esmREG,esmREG->SR1[2]); } /* Initialize System - Clock, Flash settings with Efuse self check */ systemInit(); /* Enable IRQ offset via Vic controller */ _coreEnableIrqVicOffset_(); /* Initialize VIM table */ vimInit(); /* Clear any pending ESM interrupts that made it here */ esmInit(); break; } MpuInit(); _cacheEnable_(); /* Fill stack in debug mode. */ #ifdef DEBUG _coreFillStack_(); #endif { extern uint32 _sidata, _sdata, _edata; extern uint32 _ksidata, _ksdata, _kedata; uint32* src,* dst; src = &_sidata; dst = &_sdata; while (dst < &_edata) { *dst++ = *src++; } src = &_ksidata; dst = &_ksdata; while (dst < &_kedata) { *dst++ = *src++; } } __libc_init_array(); main(); exit(0); }
Hi,
Can you try my HL_sys_startup.c?
/** @file HL_sys_startup.c * @brief Startup Source File * @date 11-Dec-2018 * @version 04.07.01 * * This file contains: * - Include Files * - Type Definitions * - External Functions * - VIM RAM Setup * - Startup Routine * . * which are relevant for the Startup. */ /* * Copyright (C) 2009-2018 Texas Instruments Incorporated - www.ti.com * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ /* USER CODE BEGIN (0) */ /* USER CODE END */ /* Include Files */ #include "HL_sys_common.h" #include "HL_system.h" #include "HL_sys_vim.h" #include "HL_sys_core.h" #include "HL_esm.h" #include "HL_sys_mpu.h" #include "HL_errata_SSWF021_45.h" /* USER CODE BEGIN (1) */ /* USER CODE END */ /* USER CODE BEGIN (2) */ /* USER CODE END */ /* External Functions */ /*SAFETYMCUSW 218 S MR:20.2 <APPROVED> "Functions from library" */ extern void __TI_auto_init(void); /*SAFETYMCUSW 354 S MR:NA <APPROVED> " Startup code(main should be declared by the user)" */ extern int main(void); /*SAFETYMCUSW 122 S MR:20.11 <APPROVED> "Startup code(exit and abort need to be present)" */ /*SAFETYMCUSW 354 S MR:NA <APPROVED> " Startup code(Extern declaration present in the library)" */ extern void exit(int _status); /* USER CODE BEGIN (3) */ /* USER CODE END */ void handlePLLLockFail(void); /* Startup Routine */ void _c_int00(void); #define PLL_RETRIES 5U /* USER CODE BEGIN (4) */ /* USER CODE END */ #pragma CODE_STATE(_c_int00, 32) #pragma INTERRUPT(_c_int00, RESET) #pragma WEAK(_c_int00) /* SourceId : STARTUP_SourceId_001 */ /* DesignId : STARTUP_DesignId_001 */ /* Requirements : HL_CONQ_STARTUP_SR1 */ void _c_int00(void) { register resetSource_t rstSrc; /* USER CODE BEGIN (5) */ /* USER CODE END */ /* Initialize Core Registers to avoid CCM Error */ _coreInitRegisters_(); /* Initialize Stack Pointers */ _coreInitStackPointer_(); /* Reset handler: the following instructions read from the system exception status register * to identify the cause of the CPU reset. */ rstSrc = getResetSource(); switch(rstSrc) { case POWERON_RESET: /* Initialize L2RAM to avoid ECC errors right after power on */ _memInit_(); /* Add condition to check whether PLL can be started successfully */ if (_errata_SSWF021_45_both_plls(PLL_RETRIES) != 0U) { /* Put system in a safe state */ handlePLLLockFail(); } /*SAFETYMCUSW 62 S MR:15.2, 15.5 <APPROVED> "Need to continue to handle POWERON Reset" */ case DEBUG_RESET: case EXT_RESET: /* USER CODE BEGIN (6) */ /* USER CODE END */ /* Initialize L2RAM to avoid ECC errors right after power on */ if(rstSrc != POWERON_RESET) { _memInit_(); } /* USER CODE BEGIN (7) */ /* USER CODE END */ /* USER CODE BEGIN (8) */ /* USER CODE END */ /* USER CODE BEGIN (9) */ /* USER CODE END */ /* Enable CPU Event Export */ /* This allows the CPU to signal any single-bit or double-bit errors detected * by its ECC logic for accesses to program flash or data RAM. */ _coreEnableEventBusExport_(); /* USER CODE BEGIN (10) */ /* USER CODE END */ /* Check if there were ESM group3 errors during power-up. * These could occur during eFuse auto-load or during reads from flash OTP * during power-up. Device operation is not reliable and not recommended * in this case. */ if ((esmREG->SR1[2]) != 0U) { esmGroup3Notification(esmREG,esmREG->SR1[2]); } /* Initialize System - Clock, Flash settings with Efuse self check */ systemInit(); /* USER CODE BEGIN (11) */ /* USER CODE END */ /* Enable IRQ offset via Vic controller */ _coreEnableIrqVicOffset_(); /* Initialize VIM table */ vimInit(); /* USER CODE BEGIN (12) */ /* USER CODE END */ /* Configure system response to error conditions signaled to the ESM group1 */ /* This function can be configured from the ESM tab of HALCoGen */ esmInit(); /* USER CODE BEGIN (13) */ /* USER CODE END */ break; case OSC_FAILURE_RESET: /* USER CODE BEGIN (14) */ /* USER CODE END */ break; case WATCHDOG_RESET: case WATCHDOG2_RESET: /* USER CODE BEGIN (15) */ /* USER CODE END */ break; case CPU0_RESET: /* USER CODE BEGIN (16) */ /* USER CODE END */ /* USER CODE BEGIN (17) */ /* USER CODE END */ /* USER CODE BEGIN (18) */ /* USER CODE END */ /* Enable CPU Event Export */ /* This allows the CPU to signal any single-bit or double-bit errors detected * by its ECC logic for accesses to program flash or data RAM. */ _coreEnableEventBusExport_(); /* USER CODE BEGIN (19) */ /* USER CODE END */ break; case SW_RESET: /* USER CODE BEGIN (20) */ /* USER CODE END */ break; default: /* USER CODE BEGIN (21) */ /* USER CODE END */ break; } /* USER CODE BEGIN (22) */ /* USER CODE END */ _mpuInit_(); /* USER CODE BEGIN (23) */ /* USER CODE END */ _cacheEnable_(); /* USER CODE BEGIN (24) */ /* USER CODE END */ /* USER CODE BEGIN (25) */ /* USER CODE END */ /* initialize global variable and constructors */ __TI_auto_init(); /* USER CODE BEGIN (26) */ /* USER CODE END */ /* call the application */ /*SAFETYMCUSW 296 S MR:8.6 <APPROVED> "Startup code(library functions at block scope)" */ /*SAFETYMCUSW 326 S MR:8.2 <APPROVED> "Startup code(Declaration for main in library)" */ /*SAFETYMCUSW 60 D MR:8.8 <APPROVED> "Startup code(Declaration for main in library;Only doing an extern for the same)" */ main(); /* USER CODE BEGIN (27) */ /* USER CODE END */ /*SAFETYMCUSW 122 S MR:20.11 <APPROVED> "Startup code(exit and abort need to be present)" */ exit(0); /* USER CODE BEGIN (28) */ /* USER CODE END */ } /* USER CODE BEGIN (29) */ /* USER CODE END */ /** @fn void handlePLLLockFail(void) * @brief This function handles PLL lock fail. */ /* USER CODE BEGIN (30) */ /* USER CODE END */ void handlePLLLockFail(void) { /* USER CODE BEGIN (31) */ /* USER CODE END */ while(1) { } /* USER CODE BEGIN (32) */ /* USER CODE END */ } /* USER CODE BEGIN (33) */ /* USER CODE END */