mirror of https://github.com/thesofproject/sof.git
25 lines
616 B
C
25 lines
616 B
C
// SPDX-License-Identifier: BSD-3-Clause
|
|
//
|
|
// Copyright(c) 2019 Intel Corporation. All rights reserved.
|
|
//
|
|
// Author: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
|
|
|
|
/* Generic scheduler */
|
|
#include <sof/schedule/schedule.h>
|
|
#include <sof/schedule/edf_schedule.h>
|
|
#include <sof/schedule/ll_schedule.h>
|
|
#include <rtos/alloc.h>
|
|
#include <sof/lib/cpu.h>
|
|
#include <ipc/topology.h>
|
|
|
|
static struct schedulers *_schedulers[CONFIG_CORE_COUNT];
|
|
|
|
/**
|
|
* Retrieves registered schedulers.
|
|
* @return List of registered schedulers.
|
|
*/
|
|
struct schedulers **arch_schedulers_get(void)
|
|
{
|
|
return _schedulers + cpu_get_id();
|
|
}
|