23 lines
540 B
C
23 lines
540 B
C
/* SPDX-License-Identifier: Apache-2.0
|
|||
*
|
|||
* Copyright(c) 2019 Intel Corporation. All rights reserved.
|
|||
*
|
|||
* Author: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
|
|||
*/
|
|||
|
|||
/**
|
|||
* \file cavs/lib/cpu.h
|
|||
* \brief DSP parameters, common for cAVS platforms.
|
|||
*/
|
|||
|
|||
#ifndef __CAVS_CPU_H__
|
|||
#define __CAVS_CPU_H__
|
|||
|
|||
/** \brief Number of available DSP cores (conf. by kconfig) */
|
|||
#define PLATFORM_CORE_COUNT (defined(CONFIG_SMP) ? CONFIG_MP_NUM_CPUS : 1)
|
|||
|
|||
/** Id of master DSP core */
|
|||
#define PLATFORM_PRIMARY_CORE_ID 0
|
|||
|
|||
#endif /* __CAVS_CPU_H__ */
|