| /drivers/gpu/drm/i915/gt/uc/ |
| D | intel_uc_fw.c | 207 u8 patch; member 214 .patch = patch_, \ 332 uc_fw->file_wanted.ver.patch = blob->patch; in __uc_fw_auto_select() 377 fw_blobs[j].blob.patch, fw_blobs[j].blob.path, in validate_fw_table_type() 380 fw_blobs[i].blob.patch, fw_blobs[i].blob.path); in validate_fw_table_type() 427 if (fw_blobs[i].blob.patch < fw_blobs[i - 1].blob.patch) in validate_fw_table_type() 437 fw_blobs[i - 1].blob.patch, in validate_fw_table_type() 442 fw_blobs[i].blob.patch); in validate_fw_table_type() 497 ver->patch = manifest->fw_version.hotfix; in intel_uc_fw_version_from_gsc_manifest() 587 ver->patch = FIELD_GET(CSS_SW_VERSION_UC_PATCH, css_value); in uc_unpack_css_version() [all …]
|
| D | intel_gsc_fw.c | 232 gsc->release.patch, gsc->release.build); in intel_gsc_fw_get_binary_info() 242 if (gsc->release.patch < min_ver.patch) { in intel_gsc_fw_get_binary_info() 244 } else if (gsc->release.patch == min_ver.patch) { in intel_gsc_fw_get_binary_info() 253 gsc->release.patch, gsc->release.build, in intel_gsc_fw_get_binary_info() 255 min_ver.patch, min_ver.build); in intel_gsc_fw_get_binary_info() 517 gsc->release.patch, gsc->release.build, in intel_gsc_uc_fw_upload()
|
| D | intel_uc_fw.h | 72 u32 patch; member
|
| /drivers/gpu/drm/xe/ |
| D | xe_uc_fw.c | 98 u16 patch; member 238 uc_fw->versions.wanted.patch = entries[i].patch; in uc_fw_auto_select() 322 release->major, release->minor, release->patch); in guc_read_css_info() 328 compatibility->patch = FIELD_GET(CSS_SW_VERSION_UC_PATCH, css->submission_version); in guc_read_css_info() 352 (wanted->patch != found->patch)))) { in xe_uc_fw_check_version_requirements() 355 found->major, found->minor, found->patch, in xe_uc_fw_check_version_requirements() 356 wanted->major, wanted->minor, wanted->patch); in xe_uc_fw_check_version_requirements() 361 (wanted->minor == found->minor && wanted->patch > found->patch)) { in xe_uc_fw_check_version_requirements() 364 wanted->major, wanted->minor, wanted->patch, in xe_uc_fw_check_version_requirements() 365 found->major, found->minor, found->patch, in xe_uc_fw_check_version_requirements() [all …]
|
| D | xe_gt_sriov_vf.c | 85 u32 *branch, u32 *major, u32 *minor, u32 *patch) in guc_action_match_version() argument 111 *patch = FIELD_GET(VF2GUC_MATCH_VERSION_RESPONSE_MSG_1_PATCH, response[1]); in guc_action_match_version() 147 u32 branch, major, minor, patch; in vf_handshake_with_guc() local 163 &branch, &major, &minor, &patch); in vf_handshake_with_guc() 172 branch, major, minor, patch); in vf_handshake_with_guc() 175 guc_version->minor, guc_version->patch); in vf_handshake_with_guc() 201 branch, major, minor, patch); in vf_handshake_with_guc() 206 guc_version->patch = patch; in vf_handshake_with_guc() 211 branch, major, minor, patch, ERR_PTR(err)); in vf_handshake_with_guc() 219 &branch, &major, &minor, &patch)) in vf_handshake_with_guc() [all …]
|
| D | xe_gt_sriov_vf_types.h | 22 u8 patch; member
|
| D | xe_uc_fw_types.h | 73 u16 patch; member
|
| D | xe_guc.h | 20 #define MAKE_GUC_VER_STRUCT(ver) MAKE_GUC_VER((ver).major, (ver).minor, (ver).patch)
|
| /drivers/scsi/aic7xxx/aicasm/ |
| D | aicasm.c | 66 typedef struct patch { struct 67 STAILQ_ENTRY(patch) links; 74 STAILQ_HEAD(patch_list, patch) patches; argument 81 static void emit_patch(scope_t *scope, int patch); 488 emit_patch(scope_t *scope, int patch) in emit_patch() argument 493 pinfo = &scope->patches[patch]; in emit_patch() 506 if (patch == 0) { in emit_patch()
|
| /drivers/mfd/ |
| D | lochnagar-i2c.c | 178 const struct reg_sequence *patch; member 188 .patch = lochnagar1_patch, 196 .patch = lochnagar2_patch, 358 ret = regmap_register_patch(lochnagar->regmap, config->patch, in lochnagar_i2c_probe()
|
| /drivers/gpu/drm/msm/adreno/ |
| D | adreno_device.c | 141 unsigned int r, patch; in find_chipid() local 143 if (sscanf(compat, "qcom,adreno-%u.%u", &r, &patch) == 2 || in find_chipid() 144 sscanf(compat, "amd,imageon-%u.%u", &r, &patch) == 2) { in find_chipid() 156 patch; in find_chipid()
|
| /drivers/scsi/ |
| D | script_asm.pl | 205 sub patch { subroutine 264 &patch ($address + $word, $offset, $length, $value); 807 &patch ($address / 4, $address % 4, $length, $symbol_values{$i}); 949 for $patch (sort {$a <=> $b} @label_patches) { 950 printf OUTPUT "\t0x%08x,\n", $patch;
|
| /drivers/base/regmap/ |
| D | regmap-kunit.c | 650 struct reg_sequence patch[2]; in register_patch() local 668 patch[0].reg = 2; in register_patch() 669 patch[0].def = rval[2] + 1; in register_patch() 670 patch[0].delay_us = 0; in register_patch() 671 patch[1].reg = 5; in register_patch() 672 patch[1].def = rval[5] + 1; in register_patch() 673 patch[1].delay_us = 0; in register_patch() 674 KUNIT_EXPECT_EQ(test, 0, regmap_register_patch(map, patch, in register_patch() 675 ARRAY_SIZE(patch))); in register_patch() 1146 struct reg_sequence patch[2]; in cache_sync_patch() local [all …]
|
| D | regcache.c | 386 ret = _regmap_write(map, map->patch[i].reg, map->patch[i].def); in regcache_sync() 389 map->patch[i].reg, map->patch[i].def, ret); in regcache_sync()
|
| /drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
| D | base.c | 200 bios->version.patch = nvbios_rd08(bios, bit_i.offset + 4); in nvkm_bios_new() 211 bios->version.minor, bios->version.micro, bios->version.patch); in nvkm_bios_new()
|
| /drivers/media/i2c/ |
| D | vgxy61.c | 1539 u64 patch; in vgxy61_patch() local 1549 cci_read(sensor->regmap, VGXY61_REG_FWPATCH_REVISION, &patch, &ret); in vgxy61_patch() 1553 if (patch != (VGXY61_FWPATCH_REVISION_MAJOR << 12) + in vgxy61_patch() 1561 (u16)patch >> 12, ((u16)patch >> 8) & 0x0f, (u16)patch & 0xff); in vgxy61_patch() 1565 (u16)patch >> 12, ((u16)patch >> 8) & 0x0f, (u16)patch & 0xff); in vgxy61_patch()
|
| /drivers/hid/bpf/ |
| D | Kconfig | 12 kernel patch and allow a lot more flexibility.
|
| /drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
| D | bios.h | 22 u8 patch; member
|
| /drivers/bluetooth/ |
| D | hci_ag6xx.c | 200 goto patch; in ag6xx_setup() 216 patch: in ag6xx_setup()
|
| /drivers/gpu/drm/i915/ |
| D | i915_query.c | 572 if (ver.branch || ver.major || ver.minor || ver.patch) in query_guc_submission_version() 578 ver.patch = guc->submission_version.patch; in query_guc_submission_version()
|
| /drivers/net/ethernet/wangxun/txgbe/ |
| D | txgbe_main.c | 510 u16 build = 0, major = 0, patch = 0; in txgbe_probe() local 657 patch = eeprom_cfg_blkh & 0x00ff; in txgbe_probe() 661 patch); in txgbe_probe()
|
| /drivers/parisc/ |
| D | README.dino | 25 ** patch PHSS_12295"
|
| /drivers/net/wireless/atmel/ |
| D | at76c50x-usb.h | 312 u8 patch; member 338 u8 patch; /* firmware patch level */ member
|
| /drivers/net/ethernet/brocade/bna/ |
| D | bfi.h | 233 u8 patch; member 244 u8 patch;
|
| /drivers/soc/loongson/ |
| D | Kconfig | 14 controller, and clock control. This patch adds a driver to manage
|