From: Frank Livingston Date: Wed, 11 Oct 2017 22:31:18 +0000 (-0500) Subject: PASDK-432:Add updates for HS boot. X-Git-Url: https://git.ti.com/gitweb?p=processor-sdk%2Fperformance-audio-sr.git;a=commitdiff_plain;h=bfcf495248a57ea6677a1d67cd887f41a39d6976 PASDK-432:Add updates for HS boot. Note: SYSBIOS-433 update not contained in any PASDK repo! Manually updated my local copies of changed files for SYSBIOS v6.46.05.55. --- diff --git a/pasdk/test_arm/application/app.cfg b/pasdk/test_arm/application/app.cfg index b4bcbd6b..b3f81d2a 100644 --- a/pasdk/test_arm/application/app.cfg +++ b/pasdk/test_arm/application/app.cfg @@ -72,6 +72,12 @@ var UIAEvt = xdc.useModule('ti.uia.events.UIAEvt'); xdc.useModule('ti.sdo.utils.MultiProc'); +/* Added Per Recommendation from CATAPPS-171 */ +var gicHwi = xdc.useModule('ti.sysbios.family.arm.gic.Hwi'); +gicHwi.enableSecureMode = false; +gicHwi.BPR = 3; +gicHwi.NUM_PRIORITY_BITS = 4; + /* * ======== IPC Configuration ======== */ diff --git a/pasdk/test_dsp/application/app.cfg b/pasdk/test_dsp/application/app.cfg index cf218d90..d5183640 100644 --- a/pasdk/test_dsp/application/app.cfg +++ b/pasdk/test_dsp/application/app.cfg @@ -158,9 +158,13 @@ Program.sectMap[".systemHeap"] = "CORE0_DDR3"; /* * Build a custom SYS/BIOS library from sources. + * Added per recommendation from CATAPPS-171 */ -BIOS.libType = (RB ? BIOS.LibType_NonInstrumented : BIOS.LibType_Instrumented); -// BIOS.libType = BIOS.LibType_Custom; + +BIOS.useSK = true; +BIOS.setupSecureContext = true; +//BIOS.libType = BIOS.LibType_Custom;BIOS.libType = (RB ? BIOS.LibType_NonInstrumented : BIOS.LibType_Instrumented); + BIOS.libType = BIOS.LibType_Custom; // BIOS.libType = BIOS.LibType_Debug; /* System stack size (used by ISRs and Swis) */