blob: a05450d3169c58bd5b9a82cd4a1427ed7c7bf8ea [file] [log] [blame]
Chris Wilson16bafdf2014-09-04 09:26:24 +01001/*
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
24#ifndef IGT_GT_H
25#define IGT_GT_H
26
Daniel Vetter3cd45de2015-02-10 17:46:43 +010027#include "igt_debugfs.h"
28
Daniel Vetterc66b2422015-02-06 10:49:20 +010029void igt_require_hang_ring(int fd, int ring);
Chris Wilson16bafdf2014-09-04 09:26:24 +010030
Daniel Vetter3cd45de2015-02-10 17:46:43 +010031typedef struct igt_hang_ring {
Chris Wilson16bafdf2014-09-04 09:26:24 +010032 unsigned handle;
Chris Wilson19642c62015-12-11 13:27:49 +000033 unsigned ctx;
Chris Wilson16bafdf2014-09-04 09:26:24 +010034 unsigned ban;
Chris Wilson19642c62015-12-11 13:27:49 +000035 unsigned flags;
Daniel Vetter3cd45de2015-02-10 17:46:43 +010036} igt_hang_ring_t;
37
Chris Wilson19642c62015-12-11 13:27:49 +000038#define HANG_POISON 0xc5c5c5c5
39
40struct igt_hang_ring igt_hang_ctx(int fd,
41 uint32_t ctx,
42 int ring,
43 unsigned flags,
44 uint64_t *offset);
45#define HANG_ALLOW_BAN 1
46#define HANG_ALLOW_CAPTURE 2
47
Daniel Vetter3cd45de2015-02-10 17:46:43 +010048struct igt_hang_ring igt_hang_ring(int fd, int ring);
Thomas Wood26f40812015-02-20 11:31:01 +000049void igt_post_hang_ring(int fd, struct igt_hang_ring arg);
Chris Wilson16bafdf2014-09-04 09:26:24 +010050
Daniele Ceraolo Spurio03c7f842016-03-01 11:01:32 +000051void igt_force_gpu_reset(void);
52
Daniel Vetterd8d1eab2015-12-03 07:45:34 +010053void igt_fork_hang_helper(void);
Daniel Vetter3cd45de2015-02-10 17:46:43 +010054void igt_stop_hang_helper(void);
55
56int igt_open_forcewake_handle(void);
57
Chris Wilsona6090c72016-01-08 16:32:29 +000058int igt_setup_clflush(void);
59void igt_clflush_range(void *addr, int size);
60
Chris Wilson5b675f72016-01-22 17:33:40 +000061unsigned intel_detect_and_clear_missed_interrupts(int fd);
62
Chris Wilson04f52152016-01-27 14:07:27 +000063extern const struct intel_execution_engine {
64 const char *name;
Chris Wilson38fe49d2016-02-04 11:17:42 +000065 const char *full_name;
Chris Wilson04f52152016-01-27 14:07:27 +000066 unsigned exec_id;
67 unsigned flags;
68} intel_execution_engines[];
69
Chris Wilson697c3f52016-03-04 10:19:38 +000070#define for_if(expr__) if (!(expr__)) {} else
71
72#define for_each_engine(fd__, flags__) \
73 for (const struct intel_execution_engine *e__ = intel_execution_engines;\
74 e__->name; \
75 e__++) \
76 for_if (gem_has_ring(fd, flags__ = e__->exec_id | e__->flags))
77
78
Chris Wilson16bafdf2014-09-04 09:26:24 +010079#endif /* IGT_GT_H */