HomeSort by: relevance | last modified time | path
    Searched refs:uc_fw (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/
intel_uc_fw.h 92 void intel_uc_fw_change_status(struct intel_uc_fw *uc_fw,
95 static inline void intel_uc_fw_change_status(struct intel_uc_fw *uc_fw,
98 uc_fw->__status = status;
167 __intel_uc_fw_status(struct intel_uc_fw *uc_fw)
170 GEM_BUG_ON(uc_fw->status == INTEL_UC_FIRMWARE_UNINITIALIZED);
171 return uc_fw->status;
174 static inline bool intel_uc_fw_is_supported(struct intel_uc_fw *uc_fw)
176 return __intel_uc_fw_status(uc_fw) != INTEL_UC_FIRMWARE_NOT_SUPPORTED;
179 static inline bool intel_uc_fw_is_enabled(struct intel_uc_fw *uc_fw)
181 return __intel_uc_fw_status(uc_fw) > INTEL_UC_FIRMWARE_DISABLED
    [all...]
intel_uc_fw.c 19 static inline struct intel_gt *__uc_fw_to_gt(struct intel_uc_fw *uc_fw)
21 GEM_BUG_ON(uc_fw->status == INTEL_UC_FIRMWARE_UNINITIALIZED);
22 if (uc_fw->type == INTEL_UC_FW_TYPE_GUC)
23 return container_of(uc_fw, struct intel_gt, uc.guc.fw);
25 GEM_BUG_ON(uc_fw->type != INTEL_UC_FW_TYPE_HUC);
26 return container_of(uc_fw, struct intel_gt, uc.huc.fw);
30 void intel_uc_fw_change_status(struct intel_uc_fw *uc_fw,
33 uc_fw->__status = status;
34 DRM_DEV_DEBUG_DRIVER(__uc_fw_to_gt(uc_fw)->i915->drm.dev,
36 intel_uc_fw_type_repr(uc_fw->type)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_ggtt.c 600 ret = i915_gem_gtt_reserve(&ggtt->vm, &ggtt->uc_fw, size,
611 if (drm_mm_node_allocated(&ggtt->uc_fw))
612 drm_mm_remove_node(&ggtt->uc_fw);
intel_gtt.h 405 struct drm_mm_node uc_fw; member in struct:i915_ggtt

Completed in 15 milliseconds