mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2025-08-04 15:30:24 +00:00
17 lines
338 B
C
17 lines
338 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef __ADSP_SEMAPHORE_H
|
|
#define __ADSP_SEMAPHORE_H
|
|
|
|
int get_adsp_semaphore(unsigned int flags);
|
|
int release_adsp_semaphore(unsigned int flags);
|
|
|
|
int adsp_semaphore_init(unsigned int way_bits,
|
|
unsigned int ctrl_bit,
|
|
unsigned int timeout);
|
|
|
|
#endif
|