blob: a5651648239457a66d83d01fc1064b74d5a0aac0 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 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 * Authors:
24 * Keith Packard <keithp@keithp.com>
25 *
26 */
27
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/i915_drm.h>
Eric Anholt673a3942008-07-30 12:06:12 -070030#include "i915_drv.h"
31
Chris Wilson23bc5982010-09-29 16:10:57 +010032#if WATCH_LISTS
33int
34i915_verify_lists(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -070035{
Chris Wilson23bc5982010-09-29 16:10:57 +010036 static int warned;
Chris Wilsonb4716182015-04-27 13:41:17 +010037 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson23bc5982010-09-29 16:10:57 +010038 struct drm_i915_gem_object *obj;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +000039 struct intel_engine_cs *engine;
Chris Wilson23bc5982010-09-29 16:10:57 +010040 int err = 0;
Eric Anholt673a3942008-07-30 12:06:12 -070041
Chris Wilson23bc5982010-09-29 16:10:57 +010042 if (warned)
43 return 0;
44
Dave Gordonb4ac5af2016-03-24 11:20:38 +000045 for_each_engine(engine, dev_priv) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +000046 list_for_each_entry(obj, &engine->active_list,
Tvrtko Ursulin117897f2016-03-16 11:00:40 +000047 engine_list[engine->id]) {
Chris Wilsonb4716182015-04-27 13:41:17 +010048 if (obj->base.dev != dev ||
49 !atomic_read(&obj->base.refcount.refcount)) {
50 DRM_ERROR("%s: freed active obj %p\n",
Tvrtko Ursuline2f80392016-03-16 11:00:36 +000051 engine->name, obj);
Chris Wilsonb4716182015-04-27 13:41:17 +010052 err++;
53 break;
54 } else if (!obj->active ||
Tvrtko Ursuline2f80392016-03-16 11:00:36 +000055 obj->last_read_req[engine->id] == NULL) {
Chris Wilsonb4716182015-04-27 13:41:17 +010056 DRM_ERROR("%s: invalid active obj %p\n",
Tvrtko Ursuline2f80392016-03-16 11:00:36 +000057 engine->name, obj);
Chris Wilsonb4716182015-04-27 13:41:17 +010058 err++;
59 } else if (obj->base.write_domain) {
60 DRM_ERROR("%s: invalid write obj %p (w %x)\n",
Tvrtko Ursuline2f80392016-03-16 11:00:36 +000061 engine->name,
Chris Wilsonb4716182015-04-27 13:41:17 +010062 obj, obj->base.write_domain);
63 err++;
64 }
Chris Wilson23bc5982010-09-29 16:10:57 +010065 }
66 }
67
Chris Wilson23bc5982010-09-29 16:10:57 +010068 return warned = err;
Eric Anholt673a3942008-07-30 12:06:12 -070069}
Damien Lespiauc55651b2013-08-08 22:28:55 +010070#endif /* WATCH_LIST */