Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 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 | */ |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 24 | |
Michal Wajdeczko | 9f436c4 | 2017-10-04 18:13:40 +0000 | [diff] [blame] | 25 | #include <linux/circ_buf.h> |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 26 | #include <trace/events/dma_fence.h> |
| 27 | |
Michal Wajdeczko | 9f436c4 | 2017-10-04 18:13:40 +0000 | [diff] [blame] | 28 | #include "i915_guc_submission.h" |
| 29 | #include "i915_drv.h" |
| 30 | |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 31 | /** |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 32 | * DOC: GuC-based command submission |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 33 | * |
Oscar Mateo | 0d76812 | 2017-03-22 10:39:50 -0700 | [diff] [blame] | 34 | * GuC client: |
| 35 | * A i915_guc_client refers to a submission path through GuC. Currently, there |
| 36 | * is only one of these (the execbuf_client) and this one is charged with all |
| 37 | * submissions to the GuC. This struct is the owner of a doorbell, a process |
| 38 | * descriptor and a workqueue (all of them inside a single gem object that |
| 39 | * contains all required pages for these elements). |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 40 | * |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 41 | * GuC stage descriptor: |
Oscar Mateo | 0d76812 | 2017-03-22 10:39:50 -0700 | [diff] [blame] | 42 | * During initialization, the driver allocates a static pool of 1024 such |
| 43 | * descriptors, and shares them with the GuC. |
| 44 | * Currently, there exists a 1:1 mapping between a i915_guc_client and a |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 45 | * guc_stage_desc (via the client's stage_id), so effectively only one |
| 46 | * gets used. This stage descriptor lets the GuC know about the doorbell, |
| 47 | * workqueue and process descriptor. Theoretically, it also lets the GuC |
| 48 | * know about our HW contexts (context ID, etc...), but we actually |
Oscar Mateo | 0d76812 | 2017-03-22 10:39:50 -0700 | [diff] [blame] | 49 | * employ a kind of submission where the GuC uses the LRCA sent via the work |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 50 | * item instead (the single guc_stage_desc associated to execbuf client |
Oscar Mateo | 0d76812 | 2017-03-22 10:39:50 -0700 | [diff] [blame] | 51 | * contains information about the default kernel context only, but this is |
| 52 | * essentially unused). This is called a "proxy" submission. |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 53 | * |
| 54 | * The Scratch registers: |
| 55 | * There are 16 MMIO-based registers start from 0xC180. The kernel driver writes |
| 56 | * a value to the action register (SOFT_SCRATCH_0) along with any data. It then |
| 57 | * triggers an interrupt on the GuC via another register write (0xC4C8). |
| 58 | * Firmware writes a success/fail code back to the action register after |
| 59 | * processes the request. The kernel driver polls waiting for this update and |
| 60 | * then proceeds. |
Arkadiusz Hiler | 2d803c2 | 2016-11-25 18:59:35 +0100 | [diff] [blame] | 61 | * See intel_guc_send() |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 62 | * |
| 63 | * Doorbells: |
| 64 | * Doorbells are interrupts to uKernel. A doorbell is a single cache line (QW) |
| 65 | * mapped into process space. |
| 66 | * |
| 67 | * Work Items: |
| 68 | * There are several types of work items that the host may place into a |
| 69 | * workqueue, each with its own requirements and limitations. Currently only |
| 70 | * WQ_TYPE_INORDER is needed to support legacy submission via GuC, which |
| 71 | * represents in-order queue. The kernel driver packs ring tail pointer and an |
| 72 | * ELSP context descriptor dword into Work Item. |
Dave Gordon | 7a9347f | 2016-09-12 21:19:37 +0100 | [diff] [blame] | 73 | * See guc_wq_item_append() |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 74 | * |
Oscar Mateo | 0704df2 | 2017-03-22 10:39:47 -0700 | [diff] [blame] | 75 | * ADS: |
| 76 | * The Additional Data Struct (ADS) has pointers for different buffers used by |
| 77 | * the GuC. One single gem object contains the ADS struct itself (guc_ads), the |
| 78 | * scheduling policies (guc_policies), a structure describing a collection of |
| 79 | * register sets (guc_mmio_reg_state) and some extra pages for the GuC to save |
| 80 | * its internal state for sleep. |
| 81 | * |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 82 | */ |
| 83 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 84 | static inline bool is_high_priority(struct i915_guc_client* client) |
| 85 | { |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 86 | return client->priority <= GUC_CLIENT_PRIORITY_HIGH; |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | static int __reserve_doorbell(struct i915_guc_client *client) |
| 90 | { |
| 91 | unsigned long offset; |
| 92 | unsigned long end; |
| 93 | u16 id; |
| 94 | |
| 95 | GEM_BUG_ON(client->doorbell_id != GUC_DOORBELL_INVALID); |
| 96 | |
| 97 | /* |
| 98 | * The bitmap tracks which doorbell registers are currently in use. |
| 99 | * It is split into two halves; the first half is used for normal |
| 100 | * priority contexts, the second half for high-priority ones. |
| 101 | */ |
| 102 | offset = 0; |
| 103 | end = GUC_NUM_DOORBELLS/2; |
| 104 | if (is_high_priority(client)) { |
| 105 | offset = end; |
| 106 | end += offset; |
| 107 | } |
| 108 | |
Michel Thierry | 7f1ea2a | 2017-05-30 17:05:46 -0700 | [diff] [blame] | 109 | id = find_next_zero_bit(client->guc->doorbell_bitmap, end, offset); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 110 | if (id == end) |
| 111 | return -ENOSPC; |
| 112 | |
| 113 | __set_bit(id, client->guc->doorbell_bitmap); |
| 114 | client->doorbell_id = id; |
| 115 | DRM_DEBUG_DRIVER("client %u (high prio=%s) reserved doorbell: %d\n", |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 116 | client->stage_id, yesno(is_high_priority(client)), |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 117 | id); |
| 118 | return 0; |
| 119 | } |
| 120 | |
| 121 | static void __unreserve_doorbell(struct i915_guc_client *client) |
| 122 | { |
| 123 | GEM_BUG_ON(client->doorbell_id == GUC_DOORBELL_INVALID); |
| 124 | |
| 125 | __clear_bit(client->doorbell_id, client->guc->doorbell_bitmap); |
| 126 | client->doorbell_id = GUC_DOORBELL_INVALID; |
| 127 | } |
| 128 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 129 | /* |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 130 | * Tell the GuC to allocate or deallocate a specific doorbell |
| 131 | */ |
| 132 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 133 | static int __guc_allocate_doorbell(struct intel_guc *guc, u32 stage_id) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 134 | { |
Arkadiusz Hiler | 2d803c2 | 2016-11-25 18:59:35 +0100 | [diff] [blame] | 135 | u32 action[] = { |
| 136 | INTEL_GUC_ACTION_ALLOCATE_DOORBELL, |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 137 | stage_id |
Arkadiusz Hiler | 2d803c2 | 2016-11-25 18:59:35 +0100 | [diff] [blame] | 138 | }; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 139 | |
Arkadiusz Hiler | 2d803c2 | 2016-11-25 18:59:35 +0100 | [diff] [blame] | 140 | return intel_guc_send(guc, action, ARRAY_SIZE(action)); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 141 | } |
| 142 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 143 | static int __guc_deallocate_doorbell(struct intel_guc *guc, u32 stage_id) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 144 | { |
Arkadiusz Hiler | 2d803c2 | 2016-11-25 18:59:35 +0100 | [diff] [blame] | 145 | u32 action[] = { |
| 146 | INTEL_GUC_ACTION_DEALLOCATE_DOORBELL, |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 147 | stage_id |
Arkadiusz Hiler | 2d803c2 | 2016-11-25 18:59:35 +0100 | [diff] [blame] | 148 | }; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 149 | |
Arkadiusz Hiler | 2d803c2 | 2016-11-25 18:59:35 +0100 | [diff] [blame] | 150 | return intel_guc_send(guc, action, ARRAY_SIZE(action)); |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 151 | } |
| 152 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 153 | static struct guc_stage_desc *__get_stage_desc(struct i915_guc_client *client) |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 154 | { |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 155 | struct guc_stage_desc *base = client->guc->stage_desc_pool_vaddr; |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 156 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 157 | return &base[client->stage_id]; |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 160 | /* |
| 161 | * Initialise, update, or clear doorbell data shared with the GuC |
| 162 | * |
| 163 | * These functions modify shared data and so need access to the mapped |
| 164 | * client object which contains the page being used for the doorbell |
| 165 | */ |
| 166 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 167 | static void __update_doorbell_desc(struct i915_guc_client *client, u16 new_id) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 168 | { |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 169 | struct guc_stage_desc *desc; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 170 | |
Dave Gordon | a667429 | 2016-06-13 17:57:32 +0100 | [diff] [blame] | 171 | /* Update the GuC's idea of the doorbell ID */ |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 172 | desc = __get_stage_desc(client); |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 173 | desc->db_id = new_id; |
Dave Gordon | a667429 | 2016-06-13 17:57:32 +0100 | [diff] [blame] | 174 | } |
| 175 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 176 | static struct guc_doorbell_info *__get_doorbell(struct i915_guc_client *client) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 177 | { |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 178 | return client->vaddr + client->doorbell_offset; |
| 179 | } |
| 180 | |
| 181 | static bool has_doorbell(struct i915_guc_client *client) |
| 182 | { |
| 183 | if (client->doorbell_id == GUC_DOORBELL_INVALID) |
| 184 | return false; |
| 185 | |
| 186 | return test_bit(client->doorbell_id, client->guc->doorbell_bitmap); |
| 187 | } |
| 188 | |
| 189 | static int __create_doorbell(struct i915_guc_client *client) |
| 190 | { |
| 191 | struct guc_doorbell_info *doorbell; |
| 192 | int err; |
| 193 | |
| 194 | doorbell = __get_doorbell(client); |
| 195 | doorbell->db_status = GUC_DOORBELL_ENABLED; |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 196 | doorbell->cookie = 0; |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 197 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 198 | err = __guc_allocate_doorbell(client->guc, client->stage_id); |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 199 | if (err) |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 200 | doorbell->db_status = GUC_DOORBELL_DISABLED; |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 201 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 202 | return err; |
| 203 | } |
| 204 | |
| 205 | static int __destroy_doorbell(struct i915_guc_client *client) |
| 206 | { |
Oscar Mateo | ed2ec71f | 2017-03-22 10:39:51 -0700 | [diff] [blame] | 207 | struct drm_i915_private *dev_priv = guc_to_i915(client->guc); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 208 | struct guc_doorbell_info *doorbell; |
Oscar Mateo | ed2ec71f | 2017-03-22 10:39:51 -0700 | [diff] [blame] | 209 | u16 db_id = client->doorbell_id; |
| 210 | |
| 211 | GEM_BUG_ON(db_id >= GUC_DOORBELL_INVALID); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 212 | |
| 213 | doorbell = __get_doorbell(client); |
| 214 | doorbell->db_status = GUC_DOORBELL_DISABLED; |
| 215 | doorbell->cookie = 0; |
| 216 | |
Oscar Mateo | ed2ec71f | 2017-03-22 10:39:51 -0700 | [diff] [blame] | 217 | /* Doorbell release flow requires that we wait for GEN8_DRB_VALID bit |
| 218 | * to go to zero after updating db_status before we call the GuC to |
| 219 | * release the doorbell */ |
| 220 | if (wait_for_us(!(I915_READ(GEN8_DRBREGL(db_id)) & GEN8_DRB_VALID), 10)) |
| 221 | WARN_ONCE(true, "Doorbell never became invalid after disable\n"); |
| 222 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 223 | return __guc_deallocate_doorbell(client->guc, client->stage_id); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 224 | } |
| 225 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 226 | static int create_doorbell(struct i915_guc_client *client) |
| 227 | { |
| 228 | int ret; |
| 229 | |
| 230 | ret = __reserve_doorbell(client); |
| 231 | if (ret) |
| 232 | return ret; |
| 233 | |
| 234 | __update_doorbell_desc(client, client->doorbell_id); |
| 235 | |
| 236 | ret = __create_doorbell(client); |
| 237 | if (ret) |
| 238 | goto err; |
| 239 | |
| 240 | return 0; |
| 241 | |
| 242 | err: |
| 243 | __update_doorbell_desc(client, GUC_DOORBELL_INVALID); |
| 244 | __unreserve_doorbell(client); |
| 245 | return ret; |
| 246 | } |
| 247 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 248 | static int destroy_doorbell(struct i915_guc_client *client) |
| 249 | { |
| 250 | int err; |
| 251 | |
| 252 | GEM_BUG_ON(!has_doorbell(client)); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 253 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 254 | /* XXX: wait for any interrupts */ |
| 255 | /* XXX: wait for workqueue to drain */ |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 256 | |
| 257 | err = __destroy_doorbell(client); |
| 258 | if (err) |
| 259 | return err; |
| 260 | |
| 261 | __update_doorbell_desc(client, GUC_DOORBELL_INVALID); |
| 262 | |
| 263 | __unreserve_doorbell(client); |
| 264 | |
| 265 | return 0; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 266 | } |
| 267 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 268 | static unsigned long __select_cacheline(struct intel_guc* guc) |
Dave Gordon | f10d69a | 2016-06-13 17:57:33 +0100 | [diff] [blame] | 269 | { |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 270 | unsigned long offset; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 271 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 272 | /* Doorbell uses a single cache line within a page */ |
| 273 | offset = offset_in_page(guc->db_cacheline); |
| 274 | |
| 275 | /* Moving to next cache line to reduce contention */ |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 276 | guc->db_cacheline += cache_line_size(); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 277 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 278 | DRM_DEBUG_DRIVER("reserved cacheline 0x%lx, next 0x%x, linesize %u\n", |
| 279 | offset, guc->db_cacheline, cache_line_size()); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 280 | return offset; |
| 281 | } |
| 282 | |
Chris Wilson | bd00e73 | 2017-03-23 23:00:00 +0000 | [diff] [blame] | 283 | static inline struct guc_process_desc * |
| 284 | __get_process_desc(struct i915_guc_client *client) |
| 285 | { |
| 286 | return client->vaddr + client->proc_desc_offset; |
| 287 | } |
| 288 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 289 | /* |
| 290 | * Initialise the process descriptor shared with the GuC firmware. |
| 291 | */ |
Dave Gordon | 7a9347f | 2016-09-12 21:19:37 +0100 | [diff] [blame] | 292 | static void guc_proc_desc_init(struct intel_guc *guc, |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 293 | struct i915_guc_client *client) |
| 294 | { |
| 295 | struct guc_process_desc *desc; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 296 | |
Chris Wilson | bd00e73 | 2017-03-23 23:00:00 +0000 | [diff] [blame] | 297 | desc = memset(__get_process_desc(client), 0, sizeof(*desc)); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 298 | |
| 299 | /* |
| 300 | * XXX: pDoorbell and WQVBaseAddress are pointers in process address |
| 301 | * space for ring3 clients (set them as in mmap_ioctl) or kernel |
| 302 | * space for kernel clients (map on demand instead? May make debug |
| 303 | * easier to have it mapped). |
| 304 | */ |
| 305 | desc->wq_base_addr = 0; |
| 306 | desc->db_base_addr = 0; |
| 307 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 308 | desc->stage_id = client->stage_id; |
Michał Winiarski | a529a1c | 2017-09-18 11:25:35 +0200 | [diff] [blame] | 309 | desc->wq_size_bytes = GUC_WQ_SIZE; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 310 | desc->wq_status = WQ_STATUS_ACTIVE; |
| 311 | desc->priority = client->priority; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | /* |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 315 | * Initialise/clear the stage descriptor shared with the GuC firmware. |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 316 | * |
| 317 | * This descriptor tells the GuC where (in GGTT space) to find the important |
| 318 | * data structures relating to this client (doorbell, process descriptor, |
| 319 | * write queue, etc). |
| 320 | */ |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 321 | static void guc_stage_desc_init(struct intel_guc *guc, |
| 322 | struct i915_guc_client *client) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 323 | { |
Alex Dai | 397097b | 2016-01-23 11:58:14 -0800 | [diff] [blame] | 324 | struct drm_i915_private *dev_priv = guc_to_i915(guc); |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 325 | struct intel_engine_cs *engine; |
Chris Wilson | e2efd13 | 2016-05-24 14:53:34 +0100 | [diff] [blame] | 326 | struct i915_gem_context *ctx = client->owner; |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 327 | struct guc_stage_desc *desc; |
Chris Wilson | bafb0fc | 2016-08-27 08:54:01 +0100 | [diff] [blame] | 328 | unsigned int tmp; |
Dave Gordon | 86e06cc | 2016-04-19 16:08:36 +0100 | [diff] [blame] | 329 | u32 gfx_addr; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 330 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 331 | desc = __get_stage_desc(client); |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 332 | memset(desc, 0, sizeof(*desc)); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 333 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 334 | desc->attribute = GUC_STAGE_DESC_ATTR_ACTIVE | GUC_STAGE_DESC_ATTR_KERNEL; |
| 335 | desc->stage_id = client->stage_id; |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 336 | desc->priority = client->priority; |
| 337 | desc->db_id = client->doorbell_id; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 338 | |
Chris Wilson | bafb0fc | 2016-08-27 08:54:01 +0100 | [diff] [blame] | 339 | for_each_engine_masked(engine, dev_priv, client->engines, tmp) { |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 340 | struct intel_context *ce = &ctx->engine[engine->id]; |
Joonas Lahtinen | faf6548 | 2017-10-06 11:49:40 +0300 | [diff] [blame] | 341 | u32 guc_engine_id = engine->guc_id; |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 342 | struct guc_execlist_context *lrc = &desc->lrc[guc_engine_id]; |
Alex Dai | d167519 | 2015-08-12 15:43:43 +0100 | [diff] [blame] | 343 | |
| 344 | /* TODO: We have a design issue to be solved here. Only when we |
| 345 | * receive the first batch, we know which engine is used by the |
| 346 | * user. But here GuC expects the lrc and ring to be pinned. It |
| 347 | * is not an issue for default context, which is the only one |
| 348 | * for now who owns a GuC client. But for future owner of GuC |
| 349 | * client, need to make sure lrc is pinned prior to enter here. |
| 350 | */ |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 351 | if (!ce->state) |
Alex Dai | d167519 | 2015-08-12 15:43:43 +0100 | [diff] [blame] | 352 | break; /* XXX: continue? */ |
| 353 | |
Oscar Mateo | 0d76812 | 2017-03-22 10:39:50 -0700 | [diff] [blame] | 354 | /* |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 355 | * XXX: When this is a GUC_STAGE_DESC_ATTR_KERNEL client (proxy |
Oscar Mateo | 0d76812 | 2017-03-22 10:39:50 -0700 | [diff] [blame] | 356 | * submission or, in other words, not using a direct submission |
| 357 | * model) the KMD's LRCA is not used for any work submission. |
| 358 | * Instead, the GuC uses the LRCA of the user mode context (see |
| 359 | * guc_wq_item_append below). |
| 360 | */ |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 361 | lrc->context_desc = lower_32_bits(ce->lrc_desc); |
Alex Dai | d167519 | 2015-08-12 15:43:43 +0100 | [diff] [blame] | 362 | |
| 363 | /* The state page is after PPHWSP */ |
Oscar Mateo | 0d76812 | 2017-03-22 10:39:50 -0700 | [diff] [blame] | 364 | lrc->ring_lrca = |
Chris Wilson | 4741da9 | 2016-12-24 19:31:46 +0000 | [diff] [blame] | 365 | guc_ggtt_offset(ce->state) + LRC_STATE_PN * PAGE_SIZE; |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 366 | |
| 367 | /* XXX: In direct submission, the GuC wants the HW context id |
| 368 | * here. In proxy submission, it wants the stage id */ |
| 369 | lrc->context_id = (client->stage_id << GUC_ELC_CTXID_OFFSET) | |
Dave Gordon | c18468c | 2016-08-09 15:19:22 +0100 | [diff] [blame] | 370 | (guc_engine_id << GUC_ELC_ENGINE_OFFSET); |
Alex Dai | d167519 | 2015-08-12 15:43:43 +0100 | [diff] [blame] | 371 | |
Chris Wilson | 4741da9 | 2016-12-24 19:31:46 +0000 | [diff] [blame] | 372 | lrc->ring_begin = guc_ggtt_offset(ce->ring->vma); |
Chris Wilson | 57e8853 | 2016-08-15 10:48:57 +0100 | [diff] [blame] | 373 | lrc->ring_end = lrc->ring_begin + ce->ring->size - 1; |
| 374 | lrc->ring_next_free_location = lrc->ring_begin; |
Alex Dai | d167519 | 2015-08-12 15:43:43 +0100 | [diff] [blame] | 375 | lrc->ring_current_tail_pointer_value = 0; |
| 376 | |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 377 | desc->engines_used |= (1 << guc_engine_id); |
Alex Dai | d167519 | 2015-08-12 15:43:43 +0100 | [diff] [blame] | 378 | } |
| 379 | |
Dave Gordon | e02757d | 2016-08-09 15:19:21 +0100 | [diff] [blame] | 380 | DRM_DEBUG_DRIVER("Host engines 0x%x => GuC engines used 0x%x\n", |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 381 | client->engines, desc->engines_used); |
| 382 | WARN_ON(desc->engines_used == 0); |
Alex Dai | d167519 | 2015-08-12 15:43:43 +0100 | [diff] [blame] | 383 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 384 | /* |
Dave Gordon | 86e06cc | 2016-04-19 16:08:36 +0100 | [diff] [blame] | 385 | * The doorbell, process descriptor, and workqueue are all parts |
| 386 | * of the client object, which the GuC will reference via the GGTT |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 387 | */ |
Chris Wilson | 4741da9 | 2016-12-24 19:31:46 +0000 | [diff] [blame] | 388 | gfx_addr = guc_ggtt_offset(client->vma); |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 389 | desc->db_trigger_phy = sg_dma_address(client->vma->pages->sgl) + |
Dave Gordon | 86e06cc | 2016-04-19 16:08:36 +0100 | [diff] [blame] | 390 | client->doorbell_offset; |
Michal Wajdeczko | bb8920f | 2017-10-06 13:08:44 +0000 | [diff] [blame] | 391 | desc->db_trigger_cpu = ptr_to_u64(__get_doorbell(client)); |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 392 | desc->db_trigger_uk = gfx_addr + client->doorbell_offset; |
| 393 | desc->process_desc = gfx_addr + client->proc_desc_offset; |
Michał Winiarski | a529a1c | 2017-09-18 11:25:35 +0200 | [diff] [blame] | 394 | desc->wq_addr = gfx_addr + GUC_DB_SIZE; |
| 395 | desc->wq_size = GUC_WQ_SIZE; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 396 | |
Michal Wajdeczko | bb8920f | 2017-10-06 13:08:44 +0000 | [diff] [blame] | 397 | desc->desc_private = ptr_to_u64(client); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 398 | } |
| 399 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 400 | static void guc_stage_desc_fini(struct intel_guc *guc, |
| 401 | struct i915_guc_client *client) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 402 | { |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 403 | struct guc_stage_desc *desc; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 404 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 405 | desc = __get_stage_desc(client); |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 406 | memset(desc, 0, sizeof(*desc)); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 407 | } |
| 408 | |
Dave Gordon | 7a9347f | 2016-09-12 21:19:37 +0100 | [diff] [blame] | 409 | /* Construct a Work Item and append it to the GuC's Work Queue */ |
Michal Wajdeczko | 776594d | 2016-12-15 19:53:21 +0000 | [diff] [blame] | 410 | static void guc_wq_item_append(struct i915_guc_client *client, |
Dave Gordon | 7a9347f | 2016-09-12 21:19:37 +0100 | [diff] [blame] | 411 | struct drm_i915_gem_request *rq) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 412 | { |
Dave Gordon | 0a31afb | 2016-05-13 15:36:34 +0100 | [diff] [blame] | 413 | /* wqi_len is in DWords, and does not include the one-word header */ |
| 414 | const size_t wqi_size = sizeof(struct guc_wq_item); |
Oscar Mateo | ada8c41 | 2017-09-12 14:36:37 -0700 | [diff] [blame] | 415 | const u32 wqi_len = wqi_size / sizeof(u32) - 1; |
Dave Gordon | c18468c | 2016-08-09 15:19:22 +0100 | [diff] [blame] | 416 | struct intel_engine_cs *engine = rq->engine; |
Oscar Mateo | ada8c41 | 2017-09-12 14:36:37 -0700 | [diff] [blame] | 417 | struct i915_gem_context *ctx = rq->ctx; |
Chris Wilson | bd00e73 | 2017-03-23 23:00:00 +0000 | [diff] [blame] | 418 | struct guc_process_desc *desc = __get_process_desc(client); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 419 | struct guc_wq_item *wqi; |
Michał Winiarski | a529a1c | 2017-09-18 11:25:35 +0200 | [diff] [blame] | 420 | u32 ring_tail, wq_off; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 421 | |
Michał Winiarski | a529a1c | 2017-09-18 11:25:35 +0200 | [diff] [blame] | 422 | lockdep_assert_held(&client->wq_lock); |
Dave Gordon | 0a31afb | 2016-05-13 15:36:34 +0100 | [diff] [blame] | 423 | |
Michał Winiarski | a529a1c | 2017-09-18 11:25:35 +0200 | [diff] [blame] | 424 | ring_tail = intel_ring_set_tail(rq->ring, rq->tail) / sizeof(u64); |
| 425 | GEM_BUG_ON(ring_tail > WQ_RING_TAIL_MAX); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 426 | |
| 427 | /* For now workqueue item is 4 DWs; workqueue buffer is 2 pages. So we |
| 428 | * should not have the case where structure wqi is across page, neither |
| 429 | * wrapped to the beginning. This simplifies the implementation below. |
| 430 | * |
| 431 | * XXX: if not the case, we need save data to a temp wqi and copy it to |
| 432 | * workqueue buffer dw by dw. |
| 433 | */ |
Dave Gordon | 0a31afb | 2016-05-13 15:36:34 +0100 | [diff] [blame] | 434 | BUILD_BUG_ON(wqi_size != 16); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 435 | |
Michał Winiarski | a529a1c | 2017-09-18 11:25:35 +0200 | [diff] [blame] | 436 | /* Free space is guaranteed. */ |
| 437 | wq_off = READ_ONCE(desc->tail); |
| 438 | GEM_BUG_ON(CIRC_SPACE(wq_off, READ_ONCE(desc->head), |
| 439 | GUC_WQ_SIZE) < wqi_size); |
Chris Wilson | dadd481 | 2016-09-09 14:11:57 +0100 | [diff] [blame] | 440 | GEM_BUG_ON(wq_off & (wqi_size - 1)); |
Dave Gordon | 0a31afb | 2016-05-13 15:36:34 +0100 | [diff] [blame] | 441 | |
| 442 | /* WQ starts from the page after doorbell / process_desc */ |
Michal Wajdeczko | 776594d | 2016-12-15 19:53:21 +0000 | [diff] [blame] | 443 | wqi = client->vaddr + wq_off + GUC_DB_SIZE; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 444 | |
Dave Gordon | 0a31afb | 2016-05-13 15:36:34 +0100 | [diff] [blame] | 445 | /* Now fill in the 4-word work queue item */ |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 446 | wqi->header = WQ_TYPE_INORDER | |
Oscar Mateo | ada8c41 | 2017-09-12 14:36:37 -0700 | [diff] [blame] | 447 | (wqi_len << WQ_LEN_SHIFT) | |
| 448 | (engine->guc_id << WQ_TARGET_SHIFT) | |
| 449 | WQ_NO_WCFLUSH_WAIT; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 450 | |
Oscar Mateo | ada8c41 | 2017-09-12 14:36:37 -0700 | [diff] [blame] | 451 | wqi->context_desc = lower_32_bits(intel_lr_context_descriptor(ctx, engine)); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 452 | |
Michał Winiarski | a529a1c | 2017-09-18 11:25:35 +0200 | [diff] [blame] | 453 | wqi->submit_element_info = ring_tail << WQ_RING_TAIL_SHIFT; |
Chris Wilson | 65e4760 | 2016-10-28 13:58:49 +0100 | [diff] [blame] | 454 | wqi->fence_id = rq->global_seqno; |
Michał Winiarski | a529a1c | 2017-09-18 11:25:35 +0200 | [diff] [blame] | 455 | |
| 456 | /* Postincrement WQ tail for next time. */ |
| 457 | WRITE_ONCE(desc->tail, (wq_off + wqi_size) & (GUC_WQ_SIZE - 1)); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 458 | } |
| 459 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 460 | static void guc_reset_wq(struct i915_guc_client *client) |
| 461 | { |
Chris Wilson | bd00e73 | 2017-03-23 23:00:00 +0000 | [diff] [blame] | 462 | struct guc_process_desc *desc = __get_process_desc(client); |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 463 | |
| 464 | desc->head = 0; |
| 465 | desc->tail = 0; |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 466 | } |
| 467 | |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 468 | static void guc_ring_doorbell(struct i915_guc_client *client) |
Dave Gordon | 10d2c3e | 2016-06-13 17:57:31 +0100 | [diff] [blame] | 469 | { |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 470 | struct guc_doorbell_info *db; |
| 471 | u32 cookie; |
Dave Gordon | 10d2c3e | 2016-06-13 17:57:31 +0100 | [diff] [blame] | 472 | |
Michał Winiarski | a529a1c | 2017-09-18 11:25:35 +0200 | [diff] [blame] | 473 | lockdep_assert_held(&client->wq_lock); |
Dave Gordon | 10d2c3e | 2016-06-13 17:57:31 +0100 | [diff] [blame] | 474 | |
Dave Gordon | 10d2c3e | 2016-06-13 17:57:31 +0100 | [diff] [blame] | 475 | /* pointer of current doorbell cacheline */ |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 476 | db = __get_doorbell(client); |
Dave Gordon | 10d2c3e | 2016-06-13 17:57:31 +0100 | [diff] [blame] | 477 | |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 478 | /* we're not expecting the doorbell cookie to change behind our back */ |
| 479 | cookie = READ_ONCE(db->cookie); |
| 480 | WARN_ON_ONCE(xchg(&db->cookie, cookie + 1) != cookie); |
Dave Gordon | 10d2c3e | 2016-06-13 17:57:31 +0100 | [diff] [blame] | 481 | |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 482 | /* XXX: doorbell was lost and need to acquire it again */ |
| 483 | GEM_BUG_ON(db->db_status != GUC_DOORBELL_ENABLED); |
Dave Gordon | 10d2c3e | 2016-06-13 17:57:31 +0100 | [diff] [blame] | 484 | } |
| 485 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 486 | /** |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 487 | * i915_guc_submit() - Submit commands through GuC |
| 488 | * @engine: engine associated with the commands |
Dave Gordon | 7c2c270 | 2016-05-13 15:36:32 +0100 | [diff] [blame] | 489 | * |
| 490 | * The only error here arises if the doorbell hardware isn't functioning |
| 491 | * as expected, which really shouln't happen. |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 492 | */ |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 493 | static void i915_guc_submit(struct intel_engine_cs *engine) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 494 | { |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 495 | struct drm_i915_private *dev_priv = engine->i915; |
| 496 | struct intel_guc *guc = &dev_priv->guc; |
Dave Gordon | 7c2c270 | 2016-05-13 15:36:32 +0100 | [diff] [blame] | 497 | struct i915_guc_client *client = guc->execbuf_client; |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 498 | struct intel_engine_execlists * const execlists = &engine->execlists; |
| 499 | struct execlist_port *port = execlists->port; |
| 500 | const unsigned int engine_id = engine->id; |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 501 | unsigned int n; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 502 | |
Mika Kuoppala | dc2279e | 2017-10-10 14:48:57 +0300 | [diff] [blame] | 503 | for (n = 0; n < execlists_num_ports(execlists); n++) { |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 504 | struct drm_i915_gem_request *rq; |
| 505 | unsigned int count; |
Akash Goel | ed4596ea | 2016-10-25 22:05:23 +0530 | [diff] [blame] | 506 | |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 507 | rq = port_unpack(&port[n], &count); |
| 508 | if (rq && count == 0) { |
| 509 | port_set(&port[n], port_pack(rq, ++count)); |
Chris Wilson | 0c33518 | 2017-02-28 11:28:03 +0000 | [diff] [blame] | 510 | |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 511 | if (i915_vma_is_map_and_fenceable(rq->ring->vma)) |
| 512 | POSTING_READ_FW(GUC_STATUS); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 513 | |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 514 | spin_lock(&client->wq_lock); |
Dave Gordon | 0a31afb | 2016-05-13 15:36:34 +0100 | [diff] [blame] | 515 | |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 516 | guc_wq_item_append(client, rq); |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 517 | guc_ring_doorbell(client); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 518 | |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 519 | client->submissions[engine_id] += 1; |
| 520 | |
| 521 | spin_unlock(&client->wq_lock); |
| 522 | } |
| 523 | } |
Chris Wilson | 34ba5a8 | 2016-11-29 12:10:24 +0000 | [diff] [blame] | 524 | } |
| 525 | |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 526 | static void nested_enable_signaling(struct drm_i915_gem_request *rq) |
| 527 | { |
| 528 | /* If we use dma_fence_enable_sw_signaling() directly, lockdep |
| 529 | * detects an ordering issue between the fence lockclass and the |
| 530 | * global_timeline. This circular dependency can only occur via 2 |
| 531 | * different fences (but same fence lockclass), so we use the nesting |
| 532 | * annotation here to prevent the warn, equivalent to the nesting |
| 533 | * inside i915_gem_request_submit() for when we also enable the |
| 534 | * signaler. |
| 535 | */ |
| 536 | |
| 537 | if (test_and_set_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, |
| 538 | &rq->fence.flags)) |
| 539 | return; |
| 540 | |
| 541 | GEM_BUG_ON(test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &rq->fence.flags)); |
| 542 | trace_dma_fence_enable_signal(&rq->fence); |
| 543 | |
| 544 | spin_lock_nested(&rq->lock, SINGLE_DEPTH_NESTING); |
Chris Wilson | f7b02a5 | 2017-04-26 09:06:59 +0100 | [diff] [blame] | 545 | intel_engine_enable_signaling(rq, true); |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 546 | spin_unlock(&rq->lock); |
| 547 | } |
| 548 | |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 549 | static void port_assign(struct execlist_port *port, |
| 550 | struct drm_i915_gem_request *rq) |
| 551 | { |
| 552 | GEM_BUG_ON(rq == port_request(port)); |
| 553 | |
| 554 | if (port_isset(port)) |
| 555 | i915_gem_request_put(port_request(port)); |
| 556 | |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 557 | port_set(port, port_pack(i915_gem_request_get(rq), port_count(port))); |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 558 | nested_enable_signaling(rq); |
| 559 | } |
| 560 | |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 561 | static void i915_guc_dequeue(struct intel_engine_cs *engine) |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 562 | { |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 563 | struct intel_engine_execlists * const execlists = &engine->execlists; |
| 564 | struct execlist_port *port = execlists->port; |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 565 | struct drm_i915_gem_request *last = NULL; |
Mika Kuoppala | 76e7008 | 2017-09-22 15:43:07 +0300 | [diff] [blame] | 566 | const struct execlist_port * const last_port = |
| 567 | &execlists->port[execlists->port_mask]; |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 568 | bool submit = false; |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 569 | struct rb_node *rb; |
| 570 | |
| 571 | if (port_isset(port)) |
| 572 | port++; |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 573 | |
Tvrtko Ursulin | 9f7886d | 2017-03-21 10:55:11 +0000 | [diff] [blame] | 574 | spin_lock_irq(&engine->timeline->lock); |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 575 | rb = execlists->first; |
| 576 | GEM_BUG_ON(rb_first(&execlists->queue) != rb); |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 577 | while (rb) { |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 578 | struct i915_priolist *p = rb_entry(rb, typeof(*p), node); |
| 579 | struct drm_i915_gem_request *rq, *rn; |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 580 | |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 581 | list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) { |
| 582 | if (last && rq->ctx != last->ctx) { |
Mika Kuoppala | 76e7008 | 2017-09-22 15:43:07 +0300 | [diff] [blame] | 583 | if (port == last_port) { |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 584 | __list_del_many(&p->requests, |
| 585 | &rq->priotree.link); |
| 586 | goto done; |
| 587 | } |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 588 | |
Michał Winiarski | f63078a | 2017-05-23 12:23:59 +0200 | [diff] [blame] | 589 | if (submit) |
| 590 | port_assign(port, last); |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 591 | port++; |
| 592 | } |
| 593 | |
| 594 | INIT_LIST_HEAD(&rq->priotree.link); |
| 595 | rq->priotree.priority = INT_MAX; |
| 596 | |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 597 | __i915_gem_request_submit(rq); |
Mika Kuoppala | 7a62cc6 | 2017-09-22 15:43:06 +0300 | [diff] [blame] | 598 | trace_i915_gem_request_in(rq, port_index(port, execlists)); |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 599 | last = rq; |
| 600 | submit = true; |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | rb = rb_next(rb); |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 604 | rb_erase(&p->node, &execlists->queue); |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 605 | INIT_LIST_HEAD(&p->requests); |
| 606 | if (p->priority != I915_PRIORITY_NORMAL) |
Chris Wilson | c5cf9a9 | 2017-05-17 13:10:04 +0100 | [diff] [blame] | 607 | kmem_cache_free(engine->i915->priorities, p); |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 608 | } |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 609 | done: |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 610 | execlists->first = rb; |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 611 | if (submit) { |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 612 | port_assign(port, last); |
Chris Wilson | 4a118ec | 2017-10-23 22:32:36 +0100 | [diff] [blame] | 613 | execlists_set_active(execlists, EXECLISTS_ACTIVE_USER); |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 614 | i915_guc_submit(engine); |
| 615 | } |
Tvrtko Ursulin | 9f7886d | 2017-03-21 10:55:11 +0000 | [diff] [blame] | 616 | spin_unlock_irq(&engine->timeline->lock); |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 617 | } |
| 618 | |
| 619 | static void i915_guc_irq_handler(unsigned long data) |
| 620 | { |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 621 | struct intel_engine_cs * const engine = (struct intel_engine_cs *)data; |
Mika Kuoppala | 7a62cc6 | 2017-09-22 15:43:06 +0300 | [diff] [blame] | 622 | struct intel_engine_execlists * const execlists = &engine->execlists; |
| 623 | struct execlist_port *port = execlists->port; |
Mika Kuoppala | 76e7008 | 2017-09-22 15:43:07 +0300 | [diff] [blame] | 624 | const struct execlist_port * const last_port = |
| 625 | &execlists->port[execlists->port_mask]; |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 626 | struct drm_i915_gem_request *rq; |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 627 | |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 628 | rq = port_request(&port[0]); |
| 629 | while (rq && i915_gem_request_completed(rq)) { |
| 630 | trace_i915_gem_request_out(rq); |
| 631 | i915_gem_request_put(rq); |
| 632 | |
Mika Kuoppala | 7a62cc6 | 2017-09-22 15:43:06 +0300 | [diff] [blame] | 633 | execlists_port_complete(execlists, port); |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 634 | |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 635 | rq = port_request(&port[0]); |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 636 | } |
Chris Wilson | 4a118ec | 2017-10-23 22:32:36 +0100 | [diff] [blame] | 637 | if (!rq) |
| 638 | execlists_clear_active(execlists, EXECLISTS_ACTIVE_USER); |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 639 | |
Mika Kuoppala | 76e7008 | 2017-09-22 15:43:07 +0300 | [diff] [blame] | 640 | if (!port_isset(last_port)) |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 641 | i915_guc_dequeue(engine); |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 642 | } |
| 643 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 644 | /* |
| 645 | * Everything below here is concerned with setup & teardown, and is |
| 646 | * therefore not part of the somewhat time-critical batch-submission |
| 647 | * path of i915_guc_submit() above. |
| 648 | */ |
| 649 | |
Dave Gordon | 84b7f88 | 2016-08-09 15:19:20 +0100 | [diff] [blame] | 650 | /* Check that a doorbell register is in the expected state */ |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 651 | static bool doorbell_ok(struct intel_guc *guc, u16 db_id) |
Dave Gordon | 84b7f88 | 2016-08-09 15:19:20 +0100 | [diff] [blame] | 652 | { |
| 653 | struct drm_i915_private *dev_priv = guc_to_i915(guc); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 654 | u32 drbregl; |
| 655 | bool valid; |
Dave Gordon | 84b7f88 | 2016-08-09 15:19:20 +0100 | [diff] [blame] | 656 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 657 | GEM_BUG_ON(db_id >= GUC_DOORBELL_INVALID); |
| 658 | |
| 659 | drbregl = I915_READ(GEN8_DRBREGL(db_id)); |
| 660 | valid = drbregl & GEN8_DRB_VALID; |
| 661 | |
| 662 | if (test_bit(db_id, guc->doorbell_bitmap) == valid) |
Dave Gordon | 84b7f88 | 2016-08-09 15:19:20 +0100 | [diff] [blame] | 663 | return true; |
| 664 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 665 | DRM_DEBUG_DRIVER("Doorbell %d has unexpected state (0x%x): valid=%s\n", |
| 666 | db_id, drbregl, yesno(valid)); |
Dave Gordon | 84b7f88 | 2016-08-09 15:19:20 +0100 | [diff] [blame] | 667 | |
| 668 | return false; |
| 669 | } |
| 670 | |
Dave Gordon | 4d75787 | 2016-06-13 17:57:34 +0100 | [diff] [blame] | 671 | /* |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 672 | * If the GuC thinks that the doorbell is unassigned (e.g. because we reset and |
| 673 | * reloaded the GuC FW) we can use this function to tell the GuC to reassign the |
| 674 | * doorbell to the rightful owner. |
| 675 | */ |
| 676 | static int __reset_doorbell(struct i915_guc_client* client, u16 db_id) |
| 677 | { |
| 678 | int err; |
| 679 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 680 | __update_doorbell_desc(client, db_id); |
| 681 | err = __create_doorbell(client); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 682 | if (!err) |
| 683 | err = __destroy_doorbell(client); |
| 684 | |
| 685 | return err; |
| 686 | } |
| 687 | |
| 688 | /* |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 689 | * Set up & tear down each unused doorbell in turn, to ensure that all doorbell |
| 690 | * HW is (re)initialised. For that end, we might have to borrow the first |
| 691 | * client. Also, tell GuC about all the doorbells in use by all clients. |
| 692 | * We do this because the KMD, the GuC and the doorbell HW can easily go out of |
| 693 | * sync (e.g. we can reset the GuC, but not the doorbel HW). |
Dave Gordon | 4d75787 | 2016-06-13 17:57:34 +0100 | [diff] [blame] | 694 | */ |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 695 | static int guc_init_doorbell_hw(struct intel_guc *guc) |
Dave Gordon | 4d75787 | 2016-06-13 17:57:34 +0100 | [diff] [blame] | 696 | { |
Dave Gordon | 4d75787 | 2016-06-13 17:57:34 +0100 | [diff] [blame] | 697 | struct i915_guc_client *client = guc->execbuf_client; |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 698 | bool recreate_first_client = false; |
| 699 | u16 db_id; |
| 700 | int ret; |
Dave Gordon | 4d75787 | 2016-06-13 17:57:34 +0100 | [diff] [blame] | 701 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 702 | /* For unused doorbells, make sure they are disabled */ |
| 703 | for_each_clear_bit(db_id, guc->doorbell_bitmap, GUC_NUM_DOORBELLS) { |
| 704 | if (doorbell_ok(guc, db_id)) |
Dave Gordon | 8888cd0 | 2016-08-09 15:19:19 +0100 | [diff] [blame] | 705 | continue; |
| 706 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 707 | if (has_doorbell(client)) { |
| 708 | /* Borrow execbuf_client (we will recreate it later) */ |
| 709 | destroy_doorbell(client); |
| 710 | recreate_first_client = true; |
| 711 | } |
| 712 | |
| 713 | ret = __reset_doorbell(client, db_id); |
| 714 | WARN(ret, "Doorbell %u reset failed, err %d\n", db_id, ret); |
Dave Gordon | 4d75787 | 2016-06-13 17:57:34 +0100 | [diff] [blame] | 715 | } |
| 716 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 717 | if (recreate_first_client) { |
| 718 | ret = __reserve_doorbell(client); |
| 719 | if (unlikely(ret)) { |
| 720 | DRM_ERROR("Couldn't re-reserve first client db: %d\n", ret); |
| 721 | return ret; |
| 722 | } |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 723 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 724 | __update_doorbell_desc(client, client->doorbell_id); |
| 725 | } |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 726 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 727 | /* Now for every client (and not only execbuf_client) make sure their |
| 728 | * doorbells are known by the GuC */ |
| 729 | //for (client = client_list; client != NULL; client = client->next) |
| 730 | { |
| 731 | ret = __create_doorbell(client); |
| 732 | if (ret) { |
| 733 | DRM_ERROR("Couldn't recreate client %u doorbell: %d\n", |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 734 | client->stage_id, ret); |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 735 | return ret; |
| 736 | } |
| 737 | } |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 738 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 739 | /* Read back & verify all (used & unused) doorbell registers */ |
| 740 | for (db_id = 0; db_id < GUC_NUM_DOORBELLS; ++db_id) |
| 741 | WARN_ON(!doorbell_ok(guc, db_id)); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 742 | |
| 743 | return 0; |
Dave Gordon | 4d75787 | 2016-06-13 17:57:34 +0100 | [diff] [blame] | 744 | } |
| 745 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 746 | /** |
| 747 | * guc_client_alloc() - Allocate an i915_guc_client |
Dave Gordon | 0daf556 | 2016-06-10 18:29:25 +0100 | [diff] [blame] | 748 | * @dev_priv: driver private data structure |
Chris Wilson | ceae531 | 2016-08-17 13:42:42 +0100 | [diff] [blame] | 749 | * @engines: The set of engines to enable for this client |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 750 | * @priority: four levels priority _CRITICAL, _HIGH, _NORMAL and _LOW |
| 751 | * The kernel client to replace ExecList submission is created with |
| 752 | * NORMAL priority. Priority of a client for scheduler can be HIGH, |
| 753 | * while a preemption context can use CRITICAL. |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 754 | * @ctx: the context that owns the client (we use the default render |
| 755 | * context) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 756 | * |
Dave Gordon | 0d92a6a | 2016-04-19 16:08:34 +0100 | [diff] [blame] | 757 | * Return: An i915_guc_client object if success, else NULL. |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 758 | */ |
Dave Gordon | 0daf556 | 2016-06-10 18:29:25 +0100 | [diff] [blame] | 759 | static struct i915_guc_client * |
| 760 | guc_client_alloc(struct drm_i915_private *dev_priv, |
Joonas Lahtinen | faf6548 | 2017-10-06 11:49:40 +0300 | [diff] [blame] | 761 | u32 engines, |
| 762 | u32 priority, |
Dave Gordon | 0daf556 | 2016-06-10 18:29:25 +0100 | [diff] [blame] | 763 | struct i915_gem_context *ctx) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 764 | { |
| 765 | struct i915_guc_client *client; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 766 | struct intel_guc *guc = &dev_priv->guc; |
Chris Wilson | 8b797af | 2016-08-15 10:48:51 +0100 | [diff] [blame] | 767 | struct i915_vma *vma; |
Chris Wilson | 72aa0d8 | 2016-11-02 17:50:47 +0000 | [diff] [blame] | 768 | void *vaddr; |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 769 | int ret; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 770 | |
| 771 | client = kzalloc(sizeof(*client), GFP_KERNEL); |
| 772 | if (!client) |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 773 | return ERR_PTR(-ENOMEM); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 774 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 775 | client->guc = guc; |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 776 | client->owner = ctx; |
Dave Gordon | e02757d | 2016-08-09 15:19:21 +0100 | [diff] [blame] | 777 | client->engines = engines; |
| 778 | client->priority = priority; |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 779 | client->doorbell_id = GUC_DOORBELL_INVALID; |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 780 | spin_lock_init(&client->wq_lock); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 781 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 782 | ret = ida_simple_get(&guc->stage_ids, 0, GUC_MAX_STAGE_DESCRIPTORS, |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 783 | GFP_KERNEL); |
| 784 | if (ret < 0) |
| 785 | goto err_client; |
| 786 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 787 | client->stage_id = ret; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 788 | |
| 789 | /* The first page is doorbell/proc_desc. Two followed pages are wq. */ |
Michal Wajdeczko | f9cda04 | 2017-01-13 17:41:57 +0000 | [diff] [blame] | 790 | vma = intel_guc_allocate_vma(guc, GUC_DB_SIZE + GUC_WQ_SIZE); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 791 | if (IS_ERR(vma)) { |
| 792 | ret = PTR_ERR(vma); |
| 793 | goto err_id; |
| 794 | } |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 795 | |
Dave Gordon | 0d92a6a | 2016-04-19 16:08:34 +0100 | [diff] [blame] | 796 | /* We'll keep just the first (doorbell/proc) page permanently kmap'd. */ |
Chris Wilson | 8b797af | 2016-08-15 10:48:51 +0100 | [diff] [blame] | 797 | client->vma = vma; |
Chris Wilson | 72aa0d8 | 2016-11-02 17:50:47 +0000 | [diff] [blame] | 798 | |
| 799 | vaddr = i915_gem_object_pin_map(vma->obj, I915_MAP_WB); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 800 | if (IS_ERR(vaddr)) { |
| 801 | ret = PTR_ERR(vaddr); |
| 802 | goto err_vma; |
| 803 | } |
Chris Wilson | 72aa0d8 | 2016-11-02 17:50:47 +0000 | [diff] [blame] | 804 | client->vaddr = vaddr; |
Chris Wilson | dadd481 | 2016-09-09 14:11:57 +0100 | [diff] [blame] | 805 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 806 | client->doorbell_offset = __select_cacheline(guc); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 807 | |
| 808 | /* |
| 809 | * Since the doorbell only requires a single cacheline, we can save |
| 810 | * space by putting the application process descriptor in the same |
| 811 | * page. Use the half of the page that doesn't include the doorbell. |
| 812 | */ |
| 813 | if (client->doorbell_offset >= (GUC_DB_SIZE / 2)) |
| 814 | client->proc_desc_offset = 0; |
| 815 | else |
| 816 | client->proc_desc_offset = (GUC_DB_SIZE / 2); |
| 817 | |
Dave Gordon | 7a9347f | 2016-09-12 21:19:37 +0100 | [diff] [blame] | 818 | guc_proc_desc_init(guc, client); |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 819 | guc_stage_desc_init(guc, client); |
Chris Wilson | 4d357af | 2016-11-29 12:10:23 +0000 | [diff] [blame] | 820 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 821 | ret = create_doorbell(client); |
| 822 | if (ret) |
| 823 | goto err_vaddr; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 824 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 825 | DRM_DEBUG_DRIVER("new priority %u client %p for engine(s) 0x%x: stage_id %u\n", |
| 826 | priority, client, client->engines, client->stage_id); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 827 | DRM_DEBUG_DRIVER("doorbell id %u, cacheline offset 0x%lx\n", |
| 828 | client->doorbell_id, client->doorbell_offset); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 829 | |
| 830 | return client; |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 831 | |
| 832 | err_vaddr: |
| 833 | i915_gem_object_unpin_map(client->vma->obj); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 834 | err_vma: |
| 835 | i915_vma_unpin_and_release(&client->vma); |
| 836 | err_id: |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 837 | ida_simple_remove(&guc->stage_ids, client->stage_id); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 838 | err_client: |
| 839 | kfree(client); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 840 | return ERR_PTR(ret); |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 841 | } |
| 842 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 843 | static void guc_client_free(struct i915_guc_client *client) |
| 844 | { |
| 845 | /* |
| 846 | * XXX: wait for any outstanding submissions before freeing memory. |
| 847 | * Be sure to drop any locks |
| 848 | */ |
| 849 | |
| 850 | /* FIXME: in many cases, by the time we get here the GuC has been |
| 851 | * reset, so we cannot destroy the doorbell properly. Ignore the |
| 852 | * error message for now */ |
| 853 | destroy_doorbell(client); |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 854 | guc_stage_desc_fini(client->guc, client); |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 855 | i915_gem_object_unpin_map(client->vma->obj); |
| 856 | i915_vma_unpin_and_release(&client->vma); |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 857 | ida_simple_remove(&client->guc->stage_ids, client->stage_id); |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 858 | kfree(client); |
| 859 | } |
| 860 | |
Oscar Mateo | e9eb803 | 2017-09-12 14:36:35 -0700 | [diff] [blame] | 861 | static void guc_policy_init(struct guc_policy *policy) |
| 862 | { |
| 863 | policy->execution_quantum = POLICY_DEFAULT_EXECUTION_QUANTUM_US; |
| 864 | policy->preemption_time = POLICY_DEFAULT_PREEMPTION_TIME_US; |
| 865 | policy->fault_time = POLICY_DEFAULT_FAULT_TIME_US; |
| 866 | policy->policy_flags = 0; |
| 867 | } |
| 868 | |
Dave Gordon | 7a9347f | 2016-09-12 21:19:37 +0100 | [diff] [blame] | 869 | static void guc_policies_init(struct guc_policies *policies) |
Alex Dai | 463704d | 2015-12-18 12:00:10 -0800 | [diff] [blame] | 870 | { |
| 871 | struct guc_policy *policy; |
| 872 | u32 p, i; |
| 873 | |
Oscar Mateo | e9eb803 | 2017-09-12 14:36:35 -0700 | [diff] [blame] | 874 | policies->dpc_promote_time = POLICY_DEFAULT_DPC_PROMOTE_TIME_US; |
Alex Dai | 463704d | 2015-12-18 12:00:10 -0800 | [diff] [blame] | 875 | policies->max_num_work_items = POLICY_MAX_NUM_WI; |
| 876 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 877 | for (p = 0; p < GUC_CLIENT_PRIORITY_NUM; p++) { |
Alex Dai | 397097b | 2016-01-23 11:58:14 -0800 | [diff] [blame] | 878 | for (i = GUC_RENDER_ENGINE; i < GUC_MAX_ENGINES_NUM; i++) { |
Alex Dai | 463704d | 2015-12-18 12:00:10 -0800 | [diff] [blame] | 879 | policy = &policies->policy[p][i]; |
| 880 | |
Oscar Mateo | e9eb803 | 2017-09-12 14:36:35 -0700 | [diff] [blame] | 881 | guc_policy_init(policy); |
Alex Dai | 463704d | 2015-12-18 12:00:10 -0800 | [diff] [blame] | 882 | } |
| 883 | } |
| 884 | |
| 885 | policies->is_valid = 1; |
| 886 | } |
| 887 | |
Michel Thierry | a922c0c | 2017-09-13 09:56:01 +0100 | [diff] [blame] | 888 | /* |
| 889 | * The first 80 dwords of the register state context, containing the |
| 890 | * execlists and ppgtt registers. |
| 891 | */ |
| 892 | #define LR_HW_CONTEXT_SIZE (80 * sizeof(u32)) |
| 893 | |
Oscar Mateo | 0704df2 | 2017-03-22 10:39:47 -0700 | [diff] [blame] | 894 | static int guc_ads_create(struct intel_guc *guc) |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 895 | { |
| 896 | struct drm_i915_private *dev_priv = guc_to_i915(guc); |
Chris Wilson | 8b797af | 2016-08-15 10:48:51 +0100 | [diff] [blame] | 897 | struct i915_vma *vma; |
Michal Wajdeczko | 16f11f4 | 2017-03-14 13:33:09 +0000 | [diff] [blame] | 898 | struct page *page; |
| 899 | /* The ads obj includes the struct itself and buffers passed to GuC */ |
| 900 | struct { |
| 901 | struct guc_ads ads; |
| 902 | struct guc_policies policies; |
| 903 | struct guc_mmio_reg_state reg_state; |
| 904 | u8 reg_state_buffer[GUC_S3_SAVE_SPACE_PAGES * PAGE_SIZE]; |
| 905 | } __packed *blob; |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 906 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 907 | enum intel_engine_id id; |
Michel Thierry | a922c0c | 2017-09-13 09:56:01 +0100 | [diff] [blame] | 908 | const u32 skipped_offset = LRC_HEADER_PAGES * PAGE_SIZE; |
| 909 | const u32 skipped_size = LRC_PPHWSP_SZ * PAGE_SIZE + LR_HW_CONTEXT_SIZE; |
Michal Wajdeczko | 16f11f4 | 2017-03-14 13:33:09 +0000 | [diff] [blame] | 910 | u32 base; |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 911 | |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 912 | GEM_BUG_ON(guc->ads_vma); |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 913 | |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 914 | vma = intel_guc_allocate_vma(guc, PAGE_ALIGN(sizeof(*blob))); |
| 915 | if (IS_ERR(vma)) |
| 916 | return PTR_ERR(vma); |
| 917 | |
| 918 | guc->ads_vma = vma; |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 919 | |
Chris Wilson | 8b797af | 2016-08-15 10:48:51 +0100 | [diff] [blame] | 920 | page = i915_vma_first_page(vma); |
Michal Wajdeczko | 16f11f4 | 2017-03-14 13:33:09 +0000 | [diff] [blame] | 921 | blob = kmap(page); |
| 922 | |
| 923 | /* GuC scheduling policies */ |
| 924 | guc_policies_init(&blob->policies); |
| 925 | |
| 926 | /* MMIO reg state */ |
| 927 | for_each_engine(engine, dev_priv, id) { |
Oscar Mateo | 35815ea | 2017-03-22 10:39:54 -0700 | [diff] [blame] | 928 | blob->reg_state.white_list[engine->guc_id].mmio_start = |
Michal Wajdeczko | 16f11f4 | 2017-03-14 13:33:09 +0000 | [diff] [blame] | 929 | engine->mmio_base + GUC_MMIO_WHITE_LIST_START; |
| 930 | |
| 931 | /* Nothing to be saved or restored for now. */ |
Oscar Mateo | 35815ea | 2017-03-22 10:39:54 -0700 | [diff] [blame] | 932 | blob->reg_state.white_list[engine->guc_id].count = 0; |
Michal Wajdeczko | 16f11f4 | 2017-03-14 13:33:09 +0000 | [diff] [blame] | 933 | } |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 934 | |
| 935 | /* |
| 936 | * The GuC requires a "Golden Context" when it reinitialises |
| 937 | * engines after a reset. Here we use the Render ring default |
| 938 | * context, which must already exist and be pinned in the GGTT, |
| 939 | * so its address won't change after we've told the GuC where |
Michel Thierry | a922c0c | 2017-09-13 09:56:01 +0100 | [diff] [blame] | 940 | * to find it. Note that we have to skip our header (1 page), |
| 941 | * because our GuC shared data is there. |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 942 | */ |
Michal Wajdeczko | 16f11f4 | 2017-03-14 13:33:09 +0000 | [diff] [blame] | 943 | blob->ads.golden_context_lrca = |
Michel Thierry | a922c0c | 2017-09-13 09:56:01 +0100 | [diff] [blame] | 944 | guc_ggtt_offset(dev_priv->kernel_context->engine[RCS].state) + skipped_offset; |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 945 | |
Michel Thierry | a922c0c | 2017-09-13 09:56:01 +0100 | [diff] [blame] | 946 | /* |
| 947 | * The GuC expects us to exclude the portion of the context image that |
| 948 | * it skips from the size it is to read. It starts reading from after |
| 949 | * the execlist context (so skipping the first page [PPHWSP] and 80 |
| 950 | * dwords). Weird guc is weird. |
| 951 | */ |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 952 | for_each_engine(engine, dev_priv, id) |
Michel Thierry | a922c0c | 2017-09-13 09:56:01 +0100 | [diff] [blame] | 953 | blob->ads.eng_state_size[engine->guc_id] = engine->context_size - skipped_size; |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 954 | |
Michal Wajdeczko | 16f11f4 | 2017-03-14 13:33:09 +0000 | [diff] [blame] | 955 | base = guc_ggtt_offset(vma); |
| 956 | blob->ads.scheduler_policies = base + ptr_offset(blob, policies); |
| 957 | blob->ads.reg_state_buffer = base + ptr_offset(blob, reg_state_buffer); |
| 958 | blob->ads.reg_state_addr = base + ptr_offset(blob, reg_state); |
Alex Dai | 5c148e0 | 2015-12-18 12:00:11 -0800 | [diff] [blame] | 959 | |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 960 | kunmap(page); |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 961 | |
| 962 | return 0; |
| 963 | } |
| 964 | |
Oscar Mateo | 0704df2 | 2017-03-22 10:39:47 -0700 | [diff] [blame] | 965 | static void guc_ads_destroy(struct intel_guc *guc) |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 966 | { |
| 967 | i915_vma_unpin_and_release(&guc->ads_vma); |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 968 | } |
| 969 | |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 970 | /* |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 971 | * Set up the memory resources to be shared with the GuC (via the GGTT) |
| 972 | * at firmware loading time. |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 973 | */ |
Dave Gordon | beffa51 | 2016-06-10 18:29:26 +0100 | [diff] [blame] | 974 | int i915_guc_submission_init(struct drm_i915_private *dev_priv) |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 975 | { |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 976 | struct intel_guc *guc = &dev_priv->guc; |
Chris Wilson | 8b797af | 2016-08-15 10:48:51 +0100 | [diff] [blame] | 977 | struct i915_vma *vma; |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 978 | void *vaddr; |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 979 | int ret; |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 980 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 981 | if (guc->stage_desc_pool) |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 982 | return 0; |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 983 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 984 | vma = intel_guc_allocate_vma(guc, |
| 985 | PAGE_ALIGN(sizeof(struct guc_stage_desc) * |
| 986 | GUC_MAX_STAGE_DESCRIPTORS)); |
Chris Wilson | 8b797af | 2016-08-15 10:48:51 +0100 | [diff] [blame] | 987 | if (IS_ERR(vma)) |
| 988 | return PTR_ERR(vma); |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 989 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 990 | guc->stage_desc_pool = vma; |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 991 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 992 | vaddr = i915_gem_object_pin_map(guc->stage_desc_pool->obj, I915_MAP_WB); |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 993 | if (IS_ERR(vaddr)) { |
| 994 | ret = PTR_ERR(vaddr); |
| 995 | goto err_vma; |
| 996 | } |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 997 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 998 | guc->stage_desc_pool_vaddr = vaddr; |
Oscar Mateo | 73b0553 | 2017-03-22 10:39:45 -0700 | [diff] [blame] | 999 | |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 1000 | ret = intel_guc_log_create(guc); |
| 1001 | if (ret < 0) |
| 1002 | goto err_vaddr; |
| 1003 | |
Oscar Mateo | 0704df2 | 2017-03-22 10:39:47 -0700 | [diff] [blame] | 1004 | ret = guc_ads_create(guc); |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 1005 | if (ret < 0) |
| 1006 | goto err_log; |
| 1007 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 1008 | ida_init(&guc->stage_ids); |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 1009 | |
Alex Dai | bac427f | 2015-08-12 15:43:39 +0100 | [diff] [blame] | 1010 | return 0; |
Chris Wilson | 4d357af | 2016-11-29 12:10:23 +0000 | [diff] [blame] | 1011 | |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 1012 | err_log: |
| 1013 | intel_guc_log_destroy(guc); |
| 1014 | err_vaddr: |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 1015 | i915_gem_object_unpin_map(guc->stage_desc_pool->obj); |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 1016 | err_vma: |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 1017 | i915_vma_unpin_and_release(&guc->stage_desc_pool); |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 1018 | return ret; |
| 1019 | } |
| 1020 | |
| 1021 | void i915_guc_submission_fini(struct drm_i915_private *dev_priv) |
| 1022 | { |
| 1023 | struct intel_guc *guc = &dev_priv->guc; |
| 1024 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 1025 | ida_destroy(&guc->stage_ids); |
Oscar Mateo | 0704df2 | 2017-03-22 10:39:47 -0700 | [diff] [blame] | 1026 | guc_ads_destroy(guc); |
Oscar Mateo | 3950bf3 | 2017-03-22 10:39:46 -0700 | [diff] [blame] | 1027 | intel_guc_log_destroy(guc); |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 1028 | i915_gem_object_unpin_map(guc->stage_desc_pool->obj); |
| 1029 | i915_vma_unpin_and_release(&guc->stage_desc_pool); |
Chris Wilson | 4d357af | 2016-11-29 12:10:23 +0000 | [diff] [blame] | 1030 | } |
| 1031 | |
Tvrtko Ursulin | cbf4b77 | 2017-03-09 13:20:04 +0000 | [diff] [blame] | 1032 | static void guc_interrupts_capture(struct drm_i915_private *dev_priv) |
| 1033 | { |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1034 | struct intel_rps *rps = &dev_priv->gt_pm.rps; |
Tvrtko Ursulin | cbf4b77 | 2017-03-09 13:20:04 +0000 | [diff] [blame] | 1035 | struct intel_engine_cs *engine; |
| 1036 | enum intel_engine_id id; |
| 1037 | int irqs; |
| 1038 | |
| 1039 | /* tell all command streamers to forward interrupts (but not vblank) to GuC */ |
| 1040 | irqs = _MASKED_BIT_ENABLE(GFX_INTERRUPT_STEERING); |
| 1041 | for_each_engine(engine, dev_priv, id) |
| 1042 | I915_WRITE(RING_MODE_GEN7(engine), irqs); |
| 1043 | |
| 1044 | /* route USER_INTERRUPT to Host, all others are sent to GuC. */ |
| 1045 | irqs = GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT | |
| 1046 | GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT; |
| 1047 | /* These three registers have the same bit definitions */ |
| 1048 | I915_WRITE(GUC_BCS_RCS_IER, ~irqs); |
| 1049 | I915_WRITE(GUC_VCS2_VCS1_IER, ~irqs); |
| 1050 | I915_WRITE(GUC_WD_VECS_IER, ~irqs); |
Sagar Arun Kamble | 1f3b1fd | 2017-03-11 08:07:01 +0530 | [diff] [blame] | 1051 | |
| 1052 | /* |
| 1053 | * The REDIRECT_TO_GUC bit of the PMINTRMSK register directs all |
| 1054 | * (unmasked) PM interrupts to the GuC. All other bits of this |
| 1055 | * register *disable* generation of a specific interrupt. |
| 1056 | * |
| 1057 | * 'pm_intrmsk_mbz' indicates bits that are NOT to be set when |
| 1058 | * writing to the PM interrupt mask register, i.e. interrupts |
| 1059 | * that must not be disabled. |
| 1060 | * |
| 1061 | * If the GuC is handling these interrupts, then we must not let |
| 1062 | * the PM code disable ANY interrupt that the GuC is expecting. |
| 1063 | * So for each ENABLED (0) bit in this register, we must SET the |
| 1064 | * bit in pm_intrmsk_mbz so that it's left enabled for the GuC. |
| 1065 | * GuC needs ARAT expired interrupt unmasked hence it is set in |
| 1066 | * pm_intrmsk_mbz. |
| 1067 | * |
| 1068 | * Here we CLEAR REDIRECT_TO_GUC bit in pm_intrmsk_mbz, which will |
| 1069 | * result in the register bit being left SET! |
| 1070 | */ |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1071 | rps->pm_intrmsk_mbz |= ARAT_EXPIRED_INTRMSK; |
| 1072 | rps->pm_intrmsk_mbz &= ~GEN8_PMINTR_DISABLE_REDIRECT_TO_GUC; |
Tvrtko Ursulin | cbf4b77 | 2017-03-09 13:20:04 +0000 | [diff] [blame] | 1073 | } |
| 1074 | |
Oscar Mateo | 618ef00 | 2017-03-22 10:39:55 -0700 | [diff] [blame] | 1075 | static void guc_interrupts_release(struct drm_i915_private *dev_priv) |
| 1076 | { |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1077 | struct intel_rps *rps = &dev_priv->gt_pm.rps; |
Oscar Mateo | 618ef00 | 2017-03-22 10:39:55 -0700 | [diff] [blame] | 1078 | struct intel_engine_cs *engine; |
| 1079 | enum intel_engine_id id; |
| 1080 | int irqs; |
| 1081 | |
| 1082 | /* |
| 1083 | * tell all command streamers NOT to forward interrupts or vblank |
| 1084 | * to GuC. |
| 1085 | */ |
| 1086 | irqs = _MASKED_FIELD(GFX_FORWARD_VBLANK_MASK, GFX_FORWARD_VBLANK_NEVER); |
| 1087 | irqs |= _MASKED_BIT_DISABLE(GFX_INTERRUPT_STEERING); |
| 1088 | for_each_engine(engine, dev_priv, id) |
| 1089 | I915_WRITE(RING_MODE_GEN7(engine), irqs); |
| 1090 | |
| 1091 | /* route all GT interrupts to the host */ |
| 1092 | I915_WRITE(GUC_BCS_RCS_IER, 0); |
| 1093 | I915_WRITE(GUC_VCS2_VCS1_IER, 0); |
| 1094 | I915_WRITE(GUC_WD_VECS_IER, 0); |
| 1095 | |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1096 | rps->pm_intrmsk_mbz |= GEN8_PMINTR_DISABLE_REDIRECT_TO_GUC; |
| 1097 | rps->pm_intrmsk_mbz &= ~ARAT_EXPIRED_INTRMSK; |
Oscar Mateo | 618ef00 | 2017-03-22 10:39:55 -0700 | [diff] [blame] | 1098 | } |
| 1099 | |
Dave Gordon | beffa51 | 2016-06-10 18:29:26 +0100 | [diff] [blame] | 1100 | int i915_guc_submission_enable(struct drm_i915_private *dev_priv) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 1101 | { |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 1102 | struct intel_guc *guc = &dev_priv->guc; |
Chris Wilson | 4d357af | 2016-11-29 12:10:23 +0000 | [diff] [blame] | 1103 | struct i915_guc_client *client = guc->execbuf_client; |
Chris Wilson | ddd66c5 | 2016-08-02 22:50:31 +0100 | [diff] [blame] | 1104 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1105 | enum intel_engine_id id; |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 1106 | int err; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 1107 | |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 1108 | /* |
| 1109 | * We're using GuC work items for submitting work through GuC. Since |
| 1110 | * we're coalescing multiple requests from a single context into a |
| 1111 | * single work item prior to assigning it to execlist_port, we can |
| 1112 | * never have more work items than the total number of ports (for all |
| 1113 | * engines). The GuC firmware is controlling the HEAD of work queue, |
| 1114 | * and it is guaranteed that it will remove the work item from the |
| 1115 | * queue before our request is completed. |
| 1116 | */ |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 1117 | BUILD_BUG_ON(ARRAY_SIZE(engine->execlists.port) * |
Michał Winiarski | 85e2fe6 | 2017-09-14 10:32:13 +0200 | [diff] [blame] | 1118 | sizeof(struct guc_wq_item) * |
| 1119 | I915_NUM_ENGINES > GUC_WQ_SIZE); |
| 1120 | |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 1121 | if (!client) { |
| 1122 | client = guc_client_alloc(dev_priv, |
| 1123 | INTEL_INFO(dev_priv)->ring_mask, |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 1124 | GUC_CLIENT_PRIORITY_KMD_NORMAL, |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 1125 | dev_priv->kernel_context); |
| 1126 | if (IS_ERR(client)) { |
| 1127 | DRM_ERROR("Failed to create GuC client for execbuf!\n"); |
| 1128 | return PTR_ERR(client); |
| 1129 | } |
| 1130 | |
| 1131 | guc->execbuf_client = client; |
| 1132 | } |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 1133 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 1134 | err = intel_guc_sample_forcewake(guc); |
| 1135 | if (err) |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 1136 | goto err_execbuf_client; |
Chris Wilson | 4d357af | 2016-11-29 12:10:23 +0000 | [diff] [blame] | 1137 | |
| 1138 | guc_reset_wq(client); |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 1139 | |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 1140 | err = guc_init_doorbell_hw(guc); |
| 1141 | if (err) |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 1142 | goto err_execbuf_client; |
Alex Dai | f5d3c3e | 2015-08-18 14:34:47 -0700 | [diff] [blame] | 1143 | |
Chris Wilson | ddd66c5 | 2016-08-02 22:50:31 +0100 | [diff] [blame] | 1144 | /* Take over from manual control of ELSP (execlists) */ |
Tvrtko Ursulin | cbf4b77 | 2017-03-09 13:20:04 +0000 | [diff] [blame] | 1145 | guc_interrupts_capture(dev_priv); |
| 1146 | |
Tvrtko Ursulin | cbf4b77 | 2017-03-09 13:20:04 +0000 | [diff] [blame] | 1147 | for_each_engine(engine, dev_priv, id) { |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 1148 | struct intel_engine_execlists * const execlists = &engine->execlists; |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 1149 | /* The tasklet was initialised by execlists, and may be in |
| 1150 | * a state of flux (across a reset) and so we just want to |
| 1151 | * take over the callback without changing any other state |
| 1152 | * in the tasklet. |
| 1153 | */ |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 1154 | execlists->irq_tasklet.func = i915_guc_irq_handler; |
Chris Wilson | 31de735 | 2017-03-16 12:56:18 +0000 | [diff] [blame] | 1155 | clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted); |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 1156 | tasklet_schedule(&execlists->irq_tasklet); |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1157 | } |
| 1158 | |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 1159 | return 0; |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 1160 | |
| 1161 | err_execbuf_client: |
| 1162 | guc_client_free(guc->execbuf_client); |
| 1163 | guc->execbuf_client = NULL; |
| 1164 | return err; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 1165 | } |
| 1166 | |
Dave Gordon | beffa51 | 2016-06-10 18:29:26 +0100 | [diff] [blame] | 1167 | void i915_guc_submission_disable(struct drm_i915_private *dev_priv) |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 1168 | { |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 1169 | struct intel_guc *guc = &dev_priv->guc; |
| 1170 | |
Sagar Arun Kamble | 7762ebb | 2017-03-11 08:06:59 +0530 | [diff] [blame] | 1171 | guc_interrupts_release(dev_priv); |
| 1172 | |
Chris Wilson | ddd66c5 | 2016-08-02 22:50:31 +0100 | [diff] [blame] | 1173 | /* Revert back to manual ELSP submission */ |
Chris Wilson | ff44ad5 | 2017-03-16 17:13:03 +0000 | [diff] [blame] | 1174 | intel_engines_reset_default_submission(dev_priv); |
Oscar Mateo | 397fce8 | 2017-03-22 10:39:52 -0700 | [diff] [blame] | 1175 | |
| 1176 | guc_client_free(guc->execbuf_client); |
| 1177 | guc->execbuf_client = NULL; |
Dave Gordon | 44a28b1 | 2015-08-12 15:43:41 +0100 | [diff] [blame] | 1178 | } |