blob: a800f9ac87a386d6eb2580ee1a1c30acf3f583f3 [file] [log] [blame]
Duy Truonge833aca2013-02-12 13:35:08 -08001/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
Bharath Ramachandramurthy2e3168f2012-05-03 16:29:09 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12#ifndef __Q6_ADM_V2_H__
13#define __Q6_ADM_V2_H__
14
15
16#define ADM_PATH_PLAYBACK 0x1
17#define ADM_PATH_LIVE_REC 0x2
18#define ADM_PATH_NONLIVE_REC 0x3
19#include <sound/q6audio-v2.h>
20
21#define Q6_AFE_MAX_PORTS 32
22
23/* multiple copp per stream. */
24struct route_payload {
25 unsigned int copp_ids[Q6_AFE_MAX_PORTS];
26 unsigned short num_copps;
27 unsigned int session_id;
28};
29
30int adm_open(int port, int path, int rate, int mode, int topology);
31
32int adm_multi_ch_copp_open(int port, int path, int rate, int mode,
33 int topology);
34
35int adm_memory_map_regions(int port_id, uint32_t *buf_add, uint32_t mempool_id,
36 uint32_t *bufsz, uint32_t bufcnt);
37
38int adm_memory_unmap_regions(int port_id, uint32_t *buf_add, uint32_t *bufsz,
39 uint32_t bufcnt);
40
41int adm_close(int port);
42
43int adm_matrix_map(int session_id, int path, int num_copps,
44 unsigned int *port_id, int copp_id);
45
46int adm_connect_afe_port(int mode, int session_id, int port_id);
47
48int adm_get_copp_id(int port_id);
49
50#endif /* __Q6_ADM_V2_H__ */