Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Intel SST Haswell/Broadwell IPC Support |
| 3 | * |
| 4 | * Copyright (C) 2013, Intel Corporation. All rights reserved. |
| 5 | * |
| 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. |
| 9 | * |
| 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. |
| 14 | * |
| 15 | */ |
| 16 | |
| 17 | #include <linux/types.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/list.h> |
| 20 | #include <linux/device.h> |
| 21 | #include <linux/wait.h> |
| 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/workqueue.h> |
| 24 | #include <linux/export.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/sched.h> |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 28 | #include <linux/platform_device.h> |
| 29 | #include <linux/kthread.h> |
| 30 | #include <linux/firmware.h> |
| 31 | #include <linux/dma-mapping.h> |
| 32 | #include <linux/debugfs.h> |
Liam Girdwood | aed3c7b | 2014-10-29 17:40:42 +0000 | [diff] [blame^] | 33 | #include <linux/pm_runtime.h> |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 34 | |
| 35 | #include "sst-haswell-ipc.h" |
| 36 | #include "sst-dsp.h" |
| 37 | #include "sst-dsp-priv.h" |
| 38 | |
| 39 | /* Global Message - Generic */ |
| 40 | #define IPC_GLB_TYPE_SHIFT 24 |
| 41 | #define IPC_GLB_TYPE_MASK (0x1f << IPC_GLB_TYPE_SHIFT) |
| 42 | #define IPC_GLB_TYPE(x) (x << IPC_GLB_TYPE_SHIFT) |
| 43 | |
| 44 | /* Global Message - Reply */ |
| 45 | #define IPC_GLB_REPLY_SHIFT 0 |
| 46 | #define IPC_GLB_REPLY_MASK (0x1f << IPC_GLB_REPLY_SHIFT) |
| 47 | #define IPC_GLB_REPLY_TYPE(x) (x << IPC_GLB_REPLY_TYPE_SHIFT) |
| 48 | |
| 49 | /* Stream Message - Generic */ |
| 50 | #define IPC_STR_TYPE_SHIFT 20 |
| 51 | #define IPC_STR_TYPE_MASK (0xf << IPC_STR_TYPE_SHIFT) |
| 52 | #define IPC_STR_TYPE(x) (x << IPC_STR_TYPE_SHIFT) |
| 53 | #define IPC_STR_ID_SHIFT 16 |
| 54 | #define IPC_STR_ID_MASK (0xf << IPC_STR_ID_SHIFT) |
| 55 | #define IPC_STR_ID(x) (x << IPC_STR_ID_SHIFT) |
| 56 | |
| 57 | /* Stream Message - Reply */ |
| 58 | #define IPC_STR_REPLY_SHIFT 0 |
| 59 | #define IPC_STR_REPLY_MASK (0x1f << IPC_STR_REPLY_SHIFT) |
| 60 | |
| 61 | /* Stream Stage Message - Generic */ |
| 62 | #define IPC_STG_TYPE_SHIFT 12 |
| 63 | #define IPC_STG_TYPE_MASK (0xf << IPC_STG_TYPE_SHIFT) |
| 64 | #define IPC_STG_TYPE(x) (x << IPC_STG_TYPE_SHIFT) |
| 65 | #define IPC_STG_ID_SHIFT 10 |
| 66 | #define IPC_STG_ID_MASK (0x3 << IPC_STG_ID_SHIFT) |
| 67 | #define IPC_STG_ID(x) (x << IPC_STG_ID_SHIFT) |
| 68 | |
| 69 | /* Stream Stage Message - Reply */ |
| 70 | #define IPC_STG_REPLY_SHIFT 0 |
| 71 | #define IPC_STG_REPLY_MASK (0x1f << IPC_STG_REPLY_SHIFT) |
| 72 | |
| 73 | /* Debug Log Message - Generic */ |
| 74 | #define IPC_LOG_OP_SHIFT 20 |
| 75 | #define IPC_LOG_OP_MASK (0xf << IPC_LOG_OP_SHIFT) |
| 76 | #define IPC_LOG_OP_TYPE(x) (x << IPC_LOG_OP_SHIFT) |
| 77 | #define IPC_LOG_ID_SHIFT 16 |
| 78 | #define IPC_LOG_ID_MASK (0xf << IPC_LOG_ID_SHIFT) |
| 79 | #define IPC_LOG_ID(x) (x << IPC_LOG_ID_SHIFT) |
| 80 | |
| 81 | /* IPC message timeout (msecs) */ |
| 82 | #define IPC_TIMEOUT_MSECS 300 |
| 83 | #define IPC_BOOT_MSECS 200 |
| 84 | #define IPC_MSG_WAIT 0 |
| 85 | #define IPC_MSG_NOWAIT 1 |
| 86 | |
| 87 | /* Firmware Ready Message */ |
| 88 | #define IPC_FW_READY (0x1 << 29) |
| 89 | #define IPC_STATUS_MASK (0x3 << 30) |
| 90 | |
| 91 | #define IPC_EMPTY_LIST_SIZE 8 |
| 92 | #define IPC_MAX_STREAMS 4 |
| 93 | |
| 94 | /* Mailbox */ |
| 95 | #define IPC_MAX_MAILBOX_BYTES 256 |
| 96 | |
| 97 | /* Global Message - Types and Replies */ |
| 98 | enum ipc_glb_type { |
| 99 | IPC_GLB_GET_FW_VERSION = 0, /* Retrieves firmware version */ |
| 100 | IPC_GLB_PERFORMANCE_MONITOR = 1, /* Performance monitoring actions */ |
| 101 | IPC_GLB_ALLOCATE_STREAM = 3, /* Request to allocate new stream */ |
| 102 | IPC_GLB_FREE_STREAM = 4, /* Request to free stream */ |
| 103 | IPC_GLB_GET_FW_CAPABILITIES = 5, /* Retrieves firmware capabilities */ |
| 104 | IPC_GLB_STREAM_MESSAGE = 6, /* Message directed to stream or its stages */ |
| 105 | /* Request to store firmware context during D0->D3 transition */ |
| 106 | IPC_GLB_REQUEST_DUMP = 7, |
| 107 | /* Request to restore firmware context during D3->D0 transition */ |
| 108 | IPC_GLB_RESTORE_CONTEXT = 8, |
| 109 | IPC_GLB_GET_DEVICE_FORMATS = 9, /* Set device format */ |
| 110 | IPC_GLB_SET_DEVICE_FORMATS = 10, /* Get device format */ |
| 111 | IPC_GLB_SHORT_REPLY = 11, |
| 112 | IPC_GLB_ENTER_DX_STATE = 12, |
| 113 | IPC_GLB_GET_MIXER_STREAM_INFO = 13, /* Request mixer stream params */ |
| 114 | IPC_GLB_DEBUG_LOG_MESSAGE = 14, /* Message to or from the debug logger. */ |
| 115 | IPC_GLB_REQUEST_TRANSFER = 16, /* < Request Transfer for host */ |
| 116 | IPC_GLB_MAX_IPC_MESSAGE_TYPE = 17, /* Maximum message number */ |
| 117 | }; |
| 118 | |
| 119 | enum ipc_glb_reply { |
| 120 | IPC_GLB_REPLY_SUCCESS = 0, /* The operation was successful. */ |
| 121 | IPC_GLB_REPLY_ERROR_INVALID_PARAM = 1, /* Invalid parameter was passed. */ |
| 122 | IPC_GLB_REPLY_UNKNOWN_MESSAGE_TYPE = 2, /* Uknown message type was resceived. */ |
| 123 | IPC_GLB_REPLY_OUT_OF_RESOURCES = 3, /* No resources to satisfy the request. */ |
| 124 | IPC_GLB_REPLY_BUSY = 4, /* The system or resource is busy. */ |
| 125 | IPC_GLB_REPLY_PENDING = 5, /* The action was scheduled for processing. */ |
| 126 | IPC_GLB_REPLY_FAILURE = 6, /* Critical error happened. */ |
| 127 | IPC_GLB_REPLY_INVALID_REQUEST = 7, /* Request can not be completed. */ |
| 128 | IPC_GLB_REPLY_STAGE_UNINITIALIZED = 8, /* Processing stage was uninitialized. */ |
| 129 | IPC_GLB_REPLY_NOT_FOUND = 9, /* Required resource can not be found. */ |
| 130 | IPC_GLB_REPLY_SOURCE_NOT_STARTED = 10, /* Source was not started. */ |
| 131 | }; |
| 132 | |
| 133 | /* Stream Message - Types */ |
| 134 | enum ipc_str_operation { |
| 135 | IPC_STR_RESET = 0, |
| 136 | IPC_STR_PAUSE = 1, |
| 137 | IPC_STR_RESUME = 2, |
| 138 | IPC_STR_STAGE_MESSAGE = 3, |
| 139 | IPC_STR_NOTIFICATION = 4, |
| 140 | IPC_STR_MAX_MESSAGE |
| 141 | }; |
| 142 | |
| 143 | /* Stream Stage Message Types */ |
| 144 | enum ipc_stg_operation { |
| 145 | IPC_STG_GET_VOLUME = 0, |
| 146 | IPC_STG_SET_VOLUME, |
| 147 | IPC_STG_SET_WRITE_POSITION, |
| 148 | IPC_STG_SET_FX_ENABLE, |
| 149 | IPC_STG_SET_FX_DISABLE, |
| 150 | IPC_STG_SET_FX_GET_PARAM, |
| 151 | IPC_STG_SET_FX_SET_PARAM, |
| 152 | IPC_STG_SET_FX_GET_INFO, |
| 153 | IPC_STG_MUTE_LOOPBACK, |
| 154 | IPC_STG_MAX_MESSAGE |
| 155 | }; |
| 156 | |
| 157 | /* Stream Stage Message Types For Notification*/ |
| 158 | enum ipc_stg_operation_notify { |
| 159 | IPC_POSITION_CHANGED = 0, |
| 160 | IPC_STG_GLITCH, |
| 161 | IPC_STG_MAX_NOTIFY |
| 162 | }; |
| 163 | |
| 164 | enum ipc_glitch_type { |
| 165 | IPC_GLITCH_UNDERRUN = 1, |
| 166 | IPC_GLITCH_DECODER_ERROR, |
| 167 | IPC_GLITCH_DOUBLED_WRITE_POS, |
| 168 | IPC_GLITCH_MAX |
| 169 | }; |
| 170 | |
| 171 | /* Debug Control */ |
| 172 | enum ipc_debug_operation { |
| 173 | IPC_DEBUG_ENABLE_LOG = 0, |
| 174 | IPC_DEBUG_DISABLE_LOG = 1, |
| 175 | IPC_DEBUG_REQUEST_LOG_DUMP = 2, |
| 176 | IPC_DEBUG_NOTIFY_LOG_DUMP = 3, |
| 177 | IPC_DEBUG_MAX_DEBUG_LOG |
| 178 | }; |
| 179 | |
| 180 | /* Firmware Ready */ |
| 181 | struct sst_hsw_ipc_fw_ready { |
| 182 | u32 inbox_offset; |
| 183 | u32 outbox_offset; |
| 184 | u32 inbox_size; |
| 185 | u32 outbox_size; |
| 186 | u32 fw_info_size; |
Jie Yang | 249addd | 2014-07-15 08:51:12 +0800 | [diff] [blame] | 187 | u8 fw_info[IPC_MAX_MAILBOX_BYTES - 5 * sizeof(u32)]; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 188 | } __attribute__((packed)); |
| 189 | |
| 190 | struct ipc_message { |
| 191 | struct list_head list; |
| 192 | u32 header; |
| 193 | |
| 194 | /* direction wrt host CPU */ |
| 195 | char tx_data[IPC_MAX_MAILBOX_BYTES]; |
| 196 | size_t tx_size; |
| 197 | char rx_data[IPC_MAX_MAILBOX_BYTES]; |
| 198 | size_t rx_size; |
| 199 | |
| 200 | wait_queue_head_t waitq; |
| 201 | bool pending; |
| 202 | bool complete; |
| 203 | bool wait; |
| 204 | int errno; |
| 205 | }; |
| 206 | |
| 207 | struct sst_hsw_stream; |
| 208 | struct sst_hsw; |
| 209 | |
| 210 | /* Stream infomation */ |
| 211 | struct sst_hsw_stream { |
| 212 | /* configuration */ |
| 213 | struct sst_hsw_ipc_stream_alloc_req request; |
| 214 | struct sst_hsw_ipc_stream_alloc_reply reply; |
| 215 | struct sst_hsw_ipc_stream_free_req free_req; |
| 216 | |
| 217 | /* Mixer info */ |
| 218 | u32 mute_volume[SST_HSW_NO_CHANNELS]; |
| 219 | u32 mute[SST_HSW_NO_CHANNELS]; |
| 220 | |
| 221 | /* runtime info */ |
| 222 | struct sst_hsw *hsw; |
| 223 | int host_id; |
| 224 | bool commited; |
| 225 | bool running; |
| 226 | |
| 227 | /* Notification work */ |
| 228 | struct work_struct notify_work; |
| 229 | u32 header; |
| 230 | |
| 231 | /* Position info from DSP */ |
| 232 | struct sst_hsw_ipc_stream_set_position wpos; |
| 233 | struct sst_hsw_ipc_stream_get_position rpos; |
| 234 | struct sst_hsw_ipc_stream_glitch_position glitch; |
| 235 | |
| 236 | /* Volume info */ |
| 237 | struct sst_hsw_ipc_volume_req vol_req; |
| 238 | |
| 239 | /* driver callback */ |
| 240 | u32 (*notify_position)(struct sst_hsw_stream *stream, void *data); |
| 241 | void *pdata; |
| 242 | |
| 243 | struct list_head node; |
| 244 | }; |
| 245 | |
| 246 | /* FW log ring information */ |
| 247 | struct sst_hsw_log_stream { |
| 248 | dma_addr_t dma_addr; |
| 249 | unsigned char *dma_area; |
| 250 | unsigned char *ring_descr; |
| 251 | int pages; |
| 252 | int size; |
| 253 | |
| 254 | /* Notification work */ |
| 255 | struct work_struct notify_work; |
| 256 | wait_queue_head_t readers_wait_q; |
| 257 | struct mutex rw_mutex; |
| 258 | |
| 259 | u32 last_pos; |
| 260 | u32 curr_pos; |
| 261 | u32 reader_pos; |
| 262 | |
| 263 | /* fw log config */ |
| 264 | u32 config[SST_HSW_FW_LOG_CONFIG_DWORDS]; |
| 265 | |
| 266 | struct sst_hsw *hsw; |
| 267 | }; |
| 268 | |
| 269 | /* SST Haswell IPC data */ |
| 270 | struct sst_hsw { |
| 271 | struct device *dev; |
| 272 | struct sst_dsp *dsp; |
| 273 | struct platform_device *pdev_pcm; |
| 274 | |
| 275 | /* FW config */ |
| 276 | struct sst_hsw_ipc_fw_ready fw_ready; |
| 277 | struct sst_hsw_ipc_fw_version version; |
| 278 | struct sst_module *scratch; |
| 279 | bool fw_done; |
Liam Girdwood | aed3c7b | 2014-10-29 17:40:42 +0000 | [diff] [blame^] | 280 | struct sst_fw *sst_fw; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 281 | |
| 282 | /* stream */ |
| 283 | struct list_head stream_list; |
| 284 | |
| 285 | /* global mixer */ |
| 286 | struct sst_hsw_ipc_stream_info_reply mixer_info; |
| 287 | enum sst_hsw_volume_curve curve_type; |
| 288 | u32 curve_duration; |
| 289 | u32 mute[SST_HSW_NO_CHANNELS]; |
| 290 | u32 mute_volume[SST_HSW_NO_CHANNELS]; |
| 291 | |
| 292 | /* DX */ |
| 293 | struct sst_hsw_ipc_dx_reply dx; |
Liam Girdwood | aed3c7b | 2014-10-29 17:40:42 +0000 | [diff] [blame^] | 294 | void *dx_context; |
| 295 | dma_addr_t dx_context_paddr; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 296 | |
| 297 | /* boot */ |
| 298 | wait_queue_head_t boot_wait; |
| 299 | bool boot_complete; |
| 300 | bool shutdown; |
| 301 | |
| 302 | /* IPC messaging */ |
| 303 | struct list_head tx_list; |
| 304 | struct list_head rx_list; |
| 305 | struct list_head empty_list; |
| 306 | wait_queue_head_t wait_txq; |
| 307 | struct task_struct *tx_thread; |
| 308 | struct kthread_worker kworker; |
| 309 | struct kthread_work kwork; |
| 310 | bool pending; |
| 311 | struct ipc_message *msg; |
| 312 | |
| 313 | /* FW log stream */ |
| 314 | struct sst_hsw_log_stream log_stream; |
| 315 | }; |
| 316 | |
| 317 | #define CREATE_TRACE_POINTS |
| 318 | #include <trace/events/hswadsp.h> |
| 319 | |
| 320 | static inline u32 msg_get_global_type(u32 msg) |
| 321 | { |
| 322 | return (msg & IPC_GLB_TYPE_MASK) >> IPC_GLB_TYPE_SHIFT; |
| 323 | } |
| 324 | |
| 325 | static inline u32 msg_get_global_reply(u32 msg) |
| 326 | { |
| 327 | return (msg & IPC_GLB_REPLY_MASK) >> IPC_GLB_REPLY_SHIFT; |
| 328 | } |
| 329 | |
| 330 | static inline u32 msg_get_stream_type(u32 msg) |
| 331 | { |
| 332 | return (msg & IPC_STR_TYPE_MASK) >> IPC_STR_TYPE_SHIFT; |
| 333 | } |
| 334 | |
| 335 | static inline u32 msg_get_stage_type(u32 msg) |
| 336 | { |
| 337 | return (msg & IPC_STG_TYPE_MASK) >> IPC_STG_TYPE_SHIFT; |
| 338 | } |
| 339 | |
| 340 | static inline u32 msg_set_stage_type(u32 msg, u32 type) |
| 341 | { |
| 342 | return (msg & ~IPC_STG_TYPE_MASK) + |
| 343 | (type << IPC_STG_TYPE_SHIFT); |
| 344 | } |
| 345 | |
| 346 | static inline u32 msg_get_stream_id(u32 msg) |
| 347 | { |
| 348 | return (msg & IPC_STR_ID_MASK) >> IPC_STR_ID_SHIFT; |
| 349 | } |
| 350 | |
| 351 | static inline u32 msg_get_notify_reason(u32 msg) |
| 352 | { |
| 353 | return (msg & IPC_STG_TYPE_MASK) >> IPC_STG_TYPE_SHIFT; |
| 354 | } |
| 355 | |
| 356 | u32 create_channel_map(enum sst_hsw_channel_config config) |
| 357 | { |
| 358 | switch (config) { |
| 359 | case SST_HSW_CHANNEL_CONFIG_MONO: |
| 360 | return (0xFFFFFFF0 | SST_HSW_CHANNEL_CENTER); |
| 361 | case SST_HSW_CHANNEL_CONFIG_STEREO: |
| 362 | return (0xFFFFFF00 | SST_HSW_CHANNEL_LEFT |
| 363 | | (SST_HSW_CHANNEL_RIGHT << 4)); |
| 364 | case SST_HSW_CHANNEL_CONFIG_2_POINT_1: |
| 365 | return (0xFFFFF000 | SST_HSW_CHANNEL_LEFT |
| 366 | | (SST_HSW_CHANNEL_RIGHT << 4) |
| 367 | | (SST_HSW_CHANNEL_LFE << 8 )); |
| 368 | case SST_HSW_CHANNEL_CONFIG_3_POINT_0: |
| 369 | return (0xFFFFF000 | SST_HSW_CHANNEL_LEFT |
| 370 | | (SST_HSW_CHANNEL_CENTER << 4) |
| 371 | | (SST_HSW_CHANNEL_RIGHT << 8)); |
| 372 | case SST_HSW_CHANNEL_CONFIG_3_POINT_1: |
| 373 | return (0xFFFF0000 | SST_HSW_CHANNEL_LEFT |
| 374 | | (SST_HSW_CHANNEL_CENTER << 4) |
| 375 | | (SST_HSW_CHANNEL_RIGHT << 8) |
| 376 | | (SST_HSW_CHANNEL_LFE << 12)); |
| 377 | case SST_HSW_CHANNEL_CONFIG_QUATRO: |
| 378 | return (0xFFFF0000 | SST_HSW_CHANNEL_LEFT |
| 379 | | (SST_HSW_CHANNEL_RIGHT << 4) |
| 380 | | (SST_HSW_CHANNEL_LEFT_SURROUND << 8) |
| 381 | | (SST_HSW_CHANNEL_RIGHT_SURROUND << 12)); |
| 382 | case SST_HSW_CHANNEL_CONFIG_4_POINT_0: |
| 383 | return (0xFFFF0000 | SST_HSW_CHANNEL_LEFT |
| 384 | | (SST_HSW_CHANNEL_CENTER << 4) |
| 385 | | (SST_HSW_CHANNEL_RIGHT << 8) |
| 386 | | (SST_HSW_CHANNEL_CENTER_SURROUND << 12)); |
| 387 | case SST_HSW_CHANNEL_CONFIG_5_POINT_0: |
| 388 | return (0xFFF00000 | SST_HSW_CHANNEL_LEFT |
| 389 | | (SST_HSW_CHANNEL_CENTER << 4) |
| 390 | | (SST_HSW_CHANNEL_RIGHT << 8) |
| 391 | | (SST_HSW_CHANNEL_LEFT_SURROUND << 12) |
| 392 | | (SST_HSW_CHANNEL_RIGHT_SURROUND << 16)); |
| 393 | case SST_HSW_CHANNEL_CONFIG_5_POINT_1: |
| 394 | return (0xFF000000 | SST_HSW_CHANNEL_CENTER |
| 395 | | (SST_HSW_CHANNEL_LEFT << 4) |
| 396 | | (SST_HSW_CHANNEL_RIGHT << 8) |
| 397 | | (SST_HSW_CHANNEL_LEFT_SURROUND << 12) |
| 398 | | (SST_HSW_CHANNEL_RIGHT_SURROUND << 16) |
| 399 | | (SST_HSW_CHANNEL_LFE << 20)); |
| 400 | case SST_HSW_CHANNEL_CONFIG_DUAL_MONO: |
| 401 | return (0xFFFFFF00 | SST_HSW_CHANNEL_LEFT |
| 402 | | (SST_HSW_CHANNEL_LEFT << 4)); |
| 403 | default: |
| 404 | return 0xFFFFFFFF; |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | static struct sst_hsw_stream *get_stream_by_id(struct sst_hsw *hsw, |
| 409 | int stream_id) |
| 410 | { |
| 411 | struct sst_hsw_stream *stream; |
| 412 | |
| 413 | list_for_each_entry(stream, &hsw->stream_list, node) { |
| 414 | if (stream->reply.stream_hw_id == stream_id) |
| 415 | return stream; |
| 416 | } |
| 417 | |
| 418 | return NULL; |
| 419 | } |
| 420 | |
| 421 | static void ipc_shim_dbg(struct sst_hsw *hsw, const char *text) |
| 422 | { |
| 423 | struct sst_dsp *sst = hsw->dsp; |
| 424 | u32 isr, ipcd, imrx, ipcx; |
| 425 | |
| 426 | ipcx = sst_dsp_shim_read_unlocked(sst, SST_IPCX); |
| 427 | isr = sst_dsp_shim_read_unlocked(sst, SST_ISRX); |
| 428 | ipcd = sst_dsp_shim_read_unlocked(sst, SST_IPCD); |
| 429 | imrx = sst_dsp_shim_read_unlocked(sst, SST_IMRX); |
| 430 | |
| 431 | dev_err(hsw->dev, "ipc: --%s-- ipcx 0x%8.8x isr 0x%8.8x ipcd 0x%8.8x imrx 0x%8.8x\n", |
| 432 | text, ipcx, isr, ipcd, imrx); |
| 433 | } |
| 434 | |
| 435 | /* locks held by caller */ |
| 436 | static struct ipc_message *msg_get_empty(struct sst_hsw *hsw) |
| 437 | { |
| 438 | struct ipc_message *msg = NULL; |
| 439 | |
| 440 | if (!list_empty(&hsw->empty_list)) { |
| 441 | msg = list_first_entry(&hsw->empty_list, struct ipc_message, |
| 442 | list); |
| 443 | list_del(&msg->list); |
| 444 | } |
| 445 | |
| 446 | return msg; |
| 447 | } |
| 448 | |
| 449 | static void ipc_tx_msgs(struct kthread_work *work) |
| 450 | { |
| 451 | struct sst_hsw *hsw = |
| 452 | container_of(work, struct sst_hsw, kwork); |
| 453 | struct ipc_message *msg; |
| 454 | unsigned long flags; |
| 455 | u32 ipcx; |
| 456 | |
| 457 | spin_lock_irqsave(&hsw->dsp->spinlock, flags); |
| 458 | |
| 459 | if (list_empty(&hsw->tx_list) || hsw->pending) { |
| 460 | spin_unlock_irqrestore(&hsw->dsp->spinlock, flags); |
| 461 | return; |
| 462 | } |
| 463 | |
Paweł Piskorski | 94ce334 | 2014-08-01 23:09:44 +0800 | [diff] [blame] | 464 | /* if the DSP is busy, we will TX messages after IRQ. |
| 465 | * also postpone if we are in the middle of procesing completion irq*/ |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 466 | ipcx = sst_dsp_shim_read_unlocked(hsw->dsp, SST_IPCX); |
Paweł Piskorski | 94ce334 | 2014-08-01 23:09:44 +0800 | [diff] [blame] | 467 | if (ipcx & (SST_IPCX_BUSY | SST_IPCX_DONE)) { |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 468 | spin_unlock_irqrestore(&hsw->dsp->spinlock, flags); |
| 469 | return; |
| 470 | } |
| 471 | |
| 472 | msg = list_first_entry(&hsw->tx_list, struct ipc_message, list); |
| 473 | |
| 474 | list_move(&msg->list, &hsw->rx_list); |
| 475 | |
| 476 | /* send the message */ |
| 477 | sst_dsp_outbox_write(hsw->dsp, msg->tx_data, msg->tx_size); |
| 478 | sst_dsp_ipc_msg_tx(hsw->dsp, msg->header | SST_IPCX_BUSY); |
| 479 | |
| 480 | spin_unlock_irqrestore(&hsw->dsp->spinlock, flags); |
| 481 | } |
| 482 | |
| 483 | /* locks held by caller */ |
| 484 | static void tx_msg_reply_complete(struct sst_hsw *hsw, struct ipc_message *msg) |
| 485 | { |
| 486 | msg->complete = true; |
| 487 | trace_ipc_reply("completed", msg->header); |
| 488 | |
| 489 | if (!msg->wait) |
| 490 | list_add_tail(&msg->list, &hsw->empty_list); |
| 491 | else |
| 492 | wake_up(&msg->waitq); |
| 493 | } |
| 494 | |
| 495 | static int tx_wait_done(struct sst_hsw *hsw, struct ipc_message *msg, |
| 496 | void *rx_data) |
| 497 | { |
| 498 | unsigned long flags; |
| 499 | int ret; |
| 500 | |
| 501 | /* wait for DSP completion (in all cases atm inc pending) */ |
| 502 | ret = wait_event_timeout(msg->waitq, msg->complete, |
| 503 | msecs_to_jiffies(IPC_TIMEOUT_MSECS)); |
| 504 | |
| 505 | spin_lock_irqsave(&hsw->dsp->spinlock, flags); |
| 506 | if (ret == 0) { |
| 507 | ipc_shim_dbg(hsw, "message timeout"); |
| 508 | |
| 509 | trace_ipc_error("error message timeout for", msg->header); |
Liam Girdwood | 97cfc75 | 2014-08-01 23:08:38 +0800 | [diff] [blame] | 510 | list_del(&msg->list); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 511 | ret = -ETIMEDOUT; |
| 512 | } else { |
| 513 | |
| 514 | /* copy the data returned from DSP */ |
| 515 | if (msg->rx_size) |
| 516 | memcpy(rx_data, msg->rx_data, msg->rx_size); |
| 517 | ret = msg->errno; |
| 518 | } |
| 519 | |
| 520 | list_add_tail(&msg->list, &hsw->empty_list); |
| 521 | spin_unlock_irqrestore(&hsw->dsp->spinlock, flags); |
| 522 | return ret; |
| 523 | } |
| 524 | |
| 525 | static int ipc_tx_message(struct sst_hsw *hsw, u32 header, void *tx_data, |
| 526 | size_t tx_bytes, void *rx_data, size_t rx_bytes, int wait) |
| 527 | { |
| 528 | struct ipc_message *msg; |
| 529 | unsigned long flags; |
| 530 | |
| 531 | spin_lock_irqsave(&hsw->dsp->spinlock, flags); |
| 532 | |
| 533 | msg = msg_get_empty(hsw); |
| 534 | if (msg == NULL) { |
| 535 | spin_unlock_irqrestore(&hsw->dsp->spinlock, flags); |
| 536 | return -EBUSY; |
| 537 | } |
| 538 | |
| 539 | if (tx_bytes) |
| 540 | memcpy(msg->tx_data, tx_data, tx_bytes); |
| 541 | |
| 542 | msg->header = header; |
| 543 | msg->tx_size = tx_bytes; |
| 544 | msg->rx_size = rx_bytes; |
| 545 | msg->wait = wait; |
| 546 | msg->errno = 0; |
| 547 | msg->pending = false; |
| 548 | msg->complete = false; |
| 549 | |
| 550 | list_add_tail(&msg->list, &hsw->tx_list); |
| 551 | spin_unlock_irqrestore(&hsw->dsp->spinlock, flags); |
| 552 | |
| 553 | queue_kthread_work(&hsw->kworker, &hsw->kwork); |
| 554 | |
| 555 | if (wait) |
| 556 | return tx_wait_done(hsw, msg, rx_data); |
| 557 | else |
| 558 | return 0; |
| 559 | } |
| 560 | |
| 561 | static inline int ipc_tx_message_wait(struct sst_hsw *hsw, u32 header, |
| 562 | void *tx_data, size_t tx_bytes, void *rx_data, size_t rx_bytes) |
| 563 | { |
| 564 | return ipc_tx_message(hsw, header, tx_data, tx_bytes, rx_data, |
| 565 | rx_bytes, 1); |
| 566 | } |
| 567 | |
| 568 | static inline int ipc_tx_message_nowait(struct sst_hsw *hsw, u32 header, |
| 569 | void *tx_data, size_t tx_bytes) |
| 570 | { |
| 571 | return ipc_tx_message(hsw, header, tx_data, tx_bytes, NULL, 0, 0); |
| 572 | } |
| 573 | |
| 574 | static void hsw_fw_ready(struct sst_hsw *hsw, u32 header) |
| 575 | { |
| 576 | struct sst_hsw_ipc_fw_ready fw_ready; |
| 577 | u32 offset; |
Jie Yang | 249addd | 2014-07-15 08:51:12 +0800 | [diff] [blame] | 578 | u8 fw_info[IPC_MAX_MAILBOX_BYTES - 5 * sizeof(u32)]; |
| 579 | char *tmp[5], *pinfo; |
| 580 | int i = 0; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 581 | |
| 582 | offset = (header & 0x1FFFFFFF) << 3; |
| 583 | |
| 584 | dev_dbg(hsw->dev, "ipc: DSP is ready 0x%8.8x offset %d\n", |
| 585 | header, offset); |
| 586 | |
| 587 | /* copy data from the DSP FW ready offset */ |
| 588 | sst_dsp_read(hsw->dsp, &fw_ready, offset, sizeof(fw_ready)); |
| 589 | |
| 590 | sst_dsp_mailbox_init(hsw->dsp, fw_ready.inbox_offset, |
| 591 | fw_ready.inbox_size, fw_ready.outbox_offset, |
| 592 | fw_ready.outbox_size); |
| 593 | |
| 594 | hsw->boot_complete = true; |
| 595 | wake_up(&hsw->boot_wait); |
| 596 | |
| 597 | dev_dbg(hsw->dev, " mailbox upstream 0x%x - size 0x%x\n", |
| 598 | fw_ready.inbox_offset, fw_ready.inbox_size); |
| 599 | dev_dbg(hsw->dev, " mailbox downstream 0x%x - size 0x%x\n", |
| 600 | fw_ready.outbox_offset, fw_ready.outbox_size); |
Jie Yang | 249addd | 2014-07-15 08:51:12 +0800 | [diff] [blame] | 601 | if (fw_ready.fw_info_size < sizeof(fw_ready.fw_info)) { |
| 602 | fw_ready.fw_info[fw_ready.fw_info_size] = 0; |
| 603 | dev_dbg(hsw->dev, " Firmware info: %s \n", fw_ready.fw_info); |
| 604 | |
| 605 | /* log the FW version info got from the mailbox here. */ |
| 606 | memcpy(fw_info, fw_ready.fw_info, fw_ready.fw_info_size); |
| 607 | pinfo = &fw_info[0]; |
| 608 | for (i = 0; i < sizeof(tmp) / sizeof(char *); i++) |
| 609 | tmp[i] = strsep(&pinfo, " "); |
| 610 | dev_info(hsw->dev, "FW loaded, mailbox readback FW info: type %s, - " |
| 611 | "version: %s.%s, build %s, source commit id: %s\n", |
| 612 | tmp[0], tmp[1], tmp[2], tmp[3], tmp[4]); |
| 613 | } |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 614 | } |
| 615 | |
| 616 | static void hsw_notification_work(struct work_struct *work) |
| 617 | { |
| 618 | struct sst_hsw_stream *stream = container_of(work, |
| 619 | struct sst_hsw_stream, notify_work); |
| 620 | struct sst_hsw_ipc_stream_glitch_position *glitch = &stream->glitch; |
| 621 | struct sst_hsw_ipc_stream_get_position *pos = &stream->rpos; |
| 622 | struct sst_hsw *hsw = stream->hsw; |
| 623 | u32 reason; |
| 624 | |
| 625 | reason = msg_get_notify_reason(stream->header); |
| 626 | |
| 627 | switch (reason) { |
| 628 | case IPC_STG_GLITCH: |
| 629 | trace_ipc_notification("DSP stream under/overrun", |
| 630 | stream->reply.stream_hw_id); |
| 631 | sst_dsp_inbox_read(hsw->dsp, glitch, sizeof(*glitch)); |
| 632 | |
| 633 | dev_err(hsw->dev, "glitch %d pos 0x%x write pos 0x%x\n", |
| 634 | glitch->glitch_type, glitch->present_pos, |
| 635 | glitch->write_pos); |
| 636 | break; |
| 637 | |
| 638 | case IPC_POSITION_CHANGED: |
| 639 | trace_ipc_notification("DSP stream position changed for", |
| 640 | stream->reply.stream_hw_id); |
Dan Carpenter | 7897ab7 | 2014-04-16 18:38:11 +0300 | [diff] [blame] | 641 | sst_dsp_inbox_read(hsw->dsp, pos, sizeof(*pos)); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 642 | |
| 643 | if (stream->notify_position) |
| 644 | stream->notify_position(stream, stream->pdata); |
| 645 | |
| 646 | break; |
| 647 | default: |
| 648 | dev_err(hsw->dev, "error: unknown notification 0x%x\n", |
| 649 | stream->header); |
| 650 | break; |
| 651 | } |
| 652 | |
| 653 | /* tell DSP that notification has been handled */ |
| 654 | sst_dsp_shim_update_bits_unlocked(hsw->dsp, SST_IPCD, |
| 655 | SST_IPCD_BUSY | SST_IPCD_DONE, SST_IPCD_DONE); |
| 656 | |
| 657 | /* unmask busy interrupt */ |
| 658 | sst_dsp_shim_update_bits_unlocked(hsw->dsp, SST_IMRX, SST_IMRX_BUSY, 0); |
| 659 | } |
| 660 | |
| 661 | static struct ipc_message *reply_find_msg(struct sst_hsw *hsw, u32 header) |
| 662 | { |
| 663 | struct ipc_message *msg; |
| 664 | |
| 665 | /* clear reply bits & status bits */ |
| 666 | header &= ~(IPC_STATUS_MASK | IPC_GLB_REPLY_MASK); |
| 667 | |
| 668 | if (list_empty(&hsw->rx_list)) { |
| 669 | dev_err(hsw->dev, "error: rx list empty but received 0x%x\n", |
| 670 | header); |
| 671 | return NULL; |
| 672 | } |
| 673 | |
| 674 | list_for_each_entry(msg, &hsw->rx_list, list) { |
| 675 | if (msg->header == header) |
| 676 | return msg; |
| 677 | } |
| 678 | |
| 679 | return NULL; |
| 680 | } |
| 681 | |
| 682 | static void hsw_stream_update(struct sst_hsw *hsw, struct ipc_message *msg) |
| 683 | { |
| 684 | struct sst_hsw_stream *stream; |
| 685 | u32 header = msg->header & ~(IPC_STATUS_MASK | IPC_GLB_REPLY_MASK); |
| 686 | u32 stream_id = msg_get_stream_id(header); |
| 687 | u32 stream_msg = msg_get_stream_type(header); |
| 688 | |
| 689 | stream = get_stream_by_id(hsw, stream_id); |
| 690 | if (stream == NULL) |
| 691 | return; |
| 692 | |
| 693 | switch (stream_msg) { |
| 694 | case IPC_STR_STAGE_MESSAGE: |
| 695 | case IPC_STR_NOTIFICATION: |
Liam Girdwood | 8155261 | 2014-07-30 20:09:47 +0800 | [diff] [blame] | 696 | break; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 697 | case IPC_STR_RESET: |
Liam Girdwood | 8155261 | 2014-07-30 20:09:47 +0800 | [diff] [blame] | 698 | trace_ipc_notification("stream reset", stream->reply.stream_hw_id); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 699 | break; |
| 700 | case IPC_STR_PAUSE: |
| 701 | stream->running = false; |
| 702 | trace_ipc_notification("stream paused", |
| 703 | stream->reply.stream_hw_id); |
| 704 | break; |
| 705 | case IPC_STR_RESUME: |
| 706 | stream->running = true; |
| 707 | trace_ipc_notification("stream running", |
| 708 | stream->reply.stream_hw_id); |
| 709 | break; |
| 710 | } |
| 711 | } |
| 712 | |
| 713 | static int hsw_process_reply(struct sst_hsw *hsw, u32 header) |
| 714 | { |
| 715 | struct ipc_message *msg; |
| 716 | u32 reply = msg_get_global_reply(header); |
| 717 | |
| 718 | trace_ipc_reply("processing -->", header); |
| 719 | |
| 720 | msg = reply_find_msg(hsw, header); |
| 721 | if (msg == NULL) { |
| 722 | trace_ipc_error("error: can't find message header", header); |
| 723 | return -EIO; |
| 724 | } |
| 725 | |
| 726 | /* first process the header */ |
| 727 | switch (reply) { |
| 728 | case IPC_GLB_REPLY_PENDING: |
| 729 | trace_ipc_pending_reply("received", header); |
| 730 | msg->pending = true; |
| 731 | hsw->pending = true; |
| 732 | return 1; |
| 733 | case IPC_GLB_REPLY_SUCCESS: |
| 734 | if (msg->pending) { |
| 735 | trace_ipc_pending_reply("completed", header); |
| 736 | sst_dsp_inbox_read(hsw->dsp, msg->rx_data, |
| 737 | msg->rx_size); |
| 738 | hsw->pending = false; |
| 739 | } else { |
| 740 | /* copy data from the DSP */ |
| 741 | sst_dsp_outbox_read(hsw->dsp, msg->rx_data, |
| 742 | msg->rx_size); |
| 743 | } |
| 744 | break; |
| 745 | /* these will be rare - but useful for debug */ |
| 746 | case IPC_GLB_REPLY_UNKNOWN_MESSAGE_TYPE: |
| 747 | trace_ipc_error("error: unknown message type", header); |
| 748 | msg->errno = -EBADMSG; |
| 749 | break; |
| 750 | case IPC_GLB_REPLY_OUT_OF_RESOURCES: |
| 751 | trace_ipc_error("error: out of resources", header); |
| 752 | msg->errno = -ENOMEM; |
| 753 | break; |
| 754 | case IPC_GLB_REPLY_BUSY: |
| 755 | trace_ipc_error("error: reply busy", header); |
| 756 | msg->errno = -EBUSY; |
| 757 | break; |
| 758 | case IPC_GLB_REPLY_FAILURE: |
| 759 | trace_ipc_error("error: reply failure", header); |
| 760 | msg->errno = -EINVAL; |
| 761 | break; |
| 762 | case IPC_GLB_REPLY_STAGE_UNINITIALIZED: |
| 763 | trace_ipc_error("error: stage uninitialized", header); |
| 764 | msg->errno = -EINVAL; |
| 765 | break; |
| 766 | case IPC_GLB_REPLY_NOT_FOUND: |
| 767 | trace_ipc_error("error: reply not found", header); |
| 768 | msg->errno = -EINVAL; |
| 769 | break; |
| 770 | case IPC_GLB_REPLY_SOURCE_NOT_STARTED: |
| 771 | trace_ipc_error("error: source not started", header); |
| 772 | msg->errno = -EINVAL; |
| 773 | break; |
| 774 | case IPC_GLB_REPLY_INVALID_REQUEST: |
| 775 | trace_ipc_error("error: invalid request", header); |
| 776 | msg->errno = -EINVAL; |
| 777 | break; |
| 778 | case IPC_GLB_REPLY_ERROR_INVALID_PARAM: |
| 779 | trace_ipc_error("error: invalid parameter", header); |
| 780 | msg->errno = -EINVAL; |
| 781 | break; |
| 782 | default: |
| 783 | trace_ipc_error("error: unknown reply", header); |
| 784 | msg->errno = -EINVAL; |
| 785 | break; |
| 786 | } |
| 787 | |
| 788 | /* update any stream states */ |
Paweł Piskorski | d6e0861 | 2014-08-01 23:10:43 +0800 | [diff] [blame] | 789 | if (msg_get_global_type(header) == IPC_GLB_STREAM_MESSAGE) |
| 790 | hsw_stream_update(hsw, msg); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 791 | |
| 792 | /* wake up and return the error if we have waiters on this message ? */ |
| 793 | list_del(&msg->list); |
| 794 | tx_msg_reply_complete(hsw, msg); |
| 795 | |
| 796 | return 1; |
| 797 | } |
| 798 | |
| 799 | static int hsw_stream_message(struct sst_hsw *hsw, u32 header) |
| 800 | { |
| 801 | u32 stream_msg, stream_id, stage_type; |
| 802 | struct sst_hsw_stream *stream; |
| 803 | int handled = 0; |
| 804 | |
| 805 | stream_msg = msg_get_stream_type(header); |
| 806 | stream_id = msg_get_stream_id(header); |
| 807 | stage_type = msg_get_stage_type(header); |
| 808 | |
| 809 | stream = get_stream_by_id(hsw, stream_id); |
| 810 | if (stream == NULL) |
| 811 | return handled; |
| 812 | |
| 813 | stream->header = header; |
| 814 | |
| 815 | switch (stream_msg) { |
| 816 | case IPC_STR_STAGE_MESSAGE: |
| 817 | dev_err(hsw->dev, "error: stage msg not implemented 0x%8.8x\n", |
| 818 | header); |
| 819 | break; |
| 820 | case IPC_STR_NOTIFICATION: |
| 821 | schedule_work(&stream->notify_work); |
| 822 | break; |
| 823 | default: |
| 824 | /* handle pending message complete request */ |
| 825 | handled = hsw_process_reply(hsw, header); |
| 826 | break; |
| 827 | } |
| 828 | |
| 829 | return handled; |
| 830 | } |
| 831 | |
| 832 | static int hsw_log_message(struct sst_hsw *hsw, u32 header) |
| 833 | { |
| 834 | u32 operation = (header & IPC_LOG_OP_MASK) >> IPC_LOG_OP_SHIFT; |
| 835 | struct sst_hsw_log_stream *stream = &hsw->log_stream; |
| 836 | int ret = 1; |
| 837 | |
| 838 | if (operation != IPC_DEBUG_REQUEST_LOG_DUMP) { |
| 839 | dev_err(hsw->dev, |
| 840 | "error: log msg not implemented 0x%8.8x\n", header); |
| 841 | return 0; |
| 842 | } |
| 843 | |
| 844 | mutex_lock(&stream->rw_mutex); |
| 845 | stream->last_pos = stream->curr_pos; |
| 846 | sst_dsp_inbox_read( |
| 847 | hsw->dsp, &stream->curr_pos, sizeof(stream->curr_pos)); |
| 848 | mutex_unlock(&stream->rw_mutex); |
| 849 | |
| 850 | schedule_work(&stream->notify_work); |
| 851 | |
| 852 | return ret; |
| 853 | } |
| 854 | |
| 855 | static int hsw_process_notification(struct sst_hsw *hsw) |
| 856 | { |
| 857 | struct sst_dsp *sst = hsw->dsp; |
| 858 | u32 type, header; |
| 859 | int handled = 1; |
| 860 | |
| 861 | header = sst_dsp_shim_read_unlocked(sst, SST_IPCD); |
| 862 | type = msg_get_global_type(header); |
| 863 | |
| 864 | trace_ipc_request("processing -->", header); |
| 865 | |
| 866 | /* FW Ready is a special case */ |
| 867 | if (!hsw->boot_complete && header & IPC_FW_READY) { |
| 868 | hsw_fw_ready(hsw, header); |
| 869 | return handled; |
| 870 | } |
| 871 | |
| 872 | switch (type) { |
| 873 | case IPC_GLB_GET_FW_VERSION: |
| 874 | case IPC_GLB_ALLOCATE_STREAM: |
| 875 | case IPC_GLB_FREE_STREAM: |
| 876 | case IPC_GLB_GET_FW_CAPABILITIES: |
| 877 | case IPC_GLB_REQUEST_DUMP: |
| 878 | case IPC_GLB_GET_DEVICE_FORMATS: |
| 879 | case IPC_GLB_SET_DEVICE_FORMATS: |
| 880 | case IPC_GLB_ENTER_DX_STATE: |
| 881 | case IPC_GLB_GET_MIXER_STREAM_INFO: |
| 882 | case IPC_GLB_MAX_IPC_MESSAGE_TYPE: |
| 883 | case IPC_GLB_RESTORE_CONTEXT: |
| 884 | case IPC_GLB_SHORT_REPLY: |
| 885 | dev_err(hsw->dev, "error: message type %d header 0x%x\n", |
| 886 | type, header); |
| 887 | break; |
| 888 | case IPC_GLB_STREAM_MESSAGE: |
| 889 | handled = hsw_stream_message(hsw, header); |
| 890 | break; |
| 891 | case IPC_GLB_DEBUG_LOG_MESSAGE: |
| 892 | handled = hsw_log_message(hsw, header); |
| 893 | break; |
| 894 | default: |
| 895 | dev_err(hsw->dev, "error: unexpected type %d hdr 0x%8.8x\n", |
| 896 | type, header); |
| 897 | break; |
| 898 | } |
| 899 | |
| 900 | return handled; |
| 901 | } |
| 902 | |
| 903 | static irqreturn_t hsw_irq_thread(int irq, void *context) |
| 904 | { |
| 905 | struct sst_dsp *sst = (struct sst_dsp *) context; |
| 906 | struct sst_hsw *hsw = sst_dsp_get_thread_context(sst); |
| 907 | u32 ipcx, ipcd; |
| 908 | int handled; |
| 909 | unsigned long flags; |
| 910 | |
| 911 | spin_lock_irqsave(&sst->spinlock, flags); |
| 912 | |
| 913 | ipcx = sst_dsp_ipc_msg_rx(hsw->dsp); |
| 914 | ipcd = sst_dsp_shim_read_unlocked(sst, SST_IPCD); |
| 915 | |
| 916 | /* reply message from DSP */ |
| 917 | if (ipcx & SST_IPCX_DONE) { |
| 918 | |
| 919 | /* Handle Immediate reply from DSP Core */ |
| 920 | handled = hsw_process_reply(hsw, ipcx); |
| 921 | |
| 922 | if (handled > 0) { |
| 923 | /* clear DONE bit - tell DSP we have completed */ |
| 924 | sst_dsp_shim_update_bits_unlocked(sst, SST_IPCX, |
| 925 | SST_IPCX_DONE, 0); |
| 926 | |
| 927 | /* unmask Done interrupt */ |
| 928 | sst_dsp_shim_update_bits_unlocked(sst, SST_IMRX, |
| 929 | SST_IMRX_DONE, 0); |
| 930 | } |
| 931 | } |
| 932 | |
| 933 | /* new message from DSP */ |
| 934 | if (ipcd & SST_IPCD_BUSY) { |
| 935 | |
| 936 | /* Handle Notification and Delayed reply from DSP Core */ |
| 937 | handled = hsw_process_notification(hsw); |
| 938 | |
| 939 | /* clear BUSY bit and set DONE bit - accept new messages */ |
| 940 | if (handled > 0) { |
| 941 | sst_dsp_shim_update_bits_unlocked(sst, SST_IPCD, |
| 942 | SST_IPCD_BUSY | SST_IPCD_DONE, SST_IPCD_DONE); |
| 943 | |
| 944 | /* unmask busy interrupt */ |
| 945 | sst_dsp_shim_update_bits_unlocked(sst, SST_IMRX, |
| 946 | SST_IMRX_BUSY, 0); |
| 947 | } |
| 948 | } |
| 949 | |
| 950 | spin_unlock_irqrestore(&sst->spinlock, flags); |
| 951 | |
| 952 | /* continue to send any remaining messages... */ |
| 953 | queue_kthread_work(&hsw->kworker, &hsw->kwork); |
| 954 | |
| 955 | return IRQ_HANDLED; |
| 956 | } |
| 957 | |
| 958 | int sst_hsw_fw_get_version(struct sst_hsw *hsw, |
| 959 | struct sst_hsw_ipc_fw_version *version) |
| 960 | { |
| 961 | int ret; |
| 962 | |
| 963 | ret = ipc_tx_message_wait(hsw, IPC_GLB_TYPE(IPC_GLB_GET_FW_VERSION), |
| 964 | NULL, 0, version, sizeof(*version)); |
| 965 | if (ret < 0) |
| 966 | dev_err(hsw->dev, "error: get version failed\n"); |
| 967 | |
| 968 | return ret; |
| 969 | } |
| 970 | |
| 971 | /* Mixer Controls */ |
| 972 | int sst_hsw_stream_mute(struct sst_hsw *hsw, struct sst_hsw_stream *stream, |
| 973 | u32 stage_id, u32 channel) |
| 974 | { |
| 975 | int ret; |
| 976 | |
| 977 | ret = sst_hsw_stream_get_volume(hsw, stream, stage_id, channel, |
| 978 | &stream->mute_volume[channel]); |
| 979 | if (ret < 0) |
| 980 | return ret; |
| 981 | |
| 982 | ret = sst_hsw_stream_set_volume(hsw, stream, stage_id, channel, 0); |
| 983 | if (ret < 0) { |
| 984 | dev_err(hsw->dev, "error: can't unmute stream %d channel %d\n", |
| 985 | stream->reply.stream_hw_id, channel); |
| 986 | return ret; |
| 987 | } |
| 988 | |
| 989 | stream->mute[channel] = 1; |
| 990 | return 0; |
| 991 | } |
| 992 | |
| 993 | int sst_hsw_stream_unmute(struct sst_hsw *hsw, struct sst_hsw_stream *stream, |
| 994 | u32 stage_id, u32 channel) |
| 995 | |
| 996 | { |
| 997 | int ret; |
| 998 | |
| 999 | stream->mute[channel] = 0; |
| 1000 | ret = sst_hsw_stream_set_volume(hsw, stream, stage_id, channel, |
| 1001 | stream->mute_volume[channel]); |
| 1002 | if (ret < 0) { |
| 1003 | dev_err(hsw->dev, "error: can't unmute stream %d channel %d\n", |
| 1004 | stream->reply.stream_hw_id, channel); |
| 1005 | return ret; |
| 1006 | } |
| 1007 | |
| 1008 | return 0; |
| 1009 | } |
| 1010 | |
| 1011 | int sst_hsw_stream_get_volume(struct sst_hsw *hsw, struct sst_hsw_stream *stream, |
| 1012 | u32 stage_id, u32 channel, u32 *volume) |
| 1013 | { |
| 1014 | if (channel > 1) |
| 1015 | return -EINVAL; |
| 1016 | |
| 1017 | sst_dsp_read(hsw->dsp, volume, |
Christian Engelmayer | bf657d2 | 2014-04-13 19:56:36 +0200 | [diff] [blame] | 1018 | stream->reply.volume_register_address[channel], |
| 1019 | sizeof(*volume)); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1020 | |
| 1021 | return 0; |
| 1022 | } |
| 1023 | |
| 1024 | int sst_hsw_stream_set_volume_curve(struct sst_hsw *hsw, |
| 1025 | struct sst_hsw_stream *stream, u64 curve_duration, |
| 1026 | enum sst_hsw_volume_curve curve) |
| 1027 | { |
| 1028 | /* curve duration in steps of 100ns */ |
| 1029 | stream->vol_req.curve_duration = curve_duration; |
| 1030 | stream->vol_req.curve_type = curve; |
| 1031 | |
| 1032 | return 0; |
| 1033 | } |
| 1034 | |
| 1035 | /* stream volume */ |
| 1036 | int sst_hsw_stream_set_volume(struct sst_hsw *hsw, |
| 1037 | struct sst_hsw_stream *stream, u32 stage_id, u32 channel, u32 volume) |
| 1038 | { |
| 1039 | struct sst_hsw_ipc_volume_req *req; |
| 1040 | u32 header; |
| 1041 | int ret; |
| 1042 | |
| 1043 | trace_ipc_request("set stream volume", stream->reply.stream_hw_id); |
| 1044 | |
| 1045 | if (channel > 1) |
| 1046 | return -EINVAL; |
| 1047 | |
| 1048 | if (stream->mute[channel]) { |
| 1049 | stream->mute_volume[channel] = volume; |
| 1050 | return 0; |
| 1051 | } |
| 1052 | |
| 1053 | header = IPC_GLB_TYPE(IPC_GLB_STREAM_MESSAGE) | |
| 1054 | IPC_STR_TYPE(IPC_STR_STAGE_MESSAGE); |
| 1055 | header |= (stream->reply.stream_hw_id << IPC_STR_ID_SHIFT); |
| 1056 | header |= (IPC_STG_SET_VOLUME << IPC_STG_TYPE_SHIFT); |
| 1057 | header |= (stage_id << IPC_STG_ID_SHIFT); |
| 1058 | |
| 1059 | req = &stream->vol_req; |
| 1060 | req->channel = channel; |
| 1061 | req->target_volume = volume; |
| 1062 | |
| 1063 | ret = ipc_tx_message_wait(hsw, header, req, sizeof(*req), NULL, 0); |
| 1064 | if (ret < 0) { |
| 1065 | dev_err(hsw->dev, "error: set stream volume failed\n"); |
| 1066 | return ret; |
| 1067 | } |
| 1068 | |
| 1069 | return 0; |
| 1070 | } |
| 1071 | |
| 1072 | int sst_hsw_mixer_mute(struct sst_hsw *hsw, u32 stage_id, u32 channel) |
| 1073 | { |
| 1074 | int ret; |
| 1075 | |
| 1076 | ret = sst_hsw_mixer_get_volume(hsw, stage_id, channel, |
| 1077 | &hsw->mute_volume[channel]); |
| 1078 | if (ret < 0) |
| 1079 | return ret; |
| 1080 | |
| 1081 | ret = sst_hsw_mixer_set_volume(hsw, stage_id, channel, 0); |
| 1082 | if (ret < 0) { |
| 1083 | dev_err(hsw->dev, "error: failed to unmute mixer channel %d\n", |
| 1084 | channel); |
| 1085 | return ret; |
| 1086 | } |
| 1087 | |
| 1088 | hsw->mute[channel] = 1; |
| 1089 | return 0; |
| 1090 | } |
| 1091 | |
| 1092 | int sst_hsw_mixer_unmute(struct sst_hsw *hsw, u32 stage_id, u32 channel) |
| 1093 | { |
| 1094 | int ret; |
| 1095 | |
| 1096 | ret = sst_hsw_mixer_set_volume(hsw, stage_id, channel, |
| 1097 | hsw->mixer_info.volume_register_address[channel]); |
| 1098 | if (ret < 0) { |
| 1099 | dev_err(hsw->dev, "error: failed to unmute mixer channel %d\n", |
| 1100 | channel); |
| 1101 | return ret; |
| 1102 | } |
| 1103 | |
| 1104 | hsw->mute[channel] = 0; |
| 1105 | return 0; |
| 1106 | } |
| 1107 | |
| 1108 | int sst_hsw_mixer_get_volume(struct sst_hsw *hsw, u32 stage_id, u32 channel, |
| 1109 | u32 *volume) |
| 1110 | { |
| 1111 | if (channel > 1) |
| 1112 | return -EINVAL; |
| 1113 | |
| 1114 | sst_dsp_read(hsw->dsp, volume, |
| 1115 | hsw->mixer_info.volume_register_address[channel], |
| 1116 | sizeof(*volume)); |
| 1117 | |
| 1118 | return 0; |
| 1119 | } |
| 1120 | |
| 1121 | int sst_hsw_mixer_set_volume_curve(struct sst_hsw *hsw, |
| 1122 | u64 curve_duration, enum sst_hsw_volume_curve curve) |
| 1123 | { |
| 1124 | /* curve duration in steps of 100ns */ |
| 1125 | hsw->curve_duration = curve_duration; |
| 1126 | hsw->curve_type = curve; |
| 1127 | |
| 1128 | return 0; |
| 1129 | } |
| 1130 | |
| 1131 | /* global mixer volume */ |
| 1132 | int sst_hsw_mixer_set_volume(struct sst_hsw *hsw, u32 stage_id, u32 channel, |
| 1133 | u32 volume) |
| 1134 | { |
| 1135 | struct sst_hsw_ipc_volume_req req; |
| 1136 | u32 header; |
| 1137 | int ret; |
| 1138 | |
| 1139 | trace_ipc_request("set mixer volume", volume); |
| 1140 | |
| 1141 | /* set both at same time ? */ |
| 1142 | if (channel == 2) { |
| 1143 | if (hsw->mute[0] && hsw->mute[1]) { |
| 1144 | hsw->mute_volume[0] = hsw->mute_volume[1] = volume; |
| 1145 | return 0; |
| 1146 | } else if (hsw->mute[0]) |
| 1147 | req.channel = 1; |
| 1148 | else if (hsw->mute[1]) |
| 1149 | req.channel = 0; |
| 1150 | else |
| 1151 | req.channel = 0xffffffff; |
| 1152 | } else { |
| 1153 | /* set only 1 channel */ |
| 1154 | if (hsw->mute[channel]) { |
| 1155 | hsw->mute_volume[channel] = volume; |
| 1156 | return 0; |
| 1157 | } |
| 1158 | req.channel = channel; |
| 1159 | } |
| 1160 | |
| 1161 | header = IPC_GLB_TYPE(IPC_GLB_STREAM_MESSAGE) | |
| 1162 | IPC_STR_TYPE(IPC_STR_STAGE_MESSAGE); |
| 1163 | header |= (hsw->mixer_info.mixer_hw_id << IPC_STR_ID_SHIFT); |
| 1164 | header |= (IPC_STG_SET_VOLUME << IPC_STG_TYPE_SHIFT); |
| 1165 | header |= (stage_id << IPC_STG_ID_SHIFT); |
| 1166 | |
| 1167 | req.curve_duration = hsw->curve_duration; |
| 1168 | req.curve_type = hsw->curve_type; |
| 1169 | req.target_volume = volume; |
| 1170 | |
| 1171 | ret = ipc_tx_message_wait(hsw, header, &req, sizeof(req), NULL, 0); |
| 1172 | if (ret < 0) { |
| 1173 | dev_err(hsw->dev, "error: set mixer volume failed\n"); |
| 1174 | return ret; |
| 1175 | } |
| 1176 | |
| 1177 | return 0; |
| 1178 | } |
| 1179 | |
| 1180 | /* Stream API */ |
| 1181 | struct sst_hsw_stream *sst_hsw_stream_new(struct sst_hsw *hsw, int id, |
| 1182 | u32 (*notify_position)(struct sst_hsw_stream *stream, void *data), |
| 1183 | void *data) |
| 1184 | { |
| 1185 | struct sst_hsw_stream *stream; |
Wenkai Du | d132cb0 | 2014-04-23 13:29:30 +0300 | [diff] [blame] | 1186 | struct sst_dsp *sst = hsw->dsp; |
| 1187 | unsigned long flags; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1188 | |
| 1189 | stream = kzalloc(sizeof(*stream), GFP_KERNEL); |
| 1190 | if (stream == NULL) |
| 1191 | return NULL; |
| 1192 | |
Wenkai Du | d132cb0 | 2014-04-23 13:29:30 +0300 | [diff] [blame] | 1193 | spin_lock_irqsave(&sst->spinlock, flags); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1194 | list_add(&stream->node, &hsw->stream_list); |
| 1195 | stream->notify_position = notify_position; |
| 1196 | stream->pdata = data; |
| 1197 | stream->hsw = hsw; |
| 1198 | stream->host_id = id; |
| 1199 | |
| 1200 | /* work to process notification messages */ |
| 1201 | INIT_WORK(&stream->notify_work, hsw_notification_work); |
Wenkai Du | d132cb0 | 2014-04-23 13:29:30 +0300 | [diff] [blame] | 1202 | spin_unlock_irqrestore(&sst->spinlock, flags); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1203 | |
| 1204 | return stream; |
| 1205 | } |
| 1206 | |
| 1207 | int sst_hsw_stream_free(struct sst_hsw *hsw, struct sst_hsw_stream *stream) |
| 1208 | { |
| 1209 | u32 header; |
| 1210 | int ret = 0; |
Wenkai Du | d132cb0 | 2014-04-23 13:29:30 +0300 | [diff] [blame] | 1211 | struct sst_dsp *sst = hsw->dsp; |
| 1212 | unsigned long flags; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1213 | |
| 1214 | /* dont free DSP streams that are not commited */ |
| 1215 | if (!stream->commited) |
| 1216 | goto out; |
| 1217 | |
| 1218 | trace_ipc_request("stream free", stream->host_id); |
| 1219 | |
| 1220 | stream->free_req.stream_id = stream->reply.stream_hw_id; |
| 1221 | header = IPC_GLB_TYPE(IPC_GLB_FREE_STREAM); |
| 1222 | |
| 1223 | ret = ipc_tx_message_wait(hsw, header, &stream->free_req, |
| 1224 | sizeof(stream->free_req), NULL, 0); |
| 1225 | if (ret < 0) { |
| 1226 | dev_err(hsw->dev, "error: free stream %d failed\n", |
| 1227 | stream->free_req.stream_id); |
| 1228 | return -EAGAIN; |
| 1229 | } |
| 1230 | |
| 1231 | trace_hsw_stream_free_req(stream, &stream->free_req); |
| 1232 | |
| 1233 | out: |
Jarkko Nikula | de30a2c | 2014-04-24 10:34:36 +0300 | [diff] [blame] | 1234 | cancel_work_sync(&stream->notify_work); |
Wenkai Du | d132cb0 | 2014-04-23 13:29:30 +0300 | [diff] [blame] | 1235 | spin_lock_irqsave(&sst->spinlock, flags); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1236 | list_del(&stream->node); |
| 1237 | kfree(stream); |
Wenkai Du | d132cb0 | 2014-04-23 13:29:30 +0300 | [diff] [blame] | 1238 | spin_unlock_irqrestore(&sst->spinlock, flags); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1239 | |
| 1240 | return ret; |
| 1241 | } |
| 1242 | |
| 1243 | int sst_hsw_stream_set_bits(struct sst_hsw *hsw, |
| 1244 | struct sst_hsw_stream *stream, enum sst_hsw_bitdepth bits) |
| 1245 | { |
| 1246 | if (stream->commited) { |
| 1247 | dev_err(hsw->dev, "error: stream committed for set bits\n"); |
| 1248 | return -EINVAL; |
| 1249 | } |
| 1250 | |
| 1251 | stream->request.format.bitdepth = bits; |
| 1252 | return 0; |
| 1253 | } |
| 1254 | |
| 1255 | int sst_hsw_stream_set_channels(struct sst_hsw *hsw, |
| 1256 | struct sst_hsw_stream *stream, int channels) |
| 1257 | { |
| 1258 | if (stream->commited) { |
| 1259 | dev_err(hsw->dev, "error: stream committed for set channels\n"); |
| 1260 | return -EINVAL; |
| 1261 | } |
| 1262 | |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1263 | stream->request.format.ch_num = channels; |
| 1264 | return 0; |
| 1265 | } |
| 1266 | |
| 1267 | int sst_hsw_stream_set_rate(struct sst_hsw *hsw, |
| 1268 | struct sst_hsw_stream *stream, int rate) |
| 1269 | { |
| 1270 | if (stream->commited) { |
| 1271 | dev_err(hsw->dev, "error: stream committed for set rate\n"); |
| 1272 | return -EINVAL; |
| 1273 | } |
| 1274 | |
| 1275 | stream->request.format.frequency = rate; |
| 1276 | return 0; |
| 1277 | } |
| 1278 | |
| 1279 | int sst_hsw_stream_set_map_config(struct sst_hsw *hsw, |
| 1280 | struct sst_hsw_stream *stream, u32 map, |
| 1281 | enum sst_hsw_channel_config config) |
| 1282 | { |
| 1283 | if (stream->commited) { |
| 1284 | dev_err(hsw->dev, "error: stream committed for set map\n"); |
| 1285 | return -EINVAL; |
| 1286 | } |
| 1287 | |
| 1288 | stream->request.format.map = map; |
| 1289 | stream->request.format.config = config; |
| 1290 | return 0; |
| 1291 | } |
| 1292 | |
| 1293 | int sst_hsw_stream_set_style(struct sst_hsw *hsw, |
| 1294 | struct sst_hsw_stream *stream, enum sst_hsw_interleaving style) |
| 1295 | { |
| 1296 | if (stream->commited) { |
| 1297 | dev_err(hsw->dev, "error: stream committed for set style\n"); |
| 1298 | return -EINVAL; |
| 1299 | } |
| 1300 | |
| 1301 | stream->request.format.style = style; |
| 1302 | return 0; |
| 1303 | } |
| 1304 | |
| 1305 | int sst_hsw_stream_set_valid(struct sst_hsw *hsw, |
| 1306 | struct sst_hsw_stream *stream, u32 bits) |
| 1307 | { |
| 1308 | if (stream->commited) { |
| 1309 | dev_err(hsw->dev, "error: stream committed for set valid bits\n"); |
| 1310 | return -EINVAL; |
| 1311 | } |
| 1312 | |
| 1313 | stream->request.format.valid_bit = bits; |
| 1314 | return 0; |
| 1315 | } |
| 1316 | |
| 1317 | /* Stream Configuration */ |
| 1318 | int sst_hsw_stream_format(struct sst_hsw *hsw, struct sst_hsw_stream *stream, |
| 1319 | enum sst_hsw_stream_path_id path_id, |
| 1320 | enum sst_hsw_stream_type stream_type, |
| 1321 | enum sst_hsw_stream_format format_id) |
| 1322 | { |
| 1323 | if (stream->commited) { |
| 1324 | dev_err(hsw->dev, "error: stream committed for set format\n"); |
| 1325 | return -EINVAL; |
| 1326 | } |
| 1327 | |
| 1328 | stream->request.path_id = path_id; |
| 1329 | stream->request.stream_type = stream_type; |
| 1330 | stream->request.format_id = format_id; |
| 1331 | |
| 1332 | trace_hsw_stream_alloc_request(stream, &stream->request); |
| 1333 | |
| 1334 | return 0; |
| 1335 | } |
| 1336 | |
| 1337 | int sst_hsw_stream_buffer(struct sst_hsw *hsw, struct sst_hsw_stream *stream, |
| 1338 | u32 ring_pt_address, u32 num_pages, |
| 1339 | u32 ring_size, u32 ring_offset, u32 ring_first_pfn) |
| 1340 | { |
| 1341 | if (stream->commited) { |
| 1342 | dev_err(hsw->dev, "error: stream committed for buffer\n"); |
| 1343 | return -EINVAL; |
| 1344 | } |
| 1345 | |
| 1346 | stream->request.ringinfo.ring_pt_address = ring_pt_address; |
| 1347 | stream->request.ringinfo.num_pages = num_pages; |
| 1348 | stream->request.ringinfo.ring_size = ring_size; |
| 1349 | stream->request.ringinfo.ring_offset = ring_offset; |
| 1350 | stream->request.ringinfo.ring_first_pfn = ring_first_pfn; |
| 1351 | |
| 1352 | trace_hsw_stream_buffer(stream); |
| 1353 | |
| 1354 | return 0; |
| 1355 | } |
| 1356 | |
| 1357 | int sst_hsw_stream_set_module_info(struct sst_hsw *hsw, |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1358 | struct sst_hsw_stream *stream, struct sst_module_runtime *runtime) |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1359 | { |
| 1360 | struct sst_hsw_module_map *map = &stream->request.map; |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1361 | struct sst_dsp *dsp = sst_hsw_get_dsp(hsw); |
| 1362 | struct sst_module *module = runtime->module; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1363 | |
| 1364 | if (stream->commited) { |
| 1365 | dev_err(hsw->dev, "error: stream committed for set module\n"); |
| 1366 | return -EINVAL; |
| 1367 | } |
| 1368 | |
| 1369 | /* only support initial module atm */ |
| 1370 | map->module_entries_count = 1; |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1371 | map->module_entries[0].module_id = module->id; |
| 1372 | map->module_entries[0].entry_point = module->entry; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1373 | |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1374 | stream->request.persistent_mem.offset = |
| 1375 | sst_dsp_get_offset(dsp, runtime->persistent_offset, SST_MEM_DRAM); |
| 1376 | stream->request.persistent_mem.size = module->persistent_size; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1377 | |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1378 | stream->request.scratch_mem.offset = |
| 1379 | sst_dsp_get_offset(dsp, dsp->scratch_offset, SST_MEM_DRAM); |
| 1380 | stream->request.scratch_mem.size = dsp->scratch_size; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1381 | |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1382 | dev_dbg(hsw->dev, "module %d runtime %d using:\n", module->id, |
| 1383 | runtime->id); |
| 1384 | dev_dbg(hsw->dev, " persistent offset 0x%x bytes 0x%x\n", |
| 1385 | stream->request.persistent_mem.offset, |
| 1386 | stream->request.persistent_mem.size); |
| 1387 | dev_dbg(hsw->dev, " scratch offset 0x%x bytes 0x%x\n", |
| 1388 | stream->request.scratch_mem.offset, |
| 1389 | stream->request.scratch_mem.size); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1390 | |
| 1391 | return 0; |
| 1392 | } |
| 1393 | |
| 1394 | int sst_hsw_stream_commit(struct sst_hsw *hsw, struct sst_hsw_stream *stream) |
| 1395 | { |
| 1396 | struct sst_hsw_ipc_stream_alloc_req *str_req = &stream->request; |
| 1397 | struct sst_hsw_ipc_stream_alloc_reply *reply = &stream->reply; |
| 1398 | u32 header; |
| 1399 | int ret; |
| 1400 | |
| 1401 | trace_ipc_request("stream alloc", stream->host_id); |
| 1402 | |
| 1403 | header = IPC_GLB_TYPE(IPC_GLB_ALLOCATE_STREAM); |
| 1404 | |
| 1405 | ret = ipc_tx_message_wait(hsw, header, str_req, sizeof(*str_req), |
| 1406 | reply, sizeof(*reply)); |
| 1407 | if (ret < 0) { |
| 1408 | dev_err(hsw->dev, "error: stream commit failed\n"); |
| 1409 | return ret; |
| 1410 | } |
| 1411 | |
| 1412 | stream->commited = 1; |
| 1413 | trace_hsw_stream_alloc_reply(stream); |
| 1414 | |
| 1415 | return 0; |
| 1416 | } |
| 1417 | |
| 1418 | /* Stream Information - these calls could be inline but we want the IPC |
| 1419 | ABI to be opaque to client PCM drivers to cope with any future ABI changes */ |
| 1420 | int sst_hsw_stream_get_hw_id(struct sst_hsw *hsw, |
| 1421 | struct sst_hsw_stream *stream) |
| 1422 | { |
| 1423 | return stream->reply.stream_hw_id; |
| 1424 | } |
| 1425 | |
| 1426 | int sst_hsw_stream_get_mixer_id(struct sst_hsw *hsw, |
| 1427 | struct sst_hsw_stream *stream) |
| 1428 | { |
| 1429 | return stream->reply.mixer_hw_id; |
| 1430 | } |
| 1431 | |
| 1432 | u32 sst_hsw_stream_get_read_reg(struct sst_hsw *hsw, |
| 1433 | struct sst_hsw_stream *stream) |
| 1434 | { |
| 1435 | return stream->reply.read_position_register_address; |
| 1436 | } |
| 1437 | |
| 1438 | u32 sst_hsw_stream_get_pointer_reg(struct sst_hsw *hsw, |
| 1439 | struct sst_hsw_stream *stream) |
| 1440 | { |
| 1441 | return stream->reply.presentation_position_register_address; |
| 1442 | } |
| 1443 | |
| 1444 | u32 sst_hsw_stream_get_peak_reg(struct sst_hsw *hsw, |
| 1445 | struct sst_hsw_stream *stream, u32 channel) |
| 1446 | { |
| 1447 | if (channel >= 2) |
| 1448 | return 0; |
| 1449 | |
| 1450 | return stream->reply.peak_meter_register_address[channel]; |
| 1451 | } |
| 1452 | |
| 1453 | u32 sst_hsw_stream_get_vol_reg(struct sst_hsw *hsw, |
| 1454 | struct sst_hsw_stream *stream, u32 channel) |
| 1455 | { |
| 1456 | if (channel >= 2) |
| 1457 | return 0; |
| 1458 | |
| 1459 | return stream->reply.volume_register_address[channel]; |
| 1460 | } |
| 1461 | |
| 1462 | int sst_hsw_mixer_get_info(struct sst_hsw *hsw) |
| 1463 | { |
| 1464 | struct sst_hsw_ipc_stream_info_reply *reply; |
| 1465 | u32 header; |
| 1466 | int ret; |
| 1467 | |
| 1468 | reply = &hsw->mixer_info; |
| 1469 | header = IPC_GLB_TYPE(IPC_GLB_GET_MIXER_STREAM_INFO); |
| 1470 | |
| 1471 | trace_ipc_request("get global mixer info", 0); |
| 1472 | |
| 1473 | ret = ipc_tx_message_wait(hsw, header, NULL, 0, reply, sizeof(*reply)); |
| 1474 | if (ret < 0) { |
| 1475 | dev_err(hsw->dev, "error: get stream info failed\n"); |
| 1476 | return ret; |
| 1477 | } |
| 1478 | |
| 1479 | trace_hsw_mixer_info_reply(reply); |
| 1480 | |
| 1481 | return 0; |
| 1482 | } |
| 1483 | |
| 1484 | /* Send stream command */ |
| 1485 | static int sst_hsw_stream_operations(struct sst_hsw *hsw, int type, |
| 1486 | int stream_id, int wait) |
| 1487 | { |
| 1488 | u32 header; |
| 1489 | |
| 1490 | header = IPC_GLB_TYPE(IPC_GLB_STREAM_MESSAGE) | IPC_STR_TYPE(type); |
| 1491 | header |= (stream_id << IPC_STR_ID_SHIFT); |
| 1492 | |
| 1493 | if (wait) |
| 1494 | return ipc_tx_message_wait(hsw, header, NULL, 0, NULL, 0); |
| 1495 | else |
| 1496 | return ipc_tx_message_nowait(hsw, header, NULL, 0); |
| 1497 | } |
| 1498 | |
| 1499 | /* Stream ALSA trigger operations */ |
| 1500 | int sst_hsw_stream_pause(struct sst_hsw *hsw, struct sst_hsw_stream *stream, |
| 1501 | int wait) |
| 1502 | { |
| 1503 | int ret; |
| 1504 | |
| 1505 | trace_ipc_request("stream pause", stream->reply.stream_hw_id); |
| 1506 | |
| 1507 | ret = sst_hsw_stream_operations(hsw, IPC_STR_PAUSE, |
| 1508 | stream->reply.stream_hw_id, wait); |
| 1509 | if (ret < 0) |
| 1510 | dev_err(hsw->dev, "error: failed to pause stream %d\n", |
| 1511 | stream->reply.stream_hw_id); |
| 1512 | |
| 1513 | return ret; |
| 1514 | } |
| 1515 | |
| 1516 | int sst_hsw_stream_resume(struct sst_hsw *hsw, struct sst_hsw_stream *stream, |
| 1517 | int wait) |
| 1518 | { |
| 1519 | int ret; |
| 1520 | |
| 1521 | trace_ipc_request("stream resume", stream->reply.stream_hw_id); |
| 1522 | |
| 1523 | ret = sst_hsw_stream_operations(hsw, IPC_STR_RESUME, |
| 1524 | stream->reply.stream_hw_id, wait); |
| 1525 | if (ret < 0) |
| 1526 | dev_err(hsw->dev, "error: failed to resume stream %d\n", |
| 1527 | stream->reply.stream_hw_id); |
| 1528 | |
| 1529 | return ret; |
| 1530 | } |
| 1531 | |
| 1532 | int sst_hsw_stream_reset(struct sst_hsw *hsw, struct sst_hsw_stream *stream) |
| 1533 | { |
| 1534 | int ret, tries = 10; |
| 1535 | |
| 1536 | /* dont reset streams that are not commited */ |
| 1537 | if (!stream->commited) |
| 1538 | return 0; |
| 1539 | |
| 1540 | /* wait for pause to complete before we reset the stream */ |
| 1541 | while (stream->running && tries--) |
| 1542 | msleep(1); |
| 1543 | if (!tries) { |
| 1544 | dev_err(hsw->dev, "error: reset stream %d still running\n", |
| 1545 | stream->reply.stream_hw_id); |
| 1546 | return -EINVAL; |
| 1547 | } |
| 1548 | |
| 1549 | trace_ipc_request("stream reset", stream->reply.stream_hw_id); |
| 1550 | |
| 1551 | ret = sst_hsw_stream_operations(hsw, IPC_STR_RESET, |
| 1552 | stream->reply.stream_hw_id, 1); |
| 1553 | if (ret < 0) |
| 1554 | dev_err(hsw->dev, "error: failed to reset stream %d\n", |
| 1555 | stream->reply.stream_hw_id); |
| 1556 | return ret; |
| 1557 | } |
| 1558 | |
| 1559 | /* Stream pointer positions */ |
Liam Girdwood | 51b4e24 | 2014-05-02 16:56:33 +0100 | [diff] [blame] | 1560 | u32 sst_hsw_get_dsp_position(struct sst_hsw *hsw, |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1561 | struct sst_hsw_stream *stream) |
| 1562 | { |
Liam Girdwood | 51b4e24 | 2014-05-02 16:56:33 +0100 | [diff] [blame] | 1563 | u32 rpos; |
| 1564 | |
| 1565 | sst_dsp_read(hsw->dsp, &rpos, |
| 1566 | stream->reply.read_position_register_address, sizeof(rpos)); |
| 1567 | |
| 1568 | return rpos; |
| 1569 | } |
| 1570 | |
| 1571 | /* Stream presentation (monotonic) positions */ |
| 1572 | u64 sst_hsw_get_dsp_presentation_position(struct sst_hsw *hsw, |
| 1573 | struct sst_hsw_stream *stream) |
| 1574 | { |
| 1575 | u64 ppos; |
| 1576 | |
| 1577 | sst_dsp_read(hsw->dsp, &ppos, |
| 1578 | stream->reply.presentation_position_register_address, |
| 1579 | sizeof(ppos)); |
| 1580 | |
| 1581 | return ppos; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1582 | } |
| 1583 | |
| 1584 | int sst_hsw_stream_set_write_position(struct sst_hsw *hsw, |
| 1585 | struct sst_hsw_stream *stream, u32 stage_id, u32 position) |
| 1586 | { |
| 1587 | u32 header; |
| 1588 | int ret; |
| 1589 | |
| 1590 | trace_stream_write_position(stream->reply.stream_hw_id, position); |
| 1591 | |
| 1592 | header = IPC_GLB_TYPE(IPC_GLB_STREAM_MESSAGE) | |
| 1593 | IPC_STR_TYPE(IPC_STR_STAGE_MESSAGE); |
| 1594 | header |= (stream->reply.stream_hw_id << IPC_STR_ID_SHIFT); |
| 1595 | header |= (IPC_STG_SET_WRITE_POSITION << IPC_STG_TYPE_SHIFT); |
| 1596 | header |= (stage_id << IPC_STG_ID_SHIFT); |
| 1597 | stream->wpos.position = position; |
| 1598 | |
| 1599 | ret = ipc_tx_message_nowait(hsw, header, &stream->wpos, |
| 1600 | sizeof(stream->wpos)); |
| 1601 | if (ret < 0) |
| 1602 | dev_err(hsw->dev, "error: stream %d set position %d failed\n", |
| 1603 | stream->reply.stream_hw_id, position); |
| 1604 | |
| 1605 | return ret; |
| 1606 | } |
| 1607 | |
| 1608 | /* physical BE config */ |
| 1609 | int sst_hsw_device_set_config(struct sst_hsw *hsw, |
| 1610 | enum sst_hsw_device_id dev, enum sst_hsw_device_mclk mclk, |
| 1611 | enum sst_hsw_device_mode mode, u32 clock_divider) |
| 1612 | { |
| 1613 | struct sst_hsw_ipc_device_config_req config; |
| 1614 | u32 header; |
| 1615 | int ret; |
| 1616 | |
| 1617 | trace_ipc_request("set device config", dev); |
| 1618 | |
| 1619 | config.ssp_interface = dev; |
| 1620 | config.clock_frequency = mclk; |
| 1621 | config.mode = mode; |
| 1622 | config.clock_divider = clock_divider; |
Liam Girdwood | f07e51c | 2014-10-16 15:29:15 +0100 | [diff] [blame] | 1623 | if (mode == SST_HSW_DEVICE_TDM_CLOCK_MASTER) |
| 1624 | config.channels = 4; |
| 1625 | else |
| 1626 | config.channels = 2; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1627 | |
| 1628 | trace_hsw_device_config_req(&config); |
| 1629 | |
| 1630 | header = IPC_GLB_TYPE(IPC_GLB_SET_DEVICE_FORMATS); |
| 1631 | |
| 1632 | ret = ipc_tx_message_wait(hsw, header, &config, sizeof(config), |
| 1633 | NULL, 0); |
| 1634 | if (ret < 0) |
| 1635 | dev_err(hsw->dev, "error: set device formats failed\n"); |
| 1636 | |
| 1637 | return ret; |
| 1638 | } |
| 1639 | EXPORT_SYMBOL_GPL(sst_hsw_device_set_config); |
| 1640 | |
| 1641 | /* DX Config */ |
| 1642 | int sst_hsw_dx_set_state(struct sst_hsw *hsw, |
| 1643 | enum sst_hsw_dx_state state, struct sst_hsw_ipc_dx_reply *dx) |
| 1644 | { |
| 1645 | u32 header, state_; |
Liam Girdwood | 543ec63 | 2014-07-30 20:11:26 +0800 | [diff] [blame] | 1646 | int ret, item; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1647 | |
| 1648 | header = IPC_GLB_TYPE(IPC_GLB_ENTER_DX_STATE); |
| 1649 | state_ = state; |
| 1650 | |
| 1651 | trace_ipc_request("PM enter Dx state", state); |
| 1652 | |
| 1653 | ret = ipc_tx_message_wait(hsw, header, &state_, sizeof(state_), |
Dan Carpenter | 7897ab7 | 2014-04-16 18:38:11 +0300 | [diff] [blame] | 1654 | dx, sizeof(*dx)); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1655 | if (ret < 0) { |
| 1656 | dev_err(hsw->dev, "ipc: error set dx state %d failed\n", state); |
| 1657 | return ret; |
| 1658 | } |
| 1659 | |
Liam Girdwood | 543ec63 | 2014-07-30 20:11:26 +0800 | [diff] [blame] | 1660 | for (item = 0; item < dx->entries_no; item++) { |
| 1661 | dev_dbg(hsw->dev, |
| 1662 | "Item[%d] offset[%x] - size[%x] - source[%x]\n", |
| 1663 | item, dx->mem_info[item].offset, |
| 1664 | dx->mem_info[item].size, |
| 1665 | dx->mem_info[item].source); |
| 1666 | } |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1667 | dev_dbg(hsw->dev, "ipc: got %d entry numbers for state %d\n", |
| 1668 | dx->entries_no, state); |
| 1669 | |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1670 | return ret; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1671 | } |
| 1672 | |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1673 | struct sst_module_runtime *sst_hsw_runtime_module_create(struct sst_hsw *hsw, |
| 1674 | int mod_id, int offset) |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1675 | { |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1676 | struct sst_dsp *dsp = hsw->dsp; |
| 1677 | struct sst_module *module; |
| 1678 | struct sst_module_runtime *runtime; |
| 1679 | int err; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1680 | |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1681 | module = sst_module_get_from_id(dsp, mod_id); |
| 1682 | if (module == NULL) { |
| 1683 | dev_err(dsp->dev, "error: failed to get module %d for pcm\n", |
| 1684 | mod_id); |
| 1685 | return NULL; |
| 1686 | } |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1687 | |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1688 | runtime = sst_module_runtime_new(module, mod_id, NULL); |
| 1689 | if (runtime == NULL) { |
| 1690 | dev_err(dsp->dev, "error: failed to create module %d runtime\n", |
| 1691 | mod_id); |
| 1692 | return NULL; |
| 1693 | } |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1694 | |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1695 | err = sst_module_runtime_alloc_blocks(runtime, offset); |
| 1696 | if (err < 0) { |
| 1697 | dev_err(dsp->dev, "error: failed to alloc blocks for module %d runtime\n", |
| 1698 | mod_id); |
| 1699 | sst_module_runtime_free(runtime); |
| 1700 | return NULL; |
| 1701 | } |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1702 | |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1703 | dev_dbg(dsp->dev, "runtime id %d created for module %d\n", runtime->id, |
| 1704 | mod_id); |
| 1705 | return runtime; |
| 1706 | } |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1707 | |
Liam Girdwood | e9600bc | 2014-10-28 17:37:12 +0000 | [diff] [blame] | 1708 | void sst_hsw_runtime_module_free(struct sst_module_runtime *runtime) |
| 1709 | { |
| 1710 | sst_module_runtime_free_blocks(runtime); |
| 1711 | sst_module_runtime_free(runtime); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1712 | } |
| 1713 | |
Liam Girdwood | aed3c7b | 2014-10-29 17:40:42 +0000 | [diff] [blame^] | 1714 | #ifdef CONFIG_PM_RUNTIME |
| 1715 | static int sst_hsw_dx_state_dump(struct sst_hsw *hsw) |
| 1716 | { |
| 1717 | struct sst_dsp *sst = hsw->dsp; |
| 1718 | u32 item, offset, size; |
| 1719 | int ret = 0; |
| 1720 | |
| 1721 | trace_ipc_request("PM state dump. Items #", SST_HSW_MAX_DX_REGIONS); |
| 1722 | |
| 1723 | if (hsw->dx.entries_no > SST_HSW_MAX_DX_REGIONS) { |
| 1724 | dev_err(hsw->dev, |
| 1725 | "error: number of FW context regions greater than %d\n", |
| 1726 | SST_HSW_MAX_DX_REGIONS); |
| 1727 | memset(&hsw->dx, 0, sizeof(hsw->dx)); |
| 1728 | return -EINVAL; |
| 1729 | } |
| 1730 | |
| 1731 | ret = sst_dsp_dma_get_channel(sst, 0); |
| 1732 | if (ret < 0) { |
| 1733 | dev_err(hsw->dev, "error: cant allocate dma channel %d\n", ret); |
| 1734 | return ret; |
| 1735 | } |
| 1736 | |
| 1737 | /* set on-demond mode on engine 0 channel 3 */ |
| 1738 | sst_dsp_shim_update_bits(sst, SST_HMDC, |
| 1739 | SST_HMDC_HDDA_E0_ALLCH | SST_HMDC_HDDA_E1_ALLCH, |
| 1740 | SST_HMDC_HDDA_E0_ALLCH | SST_HMDC_HDDA_E1_ALLCH); |
| 1741 | |
| 1742 | for (item = 0; item < hsw->dx.entries_no; item++) { |
| 1743 | if (hsw->dx.mem_info[item].source == SST_HSW_DX_TYPE_MEMORY_DUMP |
| 1744 | && hsw->dx.mem_info[item].offset > DSP_DRAM_ADDR_OFFSET |
| 1745 | && hsw->dx.mem_info[item].offset < |
| 1746 | DSP_DRAM_ADDR_OFFSET + SST_HSW_DX_CONTEXT_SIZE) { |
| 1747 | |
| 1748 | offset = hsw->dx.mem_info[item].offset |
| 1749 | - DSP_DRAM_ADDR_OFFSET; |
| 1750 | size = (hsw->dx.mem_info[item].size + 3) & (~3); |
| 1751 | |
| 1752 | ret = sst_dsp_dma_copyfrom(sst, hsw->dx_context_paddr + offset, |
| 1753 | sst->addr.lpe_base + offset, size); |
| 1754 | if (ret < 0) { |
| 1755 | dev_err(hsw->dev, |
| 1756 | "error: FW context dump failed\n"); |
| 1757 | memset(&hsw->dx, 0, sizeof(hsw->dx)); |
| 1758 | goto out; |
| 1759 | } |
| 1760 | } |
| 1761 | } |
| 1762 | |
| 1763 | out: |
| 1764 | sst_dsp_dma_put_channel(sst); |
| 1765 | return ret; |
| 1766 | } |
| 1767 | |
| 1768 | static int sst_hsw_dx_state_restore(struct sst_hsw *hsw) |
| 1769 | { |
| 1770 | struct sst_dsp *sst = hsw->dsp; |
| 1771 | u32 item, offset, size; |
| 1772 | int ret; |
| 1773 | |
| 1774 | for (item = 0; item < hsw->dx.entries_no; item++) { |
| 1775 | if (hsw->dx.mem_info[item].source == SST_HSW_DX_TYPE_MEMORY_DUMP |
| 1776 | && hsw->dx.mem_info[item].offset > DSP_DRAM_ADDR_OFFSET |
| 1777 | && hsw->dx.mem_info[item].offset < |
| 1778 | DSP_DRAM_ADDR_OFFSET + SST_HSW_DX_CONTEXT_SIZE) { |
| 1779 | |
| 1780 | offset = hsw->dx.mem_info[item].offset |
| 1781 | - DSP_DRAM_ADDR_OFFSET; |
| 1782 | size = (hsw->dx.mem_info[item].size + 3) & (~3); |
| 1783 | |
| 1784 | ret = sst_dsp_dma_copyto(sst, sst->addr.lpe_base + offset, |
| 1785 | hsw->dx_context_paddr + offset, size); |
| 1786 | if (ret < 0) { |
| 1787 | dev_err(hsw->dev, |
| 1788 | "error: FW context restore failed\n"); |
| 1789 | return ret; |
| 1790 | } |
| 1791 | } |
| 1792 | } |
| 1793 | |
| 1794 | return 0; |
| 1795 | } |
| 1796 | |
| 1797 | static void sst_hsw_drop_all(struct sst_hsw *hsw) |
| 1798 | { |
| 1799 | struct ipc_message *msg, *tmp; |
| 1800 | unsigned long flags; |
| 1801 | int tx_drop_cnt = 0, rx_drop_cnt = 0; |
| 1802 | |
| 1803 | /* drop all TX and Rx messages before we stall + reset DSP */ |
| 1804 | spin_lock_irqsave(&hsw->dsp->spinlock, flags); |
| 1805 | |
| 1806 | list_for_each_entry_safe(msg, tmp, &hsw->tx_list, list) { |
| 1807 | list_move(&msg->list, &hsw->empty_list); |
| 1808 | tx_drop_cnt++; |
| 1809 | } |
| 1810 | |
| 1811 | list_for_each_entry_safe(msg, tmp, &hsw->rx_list, list) { |
| 1812 | list_move(&msg->list, &hsw->empty_list); |
| 1813 | rx_drop_cnt++; |
| 1814 | } |
| 1815 | |
| 1816 | spin_unlock_irqrestore(&hsw->dsp->spinlock, flags); |
| 1817 | |
| 1818 | if (tx_drop_cnt || rx_drop_cnt) |
| 1819 | dev_err(hsw->dev, "dropped IPC msg RX=%d, TX=%d\n", |
| 1820 | tx_drop_cnt, rx_drop_cnt); |
| 1821 | } |
| 1822 | |
| 1823 | int sst_hsw_dsp_load(struct sst_hsw *hsw) |
| 1824 | { |
| 1825 | struct sst_dsp *dsp = hsw->dsp; |
| 1826 | int ret; |
| 1827 | |
| 1828 | dev_dbg(hsw->dev, "loading audio DSP...."); |
| 1829 | |
| 1830 | ret = sst_dsp_wake(dsp); |
| 1831 | if (ret < 0) { |
| 1832 | dev_err(hsw->dev, "error: failed to wake audio DSP\n"); |
| 1833 | return -ENODEV; |
| 1834 | } |
| 1835 | |
| 1836 | ret = sst_dsp_dma_get_channel(dsp, 0); |
| 1837 | if (ret < 0) { |
| 1838 | dev_err(hsw->dev, "error: cant allocate dma channel %d\n", ret); |
| 1839 | return ret; |
| 1840 | } |
| 1841 | |
| 1842 | ret = sst_fw_reload(hsw->sst_fw); |
| 1843 | if (ret < 0) { |
| 1844 | dev_err(hsw->dev, "error: SST FW reload failed\n"); |
| 1845 | sst_dsp_dma_put_channel(dsp); |
| 1846 | return -ENOMEM; |
| 1847 | } |
| 1848 | |
| 1849 | sst_dsp_dma_put_channel(dsp); |
| 1850 | return 0; |
| 1851 | } |
| 1852 | |
| 1853 | static int sst_hsw_dsp_restore(struct sst_hsw *hsw) |
| 1854 | { |
| 1855 | struct sst_dsp *dsp = hsw->dsp; |
| 1856 | int ret; |
| 1857 | |
| 1858 | dev_dbg(hsw->dev, "restoring audio DSP...."); |
| 1859 | |
| 1860 | ret = sst_dsp_dma_get_channel(dsp, 0); |
| 1861 | if (ret < 0) { |
| 1862 | dev_err(hsw->dev, "error: cant allocate dma channel %d\n", ret); |
| 1863 | return ret; |
| 1864 | } |
| 1865 | |
| 1866 | ret = sst_hsw_dx_state_restore(hsw); |
| 1867 | if (ret < 0) { |
| 1868 | dev_err(hsw->dev, "error: SST FW context restore failed\n"); |
| 1869 | sst_dsp_dma_put_channel(dsp); |
| 1870 | return -ENOMEM; |
| 1871 | } |
| 1872 | sst_dsp_dma_put_channel(dsp); |
| 1873 | |
| 1874 | /* wait for DSP boot completion */ |
| 1875 | sst_dsp_boot(dsp); |
| 1876 | |
| 1877 | return ret; |
| 1878 | } |
| 1879 | |
| 1880 | int sst_hsw_dsp_runtime_suspend(struct sst_hsw *hsw) |
| 1881 | { |
| 1882 | int ret; |
| 1883 | |
| 1884 | dev_dbg(hsw->dev, "audio dsp runtime suspend\n"); |
| 1885 | |
| 1886 | ret = sst_hsw_dx_set_state(hsw, SST_HSW_DX_STATE_D3, &hsw->dx); |
| 1887 | if (ret < 0) |
| 1888 | return ret; |
| 1889 | |
| 1890 | sst_dsp_stall(hsw->dsp); |
| 1891 | |
| 1892 | ret = sst_hsw_dx_state_dump(hsw); |
| 1893 | if (ret < 0) |
| 1894 | return ret; |
| 1895 | |
| 1896 | sst_hsw_drop_all(hsw); |
| 1897 | |
| 1898 | return 0; |
| 1899 | } |
| 1900 | |
| 1901 | int sst_hsw_dsp_runtime_sleep(struct sst_hsw *hsw) |
| 1902 | { |
| 1903 | sst_fw_unload(hsw->sst_fw); |
| 1904 | sst_block_free_scratch(hsw->dsp); |
| 1905 | |
| 1906 | hsw->boot_complete = false; |
| 1907 | |
| 1908 | sst_dsp_sleep(hsw->dsp); |
| 1909 | |
| 1910 | return 0; |
| 1911 | } |
| 1912 | |
| 1913 | int sst_hsw_dsp_runtime_resume(struct sst_hsw *hsw) |
| 1914 | { |
| 1915 | struct device *dev = hsw->dev; |
| 1916 | int ret; |
| 1917 | |
| 1918 | dev_dbg(dev, "audio dsp runtime resume\n"); |
| 1919 | |
| 1920 | if (hsw->boot_complete) |
| 1921 | return 1; /* tell caller no action is required */ |
| 1922 | |
| 1923 | ret = sst_hsw_dsp_restore(hsw); |
| 1924 | if (ret < 0) |
| 1925 | dev_err(dev, "error: audio DSP boot failure\n"); |
| 1926 | |
| 1927 | ret = wait_event_timeout(hsw->boot_wait, hsw->boot_complete, |
| 1928 | msecs_to_jiffies(IPC_BOOT_MSECS)); |
| 1929 | if (ret == 0) { |
| 1930 | dev_err(hsw->dev, "error: audio DSP boot timeout\n"); |
| 1931 | return -EIO; |
| 1932 | } |
| 1933 | |
| 1934 | /* Set ADSP SSP port settings */ |
| 1935 | ret = sst_hsw_device_set_config(hsw, SST_HSW_DEVICE_SSP_0, |
| 1936 | SST_HSW_DEVICE_MCLK_FREQ_24_MHZ, |
| 1937 | SST_HSW_DEVICE_CLOCK_MASTER, 9); |
| 1938 | if (ret < 0) |
| 1939 | dev_err(dev, "error: SSP re-initialization failed\n"); |
| 1940 | |
| 1941 | return ret; |
| 1942 | } |
| 1943 | #endif |
| 1944 | |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1945 | static int msg_empty_list_init(struct sst_hsw *hsw) |
| 1946 | { |
| 1947 | int i; |
| 1948 | |
| 1949 | hsw->msg = kzalloc(sizeof(struct ipc_message) * |
| 1950 | IPC_EMPTY_LIST_SIZE, GFP_KERNEL); |
| 1951 | if (hsw->msg == NULL) |
| 1952 | return -ENOMEM; |
| 1953 | |
| 1954 | for (i = 0; i < IPC_EMPTY_LIST_SIZE; i++) { |
| 1955 | init_waitqueue_head(&hsw->msg[i].waitq); |
| 1956 | list_add(&hsw->msg[i].list, &hsw->empty_list); |
| 1957 | } |
| 1958 | |
| 1959 | return 0; |
| 1960 | } |
| 1961 | |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1962 | struct sst_dsp *sst_hsw_get_dsp(struct sst_hsw *hsw) |
| 1963 | { |
| 1964 | return hsw->dsp; |
| 1965 | } |
| 1966 | |
| 1967 | static struct sst_dsp_device hsw_dev = { |
| 1968 | .thread = hsw_irq_thread, |
| 1969 | .ops = &haswell_ops, |
| 1970 | }; |
| 1971 | |
| 1972 | int sst_hsw_dsp_init(struct device *dev, struct sst_pdata *pdata) |
| 1973 | { |
| 1974 | struct sst_hsw_ipc_fw_version version; |
| 1975 | struct sst_hsw *hsw; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1976 | int ret; |
| 1977 | |
| 1978 | dev_dbg(dev, "initialising Audio DSP IPC\n"); |
| 1979 | |
| 1980 | hsw = devm_kzalloc(dev, sizeof(*hsw), GFP_KERNEL); |
| 1981 | if (hsw == NULL) |
| 1982 | return -ENOMEM; |
| 1983 | |
| 1984 | hsw->dev = dev; |
| 1985 | INIT_LIST_HEAD(&hsw->stream_list); |
| 1986 | INIT_LIST_HEAD(&hsw->tx_list); |
| 1987 | INIT_LIST_HEAD(&hsw->rx_list); |
| 1988 | INIT_LIST_HEAD(&hsw->empty_list); |
| 1989 | init_waitqueue_head(&hsw->boot_wait); |
| 1990 | init_waitqueue_head(&hsw->wait_txq); |
| 1991 | |
| 1992 | ret = msg_empty_list_init(hsw); |
| 1993 | if (ret < 0) |
Imre Deak | 9cf0e45 | 2014-05-30 10:52:29 +0300 | [diff] [blame] | 1994 | return -ENOMEM; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 1995 | |
| 1996 | /* start the IPC message thread */ |
| 1997 | init_kthread_worker(&hsw->kworker); |
| 1998 | hsw->tx_thread = kthread_run(kthread_worker_fn, |
Kees Cook | 3538632 | 2014-05-22 11:43:55 -0700 | [diff] [blame] | 1999 | &hsw->kworker, "%s", |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2000 | dev_name(hsw->dev)); |
| 2001 | if (IS_ERR(hsw->tx_thread)) { |
| 2002 | ret = PTR_ERR(hsw->tx_thread); |
| 2003 | dev_err(hsw->dev, "error: failed to create message TX task\n"); |
Imre Deak | 9cf0e45 | 2014-05-30 10:52:29 +0300 | [diff] [blame] | 2004 | goto err_free_msg; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2005 | } |
| 2006 | init_kthread_work(&hsw->kwork, ipc_tx_msgs); |
| 2007 | |
| 2008 | hsw_dev.thread_context = hsw; |
| 2009 | |
| 2010 | /* init SST shim */ |
| 2011 | hsw->dsp = sst_dsp_new(dev, &hsw_dev, pdata); |
| 2012 | if (hsw->dsp == NULL) { |
| 2013 | ret = -ENODEV; |
Imre Deak | 9cf0e45 | 2014-05-30 10:52:29 +0300 | [diff] [blame] | 2014 | goto dsp_err; |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2015 | } |
| 2016 | |
Liam Girdwood | aed3c7b | 2014-10-29 17:40:42 +0000 | [diff] [blame^] | 2017 | /* allocate DMA buffer for context storage */ |
| 2018 | hsw->dx_context = dma_alloc_coherent(hsw->dsp->dma_dev, |
| 2019 | SST_HSW_DX_CONTEXT_SIZE, &hsw->dx_context_paddr, GFP_KERNEL); |
| 2020 | if (hsw->dx_context == NULL) { |
| 2021 | ret = -ENOMEM; |
| 2022 | goto dma_err; |
| 2023 | } |
| 2024 | |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2025 | /* keep the DSP in reset state for base FW loading */ |
| 2026 | sst_dsp_reset(hsw->dsp); |
| 2027 | |
Liam Girdwood | aed3c7b | 2014-10-29 17:40:42 +0000 | [diff] [blame^] | 2028 | hsw->sst_fw = sst_fw_new(hsw->dsp, pdata->fw, hsw); |
| 2029 | if (hsw->sst_fw == NULL) { |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2030 | ret = -ENODEV; |
| 2031 | dev_err(dev, "error: failed to load firmware\n"); |
| 2032 | goto fw_err; |
| 2033 | } |
| 2034 | |
| 2035 | /* wait for DSP boot completion */ |
| 2036 | sst_dsp_boot(hsw->dsp); |
| 2037 | ret = wait_event_timeout(hsw->boot_wait, hsw->boot_complete, |
| 2038 | msecs_to_jiffies(IPC_BOOT_MSECS)); |
| 2039 | if (ret == 0) { |
| 2040 | ret = -EIO; |
| 2041 | dev_err(hsw->dev, "error: ADSP boot timeout\n"); |
| 2042 | goto boot_err; |
| 2043 | } |
| 2044 | |
| 2045 | /* get the FW version */ |
| 2046 | sst_hsw_fw_get_version(hsw, &version); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2047 | |
| 2048 | /* get the globalmixer */ |
| 2049 | ret = sst_hsw_mixer_get_info(hsw); |
| 2050 | if (ret < 0) { |
| 2051 | dev_err(hsw->dev, "error: failed to get stream info\n"); |
| 2052 | goto boot_err; |
| 2053 | } |
| 2054 | |
| 2055 | pdata->dsp = hsw; |
| 2056 | return 0; |
| 2057 | |
| 2058 | boot_err: |
| 2059 | sst_dsp_reset(hsw->dsp); |
Liam Girdwood | aed3c7b | 2014-10-29 17:40:42 +0000 | [diff] [blame^] | 2060 | sst_fw_free(hsw->sst_fw); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2061 | fw_err: |
Liam Girdwood | aed3c7b | 2014-10-29 17:40:42 +0000 | [diff] [blame^] | 2062 | dma_free_coherent(hsw->dsp->dma_dev, SST_HSW_DX_CONTEXT_SIZE, |
| 2063 | hsw->dx_context, hsw->dx_context_paddr); |
| 2064 | dma_err: |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2065 | sst_dsp_free(hsw->dsp); |
Imre Deak | 9cf0e45 | 2014-05-30 10:52:29 +0300 | [diff] [blame] | 2066 | dsp_err: |
| 2067 | kthread_stop(hsw->tx_thread); |
| 2068 | err_free_msg: |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2069 | kfree(hsw->msg); |
Imre Deak | 9cf0e45 | 2014-05-30 10:52:29 +0300 | [diff] [blame] | 2070 | |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2071 | return ret; |
| 2072 | } |
| 2073 | EXPORT_SYMBOL_GPL(sst_hsw_dsp_init); |
| 2074 | |
| 2075 | void sst_hsw_dsp_free(struct device *dev, struct sst_pdata *pdata) |
| 2076 | { |
| 2077 | struct sst_hsw *hsw = pdata->dsp; |
| 2078 | |
| 2079 | sst_dsp_reset(hsw->dsp); |
| 2080 | sst_fw_free_all(hsw->dsp); |
Liam Girdwood | aed3c7b | 2014-10-29 17:40:42 +0000 | [diff] [blame^] | 2081 | dma_free_coherent(hsw->dsp->dma_dev, SST_HSW_DX_CONTEXT_SIZE, |
| 2082 | hsw->dx_context, hsw->dx_context_paddr); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2083 | sst_dsp_free(hsw->dsp); |
| 2084 | kfree(hsw->scratch); |
Imre Deak | 9cf0e45 | 2014-05-30 10:52:29 +0300 | [diff] [blame] | 2085 | kthread_stop(hsw->tx_thread); |
Mark Brown | a4b1299 | 2014-03-12 23:04:35 +0000 | [diff] [blame] | 2086 | kfree(hsw->msg); |
| 2087 | } |
| 2088 | EXPORT_SYMBOL_GPL(sst_hsw_dsp_free); |