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: CSITX node

Part Number: TDA4VM

Hi everyone,

is it possible to create OpenVx application (graph) with only CSITX node and to send any data from memory?

I tried to use only CSITX node and graph execution stops in verify phase.

  • Hi Aleksandar,

    Yes, it is possible. Please refer to CSITX test application in the OpenVX. 

    Also if you could share the example, it would help to understand where is the issue.

    Regards,

    Brijesh

  • Hi Brijesh,

    on following link you can find more about CSITX configuration which i am talking about.

    https://e2e.ti.com/support/processors-group/processors/f/processors-forum/999922/tda4vm-csitx-verify

  • Hi Brijesh,

    here is whole graph create part of the code.

    I referred to the mentioned example when creating the application.
    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    vx_status app_create_graph(AppObj *obj)
    {
    vx_status status = VX_SUCCESS;
    vx_user_data_object csitx_config;
    tivx_csitx_params_t local_csitx_config;
    uint32_t loop_id, loop_cnt, num_buf;
    vx_map_id map_id;
    vx_int32 i,j;
    vx_imagepatch_addressing_t addr;
    uint16_t *ptr = NULL;
    uint16_t frmIdx;
    tivx_raw_image tx_frame_array_item = 0;
    tivx_raw_image_create_params_t params;
    vx_uint32 params_list_depth = 1;
    vx_graph_parameter_queue_params_t graph_parameters_queue_params_list[params_list_depth];
    APP_PRINTF("Creating graph \n");
    obj->graph = vxCreateGraph(obj->context);
    if(status == VX_SUCCESS)
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Best regards,

    Aleksandar

  • Hi Aleksandar,

    ok let me check your code and get back to you.

    Regards,

    Brijesh

  • Hi Aleksandar,

    What is the value of NUM_CHANNELS in the graph? 

    Can you please make sure that it is set to 1? 

    Also typically one reference in the parameter list is not sufficient. can create an array of object array tx_frame and then call verifygraph? 

    Please refer to the existing usecease in the ti-processor-sdk-rtos-j721e-evm-07_01_00_11\tiovx\kernels_j7\hwa\test\test_csitx_csirx.c file to understand how to setup CSITX.

    Regards,

    Brijesh

  • Hi Brijesh,

    NUM_CHANNELS is set to 1. We have solved the issue with verify graph, application now passes successfully this phase. We have found some problems with your driver code, precisely the register(CSL_CTRL_MMR0_CFG0_BASE + CSL_MAIN_CTRL_MMR_CFG0_DPHY_TX0_CTRL) which is used to select CSI output instead of DSI output isn't configured correctly. It's value is 0x0 instead of 0x1. We found out that this register should be unlocked before writing new value to it. Also we had an issue with CSITX task creation, specifically this function tivxPlatformCreateTargetId((vx_enum)TIVX_TARGET_ID_CSITX, 16, "TIVX_CSITX", 8u) that is being executed on RTOS proccessor R5F does not actually create that Task. We figured out thet the priority of 8 was the issue so we raised the priority to 15 and now Task is being created successfully. We also noticed the same issue with creating custom kernels where priority needs to be raised.

    Regards,

    Aleksandar

  • Hi Aleksandar,

    Thanks for the update.

    Lets continue our discussion on the other thread and close this thread.

    Regards,

    Brijesh