Oded Gabbay | 99b9d7b | 2019-02-16 00:39:13 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note |
| 2 | * |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 3 | * Copyright 2016-2020 HabanaLabs, Ltd. |
Oded Gabbay | 99b9d7b | 2019-02-16 00:39:13 +0200 | [diff] [blame] | 4 | * All Rights Reserved. |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef HABANALABS_H_ |
| 9 | #define HABANALABS_H_ |
| 10 | |
| 11 | #include <linux/types.h> |
| 12 | #include <linux/ioctl.h> |
| 13 | |
| 14 | /* |
| 15 | * Defines that are asic-specific but constitutes as ABI between kernel driver |
| 16 | * and userspace |
| 17 | */ |
Oded Gabbay | 466c782 | 2020-05-11 10:32:10 +0300 | [diff] [blame] | 18 | #define GOYA_KMD_SRAM_RESERVED_SIZE_FROM_START 0x8000 /* 32KB */ |
| 19 | #define GAUDI_DRIVER_SRAM_RESERVED_SIZE_FROM_START 0x80 /* 128 bytes */ |
Oded Gabbay | 99b9d7b | 2019-02-16 00:39:13 +0200 | [diff] [blame] | 20 | |
Ofir Bitton | 5de406c | 2020-09-10 10:56:26 +0300 | [diff] [blame] | 21 | /* |
| 22 | * 128 SOBs reserved for collective wait |
| 23 | * 16 SOBs reserved for sync stream |
| 24 | */ |
| 25 | #define GAUDI_FIRST_AVAILABLE_W_S_SYNC_OBJECT 144 |
| 26 | |
| 27 | /* |
| 28 | * 64 monitors reserved for collective wait |
| 29 | * 8 monitors reserved for sync stream |
| 30 | */ |
| 31 | #define GAUDI_FIRST_AVAILABLE_W_S_MONITOR 72 |
| 32 | |
Oded Gabbay | 9494a8d | 2019-02-16 00:39:17 +0200 | [diff] [blame] | 33 | /* |
Oded Gabbay | 466c782 | 2020-05-11 10:32:10 +0300 | [diff] [blame] | 34 | * Goya queue Numbering |
Oded Gabbay | 9494a8d | 2019-02-16 00:39:17 +0200 | [diff] [blame] | 35 | * |
Oded Gabbay | 9002729 | 2019-04-03 09:51:04 +0300 | [diff] [blame] | 36 | * The external queues (PCI DMA channels) MUST be before the internal queues |
| 37 | * and each group (PCI DMA channels and internal) must be contiguous inside |
Oded Gabbay | 9494a8d | 2019-02-16 00:39:17 +0200 | [diff] [blame] | 38 | * itself but there can be a gap between the two groups (although not |
| 39 | * recommended) |
| 40 | */ |
| 41 | |
| 42 | enum goya_queue_id { |
| 43 | GOYA_QUEUE_ID_DMA_0 = 0, |
Dotan Barak | 4fd2cb1 | 2019-08-12 10:23:33 +0300 | [diff] [blame] | 44 | GOYA_QUEUE_ID_DMA_1 = 1, |
| 45 | GOYA_QUEUE_ID_DMA_2 = 2, |
| 46 | GOYA_QUEUE_ID_DMA_3 = 3, |
| 47 | GOYA_QUEUE_ID_DMA_4 = 4, |
| 48 | GOYA_QUEUE_ID_CPU_PQ = 5, |
| 49 | GOYA_QUEUE_ID_MME = 6, /* Internal queues start here */ |
| 50 | GOYA_QUEUE_ID_TPC0 = 7, |
| 51 | GOYA_QUEUE_ID_TPC1 = 8, |
| 52 | GOYA_QUEUE_ID_TPC2 = 9, |
| 53 | GOYA_QUEUE_ID_TPC3 = 10, |
| 54 | GOYA_QUEUE_ID_TPC4 = 11, |
| 55 | GOYA_QUEUE_ID_TPC5 = 12, |
| 56 | GOYA_QUEUE_ID_TPC6 = 13, |
| 57 | GOYA_QUEUE_ID_TPC7 = 14, |
Oded Gabbay | 9494a8d | 2019-02-16 00:39:17 +0200 | [diff] [blame] | 58 | GOYA_QUEUE_ID_SIZE |
| 59 | }; |
| 60 | |
Tomer Tayar | e8960ca | 2019-07-01 13:59:45 +0000 | [diff] [blame] | 61 | /* |
Oded Gabbay | 466c782 | 2020-05-11 10:32:10 +0300 | [diff] [blame] | 62 | * Gaudi queue Numbering |
| 63 | * External queues (PCI DMA channels) are DMA_0_*, DMA_1_* and DMA_5_*. |
| 64 | * Except one CPU queue, all the rest are internal queues. |
| 65 | */ |
| 66 | |
| 67 | enum gaudi_queue_id { |
| 68 | GAUDI_QUEUE_ID_DMA_0_0 = 0, /* external */ |
| 69 | GAUDI_QUEUE_ID_DMA_0_1 = 1, /* external */ |
| 70 | GAUDI_QUEUE_ID_DMA_0_2 = 2, /* external */ |
| 71 | GAUDI_QUEUE_ID_DMA_0_3 = 3, /* external */ |
| 72 | GAUDI_QUEUE_ID_DMA_1_0 = 4, /* external */ |
| 73 | GAUDI_QUEUE_ID_DMA_1_1 = 5, /* external */ |
| 74 | GAUDI_QUEUE_ID_DMA_1_2 = 6, /* external */ |
| 75 | GAUDI_QUEUE_ID_DMA_1_3 = 7, /* external */ |
| 76 | GAUDI_QUEUE_ID_CPU_PQ = 8, /* CPU */ |
| 77 | GAUDI_QUEUE_ID_DMA_2_0 = 9, /* internal */ |
| 78 | GAUDI_QUEUE_ID_DMA_2_1 = 10, /* internal */ |
| 79 | GAUDI_QUEUE_ID_DMA_2_2 = 11, /* internal */ |
| 80 | GAUDI_QUEUE_ID_DMA_2_3 = 12, /* internal */ |
| 81 | GAUDI_QUEUE_ID_DMA_3_0 = 13, /* internal */ |
| 82 | GAUDI_QUEUE_ID_DMA_3_1 = 14, /* internal */ |
| 83 | GAUDI_QUEUE_ID_DMA_3_2 = 15, /* internal */ |
| 84 | GAUDI_QUEUE_ID_DMA_3_3 = 16, /* internal */ |
| 85 | GAUDI_QUEUE_ID_DMA_4_0 = 17, /* internal */ |
| 86 | GAUDI_QUEUE_ID_DMA_4_1 = 18, /* internal */ |
| 87 | GAUDI_QUEUE_ID_DMA_4_2 = 19, /* internal */ |
| 88 | GAUDI_QUEUE_ID_DMA_4_3 = 20, /* internal */ |
Ofir Bitton | 0940cab | 2020-08-31 08:52:56 +0300 | [diff] [blame] | 89 | GAUDI_QUEUE_ID_DMA_5_0 = 21, /* internal */ |
| 90 | GAUDI_QUEUE_ID_DMA_5_1 = 22, /* internal */ |
| 91 | GAUDI_QUEUE_ID_DMA_5_2 = 23, /* internal */ |
| 92 | GAUDI_QUEUE_ID_DMA_5_3 = 24, /* internal */ |
Oded Gabbay | 466c782 | 2020-05-11 10:32:10 +0300 | [diff] [blame] | 93 | GAUDI_QUEUE_ID_DMA_6_0 = 25, /* internal */ |
| 94 | GAUDI_QUEUE_ID_DMA_6_1 = 26, /* internal */ |
| 95 | GAUDI_QUEUE_ID_DMA_6_2 = 27, /* internal */ |
| 96 | GAUDI_QUEUE_ID_DMA_6_3 = 28, /* internal */ |
| 97 | GAUDI_QUEUE_ID_DMA_7_0 = 29, /* internal */ |
| 98 | GAUDI_QUEUE_ID_DMA_7_1 = 30, /* internal */ |
| 99 | GAUDI_QUEUE_ID_DMA_7_2 = 31, /* internal */ |
| 100 | GAUDI_QUEUE_ID_DMA_7_3 = 32, /* internal */ |
| 101 | GAUDI_QUEUE_ID_MME_0_0 = 33, /* internal */ |
| 102 | GAUDI_QUEUE_ID_MME_0_1 = 34, /* internal */ |
| 103 | GAUDI_QUEUE_ID_MME_0_2 = 35, /* internal */ |
| 104 | GAUDI_QUEUE_ID_MME_0_3 = 36, /* internal */ |
| 105 | GAUDI_QUEUE_ID_MME_1_0 = 37, /* internal */ |
| 106 | GAUDI_QUEUE_ID_MME_1_1 = 38, /* internal */ |
| 107 | GAUDI_QUEUE_ID_MME_1_2 = 39, /* internal */ |
| 108 | GAUDI_QUEUE_ID_MME_1_3 = 40, /* internal */ |
| 109 | GAUDI_QUEUE_ID_TPC_0_0 = 41, /* internal */ |
| 110 | GAUDI_QUEUE_ID_TPC_0_1 = 42, /* internal */ |
| 111 | GAUDI_QUEUE_ID_TPC_0_2 = 43, /* internal */ |
| 112 | GAUDI_QUEUE_ID_TPC_0_3 = 44, /* internal */ |
| 113 | GAUDI_QUEUE_ID_TPC_1_0 = 45, /* internal */ |
| 114 | GAUDI_QUEUE_ID_TPC_1_1 = 46, /* internal */ |
| 115 | GAUDI_QUEUE_ID_TPC_1_2 = 47, /* internal */ |
| 116 | GAUDI_QUEUE_ID_TPC_1_3 = 48, /* internal */ |
| 117 | GAUDI_QUEUE_ID_TPC_2_0 = 49, /* internal */ |
| 118 | GAUDI_QUEUE_ID_TPC_2_1 = 50, /* internal */ |
| 119 | GAUDI_QUEUE_ID_TPC_2_2 = 51, /* internal */ |
| 120 | GAUDI_QUEUE_ID_TPC_2_3 = 52, /* internal */ |
| 121 | GAUDI_QUEUE_ID_TPC_3_0 = 53, /* internal */ |
| 122 | GAUDI_QUEUE_ID_TPC_3_1 = 54, /* internal */ |
| 123 | GAUDI_QUEUE_ID_TPC_3_2 = 55, /* internal */ |
| 124 | GAUDI_QUEUE_ID_TPC_3_3 = 56, /* internal */ |
| 125 | GAUDI_QUEUE_ID_TPC_4_0 = 57, /* internal */ |
| 126 | GAUDI_QUEUE_ID_TPC_4_1 = 58, /* internal */ |
| 127 | GAUDI_QUEUE_ID_TPC_4_2 = 59, /* internal */ |
| 128 | GAUDI_QUEUE_ID_TPC_4_3 = 60, /* internal */ |
| 129 | GAUDI_QUEUE_ID_TPC_5_0 = 61, /* internal */ |
| 130 | GAUDI_QUEUE_ID_TPC_5_1 = 62, /* internal */ |
| 131 | GAUDI_QUEUE_ID_TPC_5_2 = 63, /* internal */ |
| 132 | GAUDI_QUEUE_ID_TPC_5_3 = 64, /* internal */ |
| 133 | GAUDI_QUEUE_ID_TPC_6_0 = 65, /* internal */ |
| 134 | GAUDI_QUEUE_ID_TPC_6_1 = 66, /* internal */ |
| 135 | GAUDI_QUEUE_ID_TPC_6_2 = 67, /* internal */ |
| 136 | GAUDI_QUEUE_ID_TPC_6_3 = 68, /* internal */ |
| 137 | GAUDI_QUEUE_ID_TPC_7_0 = 69, /* internal */ |
| 138 | GAUDI_QUEUE_ID_TPC_7_1 = 70, /* internal */ |
| 139 | GAUDI_QUEUE_ID_TPC_7_2 = 71, /* internal */ |
| 140 | GAUDI_QUEUE_ID_TPC_7_3 = 72, /* internal */ |
| 141 | GAUDI_QUEUE_ID_NIC_0_0 = 73, /* internal */ |
| 142 | GAUDI_QUEUE_ID_NIC_0_1 = 74, /* internal */ |
| 143 | GAUDI_QUEUE_ID_NIC_0_2 = 75, /* internal */ |
| 144 | GAUDI_QUEUE_ID_NIC_0_3 = 76, /* internal */ |
| 145 | GAUDI_QUEUE_ID_NIC_1_0 = 77, /* internal */ |
| 146 | GAUDI_QUEUE_ID_NIC_1_1 = 78, /* internal */ |
| 147 | GAUDI_QUEUE_ID_NIC_1_2 = 79, /* internal */ |
| 148 | GAUDI_QUEUE_ID_NIC_1_3 = 80, /* internal */ |
| 149 | GAUDI_QUEUE_ID_NIC_2_0 = 81, /* internal */ |
| 150 | GAUDI_QUEUE_ID_NIC_2_1 = 82, /* internal */ |
| 151 | GAUDI_QUEUE_ID_NIC_2_2 = 83, /* internal */ |
| 152 | GAUDI_QUEUE_ID_NIC_2_3 = 84, /* internal */ |
| 153 | GAUDI_QUEUE_ID_NIC_3_0 = 85, /* internal */ |
| 154 | GAUDI_QUEUE_ID_NIC_3_1 = 86, /* internal */ |
| 155 | GAUDI_QUEUE_ID_NIC_3_2 = 87, /* internal */ |
| 156 | GAUDI_QUEUE_ID_NIC_3_3 = 88, /* internal */ |
| 157 | GAUDI_QUEUE_ID_NIC_4_0 = 89, /* internal */ |
| 158 | GAUDI_QUEUE_ID_NIC_4_1 = 90, /* internal */ |
| 159 | GAUDI_QUEUE_ID_NIC_4_2 = 91, /* internal */ |
| 160 | GAUDI_QUEUE_ID_NIC_4_3 = 92, /* internal */ |
| 161 | GAUDI_QUEUE_ID_NIC_5_0 = 93, /* internal */ |
| 162 | GAUDI_QUEUE_ID_NIC_5_1 = 94, /* internal */ |
| 163 | GAUDI_QUEUE_ID_NIC_5_2 = 95, /* internal */ |
| 164 | GAUDI_QUEUE_ID_NIC_5_3 = 96, /* internal */ |
| 165 | GAUDI_QUEUE_ID_NIC_6_0 = 97, /* internal */ |
| 166 | GAUDI_QUEUE_ID_NIC_6_1 = 98, /* internal */ |
| 167 | GAUDI_QUEUE_ID_NIC_6_2 = 99, /* internal */ |
| 168 | GAUDI_QUEUE_ID_NIC_6_3 = 100, /* internal */ |
| 169 | GAUDI_QUEUE_ID_NIC_7_0 = 101, /* internal */ |
| 170 | GAUDI_QUEUE_ID_NIC_7_1 = 102, /* internal */ |
| 171 | GAUDI_QUEUE_ID_NIC_7_2 = 103, /* internal */ |
| 172 | GAUDI_QUEUE_ID_NIC_7_3 = 104, /* internal */ |
| 173 | GAUDI_QUEUE_ID_NIC_8_0 = 105, /* internal */ |
| 174 | GAUDI_QUEUE_ID_NIC_8_1 = 106, /* internal */ |
| 175 | GAUDI_QUEUE_ID_NIC_8_2 = 107, /* internal */ |
| 176 | GAUDI_QUEUE_ID_NIC_8_3 = 108, /* internal */ |
| 177 | GAUDI_QUEUE_ID_NIC_9_0 = 109, /* internal */ |
| 178 | GAUDI_QUEUE_ID_NIC_9_1 = 110, /* internal */ |
| 179 | GAUDI_QUEUE_ID_NIC_9_2 = 111, /* internal */ |
| 180 | GAUDI_QUEUE_ID_NIC_9_3 = 112, /* internal */ |
| 181 | GAUDI_QUEUE_ID_SIZE |
| 182 | }; |
| 183 | |
| 184 | /* |
Tomer Tayar | e8960ca | 2019-07-01 13:59:45 +0000 | [diff] [blame] | 185 | * Engine Numbering |
| 186 | * |
| 187 | * Used in the "busy_engines_mask" field in `struct hl_info_hw_idle' |
| 188 | */ |
| 189 | |
| 190 | enum goya_engine_id { |
| 191 | GOYA_ENGINE_ID_DMA_0 = 0, |
| 192 | GOYA_ENGINE_ID_DMA_1, |
| 193 | GOYA_ENGINE_ID_DMA_2, |
| 194 | GOYA_ENGINE_ID_DMA_3, |
| 195 | GOYA_ENGINE_ID_DMA_4, |
| 196 | GOYA_ENGINE_ID_MME_0, |
| 197 | GOYA_ENGINE_ID_TPC_0, |
| 198 | GOYA_ENGINE_ID_TPC_1, |
| 199 | GOYA_ENGINE_ID_TPC_2, |
| 200 | GOYA_ENGINE_ID_TPC_3, |
| 201 | GOYA_ENGINE_ID_TPC_4, |
| 202 | GOYA_ENGINE_ID_TPC_5, |
| 203 | GOYA_ENGINE_ID_TPC_6, |
| 204 | GOYA_ENGINE_ID_TPC_7, |
| 205 | GOYA_ENGINE_ID_SIZE |
| 206 | }; |
| 207 | |
Oded Gabbay | 466c782 | 2020-05-11 10:32:10 +0300 | [diff] [blame] | 208 | enum gaudi_engine_id { |
| 209 | GAUDI_ENGINE_ID_DMA_0 = 0, |
| 210 | GAUDI_ENGINE_ID_DMA_1, |
| 211 | GAUDI_ENGINE_ID_DMA_2, |
| 212 | GAUDI_ENGINE_ID_DMA_3, |
| 213 | GAUDI_ENGINE_ID_DMA_4, |
| 214 | GAUDI_ENGINE_ID_DMA_5, |
| 215 | GAUDI_ENGINE_ID_DMA_6, |
| 216 | GAUDI_ENGINE_ID_DMA_7, |
| 217 | GAUDI_ENGINE_ID_MME_0, |
| 218 | GAUDI_ENGINE_ID_MME_1, |
| 219 | GAUDI_ENGINE_ID_MME_2, |
| 220 | GAUDI_ENGINE_ID_MME_3, |
| 221 | GAUDI_ENGINE_ID_TPC_0, |
| 222 | GAUDI_ENGINE_ID_TPC_1, |
| 223 | GAUDI_ENGINE_ID_TPC_2, |
| 224 | GAUDI_ENGINE_ID_TPC_3, |
| 225 | GAUDI_ENGINE_ID_TPC_4, |
| 226 | GAUDI_ENGINE_ID_TPC_5, |
| 227 | GAUDI_ENGINE_ID_TPC_6, |
| 228 | GAUDI_ENGINE_ID_TPC_7, |
| 229 | GAUDI_ENGINE_ID_NIC_0, |
| 230 | GAUDI_ENGINE_ID_NIC_1, |
| 231 | GAUDI_ENGINE_ID_NIC_2, |
| 232 | GAUDI_ENGINE_ID_NIC_3, |
| 233 | GAUDI_ENGINE_ID_NIC_4, |
| 234 | GAUDI_ENGINE_ID_NIC_5, |
| 235 | GAUDI_ENGINE_ID_NIC_6, |
| 236 | GAUDI_ENGINE_ID_NIC_7, |
| 237 | GAUDI_ENGINE_ID_NIC_8, |
| 238 | GAUDI_ENGINE_ID_NIC_9, |
| 239 | GAUDI_ENGINE_ID_SIZE |
| 240 | }; |
| 241 | |
Bharat Jauhari | 285c0fa | 2021-03-25 18:15:40 +0200 | [diff] [blame] | 242 | /* |
| 243 | * ASIC specific PLL index |
| 244 | * |
| 245 | * Used to retrieve in frequency info of different IPs via |
| 246 | * HL_INFO_PLL_FREQUENCY under HL_IOCTL_INFO IOCTL. The enums need to be |
| 247 | * used as an index in struct hl_pll_frequency_info |
| 248 | */ |
| 249 | |
| 250 | enum hl_goya_pll_index { |
| 251 | HL_GOYA_CPU_PLL = 0, |
| 252 | HL_GOYA_IC_PLL, |
| 253 | HL_GOYA_MC_PLL, |
| 254 | HL_GOYA_MME_PLL, |
| 255 | HL_GOYA_PCI_PLL, |
| 256 | HL_GOYA_EMMC_PLL, |
| 257 | HL_GOYA_TPC_PLL, |
| 258 | HL_GOYA_PLL_MAX |
| 259 | }; |
| 260 | |
| 261 | enum hl_gaudi_pll_index { |
| 262 | HL_GAUDI_CPU_PLL = 0, |
| 263 | HL_GAUDI_PCI_PLL, |
| 264 | HL_GAUDI_SRAM_PLL, |
| 265 | HL_GAUDI_HBM_PLL, |
| 266 | HL_GAUDI_NIC_PLL, |
| 267 | HL_GAUDI_DMA_PLL, |
| 268 | HL_GAUDI_MESH_PLL, |
| 269 | HL_GAUDI_MME_PLL, |
| 270 | HL_GAUDI_TPC_PLL, |
| 271 | HL_GAUDI_IF_PLL, |
| 272 | HL_GAUDI_PLL_MAX |
| 273 | }; |
| 274 | |
Dalit Ben Zoor | aa95708 | 2019-03-24 10:15:44 +0200 | [diff] [blame] | 275 | enum hl_device_status { |
| 276 | HL_DEVICE_STATUS_OPERATIONAL, |
| 277 | HL_DEVICE_STATUS_IN_RESET, |
Ofir Bitton | 66a7640 | 2020-10-05 14:40:10 +0300 | [diff] [blame] | 278 | HL_DEVICE_STATUS_MALFUNCTION, |
Omer Shpigelman | 7173109 | 2021-08-16 13:27:12 +0300 | [diff] [blame] | 279 | HL_DEVICE_STATUS_NEEDS_RESET, |
| 280 | HL_DEVICE_STATUS_IN_DEVICE_CREATION, |
| 281 | HL_DEVICE_STATUS_LAST = HL_DEVICE_STATUS_IN_DEVICE_CREATION |
Dalit Ben Zoor | aa95708 | 2019-03-24 10:15:44 +0200 | [diff] [blame] | 282 | }; |
| 283 | |
Oded Gabbay | 5dc9ffa | 2021-07-15 10:48:43 +0300 | [diff] [blame] | 284 | enum hl_server_type { |
| 285 | HL_SERVER_TYPE_UNKNOWN = 0, |
| 286 | HL_SERVER_GAUDI_HLS1 = 1, |
| 287 | HL_SERVER_GAUDI_HLS1H = 2, |
| 288 | HL_SERVER_GAUDI_TYPE1 = 3, |
| 289 | HL_SERVER_GAUDI_TYPE2 = 4 |
| 290 | }; |
| 291 | |
Oded Gabbay | f388ec7 | 2019-07-16 08:55:04 +0300 | [diff] [blame] | 292 | /* Opcode for management ioctl |
| 293 | * |
Oded Gabbay | 75b3cb2 | 2019-08-28 17:32:04 +0300 | [diff] [blame] | 294 | * HW_IP_INFO - Receive information about different IP blocks in the |
| 295 | * device. |
| 296 | * HL_INFO_HW_EVENTS - Receive an array describing how many times each event |
| 297 | * occurred since the last hard reset. |
| 298 | * HL_INFO_DRAM_USAGE - Retrieve the dram usage inside the device and of the |
| 299 | * specific context. This is relevant only for devices |
| 300 | * where the dram is managed by the kernel driver |
| 301 | * HL_INFO_HW_IDLE - Retrieve information about the idle status of each |
| 302 | * internal engine. |
Oded Gabbay | f388ec7 | 2019-07-16 08:55:04 +0300 | [diff] [blame] | 303 | * HL_INFO_DEVICE_STATUS - Retrieve the device's status. This opcode doesn't |
| 304 | * require an open context. |
Oded Gabbay | 62c1e12 | 2019-10-10 15:48:59 +0300 | [diff] [blame] | 305 | * HL_INFO_DEVICE_UTILIZATION - Retrieve the total utilization of the device |
| 306 | * over the last period specified by the user. |
| 307 | * The period can be between 100ms to 1s, in |
| 308 | * resolution of 100ms. The return value is a |
| 309 | * percentage of the utilization rate. |
Oded Gabbay | e973076 | 2019-08-28 21:51:52 +0300 | [diff] [blame] | 310 | * HL_INFO_HW_EVENTS_AGGREGATE - Receive an array describing how many times each |
| 311 | * event occurred since the driver was loaded. |
Oded Gabbay | 62c1e12 | 2019-10-10 15:48:59 +0300 | [diff] [blame] | 312 | * HL_INFO_CLK_RATE - Retrieve the current and maximum clock rate |
| 313 | * of the device in MHz. The maximum clock rate is |
| 314 | * configurable via sysfs parameter |
Moti Haimovski | 52c01b0 | 2019-11-03 16:26:44 +0200 | [diff] [blame] | 315 | * HL_INFO_RESET_COUNT - Retrieve the counts of the soft and hard reset |
| 316 | * operations performed on the device since the last |
| 317 | * time the driver was loaded. |
Tomer Tayar | 25e7aeb | 2020-03-31 22:46:36 +0300 | [diff] [blame] | 318 | * HL_INFO_TIME_SYNC - Retrieve the device's time alongside the host's time |
| 319 | * for synchronization. |
Ofir Bitton | db491e4 | 2020-06-18 09:51:16 +0300 | [diff] [blame] | 320 | * HL_INFO_CS_COUNTERS - Retrieve command submission counters |
Ofir Bitton | 0a068ad | 2020-07-21 10:49:51 +0300 | [diff] [blame] | 321 | * HL_INFO_PCI_COUNTERS - Retrieve PCI counters |
| 322 | * HL_INFO_CLK_THROTTLE_REASON - Retrieve clock throttling reason |
Ofir Bitton | 843839b | 2020-07-19 11:08:09 +0300 | [diff] [blame] | 323 | * HL_INFO_SYNC_MANAGER - Retrieve sync manager info per dcore |
farah kassabri | 9f30649 | 2020-08-09 16:25:53 +0300 | [diff] [blame] | 324 | * HL_INFO_TOTAL_ENERGY - Retrieve total energy consumption |
Alon Mizrahi | 429f157 | 2020-12-01 18:44:11 +0200 | [diff] [blame] | 325 | * HL_INFO_PLL_FREQUENCY - Retrieve PLL frequency |
Yuri Nudelman | e307b30 | 2021-05-24 11:25:21 +0300 | [diff] [blame] | 326 | * HL_INFO_OPEN_STATS - Retrieve info regarding recent device open calls |
Oded Gabbay | f388ec7 | 2019-07-16 08:55:04 +0300 | [diff] [blame] | 327 | */ |
Oded Gabbay | 75b3cb2 | 2019-08-28 17:32:04 +0300 | [diff] [blame] | 328 | #define HL_INFO_HW_IP_INFO 0 |
| 329 | #define HL_INFO_HW_EVENTS 1 |
| 330 | #define HL_INFO_DRAM_USAGE 2 |
| 331 | #define HL_INFO_HW_IDLE 3 |
| 332 | #define HL_INFO_DEVICE_STATUS 4 |
| 333 | #define HL_INFO_DEVICE_UTILIZATION 6 |
Oded Gabbay | e973076 | 2019-08-28 21:51:52 +0300 | [diff] [blame] | 334 | #define HL_INFO_HW_EVENTS_AGGREGATE 7 |
Oded Gabbay | 62c1e12 | 2019-10-10 15:48:59 +0300 | [diff] [blame] | 335 | #define HL_INFO_CLK_RATE 8 |
Moti Haimovski | 52c01b0 | 2019-11-03 16:26:44 +0200 | [diff] [blame] | 336 | #define HL_INFO_RESET_COUNT 9 |
Tomer Tayar | 25e7aeb | 2020-03-31 22:46:36 +0300 | [diff] [blame] | 337 | #define HL_INFO_TIME_SYNC 10 |
Ofir Bitton | db491e4 | 2020-06-18 09:51:16 +0300 | [diff] [blame] | 338 | #define HL_INFO_CS_COUNTERS 11 |
Ofir Bitton | 0a068ad | 2020-07-21 10:49:51 +0300 | [diff] [blame] | 339 | #define HL_INFO_PCI_COUNTERS 12 |
| 340 | #define HL_INFO_CLK_THROTTLE_REASON 13 |
Ofir Bitton | 843839b | 2020-07-19 11:08:09 +0300 | [diff] [blame] | 341 | #define HL_INFO_SYNC_MANAGER 14 |
farah kassabri | 9f30649 | 2020-08-09 16:25:53 +0300 | [diff] [blame] | 342 | #define HL_INFO_TOTAL_ENERGY 15 |
Alon Mizrahi | 4147864 | 2020-11-17 14:25:14 +0200 | [diff] [blame] | 343 | #define HL_INFO_PLL_FREQUENCY 16 |
Sagiv Ozeri | 586f2ca | 2021-02-23 18:00:05 +0200 | [diff] [blame] | 344 | #define HL_INFO_POWER 17 |
Yuri Nudelman | e307b30 | 2021-05-24 11:25:21 +0300 | [diff] [blame] | 345 | #define HL_INFO_OPEN_STATS 18 |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 346 | |
| 347 | #define HL_INFO_VERSION_MAX_LEN 128 |
Oded Gabbay | 91edbf2 | 2019-10-16 11:53:52 +0300 | [diff] [blame] | 348 | #define HL_INFO_CARD_NAME_MAX_LEN 16 |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 349 | |
Oded Gabbay | 5dc9ffa | 2021-07-15 10:48:43 +0300 | [diff] [blame] | 350 | /** |
| 351 | * struct hl_info_hw_ip_info - hardware information on various IPs in the ASIC |
| 352 | * @sram_base_address: The first SRAM physical base address that is free to be |
| 353 | * used by the user. |
| 354 | * @dram_base_address: The first DRAM virtual or physical base address that is |
| 355 | * free to be used by the user. |
| 356 | * @dram_size: The DRAM size that is available to the user. |
| 357 | * @sram_size: The SRAM size that is available to the user. |
| 358 | * @num_of_events: The number of events that can be received from the f/w. This |
| 359 | * is needed so the user can what is the size of the h/w events |
| 360 | * array he needs to pass to the kernel when he wants to fetch |
| 361 | * the event counters. |
| 362 | * @device_id: PCI device ID of the ASIC. |
| 363 | * @module_id: Module ID of the ASIC for mezzanine cards in servers |
| 364 | * (From OCP spec). |
| 365 | * @first_available_interrupt_id: The first available interrupt ID for the user |
| 366 | * to be used when it works with user interrupts. |
| 367 | * @server_type: Server type that the Gaudi ASIC is currently installed in. |
| 368 | * The value is according to enum hl_server_type |
| 369 | * @cpld_version: CPLD version on the board. |
| 370 | * @psoc_pci_pll_nr: PCI PLL NR value. Needed by the profiler in some ASICs. |
| 371 | * @psoc_pci_pll_nf: PCI PLL NF value. Needed by the profiler in some ASICs. |
| 372 | * @psoc_pci_pll_od: PCI PLL OD value. Needed by the profiler in some ASICs. |
| 373 | * @psoc_pci_pll_div_factor: PCI PLL DIV factor value. Needed by the profiler |
| 374 | * in some ASICs. |
| 375 | * @tpc_enabled_mask: Bit-mask that represents which TPCs are enabled. Relevant |
| 376 | * for Goya/Gaudi only. |
| 377 | * @dram_enabled: Whether the DRAM is enabled. |
| 378 | * @cpucp_version: The CPUCP f/w version. |
| 379 | * @card_name: The card name as passed by the f/w. |
| 380 | * @dram_page_size: The DRAM physical page size. |
| 381 | */ |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 382 | struct hl_info_hw_ip_info { |
| 383 | __u64 sram_base_address; |
| 384 | __u64 dram_base_address; |
| 385 | __u64 dram_size; |
| 386 | __u32 sram_size; |
| 387 | __u32 num_of_events; |
Oded Gabbay | 5dc9ffa | 2021-07-15 10:48:43 +0300 | [diff] [blame] | 388 | __u32 device_id; |
| 389 | __u32 module_id; |
Ofir Bitton | e1fa724 | 2021-01-06 15:40:37 +0200 | [diff] [blame] | 390 | __u32 reserved; |
| 391 | __u16 first_available_interrupt_id; |
Oded Gabbay | 5dc9ffa | 2021-07-15 10:48:43 +0300 | [diff] [blame] | 392 | __u16 server_type; |
Oded Gabbay | 2f55342 | 2020-08-15 16:28:10 +0300 | [diff] [blame] | 393 | __u32 cpld_version; |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 394 | __u32 psoc_pci_pll_nr; |
| 395 | __u32 psoc_pci_pll_nf; |
| 396 | __u32 psoc_pci_pll_od; |
| 397 | __u32 psoc_pci_pll_div_factor; |
| 398 | __u8 tpc_enabled_mask; |
| 399 | __u8 dram_enabled; |
| 400 | __u8 pad[2]; |
Oded Gabbay | 2f55342 | 2020-08-15 16:28:10 +0300 | [diff] [blame] | 401 | __u8 cpucp_version[HL_INFO_VERSION_MAX_LEN]; |
Oded Gabbay | 91edbf2 | 2019-10-16 11:53:52 +0300 | [diff] [blame] | 402 | __u8 card_name[HL_INFO_CARD_NAME_MAX_LEN]; |
Oded Gabbay | 5dc9ffa | 2021-07-15 10:48:43 +0300 | [diff] [blame] | 403 | __u64 reserved2; |
Moti Haimovski | 0eda23d | 2020-12-07 09:10:34 +0200 | [diff] [blame] | 404 | __u64 dram_page_size; |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 405 | }; |
| 406 | |
| 407 | struct hl_info_dram_usage { |
| 408 | __u64 dram_free_mem; |
| 409 | __u64 ctx_dram_mem; |
| 410 | }; |
| 411 | |
Ohad Sharabi | cf30339 | 2021-01-17 16:01:56 +0200 | [diff] [blame] | 412 | #define HL_BUSY_ENGINES_MASK_EXT_SIZE 2 |
| 413 | |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 414 | struct hl_info_hw_idle { |
| 415 | __u32 is_idle; |
Tomer Tayar | e8960ca | 2019-07-01 13:59:45 +0000 | [diff] [blame] | 416 | /* |
| 417 | * Bitmask of busy engines. |
| 418 | * Bits definition is according to `enum <chip>_enging_id'. |
| 419 | */ |
| 420 | __u32 busy_engines_mask; |
farah kassabri | d90416c | 2020-08-12 17:20:13 +0300 | [diff] [blame] | 421 | |
| 422 | /* |
| 423 | * Extended Bitmask of busy engines. |
| 424 | * Bits definition is according to `enum <chip>_enging_id'. |
| 425 | */ |
Ohad Sharabi | cf30339 | 2021-01-17 16:01:56 +0200 | [diff] [blame] | 426 | __u64 busy_engines_mask_ext[HL_BUSY_ENGINES_MASK_EXT_SIZE]; |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 427 | }; |
| 428 | |
Dalit Ben Zoor | aa95708 | 2019-03-24 10:15:44 +0200 | [diff] [blame] | 429 | struct hl_info_device_status { |
| 430 | __u32 status; |
| 431 | __u32 pad; |
| 432 | }; |
| 433 | |
Oded Gabbay | 75b3cb2 | 2019-08-28 17:32:04 +0300 | [diff] [blame] | 434 | struct hl_info_device_utilization { |
| 435 | __u32 utilization; |
| 436 | __u32 pad; |
| 437 | }; |
| 438 | |
Oded Gabbay | 62c1e12 | 2019-10-10 15:48:59 +0300 | [diff] [blame] | 439 | struct hl_info_clk_rate { |
| 440 | __u32 cur_clk_rate_mhz; |
| 441 | __u32 max_clk_rate_mhz; |
| 442 | }; |
| 443 | |
Moti Haimovski | 52c01b0 | 2019-11-03 16:26:44 +0200 | [diff] [blame] | 444 | struct hl_info_reset_count { |
| 445 | __u32 hard_reset_cnt; |
| 446 | __u32 soft_reset_cnt; |
| 447 | }; |
| 448 | |
Tomer Tayar | 25e7aeb | 2020-03-31 22:46:36 +0300 | [diff] [blame] | 449 | struct hl_info_time_sync { |
| 450 | __u64 device_time; |
| 451 | __u64 host_time; |
| 452 | }; |
| 453 | |
Ofir Bitton | db491e4 | 2020-06-18 09:51:16 +0300 | [diff] [blame] | 454 | /** |
Ofir Bitton | 0a068ad | 2020-07-21 10:49:51 +0300 | [diff] [blame] | 455 | * struct hl_info_pci_counters - pci counters |
| 456 | * @rx_throughput: PCI rx throughput KBps |
| 457 | * @tx_throughput: PCI tx throughput KBps |
| 458 | * @replay_cnt: PCI replay counter |
| 459 | */ |
| 460 | struct hl_info_pci_counters { |
| 461 | __u64 rx_throughput; |
| 462 | __u64 tx_throughput; |
| 463 | __u64 replay_cnt; |
| 464 | }; |
| 465 | |
| 466 | #define HL_CLK_THROTTLE_POWER 0x1 |
| 467 | #define HL_CLK_THROTTLE_THERMAL 0x2 |
| 468 | |
| 469 | /** |
| 470 | * struct hl_info_clk_throttle - clock throttling reason |
| 471 | * @clk_throttling_reason: each bit represents a clk throttling reason |
| 472 | */ |
| 473 | struct hl_info_clk_throttle { |
| 474 | __u32 clk_throttling_reason; |
| 475 | }; |
| 476 | |
| 477 | /** |
farah kassabri | 9f30649 | 2020-08-09 16:25:53 +0300 | [diff] [blame] | 478 | * struct hl_info_energy - device energy information |
| 479 | * @total_energy_consumption: total device energy consumption |
| 480 | */ |
| 481 | struct hl_info_energy { |
| 482 | __u64 total_energy_consumption; |
| 483 | }; |
| 484 | |
Alon Mizrahi | 4147864 | 2020-11-17 14:25:14 +0200 | [diff] [blame] | 485 | #define HL_PLL_NUM_OUTPUTS 4 |
| 486 | |
| 487 | struct hl_pll_frequency_info { |
| 488 | __u16 output[HL_PLL_NUM_OUTPUTS]; |
| 489 | }; |
| 490 | |
farah kassabri | 9f30649 | 2020-08-09 16:25:53 +0300 | [diff] [blame] | 491 | /** |
Yuri Nudelman | e307b30 | 2021-05-24 11:25:21 +0300 | [diff] [blame] | 492 | * struct hl_open_stats_info - device open statistics information |
| 493 | * @open_counter: ever growing counter, increased on each successful dev open |
| 494 | * @last_open_period_ms: duration (ms) device was open last time |
| 495 | */ |
| 496 | struct hl_open_stats_info { |
| 497 | __u64 open_counter; |
| 498 | __u64 last_open_period_ms; |
| 499 | }; |
| 500 | |
| 501 | /** |
Sagiv Ozeri | 586f2ca | 2021-02-23 18:00:05 +0200 | [diff] [blame] | 502 | * struct hl_power_info - power information |
| 503 | * @power: power consumption |
| 504 | */ |
| 505 | struct hl_power_info { |
| 506 | __u64 power; |
| 507 | }; |
| 508 | |
| 509 | /** |
Ofir Bitton | 843839b | 2020-07-19 11:08:09 +0300 | [diff] [blame] | 510 | * struct hl_info_sync_manager - sync manager information |
| 511 | * @first_available_sync_object: first available sob |
| 512 | * @first_available_monitor: first available monitor |
Ofir Bitton | e52606d | 2021-01-27 16:34:37 +0200 | [diff] [blame] | 513 | * @first_available_cq: first available cq |
Ofir Bitton | 843839b | 2020-07-19 11:08:09 +0300 | [diff] [blame] | 514 | */ |
| 515 | struct hl_info_sync_manager { |
| 516 | __u32 first_available_sync_object; |
| 517 | __u32 first_available_monitor; |
Ofir Bitton | e52606d | 2021-01-27 16:34:37 +0200 | [diff] [blame] | 518 | __u32 first_available_cq; |
| 519 | __u32 reserved; |
Ofir Bitton | 843839b | 2020-07-19 11:08:09 +0300 | [diff] [blame] | 520 | }; |
| 521 | |
| 522 | /** |
Ofir Bitton | db491e4 | 2020-06-18 09:51:16 +0300 | [diff] [blame] | 523 | * struct hl_info_cs_counters - command submission counters |
farah kassabri | e753643 | 2020-10-12 14:30:26 +0300 | [diff] [blame] | 524 | * @total_out_of_mem_drop_cnt: total dropped due to memory allocation issue |
| 525 | * @ctx_out_of_mem_drop_cnt: context dropped due to memory allocation issue |
| 526 | * @total_parsing_drop_cnt: total dropped due to error in packet parsing |
| 527 | * @ctx_parsing_drop_cnt: context dropped due to error in packet parsing |
| 528 | * @total_queue_full_drop_cnt: total dropped due to queue full |
| 529 | * @ctx_queue_full_drop_cnt: context dropped due to queue full |
| 530 | * @total_device_in_reset_drop_cnt: total dropped due to device in reset |
| 531 | * @ctx_device_in_reset_drop_cnt: context dropped due to device in reset |
| 532 | * @total_max_cs_in_flight_drop_cnt: total dropped due to maximum CS in-flight |
| 533 | * @ctx_max_cs_in_flight_drop_cnt: context dropped due to maximum CS in-flight |
Alon Mizrahi | a3fd283 | 2020-12-08 16:14:01 +0200 | [diff] [blame] | 534 | * @total_validation_drop_cnt: total dropped due to validation error |
| 535 | * @ctx_validation_drop_cnt: context dropped due to validation error |
Ofir Bitton | db491e4 | 2020-06-18 09:51:16 +0300 | [diff] [blame] | 536 | */ |
Ofir Bitton | db491e4 | 2020-06-18 09:51:16 +0300 | [diff] [blame] | 537 | struct hl_info_cs_counters { |
farah kassabri | e753643 | 2020-10-12 14:30:26 +0300 | [diff] [blame] | 538 | __u64 total_out_of_mem_drop_cnt; |
| 539 | __u64 ctx_out_of_mem_drop_cnt; |
| 540 | __u64 total_parsing_drop_cnt; |
| 541 | __u64 ctx_parsing_drop_cnt; |
| 542 | __u64 total_queue_full_drop_cnt; |
| 543 | __u64 ctx_queue_full_drop_cnt; |
| 544 | __u64 total_device_in_reset_drop_cnt; |
| 545 | __u64 ctx_device_in_reset_drop_cnt; |
| 546 | __u64 total_max_cs_in_flight_drop_cnt; |
| 547 | __u64 ctx_max_cs_in_flight_drop_cnt; |
Alon Mizrahi | a3fd283 | 2020-12-08 16:14:01 +0200 | [diff] [blame] | 548 | __u64 total_validation_drop_cnt; |
| 549 | __u64 ctx_validation_drop_cnt; |
Ofir Bitton | db491e4 | 2020-06-18 09:51:16 +0300 | [diff] [blame] | 550 | }; |
| 551 | |
Ofir Bitton | 843839b | 2020-07-19 11:08:09 +0300 | [diff] [blame] | 552 | enum gaudi_dcores { |
| 553 | HL_GAUDI_WS_DCORE, |
| 554 | HL_GAUDI_WN_DCORE, |
| 555 | HL_GAUDI_EN_DCORE, |
| 556 | HL_GAUDI_ES_DCORE |
| 557 | }; |
| 558 | |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 559 | struct hl_info_args { |
| 560 | /* Location of relevant struct in userspace */ |
| 561 | __u64 return_pointer; |
| 562 | /* |
| 563 | * The size of the return value. Just like "size" in "snprintf", |
| 564 | * it limits how many bytes the kernel can write |
| 565 | * |
| 566 | * For hw_events array, the size should be |
| 567 | * hl_info_hw_ip_info.num_of_events * sizeof(__u32) |
| 568 | */ |
| 569 | __u32 return_size; |
| 570 | |
| 571 | /* HL_INFO_* */ |
| 572 | __u32 op; |
| 573 | |
Oded Gabbay | 75b3cb2 | 2019-08-28 17:32:04 +0300 | [diff] [blame] | 574 | union { |
Ofir Bitton | 843839b | 2020-07-19 11:08:09 +0300 | [diff] [blame] | 575 | /* Dcore id for which the information is relevant. |
| 576 | * For Gaudi refer to 'enum gaudi_dcores' |
| 577 | */ |
| 578 | __u32 dcore_id; |
Oded Gabbay | 75b3cb2 | 2019-08-28 17:32:04 +0300 | [diff] [blame] | 579 | /* Context ID - Currently not in use */ |
| 580 | __u32 ctx_id; |
| 581 | /* Period value for utilization rate (100ms - 1000ms, in 100ms |
| 582 | * resolution. |
| 583 | */ |
| 584 | __u32 period_ms; |
Alon Mizrahi | 4147864 | 2020-11-17 14:25:14 +0200 | [diff] [blame] | 585 | /* PLL frequency retrieval */ |
| 586 | __u32 pll_index; |
Oded Gabbay | 75b3cb2 | 2019-08-28 17:32:04 +0300 | [diff] [blame] | 587 | }; |
| 588 | |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 589 | __u32 pad; |
| 590 | }; |
Oded Gabbay | 9494a8d | 2019-02-16 00:39:17 +0200 | [diff] [blame] | 591 | |
Oded Gabbay | be5d926 | 2019-02-16 00:39:15 +0200 | [diff] [blame] | 592 | /* Opcode to create a new command buffer */ |
| 593 | #define HL_CB_OP_CREATE 0 |
| 594 | /* Opcode to destroy previously created command buffer */ |
| 595 | #define HL_CB_OP_DESTROY 1 |
Tomer Tayar | f44afb5 | 2020-09-02 13:43:32 +0300 | [diff] [blame] | 596 | /* Opcode to retrieve information about a command buffer */ |
| 597 | #define HL_CB_OP_INFO 2 |
Oded Gabbay | be5d926 | 2019-02-16 00:39:15 +0200 | [diff] [blame] | 598 | |
Oded Gabbay | 39b4251 | 2020-04-17 12:12:13 +0300 | [diff] [blame] | 599 | /* 2MB minus 32 bytes for 2xMSG_PROT */ |
| 600 | #define HL_MAX_CB_SIZE (0x200000 - 32) |
Oded Gabbay | 5d10125 | 2019-11-10 16:08:26 +0200 | [diff] [blame] | 601 | |
Tomer Tayar | ef6a0f6 | 2020-07-09 16:17:48 +0300 | [diff] [blame] | 602 | /* Indicates whether the command buffer should be mapped to the device's MMU */ |
| 603 | #define HL_CB_FLAGS_MAP 0x1 |
| 604 | |
Oded Gabbay | be5d926 | 2019-02-16 00:39:15 +0200 | [diff] [blame] | 605 | struct hl_cb_in { |
| 606 | /* Handle of CB or 0 if we want to create one */ |
| 607 | __u64 cb_handle; |
| 608 | /* HL_CB_OP_* */ |
| 609 | __u32 op; |
Oded Gabbay | 5d10125 | 2019-11-10 16:08:26 +0200 | [diff] [blame] | 610 | /* Size of CB. Maximum size is HL_MAX_CB_SIZE. The minimum size that |
| 611 | * will be allocated, regardless of this parameter's value, is PAGE_SIZE |
Oded Gabbay | 541664d3 | 2019-02-28 11:55:44 +0200 | [diff] [blame] | 612 | */ |
Oded Gabbay | be5d926 | 2019-02-16 00:39:15 +0200 | [diff] [blame] | 613 | __u32 cb_size; |
| 614 | /* Context ID - Currently not in use */ |
| 615 | __u32 ctx_id; |
Tomer Tayar | ef6a0f6 | 2020-07-09 16:17:48 +0300 | [diff] [blame] | 616 | /* HL_CB_FLAGS_* */ |
| 617 | __u32 flags; |
Oded Gabbay | be5d926 | 2019-02-16 00:39:15 +0200 | [diff] [blame] | 618 | }; |
| 619 | |
| 620 | struct hl_cb_out { |
Tomer Tayar | f44afb5 | 2020-09-02 13:43:32 +0300 | [diff] [blame] | 621 | union { |
| 622 | /* Handle of CB */ |
| 623 | __u64 cb_handle; |
| 624 | |
| 625 | /* Information about CB */ |
| 626 | struct { |
| 627 | /* Usage count of CB */ |
| 628 | __u32 usage_cnt; |
| 629 | __u32 pad; |
| 630 | }; |
| 631 | }; |
Oded Gabbay | be5d926 | 2019-02-16 00:39:15 +0200 | [diff] [blame] | 632 | }; |
| 633 | |
| 634 | union hl_cb_args { |
| 635 | struct hl_cb_in in; |
| 636 | struct hl_cb_out out; |
| 637 | }; |
| 638 | |
Tal Cohen | 4bb1f2f | 2020-06-03 09:25:27 +0300 | [diff] [blame] | 639 | /* HL_CS_CHUNK_FLAGS_ values |
| 640 | * |
| 641 | * HL_CS_CHUNK_FLAGS_USER_ALLOC_CB: |
| 642 | * Indicates if the CB was allocated and mapped by userspace. |
| 643 | * User allocated CB is a command buffer allocated by the user, via malloc |
| 644 | * (or similar). After allocating the CB, the user invokes “memory ioctl” |
| 645 | * to map the user memory into a device virtual address. The user provides |
| 646 | * this address via the cb_handle field. The interface provides the |
| 647 | * ability to create a large CBs, Which aren’t limited to |
| 648 | * “HL_MAX_CB_SIZE”. Therefore, it increases the PCI-DMA queues |
| 649 | * throughput. This CB allocation method also reduces the use of Linux |
| 650 | * DMA-able memory pool. Which are limited and used by other Linux |
| 651 | * sub-systems. |
| 652 | */ |
| 653 | #define HL_CS_CHUNK_FLAGS_USER_ALLOC_CB 0x1 |
| 654 | |
Oded Gabbay | be5d926 | 2019-02-16 00:39:15 +0200 | [diff] [blame] | 655 | /* |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 656 | * This structure size must always be fixed to 64-bytes for backward |
| 657 | * compatibility |
| 658 | */ |
| 659 | struct hl_cs_chunk { |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 660 | union { |
| 661 | /* For external queue, this represents a Handle of CB on the |
| 662 | * Host. |
| 663 | * For internal queue in Goya, this represents an SRAM or |
| 664 | * a DRAM address of the internal CB. In Gaudi, this might also |
| 665 | * represent a mapped host address of the CB. |
| 666 | * |
| 667 | * A mapped host address is in the device address space, after |
| 668 | * a host address was mapped by the device MMU. |
| 669 | */ |
| 670 | __u64 cb_handle; |
| 671 | |
Ofir Bitton | 5fe1c17 | 2020-09-10 10:10:55 +0300 | [diff] [blame] | 672 | /* Relevant only when HL_CS_FLAGS_WAIT or |
farah kassabri | dadf17a | 2021-05-24 18:09:22 +0300 | [diff] [blame] | 673 | * HL_CS_FLAGS_COLLECTIVE_WAIT is set |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 674 | * This holds address of array of u64 values that contain |
farah kassabri | dadf17a | 2021-05-24 18:09:22 +0300 | [diff] [blame] | 675 | * signal CS sequence numbers. The wait described by |
| 676 | * this job will listen on all those signals |
| 677 | * (wait event per signal) |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 678 | */ |
| 679 | __u64 signal_seq_arr; |
farah kassabri | dadf17a | 2021-05-24 18:09:22 +0300 | [diff] [blame] | 680 | |
| 681 | /* |
| 682 | * Relevant only when HL_CS_FLAGS_WAIT or |
| 683 | * HL_CS_FLAGS_COLLECTIVE_WAIT is set |
| 684 | * along with HL_CS_FLAGS_ENCAP_SIGNALS. |
| 685 | * This is the CS sequence which has the encapsulated signals. |
| 686 | */ |
| 687 | __u64 encaps_signal_seq; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 688 | }; |
| 689 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 690 | /* Index of queue to put the CB on */ |
| 691 | __u32 queue_index; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 692 | |
| 693 | union { |
| 694 | /* |
| 695 | * Size of command buffer with valid packets |
| 696 | * Can be smaller then actual CB size |
| 697 | */ |
| 698 | __u32 cb_size; |
| 699 | |
Ofir Bitton | 5fe1c17 | 2020-09-10 10:10:55 +0300 | [diff] [blame] | 700 | /* Relevant only when HL_CS_FLAGS_WAIT or |
| 701 | * HL_CS_FLAGS_COLLECTIVE_WAIT is set. |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 702 | * Number of entries in signal_seq_arr |
| 703 | */ |
| 704 | __u32 num_signal_seq_arr; |
farah kassabri | dadf17a | 2021-05-24 18:09:22 +0300 | [diff] [blame] | 705 | |
| 706 | /* Relevant only when HL_CS_FLAGS_WAIT or |
| 707 | * HL_CS_FLAGS_COLLECTIVE_WAIT is set along |
| 708 | * with HL_CS_FLAGS_ENCAP_SIGNALS |
| 709 | * This set the signals range that the user want to wait for |
| 710 | * out of the whole reserved signals range. |
| 711 | * e.g if the signals range is 20, and user don't want |
| 712 | * to wait for signal 8, so he set this offset to 7, then |
| 713 | * he call the API again with 9 and so on till 20. |
| 714 | */ |
| 715 | __u32 encaps_signal_offset; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 716 | }; |
| 717 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 718 | /* HL_CS_CHUNK_FLAGS_* */ |
| 719 | __u32 cs_chunk_flags; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 720 | |
Ofir Bitton | 5fe1c17 | 2020-09-10 10:10:55 +0300 | [diff] [blame] | 721 | /* Relevant only when HL_CS_FLAGS_COLLECTIVE_WAIT is set. |
| 722 | * This holds the collective engine ID. The wait described by this job |
| 723 | * will sync with this engine and with all NICs before completion. |
| 724 | */ |
| 725 | __u32 collective_engine_id; |
| 726 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 727 | /* Align structure to 64 bytes */ |
Ofir Bitton | 5fe1c17 | 2020-09-10 10:10:55 +0300 | [diff] [blame] | 728 | __u32 pad[10]; |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 729 | }; |
| 730 | |
Ofir Bitton | 5fe1c17 | 2020-09-10 10:10:55 +0300 | [diff] [blame] | 731 | /* SIGNAL and WAIT/COLLECTIVE_WAIT flags are mutually exclusive */ |
Ofir Bitton | c209e74 | 2020-12-03 17:12:09 +0200 | [diff] [blame] | 732 | #define HL_CS_FLAGS_FORCE_RESTORE 0x1 |
| 733 | #define HL_CS_FLAGS_SIGNAL 0x2 |
| 734 | #define HL_CS_FLAGS_WAIT 0x4 |
| 735 | #define HL_CS_FLAGS_COLLECTIVE_WAIT 0x8 |
| 736 | #define HL_CS_FLAGS_TIMESTAMP 0x20 |
| 737 | #define HL_CS_FLAGS_STAGED_SUBMISSION 0x40 |
| 738 | #define HL_CS_FLAGS_STAGED_SUBMISSION_FIRST 0x80 |
| 739 | #define HL_CS_FLAGS_STAGED_SUBMISSION_LAST 0x100 |
Alon Mizrahi | cf39395 | 2021-02-22 15:53:24 +0200 | [diff] [blame] | 740 | #define HL_CS_FLAGS_CUSTOM_TIMEOUT 0x200 |
Yuri Nudelman | 8e8125f | 2021-05-25 14:49:52 +0300 | [diff] [blame] | 741 | #define HL_CS_FLAGS_SKIP_RESET_ON_TIMEOUT 0x400 |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 742 | |
farah kassabri | dadf17a | 2021-05-24 18:09:22 +0300 | [diff] [blame] | 743 | /* |
| 744 | * The encapsulated signals CS is merged into the existing CS ioctls. |
| 745 | * In order to use this feature need to follow the below procedure: |
| 746 | * 1. Reserve signals, set the CS type to HL_CS_FLAGS_RESERVE_SIGNALS_ONLY |
| 747 | * the output of this API will be the SOB offset from CFG_BASE. |
| 748 | * this address will be used to patch CB cmds to do the signaling for this |
| 749 | * SOB by incrementing it's value. |
| 750 | * for reverting the reservation use HL_CS_FLAGS_UNRESERVE_SIGNALS_ONLY |
| 751 | * CS type, note that this might fail if out-of-sync happened to the SOB |
| 752 | * value, in case other signaling request to the same SOB occurred between |
| 753 | * reserve-unreserve calls. |
| 754 | * 2. Use the staged CS to do the encapsulated signaling jobs. |
| 755 | * use HL_CS_FLAGS_STAGED_SUBMISSION and HL_CS_FLAGS_STAGED_SUBMISSION_FIRST |
| 756 | * along with HL_CS_FLAGS_ENCAP_SIGNALS flag, and set encaps_signal_offset |
| 757 | * field. This offset allows app to wait on part of the reserved signals. |
| 758 | * 3. Use WAIT/COLLECTIVE WAIT CS along with HL_CS_FLAGS_ENCAP_SIGNALS flag |
| 759 | * to wait for the encapsulated signals. |
| 760 | */ |
| 761 | #define HL_CS_FLAGS_ENCAP_SIGNALS 0x800 |
| 762 | #define HL_CS_FLAGS_RESERVE_SIGNALS_ONLY 0x1000 |
| 763 | #define HL_CS_FLAGS_UNRESERVE_SIGNALS_ONLY 0x2000 |
| 764 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 765 | #define HL_CS_STATUS_SUCCESS 0 |
| 766 | |
Oded Gabbay | 5d10125 | 2019-11-10 16:08:26 +0200 | [diff] [blame] | 767 | #define HL_MAX_JOBS_PER_CS 512 |
| 768 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 769 | struct hl_cs_in { |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 770 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 771 | /* this holds address of array of hl_cs_chunk for restore phase */ |
| 772 | __u64 chunks_restore; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 773 | |
| 774 | /* holds address of array of hl_cs_chunk for execution phase */ |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 775 | __u64 chunks_execute; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 776 | |
farah kassabri | dadf17a | 2021-05-24 18:09:22 +0300 | [diff] [blame] | 777 | union { |
| 778 | /* |
| 779 | * Sequence number of a staged submission CS |
| 780 | * valid only if HL_CS_FLAGS_STAGED_SUBMISSION is set and |
| 781 | * HL_CS_FLAGS_STAGED_SUBMISSION_FIRST is unset. |
| 782 | */ |
| 783 | __u64 seq; |
| 784 | |
| 785 | /* |
| 786 | * Encapsulated signals handle id |
| 787 | * Valid for two flows: |
| 788 | * 1. CS with encapsulated signals: |
| 789 | * when HL_CS_FLAGS_STAGED_SUBMISSION and |
| 790 | * HL_CS_FLAGS_STAGED_SUBMISSION_FIRST |
| 791 | * and HL_CS_FLAGS_ENCAP_SIGNALS are set. |
| 792 | * 2. unreserve signals: |
| 793 | * valid when HL_CS_FLAGS_UNRESERVE_SIGNALS_ONLY is set. |
| 794 | */ |
| 795 | __u32 encaps_sig_handle_id; |
| 796 | |
| 797 | /* Valid only when HL_CS_FLAGS_RESERVE_SIGNALS_ONLY is set */ |
| 798 | struct { |
| 799 | /* Encapsulated signals number */ |
| 800 | __u32 encaps_signals_count; |
| 801 | |
| 802 | /* Encapsulated signals queue index (stream) */ |
| 803 | __u32 encaps_signals_q_idx; |
| 804 | }; |
| 805 | }; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 806 | |
Oded Gabbay | 5d10125 | 2019-11-10 16:08:26 +0200 | [diff] [blame] | 807 | /* Number of chunks in restore phase array. Maximum number is |
| 808 | * HL_MAX_JOBS_PER_CS |
| 809 | */ |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 810 | __u32 num_chunks_restore; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 811 | |
Oded Gabbay | 5d10125 | 2019-11-10 16:08:26 +0200 | [diff] [blame] | 812 | /* Number of chunks in execution array. Maximum number is |
| 813 | * HL_MAX_JOBS_PER_CS |
| 814 | */ |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 815 | __u32 num_chunks_execute; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 816 | |
Oded Gabbay | 131d1ba | 2021-04-02 22:24:38 +0300 | [diff] [blame] | 817 | /* timeout in seconds - valid only if HL_CS_FLAGS_CUSTOM_TIMEOUT |
| 818 | * is set |
| 819 | */ |
| 820 | __u32 timeout; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 821 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 822 | /* HL_CS_FLAGS_* */ |
| 823 | __u32 cs_flags; |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 824 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 825 | /* Context ID - Currently not in use */ |
| 826 | __u32 ctx_id; |
| 827 | }; |
| 828 | |
| 829 | struct hl_cs_out { |
farah kassabri | dadf17a | 2021-05-24 18:09:22 +0300 | [diff] [blame] | 830 | union { |
| 831 | /* |
| 832 | * seq holds the sequence number of the CS to pass to wait |
| 833 | * ioctl. All values are valid except for 0 and ULLONG_MAX |
| 834 | */ |
| 835 | __u64 seq; |
| 836 | |
| 837 | /* Valid only when HL_CS_FLAGS_RESERVE_SIGNALS_ONLY is set */ |
| 838 | struct { |
| 839 | /* This is the resereved signal handle id */ |
| 840 | __u32 handle_id; |
| 841 | |
| 842 | /* This is the signals count */ |
| 843 | __u32 count; |
| 844 | }; |
| 845 | }; |
| 846 | |
| 847 | /* HL_CS_STATUS */ |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 848 | __u32 status; |
farah kassabri | dadf17a | 2021-05-24 18:09:22 +0300 | [diff] [blame] | 849 | |
| 850 | /* |
| 851 | * SOB base address offset |
| 852 | * Valid only when HL_CS_FLAGS_RESERVE_SIGNALS_ONLY is set |
| 853 | */ |
| 854 | __u32 sob_base_addr_offset; |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 855 | }; |
| 856 | |
| 857 | union hl_cs_args { |
| 858 | struct hl_cs_in in; |
| 859 | struct hl_cs_out out; |
| 860 | }; |
| 861 | |
Ofir Bitton | ab5f5c3 | 2021-01-12 18:37:19 +0200 | [diff] [blame] | 862 | #define HL_WAIT_CS_FLAGS_INTERRUPT 0x2 |
| 863 | #define HL_WAIT_CS_FLAGS_INTERRUPT_MASK 0xFFF00000 |
Ohad Sharabi | 215f0c1 | 2021-06-14 22:18:41 +0300 | [diff] [blame] | 864 | #define HL_WAIT_CS_FLAGS_MULTI_CS 0x4 |
| 865 | |
| 866 | #define HL_WAIT_MULTI_CS_LIST_MAX_LEN 32 |
Ofir Bitton | ab5f5c3 | 2021-01-12 18:37:19 +0200 | [diff] [blame] | 867 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 868 | struct hl_wait_cs_in { |
Ofir Bitton | ab5f5c3 | 2021-01-12 18:37:19 +0200 | [diff] [blame] | 869 | union { |
| 870 | struct { |
Ohad Sharabi | 215f0c1 | 2021-06-14 22:18:41 +0300 | [diff] [blame] | 871 | /* |
| 872 | * In case of wait_cs holds the CS sequence number. |
| 873 | * In case of wait for multi CS hold a user pointer to |
| 874 | * an array of CS sequence numbers |
| 875 | */ |
Ofir Bitton | ab5f5c3 | 2021-01-12 18:37:19 +0200 | [diff] [blame] | 876 | __u64 seq; |
| 877 | /* Absolute timeout to wait for command submission |
| 878 | * in microseconds |
| 879 | */ |
| 880 | __u64 timeout_us; |
| 881 | }; |
| 882 | |
| 883 | struct { |
| 884 | /* User address for completion comparison. |
| 885 | * upon interrupt, driver will compare the value pointed |
| 886 | * by this address with the supplied target value. |
| 887 | * in order not to perform any comparison, set address |
| 888 | * to all 1s. |
| 889 | * Relevant only when HL_WAIT_CS_FLAGS_INTERRUPT is set |
| 890 | */ |
| 891 | __u64 addr; |
| 892 | /* Target value for completion comparison */ |
| 893 | __u32 target; |
| 894 | /* Absolute timeout to wait for interrupt |
| 895 | * in microseconds |
| 896 | */ |
| 897 | __u32 interrupt_timeout_us; |
| 898 | }; |
| 899 | }; |
| 900 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 901 | /* Context ID - Currently not in use */ |
| 902 | __u32 ctx_id; |
Ohad Sharabi | 215f0c1 | 2021-06-14 22:18:41 +0300 | [diff] [blame] | 903 | |
Ofir Bitton | ab5f5c3 | 2021-01-12 18:37:19 +0200 | [diff] [blame] | 904 | /* HL_WAIT_CS_FLAGS_* |
| 905 | * If HL_WAIT_CS_FLAGS_INTERRUPT is set, this field should include |
| 906 | * interrupt id according to HL_WAIT_CS_FLAGS_INTERRUPT_MASK, in order |
| 907 | * not to specify an interrupt id ,set mask to all 1s. |
| 908 | */ |
| 909 | __u32 flags; |
Ohad Sharabi | 215f0c1 | 2021-06-14 22:18:41 +0300 | [diff] [blame] | 910 | |
| 911 | /* Multi CS API info- valid entries in multi-CS array */ |
| 912 | __u8 seq_arr_len; |
| 913 | __u8 pad[7]; |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 914 | }; |
| 915 | |
| 916 | #define HL_WAIT_CS_STATUS_COMPLETED 0 |
| 917 | #define HL_WAIT_CS_STATUS_BUSY 1 |
| 918 | #define HL_WAIT_CS_STATUS_TIMEDOUT 2 |
| 919 | #define HL_WAIT_CS_STATUS_ABORTED 3 |
| 920 | #define HL_WAIT_CS_STATUS_INTERRUPTED 4 |
| 921 | |
Ofir Bitton | bd2f477 | 2020-11-10 17:26:22 +0200 | [diff] [blame] | 922 | #define HL_WAIT_CS_STATUS_FLAG_GONE 0x1 |
| 923 | #define HL_WAIT_CS_STATUS_FLAG_TIMESTAMP_VLD 0x2 |
Ofir Bitton | 9d127ad | 2020-11-10 16:30:53 +0200 | [diff] [blame] | 924 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 925 | struct hl_wait_cs_out { |
| 926 | /* HL_WAIT_CS_STATUS_* */ |
| 927 | __u32 status; |
Ofir Bitton | 9d127ad | 2020-11-10 16:30:53 +0200 | [diff] [blame] | 928 | /* HL_WAIT_CS_STATUS_FLAG* */ |
| 929 | __u32 flags; |
Ohad Sharabi | 215f0c1 | 2021-06-14 22:18:41 +0300 | [diff] [blame] | 930 | /* |
| 931 | * valid only if HL_WAIT_CS_STATUS_FLAG_TIMESTAMP_VLD is set |
| 932 | * for wait_cs: timestamp of CS completion |
| 933 | * for wait_multi_cs: timestamp of FIRST CS completion |
| 934 | */ |
Ofir Bitton | bd2f477 | 2020-11-10 17:26:22 +0200 | [diff] [blame] | 935 | __s64 timestamp_nsec; |
Ohad Sharabi | 215f0c1 | 2021-06-14 22:18:41 +0300 | [diff] [blame] | 936 | /* multi CS completion bitmap */ |
| 937 | __u32 cs_completion_map; |
| 938 | __u32 pad; |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 939 | }; |
| 940 | |
| 941 | union hl_wait_cs_args { |
| 942 | struct hl_wait_cs_in in; |
| 943 | struct hl_wait_cs_out out; |
| 944 | }; |
| 945 | |
Oded Gabbay | 3bf1c02 | 2020-06-09 16:14:55 +0300 | [diff] [blame] | 946 | /* Opcode to allocate device memory */ |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 947 | #define HL_MEM_OP_ALLOC 0 |
| 948 | /* Opcode to free previously allocated device memory */ |
| 949 | #define HL_MEM_OP_FREE 1 |
Oded Gabbay | 3bf1c02 | 2020-06-09 16:14:55 +0300 | [diff] [blame] | 950 | /* Opcode to map host and device memory */ |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 951 | #define HL_MEM_OP_MAP 2 |
Oded Gabbay | 3bf1c02 | 2020-06-09 16:14:55 +0300 | [diff] [blame] | 952 | /* Opcode to unmap previously mapped host and device memory */ |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 953 | #define HL_MEM_OP_UNMAP 3 |
Ofir Bitton | d00697f | 2021-01-05 12:55:06 +0200 | [diff] [blame] | 954 | /* Opcode to map a hw block */ |
| 955 | #define HL_MEM_OP_MAP_BLOCK 4 |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 956 | |
| 957 | /* Memory flags */ |
| 958 | #define HL_MEM_CONTIGUOUS 0x1 |
| 959 | #define HL_MEM_SHARED 0x2 |
| 960 | #define HL_MEM_USERPTR 0x4 |
Yuri Nudelman | 486e197 | 2021-06-03 17:51:58 +0300 | [diff] [blame] | 961 | #define HL_MEM_FORCE_HINT 0x8 |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 962 | |
| 963 | struct hl_mem_in { |
| 964 | union { |
| 965 | /* HL_MEM_OP_ALLOC- allocate device memory */ |
| 966 | struct { |
| 967 | /* Size to alloc */ |
Oded Gabbay | 230afe7 | 2019-02-27 00:19:18 +0200 | [diff] [blame] | 968 | __u64 mem_size; |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 969 | } alloc; |
| 970 | |
| 971 | /* HL_MEM_OP_FREE - free device memory */ |
| 972 | struct { |
| 973 | /* Handle returned from HL_MEM_OP_ALLOC */ |
| 974 | __u64 handle; |
| 975 | } free; |
| 976 | |
| 977 | /* HL_MEM_OP_MAP - map device memory */ |
| 978 | struct { |
| 979 | /* |
| 980 | * Requested virtual address of mapped memory. |
Oded Gabbay | 4c172bb | 2019-08-30 16:59:33 +0300 | [diff] [blame] | 981 | * The driver will try to map the requested region to |
| 982 | * this hint address, as long as the address is valid |
| 983 | * and not already mapped. The user should check the |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 984 | * returned address of the IOCTL to make sure he got |
Oded Gabbay | 4c172bb | 2019-08-30 16:59:33 +0300 | [diff] [blame] | 985 | * the hint address. Passing 0 here means that the |
| 986 | * driver will choose the address itself. |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 987 | */ |
| 988 | __u64 hint_addr; |
| 989 | /* Handle returned from HL_MEM_OP_ALLOC */ |
| 990 | __u64 handle; |
| 991 | } map_device; |
| 992 | |
| 993 | /* HL_MEM_OP_MAP - map host memory */ |
| 994 | struct { |
| 995 | /* Address of allocated host memory */ |
| 996 | __u64 host_virt_addr; |
| 997 | /* |
| 998 | * Requested virtual address of mapped memory. |
Oded Gabbay | 4c172bb | 2019-08-30 16:59:33 +0300 | [diff] [blame] | 999 | * The driver will try to map the requested region to |
| 1000 | * this hint address, as long as the address is valid |
| 1001 | * and not already mapped. The user should check the |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 1002 | * returned address of the IOCTL to make sure he got |
Oded Gabbay | 4c172bb | 2019-08-30 16:59:33 +0300 | [diff] [blame] | 1003 | * the hint address. Passing 0 here means that the |
| 1004 | * driver will choose the address itself. |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 1005 | */ |
| 1006 | __u64 hint_addr; |
| 1007 | /* Size of allocated host memory */ |
Oded Gabbay | 230afe7 | 2019-02-27 00:19:18 +0200 | [diff] [blame] | 1008 | __u64 mem_size; |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 1009 | } map_host; |
| 1010 | |
Ofir Bitton | d00697f | 2021-01-05 12:55:06 +0200 | [diff] [blame] | 1011 | /* HL_MEM_OP_MAP_BLOCK - map a hw block */ |
| 1012 | struct { |
| 1013 | /* |
Oded Gabbay | 6df50d2 | 2021-02-05 16:04:34 +0200 | [diff] [blame] | 1014 | * HW block address to map, a handle and size will be |
| 1015 | * returned to the user and will be used to mmap the |
| 1016 | * relevant block. Only addresses from configuration |
| 1017 | * space are allowed. |
Ofir Bitton | d00697f | 2021-01-05 12:55:06 +0200 | [diff] [blame] | 1018 | */ |
| 1019 | __u64 block_addr; |
| 1020 | } map_block; |
| 1021 | |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 1022 | /* HL_MEM_OP_UNMAP - unmap host memory */ |
| 1023 | struct { |
| 1024 | /* Virtual address returned from HL_MEM_OP_MAP */ |
| 1025 | __u64 device_virt_addr; |
| 1026 | } unmap; |
| 1027 | }; |
| 1028 | |
| 1029 | /* HL_MEM_OP_* */ |
| 1030 | __u32 op; |
| 1031 | /* HL_MEM_* flags */ |
| 1032 | __u32 flags; |
| 1033 | /* Context ID - Currently not in use */ |
| 1034 | __u32 ctx_id; |
| 1035 | __u32 pad; |
| 1036 | }; |
| 1037 | |
| 1038 | struct hl_mem_out { |
| 1039 | union { |
| 1040 | /* |
| 1041 | * Used for HL_MEM_OP_MAP as the virtual address that was |
| 1042 | * assigned in the device VA space. |
| 1043 | * A value of 0 means the requested operation failed. |
| 1044 | */ |
| 1045 | __u64 device_virt_addr; |
| 1046 | |
| 1047 | /* |
Oded Gabbay | 6df50d2 | 2021-02-05 16:04:34 +0200 | [diff] [blame] | 1048 | * Used in HL_MEM_OP_ALLOC |
Ofir Bitton | d00697f | 2021-01-05 12:55:06 +0200 | [diff] [blame] | 1049 | * This is the assigned handle for the allocated memory |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 1050 | */ |
| 1051 | __u64 handle; |
Oded Gabbay | 6df50d2 | 2021-02-05 16:04:34 +0200 | [diff] [blame] | 1052 | |
| 1053 | struct { |
| 1054 | /* |
| 1055 | * Used in HL_MEM_OP_MAP_BLOCK. |
| 1056 | * This is the assigned handle for the mapped block |
| 1057 | */ |
| 1058 | __u64 block_handle; |
| 1059 | |
| 1060 | /* |
| 1061 | * Used in HL_MEM_OP_MAP_BLOCK |
| 1062 | * This is the size of the mapped block |
| 1063 | */ |
| 1064 | __u32 block_size; |
| 1065 | |
| 1066 | __u32 pad; |
| 1067 | }; |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 1068 | }; |
| 1069 | }; |
| 1070 | |
| 1071 | union hl_mem_args { |
| 1072 | struct hl_mem_in in; |
| 1073 | struct hl_mem_out out; |
| 1074 | }; |
| 1075 | |
Omer Shpigelman | 315bc05 | 2019-04-01 22:31:22 +0300 | [diff] [blame] | 1076 | #define HL_DEBUG_MAX_AUX_VALUES 10 |
| 1077 | |
| 1078 | struct hl_debug_params_etr { |
| 1079 | /* Address in memory to allocate buffer */ |
| 1080 | __u64 buffer_address; |
| 1081 | |
| 1082 | /* Size of buffer to allocate */ |
| 1083 | __u64 buffer_size; |
| 1084 | |
| 1085 | /* Sink operation mode: SW fifo, HW fifo, Circular buffer */ |
| 1086 | __u32 sink_mode; |
| 1087 | __u32 pad; |
| 1088 | }; |
| 1089 | |
| 1090 | struct hl_debug_params_etf { |
| 1091 | /* Address in memory to allocate buffer */ |
| 1092 | __u64 buffer_address; |
| 1093 | |
| 1094 | /* Size of buffer to allocate */ |
| 1095 | __u64 buffer_size; |
| 1096 | |
| 1097 | /* Sink operation mode: SW fifo, HW fifo, Circular buffer */ |
| 1098 | __u32 sink_mode; |
| 1099 | __u32 pad; |
| 1100 | }; |
| 1101 | |
| 1102 | struct hl_debug_params_stm { |
| 1103 | /* Two bit masks for HW event and Stimulus Port */ |
| 1104 | __u64 he_mask; |
| 1105 | __u64 sp_mask; |
| 1106 | |
| 1107 | /* Trace source ID */ |
| 1108 | __u32 id; |
| 1109 | |
| 1110 | /* Frequency for the timestamp register */ |
| 1111 | __u32 frequency; |
| 1112 | }; |
| 1113 | |
| 1114 | struct hl_debug_params_bmon { |
Oded Gabbay | d691171 | 2019-04-21 16:20:46 +0300 | [diff] [blame] | 1115 | /* Two address ranges that the user can request to filter */ |
| 1116 | __u64 start_addr0; |
| 1117 | __u64 addr_mask0; |
| 1118 | |
| 1119 | __u64 start_addr1; |
| 1120 | __u64 addr_mask1; |
Omer Shpigelman | 315bc05 | 2019-04-01 22:31:22 +0300 | [diff] [blame] | 1121 | |
| 1122 | /* Capture window configuration */ |
| 1123 | __u32 bw_win; |
| 1124 | __u32 win_capture; |
| 1125 | |
| 1126 | /* Trace source ID */ |
| 1127 | __u32 id; |
| 1128 | __u32 pad; |
| 1129 | }; |
| 1130 | |
| 1131 | struct hl_debug_params_spmu { |
| 1132 | /* Event types selection */ |
| 1133 | __u64 event_types[HL_DEBUG_MAX_AUX_VALUES]; |
| 1134 | |
| 1135 | /* Number of event types selection */ |
| 1136 | __u32 event_types_num; |
| 1137 | __u32 pad; |
| 1138 | }; |
| 1139 | |
| 1140 | /* Opcode for ETR component */ |
| 1141 | #define HL_DEBUG_OP_ETR 0 |
| 1142 | /* Opcode for ETF component */ |
| 1143 | #define HL_DEBUG_OP_ETF 1 |
| 1144 | /* Opcode for STM component */ |
| 1145 | #define HL_DEBUG_OP_STM 2 |
| 1146 | /* Opcode for FUNNEL component */ |
| 1147 | #define HL_DEBUG_OP_FUNNEL 3 |
| 1148 | /* Opcode for BMON component */ |
| 1149 | #define HL_DEBUG_OP_BMON 4 |
| 1150 | /* Opcode for SPMU component */ |
| 1151 | #define HL_DEBUG_OP_SPMU 5 |
Tomer Tayar | 413cf57 | 2019-08-27 16:14:18 +0000 | [diff] [blame] | 1152 | /* Opcode for timestamp (deprecated) */ |
Omer Shpigelman | 315bc05 | 2019-04-01 22:31:22 +0300 | [diff] [blame] | 1153 | #define HL_DEBUG_OP_TIMESTAMP 6 |
Oded Gabbay | 2add64e | 2019-05-04 16:30:00 +0300 | [diff] [blame] | 1154 | /* Opcode for setting the device into or out of debug mode. The enable |
| 1155 | * variable should be 1 for enabling debug mode and 0 for disabling it |
| 1156 | */ |
| 1157 | #define HL_DEBUG_OP_SET_MODE 7 |
Omer Shpigelman | 315bc05 | 2019-04-01 22:31:22 +0300 | [diff] [blame] | 1158 | |
| 1159 | struct hl_debug_args { |
| 1160 | /* |
| 1161 | * Pointer to user input structure. |
| 1162 | * This field is relevant to specific opcodes. |
| 1163 | */ |
| 1164 | __u64 input_ptr; |
| 1165 | /* Pointer to user output structure */ |
| 1166 | __u64 output_ptr; |
| 1167 | /* Size of user input structure */ |
| 1168 | __u32 input_size; |
| 1169 | /* Size of user output structure */ |
| 1170 | __u32 output_size; |
| 1171 | /* HL_DEBUG_OP_* */ |
| 1172 | __u32 op; |
| 1173 | /* |
| 1174 | * Register index in the component, taken from the debug_regs_index enum |
| 1175 | * in the various ASIC header files |
| 1176 | */ |
| 1177 | __u32 reg_idx; |
| 1178 | /* Enable/disable */ |
| 1179 | __u32 enable; |
| 1180 | /* Context ID - Currently not in use */ |
| 1181 | __u32 ctx_id; |
| 1182 | }; |
| 1183 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 1184 | /* |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 1185 | * Various information operations such as: |
| 1186 | * - H/W IP information |
| 1187 | * - Current dram usage |
| 1188 | * |
| 1189 | * The user calls this IOCTL with an opcode that describes the required |
| 1190 | * information. The user should supply a pointer to a user-allocated memory |
| 1191 | * chunk, which will be filled by the driver with the requested information. |
| 1192 | * |
| 1193 | * The user supplies the maximum amount of size to copy into the user's memory, |
| 1194 | * in order to prevent data corruption in case of differences between the |
| 1195 | * definitions of structures in kernel and userspace, e.g. in case of old |
| 1196 | * userspace and new kernel driver |
| 1197 | */ |
| 1198 | #define HL_IOCTL_INFO \ |
| 1199 | _IOWR('H', 0x01, struct hl_info_args) |
| 1200 | |
| 1201 | /* |
Oded Gabbay | be5d926 | 2019-02-16 00:39:15 +0200 | [diff] [blame] | 1202 | * Command Buffer |
| 1203 | * - Request a Command Buffer |
| 1204 | * - Destroy a Command Buffer |
| 1205 | * |
| 1206 | * The command buffers are memory blocks that reside in DMA-able address |
| 1207 | * space and are physically contiguous so they can be accessed by the device |
| 1208 | * directly. They are allocated using the coherent DMA API. |
| 1209 | * |
| 1210 | * When creating a new CB, the IOCTL returns a handle of it, and the user-space |
| 1211 | * process needs to use that handle to mmap the buffer so it can access them. |
| 1212 | * |
Tomer Tayar | ef6a0f6 | 2020-07-09 16:17:48 +0300 | [diff] [blame] | 1213 | * In some instances, the device must access the command buffer through the |
| 1214 | * device's MMU, and thus its memory should be mapped. In these cases, user can |
| 1215 | * indicate the driver that such a mapping is required. |
| 1216 | * The resulting device virtual address will be used internally by the driver, |
| 1217 | * and won't be returned to user. |
| 1218 | * |
Oded Gabbay | be5d926 | 2019-02-16 00:39:15 +0200 | [diff] [blame] | 1219 | */ |
| 1220 | #define HL_IOCTL_CB \ |
| 1221 | _IOWR('H', 0x02, union hl_cb_args) |
| 1222 | |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 1223 | /* |
| 1224 | * Command Submission |
| 1225 | * |
| 1226 | * To submit work to the device, the user need to call this IOCTL with a set |
| 1227 | * of JOBS. That set of JOBS constitutes a CS object. |
| 1228 | * Each JOB will be enqueued on a specific queue, according to the user's input. |
| 1229 | * There can be more then one JOB per queue. |
| 1230 | * |
Oded Gabbay | 131d1ba | 2021-04-02 22:24:38 +0300 | [diff] [blame] | 1231 | * The CS IOCTL will receive two sets of JOBS. One set is for "restore" phase |
| 1232 | * and a second set is for "execution" phase. |
Oded Gabbay | 9002729 | 2019-04-03 09:51:04 +0300 | [diff] [blame] | 1233 | * The JOBS on the "restore" phase are enqueued only after context-switch |
| 1234 | * (or if its the first CS for this context). The user can also order the |
| 1235 | * driver to run the "restore" phase explicitly |
| 1236 | * |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 1237 | * There are two types of queues - external and internal. External queues |
| 1238 | * are DMA queues which transfer data from/to the Host. All other queues are |
| 1239 | * internal. The driver will get completion notifications from the device only |
| 1240 | * on JOBS which are enqueued in the external queues. |
| 1241 | * |
Oded Gabbay | 541664d3 | 2019-02-28 11:55:44 +0200 | [diff] [blame] | 1242 | * For jobs on external queues, the user needs to create command buffers |
| 1243 | * through the CB ioctl and give the CB's handle to the CS ioctl. For jobs on |
| 1244 | * internal queues, the user needs to prepare a "command buffer" with packets |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 1245 | * on either the device SRAM/DRAM or the host, and give the device address of |
| 1246 | * that buffer to the CS ioctl. |
Oded Gabbay | 541664d3 | 2019-02-28 11:55:44 +0200 | [diff] [blame] | 1247 | * |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 1248 | * This IOCTL is asynchronous in regard to the actual execution of the CS. This |
| 1249 | * means it returns immediately after ALL the JOBS were enqueued on their |
| 1250 | * relevant queues. Therefore, the user mustn't assume the CS has been completed |
| 1251 | * or has even started to execute. |
| 1252 | * |
Oded Gabbay | 9002729 | 2019-04-03 09:51:04 +0300 | [diff] [blame] | 1253 | * Upon successful enqueue, the IOCTL returns a sequence number which the user |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 1254 | * can use with the "Wait for CS" IOCTL to check whether the handle's CS |
| 1255 | * external JOBS have been completed. Note that if the CS has internal JOBS |
| 1256 | * which can execute AFTER the external JOBS have finished, the driver might |
| 1257 | * report that the CS has finished executing BEFORE the internal JOBS have |
Omer Shpigelman | f9e5f29 | 2020-05-07 13:41:16 +0300 | [diff] [blame] | 1258 | * actually finished executing. |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 1259 | * |
Oded Gabbay | 9002729 | 2019-04-03 09:51:04 +0300 | [diff] [blame] | 1260 | * Even though the sequence number increments per CS, the user can NOT |
| 1261 | * automatically assume that if CS with sequence number N finished, then CS |
| 1262 | * with sequence number N-1 also finished. The user can make this assumption if |
| 1263 | * and only if CS N and CS N-1 are exactly the same (same CBs for the same |
| 1264 | * queues). |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 1265 | */ |
| 1266 | #define HL_IOCTL_CS \ |
| 1267 | _IOWR('H', 0x03, union hl_cs_args) |
| 1268 | |
| 1269 | /* |
| 1270 | * Wait for Command Submission |
| 1271 | * |
| 1272 | * The user can call this IOCTL with a handle it received from the CS IOCTL |
| 1273 | * to wait until the handle's CS has finished executing. The user will wait |
Tomer Tayar | f435614 | 2019-10-02 13:53:52 +0000 | [diff] [blame] | 1274 | * inside the kernel until the CS has finished or until the user-requested |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 1275 | * timeout has expired. |
| 1276 | * |
Oded Gabbay | 681a22f | 2020-09-07 18:08:51 +0300 | [diff] [blame] | 1277 | * If the timeout value is 0, the driver won't sleep at all. It will check |
| 1278 | * the status of the CS and return immediately |
| 1279 | * |
Oded Gabbay | eff6f4a | 2019-02-16 00:39:21 +0200 | [diff] [blame] | 1280 | * The return value of the IOCTL is a standard Linux error code. The possible |
| 1281 | * values are: |
| 1282 | * |
| 1283 | * EINTR - Kernel waiting has been interrupted, e.g. due to OS signal |
| 1284 | * that the user process received |
| 1285 | * ETIMEDOUT - The CS has caused a timeout on the device |
| 1286 | * EIO - The CS was aborted (usually because the device was reset) |
| 1287 | * ENODEV - The device wants to do hard-reset (so user need to close FD) |
| 1288 | * |
| 1289 | * The driver also returns a custom define inside the IOCTL which can be: |
| 1290 | * |
| 1291 | * HL_WAIT_CS_STATUS_COMPLETED - The CS has been completed successfully (0) |
| 1292 | * HL_WAIT_CS_STATUS_BUSY - The CS is still executing (0) |
| 1293 | * HL_WAIT_CS_STATUS_TIMEDOUT - The CS has caused a timeout on the device |
| 1294 | * (ETIMEDOUT) |
| 1295 | * HL_WAIT_CS_STATUS_ABORTED - The CS was aborted, usually because the |
| 1296 | * device was reset (EIO) |
| 1297 | * HL_WAIT_CS_STATUS_INTERRUPTED - Waiting for the CS was interrupted (EINTR) |
| 1298 | * |
| 1299 | */ |
| 1300 | |
| 1301 | #define HL_IOCTL_WAIT_CS \ |
| 1302 | _IOWR('H', 0x04, union hl_wait_cs_args) |
| 1303 | |
Omer Shpigelman | 0feaf86 | 2019-02-16 00:39:22 +0200 | [diff] [blame] | 1304 | /* |
| 1305 | * Memory |
| 1306 | * - Map host memory to device MMU |
| 1307 | * - Unmap host memory from device MMU |
| 1308 | * |
| 1309 | * This IOCTL allows the user to map host memory to the device MMU |
| 1310 | * |
| 1311 | * For host memory, the IOCTL doesn't allocate memory. The user is supposed |
| 1312 | * to allocate the memory in user-space (malloc/new). The driver pins the |
| 1313 | * physical pages (up to the allowed limit by the OS), assigns a virtual |
| 1314 | * address in the device VA space and initializes the device MMU. |
| 1315 | * |
| 1316 | * There is an option for the user to specify the requested virtual address. |
| 1317 | * |
| 1318 | */ |
| 1319 | #define HL_IOCTL_MEMORY \ |
| 1320 | _IOWR('H', 0x05, union hl_mem_args) |
| 1321 | |
Omer Shpigelman | 315bc05 | 2019-04-01 22:31:22 +0300 | [diff] [blame] | 1322 | /* |
| 1323 | * Debug |
| 1324 | * - Enable/disable the ETR/ETF/FUNNEL/STM/BMON/SPMU debug traces |
| 1325 | * |
| 1326 | * This IOCTL allows the user to get debug traces from the chip. |
| 1327 | * |
Oded Gabbay | 2add64e | 2019-05-04 16:30:00 +0300 | [diff] [blame] | 1328 | * Before the user can send configuration requests of the various |
| 1329 | * debug/profile engines, it needs to set the device into debug mode. |
| 1330 | * This is because the debug/profile infrastructure is shared component in the |
| 1331 | * device and we can't allow multiple users to access it at the same time. |
| 1332 | * |
| 1333 | * Once a user set the device into debug mode, the driver won't allow other |
| 1334 | * users to "work" with the device, i.e. open a FD. If there are multiple users |
| 1335 | * opened on the device, the driver won't allow any user to debug the device. |
| 1336 | * |
| 1337 | * For each configuration request, the user needs to provide the register index |
| 1338 | * and essential data such as buffer address and size. |
| 1339 | * |
| 1340 | * Once the user has finished using the debug/profile engines, he should |
| 1341 | * set the device into non-debug mode, i.e. disable debug mode. |
| 1342 | * |
| 1343 | * The driver can decide to "kick out" the user if he abuses this interface. |
Omer Shpigelman | 315bc05 | 2019-04-01 22:31:22 +0300 | [diff] [blame] | 1344 | * |
| 1345 | */ |
| 1346 | #define HL_IOCTL_DEBUG \ |
| 1347 | _IOWR('H', 0x06, struct hl_debug_args) |
| 1348 | |
Oded Gabbay | d8dd7b0 | 2019-02-16 00:39:23 +0200 | [diff] [blame] | 1349 | #define HL_COMMAND_START 0x01 |
Omer Shpigelman | 315bc05 | 2019-04-01 22:31:22 +0300 | [diff] [blame] | 1350 | #define HL_COMMAND_END 0x07 |
Oded Gabbay | be5d926 | 2019-02-16 00:39:15 +0200 | [diff] [blame] | 1351 | |
Oded Gabbay | 99b9d7b | 2019-02-16 00:39:13 +0200 | [diff] [blame] | 1352 | #endif /* HABANALABS_H_ */ |