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.

RTOS/TMS320C6678: NDK configured for UDP, ARP not resolved.

Part Number: TMS320C6678
Other Parts Discussed in Thread: SYSBIOS

Tool/software: TI-RTOS

Hi,

I'm trying to create an UDP client socket for port 1 in an existing project which is already running for raw socket in a custom board.  I've included  NDK in my project and enabled IP block in network layer. Below is my tool configuration.
xcdtool version : 3.25.5.94
IPC : 3.21.0.07
NDK : 2.24.3.35
SYS/Bios : 6.37.2.27
PDK : pdk_C6678_1_1_2_6

I've connected DSP with PC. Configured DSP IP as 192.168.1.6 and PC IP as 192.168.1.12.  I can see the ARP request from DSP is coming out and PC is responding back, But the APR is not getting resolved. Getting error as "Host is down".  I've captured transaction in Wireshark tool.

I'm using the Example platform.c file and Modified the emac_port_mode[] to get the first element as "PLATFORM_EMAC_PORT_MODE_PHY".  

Thanks

Thirumoorthy S

  • Hi,

    I recommend having a look at the NIMU_emacClientExample_EVMC6678C66BiosExampleProject (along with the testudp.c in ~/ti/ndk_2_26_00_08/packages/ti/ndk/winapps) it contains the correct settings for udp tests.

    You can generate the NIMU_emacClientExample by running the following commands:
    source pdksetupenv.sh
    ./pdkProjectCreate.sh C6678 all little nimu all dsp

    Best Regards,
    Yordan
  • Hi,

    I referred the Client example. As listed in that i'm also using the same config
    /* Initialize the components required to run this application:
    * (1) QMSS
    * (2) CPPI
    * (3) Packet Accelerator
    */
    /* Initialize QMSS */
    if (platform_get_coreid() == 0)
    {
    qmss_cfg.master_core = 1;
    }
    else
    {
    qmss_cfg.master_core = 0;
    }
    qmss_cfg.max_num_desc = MAX_NUM_DESC;
    qmss_cfg.desc_size = MAX_DESC_SIZE;
    qmss_cfg.mem_region = Qmss_MemRegion_MEMORY_REGION0;
    if (res_mgr_init_qmss (&qmss_cfg) != 0)
    {
    platform_write ("Failed to initialize the QMSS subsystem \n");
    goto main_exit;
    }
    else
    {
    platform_write ("QMSS successfully initialized \n");
    }

    /* Initialize CPPI */
    if (platform_get_coreid() == 0)
    {
    cppi_cfg.master_core = 1;
    }
    else
    {
    cppi_cfg.master_core = 0;
    }
    cppi_cfg.dma_num = Cppi_CpDma_PASS_CPDMA;
    cppi_cfg.num_tx_queues = NUM_PA_TX_QUEUES;
    cppi_cfg.num_rx_channels = NUM_PA_RX_CHANNELS;
    if (res_mgr_init_cppi (&cppi_cfg) != 0)
    {
    platform_write ("Failed to initialize CPPI subsystem \n");
    goto main_exit;
    }
    else
    {
    platform_write ("CPPI successfully initialized \n");
    }


    if (res_mgr_init_pass()!= 0) {
    platform_write ("Failed to initialize the Packet Accelerator \n");
    goto main_exit;
    }
    else
    {
    platform_write ("PA successfully initialized \n");
    }

    //

    For "NC_SystemOpen" and related calls are done using the NDK auto generated file "XXX_sysbios_pe66.c".
    "platform_get_switch_state()" is related to Eval board. For my custom board it is not required.

    The Code snippet below uses "DeamonNew" Api is and that is for server. I'm implementing UDP Client, so I've created UDP socket and sending the data.
    hEchoUdp = DaemonNew( SOCK_DGRAM, 0, 7, dtask_udp_echo,
    OS_TASKPRINORM, OS_TASKSTKNORM, 0, 1 );

    My suspect is all about the table and mac configuration. (since the Eval board uses port2 for PHY communication and my board uses port 1).
  • Hi Yordan, Any pointers how the DSP is able to send the ARP packet and not able to receive it.
  • Try hardcoding the port in nimu_eth.h/

    Best Regards,
    Yordan