Skip to content

Commit

Permalink
Revert "idc: set budget for IDC task"
Browse files Browse the repository at this point in the history
This reverts commit 443319a.

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
  • Loading branch information
plbossart committed Jul 29, 2020
1 parent 7390933 commit 28c3fd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
7 changes: 0 additions & 7 deletions Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 2 additions & 4 deletions src/idc/idc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

0 comments on commit 28c3fd7

Please sign in to comment.