blob: 56594d48e894c28d7737160cc18af4011e78ab3a [file] [log] [blame]
Kiran Kandi5e809b02012-01-31 00:24:33 -08001/* Copyright (c) 2010-2012, Code Aurora Forum. 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,
30 int topology);
31
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
40int adm_matrix_map(int session_id, int path, int num_copps,
41 unsigned int *port_id, int copp_id);
42
Santosh Mardi23321202012-03-22 04:33:25 +053043int adm_connect_afe_port(int mode, int session_id, int port_id);
Santosh Mardid1760792012-06-12 16:23:19 +053044int adm_disconnect_afe_port(int mode, int session_id, int port_id);
Santosh Mardi23321202012-03-22 04:33:25 +053045
Ben Romberger45b351c2011-07-20 22:37:27 -070046#ifdef CONFIG_RTAC
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070047int adm_get_copp_id(int port_id);
48#endif
49
50#endif /* __Q6_ADM_H__ */