intel_guc_fwif.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. /*
  2. * Copyright © 2014 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. */
  23. #ifndef _INTEL_GUC_FWIF_H
  24. #define _INTEL_GUC_FWIF_H
  25. /*
  26. * This file is partially autogenerated, although currently with some manual
  27. * fixups afterwards. In future, it should be entirely autogenerated, in order
  28. * to ensure that the definitions herein remain in sync with those used by the
  29. * GuC's own firmware.
  30. *
  31. * EDITING THIS FILE IS THEREFORE NOT RECOMMENDED - YOUR CHANGES MAY BE LOST.
  32. */
  33. #define GFXCORE_FAMILY_GEN9 12
  34. #define GFXCORE_FAMILY_UNKNOWN 0x7fffffff
  35. #define GUC_CTX_PRIORITY_KMD_HIGH 0
  36. #define GUC_CTX_PRIORITY_HIGH 1
  37. #define GUC_CTX_PRIORITY_KMD_NORMAL 2
  38. #define GUC_CTX_PRIORITY_NORMAL 3
  39. #define GUC_CTX_PRIORITY_NUM 4
  40. #define GUC_MAX_GPU_CONTEXTS 1024
  41. #define GUC_INVALID_CTX_ID GUC_MAX_GPU_CONTEXTS
  42. #define GUC_RENDER_ENGINE 0
  43. #define GUC_VIDEO_ENGINE 1
  44. #define GUC_BLITTER_ENGINE 2
  45. #define GUC_VIDEOENHANCE_ENGINE 3
  46. #define GUC_VIDEO_ENGINE2 4
  47. #define GUC_MAX_ENGINES_NUM (GUC_VIDEO_ENGINE2 + 1)
  48. /* Work queue item header definitions */
  49. #define WQ_STATUS_ACTIVE 1
  50. #define WQ_STATUS_SUSPENDED 2
  51. #define WQ_STATUS_CMD_ERROR 3
  52. #define WQ_STATUS_ENGINE_ID_NOT_USED 4
  53. #define WQ_STATUS_SUSPENDED_FROM_RESET 5
  54. #define WQ_TYPE_SHIFT 0
  55. #define WQ_TYPE_BATCH_BUF (0x1 << WQ_TYPE_SHIFT)
  56. #define WQ_TYPE_PSEUDO (0x2 << WQ_TYPE_SHIFT)
  57. #define WQ_TYPE_INORDER (0x3 << WQ_TYPE_SHIFT)
  58. #define WQ_TARGET_SHIFT 10
  59. #define WQ_LEN_SHIFT 16
  60. #define WQ_NO_WCFLUSH_WAIT (1 << 27)
  61. #define WQ_PRESENT_WORKLOAD (1 << 28)
  62. #define WQ_WORKLOAD_SHIFT 29
  63. #define WQ_WORKLOAD_GENERAL (0 << WQ_WORKLOAD_SHIFT)
  64. #define WQ_WORKLOAD_GPGPU (1 << WQ_WORKLOAD_SHIFT)
  65. #define WQ_WORKLOAD_TOUCH (2 << WQ_WORKLOAD_SHIFT)
  66. #define WQ_RING_TAIL_SHIFT 20
  67. #define WQ_RING_TAIL_MAX 0x7FF /* 2^11 QWords */
  68. #define WQ_RING_TAIL_MASK (WQ_RING_TAIL_MAX << WQ_RING_TAIL_SHIFT)
  69. #define GUC_DOORBELL_ENABLED 1
  70. #define GUC_DOORBELL_DISABLED 0
  71. #define GUC_CTX_DESC_ATTR_ACTIVE (1 << 0)
  72. #define GUC_CTX_DESC_ATTR_PENDING_DB (1 << 1)
  73. #define GUC_CTX_DESC_ATTR_KERNEL (1 << 2)
  74. #define GUC_CTX_DESC_ATTR_PREEMPT (1 << 3)
  75. #define GUC_CTX_DESC_ATTR_RESET (1 << 4)
  76. #define GUC_CTX_DESC_ATTR_WQLOCKED (1 << 5)
  77. #define GUC_CTX_DESC_ATTR_PCH (1 << 6)
  78. #define GUC_CTX_DESC_ATTR_TERMINATED (1 << 7)
  79. /* The guc control data is 10 DWORDs */
  80. #define GUC_CTL_CTXINFO 0
  81. #define GUC_CTL_CTXNUM_IN16_SHIFT 0
  82. #define GUC_CTL_BASE_ADDR_SHIFT 12
  83. #define GUC_CTL_ARAT_HIGH 1
  84. #define GUC_CTL_ARAT_LOW 2
  85. #define GUC_CTL_DEVICE_INFO 3
  86. #define GUC_CTL_GTTYPE_SHIFT 0
  87. #define GUC_CTL_COREFAMILY_SHIFT 7
  88. #define GUC_CTL_LOG_PARAMS 4
  89. #define GUC_LOG_VALID (1 << 0)
  90. #define GUC_LOG_NOTIFY_ON_HALF_FULL (1 << 1)
  91. #define GUC_LOG_ALLOC_IN_MEGABYTE (1 << 3)
  92. #define GUC_LOG_CRASH_PAGES 1
  93. #define GUC_LOG_CRASH_SHIFT 4
  94. #define GUC_LOG_DPC_PAGES 3
  95. #define GUC_LOG_DPC_SHIFT 6
  96. #define GUC_LOG_ISR_PAGES 3
  97. #define GUC_LOG_ISR_SHIFT 9
  98. #define GUC_LOG_BUF_ADDR_SHIFT 12
  99. #define GUC_CTL_PAGE_FAULT_CONTROL 5
  100. #define GUC_CTL_WA 6
  101. #define GUC_CTL_WA_UK_BY_DRIVER (1 << 3)
  102. #define GUC_CTL_FEATURE 7
  103. #define GUC_CTL_VCS2_ENABLED (1 << 0)
  104. #define GUC_CTL_KERNEL_SUBMISSIONS (1 << 1)
  105. #define GUC_CTL_FEATURE2 (1 << 2)
  106. #define GUC_CTL_POWER_GATING (1 << 3)
  107. #define GUC_CTL_DISABLE_SCHEDULER (1 << 4)
  108. #define GUC_CTL_PREEMPTION_LOG (1 << 5)
  109. #define GUC_CTL_ENABLE_SLPC (1 << 7)
  110. #define GUC_CTL_RESET_ON_PREMPT_FAILURE (1 << 8)
  111. #define GUC_CTL_DEBUG 8
  112. #define GUC_LOG_VERBOSITY_SHIFT 0
  113. #define GUC_LOG_VERBOSITY_LOW (0 << GUC_LOG_VERBOSITY_SHIFT)
  114. #define GUC_LOG_VERBOSITY_MED (1 << GUC_LOG_VERBOSITY_SHIFT)
  115. #define GUC_LOG_VERBOSITY_HIGH (2 << GUC_LOG_VERBOSITY_SHIFT)
  116. #define GUC_LOG_VERBOSITY_ULTRA (3 << GUC_LOG_VERBOSITY_SHIFT)
  117. /* Verbosity range-check limits, without the shift */
  118. #define GUC_LOG_VERBOSITY_MIN 0
  119. #define GUC_LOG_VERBOSITY_MAX 3
  120. #define GUC_LOG_VERBOSITY_MASK 0x0000000f
  121. #define GUC_LOG_DESTINATION_MASK (3 << 4)
  122. #define GUC_LOG_DISABLED (1 << 6)
  123. #define GUC_PROFILE_ENABLED (1 << 7)
  124. #define GUC_WQ_TRACK_ENABLED (1 << 8)
  125. #define GUC_ADS_ENABLED (1 << 9)
  126. #define GUC_DEBUG_RESERVED (1 << 10)
  127. #define GUC_ADS_ADDR_SHIFT 11
  128. #define GUC_ADS_ADDR_MASK 0xfffff800
  129. #define GUC_CTL_RSRVD 9
  130. #define GUC_CTL_MAX_DWORDS (SOFT_SCRATCH_COUNT - 2) /* [1..14] */
  131. /**
  132. * DOC: GuC Firmware Layout
  133. *
  134. * The GuC firmware layout looks like this:
  135. *
  136. * +-------------------------------+
  137. * | guc_css_header |
  138. * | |
  139. * | contains major/minor version |
  140. * +-------------------------------+
  141. * | uCode |
  142. * +-------------------------------+
  143. * | RSA signature |
  144. * +-------------------------------+
  145. * | modulus key |
  146. * +-------------------------------+
  147. * | exponent val |
  148. * +-------------------------------+
  149. *
  150. * The firmware may or may not have modulus key and exponent data. The header,
  151. * uCode and RSA signature are must-have components that will be used by driver.
  152. * Length of each components, which is all in dwords, can be found in header.
  153. * In the case that modulus and exponent are not present in fw, a.k.a truncated
  154. * image, the length value still appears in header.
  155. *
  156. * Driver will do some basic fw size validation based on the following rules:
  157. *
  158. * 1. Header, uCode and RSA are must-have components.
  159. * 2. All firmware components, if they present, are in the sequence illustrated
  160. * in the layout table above.
  161. * 3. Length info of each component can be found in header, in dwords.
  162. * 4. Modulus and exponent key are not required by driver. They may not appear
  163. * in fw. So driver will load a truncated firmware in this case.
  164. */
  165. struct guc_css_header {
  166. uint32_t module_type;
  167. /* header_size includes all non-uCode bits, including css_header, rsa
  168. * key, modulus key and exponent data. */
  169. uint32_t header_size_dw;
  170. uint32_t header_version;
  171. uint32_t module_id;
  172. uint32_t module_vendor;
  173. union {
  174. struct {
  175. uint8_t day;
  176. uint8_t month;
  177. uint16_t year;
  178. };
  179. uint32_t date;
  180. };
  181. uint32_t size_dw; /* uCode plus header_size_dw */
  182. uint32_t key_size_dw;
  183. uint32_t modulus_size_dw;
  184. uint32_t exponent_size_dw;
  185. union {
  186. struct {
  187. uint8_t hour;
  188. uint8_t min;
  189. uint16_t sec;
  190. };
  191. uint32_t time;
  192. };
  193. char username[8];
  194. char buildnumber[12];
  195. uint32_t device_id;
  196. uint32_t guc_sw_version;
  197. uint32_t prod_preprod_fw;
  198. uint32_t reserved[12];
  199. uint32_t header_info;
  200. } __packed;
  201. struct guc_doorbell_info {
  202. u32 db_status;
  203. u32 cookie;
  204. u32 reserved[14];
  205. } __packed;
  206. union guc_doorbell_qw {
  207. struct {
  208. u32 db_status;
  209. u32 cookie;
  210. };
  211. u64 value_qw;
  212. } __packed;
  213. #define GUC_MAX_DOORBELLS 256
  214. #define GUC_INVALID_DOORBELL_ID (GUC_MAX_DOORBELLS)
  215. #define GUC_DB_SIZE (PAGE_SIZE)
  216. #define GUC_WQ_SIZE (PAGE_SIZE * 2)
  217. /* Work item for submitting workloads into work queue of GuC. */
  218. struct guc_wq_item {
  219. u32 header;
  220. u32 context_desc;
  221. u32 ring_tail;
  222. u32 fence_id;
  223. } __packed;
  224. struct guc_process_desc {
  225. u32 context_id;
  226. u64 db_base_addr;
  227. u32 head;
  228. u32 tail;
  229. u32 error_offset;
  230. u64 wq_base_addr;
  231. u32 wq_size_bytes;
  232. u32 wq_status;
  233. u32 engine_presence;
  234. u32 priority;
  235. u32 reserved[30];
  236. } __packed;
  237. /* engine id and context id is packed into guc_execlist_context.context_id*/
  238. #define GUC_ELC_CTXID_OFFSET 0
  239. #define GUC_ELC_ENGINE_OFFSET 29
  240. /* The execlist context including software and HW information */
  241. struct guc_execlist_context {
  242. u32 context_desc;
  243. u32 context_id;
  244. u32 ring_status;
  245. u32 ring_lcra;
  246. u32 ring_begin;
  247. u32 ring_end;
  248. u32 ring_next_free_location;
  249. u32 ring_current_tail_pointer_value;
  250. u8 engine_state_submit_value;
  251. u8 engine_state_wait_value;
  252. u16 pagefault_count;
  253. u16 engine_submit_queue_count;
  254. } __packed;
  255. /*Context descriptor for communicating between uKernel and Driver*/
  256. struct guc_context_desc {
  257. u32 sched_common_area;
  258. u32 context_id;
  259. u32 pas_id;
  260. u8 engines_used;
  261. u64 db_trigger_cpu;
  262. u32 db_trigger_uk;
  263. u64 db_trigger_phy;
  264. u16 db_id;
  265. struct guc_execlist_context lrc[GUC_MAX_ENGINES_NUM];
  266. u8 attribute;
  267. u32 priority;
  268. u32 wq_sampled_tail_offset;
  269. u32 wq_total_submit_enqueues;
  270. u32 process_desc;
  271. u32 wq_addr;
  272. u32 wq_size;
  273. u32 engine_presence;
  274. u8 engine_suspended;
  275. u8 reserved0[3];
  276. u64 reserved1[1];
  277. u64 desc_private;
  278. } __packed;
  279. #define GUC_FORCEWAKE_RENDER (1 << 0)
  280. #define GUC_FORCEWAKE_MEDIA (1 << 1)
  281. #define GUC_POWER_UNSPECIFIED 0
  282. #define GUC_POWER_D0 1
  283. #define GUC_POWER_D1 2
  284. #define GUC_POWER_D2 3
  285. #define GUC_POWER_D3 4
  286. /* Scheduling policy settings */
  287. /* Reset engine upon preempt failure */
  288. #define POLICY_RESET_ENGINE (1<<0)
  289. /* Preempt to idle on quantum expiry */
  290. #define POLICY_PREEMPT_TO_IDLE (1<<1)
  291. #define POLICY_MAX_NUM_WI 15
  292. struct guc_policy {
  293. /* Time for one workload to execute. (in micro seconds) */
  294. u32 execution_quantum;
  295. u32 reserved1;
  296. /* Time to wait for a preemption request to completed before issuing a
  297. * reset. (in micro seconds). */
  298. u32 preemption_time;
  299. /* How much time to allow to run after the first fault is observed.
  300. * Then preempt afterwards. (in micro seconds) */
  301. u32 fault_time;
  302. u32 policy_flags;
  303. u32 reserved[2];
  304. } __packed;
  305. struct guc_policies {
  306. struct guc_policy policy[GUC_CTX_PRIORITY_NUM][GUC_MAX_ENGINES_NUM];
  307. /* In micro seconds. How much time to allow before DPC processing is
  308. * called back via interrupt (to prevent DPC queue drain starving).
  309. * Typically 1000s of micro seconds (example only, not granularity). */
  310. u32 dpc_promote_time;
  311. /* Must be set to take these new values. */
  312. u32 is_valid;
  313. /* Max number of WIs to process per call. A large value may keep CS
  314. * idle. */
  315. u32 max_num_work_items;
  316. u32 reserved[19];
  317. } __packed;
  318. /* GuC MMIO reg state struct */
  319. #define GUC_REGSET_FLAGS_NONE 0x0
  320. #define GUC_REGSET_POWERCYCLE 0x1
  321. #define GUC_REGSET_MASKED 0x2
  322. #define GUC_REGSET_ENGINERESET 0x4
  323. #define GUC_REGSET_SAVE_DEFAULT_VALUE 0x8
  324. #define GUC_REGSET_SAVE_CURRENT_VALUE 0x10
  325. #define GUC_REGSET_MAX_REGISTERS 25
  326. #define GUC_MMIO_WHITE_LIST_START 0x24d0
  327. #define GUC_MMIO_WHITE_LIST_MAX 12
  328. #define GUC_S3_SAVE_SPACE_PAGES 10
  329. struct guc_mmio_regset {
  330. struct __packed {
  331. u32 offset;
  332. u32 value;
  333. u32 flags;
  334. } registers[GUC_REGSET_MAX_REGISTERS];
  335. u32 values_valid;
  336. u32 number_of_registers;
  337. } __packed;
  338. struct guc_mmio_reg_state {
  339. struct guc_mmio_regset global_reg;
  340. struct guc_mmio_regset engine_reg[GUC_MAX_ENGINES_NUM];
  341. /* MMIO registers that are set as non privileged */
  342. struct __packed {
  343. u32 mmio_start;
  344. u32 offsets[GUC_MMIO_WHITE_LIST_MAX];
  345. u32 count;
  346. } mmio_white_list[GUC_MAX_ENGINES_NUM];
  347. } __packed;
  348. /* GuC Additional Data Struct */
  349. struct guc_ads {
  350. u32 reg_state_addr;
  351. u32 reg_state_buffer;
  352. u32 golden_context_lrca;
  353. u32 scheduler_policies;
  354. u32 reserved0[3];
  355. u32 eng_state_size[GUC_MAX_ENGINES_NUM];
  356. u32 reserved2[4];
  357. } __packed;
  358. /* This Action will be programmed in C180 - SOFT_SCRATCH_O_REG */
  359. enum host2guc_action {
  360. HOST2GUC_ACTION_DEFAULT = 0x0,
  361. HOST2GUC_ACTION_SAMPLE_FORCEWAKE = 0x6,
  362. HOST2GUC_ACTION_ALLOCATE_DOORBELL = 0x10,
  363. HOST2GUC_ACTION_DEALLOCATE_DOORBELL = 0x20,
  364. HOST2GUC_ACTION_ENTER_S_STATE = 0x501,
  365. HOST2GUC_ACTION_EXIT_S_STATE = 0x502,
  366. HOST2GUC_ACTION_SLPC_REQUEST = 0x3003,
  367. HOST2GUC_ACTION_LIMIT
  368. };
  369. /*
  370. * The GuC sends its response to a command by overwriting the
  371. * command in SS0. The response is distinguishable from a command
  372. * by the fact that all the MASK bits are set. The remaining bits
  373. * give more detail.
  374. */
  375. #define GUC2HOST_RESPONSE_MASK ((u32)0xF0000000)
  376. #define GUC2HOST_IS_RESPONSE(x) ((u32)(x) >= GUC2HOST_RESPONSE_MASK)
  377. #define GUC2HOST_STATUS(x) (GUC2HOST_RESPONSE_MASK | (x))
  378. /* GUC will return status back to SOFT_SCRATCH_O_REG */
  379. enum guc2host_status {
  380. GUC2HOST_STATUS_SUCCESS = GUC2HOST_STATUS(0x0),
  381. GUC2HOST_STATUS_ALLOCATE_DOORBELL_FAIL = GUC2HOST_STATUS(0x10),
  382. GUC2HOST_STATUS_DEALLOCATE_DOORBELL_FAIL = GUC2HOST_STATUS(0x20),
  383. GUC2HOST_STATUS_GENERIC_FAIL = GUC2HOST_STATUS(0x0000F000)
  384. };
  385. #endif