Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2014-2017 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 | */ |
| 24 | |
| 25 | #ifndef _INTEL_GUC_H_ |
| 26 | #define _INTEL_GUC_H_ |
| 27 | |
| 28 | #include "intel_uncore.h" |
Michal Wajdeczko | e8668bb | 2017-10-16 14:47:14 +0000 | [diff] [blame] | 29 | #include "intel_guc_fw.h" |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 30 | #include "intel_guc_fwif.h" |
| 31 | #include "intel_guc_ct.h" |
| 32 | #include "intel_guc_log.h" |
Michal Wajdeczko | 3e8f5b0 | 2017-11-24 09:53:40 +0000 | [diff] [blame] | 33 | #include "intel_guc_reg.h" |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 34 | #include "intel_uc_fw.h" |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 35 | #include "i915_vma.h" |
| 36 | |
Michał Winiarski | c41937f | 2017-10-26 15:35:58 +0200 | [diff] [blame] | 37 | struct guc_preempt_work { |
| 38 | struct work_struct work; |
| 39 | struct intel_engine_cs *engine; |
| 40 | }; |
| 41 | |
Michal Wajdeczko | d9e2e01 | 2017-10-16 14:47:13 +0000 | [diff] [blame] | 42 | /* |
| 43 | * Top level structure of GuC. It handles firmware loading and manages client |
Sagar Arun Kamble | 5afc8b4 | 2017-11-16 19:02:40 +0530 | [diff] [blame] | 44 | * pool and doorbells. intel_guc owns a intel_guc_client to replace the legacy |
Michal Wajdeczko | d9e2e01 | 2017-10-16 14:47:13 +0000 | [diff] [blame] | 45 | * ExecList submission. |
| 46 | */ |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 47 | struct intel_guc { |
| 48 | struct intel_uc_fw fw; |
| 49 | struct intel_guc_log log; |
| 50 | struct intel_guc_ct ct; |
| 51 | |
| 52 | /* Log snapshot if GuC errors during load */ |
| 53 | struct drm_i915_gem_object *load_err_log; |
| 54 | |
| 55 | /* intel_guc_recv interrupt related state */ |
| 56 | bool interrupts_enabled; |
| 57 | |
| 58 | struct i915_vma *ads_vma; |
| 59 | struct i915_vma *stage_desc_pool; |
| 60 | void *stage_desc_pool_vaddr; |
| 61 | struct ida stage_ids; |
Michał Winiarski | b8e5eb9 | 2017-10-25 22:00:11 +0200 | [diff] [blame] | 62 | struct i915_vma *shared_data; |
| 63 | void *shared_data_vaddr; |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 64 | |
Sagar Arun Kamble | 5afc8b4 | 2017-11-16 19:02:40 +0530 | [diff] [blame] | 65 | struct intel_guc_client *execbuf_client; |
| 66 | struct intel_guc_client *preempt_client; |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 67 | |
Michał Winiarski | c41937f | 2017-10-26 15:35:58 +0200 | [diff] [blame] | 68 | struct guc_preempt_work preempt_work[I915_NUM_ENGINES]; |
| 69 | struct workqueue_struct *preempt_wq; |
| 70 | |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 71 | DECLARE_BITMAP(doorbell_bitmap, GUC_NUM_DOORBELLS); |
Joonas Lahtinen | faf6548 | 2017-10-06 11:49:40 +0300 | [diff] [blame] | 72 | /* Cyclic counter mod pagesize */ |
| 73 | u32 db_cacheline; |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 74 | |
| 75 | /* GuC's FW specific registers used in MMIO send */ |
| 76 | struct { |
| 77 | u32 base; |
| 78 | unsigned int count; |
| 79 | enum forcewake_domains fw_domains; |
| 80 | } send_regs; |
| 81 | |
| 82 | /* To serialize the intel_guc_send actions */ |
| 83 | struct mutex send_mutex; |
| 84 | |
| 85 | /* GuC's FW specific send function */ |
| 86 | int (*send)(struct intel_guc *guc, const u32 *data, u32 len); |
| 87 | |
| 88 | /* GuC's FW specific notify function */ |
| 89 | void (*notify)(struct intel_guc *guc); |
| 90 | }; |
| 91 | |
| 92 | static |
| 93 | inline int intel_guc_send(struct intel_guc *guc, const u32 *action, u32 len) |
| 94 | { |
| 95 | return guc->send(guc, action, len); |
| 96 | } |
| 97 | |
| 98 | static inline void intel_guc_notify(struct intel_guc *guc) |
| 99 | { |
| 100 | guc->notify(guc); |
| 101 | } |
| 102 | |
Michal Wajdeczko | d9e2e01 | 2017-10-16 14:47:13 +0000 | [diff] [blame] | 103 | /* |
| 104 | * GuC does not allow any gfx GGTT address that falls into range [0, WOPCM_TOP), |
| 105 | * which is reserved for Boot ROM, SRAM and WOPCM. Currently this top address is |
| 106 | * 512K. In order to exclude 0-512K address space from GGTT, all gfx objects |
| 107 | * used by GuC is pinned with PIN_OFFSET_BIAS along with size of WOPCM. |
| 108 | */ |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 109 | static inline u32 guc_ggtt_offset(struct i915_vma *vma) |
| 110 | { |
| 111 | u32 offset = i915_ggtt_offset(vma); |
| 112 | |
| 113 | GEM_BUG_ON(offset < GUC_WOPCM_TOP); |
| 114 | GEM_BUG_ON(range_overflows_t(u64, offset, vma->size, GUC_GGTT_TOP)); |
| 115 | |
| 116 | return offset; |
| 117 | } |
| 118 | |
| 119 | void intel_guc_init_early(struct intel_guc *guc); |
| 120 | void intel_guc_init_send_regs(struct intel_guc *guc); |
Michal Wajdeczko | 5d53be4 | 2017-10-16 14:47:11 +0000 | [diff] [blame] | 121 | void intel_guc_init_params(struct intel_guc *guc); |
Michał Winiarski | 3176ff4 | 2017-12-13 23:13:47 +0100 | [diff] [blame] | 122 | int intel_guc_init_wq(struct intel_guc *guc); |
| 123 | void intel_guc_fini_wq(struct intel_guc *guc); |
Michał Winiarski | 1bbbca0 | 2017-12-13 23:13:46 +0100 | [diff] [blame] | 124 | int intel_guc_init(struct intel_guc *guc); |
| 125 | void intel_guc_fini(struct intel_guc *guc); |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 126 | int intel_guc_send_nop(struct intel_guc *guc, const u32 *action, u32 len); |
| 127 | int intel_guc_send_mmio(struct intel_guc *guc, const u32 *action, u32 len); |
| 128 | int intel_guc_sample_forcewake(struct intel_guc *guc); |
| 129 | int intel_guc_auth_huc(struct intel_guc *guc, u32 rsa_offset); |
Michal Wajdeczko | 7cfca4a | 2018-03-02 11:15:49 +0000 | [diff] [blame] | 130 | int intel_guc_suspend(struct intel_guc *guc); |
| 131 | int intel_guc_resume(struct intel_guc *guc); |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 132 | struct i915_vma *intel_guc_allocate_vma(struct intel_guc *guc, u32 size); |
Michal Wajdeczko | 9bf384c | 2017-10-04 18:13:41 +0000 | [diff] [blame] | 133 | u32 intel_guc_wopcm_size(struct drm_i915_private *dev_priv); |
| 134 | |
| 135 | #endif |