/src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
igt_flush_test.c | 12 #include "gt/intel_gt.h" 13 #include "gt/intel_gt_requests.h" 22 struct intel_gt *gt = &i915->gt; local in function:igt_flush_test 23 int ret = intel_gt_is_wedged(gt) ? -EIO : 0; 27 if (intel_gt_wait_for_idle(gt, HZ / 5) == -ETIME) { 35 intel_gt_set_wedged(gt);
|
igt_live_test.c | 13 #include "gt/intel_gt_requests.h" 24 struct intel_gt *gt = &i915->gt; local in function:igt_live_test_begin 33 err = intel_gt_wait_for_idle(gt, MAX_SCHEDULE_TIMEOUT); 42 for_each_engine(engine, gt, id) 65 for_each_engine(engine, &i915->gt, id) {
|
igt_spinner.h | 13 #include "gt/intel_engine.h" 22 struct intel_gt *gt; member in struct:igt_spinner 29 int igt_spinner_init(struct igt_spinner *spin, struct intel_gt *gt);
|
mock_gem_device.c | 33 #include "gt/intel_gt.h" 34 #include "gt/intel_gt_requests.h" 35 #include "gt/mock_engine.h" 49 struct intel_gt *gt = &i915->gt; local in function:mock_device_flush 54 for_each_engine(engine, gt, id) 56 } while (intel_gt_retire_requests_timeout(gt, MAX_SCHEDULE_TIMEOUT)); 64 intel_gt_driver_remove(&i915->gt); 74 intel_gt_driver_late_release(&i915->gt); 172 intel_gt_init_early(&i915->gt, i915) [all...] |
i915_gem_evict.c | 33 #include "gt/intel_gt.h" 136 struct intel_gt *gt = arg; local in function:igt_evict_something 137 struct i915_ggtt *ggtt = gt->ggtt; 182 struct intel_gt *gt = arg; local in function:igt_overcommit 183 struct i915_ggtt *ggtt = gt->ggtt; 197 obj = i915_gem_object_create_internal(gt->i915, I915_GTT_PAGE_SIZE); 219 struct intel_gt *gt = arg; local in function:igt_evict_for_vma 220 struct i915_ggtt *ggtt = gt->ggtt; 270 struct intel_gt *gt = arg; local in function:igt_evict_for_cache_color 271 struct i915_ggtt *ggtt = gt->ggtt 361 struct intel_gt *gt = arg; local in function:igt_evict_vm 401 struct intel_gt *gt = arg; local in function:igt_evict_contexts [all...] |
intel_uncore.c | 148 struct intel_gt *gt = arg; local in function:live_forcewake_ops 150 struct intel_uncore *uncore = gt->uncore; 157 GEM_BUG_ON(gt->awake); 160 if (IS_VALLEYVIEW(gt->i915) || IS_CHERRYVIEW(gt->i915)) { 178 if (r->platforms & INTEL_INFO(gt->i915)->gen_mask) 182 intel_platform_name(INTEL_INFO(gt->i915)->platform)); 196 for_each_engine(engine, gt, id) { 264 struct intel_gt *gt = arg; local in function:live_forcewake_domains 265 struct intel_uncore *uncore = gt->uncore 322 struct intel_gt *gt = arg; local in function:live_fw_table [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/ |
intel_huc_fw.c | 11 #include "gt/intel_gt.h" 23 struct intel_gt *gt = huc_to_gt(huc); local in function:intel_huc_fw_init_early 24 struct intel_uc *uc = >->uc; 25 struct drm_i915_private *i915 = gt->i915;
|
intel_guc_fw.c | 17 #include "gt/intel_gt.h" 57 /* allows for 5us (in 10ns units) before GT can go to RC6 */ 140 struct intel_gt *gt = guc_to_gt(guc); local in function:intel_guc_fw_upload 141 struct intel_uncore *uncore = gt->uncore;
|
intel_huc.c | 13 #include "gt/intel_gt.h" 64 struct intel_gt *gt = huc_to_gt(huc); local in function:intel_huc_rsa_data_create 65 struct intel_guc *guc = >->uc.guc; 71 err = i915_inject_probe_error(gt->i915, -ENXIO); 160 struct intel_gt *gt = huc_to_gt(huc); local in function:intel_huc_auth 161 struct intel_guc *guc = >->uc.guc; 169 ret = i915_inject_probe_error(gt->i915, -ENXIO); 181 ret = __intel_wait_for_register(gt->uncore, 195 i915_probe_error(gt->i915, "HuC: Authentication failed %d\n", ret); 213 struct intel_gt *gt = huc_to_gt(huc) local in function:intel_huc_check_status [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
debugfs_engines.c | 21 struct intel_gt *gt = m->private; local in function:engines_show 27 for_each_engine(engine, gt, id) 34 void debugfs_engines_register(struct intel_gt *gt, struct dentry *root) 40 debugfs_gt_register_files(gt, root, files, ARRAY_SIZE(files));
|
selftest_gt_pm.c | 18 struct intel_gt *gt = arg; local in function:live_gt_resume 24 intel_gt_suspend_prepare(gt); 25 intel_gt_suspend_late(gt); 27 if (gt->rc6.enabled) { 29 intel_gt_set_wedged_on_init(gt); 34 err = intel_gt_resume(gt); 38 if (gt->rc6.supported && !gt->rc6.enabled) { 40 intel_gt_set_wedged_on_init(gt); 45 err = st_llc_verify(>->llc) [all...] |
intel_reset.h | 24 void intel_gt_init_reset(struct intel_gt *gt); 25 void intel_gt_fini_reset(struct intel_gt *gt); 28 void intel_gt_handle_error(struct intel_gt *gt, 34 void intel_gt_reset(struct intel_gt *gt, 42 int __must_check intel_gt_reset_trylock(struct intel_gt *gt, int *srcu); 43 void intel_gt_reset_unlock(struct intel_gt *gt, int tag); 45 void intel_gt_set_wedged(struct intel_gt *gt); 46 bool intel_gt_unset_wedged(struct intel_gt *gt); 47 int intel_gt_terminally_wedged(struct intel_gt *gt); 53 void intel_gt_set_wedged_on_init(struct intel_gt *gt); 61 struct intel_gt *gt; member in struct:intel_wedge_me [all...] |
selftest_reset.c | 17 struct intel_gt *gt = arg; local in function:igt_global_reset 24 igt_global_reset_lock(gt); 25 wakeref = intel_runtime_pm_get(gt->uncore->rpm); 27 reset_count = i915_reset_count(>->i915->gpu_error); 29 intel_gt_reset(gt, ALL_ENGINES, NULL); 31 if (i915_reset_count(>->i915->gpu_error) == reset_count) { 36 intel_runtime_pm_put(gt->uncore->rpm, wakeref); 37 igt_global_reset_unlock(gt); 39 if (intel_gt_is_wedged(gt)) 47 struct intel_gt *gt = arg local in function:igt_wedged_reset 68 struct intel_gt *gt = arg; local in function:igt_atomic_reset 112 struct intel_gt *gt = arg; local in function:igt_atomic_engine_reset 176 struct intel_gt *gt = &i915->gt; local in function:intel_reset_live_selftests [all...] |
intel_gt_pm.c | 28 static void user_forcewake(struct intel_gt *gt, bool suspend) 30 int count = atomic_read(>->user_wakeref); 36 intel_gt_pm_get(gt); 38 GEM_BUG_ON(count > atomic_read(>->wakeref.count)); 39 atomic_sub(count, >->wakeref.count); 41 atomic_add(count, >->wakeref.count); 43 intel_gt_pm_put(gt); 48 struct intel_gt *gt = container_of(wf, typeof(*gt), wakeref); local in function:__gt_unpark 49 struct drm_i915_private *i915 = gt->i915 80 struct intel_gt *gt = container_of(wf, typeof(*gt), wakeref); local in function:__gt_park [all...] |
intel_timeline_types.h | 87 struct intel_gt *gt; member in struct:intel_timeline
|
selftest_rc6.c | 22 struct intel_gt *gt = arg; local in function:live_rc6_manual 23 struct intel_rc6 *rc6 = >->rc6; 37 if (IS_VALLEYVIEW(gt->i915) || IS_CHERRYVIEW(gt->i915)) 40 wakeref = intel_runtime_pm_get(gt->uncore->rpm); 65 intel_uncore_read_fw(gt->uncore, GEN6_RC_STATE), 66 intel_uncore_read_fw(gt->uncore, GEN6_RC_CONTROL)); 74 intel_runtime_pm_put(gt->uncore->rpm, wakeref); 112 randomised_engines(struct intel_gt *gt, 121 for_each_engine(engine, gt, id 142 struct intel_gt *gt = arg; local in function:live_rc6_ctx_wa [all...] |
intel_gt_requests.c | 37 static bool flush_submission(struct intel_gt *gt) 43 if (!intel_gt_pm_is_awake(gt)) 46 for_each_engine(engine, gt, id) { 133 long intel_gt_retire_requests_timeout(struct intel_gt *gt, long timeout) 135 struct intel_gt_timelines *timelines = >->timelines; 145 flush_submission(gt); /* kick the ksoftirqd tasklets */ 170 if (!retire_requests(tl) || flush_submission(gt)) 196 int intel_gt_wait_for_idle(struct intel_gt *gt, long timeout) 199 if (!intel_gt_pm_is_awake(gt)) 202 while ((timeout = intel_gt_retire_requests_timeout(gt, timeout)) > 0) 213 struct intel_gt *gt = local in function:retire_work_handler [all...] |
selftest_engine_heartbeat.c | 152 struct intel_gt *gt = arg; local in function:live_idle_flush 159 for_each_engine(engine, gt, id) { 172 struct intel_gt *gt = arg; local in function:live_idle_pulse 179 for_each_engine(engine, gt, id) { 275 struct intel_gt *gt = arg; local in function:live_heartbeat_fast 284 for_each_engine(engine, gt, id) { 337 struct intel_gt *gt = arg; local in function:live_heartbeat_off 346 for_each_engine(engine, gt, id) { 369 if (intel_gt_is_wedged(&i915->gt)) 375 err = intel_gt_live_subtests(tests, &i915->gt); [all...] |
selftest_mocs.c | 12 #include "gt/intel_engine_pm.h" 49 static struct i915_vma *create_scratch(struct intel_gt *gt) 55 obj = i915_gem_object_create_internal(gt->i915, PAGE_SIZE); 61 vma = i915_vma_instance(obj, >->ggtt->vm, NULL); 76 static int live_mocs_init(struct live_mocs *arg, struct intel_gt *gt) 80 if (!get_mocs_settings(gt->i915, &arg->table)) 83 arg->scratch = create_scratch(gt); 256 struct intel_gt *gt = arg; local in function:live_mocs_kernel 264 err = live_mocs_init(&mocs, gt); 268 for_each_engine(engine, gt, id) 282 struct intel_gt *gt = arg; local in function:live_mocs_clean 372 struct intel_gt *gt = arg; local in function:live_mocs_reset [all...] |
/src/share/doc/papers/memfs/ |
Makefile | 9 CLEANFILES=ref.bib.i A.gt paper.t 14 paper.t: ${SRCS} ref.bib.i A.gt 15 ${TOOL_REFER} -n -e -l -s -p ref.bib ${SRCS} A.gt > ${.TARGET} 20 A.gt: A.t 21 ${TOOL_VGRIND} < A.t > A.gt
|
/src/lib/libc/gen/ |
getpass.c | 89 struct termios gt; local in function:__weak_alias 120 if (tcgetattr(fd[0], >) == -1) { 124 memset(>, -1, sizeof(gt)); 129 struct termios st = gt; 182 #define C(a, b) ((gt.c_cc[(a)] == _POSIX_VDISABLE || gt.c_cc[(a)] == '\0') ? \ 183 (b) : gt.c_cc[(a)]) 294 (void)tcsetattr(fd[0], TCSAFLUSH|TCSASOFT, >);
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
intel_wopcm.c | 231 struct intel_gt *gt = &i915->gt; local in function:intel_wopcm_init 232 u32 guc_fw_size = intel_uc_fw_get_upload_size(>->uc.guc.fw); 233 u32 huc_fw_size = intel_uc_fw_get_upload_size(>->uc.huc.fw); 251 if (__wopcm_regs_locked(gt->uncore, &guc_wopcm_base, &guc_wopcm_size)) {
|
/src/usr.sbin/mrouted/ |
rsrr.c | 51 #define GET_SCOPE(gt) { \ 53 if (((gt)->gt_mcastgrp & 0xff000000) == 0xef000000) \ 55 if (scoped_addr(_i, (gt)->gt_mcastgrp)) \ 56 VIFM_SET(_i, (gt)->gt_scope); \ 82 static void rsrr_cache(struct gtable *gt, struct rsrr_rq *route_query); 265 struct gtable *gt,local_g; local in function:rsrr_accept_rq 305 gt = gtp ? gtp->gt_gnext : kernel_table; 308 route_reply->in_vif = gt->gt_route->rt_parent; 309 route_reply->out_vif_bm = gt->gt_grpmems; 313 rsrr_cache(gt,route_query) [all...] |
/src/sys/arch/prep/pci/ |
gten.c | 122 struct gten_softc *gt = device_private(self); local in function:gten_attach 131 >->gt_memaddr, >->gt_memsize, NULL); 137 gt->gt_dev = self; 139 gt->gt_ri = >en_console_ri; 140 gt->gt_nscreens = 1; 142 gt->gt_ri = kmem_zalloc(sizeof(*gt->gt_ri), 148 (bus_space_handle_t *) >->gt_ri->ri_bits, 151 error = bus_space_map(pa->pa_memt, gt->gt_memaddr + GTEN_VRAM_OFFSET 244 struct gten_softc *gt = v; local in function:gten_ioctl 273 struct gten_softc *gt = v; local in function:gten_mmap 287 struct gten_softc *gt = v; local in function:gten_alloc_screen 306 struct gten_softc *gt = v; local in function:gten_free_screen [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/ |
i915_gem_coherency.c | 14 #include "gt/intel_engine_pm.h" 15 #include "gt/intel_gt.h" 16 #include "gt/intel_gt_pm.h" 17 #include "gt/intel_ring.h" 100 intel_gt_pm_get(vma->vm->gt); 113 intel_gt_pm_put(vma->vm->gt); 133 intel_gt_pm_get(vma->vm->gt); 146 intel_gt_pm_put(vma->vm->gt); 259 struct intel_gt *gt = ctx->engine->gt; local in function:needs_fence_registers [all...] |