blob: 22bdaa23ad39fd8585858e54952e94616ce0282b [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001#ifndef QDSP5AUDRECMSGI_H
2#define QDSP5AUDRECMSGI_H
3
4/*====*====*====*====*====*====*====*====*====*====*====*====*====*====*====*
5 *
6 * A U D I O R E C O R D M E S S A G E S
7 *
8 * GENERAL DESCRIPTION
9 * This file contains defintions of format blocks of messages
10 * that are sent by AUDREC Task
11 *
12 * REFERENCES
13 * None
14 *
15 * EXTERNALIZED FUNCTIONS
16 * None
17 *
Duy Truong790f06d2013-02-13 16:38:12 -080018 * Copyright (c) 1992-2009, 2011 The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070019 *
20 * This software is licensed under the terms of the GNU General Public
21 * License version 2, as published by the Free Software Foundation, and
22 * may be copied, distributed, and modified under those terms.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 *====*====*====*====*====*====*====*====*====*====*====*====*====*====*====*/
30
31/*===========================================================================
32
33 EDIT HISTORY FOR FILE
34
35This section contains comments describing changes made to this file.
36Notice that changes are listed in reverse chronological order.
37
38 $Header: //source/qcom/qct/multimedia2/Audio/drivers/QDSP5Driver/QDSP5Interface/main/latest/qdsp5audrecmsg.h#3 $
39
40============================================================================*/
41
42/*
43 * AUDRECTASK MESSAGES
44 * AUDRECTASK uses audRecUpRlist to communicate with ARM
45 * Location : MEMC
46 * Buffer size : 4
47 * No of buffers in a queue : 2
48 */
49
50/*
51 * Message to notify that config command is done
52 */
53
54#define AUDREC_MSG_CMD_CFG_DONE_MSG 0x0002
55#define AUDREC_MSG_CMD_CFG_DONE_MSG_LEN \
56 sizeof(struct audrec_msg_cmd_cfg_done_msg)
57
58
59#define AUDREC_MSG_CFG_DONE_TYPE_0_ENA 0x4000
60#define AUDREC_MSG_CFG_DONE_TYPE_0_DIS 0x0000
61
62#define AUDREC_MSG_CFG_DONE_TYPE_0_NO_UPDATE 0x0000
63#define AUDREC_MSG_CFG_DONE_TYPE_0_UPDATE 0x8000
64
65#define AUDREC_MSG_CFG_DONE_TYPE_1_ENA 0x4000
66#define AUDREC_MSG_CFG_DONE_TYPE_1_DIS 0x0000
67
68#define AUDREC_MSG_CFG_DONE_TYPE_1_NO_UPDATE 0x0000
69#define AUDREC_MSG_CFG_DONE_TYPE_1_UPDATE 0x8000
70
71#define AUDREC_MSG_CFG_DONE_ENC_ENA 0x8000
72#define AUDREC_MSG_CFG_DONE_ENC_DIS 0x0000
73
74struct audrec_msg_cmd_cfg_done_msg {
75 unsigned short audrec_enc_type;
76 unsigned short audrec_obj_idx;
77} __attribute__((packed));
78
79/*
80 * Message to notify arec0/1 or concurrent encoder cfg done
81 * and recording params recieved by task
82 */
83
84#define AUDREC_MSG_CMD_AREC_PARAM_CFG_DONE_MSG 0x0003
85#define AUDREC_MSG_CMD_AREC_PARAM_CFG_DONE_MSG_LEN \
86 sizeof(struct audrec_msg_cmd_arec_param_cfg_done_msg)
87
88
89#define AUDREC_MSG_AREC_PARAM_TYPE_0 0x0000
90#define AUDREC_MSG_AREC_PARAM_TYPE_1 0x0001
91
92struct audrec_msg_cmd_arec_param_cfg_done_msg {
93 unsigned short audrec_obj_idx;
94} __attribute__((packed));
95
96/*
97 * Message to notify no more buffers are available in ext mem to DME
98 * Or no concurrent encoder supported
99 */
100/* for 7x27 */
101#define AUDREC_MSG_FATAL_ERR_MSG 0x0004
102#define AUDREC_MSG_FATAL_ERR_MSG_LEN \
103 sizeof(struct audrec_msg_fatal_err_msg)
104
105
106#define AUDREC_MSG_FATAL_ERR_TYPE_0 0x0000
107#define AUDREC_MSG_FATAL_ERR_TYPE_1 0x0001
108
109struct audrec_msg_fatal_err_msg {
110 unsigned short audrec_obj_idx;
111 unsigned short audrec_err_id;
112} __attribute__((packed));
113
114/* for 7x27A */
115#define AUDREC_MSG_NO_EXT_PKT_AVAILABLE_MSG 0x0004
116#define AUDREC_MSG_NO_EXT_PKT_AVAILABLE_MSG_LEN \
117 sizeof(struct audrec_msg_no_ext_pkt_avail_msg)
118
119#define AUDREC_MSG_NO_EXT_PKT_AVAILABLE_TYPE_0 0x0000
120#define AUDREC_MSG_NO_EXT_PKT_AVAILABLE_TYPE_1 0x0001
121
122struct audrec_msg_no_ext_pkt_avail_msg {
123 unsigned short audrec_obj_idx;
124 unsigned short audrec_err_id;
125} __packed;
126
127/*
128 * Message to notify DME deliverd the encoded pkt to ext pkt buffer
129 */
130
131#define AUDREC_MSG_PACKET_READY_MSG 0x0005
132#define AUDREC_MSG_PACKET_READY_MSG_LEN \
133 sizeof(struct audrec_msg_packet_ready_msg)
134
135
136#define AUDREC_MSG_PACKET_READY_TYPE_0 0x0000
137#define AUDREC_MSG_PACKET_READY_TYPE_1 0x0001
138
139struct audrec_msg_packet_ready_msg {
140 unsigned short audrec_obj_idx;
141 unsigned short pkt_counter_msw;
142 unsigned short pkt_counter_lsw;
143 unsigned short pkt_read_cnt_msw;
144 unsigned short pkt_read_cnt_lsw;
145} __attribute__((packed));
146
147/*
148 * Message to notify external memory cfg done and recieved by task
149 */
150
151#define AUDREC_MSG_CMD_AREC_MEM_CFG_DONE_MSG 0x0006
152#define AUDREC_MSG_CMD_AREC_MEM_CFG_DONE_MSG_LEN \
153 sizeof(struct audrec_msg_cmd_arec_mem_cfg_done_msg)
154
155
156struct audrec_msg_cmd_arec_mem_cfg_done_msg {
157 unsigned short audrec_obj_idx;
158} __attribute__((packed));
159
160/*
161 * Message to indicate Routing mode
162 * configuration success or failure
163 */
164
165#define AUDREC_MSG_CMD_ROUTING_MODE_DONE_MSG 0x0007
166#define AUDREC_MSG_CMD_ROUTING_MODE_DONE_MSG_LEN \
167 sizeof(struct audrec_msg_cmd_routing_mode_done_msg)
168
169struct audrec_msg_cmd_routing_mode_done_msg {
170 unsigned short configuration;
171} __packed;
172
173/*
174 * Message to indicate pcm buffer configured
175 */
176
177#define AUDREC_CMD_PCM_CFG_ARM_TO_ENC_DONE_MSG 0x0008
178#define AUDREC_CMD_PCM_CFG_ARM_TO_ENC_DONE_MSG_LEN \
179 sizeof(struct audrec_cmd_pcm_cfg_arm_to_enc_msg)
180
181struct audrec_cmd_pcm_cfg_arm_to_enc_msg {
182 unsigned short configuration;
183} __packed;
184
185/*
186 * Message to indicate encoded packet is delivered to external buffer in FTRT
187 */
188
189#define AUDREC_UP_NT_PACKET_READY_MSG 0x0009
190#define AUDREC_UP_NT_PACKET_READY_MSG_LEN \
191 sizeof(struct audrec_up_nt_packet_ready_msg)
192
193struct audrec_up_nt_packet_ready_msg {
194 unsigned short audrec_packetwrite_cnt_lsw;
195 unsigned short audrec_packetwrite_cnt_msw;
196 unsigned short audrec_upprev_readcount_lsw;
197 unsigned short audrec_upprev_readcount_msw;
198} __packed;
199
200/*
201 * Message to indicate pcm buffer is consumed
202 */
203
204#define AUDREC_CMD_PCM_BUFFER_PTR_UPDATE_ARM_TO_ENC_MSG 0x000A
205#define AUDREC_CMD_PCM_BUFFER_PTR_UPDATE_ARM_TO_ENC_MSG_LEN \
206 sizeof(struct audrec_cmd_pcm_buffer_ptr_update_arm_to_enc_msg)
207
208struct audrec_cmd_pcm_buffer_ptr_update_arm_to_enc_msg {
209 unsigned short buffer_readcnt_msw;
210 unsigned short buffer_readcnt_lsw;
211 unsigned short number_of_buffers;
212 unsigned short buffer_address_length[];
213} __packed;
214
215/*
216 * Message to indicate flush acknowledgement
217 */
218
219#define AUDREC_CMD_FLUSH_DONE_MSG 0x000B
220
221#define ADSP_MESSAGE_ID 0xFFFF
222
223#endif