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.

TDA4VM: Migration to 8.02 from 7.03

Part Number: TDA4VM

Hi team,

we ran our application using TI-RTOS (sdk 7.03) which ran successfully, but when we migrated and using Freetos (8.02 sdk) our application is running too slow, but we are using same DDR memory, could you help us with this. I am adding our main.c file for your reference to compare with 7.03 and 8.02 sdk.

#our tirtos main file-

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*============================== INCLUSIONS =============================*/
/* XDCtools Header files*/
#include "Data_Types.h"
#include <xdc/std.h>
#include <xdc/runtime/Error.h>
#include <xdc/runtime/System.h>
/* BIOS Header files */
#include <ti/sysbios/BIOS.h>
#include <ti/sysbios/knl/Task.h>
#include <ti/sysbios/knl/Clock.h>
#include <ti/csl/arch/csl_arch.h>
#include <ti/csl/soc.h>
#include <ti/csl/cslr.h>
#include <ti/osal/osal.h>
#include <ti/osal/TaskP.h>
#include <ti/osal/TimerP.h>
#include "Main_Startup.h"
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

#our Freetos main file-

:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
*
* Copyright (c) 2019-2020 Texas Instruments Incorporated
*
* All rights reserved not granted herein.
*
* Limited License.
*
* Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive
* license under copyrights and patents it now or hereafter owns or controls to make,
* have made, use, import, offer to sell and sell ("Utilize") this software subject to the
* terms herein. With respect to the foregoing patent license, such license is granted
* solely to the extent that any such patent is necessary to Utilize the software alone.
* The patent license shall not apply to any combinations which include this software,
* other than combinations with devices manufactured by or for TI ("TI Devices").
* No hardware patent is licensed hereunder.
*
* Redistributions must preserve existing copyright notices and reproduce this license
* (including the above copyright notice and the disclaimer and (if applicable) source
* code license limitations below) in the documentation and/or other materials provided
* with the distribution
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • Hi,

    Can you please share the linker files for your application from both the SDK?

    Regards,
    Parth

  • Hi Parth,

    #our tirtos app where we are using ddr memory

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    /*----------------------------------------------------------------------------*/
    /* File: linker_r5f_mcu1_0_btcm_sysbios.lds */
    /* Description: */
    /* Link command file for J7ES MCU1_0 view */
    /* TI ARM Compiler version 15.12.3 LTS or later */
    /* */
    /* (c) Texas Instruments 2018, All rights reserved. */
    /*----------------------------------------------------------------------------*/
    /* History: */
    /* Aug 26th, 2016 Original version .......................... Loc Truong */
    /* Aug 01th, 2017 new TCM mem map .......................... Loc Truong */
    /* Nov 07th, 2017 Changes for R5F Init Code.................. Vivek Dhande */
    /* Sep 17th, 2018 Added DDR sections for IPC................. J. Bergsagel */
    /* Sep 26th, 2018 Extra mem sections for IPC resource table.. J. Bergsagel */
    /* Nov 06th, 2018 Correction to TCM addresses for MCU1_0..... J. Bergsagel */
    /* Nov 07th, 2018 Split up OCMRAM_MCU for split-mode R5Fs.... J. Bergsagel */
    /* Feb 20th, 2019 Use R5F BTCM memory for boot vectors........J. Bergsagel */
    /* Apr 23th, 2019 Changes for R5F startup Code............... Vivek Dhande */
    /*----------------------------------------------------------------------------*/
    /* Linker Settings */
    /* Standard linker options */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    #our freertos app where we are using MSMC3

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    /*==========================*/
    /* Linker Settings */
    /*==========================*/
    --retain="*(.bootCode)"
    --retain="*(.startupCode)"
    --retain="*(.startupData)"
    --retain="*(.irqStack)"
    --retain="*(.fiqStack)"
    --retain="*(.abortStack)"
    --retain="*(.undStack)"
    --retain="*(.svcStack)"
    --fill_value=0
    //--stack_size=0x4000 org values
    //--heap_size=0x8000
    //memory extended
    --stack_size=0xC0000
    --heap_size=0x2000
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    in this both cases our final output is matching but, we need to run our Freetos app faster for our desired output. since It is already in MSMC3 and we cant able to keep that in OCMC because of size issue.

    As per our observation Freetos is much slower than tirtos when accessing memory locations as it is too slow when we keep our (.text) section in DDR whereas tirtos was far better. Am i right??

    if you can suggest how to run our Freetos app faster, it would help us.

    Regards

    Madikanti Rohith.

  • Hi,

    As per our observation Freetos is much slower than tirtos when accessing memory locations as it is too slow when we keep our (.text) section in DDR whereas tirtos was far better. Am i right??

    I don't have data on this, I'll need to check this with the team.

    we need to run our Freetos app faster for our desired output. since It is already in MSMC3 and we cant able to keep that in OCMC because of size issue.

    You can break your .text section and keep some of your most commonly used APIs in OCMC. The same way you are doing with .bss:NDK_MMBUFFER in the linker file you shared. This should help with the speed. Also, you can use both MCU_OCRAM and MAIN_OCRAM for this.

    Regards,
    Parth

  • Hi ,

    thanks for your reply,

    I don't have data on this, I'll need to check this with the team.

    please let us know if you get any info regarding this,

    This should help with the speed. Also, you can use both MCU_OCRAM and MAIN_OCRAM for this.

    We are currently using OCMC_RAM as in the linker file attached, so is it MCU RAM or MAIN RAM.

    Also, if it is MCU RAM how can we use MAIN RAM in our case as our app is MCU R5 based.

    Regards 

    Madikanti Rohith

  • Hi,

    please let us know if you get any info regarding this,

    Please expect a little delay in this, as most of the team is on vacation.

    We are currently using OCMC_RAM as in the linker file attached, so is it MCU RAM or MAIN RAM.

    Currently you are using MCU_OCRAM. There is a 512KB of OCRAM mapped at 0x3600000, which you should be able to use in the same way as you are using MCU_OCRAM in the linker.

    Regards,
    Parth

  • Hi ,

    thanks for your reply

    Currently you are using MCU_OCRAM. There is a 512KB of OCRAM mapped at 0x3600000, which you should be able to use in the same way as you are using MCU_OCRAM in the linker.

    #one update,

    we increased our OCRAM (like adjusted address) and kept our .text section in OCRAM and we got our desired result, but its a temporary solution for us . for our final desired output, we need to run linux  and in upcoming updates of our app .text section will not fit in OCRAM. can you suggest any possible way to run it faster.

    1)is there any way to run Freetos with ddr memory faster ?

    2)is there any way to split our .text section into .text1 and .text2 so we can keep  ,.text1 in MSMC and  .text2 in OCMC .

    if you can suggest any similar thing as I mentioned above can you give us a reference, or any input from your side .

     

    Please expect a little delay in this, as most of the team is on vacation.

    ok,like we wanted to know to run our application with Linux is it possible with Freetos or not, DDR is causing the problem as it is too slow with Freetos.

    Regards

    Madikanti Rohith

  • Hi,

    is there any way to split our .text section into .text1 and .text2 so we can keep  ,.text1 in MSMC and  .text2 in OCMC .

    Yes, you can do this as I mentioned in the previous post.

    You can break your .text section and keep some of your most commonly used APIs in OCMC. The same way you are doing with .bss:NDK_MMBUFFER in the linker file you shared.



    Regards,
    Parth