1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*
* Copyright © 2019 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.
*/
#ifndef GEM_ENGINE_TOPOLOGY_H
#define GEM_ENGINE_TOPOLOGY_H
#include "igt_gt.h"
#include "i915_drm.h"
#include "intel_ctx.h"
int __gem_query_engines(int fd,
struct drm_i915_query_engine_info *query_engines,
int length);
/**
* intel_engine_data:
* @nengines: Number of engines
* @n: Current engine index
* @current_engine: Current engine
* @engines: List of all engines
*
* This struct acts as an interator for walking over a set of engines.
*/
struct intel_engine_data {
uint32_t nengines;
uint32_t n;
struct intel_execution_engine2 *current_engine;
struct intel_execution_engine2 engines[GEM_MAX_ENGINES];
};
bool gem_has_engine_topology(int fd);
struct intel_engine_data intel_engine_list_of_physical(int fd);
struct intel_engine_data intel_engine_list_for_ctx_cfg(int fd, const intel_ctx_cfg_t *cfg);
/* iteration functions */
struct intel_execution_engine2 *
intel_get_current_engine(struct intel_engine_data *ed);
struct intel_execution_engine2 *
intel_get_current_physical_engine(struct intel_engine_data *ed);
void intel_next_engine(struct intel_engine_data *ed);
struct i915_engine_class_instance *
gem_list_engines(int i915,
uint32_t gt_mask,
uint32_t class_mask,
unsigned int *count);
bool gem_engine_is_equal(const struct intel_execution_engine2 *e1,
const struct intel_execution_engine2 *e2);
struct intel_execution_engine2 gem_eb_flags_to_engine(unsigned int flags);
/**
* __for_each_static_engine:
* @e__: struct intel_execution_engine2 iterator
*
* Iterates over each of the statically defined (legacy) engines.
*/
#define __for_each_static_engine(e__) \
for ((e__) = intel_execution_engines2; (e__)->name[0]; (e__)++)
/**
* for_each_ctx_cfg_engine
* @fd__: open i915 drm file descriptor
* @ctx_cfg__: Intel context config
* @e__: struct intel_execution_engine2 iterator
*
* Iterates over each physical engine in the context config
*/
#define for_each_ctx_cfg_engine(fd__, ctx_cfg__, e__) \
for (struct intel_engine_data i__##e__ = \
intel_engine_list_for_ctx_cfg(fd__, ctx_cfg__); \
((e__) = intel_get_current_engine(&i__##e__)); \
intel_next_engine(&i__##e__))
/**
* for_each_ctx_engine
* @fd__: open i915 drm file descriptor
* @ctx__: Intel context wrapper
* @e__: struct intel_execution_engine2 iterator
*
* Iterates over each physical engine in the context
*/
#define for_each_ctx_engine(fd__, ctx__, e__) \
for_each_ctx_cfg_engine(fd__, &(ctx__)->cfg, e__)
/**
* for_each_physical_engine
* @fd__: open i915 drm file descriptor
* @e__: struct intel_execution_engine2 iterator
*
* Iterates over each physical engine in device. Be careful when using
* this iterator as your context may not have all of these engines and the
* intel_execution_engine2::flags field in the iterator may not match your
* context configuration.
*/
#define for_each_physical_engine(fd__, e__) \
for (struct intel_engine_data i__##e__ = intel_engine_list_of_physical(fd__); \
((e__) = intel_get_current_physical_engine(&i__##e__)); \
intel_next_engine(&i__##e__))
struct gem_engine_properties {
struct intel_execution_engine2 engine;
int preempt_timeout;
int heartbeat_interval;
};
void gem_engine_properties_configure(int fd, struct gem_engine_properties *params);
void gem_engine_properties_restore(int fd, const struct gem_engine_properties *saved);
__attribute__((format(scanf, 4, 5)))
int gem_engine_property_scanf(int i915, const char *engine, const char *attr,
const char *fmt, ...);
__attribute__((format(printf, 4, 5)))
int gem_engine_property_printf(int i915, const char *engine, const char *attr,
const char *fmt, ...);
uint32_t gem_engine_mmio_base(int i915, const char *engine);
bool gem_engine_has_capability(int i915, const char *engine, const char *cap);
bool gem_engine_has_known_capability(int i915, const char *engine, const char *cap);
bool gem_engine_can_block_copy(int i915, const struct intel_execution_engine2 *engine);
void dyn_sysfs_engines(int i915, int engines, const char *file,
void (*test)(int i915, int engine));
#endif /* GEM_ENGINE_TOPOLOGY_H */
|