2 * Intel SST Haswell/Broadwell IPC Support
4 * Copyright (C) 2013, Intel Corporation. All rights reserved.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
17 #ifndef __SST_HASWELL_IPC_H
18 #define __SST_HASWELL_IPC_H
20 #include <linux/types.h>
21 #include <linux/kernel.h>
22 #include <linux/platform_device.h>
24 #define SST_HSW_NO_CHANNELS 4
25 #define SST_HSW_MAX_DX_REGIONS 14
26 #define SST_HSW_DX_CONTEXT_SIZE (640 * 1024)
27 #define SST_HSW_CHANNELS_ALL 0xffffffff
29 #define SST_HSW_FW_LOG_CONFIG_DWORDS 12
30 #define SST_HSW_GLOBAL_LOG 15
33 * Upfront defined maximum message size that is
34 * expected by the in/out communication pipes in FW.
36 #define SST_HSW_IPC_MAX_PAYLOAD_SIZE 400
37 #define SST_HSW_MAX_INFO_SIZE 64
38 #define SST_HSW_BUILD_HASH_LENGTH 40
41 struct sst_hsw_stream
;
42 struct sst_hsw_log_stream
;
45 struct sst_module_runtime
;
46 extern struct sst_ops haswell_ops
;
48 /* Stream Allocate Path ID */
49 enum sst_hsw_stream_path_id
{
50 SST_HSW_STREAM_PATH_SSP0_OUT
= 0,
51 SST_HSW_STREAM_PATH_SSP0_IN
= 1,
52 SST_HSW_STREAM_PATH_MAX_PATH_ID
= 2,
55 /* Stream Allocate Stream Type */
56 enum sst_hsw_stream_type
{
57 SST_HSW_STREAM_TYPE_RENDER
= 0,
58 SST_HSW_STREAM_TYPE_SYSTEM
= 1,
59 SST_HSW_STREAM_TYPE_CAPTURE
= 2,
60 SST_HSW_STREAM_TYPE_LOOPBACK
= 3,
61 SST_HSW_STREAM_TYPE_MAX_STREAM_TYPE
= 4,
64 /* Stream Allocate Stream Format */
65 enum sst_hsw_stream_format
{
66 SST_HSW_STREAM_FORMAT_PCM_FORMAT
= 0,
67 SST_HSW_STREAM_FORMAT_MP3_FORMAT
= 1,
68 SST_HSW_STREAM_FORMAT_AAC_FORMAT
= 2,
69 SST_HSW_STREAM_FORMAT_MAX_FORMAT_ID
= 3,
73 enum sst_hsw_device_id
{
74 SST_HSW_DEVICE_SSP_0
= 0,
75 SST_HSW_DEVICE_SSP_1
= 1,
78 /* Device Master Clock Frequency */
79 enum sst_hsw_device_mclk
{
80 SST_HSW_DEVICE_MCLK_OFF
= 0,
81 SST_HSW_DEVICE_MCLK_FREQ_6_MHZ
= 1,
82 SST_HSW_DEVICE_MCLK_FREQ_12_MHZ
= 2,
83 SST_HSW_DEVICE_MCLK_FREQ_24_MHZ
= 3,
86 /* Device Clock Master */
87 enum sst_hsw_device_mode
{
88 SST_HSW_DEVICE_CLOCK_SLAVE
= 0,
89 SST_HSW_DEVICE_CLOCK_MASTER
= 1,
90 SST_HSW_DEVICE_TDM_CLOCK_MASTER
= 2,
94 enum sst_hsw_dx_state
{
95 SST_HSW_DX_STATE_D0
= 0,
96 SST_HSW_DX_STATE_D1
= 1,
97 SST_HSW_DX_STATE_D3
= 3,
98 SST_HSW_DX_STATE_MAX
= 3,
101 /* Audio stream stage IDs */
102 enum sst_hsw_fx_stage_id
{
103 SST_HSW_STAGE_ID_WAVES
= 0,
104 SST_HSW_STAGE_ID_DTS
= 1,
105 SST_HSW_STAGE_ID_DOLBY
= 2,
106 SST_HSW_STAGE_ID_BOOST
= 3,
107 SST_HSW_STAGE_ID_MAX_FX_ID
111 enum sst_hsw_dx_type
{
112 SST_HSW_DX_TYPE_FW_IMAGE
= 0,
113 SST_HSW_DX_TYPE_MEMORY_DUMP
= 1
116 /* Volume Curve Type*/
117 enum sst_hsw_volume_curve
{
118 SST_HSW_VOLUME_CURVE_NONE
= 0,
119 SST_HSW_VOLUME_CURVE_FADE
= 1
122 /* Sample ordering */
123 enum sst_hsw_interleaving
{
124 SST_HSW_INTERLEAVING_PER_CHANNEL
= 0,
125 SST_HSW_INTERLEAVING_PER_SAMPLE
= 1,
128 /* Channel indices */
129 enum sst_hsw_channel_index
{
130 SST_HSW_CHANNEL_LEFT
= 0,
131 SST_HSW_CHANNEL_CENTER
= 1,
132 SST_HSW_CHANNEL_RIGHT
= 2,
133 SST_HSW_CHANNEL_LEFT_SURROUND
= 3,
134 SST_HSW_CHANNEL_CENTER_SURROUND
= 3,
135 SST_HSW_CHANNEL_RIGHT_SURROUND
= 4,
136 SST_HSW_CHANNEL_LFE
= 7,
137 SST_HSW_CHANNEL_INVALID
= 0xF,
140 /* List of supported channel maps. */
141 enum sst_hsw_channel_config
{
142 SST_HSW_CHANNEL_CONFIG_MONO
= 0, /* mono only. */
143 SST_HSW_CHANNEL_CONFIG_STEREO
= 1, /* L & R. */
144 SST_HSW_CHANNEL_CONFIG_2_POINT_1
= 2, /* L, R & LFE; PCM only. */
145 SST_HSW_CHANNEL_CONFIG_3_POINT_0
= 3, /* L, C & R; MP3 & AAC only. */
146 SST_HSW_CHANNEL_CONFIG_3_POINT_1
= 4, /* L, C, R & LFE; PCM only. */
147 SST_HSW_CHANNEL_CONFIG_QUATRO
= 5, /* L, R, Ls & Rs; PCM only. */
148 SST_HSW_CHANNEL_CONFIG_4_POINT_0
= 6, /* L, C, R & Cs; MP3 & AAC only. */
149 SST_HSW_CHANNEL_CONFIG_5_POINT_0
= 7, /* L, C, R, Ls & Rs. */
150 SST_HSW_CHANNEL_CONFIG_5_POINT_1
= 8, /* L, C, R, Ls, Rs & LFE. */
151 SST_HSW_CHANNEL_CONFIG_DUAL_MONO
= 9, /* One channel replicated in two. */
152 SST_HSW_CHANNEL_CONFIG_INVALID
,
155 /* List of supported bit depths. */
156 enum sst_hsw_bitdepth
{
157 SST_HSW_DEPTH_8BIT
= 8,
158 SST_HSW_DEPTH_16BIT
= 16,
159 SST_HSW_DEPTH_24BIT
= 24, /* Default. */
160 SST_HSW_DEPTH_32BIT
= 32,
161 SST_HSW_DEPTH_INVALID
= 33,
164 enum sst_hsw_module_id
{
165 SST_HSW_MODULE_BASE_FW
= 0x0,
166 SST_HSW_MODULE_MP3
= 0x1,
167 SST_HSW_MODULE_AAC_5_1
= 0x2,
168 SST_HSW_MODULE_AAC_2_0
= 0x3,
169 SST_HSW_MODULE_SRC
= 0x4,
170 SST_HSW_MODULE_WAVES
= 0x5,
171 SST_HSW_MODULE_DOLBY
= 0x6,
172 SST_HSW_MODULE_BOOST
= 0x7,
173 SST_HSW_MODULE_LPAL
= 0x8,
174 SST_HSW_MODULE_DTS
= 0x9,
175 SST_HSW_MODULE_PCM_CAPTURE
= 0xA,
176 SST_HSW_MODULE_PCM_SYSTEM
= 0xB,
177 SST_HSW_MODULE_PCM_REFERENCE
= 0xC,
178 SST_HSW_MODULE_PCM
= 0xD,
179 SST_HSW_MODULE_BLUETOOTH_RENDER_MODULE
= 0xE,
180 SST_HSW_MODULE_BLUETOOTH_CAPTURE_MODULE
= 0xF,
181 SST_HSW_MAX_MODULE_ID
,
184 enum sst_hsw_performance_action
{
185 SST_HSW_PERF_START
= 0,
186 SST_HSW_PERF_STOP
= 1,
189 /* SST firmware module info */
190 struct sst_hsw_module_info
{
191 u8 name
[SST_HSW_MAX_INFO_SIZE
];
192 u8 version
[SST_HSW_MAX_INFO_SIZE
];
193 } __attribute__((packed
));
195 /* Module entry point */
196 struct sst_hsw_module_entry
{
197 enum sst_hsw_module_id module_id
;
199 } __attribute__((packed
));
201 /* Module map - alignement matches DSP */
202 struct sst_hsw_module_map
{
203 u8 module_entries_count
;
204 struct sst_hsw_module_entry module_entries
[1];
205 } __attribute__((packed
));
207 struct sst_hsw_memory_info
{
210 } __attribute__((packed
));
212 struct sst_hsw_fx_enable
{
213 struct sst_hsw_module_map module_map
;
214 struct sst_hsw_memory_info persistent_mem
;
215 } __attribute__((packed
));
217 struct sst_hsw_get_fx_param
{
220 } __attribute__((packed
));
222 struct sst_hsw_perf_action
{
224 } __attribute__((packed
));
226 struct sst_hsw_perf_data
{
230 } __attribute__((packed
));
233 struct sst_hsw_ipc_fw_version
{
238 u8 fw_build_hash
[SST_HSW_BUILD_HASH_LENGTH
];
239 u32 fw_log_providers_hash
;
240 } __attribute__((packed
));
242 /* Stream ring info */
243 struct sst_hsw_ipc_stream_ring
{
249 } __attribute__((packed
));
251 /* Debug Dump Log Enable Request */
252 struct sst_hsw_ipc_debug_log_enable_req
{
253 struct sst_hsw_ipc_stream_ring ringinfo
;
254 u32 config
[SST_HSW_FW_LOG_CONFIG_DWORDS
];
255 } __attribute__((packed
));
257 /* Debug Dump Log Reply */
258 struct sst_hsw_ipc_debug_log_reply
{
259 u32 log_buffer_begining
;
261 } __attribute__((packed
));
263 /* Stream glitch position */
264 struct sst_hsw_ipc_stream_glitch_position
{
268 } __attribute__((packed
));
270 /* Stream get position */
271 struct sst_hsw_ipc_stream_get_position
{
274 } __attribute__((packed
));
276 /* Stream set position */
277 struct sst_hsw_ipc_stream_set_position
{
280 } __attribute__((packed
));
282 /* Stream Free Request */
283 struct sst_hsw_ipc_stream_free_req
{
286 } __attribute__((packed
));
288 /* Set Volume Request */
289 struct sst_hsw_ipc_volume_req
{
294 } __attribute__((packed
));
296 /* Device Configuration Request */
297 struct sst_hsw_ipc_device_config_req
{
304 } __attribute__((packed
));
306 /* Audio Data formats */
307 struct sst_hsw_audio_data_format_ipc
{
316 } __attribute__((packed
));
318 /* Stream Allocate Request */
319 struct sst_hsw_ipc_stream_alloc_req
{
324 struct sst_hsw_audio_data_format_ipc format
;
325 struct sst_hsw_ipc_stream_ring ringinfo
;
326 struct sst_hsw_module_map map
;
327 struct sst_hsw_memory_info persistent_mem
;
328 struct sst_hsw_memory_info scratch_mem
;
329 u32 number_of_notifications
;
330 } __attribute__((packed
));
332 /* Stream Allocate Reply */
333 struct sst_hsw_ipc_stream_alloc_reply
{
335 u32 mixer_hw_id
; // returns rate ????
336 u32 read_position_register_address
;
337 u32 presentation_position_register_address
;
338 u32 peak_meter_register_address
[SST_HSW_NO_CHANNELS
];
339 u32 volume_register_address
[SST_HSW_NO_CHANNELS
];
340 } __attribute__((packed
));
342 /* Get Mixer Stream Info */
343 struct sst_hsw_ipc_stream_info_reply
{
345 u32 peak_meter_register_address
[SST_HSW_NO_CHANNELS
];
346 u32 volume_register_address
[SST_HSW_NO_CHANNELS
];
347 } __attribute__((packed
));
349 /* DX State Request */
350 struct sst_hsw_ipc_dx_req
{
353 } __attribute__((packed
));
355 /* DX State Reply Memory Info Item */
356 struct sst_hsw_ipc_dx_memory_item
{
360 } __attribute__((packed
));
363 struct sst_hsw_ipc_dx_reply
{
365 struct sst_hsw_ipc_dx_memory_item mem_info
[SST_HSW_MAX_DX_REGIONS
];
366 } __attribute__((packed
));
368 struct sst_hsw_ipc_fw_version
;
370 /* SST Init & Free */
371 struct sst_hsw
*sst_hsw_new(struct device
*dev
, const u8
*fw
, size_t fw_length
,
373 void sst_hsw_free(struct sst_hsw
*hsw
);
374 int sst_hsw_fw_get_version(struct sst_hsw
*hsw
,
375 struct sst_hsw_ipc_fw_version
*version
);
376 u32
create_channel_map(enum sst_hsw_channel_config config
);
378 /* Stream Mixer Controls - */
379 int sst_hsw_stream_mute(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
,
380 u32 stage_id
, u32 channel
);
381 int sst_hsw_stream_unmute(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
,
382 u32 stage_id
, u32 channel
);
384 int sst_hsw_stream_set_volume(struct sst_hsw
*hsw
,
385 struct sst_hsw_stream
*stream
, u32 stage_id
, u32 channel
, u32 volume
);
386 int sst_hsw_stream_get_volume(struct sst_hsw
*hsw
,
387 struct sst_hsw_stream
*stream
, u32 stage_id
, u32 channel
, u32
*volume
);
389 int sst_hsw_stream_set_volume_curve(struct sst_hsw
*hsw
,
390 struct sst_hsw_stream
*stream
, u64 curve_duration
,
391 enum sst_hsw_volume_curve curve
);
393 /* Global Mixer Controls - */
394 int sst_hsw_mixer_mute(struct sst_hsw
*hsw
, u32 stage_id
, u32 channel
);
395 int sst_hsw_mixer_unmute(struct sst_hsw
*hsw
, u32 stage_id
, u32 channel
);
397 int sst_hsw_mixer_set_volume(struct sst_hsw
*hsw
, u32 stage_id
, u32 channel
,
399 int sst_hsw_mixer_get_volume(struct sst_hsw
*hsw
, u32 stage_id
, u32 channel
,
402 int sst_hsw_mixer_set_volume_curve(struct sst_hsw
*hsw
,
403 u64 curve_duration
, enum sst_hsw_volume_curve curve
);
406 struct sst_hsw_stream
*sst_hsw_stream_new(struct sst_hsw
*hsw
, int id
,
407 u32 (*get_write_position
)(struct sst_hsw_stream
*stream
, void *data
),
410 int sst_hsw_stream_free(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
);
412 /* Stream Configuration */
413 int sst_hsw_stream_format(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
,
414 enum sst_hsw_stream_path_id path_id
,
415 enum sst_hsw_stream_type stream_type
,
416 enum sst_hsw_stream_format format_id
);
418 int sst_hsw_stream_buffer(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
,
419 u32 ring_pt_address
, u32 num_pages
,
420 u32 ring_size
, u32 ring_offset
, u32 ring_first_pfn
);
422 int sst_hsw_stream_commit(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
);
424 int sst_hsw_stream_set_valid(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
,
426 int sst_hsw_stream_set_rate(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
,
428 int sst_hsw_stream_set_bits(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
,
429 enum sst_hsw_bitdepth bits
);
430 int sst_hsw_stream_set_channels(struct sst_hsw
*hsw
,
431 struct sst_hsw_stream
*stream
, int channels
);
432 int sst_hsw_stream_set_map_config(struct sst_hsw
*hsw
,
433 struct sst_hsw_stream
*stream
, u32 map
,
434 enum sst_hsw_channel_config config
);
435 int sst_hsw_stream_set_style(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
,
436 enum sst_hsw_interleaving style
);
437 int sst_hsw_stream_set_module_info(struct sst_hsw
*hsw
,
438 struct sst_hsw_stream
*stream
, struct sst_module_runtime
*runtime
);
439 int sst_hsw_stream_set_pmemory_info(struct sst_hsw
*hsw
,
440 struct sst_hsw_stream
*stream
, u32 offset
, u32 size
);
441 int sst_hsw_stream_set_smemory_info(struct sst_hsw
*hsw
,
442 struct sst_hsw_stream
*stream
, u32 offset
, u32 size
);
443 int sst_hsw_stream_get_hw_id(struct sst_hsw
*hsw
,
444 struct sst_hsw_stream
*stream
);
445 int sst_hsw_stream_get_mixer_id(struct sst_hsw
*hsw
,
446 struct sst_hsw_stream
*stream
);
447 u32
sst_hsw_stream_get_read_reg(struct sst_hsw
*hsw
,
448 struct sst_hsw_stream
*stream
);
449 u32
sst_hsw_stream_get_pointer_reg(struct sst_hsw
*hsw
,
450 struct sst_hsw_stream
*stream
);
451 u32
sst_hsw_stream_get_peak_reg(struct sst_hsw
*hsw
,
452 struct sst_hsw_stream
*stream
, u32 channel
);
453 u32
sst_hsw_stream_get_vol_reg(struct sst_hsw
*hsw
,
454 struct sst_hsw_stream
*stream
, u32 channel
);
455 int sst_hsw_mixer_get_info(struct sst_hsw
*hsw
);
457 /* Stream ALSA trigger operations */
458 int sst_hsw_stream_pause(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
,
460 int sst_hsw_stream_resume(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
,
462 int sst_hsw_stream_reset(struct sst_hsw
*hsw
, struct sst_hsw_stream
*stream
);
464 /* Stream pointer positions */
465 int sst_hsw_stream_get_read_pos(struct sst_hsw
*hsw
,
466 struct sst_hsw_stream
*stream
, u32
*position
);
467 int sst_hsw_stream_get_write_pos(struct sst_hsw
*hsw
,
468 struct sst_hsw_stream
*stream
, u32
*position
);
469 int sst_hsw_stream_set_write_position(struct sst_hsw
*hsw
,
470 struct sst_hsw_stream
*stream
, u32 stage_id
, u32 position
);
471 u32
sst_hsw_get_dsp_position(struct sst_hsw
*hsw
,
472 struct sst_hsw_stream
*stream
);
473 u64
sst_hsw_get_dsp_presentation_position(struct sst_hsw
*hsw
,
474 struct sst_hsw_stream
*stream
);
477 int sst_hsw_device_set_config(struct sst_hsw
*hsw
,
478 enum sst_hsw_device_id dev
, enum sst_hsw_device_mclk mclk
,
479 enum sst_hsw_device_mode mode
, u32 clock_divider
);
482 int sst_hsw_dx_set_state(struct sst_hsw
*hsw
,
483 enum sst_hsw_dx_state state
, struct sst_hsw_ipc_dx_reply
*dx
);
484 int sst_hsw_dx_get_state(struct sst_hsw
*hsw
, u32 item
,
485 u32
*offset
, u32
*size
, u32
*source
);
488 int sst_hsw_dsp_init(struct device
*dev
, struct sst_pdata
*pdata
);
489 void sst_hsw_dsp_free(struct device
*dev
, struct sst_pdata
*pdata
);
490 struct sst_dsp
*sst_hsw_get_dsp(struct sst_hsw
*hsw
);
492 /* runtime module management */
493 struct sst_module_runtime
*sst_hsw_runtime_module_create(struct sst_hsw
*hsw
,
494 int mod_id
, int offset
);
495 void sst_hsw_runtime_module_free(struct sst_module_runtime
*runtime
);
498 int sst_hsw_dsp_runtime_resume(struct sst_hsw
*hsw
);
499 int sst_hsw_dsp_runtime_suspend(struct sst_hsw
*hsw
);
500 int sst_hsw_dsp_load(struct sst_hsw
*hsw
);
501 int sst_hsw_dsp_runtime_sleep(struct sst_hsw
*hsw
);