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.

LAUNCHXL2-RM57L: CCM-R5F module reporting to the ESM

Part Number: LAUNCHXL2-RM57L

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?

  • Yes, I have already tried this and the same behaviour occurs.

  • I just did CCM self-test, and it only takes 4000 CPU cycles (13us).

  • 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?

    c_int00.c
    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    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:
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • Hi,

    Can you try my HL_sys_startup.c?

    3414.HL_sys_startup.c
    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    /** @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
    *
    *
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX