blob: b819725ffb7da4137c11626db1b371e1554d2e53 [file] [log] [blame]
Duy Truong790f06d2013-02-13 16:38:12 -08001/* Copyright (c) 2010-2012, The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -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_H__
13#define __Q6_ADM_H__
14#include <sound/q6afe.h>
15
16#define ADM_PATH_PLAYBACK 0x1
17#define ADM_PATH_LIVE_REC 0x2
18#define ADM_PATH_NONLIVE_REC 0x3
19
20/* multiple copp per stream. */
21struct route_payload {
22 unsigned int copp_ids[AFE_MAX_PORTS];
23 unsigned short num_copps;
24 unsigned int session_id;
25};
26
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070027int adm_open(int port, int path, int rate, int mode, int topology);
28
Kiran Kandi5e809b02012-01-31 00:24:33 -080029int adm_multi_ch_copp_open(int port, int path, int rate, int mode,
Jayasena Sangaraboina99bf09c2012-07-17 12:03:08 -070030 int topology, int perfmode);
Kiran Kandi5e809b02012-01-31 00:24:33 -080031
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070032int adm_memory_map_regions(uint32_t *buf_add, uint32_t mempool_id,
33 uint32_t *bufsz, uint32_t bufcnt);
34
35int adm_memory_unmap_regions(uint32_t *buf_add, uint32_t *bufsz,
36 uint32_t bufcnt);
37
38int adm_close(int port);
39
Aviral Gupta4ad0f502012-10-16 12:40:07 +053040int adm_pseudo_close(int port);
41
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070042int adm_matrix_map(int session_id, int path, int num_copps,
43 unsigned int *port_id, int copp_id);
44
Santosh Mardi23321202012-03-22 04:33:25 +053045int adm_connect_afe_port(int mode, int session_id, int port_id);
Santosh Mardid1760792012-06-12 16:23:19 +053046int adm_disconnect_afe_port(int mode, int session_id, int port_id);
Santosh Mardi23321202012-03-22 04:33:25 +053047
Jayasena Sangaraboinaf4ab0df2012-06-06 22:38:40 -070048void adm_ec_ref_rx_id(int port_id);
49
Aviral Gupta4ad0f502012-10-16 12:40:07 +053050int adm_connect_afe_port_v2(int mode, int session_id, int port_id,
51 int sample_rate, int channels);
52
53int adm_multi_ch_copp_pseudo_open_v3(int port_id, int path, int rate,
54 int channel_mode, int topology);
55
Ben Romberger45b351c2011-07-20 22:37:27 -070056#ifdef CONFIG_RTAC
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070057int adm_get_copp_id(int port_id);
58#endif
59
60#endif /* __Q6_ADM_H__ */