Searched refs:uc_fw (Results 1 – 2 of 2) sorted by relevance
17 int xe_uc_fw_init(struct xe_uc_fw *uc_fw);18 size_t xe_uc_fw_copy_rsa(struct xe_uc_fw *uc_fw, void *dst, u32 max_len);19 int xe_uc_fw_upload(struct xe_uc_fw *uc_fw, u32 offset, u32 dma_flags);20 int xe_uc_fw_check_version_requirements(struct xe_uc_fw *uc_fw);21 void xe_uc_fw_print(struct xe_uc_fw *uc_fw, struct drm_printer *p);23 static inline u32 xe_uc_fw_rsa_offset(struct xe_uc_fw *uc_fw) in xe_uc_fw_rsa_offset() argument25 return sizeof(struct uc_css_header) + uc_fw->ucode_size + uc_fw->css_offset; in xe_uc_fw_rsa_offset()28 static inline void xe_uc_fw_change_status(struct xe_uc_fw *uc_fw, in xe_uc_fw_change_status() argument31 uc_fw->__status = status; in xe_uc_fw_change_status()111 __xe_uc_fw_status(const struct xe_uc_fw *uc_fw) in __xe_uc_fw_status() argument[all …]
141 void intel_uc_fw_change_status(struct intel_uc_fw *uc_fw,144 static inline void intel_uc_fw_change_status(struct intel_uc_fw *uc_fw, in intel_uc_fw_change_status() argument147 uc_fw->__status = status; in intel_uc_fw_change_status()224 __intel_uc_fw_status(struct intel_uc_fw *uc_fw) in __intel_uc_fw_status() argument227 GEM_BUG_ON(uc_fw->status == INTEL_UC_FIRMWARE_UNINITIALIZED); in __intel_uc_fw_status()228 return uc_fw->status; in __intel_uc_fw_status()231 static inline bool intel_uc_fw_is_supported(struct intel_uc_fw *uc_fw) in intel_uc_fw_is_supported() argument233 return __intel_uc_fw_status(uc_fw) != INTEL_UC_FIRMWARE_NOT_SUPPORTED; in intel_uc_fw_is_supported()236 static inline bool intel_uc_fw_is_enabled(struct intel_uc_fw *uc_fw) in intel_uc_fw_is_enabled() argument238 return __intel_uc_fw_status(uc_fw) > INTEL_UC_FIRMWARE_DISABLED; in intel_uc_fw_is_enabled()[all …]