Liam Girdwood | 53e0c72 | 2019-04-12 11:05:09 -0500 | [diff] [blame] | 1 | /* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */ |
| 2 | /* |
| 3 | * This file is provided under a dual BSD/GPLv2 license. When using or |
| 4 | * redistributing this file, you may do so under either license. |
| 5 | * |
| 6 | * Copyright(c) 2018 Intel Corporation. All rights reserved. |
| 7 | */ |
| 8 | |
| 9 | #ifndef __INCLUDE_SOUND_SOF_HEADER_H__ |
| 10 | #define __INCLUDE_SOUND_SOF_HEADER_H__ |
| 11 | |
| 12 | #include <uapi/sound/sof/abi.h> |
| 13 | |
| 14 | /** \addtogroup sof_uapi uAPI |
| 15 | * SOF uAPI specification. |
| 16 | * @{ |
| 17 | */ |
| 18 | |
| 19 | /* |
| 20 | * IPC messages have a prefixed 32 bit identifier made up as follows :- |
| 21 | * |
| 22 | * 0xGCCCNNNN where |
| 23 | * G is global cmd type (4 bits) |
| 24 | * C is command type (12 bits) |
| 25 | * I is the ID number (16 bits) - monotonic and overflows |
| 26 | * |
| 27 | * This is sent at the start of the IPM message in the mailbox. Messages should |
| 28 | * not be sent in the doorbell (special exceptions for firmware . |
| 29 | */ |
| 30 | |
| 31 | /* Global Message - Generic */ |
| 32 | #define SOF_GLB_TYPE_SHIFT 28 |
| 33 | #define SOF_GLB_TYPE_MASK (0xf << SOF_GLB_TYPE_SHIFT) |
| 34 | #define SOF_GLB_TYPE(x) ((x) << SOF_GLB_TYPE_SHIFT) |
| 35 | |
| 36 | /* Command Message - Generic */ |
| 37 | #define SOF_CMD_TYPE_SHIFT 16 |
| 38 | #define SOF_CMD_TYPE_MASK (0xfff << SOF_CMD_TYPE_SHIFT) |
| 39 | #define SOF_CMD_TYPE(x) ((x) << SOF_CMD_TYPE_SHIFT) |
| 40 | |
| 41 | /* Global Message Types */ |
| 42 | #define SOF_IPC_GLB_REPLY SOF_GLB_TYPE(0x1U) |
| 43 | #define SOF_IPC_GLB_COMPOUND SOF_GLB_TYPE(0x2U) |
| 44 | #define SOF_IPC_GLB_TPLG_MSG SOF_GLB_TYPE(0x3U) |
| 45 | #define SOF_IPC_GLB_PM_MSG SOF_GLB_TYPE(0x4U) |
| 46 | #define SOF_IPC_GLB_COMP_MSG SOF_GLB_TYPE(0x5U) |
| 47 | #define SOF_IPC_GLB_STREAM_MSG SOF_GLB_TYPE(0x6U) |
| 48 | #define SOF_IPC_FW_READY SOF_GLB_TYPE(0x7U) |
| 49 | #define SOF_IPC_GLB_DAI_MSG SOF_GLB_TYPE(0x8U) |
| 50 | #define SOF_IPC_GLB_TRACE_MSG SOF_GLB_TYPE(0x9U) |
Pierre-Louis Bossart | 59be197 | 2019-06-03 11:18:13 -0500 | [diff] [blame] | 51 | #define SOF_IPC_GLB_GDB_DEBUG SOF_GLB_TYPE(0xAU) |
Liam Girdwood | 53e0c72 | 2019-04-12 11:05:09 -0500 | [diff] [blame] | 52 | |
| 53 | /* |
| 54 | * DSP Command Message Types |
| 55 | */ |
| 56 | |
| 57 | /* topology */ |
| 58 | #define SOF_IPC_TPLG_COMP_NEW SOF_CMD_TYPE(0x001) |
| 59 | #define SOF_IPC_TPLG_COMP_FREE SOF_CMD_TYPE(0x002) |
| 60 | #define SOF_IPC_TPLG_COMP_CONNECT SOF_CMD_TYPE(0x003) |
| 61 | #define SOF_IPC_TPLG_PIPE_NEW SOF_CMD_TYPE(0x010) |
| 62 | #define SOF_IPC_TPLG_PIPE_FREE SOF_CMD_TYPE(0x011) |
| 63 | #define SOF_IPC_TPLG_PIPE_CONNECT SOF_CMD_TYPE(0x012) |
| 64 | #define SOF_IPC_TPLG_PIPE_COMPLETE SOF_CMD_TYPE(0x013) |
| 65 | #define SOF_IPC_TPLG_BUFFER_NEW SOF_CMD_TYPE(0x020) |
| 66 | #define SOF_IPC_TPLG_BUFFER_FREE SOF_CMD_TYPE(0x021) |
| 67 | |
| 68 | /* PM */ |
| 69 | #define SOF_IPC_PM_CTX_SAVE SOF_CMD_TYPE(0x001) |
| 70 | #define SOF_IPC_PM_CTX_RESTORE SOF_CMD_TYPE(0x002) |
| 71 | #define SOF_IPC_PM_CTX_SIZE SOF_CMD_TYPE(0x003) |
| 72 | #define SOF_IPC_PM_CLK_SET SOF_CMD_TYPE(0x004) |
| 73 | #define SOF_IPC_PM_CLK_GET SOF_CMD_TYPE(0x005) |
| 74 | #define SOF_IPC_PM_CLK_REQ SOF_CMD_TYPE(0x006) |
| 75 | #define SOF_IPC_PM_CORE_ENABLE SOF_CMD_TYPE(0x007) |
| 76 | |
| 77 | /* component runtime config - multiple different types */ |
| 78 | #define SOF_IPC_COMP_SET_VALUE SOF_CMD_TYPE(0x001) |
| 79 | #define SOF_IPC_COMP_GET_VALUE SOF_CMD_TYPE(0x002) |
| 80 | #define SOF_IPC_COMP_SET_DATA SOF_CMD_TYPE(0x003) |
| 81 | #define SOF_IPC_COMP_GET_DATA SOF_CMD_TYPE(0x004) |
Pierre-Louis Bossart | 59be197 | 2019-06-03 11:18:13 -0500 | [diff] [blame] | 82 | #define SOF_IPC_COMP_NOTIFICATION SOF_CMD_TYPE(0x005) |
Liam Girdwood | 53e0c72 | 2019-04-12 11:05:09 -0500 | [diff] [blame] | 83 | |
| 84 | /* DAI messages */ |
| 85 | #define SOF_IPC_DAI_CONFIG SOF_CMD_TYPE(0x001) |
| 86 | #define SOF_IPC_DAI_LOOPBACK SOF_CMD_TYPE(0x002) |
| 87 | |
| 88 | /* stream */ |
| 89 | #define SOF_IPC_STREAM_PCM_PARAMS SOF_CMD_TYPE(0x001) |
| 90 | #define SOF_IPC_STREAM_PCM_PARAMS_REPLY SOF_CMD_TYPE(0x002) |
| 91 | #define SOF_IPC_STREAM_PCM_FREE SOF_CMD_TYPE(0x003) |
| 92 | #define SOF_IPC_STREAM_TRIG_START SOF_CMD_TYPE(0x004) |
| 93 | #define SOF_IPC_STREAM_TRIG_STOP SOF_CMD_TYPE(0x005) |
| 94 | #define SOF_IPC_STREAM_TRIG_PAUSE SOF_CMD_TYPE(0x006) |
| 95 | #define SOF_IPC_STREAM_TRIG_RELEASE SOF_CMD_TYPE(0x007) |
| 96 | #define SOF_IPC_STREAM_TRIG_DRAIN SOF_CMD_TYPE(0x008) |
| 97 | #define SOF_IPC_STREAM_TRIG_XRUN SOF_CMD_TYPE(0x009) |
| 98 | #define SOF_IPC_STREAM_POSITION SOF_CMD_TYPE(0x00a) |
| 99 | #define SOF_IPC_STREAM_VORBIS_PARAMS SOF_CMD_TYPE(0x010) |
| 100 | #define SOF_IPC_STREAM_VORBIS_FREE SOF_CMD_TYPE(0x011) |
| 101 | |
| 102 | /* trace and debug */ |
| 103 | #define SOF_IPC_TRACE_DMA_PARAMS SOF_CMD_TYPE(0x001) |
| 104 | #define SOF_IPC_TRACE_DMA_POSITION SOF_CMD_TYPE(0x002) |
| 105 | |
| 106 | /* Get message component id */ |
| 107 | #define SOF_IPC_MESSAGE_ID(x) ((x) & 0xffff) |
| 108 | |
| 109 | /* maximum message size for mailbox Tx/Rx */ |
| 110 | #define SOF_IPC_MSG_MAX_SIZE 384 |
| 111 | |
| 112 | /* |
| 113 | * Structure Header - Header for all IPC structures except command structs. |
| 114 | * The size can be greater than the structure size and that means there is |
| 115 | * extended bespoke data beyond the end of the structure including variable |
| 116 | * arrays. |
| 117 | */ |
| 118 | |
| 119 | struct sof_ipc_hdr { |
| 120 | uint32_t size; /**< size of structure */ |
| 121 | } __packed; |
| 122 | |
| 123 | /* |
| 124 | * Command Header - Header for all IPC commands. Identifies IPC message. |
| 125 | * The size can be greater than the structure size and that means there is |
| 126 | * extended bespoke data beyond the end of the structure including variable |
| 127 | * arrays. |
| 128 | */ |
| 129 | |
| 130 | struct sof_ipc_cmd_hdr { |
| 131 | uint32_t size; /**< size of structure */ |
| 132 | uint32_t cmd; /**< SOF_IPC_GLB_ + cmd */ |
| 133 | } __packed; |
| 134 | |
| 135 | /* |
| 136 | * Generic reply message. Some commands override this with their own reply |
| 137 | * types that must include this at start. |
| 138 | */ |
| 139 | struct sof_ipc_reply { |
| 140 | struct sof_ipc_cmd_hdr hdr; |
| 141 | int32_t error; /**< negative error numbers */ |
| 142 | } __packed; |
| 143 | |
| 144 | /* |
| 145 | * Compound commands - SOF_IPC_GLB_COMPOUND. |
| 146 | * |
| 147 | * Compound commands are sent to the DSP as a single IPC operation. The |
| 148 | * commands are split into blocks and each block has a header. This header |
| 149 | * identifies the command type and the number of commands before the next |
| 150 | * header. |
| 151 | */ |
| 152 | |
| 153 | struct sof_ipc_compound_hdr { |
| 154 | struct sof_ipc_cmd_hdr hdr; |
| 155 | uint32_t count; /**< count of 0 means end of compound sequence */ |
| 156 | } __packed; |
| 157 | |
Kai Vehmanen | 14104eb | 2019-06-03 11:18:15 -0500 | [diff] [blame] | 158 | /** |
| 159 | * OOPS header architecture specific data. |
| 160 | */ |
| 161 | struct sof_ipc_dsp_oops_arch_hdr { |
| 162 | uint32_t arch; /* Identifier of architecture */ |
| 163 | uint32_t totalsize; /* Total size of oops message */ |
| 164 | } __packed; |
| 165 | |
| 166 | /** |
| 167 | * OOPS header platform specific data. |
| 168 | */ |
| 169 | struct sof_ipc_dsp_oops_plat_hdr { |
| 170 | uint32_t configidhi; /* ConfigID hi 32bits */ |
| 171 | uint32_t configidlo; /* ConfigID lo 32bits */ |
| 172 | uint32_t numaregs; /* Special regs num */ |
| 173 | uint32_t stackoffset; /* Offset to stack pointer from beginning of |
| 174 | * oops message |
| 175 | */ |
| 176 | uint32_t stackptr; /* Stack ptr */ |
| 177 | } __packed; |
| 178 | |
Liam Girdwood | 53e0c72 | 2019-04-12 11:05:09 -0500 | [diff] [blame] | 179 | /** @}*/ |
| 180 | |
| 181 | #endif |