1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-07-03 17:37:33 +00:00
Files
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

25 lines
547 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* mtk-mmap-ion.h -- Mediatek Smart Phone PCM Operation
*
* Copyright (c) 2017 MediaTek Inc.
* Author: Chih-Hao Chang <chih-hao.chang@mediatek.com>
*/
#ifndef _MTK_MMAP_ION_H_
#define _MTK_MMAP_ION_H_
#define MMAP_BUFFER_SIZE (24*1024)
int mtk_get_mmap_dl_fd(void);
int mtk_get_mmap_ul_fd(void);
void mtk_get_mmap_dl_buffer(unsigned long *phy_addr, void **vir_addr);
void mtk_get_mmap_ul_buffer(unsigned long *phy_addr, void **vir_addr);
int mtk_exporter_init(struct device *dev);
#endif