12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136 |
- /*
- * Copyright © 2016 Intel Corporation
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice (including the next
- * paragraph) shall be included in all copies or substantial portions of the
- * Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- *
- */
- #include <linux/kthread.h>
- #include "../i915_selftest.h"
- #include "mock_context.h"
- #include "mock_drm.h"
- struct hang {
- struct drm_i915_private *i915;
- struct drm_i915_gem_object *hws;
- struct drm_i915_gem_object *obj;
- struct i915_gem_context *ctx;
- u32 *seqno;
- u32 *batch;
- };
- static int hang_init(struct hang *h, struct drm_i915_private *i915)
- {
- void *vaddr;
- int err;
- memset(h, 0, sizeof(*h));
- h->i915 = i915;
- h->ctx = kernel_context(i915);
- if (IS_ERR(h->ctx))
- return PTR_ERR(h->ctx);
- h->hws = i915_gem_object_create_internal(i915, PAGE_SIZE);
- if (IS_ERR(h->hws)) {
- err = PTR_ERR(h->hws);
- goto err_ctx;
- }
- h->obj = i915_gem_object_create_internal(i915, PAGE_SIZE);
- if (IS_ERR(h->obj)) {
- err = PTR_ERR(h->obj);
- goto err_hws;
- }
- i915_gem_object_set_cache_level(h->hws, I915_CACHE_LLC);
- vaddr = i915_gem_object_pin_map(h->hws, I915_MAP_WB);
- if (IS_ERR(vaddr)) {
- err = PTR_ERR(vaddr);
- goto err_obj;
- }
- h->seqno = memset(vaddr, 0xff, PAGE_SIZE);
- vaddr = i915_gem_object_pin_map(h->obj,
- HAS_LLC(i915) ? I915_MAP_WB : I915_MAP_WC);
- if (IS_ERR(vaddr)) {
- err = PTR_ERR(vaddr);
- goto err_unpin_hws;
- }
- h->batch = vaddr;
- return 0;
- err_unpin_hws:
- i915_gem_object_unpin_map(h->hws);
- err_obj:
- i915_gem_object_put(h->obj);
- err_hws:
- i915_gem_object_put(h->hws);
- err_ctx:
- kernel_context_close(h->ctx);
- return err;
- }
- static u64 hws_address(const struct i915_vma *hws,
- const struct i915_request *rq)
- {
- return hws->node.start + offset_in_page(sizeof(u32)*rq->fence.context);
- }
- static int emit_recurse_batch(struct hang *h,
- struct i915_request *rq)
- {
- struct drm_i915_private *i915 = h->i915;
- struct i915_address_space *vm = rq->ctx->ppgtt ? &rq->ctx->ppgtt->base : &i915->ggtt.base;
- struct i915_vma *hws, *vma;
- unsigned int flags;
- u32 *batch;
- int err;
- vma = i915_vma_instance(h->obj, vm, NULL);
- if (IS_ERR(vma))
- return PTR_ERR(vma);
- hws = i915_vma_instance(h->hws, vm, NULL);
- if (IS_ERR(hws))
- return PTR_ERR(hws);
- err = i915_vma_pin(vma, 0, 0, PIN_USER);
- if (err)
- return err;
- err = i915_vma_pin(hws, 0, 0, PIN_USER);
- if (err)
- goto unpin_vma;
- i915_vma_move_to_active(vma, rq, 0);
- if (!i915_gem_object_has_active_reference(vma->obj)) {
- i915_gem_object_get(vma->obj);
- i915_gem_object_set_active_reference(vma->obj);
- }
- i915_vma_move_to_active(hws, rq, 0);
- if (!i915_gem_object_has_active_reference(hws->obj)) {
- i915_gem_object_get(hws->obj);
- i915_gem_object_set_active_reference(hws->obj);
- }
- batch = h->batch;
- if (INTEL_GEN(i915) >= 8) {
- *batch++ = MI_STORE_DWORD_IMM_GEN4;
- *batch++ = lower_32_bits(hws_address(hws, rq));
- *batch++ = upper_32_bits(hws_address(hws, rq));
- *batch++ = rq->fence.seqno;
- *batch++ = MI_ARB_CHECK;
- memset(batch, 0, 1024);
- batch += 1024 / sizeof(*batch);
- *batch++ = MI_ARB_CHECK;
- *batch++ = MI_BATCH_BUFFER_START | 1 << 8 | 1;
- *batch++ = lower_32_bits(vma->node.start);
- *batch++ = upper_32_bits(vma->node.start);
- } else if (INTEL_GEN(i915) >= 6) {
- *batch++ = MI_STORE_DWORD_IMM_GEN4;
- *batch++ = 0;
- *batch++ = lower_32_bits(hws_address(hws, rq));
- *batch++ = rq->fence.seqno;
- *batch++ = MI_ARB_CHECK;
- memset(batch, 0, 1024);
- batch += 1024 / sizeof(*batch);
- *batch++ = MI_ARB_CHECK;
- *batch++ = MI_BATCH_BUFFER_START | 1 << 8;
- *batch++ = lower_32_bits(vma->node.start);
- } else if (INTEL_GEN(i915) >= 4) {
- *batch++ = MI_STORE_DWORD_IMM_GEN4 | 1 << 22;
- *batch++ = 0;
- *batch++ = lower_32_bits(hws_address(hws, rq));
- *batch++ = rq->fence.seqno;
- *batch++ = MI_ARB_CHECK;
- memset(batch, 0, 1024);
- batch += 1024 / sizeof(*batch);
- *batch++ = MI_ARB_CHECK;
- *batch++ = MI_BATCH_BUFFER_START | 2 << 6;
- *batch++ = lower_32_bits(vma->node.start);
- } else {
- *batch++ = MI_STORE_DWORD_IMM;
- *batch++ = lower_32_bits(hws_address(hws, rq));
- *batch++ = rq->fence.seqno;
- *batch++ = MI_ARB_CHECK;
- memset(batch, 0, 1024);
- batch += 1024 / sizeof(*batch);
- *batch++ = MI_ARB_CHECK;
- *batch++ = MI_BATCH_BUFFER_START | 2 << 6 | 1;
- *batch++ = lower_32_bits(vma->node.start);
- }
- *batch++ = MI_BATCH_BUFFER_END; /* not reached */
- i915_gem_chipset_flush(h->i915);
- flags = 0;
- if (INTEL_GEN(vm->i915) <= 5)
- flags |= I915_DISPATCH_SECURE;
- err = rq->engine->emit_bb_start(rq, vma->node.start, PAGE_SIZE, flags);
- i915_vma_unpin(hws);
- unpin_vma:
- i915_vma_unpin(vma);
- return err;
- }
- static struct i915_request *
- hang_create_request(struct hang *h, struct intel_engine_cs *engine)
- {
- struct i915_request *rq;
- int err;
- if (i915_gem_object_is_active(h->obj)) {
- struct drm_i915_gem_object *obj;
- void *vaddr;
- obj = i915_gem_object_create_internal(h->i915, PAGE_SIZE);
- if (IS_ERR(obj))
- return ERR_CAST(obj);
- vaddr = i915_gem_object_pin_map(obj,
- HAS_LLC(h->i915) ? I915_MAP_WB : I915_MAP_WC);
- if (IS_ERR(vaddr)) {
- i915_gem_object_put(obj);
- return ERR_CAST(vaddr);
- }
- i915_gem_object_unpin_map(h->obj);
- i915_gem_object_put(h->obj);
- h->obj = obj;
- h->batch = vaddr;
- }
- rq = i915_request_alloc(engine, h->ctx);
- if (IS_ERR(rq))
- return rq;
- err = emit_recurse_batch(h, rq);
- if (err) {
- __i915_request_add(rq, false);
- return ERR_PTR(err);
- }
- return rq;
- }
- static u32 hws_seqno(const struct hang *h, const struct i915_request *rq)
- {
- return READ_ONCE(h->seqno[rq->fence.context % (PAGE_SIZE/sizeof(u32))]);
- }
- struct wedge_me {
- struct delayed_work work;
- struct drm_i915_private *i915;
- const void *symbol;
- };
- static void wedge_me(struct work_struct *work)
- {
- struct wedge_me *w = container_of(work, typeof(*w), work.work);
- pr_err("%pS timed out, cancelling all further testing.\n",
- w->symbol);
- i915_gem_set_wedged(w->i915);
- }
- static void __init_wedge(struct wedge_me *w,
- struct drm_i915_private *i915,
- long timeout,
- const void *symbol)
- {
- w->i915 = i915;
- w->symbol = symbol;
- INIT_DELAYED_WORK_ONSTACK(&w->work, wedge_me);
- schedule_delayed_work(&w->work, timeout);
- }
- static void __fini_wedge(struct wedge_me *w)
- {
- cancel_delayed_work_sync(&w->work);
- destroy_delayed_work_on_stack(&w->work);
- w->i915 = NULL;
- }
- #define wedge_on_timeout(W, DEV, TIMEOUT) \
- for (__init_wedge((W), (DEV), (TIMEOUT), __builtin_return_address(0)); \
- (W)->i915; \
- __fini_wedge((W)))
- static noinline int
- flush_test(struct drm_i915_private *i915, unsigned int flags)
- {
- struct wedge_me w;
- cond_resched();
- wedge_on_timeout(&w, i915, HZ)
- i915_gem_wait_for_idle(i915, flags);
- return i915_terminally_wedged(&i915->gpu_error) ? -EIO : 0;
- }
- static void hang_fini(struct hang *h)
- {
- *h->batch = MI_BATCH_BUFFER_END;
- i915_gem_chipset_flush(h->i915);
- i915_gem_object_unpin_map(h->obj);
- i915_gem_object_put(h->obj);
- i915_gem_object_unpin_map(h->hws);
- i915_gem_object_put(h->hws);
- kernel_context_close(h->ctx);
- flush_test(h->i915, I915_WAIT_LOCKED);
- }
- static bool wait_for_hang(struct hang *h, struct i915_request *rq)
- {
- return !(wait_for_us(i915_seqno_passed(hws_seqno(h, rq),
- rq->fence.seqno),
- 10) &&
- wait_for(i915_seqno_passed(hws_seqno(h, rq),
- rq->fence.seqno),
- 1000));
- }
- static int igt_hang_sanitycheck(void *arg)
- {
- struct drm_i915_private *i915 = arg;
- struct i915_request *rq;
- struct intel_engine_cs *engine;
- enum intel_engine_id id;
- struct hang h;
- int err;
- /* Basic check that we can execute our hanging batch */
- mutex_lock(&i915->drm.struct_mutex);
- err = hang_init(&h, i915);
- if (err)
- goto unlock;
- for_each_engine(engine, i915, id) {
- long timeout;
- if (!intel_engine_can_store_dword(engine))
- continue;
- rq = hang_create_request(&h, engine);
- if (IS_ERR(rq)) {
- err = PTR_ERR(rq);
- pr_err("Failed to create request for %s, err=%d\n",
- engine->name, err);
- goto fini;
- }
- i915_request_get(rq);
- *h.batch = MI_BATCH_BUFFER_END;
- i915_gem_chipset_flush(i915);
- __i915_request_add(rq, true);
- timeout = i915_request_wait(rq,
- I915_WAIT_LOCKED,
- MAX_SCHEDULE_TIMEOUT);
- i915_request_put(rq);
- if (timeout < 0) {
- err = timeout;
- pr_err("Wait for request failed on %s, err=%d\n",
- engine->name, err);
- goto fini;
- }
- }
- fini:
- hang_fini(&h);
- unlock:
- mutex_unlock(&i915->drm.struct_mutex);
- return err;
- }
- static void global_reset_lock(struct drm_i915_private *i915)
- {
- struct intel_engine_cs *engine;
- enum intel_engine_id id;
- pr_debug("%s: current gpu_error=%08lx\n",
- __func__, i915->gpu_error.flags);
- while (test_and_set_bit(I915_RESET_BACKOFF, &i915->gpu_error.flags))
- wait_event(i915->gpu_error.reset_queue,
- !test_bit(I915_RESET_BACKOFF,
- &i915->gpu_error.flags));
- for_each_engine(engine, i915, id) {
- while (test_and_set_bit(I915_RESET_ENGINE + id,
- &i915->gpu_error.flags))
- wait_on_bit(&i915->gpu_error.flags,
- I915_RESET_ENGINE + id,
- TASK_UNINTERRUPTIBLE);
- }
- }
- static void global_reset_unlock(struct drm_i915_private *i915)
- {
- struct intel_engine_cs *engine;
- enum intel_engine_id id;
- for_each_engine(engine, i915, id)
- clear_bit(I915_RESET_ENGINE + id, &i915->gpu_error.flags);
- clear_bit(I915_RESET_BACKOFF, &i915->gpu_error.flags);
- wake_up_all(&i915->gpu_error.reset_queue);
- }
- static int igt_global_reset(void *arg)
- {
- struct drm_i915_private *i915 = arg;
- unsigned int reset_count;
- int err = 0;
- /* Check that we can issue a global GPU reset */
- global_reset_lock(i915);
- set_bit(I915_RESET_HANDOFF, &i915->gpu_error.flags);
- mutex_lock(&i915->drm.struct_mutex);
- reset_count = i915_reset_count(&i915->gpu_error);
- i915_reset(i915, I915_RESET_QUIET);
- if (i915_reset_count(&i915->gpu_error) == reset_count) {
- pr_err("No GPU reset recorded!\n");
- err = -EINVAL;
- }
- mutex_unlock(&i915->drm.struct_mutex);
- GEM_BUG_ON(test_bit(I915_RESET_HANDOFF, &i915->gpu_error.flags));
- global_reset_unlock(i915);
- if (i915_terminally_wedged(&i915->gpu_error))
- err = -EIO;
- return err;
- }
- static int __igt_reset_engine(struct drm_i915_private *i915, bool active)
- {
- struct intel_engine_cs *engine;
- enum intel_engine_id id;
- struct hang h;
- int err = 0;
- /* Check that we can issue an engine reset on an idle engine (no-op) */
- if (!intel_has_reset_engine(i915))
- return 0;
- if (active) {
- mutex_lock(&i915->drm.struct_mutex);
- err = hang_init(&h, i915);
- mutex_unlock(&i915->drm.struct_mutex);
- if (err)
- return err;
- }
- for_each_engine(engine, i915, id) {
- unsigned int reset_count, reset_engine_count;
- IGT_TIMEOUT(end_time);
- if (active && !intel_engine_can_store_dword(engine))
- continue;
- reset_count = i915_reset_count(&i915->gpu_error);
- reset_engine_count = i915_reset_engine_count(&i915->gpu_error,
- engine);
- set_bit(I915_RESET_ENGINE + id, &i915->gpu_error.flags);
- do {
- if (active) {
- struct i915_request *rq;
- mutex_lock(&i915->drm.struct_mutex);
- rq = hang_create_request(&h, engine);
- if (IS_ERR(rq)) {
- err = PTR_ERR(rq);
- mutex_unlock(&i915->drm.struct_mutex);
- break;
- }
- i915_request_get(rq);
- __i915_request_add(rq, true);
- mutex_unlock(&i915->drm.struct_mutex);
- if (!wait_for_hang(&h, rq)) {
- struct drm_printer p = drm_info_printer(i915->drm.dev);
- pr_err("%s: Failed to start request %x, at %x\n",
- __func__, rq->fence.seqno, hws_seqno(&h, rq));
- intel_engine_dump(engine, &p,
- "%s\n", engine->name);
- i915_request_put(rq);
- err = -EIO;
- break;
- }
- i915_request_put(rq);
- }
- engine->hangcheck.stalled = true;
- engine->hangcheck.seqno =
- intel_engine_get_seqno(engine);
- err = i915_reset_engine(engine, I915_RESET_QUIET);
- if (err) {
- pr_err("i915_reset_engine failed\n");
- break;
- }
- if (i915_reset_count(&i915->gpu_error) != reset_count) {
- pr_err("Full GPU reset recorded! (engine reset expected)\n");
- err = -EINVAL;
- break;
- }
- reset_engine_count += active;
- if (i915_reset_engine_count(&i915->gpu_error, engine) !=
- reset_engine_count) {
- pr_err("%s engine reset %srecorded!\n",
- engine->name, active ? "not " : "");
- err = -EINVAL;
- break;
- }
- engine->hangcheck.stalled = false;
- } while (time_before(jiffies, end_time));
- clear_bit(I915_RESET_ENGINE + id, &i915->gpu_error.flags);
- if (err)
- break;
- err = flush_test(i915, 0);
- if (err)
- break;
- }
- if (i915_terminally_wedged(&i915->gpu_error))
- err = -EIO;
- if (active) {
- mutex_lock(&i915->drm.struct_mutex);
- hang_fini(&h);
- mutex_unlock(&i915->drm.struct_mutex);
- }
- return err;
- }
- static int igt_reset_idle_engine(void *arg)
- {
- return __igt_reset_engine(arg, false);
- }
- static int igt_reset_active_engine(void *arg)
- {
- return __igt_reset_engine(arg, true);
- }
- static int active_engine(void *data)
- {
- struct intel_engine_cs *engine = data;
- struct i915_request *rq[2] = {};
- struct i915_gem_context *ctx[2];
- struct drm_file *file;
- unsigned long count = 0;
- int err = 0;
- file = mock_file(engine->i915);
- if (IS_ERR(file))
- return PTR_ERR(file);
- mutex_lock(&engine->i915->drm.struct_mutex);
- ctx[0] = live_context(engine->i915, file);
- mutex_unlock(&engine->i915->drm.struct_mutex);
- if (IS_ERR(ctx[0])) {
- err = PTR_ERR(ctx[0]);
- goto err_file;
- }
- mutex_lock(&engine->i915->drm.struct_mutex);
- ctx[1] = live_context(engine->i915, file);
- mutex_unlock(&engine->i915->drm.struct_mutex);
- if (IS_ERR(ctx[1])) {
- err = PTR_ERR(ctx[1]);
- i915_gem_context_put(ctx[0]);
- goto err_file;
- }
- while (!kthread_should_stop()) {
- unsigned int idx = count++ & 1;
- struct i915_request *old = rq[idx];
- struct i915_request *new;
- mutex_lock(&engine->i915->drm.struct_mutex);
- new = i915_request_alloc(engine, ctx[idx]);
- if (IS_ERR(new)) {
- mutex_unlock(&engine->i915->drm.struct_mutex);
- err = PTR_ERR(new);
- break;
- }
- rq[idx] = i915_request_get(new);
- i915_request_add(new);
- mutex_unlock(&engine->i915->drm.struct_mutex);
- if (old) {
- i915_request_wait(old, 0, MAX_SCHEDULE_TIMEOUT);
- i915_request_put(old);
- }
- }
- for (count = 0; count < ARRAY_SIZE(rq); count++)
- i915_request_put(rq[count]);
- err_file:
- mock_file_free(engine->i915, file);
- return err;
- }
- static int __igt_reset_engine_others(struct drm_i915_private *i915,
- bool active)
- {
- struct intel_engine_cs *engine, *other;
- enum intel_engine_id id, tmp;
- struct hang h;
- int err = 0;
- /* Check that issuing a reset on one engine does not interfere
- * with any other engine.
- */
- if (!intel_has_reset_engine(i915))
- return 0;
- if (active) {
- mutex_lock(&i915->drm.struct_mutex);
- err = hang_init(&h, i915);
- mutex_unlock(&i915->drm.struct_mutex);
- if (err)
- return err;
- }
- for_each_engine(engine, i915, id) {
- struct task_struct *threads[I915_NUM_ENGINES] = {};
- unsigned long resets[I915_NUM_ENGINES];
- unsigned long global = i915_reset_count(&i915->gpu_error);
- unsigned long count = 0;
- IGT_TIMEOUT(end_time);
- if (active && !intel_engine_can_store_dword(engine))
- continue;
- memset(threads, 0, sizeof(threads));
- for_each_engine(other, i915, tmp) {
- struct task_struct *tsk;
- resets[tmp] = i915_reset_engine_count(&i915->gpu_error,
- other);
- if (other == engine)
- continue;
- tsk = kthread_run(active_engine, other,
- "igt/%s", other->name);
- if (IS_ERR(tsk)) {
- err = PTR_ERR(tsk);
- goto unwind;
- }
- threads[tmp] = tsk;
- get_task_struct(tsk);
- }
- set_bit(I915_RESET_ENGINE + id, &i915->gpu_error.flags);
- do {
- if (active) {
- struct i915_request *rq;
- mutex_lock(&i915->drm.struct_mutex);
- rq = hang_create_request(&h, engine);
- if (IS_ERR(rq)) {
- err = PTR_ERR(rq);
- mutex_unlock(&i915->drm.struct_mutex);
- break;
- }
- i915_request_get(rq);
- __i915_request_add(rq, true);
- mutex_unlock(&i915->drm.struct_mutex);
- if (!wait_for_hang(&h, rq)) {
- struct drm_printer p = drm_info_printer(i915->drm.dev);
- pr_err("%s: Failed to start request %x, at %x\n",
- __func__, rq->fence.seqno, hws_seqno(&h, rq));
- intel_engine_dump(engine, &p,
- "%s\n", engine->name);
- i915_request_put(rq);
- err = -EIO;
- break;
- }
- i915_request_put(rq);
- }
- engine->hangcheck.stalled = true;
- engine->hangcheck.seqno =
- intel_engine_get_seqno(engine);
- err = i915_reset_engine(engine, I915_RESET_QUIET);
- if (err) {
- pr_err("i915_reset_engine(%s:%s) failed, err=%d\n",
- engine->name, active ? "active" : "idle", err);
- break;
- }
- engine->hangcheck.stalled = false;
- count++;
- } while (time_before(jiffies, end_time));
- clear_bit(I915_RESET_ENGINE + id, &i915->gpu_error.flags);
- pr_info("i915_reset_engine(%s:%s): %lu resets\n",
- engine->name, active ? "active" : "idle", count);
- if (i915_reset_engine_count(&i915->gpu_error, engine) -
- resets[engine->id] != (active ? count : 0)) {
- pr_err("i915_reset_engine(%s:%s): reset %lu times, but reported %lu\n",
- engine->name, active ? "active" : "idle", count,
- i915_reset_engine_count(&i915->gpu_error,
- engine) - resets[engine->id]);
- if (!err)
- err = -EINVAL;
- }
- unwind:
- for_each_engine(other, i915, tmp) {
- int ret;
- if (!threads[tmp])
- continue;
- ret = kthread_stop(threads[tmp]);
- if (ret) {
- pr_err("kthread for other engine %s failed, err=%d\n",
- other->name, ret);
- if (!err)
- err = ret;
- }
- put_task_struct(threads[tmp]);
- if (resets[tmp] != i915_reset_engine_count(&i915->gpu_error,
- other)) {
- pr_err("Innocent engine %s was reset (count=%ld)\n",
- other->name,
- i915_reset_engine_count(&i915->gpu_error,
- other) - resets[tmp]);
- if (!err)
- err = -EINVAL;
- }
- }
- if (global != i915_reset_count(&i915->gpu_error)) {
- pr_err("Global reset (count=%ld)!\n",
- i915_reset_count(&i915->gpu_error) - global);
- if (!err)
- err = -EINVAL;
- }
- if (err)
- break;
- err = flush_test(i915, 0);
- if (err)
- break;
- }
- if (i915_terminally_wedged(&i915->gpu_error))
- err = -EIO;
- if (active) {
- mutex_lock(&i915->drm.struct_mutex);
- hang_fini(&h);
- mutex_unlock(&i915->drm.struct_mutex);
- }
- return err;
- }
- static int igt_reset_idle_engine_others(void *arg)
- {
- return __igt_reset_engine_others(arg, false);
- }
- static int igt_reset_active_engine_others(void *arg)
- {
- return __igt_reset_engine_others(arg, true);
- }
- static u32 fake_hangcheck(struct i915_request *rq)
- {
- u32 reset_count;
- rq->engine->hangcheck.stalled = true;
- rq->engine->hangcheck.seqno = intel_engine_get_seqno(rq->engine);
- reset_count = i915_reset_count(&rq->i915->gpu_error);
- set_bit(I915_RESET_HANDOFF, &rq->i915->gpu_error.flags);
- wake_up_all(&rq->i915->gpu_error.wait_queue);
- return reset_count;
- }
- static int igt_wait_reset(void *arg)
- {
- struct drm_i915_private *i915 = arg;
- struct i915_request *rq;
- unsigned int reset_count;
- struct hang h;
- long timeout;
- int err;
- if (!intel_engine_can_store_dword(i915->engine[RCS]))
- return 0;
- /* Check that we detect a stuck waiter and issue a reset */
- global_reset_lock(i915);
- mutex_lock(&i915->drm.struct_mutex);
- err = hang_init(&h, i915);
- if (err)
- goto unlock;
- rq = hang_create_request(&h, i915->engine[RCS]);
- if (IS_ERR(rq)) {
- err = PTR_ERR(rq);
- goto fini;
- }
- i915_request_get(rq);
- __i915_request_add(rq, true);
- if (!wait_for_hang(&h, rq)) {
- struct drm_printer p = drm_info_printer(i915->drm.dev);
- pr_err("%s: Failed to start request %x, at %x\n",
- __func__, rq->fence.seqno, hws_seqno(&h, rq));
- intel_engine_dump(rq->engine, &p, "%s\n", rq->engine->name);
- i915_reset(i915, 0);
- i915_gem_set_wedged(i915);
- err = -EIO;
- goto out_rq;
- }
- reset_count = fake_hangcheck(rq);
- timeout = i915_request_wait(rq, I915_WAIT_LOCKED, 10);
- if (timeout < 0) {
- pr_err("i915_request_wait failed on a stuck request: err=%ld\n",
- timeout);
- err = timeout;
- goto out_rq;
- }
- GEM_BUG_ON(test_bit(I915_RESET_HANDOFF, &i915->gpu_error.flags));
- if (i915_reset_count(&i915->gpu_error) == reset_count) {
- pr_err("No GPU reset recorded!\n");
- err = -EINVAL;
- goto out_rq;
- }
- out_rq:
- i915_request_put(rq);
- fini:
- hang_fini(&h);
- unlock:
- mutex_unlock(&i915->drm.struct_mutex);
- global_reset_unlock(i915);
- if (i915_terminally_wedged(&i915->gpu_error))
- return -EIO;
- return err;
- }
- static int igt_reset_queue(void *arg)
- {
- struct drm_i915_private *i915 = arg;
- struct intel_engine_cs *engine;
- enum intel_engine_id id;
- struct hang h;
- int err;
- /* Check that we replay pending requests following a hang */
- global_reset_lock(i915);
- mutex_lock(&i915->drm.struct_mutex);
- err = hang_init(&h, i915);
- if (err)
- goto unlock;
- for_each_engine(engine, i915, id) {
- struct i915_request *prev;
- IGT_TIMEOUT(end_time);
- unsigned int count;
- if (!intel_engine_can_store_dword(engine))
- continue;
- prev = hang_create_request(&h, engine);
- if (IS_ERR(prev)) {
- err = PTR_ERR(prev);
- goto fini;
- }
- i915_request_get(prev);
- __i915_request_add(prev, true);
- count = 0;
- do {
- struct i915_request *rq;
- unsigned int reset_count;
- rq = hang_create_request(&h, engine);
- if (IS_ERR(rq)) {
- err = PTR_ERR(rq);
- goto fini;
- }
- i915_request_get(rq);
- __i915_request_add(rq, true);
- if (!wait_for_hang(&h, prev)) {
- struct drm_printer p = drm_info_printer(i915->drm.dev);
- pr_err("%s: Failed to start request %x, at %x\n",
- __func__, prev->fence.seqno, hws_seqno(&h, prev));
- intel_engine_dump(prev->engine, &p,
- "%s\n", prev->engine->name);
- i915_request_put(rq);
- i915_request_put(prev);
- i915_reset(i915, 0);
- i915_gem_set_wedged(i915);
- err = -EIO;
- goto fini;
- }
- reset_count = fake_hangcheck(prev);
- i915_reset(i915, I915_RESET_QUIET);
- GEM_BUG_ON(test_bit(I915_RESET_HANDOFF,
- &i915->gpu_error.flags));
- if (prev->fence.error != -EIO) {
- pr_err("GPU reset not recorded on hanging request [fence.error=%d]!\n",
- prev->fence.error);
- i915_request_put(rq);
- i915_request_put(prev);
- err = -EINVAL;
- goto fini;
- }
- if (rq->fence.error) {
- pr_err("Fence error status not zero [%d] after unrelated reset\n",
- rq->fence.error);
- i915_request_put(rq);
- i915_request_put(prev);
- err = -EINVAL;
- goto fini;
- }
- if (i915_reset_count(&i915->gpu_error) == reset_count) {
- pr_err("No GPU reset recorded!\n");
- i915_request_put(rq);
- i915_request_put(prev);
- err = -EINVAL;
- goto fini;
- }
- i915_request_put(prev);
- prev = rq;
- count++;
- } while (time_before(jiffies, end_time));
- pr_info("%s: Completed %d resets\n", engine->name, count);
- *h.batch = MI_BATCH_BUFFER_END;
- i915_gem_chipset_flush(i915);
- i915_request_put(prev);
- err = flush_test(i915, I915_WAIT_LOCKED);
- if (err)
- break;
- }
- fini:
- hang_fini(&h);
- unlock:
- mutex_unlock(&i915->drm.struct_mutex);
- global_reset_unlock(i915);
- if (i915_terminally_wedged(&i915->gpu_error))
- return -EIO;
- return err;
- }
- static int igt_handle_error(void *arg)
- {
- struct drm_i915_private *i915 = arg;
- struct intel_engine_cs *engine = i915->engine[RCS];
- struct hang h;
- struct i915_request *rq;
- struct i915_gpu_state *error;
- int err;
- /* Check that we can issue a global GPU and engine reset */
- if (!intel_has_reset_engine(i915))
- return 0;
- if (!intel_engine_can_store_dword(i915->engine[RCS]))
- return 0;
- mutex_lock(&i915->drm.struct_mutex);
- err = hang_init(&h, i915);
- if (err)
- goto err_unlock;
- rq = hang_create_request(&h, engine);
- if (IS_ERR(rq)) {
- err = PTR_ERR(rq);
- goto err_fini;
- }
- i915_request_get(rq);
- __i915_request_add(rq, true);
- if (!wait_for_hang(&h, rq)) {
- struct drm_printer p = drm_info_printer(i915->drm.dev);
- pr_err("%s: Failed to start request %x, at %x\n",
- __func__, rq->fence.seqno, hws_seqno(&h, rq));
- intel_engine_dump(rq->engine, &p, "%s\n", rq->engine->name);
- i915_reset(i915, 0);
- i915_gem_set_wedged(i915);
- err = -EIO;
- goto err_request;
- }
- mutex_unlock(&i915->drm.struct_mutex);
- /* Temporarily disable error capture */
- error = xchg(&i915->gpu_error.first_error, (void *)-1);
- engine->hangcheck.stalled = true;
- engine->hangcheck.seqno = intel_engine_get_seqno(engine);
- i915_handle_error(i915, intel_engine_flag(engine), "%s", __func__);
- xchg(&i915->gpu_error.first_error, error);
- mutex_lock(&i915->drm.struct_mutex);
- if (rq->fence.error != -EIO) {
- pr_err("Guilty request not identified!\n");
- err = -EINVAL;
- goto err_request;
- }
- err_request:
- i915_request_put(rq);
- err_fini:
- hang_fini(&h);
- err_unlock:
- mutex_unlock(&i915->drm.struct_mutex);
- return err;
- }
- int intel_hangcheck_live_selftests(struct drm_i915_private *i915)
- {
- static const struct i915_subtest tests[] = {
- SUBTEST(igt_global_reset), /* attempt to recover GPU first */
- SUBTEST(igt_hang_sanitycheck),
- SUBTEST(igt_reset_idle_engine),
- SUBTEST(igt_reset_active_engine),
- SUBTEST(igt_reset_idle_engine_others),
- SUBTEST(igt_reset_active_engine_others),
- SUBTEST(igt_wait_reset),
- SUBTEST(igt_reset_queue),
- SUBTEST(igt_handle_error),
- };
- bool saved_hangcheck;
- int err;
- if (!intel_has_gpu_reset(i915))
- return 0;
- intel_runtime_pm_get(i915);
- saved_hangcheck = fetch_and_zero(&i915_modparams.enable_hangcheck);
- err = i915_subtests(tests, i915);
- i915_modparams.enable_hangcheck = saved_hangcheck;
- intel_runtime_pm_put(i915);
- return err;
- }
|