Lines Matching full:major
36 * "mpp version", i.e. major.minor.patch. mmp_ver() should only be used for
40 * ever contains the major version (GuC) or no version at all (HuC).
43 * The major version needs to match a major version supported by the driver (if
54 * - i915/tgl_guc_<major>.bin
57 * <major> number for GuC is checked that it matches the version inside
65 * - xe/wipplat_guc_<major>.<minor>.<patch>.bin
66 * - xe/wipplat_huc_<major>.<minor>.<patch>.bin
68 * <major> and <minor> are checked that they match the version inside
77 * - xe/plat_guc_<major>.bin
80 * <major> number for GuC is checked that it matches the version inside
84 * For the platforms already released with a major version, they should never be
88 * TODO: Currently there's no fallback on major version. That's because xe
89 * driver only supports the one major version of each firmware in the table.
90 * This needs to be fixed when the major version of GuC is updated.
97 u16 major; member
237 uc_fw->versions.wanted.major = entries[i].major; in uc_fw_auto_select()
323 release->major, release->minor, release->patch); in guc_read_css_info()
327 compatibility->major = FIELD_GET(CSS_SW_VERSION_UC_MAJOR, css->submission_version); in guc_read_css_info()
343 if (!wanted->major) in xe_uc_fw_check_version_requirements()
347 * If full version is required, both major and minor should match. in xe_uc_fw_check_version_requirements()
348 * Otherwise, at least the major version. in xe_uc_fw_check_version_requirements()
350 if (wanted->major != found->major || in xe_uc_fw_check_version_requirements()
356 found->major, found->minor, found->patch, in xe_uc_fw_check_version_requirements()
357 wanted->major, wanted->minor, wanted->patch); in xe_uc_fw_check_version_requirements()
365 wanted->major, wanted->minor, wanted->patch, in xe_uc_fw_check_version_requirements()
366 found->major, found->minor, found->patch, in xe_uc_fw_check_version_requirements()
427 release->major = FIELD_GET(CSS_SW_VERSION_UC_MAJOR, css->sw_version); in parse_css_header()
503 release->major = manifest->fw_version.major; in parse_cpd_header()
642 ver_->major, ver_->minor, \
646 ver_->major, ver_->minor, ver_->patch); \
906 if (ver->major) in xe_uc_fw_print()