Lines Matching defs:runtime

92 			     const struct intel_runtime_info *runtime,
95 if (runtime->graphics.ip.rel)
97 runtime->graphics.ip.ver,
98 runtime->graphics.ip.rel);
101 runtime->graphics.ip.ver);
103 if (runtime->media.ip.rel)
105 runtime->media.ip.ver,
106 runtime->media.ip.rel);
109 runtime->media.ip.ver);
111 drm_printf(p, "graphics stepping: %s\n", intel_step_name(runtime->step.graphics_step));
112 drm_printf(p, "media stepping: %s\n", intel_step_name(runtime->step.media_step));
113 drm_printf(p, "display stepping: %s\n", intel_step_name(runtime->step.display_step));
114 drm_printf(p, "base die stepping: %s\n", intel_step_name(runtime->step.basedie_step));
118 drm_printf(p, "page-sizes: 0x%x\n", runtime->page_sizes);
120 drm_printf(p, "ppgtt-size: %d\n", runtime->ppgtt_size);
121 drm_printf(p, "ppgtt-type: %d\n", runtime->ppgtt_type);
128 drm_printf(p, "has_pooled_eu: %s\n", str_yes_no(runtime->has_pooled_eu));
129 drm_printf(p, "rawclk rate: %u kHz\n", runtime->rawclk_freq);
310 struct intel_runtime_info *runtime = RUNTIME_INFO(i915);
324 &runtime->graphics.ip);
326 if (runtime->graphics.ip.ver == 0x0 &&
332 &runtime->media.ip);
336 * intel_device_info_runtime_init_early - initialize early runtime info
339 * Determine early intel_device_info fields at runtime. This function needs
349 * intel_device_info_runtime_init - initialize runtime info
352 * Determine various intel_device_info fields at runtime.
366 struct intel_runtime_info *runtime = RUNTIME_INFO(dev_priv);
373 runtime->ppgtt_type = INTEL_PPGTT_NONE;
376 runtime->rawclk_freq = intel_read_rawclk(dev_priv);
377 drm_dbg(&dev_priv->drm, "rawclk rate: %d kHz\n", runtime->rawclk_freq);
382 * Set up device info and initial runtime info at driver create.
390 struct intel_runtime_info *runtime;
395 /* Initialize initial runtime info from static const data and pdev. */
396 runtime = RUNTIME_INFO(i915);
397 memcpy(runtime, &INTEL_INFO(i915)->__runtime, sizeof(*runtime));
399 runtime->device_id = device_id;