intel_guc_fwif.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  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. #define GUC_CLIENT_PRIORITY_KMD_HIGH 0
  26. #define GUC_CLIENT_PRIORITY_HIGH 1
  27. #define GUC_CLIENT_PRIORITY_KMD_NORMAL 2
  28. #define GUC_CLIENT_PRIORITY_NORMAL 3
  29. #define GUC_CLIENT_PRIORITY_NUM 4
  30. #define GUC_MAX_STAGE_DESCRIPTORS 1024
  31. #define GUC_INVALID_STAGE_ID GUC_MAX_STAGE_DESCRIPTORS
  32. #define GUC_RENDER_ENGINE 0
  33. #define GUC_VIDEO_ENGINE 1
  34. #define GUC_BLITTER_ENGINE 2
  35. #define GUC_VIDEOENHANCE_ENGINE 3
  36. #define GUC_VIDEO_ENGINE2 4
  37. #define GUC_MAX_ENGINES_NUM (GUC_VIDEO_ENGINE2 + 1)
  38. /* Work queue item header definitions */
  39. #define WQ_STATUS_ACTIVE 1
  40. #define WQ_STATUS_SUSPENDED 2
  41. #define WQ_STATUS_CMD_ERROR 3
  42. #define WQ_STATUS_ENGINE_ID_NOT_USED 4
  43. #define WQ_STATUS_SUSPENDED_FROM_RESET 5
  44. #define WQ_TYPE_SHIFT 0
  45. #define WQ_TYPE_BATCH_BUF (0x1 << WQ_TYPE_SHIFT)
  46. #define WQ_TYPE_PSEUDO (0x2 << WQ_TYPE_SHIFT)
  47. #define WQ_TYPE_INORDER (0x3 << WQ_TYPE_SHIFT)
  48. #define WQ_TYPE_NOOP (0x4 << WQ_TYPE_SHIFT)
  49. #define WQ_TARGET_SHIFT 10
  50. #define WQ_LEN_SHIFT 16
  51. #define WQ_NO_WCFLUSH_WAIT (1 << 27)
  52. #define WQ_PRESENT_WORKLOAD (1 << 28)
  53. #define WQ_RING_TAIL_SHIFT 20
  54. #define WQ_RING_TAIL_MAX 0x7FF /* 2^11 QWords */
  55. #define WQ_RING_TAIL_MASK (WQ_RING_TAIL_MAX << WQ_RING_TAIL_SHIFT)
  56. #define GUC_DOORBELL_ENABLED 1
  57. #define GUC_DOORBELL_DISABLED 0
  58. #define GUC_STAGE_DESC_ATTR_ACTIVE BIT(0)
  59. #define GUC_STAGE_DESC_ATTR_PENDING_DB BIT(1)
  60. #define GUC_STAGE_DESC_ATTR_KERNEL BIT(2)
  61. #define GUC_STAGE_DESC_ATTR_PREEMPT BIT(3)
  62. #define GUC_STAGE_DESC_ATTR_RESET BIT(4)
  63. #define GUC_STAGE_DESC_ATTR_WQLOCKED BIT(5)
  64. #define GUC_STAGE_DESC_ATTR_PCH BIT(6)
  65. #define GUC_STAGE_DESC_ATTR_TERMINATED BIT(7)
  66. /* The guc control data is 10 DWORDs */
  67. #define GUC_CTL_CTXINFO 0
  68. #define GUC_CTL_CTXNUM_IN16_SHIFT 0
  69. #define GUC_CTL_BASE_ADDR_SHIFT 12
  70. #define GUC_CTL_ARAT_HIGH 1
  71. #define GUC_CTL_ARAT_LOW 2
  72. #define GUC_CTL_DEVICE_INFO 3
  73. #define GUC_CTL_LOG_PARAMS 4
  74. #define GUC_LOG_VALID (1 << 0)
  75. #define GUC_LOG_NOTIFY_ON_HALF_FULL (1 << 1)
  76. #define GUC_LOG_ALLOC_IN_MEGABYTE (1 << 3)
  77. #define GUC_LOG_CRASH_SHIFT 4
  78. #define GUC_LOG_CRASH_MASK (0x1 << GUC_LOG_CRASH_SHIFT)
  79. #define GUC_LOG_DPC_SHIFT 6
  80. #define GUC_LOG_DPC_MASK (0x7 << GUC_LOG_DPC_SHIFT)
  81. #define GUC_LOG_ISR_SHIFT 9
  82. #define GUC_LOG_ISR_MASK (0x7 << GUC_LOG_ISR_SHIFT)
  83. #define GUC_LOG_BUF_ADDR_SHIFT 12
  84. #define GUC_CTL_PAGE_FAULT_CONTROL 5
  85. #define GUC_CTL_WA 6
  86. #define GUC_CTL_WA_UK_BY_DRIVER (1 << 3)
  87. #define GUC_CTL_FEATURE 7
  88. #define GUC_CTL_VCS2_ENABLED (1 << 0)
  89. #define GUC_CTL_KERNEL_SUBMISSIONS (1 << 1)
  90. #define GUC_CTL_FEATURE2 (1 << 2)
  91. #define GUC_CTL_POWER_GATING (1 << 3)
  92. #define GUC_CTL_DISABLE_SCHEDULER (1 << 4)
  93. #define GUC_CTL_PREEMPTION_LOG (1 << 5)
  94. #define GUC_CTL_ENABLE_SLPC (1 << 7)
  95. #define GUC_CTL_RESET_ON_PREMPT_FAILURE (1 << 8)
  96. #define GUC_CTL_DEBUG 8
  97. #define GUC_LOG_VERBOSITY_SHIFT 0
  98. #define GUC_LOG_VERBOSITY_LOW (0 << GUC_LOG_VERBOSITY_SHIFT)
  99. #define GUC_LOG_VERBOSITY_MED (1 << GUC_LOG_VERBOSITY_SHIFT)
  100. #define GUC_LOG_VERBOSITY_HIGH (2 << GUC_LOG_VERBOSITY_SHIFT)
  101. #define GUC_LOG_VERBOSITY_ULTRA (3 << GUC_LOG_VERBOSITY_SHIFT)
  102. /* Verbosity range-check limits, without the shift */
  103. #define GUC_LOG_VERBOSITY_MIN 0
  104. #define GUC_LOG_VERBOSITY_MAX 3
  105. #define GUC_LOG_VERBOSITY_MASK 0x0000000f
  106. #define GUC_LOG_DESTINATION_MASK (3 << 4)
  107. #define GUC_LOG_DISABLED (1 << 6)
  108. #define GUC_PROFILE_ENABLED (1 << 7)
  109. #define GUC_WQ_TRACK_ENABLED (1 << 8)
  110. #define GUC_ADS_ENABLED (1 << 9)
  111. #define GUC_LOG_DEFAULT_DISABLED (1 << 10)
  112. #define GUC_ADS_ADDR_SHIFT 11
  113. #define GUC_ADS_ADDR_MASK 0xfffff800
  114. #define GUC_CTL_RSRVD 9
  115. #define GUC_CTL_MAX_DWORDS (SOFT_SCRATCH_COUNT - 2) /* [1..14] */
  116. /**
  117. * DOC: GuC Firmware Layout
  118. *
  119. * The GuC firmware layout looks like this:
  120. *
  121. * +-------------------------------+
  122. * | uc_css_header |
  123. * | |
  124. * | contains major/minor version |
  125. * +-------------------------------+
  126. * | uCode |
  127. * +-------------------------------+
  128. * | RSA signature |
  129. * +-------------------------------+
  130. * | modulus key |
  131. * +-------------------------------+
  132. * | exponent val |
  133. * +-------------------------------+
  134. *
  135. * The firmware may or may not have modulus key and exponent data. The header,
  136. * uCode and RSA signature are must-have components that will be used by driver.
  137. * Length of each components, which is all in dwords, can be found in header.
  138. * In the case that modulus and exponent are not present in fw, a.k.a truncated
  139. * image, the length value still appears in header.
  140. *
  141. * Driver will do some basic fw size validation based on the following rules:
  142. *
  143. * 1. Header, uCode and RSA are must-have components.
  144. * 2. All firmware components, if they present, are in the sequence illustrated
  145. * in the layout table above.
  146. * 3. Length info of each component can be found in header, in dwords.
  147. * 4. Modulus and exponent key are not required by driver. They may not appear
  148. * in fw. So driver will load a truncated firmware in this case.
  149. *
  150. * HuC firmware layout is same as GuC firmware.
  151. *
  152. * HuC firmware css header is different. However, the only difference is where
  153. * the version information is saved. The uc_css_header is unified to support
  154. * both. Driver should get HuC version from uc_css_header.huc_sw_version, while
  155. * uc_css_header.guc_sw_version for GuC.
  156. */
  157. struct uc_css_header {
  158. u32 module_type;
  159. /* header_size includes all non-uCode bits, including css_header, rsa
  160. * key, modulus key and exponent data. */
  161. u32 header_size_dw;
  162. u32 header_version;
  163. u32 module_id;
  164. u32 module_vendor;
  165. union {
  166. struct {
  167. u8 day;
  168. u8 month;
  169. u16 year;
  170. };
  171. u32 date;
  172. };
  173. u32 size_dw; /* uCode plus header_size_dw */
  174. u32 key_size_dw;
  175. u32 modulus_size_dw;
  176. u32 exponent_size_dw;
  177. union {
  178. struct {
  179. u8 hour;
  180. u8 min;
  181. u16 sec;
  182. };
  183. u32 time;
  184. };
  185. char username[8];
  186. char buildnumber[12];
  187. union {
  188. struct {
  189. u32 branch_client_version;
  190. u32 sw_version;
  191. } guc;
  192. struct {
  193. u32 sw_version;
  194. u32 reserved;
  195. } huc;
  196. };
  197. u32 prod_preprod_fw;
  198. u32 reserved[12];
  199. u32 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_NUM_DOORBELLS 256
  214. #define GUC_DOORBELL_INVALID (GUC_NUM_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 submit_element_info;
  222. u32 fence_id;
  223. } __packed;
  224. struct guc_process_desc {
  225. u32 stage_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_lrca;
  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. /*
  256. * This structure describes a stage set arranged for a particular communication
  257. * between uKernel (GuC) and Driver (KMD). Technically, this is known as a
  258. * "GuC Context descriptor" in the specs, but we use the term "stage descriptor"
  259. * to avoid confusion with all the other things already named "context" in the
  260. * driver. A static pool of these descriptors are stored inside a GEM object
  261. * (stage_desc_pool) which is held for the entire lifetime of our interaction
  262. * with the GuC, being allocated before the GuC is loaded with its firmware.
  263. */
  264. struct guc_stage_desc {
  265. u32 sched_common_area;
  266. u32 stage_id;
  267. u32 pas_id;
  268. u8 engines_used;
  269. u64 db_trigger_cpu;
  270. u32 db_trigger_uk;
  271. u64 db_trigger_phy;
  272. u16 db_id;
  273. struct guc_execlist_context lrc[GUC_MAX_ENGINES_NUM];
  274. u8 attribute;
  275. u32 priority;
  276. u32 wq_sampled_tail_offset;
  277. u32 wq_total_submit_enqueues;
  278. u32 process_desc;
  279. u32 wq_addr;
  280. u32 wq_size;
  281. u32 engine_presence;
  282. u8 engine_suspended;
  283. u8 reserved0[3];
  284. u64 reserved1[1];
  285. u64 desc_private;
  286. } __packed;
  287. /**
  288. * DOC: CTB based communication
  289. *
  290. * The CTB (command transport buffer) communication between Host and GuC
  291. * is based on u32 data stream written to the shared buffer. One buffer can
  292. * be used to transmit data only in one direction (one-directional channel).
  293. *
  294. * Current status of the each buffer is stored in the buffer descriptor.
  295. * Buffer descriptor holds tail and head fields that represents active data
  296. * stream. The tail field is updated by the data producer (sender), and head
  297. * field is updated by the data consumer (receiver)::
  298. *
  299. * +------------+
  300. * | DESCRIPTOR | +=================+============+========+
  301. * +============+ | | MESSAGE(s) | |
  302. * | address |--------->+=================+============+========+
  303. * +------------+
  304. * | head | ^-----head--------^
  305. * +------------+
  306. * | tail | ^---------tail-----------------^
  307. * +------------+
  308. * | size | ^---------------size--------------------^
  309. * +------------+
  310. *
  311. * Each message in data stream starts with the single u32 treated as a header,
  312. * followed by optional set of u32 data that makes message specific payload::
  313. *
  314. * +------------+---------+---------+---------+
  315. * | MESSAGE |
  316. * +------------+---------+---------+---------+
  317. * | msg[0] | [1] | ... | [n-1] |
  318. * +------------+---------+---------+---------+
  319. * | MESSAGE | MESSAGE PAYLOAD |
  320. * + HEADER +---------+---------+---------+
  321. * | | 0 | ... | n |
  322. * +======+=====+=========+=========+=========+
  323. * | 31:16| code| | | |
  324. * +------+-----+ | | |
  325. * | 15:5|flags| | | |
  326. * +------+-----+ | | |
  327. * | 4:0| len| | | |
  328. * +------+-----+---------+---------+---------+
  329. *
  330. * ^-------------len-------------^
  331. *
  332. * The message header consists of:
  333. *
  334. * - **len**, indicates length of the message payload (in u32)
  335. * - **code**, indicates message code
  336. * - **flags**, holds various bits to control message handling
  337. */
  338. /*
  339. * Describes single command transport buffer.
  340. * Used by both guc-master and clients.
  341. */
  342. struct guc_ct_buffer_desc {
  343. u32 addr; /* gfx address */
  344. u64 host_private; /* host private data */
  345. u32 size; /* size in bytes */
  346. u32 head; /* offset updated by GuC*/
  347. u32 tail; /* offset updated by owner */
  348. u32 is_in_error; /* error indicator */
  349. u32 fence; /* fence updated by GuC */
  350. u32 status; /* status updated by GuC */
  351. u32 owner; /* id of the channel owner */
  352. u32 owner_sub_id; /* owner-defined field for extra tracking */
  353. u32 reserved[5];
  354. } __packed;
  355. /* Type of command transport buffer */
  356. #define INTEL_GUC_CT_BUFFER_TYPE_SEND 0x0u
  357. #define INTEL_GUC_CT_BUFFER_TYPE_RECV 0x1u
  358. /*
  359. * Definition of the command transport message header (DW0)
  360. *
  361. * bit[4..0] message len (in dwords)
  362. * bit[7..5] reserved
  363. * bit[8] write fence to desc
  364. * bit[9] write status to H2G buff
  365. * bit[10] send status (via G2H)
  366. * bit[15..11] reserved
  367. * bit[31..16] action code
  368. */
  369. #define GUC_CT_MSG_LEN_SHIFT 0
  370. #define GUC_CT_MSG_LEN_MASK 0x1F
  371. #define GUC_CT_MSG_WRITE_FENCE_TO_DESC (1 << 8)
  372. #define GUC_CT_MSG_WRITE_STATUS_TO_BUFF (1 << 9)
  373. #define GUC_CT_MSG_SEND_STATUS (1 << 10)
  374. #define GUC_CT_MSG_ACTION_SHIFT 16
  375. #define GUC_CT_MSG_ACTION_MASK 0xFFFF
  376. #define GUC_FORCEWAKE_RENDER (1 << 0)
  377. #define GUC_FORCEWAKE_MEDIA (1 << 1)
  378. #define GUC_POWER_UNSPECIFIED 0
  379. #define GUC_POWER_D0 1
  380. #define GUC_POWER_D1 2
  381. #define GUC_POWER_D2 3
  382. #define GUC_POWER_D3 4
  383. /* Scheduling policy settings */
  384. /* Reset engine upon preempt failure */
  385. #define POLICY_RESET_ENGINE (1<<0)
  386. /* Preempt to idle on quantum expiry */
  387. #define POLICY_PREEMPT_TO_IDLE (1<<1)
  388. #define POLICY_MAX_NUM_WI 15
  389. #define POLICY_DEFAULT_DPC_PROMOTE_TIME_US 500000
  390. #define POLICY_DEFAULT_EXECUTION_QUANTUM_US 1000000
  391. #define POLICY_DEFAULT_PREEMPTION_TIME_US 500000
  392. #define POLICY_DEFAULT_FAULT_TIME_US 250000
  393. struct guc_policy {
  394. /* Time for one workload to execute. (in micro seconds) */
  395. u32 execution_quantum;
  396. u32 reserved1;
  397. /* Time to wait for a preemption request to completed before issuing a
  398. * reset. (in micro seconds). */
  399. u32 preemption_time;
  400. /* How much time to allow to run after the first fault is observed.
  401. * Then preempt afterwards. (in micro seconds) */
  402. u32 fault_time;
  403. u32 policy_flags;
  404. u32 reserved[2];
  405. } __packed;
  406. struct guc_policies {
  407. struct guc_policy policy[GUC_CLIENT_PRIORITY_NUM][GUC_MAX_ENGINES_NUM];
  408. /* In micro seconds. How much time to allow before DPC processing is
  409. * called back via interrupt (to prevent DPC queue drain starving).
  410. * Typically 1000s of micro seconds (example only, not granularity). */
  411. u32 dpc_promote_time;
  412. /* Must be set to take these new values. */
  413. u32 is_valid;
  414. /* Max number of WIs to process per call. A large value may keep CS
  415. * idle. */
  416. u32 max_num_work_items;
  417. u32 reserved[19];
  418. } __packed;
  419. /* GuC MMIO reg state struct */
  420. #define GUC_REGSET_FLAGS_NONE 0x0
  421. #define GUC_REGSET_POWERCYCLE 0x1
  422. #define GUC_REGSET_MASKED 0x2
  423. #define GUC_REGSET_ENGINERESET 0x4
  424. #define GUC_REGSET_SAVE_DEFAULT_VALUE 0x8
  425. #define GUC_REGSET_SAVE_CURRENT_VALUE 0x10
  426. #define GUC_REGSET_MAX_REGISTERS 25
  427. #define GUC_MMIO_WHITE_LIST_START 0x24d0
  428. #define GUC_MMIO_WHITE_LIST_MAX 12
  429. #define GUC_S3_SAVE_SPACE_PAGES 10
  430. struct guc_mmio_regset {
  431. struct __packed {
  432. u32 offset;
  433. u32 value;
  434. u32 flags;
  435. } registers[GUC_REGSET_MAX_REGISTERS];
  436. u32 values_valid;
  437. u32 number_of_registers;
  438. } __packed;
  439. /* MMIO registers that are set as non privileged */
  440. struct mmio_white_list {
  441. u32 mmio_start;
  442. u32 offsets[GUC_MMIO_WHITE_LIST_MAX];
  443. u32 count;
  444. } __packed;
  445. struct guc_mmio_reg_state {
  446. struct guc_mmio_regset global_reg;
  447. struct guc_mmio_regset engine_reg[GUC_MAX_ENGINES_NUM];
  448. struct mmio_white_list white_list[GUC_MAX_ENGINES_NUM];
  449. } __packed;
  450. /* GuC Additional Data Struct */
  451. struct guc_ads {
  452. u32 reg_state_addr;
  453. u32 reg_state_buffer;
  454. u32 golden_context_lrca;
  455. u32 scheduler_policies;
  456. u32 reserved0[3];
  457. u32 eng_state_size[GUC_MAX_ENGINES_NUM];
  458. u32 reserved2[4];
  459. } __packed;
  460. /* GuC logging structures */
  461. enum guc_log_buffer_type {
  462. GUC_ISR_LOG_BUFFER,
  463. GUC_DPC_LOG_BUFFER,
  464. GUC_CRASH_DUMP_LOG_BUFFER,
  465. GUC_MAX_LOG_BUFFER
  466. };
  467. /**
  468. * Below state structure is used for coordination of retrieval of GuC firmware
  469. * logs. Separate state is maintained for each log buffer type.
  470. * read_ptr points to the location where i915 read last in log buffer and
  471. * is read only for GuC firmware. write_ptr is incremented by GuC with number
  472. * of bytes written for each log entry and is read only for i915.
  473. * When any type of log buffer becomes half full, GuC sends a flush interrupt.
  474. * GuC firmware expects that while it is writing to 2nd half of the buffer,
  475. * first half would get consumed by Host and then get a flush completed
  476. * acknowledgment from Host, so that it does not end up doing any overwrite
  477. * causing loss of logs. So when buffer gets half filled & i915 has requested
  478. * for interrupt, GuC will set flush_to_file field, set the sampled_write_ptr
  479. * to the value of write_ptr and raise the interrupt.
  480. * On receiving the interrupt i915 should read the buffer, clear flush_to_file
  481. * field and also update read_ptr with the value of sample_write_ptr, before
  482. * sending an acknowledgment to GuC. marker & version fields are for internal
  483. * usage of GuC and opaque to i915. buffer_full_cnt field is incremented every
  484. * time GuC detects the log buffer overflow.
  485. */
  486. struct guc_log_buffer_state {
  487. u32 marker[2];
  488. u32 read_ptr;
  489. u32 write_ptr;
  490. u32 size;
  491. u32 sampled_write_ptr;
  492. union {
  493. struct {
  494. u32 flush_to_file:1;
  495. u32 buffer_full_cnt:4;
  496. u32 reserved:27;
  497. };
  498. u32 flags;
  499. };
  500. u32 version;
  501. } __packed;
  502. struct guc_ctx_report {
  503. u32 report_return_status;
  504. u32 reserved1[64];
  505. u32 affected_count;
  506. u32 reserved2[2];
  507. } __packed;
  508. /* GuC Shared Context Data Struct */
  509. struct guc_shared_ctx_data {
  510. u32 addr_of_last_preempted_data_low;
  511. u32 addr_of_last_preempted_data_high;
  512. u32 addr_of_last_preempted_data_high_tmp;
  513. u32 padding;
  514. u32 is_mapped_to_proxy;
  515. u32 proxy_ctx_id;
  516. u32 engine_reset_ctx_id;
  517. u32 media_reset_count;
  518. u32 reserved1[8];
  519. u32 uk_last_ctx_switch_reason;
  520. u32 was_reset;
  521. u32 lrca_gpu_addr;
  522. u64 execlist_ctx;
  523. u32 reserved2[66];
  524. struct guc_ctx_report preempt_ctx_report[GUC_MAX_ENGINES_NUM];
  525. } __packed;
  526. /**
  527. * DOC: MMIO based communication
  528. *
  529. * The MMIO based communication between Host and GuC uses software scratch
  530. * registers, where first register holds data treated as message header,
  531. * and other registers are used to hold message payload.
  532. *
  533. * For Gen9+, GuC uses software scratch registers 0xC180-0xC1B8
  534. *
  535. * +-----------+---------+---------+---------+
  536. * | MMIO[0] | MMIO[1] | ... | MMIO[n] |
  537. * +-----------+---------+---------+---------+
  538. * | header | optional payload |
  539. * +======+====+=========+=========+=========+
  540. * | 31:28|type| | | |
  541. * +------+----+ | | |
  542. * | 27:16|data| | | |
  543. * +------+----+ | | |
  544. * | 15:0|code| | | |
  545. * +------+----+---------+---------+---------+
  546. *
  547. * The message header consists of:
  548. *
  549. * - **type**, indicates message type
  550. * - **code**, indicates message code, is specific for **type**
  551. * - **data**, indicates message data, optional, depends on **code**
  552. *
  553. * The following message **types** are supported:
  554. *
  555. * - **REQUEST**, indicates Host-to-GuC request, requested GuC action code
  556. * must be priovided in **code** field. Optional action specific parameters
  557. * can be provided in remaining payload registers or **data** field.
  558. *
  559. * - **RESPONSE**, indicates GuC-to-Host response from earlier GuC request,
  560. * action response status will be provided in **code** field. Optional
  561. * response data can be returned in remaining payload registers or **data**
  562. * field.
  563. */
  564. #define INTEL_GUC_MSG_TYPE_SHIFT 28
  565. #define INTEL_GUC_MSG_TYPE_MASK (0xF << INTEL_GUC_MSG_TYPE_SHIFT)
  566. #define INTEL_GUC_MSG_DATA_SHIFT 16
  567. #define INTEL_GUC_MSG_DATA_MASK (0xFFF << INTEL_GUC_MSG_DATA_SHIFT)
  568. #define INTEL_GUC_MSG_CODE_SHIFT 0
  569. #define INTEL_GUC_MSG_CODE_MASK (0xFFFF << INTEL_GUC_MSG_CODE_SHIFT)
  570. #define __INTEL_GUC_MSG_GET(T, m) \
  571. (((m) & INTEL_GUC_MSG_ ## T ## _MASK) >> INTEL_GUC_MSG_ ## T ## _SHIFT)
  572. #define INTEL_GUC_MSG_TO_TYPE(m) __INTEL_GUC_MSG_GET(TYPE, m)
  573. #define INTEL_GUC_MSG_TO_DATA(m) __INTEL_GUC_MSG_GET(DATA, m)
  574. #define INTEL_GUC_MSG_TO_CODE(m) __INTEL_GUC_MSG_GET(CODE, m)
  575. enum intel_guc_msg_type {
  576. INTEL_GUC_MSG_TYPE_REQUEST = 0x0,
  577. INTEL_GUC_MSG_TYPE_RESPONSE = 0xF,
  578. };
  579. #define __INTEL_GUC_MSG_TYPE_IS(T, m) \
  580. (INTEL_GUC_MSG_TO_TYPE(m) == INTEL_GUC_MSG_TYPE_ ## T)
  581. #define INTEL_GUC_MSG_IS_REQUEST(m) __INTEL_GUC_MSG_TYPE_IS(REQUEST, m)
  582. #define INTEL_GUC_MSG_IS_RESPONSE(m) __INTEL_GUC_MSG_TYPE_IS(RESPONSE, m)
  583. enum intel_guc_action {
  584. INTEL_GUC_ACTION_DEFAULT = 0x0,
  585. INTEL_GUC_ACTION_REQUEST_PREEMPTION = 0x2,
  586. INTEL_GUC_ACTION_REQUEST_ENGINE_RESET = 0x3,
  587. INTEL_GUC_ACTION_SAMPLE_FORCEWAKE = 0x6,
  588. INTEL_GUC_ACTION_ALLOCATE_DOORBELL = 0x10,
  589. INTEL_GUC_ACTION_DEALLOCATE_DOORBELL = 0x20,
  590. INTEL_GUC_ACTION_LOG_BUFFER_FILE_FLUSH_COMPLETE = 0x30,
  591. INTEL_GUC_ACTION_FORCE_LOG_BUFFER_FLUSH = 0x302,
  592. INTEL_GUC_ACTION_ENTER_S_STATE = 0x501,
  593. INTEL_GUC_ACTION_EXIT_S_STATE = 0x502,
  594. INTEL_GUC_ACTION_SLPC_REQUEST = 0x3003,
  595. INTEL_GUC_ACTION_AUTHENTICATE_HUC = 0x4000,
  596. INTEL_GUC_ACTION_REGISTER_COMMAND_TRANSPORT_BUFFER = 0x4505,
  597. INTEL_GUC_ACTION_DEREGISTER_COMMAND_TRANSPORT_BUFFER = 0x4506,
  598. INTEL_GUC_ACTION_UK_LOG_ENABLE_LOGGING = 0x0E000,
  599. INTEL_GUC_ACTION_LIMIT
  600. };
  601. enum intel_guc_preempt_options {
  602. INTEL_GUC_PREEMPT_OPTION_DROP_WORK_Q = 0x4,
  603. INTEL_GUC_PREEMPT_OPTION_DROP_SUBMIT_Q = 0x8,
  604. };
  605. enum intel_guc_report_status {
  606. INTEL_GUC_REPORT_STATUS_UNKNOWN = 0x0,
  607. INTEL_GUC_REPORT_STATUS_ACKED = 0x1,
  608. INTEL_GUC_REPORT_STATUS_ERROR = 0x2,
  609. INTEL_GUC_REPORT_STATUS_COMPLETE = 0x4,
  610. };
  611. #define GUC_LOG_CONTROL_LOGGING_ENABLED (1 << 0)
  612. #define GUC_LOG_CONTROL_VERBOSITY_SHIFT 4
  613. #define GUC_LOG_CONTROL_VERBOSITY_MASK (0xF << GUC_LOG_CONTROL_VERBOSITY_SHIFT)
  614. #define GUC_LOG_CONTROL_DEFAULT_LOGGING (1 << 8)
  615. enum intel_guc_response_status {
  616. INTEL_GUC_RESPONSE_STATUS_SUCCESS = 0x0,
  617. INTEL_GUC_RESPONSE_STATUS_GENERIC_FAIL = 0xF000,
  618. };
  619. #define INTEL_GUC_MSG_IS_RESPONSE_SUCCESS(m) \
  620. (typecheck(u32, (m)) && \
  621. ((m) & (INTEL_GUC_MSG_TYPE_MASK | INTEL_GUC_MSG_CODE_MASK)) == \
  622. ((INTEL_GUC_MSG_TYPE_RESPONSE << INTEL_GUC_MSG_TYPE_SHIFT) | \
  623. (INTEL_GUC_RESPONSE_STATUS_SUCCESS << INTEL_GUC_MSG_CODE_SHIFT)))
  624. /* This action will be programmed in C1BC - SOFT_SCRATCH_15_REG */
  625. enum intel_guc_recv_message {
  626. INTEL_GUC_RECV_MSG_CRASH_DUMP_POSTED = BIT(1),
  627. INTEL_GUC_RECV_MSG_FLUSH_LOG_BUFFER = BIT(3)
  628. };
  629. #endif