Iam using TMDXEVM3358-starter kit does this supports booting of SYS/BIOS on kit.If supports which version of SYS/BIOS does it supports.
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 Sahithi,
The AM3358 has not been officially validated with SYS/BIOS but it looks like it should work.
You can see the supported devices here:
http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/bios/sysbios/6_34_02_18/exports/bios_6_34_02_18/docs/cdoc/ti/sysbios/family/doc-files/devices.html
You can see the specific's between the AM3358 and AM3359 (which is supported device) on this page and I don't see anything that should cause any issues in running SYS/BIOS.
http://www.ti.com/product/am3358
You could try building a simple SYS/BIOS example by using the AM3359 platform.
If you need to reset the CPU to a speed not supported by the AM3359, 500Mhz for example, you can do it in the .cfg file by adding the following.
var BIOS = xdc.useModule('ti.sysbios.BIOS');
BIOS.cpuFreq.lo = 500000000; /* sets the CPU frequency to 500MHz */
-Jon