13 lines
225 B
C
13 lines
225 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef TOPO_CTRL_H
|
|
#define TOPO_CTRL_H
|
|
|
|
extern int topo_ctrl_get_nr_clusters(void);
|
|
extern int topo_ctrl_get_cluster_cpu_id(int id);
|
|
#endif
|
|
|