mirror of https://github.com/thesofproject/sof.git
Revert "idc: set budget for IDC task"
This reverts commit 443319a718
.
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
This commit is contained in:
parent
7390933a63
commit
28c3fd7428
7
Kconfig
7
Kconfig
|
@ -127,13 +127,6 @@ config INTERRUPT_LEVEL_5
|
|||
|
||||
rsource "src/Kconfig"
|
||||
|
||||
config IDC_TASK_BUDGET
|
||||
int "Cycles budget for IDC task"
|
||||
depends on MULTICORE
|
||||
default 8000
|
||||
help
|
||||
Cycles budget for IDC task per systick (see config SYSTICK).
|
||||
|
||||
choice
|
||||
prompt "Optimization"
|
||||
default OPTIMIZE_FOR_PERFORMANCE
|
||||
|
|
|
@ -325,10 +325,8 @@ int idc_init(void)
|
|||
(*idc)->payload = cache_to_uncache((struct idc_payload *)payload);
|
||||
|
||||
/* process task */
|
||||
schedule_task_init_edf_with_budget(&(*idc)->idc_task,
|
||||
SOF_UUID(idc_cmd_task_uuid),
|
||||
&ops, *idc, cpu_get_id(), 0,
|
||||
CONFIG_IDC_TASK_BUDGET);
|
||||
schedule_task_init_edf(&(*idc)->idc_task, SOF_UUID(idc_cmd_task_uuid),
|
||||
&ops, *idc, cpu_get_id(), 0);
|
||||
|
||||
return platform_idc_init();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue