Home
last modified time | relevance | path

Searched refs:revision (Results 1 – 25 of 389) sorted by relevance

12345678910>>...16

/freebsd/sys/contrib/dev/iwlwifi/fw/
H A Duefi.h57 u8 revision; member
62 u8 revision; member
67 u8 revision; member
92 u8 revision; member
105 u8 revision; member
119 u8 revision; member
131 u8 revision; member
143 u8 revision; member
154 u8 revision; member
163 u8 revision; member
[all …]
H A Duefi.c311 if (common_step_data->revision != 1) in iwl_uefi_step_parse()
315 (u32)common_step_data->revision | in iwl_uefi_step_parse()
350 if (sgom_data->revision != 1) in iwl_uefi_sgom_parse()
402 if (uats_data->revision != 1) in iwl_uefi_uats_parse()
452 if (data->revision != IWL_UEFI_WRDS_REVISION) { in iwl_uefi_get_wrds_table()
455 data->revision); in iwl_uefi_get_wrds_table()
478 if (data->revision != IWL_UEFI_EWRD_REVISION) { in iwl_uefi_get_ewrd_table()
481 data->revision); in iwl_uefi_get_ewrd_table()
513 if (data->revision != IWL_UEFI_WGDS_REVISION) { in iwl_uefi_get_wgds_table()
516 data->revision); in iwl_uefi_get_wgds_table()
[all …]
/freebsd/sys/arm/broadcom/bcm2835/
H A Dbcm2838_xhci.c116 uint32_t revision; in bcm_xhci_check_firmware() local
119 revision = pci_read_config(dev, VL805_FIRMWARE_REG, 4); in bcm_xhci_check_firmware()
120 loaded = !(revision == 0 || revision == 0xffffffff); in bcm_xhci_check_firmware()
129 revision); in bcm_xhci_check_firmware()
134 return (revision); in bcm_xhci_check_firmware()
140 uint32_t revision, dev_addr; in bcm_xhci_install_xhci_firmware() local
143 revision = bcm_xhci_check_firmware(dev, false); in bcm_xhci_install_xhci_firmware()
144 if (revision > 0) { in bcm_xhci_install_xhci_firmware()
/freebsd/usr.bin/patch/
H A Dinp.c253 /* now check for revision, if any */ in plan_a()
255 if (revision != NULL) { in plan_a()
261 revision); in plan_a()
265 revision); in plan_a()
269 revision); in plan_a()
275 revision); in plan_a()
289 bool found_revision = (revision == NULL); in plan_b()
307 if (revision != NULL && !found_revision && rev_in_string(p)) in plan_b()
316 if (revision != NULL) { in plan_b()
322 revision); in plan_b()
[all...]
/freebsd/stand/efi/acpica/
H A Dacpi_detect.c43 int revision; in acpi_detect() local
52 revision = rsdp->Revision; in acpi_detect()
53 if (revision == 0) in acpi_detect()
54 revision = 1; in acpi_detect()
55 sprintf(buf, "%d", revision); in acpi_detect()
62 if (revision >= 2) { in acpi_detect()
/freebsd/usr.sbin/cpucontrol/
H A Dvia.c87 int32_t revision; in via_update() local
128 revision = msrargs.data >> 32; /* Revision in the high dword. */ in via_update()
172 if (fw_header->revision != 0 && revision >= fw_header->revision) { in via_update()
174 path, fw_header->revision); in via_update()
178 path, dev, revision, fw_header->revision); in via_update()
H A Dintel.c90 int32_t revision; in intel_update() local
144 revision = msrargs.data >> 32; /* Revision in the high dword. */ in intel_update()
247 if (revision >= fw_header->revision) { in intel_update()
249 path, fw_header->revision); in intel_update()
253 path, dev, revision, fw_header->revision); in intel_update()
H A Damd10h.c95 uint32_t revision; in amd10h_update() local
124 old_rev = revision = (uint32_t)msrargs.data; in amd10h_update()
126 selected_fw = ucode_amd_find(path, signature, &revision, fw_image, in amd10h_update()
133 path, dev, old_rev, revision); in amd10h_update()
153 if (new_rev != revision) in amd10h_update()
/freebsd/stand/i386/libi386/
H A Dbiosacpi.c54 int revision; in biosacpi_detect() local
68 revision = rsdp->Revision; in biosacpi_detect()
69 if (revision == 0) in biosacpi_detect()
70 revision = 1; in biosacpi_detect()
71 sprintf(buf, "%d", revision); in biosacpi_detect()
78 if (revision >= 2) { in biosacpi_detect()
/freebsd/sys/cam/ata/
H A Data_all.c511 char product[48], revision[16]; in ata_print_ident_short() local
515 cam_strvis(revision, ident_data->revision, sizeof(ident_data->revision), in ata_print_ident_short()
516 sizeof(revision)); in ata_print_ident_short()
517 printf("<%s %s>", product, revision); in ata_print_ident_short()
527 cam_strvis_sbuf(sb, ident_data->revision, sizeof(ident_data->revision), 0); in ata_print_ident_short_sbuf()
558 char vendor[9], product[17], revision[5], fw[5]; in semb_print_ident_short() local
562 cam_strvis(revision, ident_data->product_rev, 4, sizeof(revision)); in semb_print_ident_short()
564 printf("<%s %s %s %s>", vendor, product, revision, fw); in semb_print_ident_short()
969 ata_revision2speed(int revision) in ata_revision2speed() argument
971 switch (revision) { in ata_revision2speed()
[all …]
/freebsd/tools/tools/commitsdb/
H A Dquery_commit_db15 my ($file, $revision, $genpatch) = (shift, shift, shift);
28 next unless $name eq $file and $rev eq $revision;
41 die "Can't find $file rev $revision in database\n";
59 print `cvs log -r$revision $file` if $genpatch;
/freebsd/sys/dev/acpica/
H A Dacpi_quirk.c68 static int aq_revcmp(int revision, enum ops_t op, int value);
74 aq_revcmp(int revision, enum ops_t op, int value) in aq_revcmp() argument
78 if (revision <= value) in aq_revcmp()
82 if (revision >= value) in aq_revcmp()
86 if (revision == value) in aq_revcmp()
H A Dacpi_spmc.c221 uint8_t revision; member
285 return (get_const_dsm_info(sc, dsm_index)->revision); in get_revision()
543 const struct dsm_desc *const dsm, const uint8_t revision, in probe_dsm_revision() argument
547 (const uint8_t *)&dsm->uuid, revision); in probe_dsm_revision()
553 const struct dsm_desc *const dsm, const uint8_t revision, in set_dsm_revision() argument
560 dsm_info->revision = revision; in set_dsm_revision()
587 for (uint8_t revision = 0; revision <= -revision_spec; ++revision) { in acpi_spmc_probe_dsm() local
588 if (!probe_dsm_revision(sc, dsm, revision, in acpi_spmc_probe_dsm()
596 set_dsm_revision(sc, dsm, revision, supported_functions); in acpi_spmc_probe_dsm()
620 int revision; in acpi_spmc_parse_constraints_intel() local
[all …]
/freebsd/stand/kboot/kboot/arch/aarch64/
H A Dexec.c122 int revision; in elf64_exec() local
140 revision = rsdp->Revision; in elf64_exec()
141 if (revision == 0) in elf64_exec()
142 revision = 1; in elf64_exec()
143 sprintf(buf, "%d", revision); in elf64_exec()
153 if (revision >= 2) { in elf64_exec()
/freebsd/sys/x86/x86/
H A Ducode_subr.c97 ucode_amd_find(const char *path, uint32_t signature, uint32_t *revision, in ucode_amd_find() argument
115 WARNX(1, "microcode revision %#x", *revision); in ucode_amd_find()
215 if (fw_header->patch_id <= *revision) { in ucode_amd_find()
217 fw_header->patch_id, *revision); in ucode_amd_find()
225 *revision = fw_header->patch_id; in ucode_amd_find()
/freebsd/contrib/file/magic/Magdir/
H A Drevision3 # $File: revision,v 1.12 2024/08/30 17:29:28 christos Exp $
4 # file(1) magic for revision control files
39 # Type: Bazaar revision bundles and merge requests
42 0 string #\ Bazaar\ revision\ bundle\ v Bazaar Bundle
H A Dgnu20 >4 ulelong x revision
25 # only found three revision combinations 0.0 0.1 1.1 as unsigned 32-bit
26 # major revision
28 # minor revision
37 # for revision x.0 offset of table with originals is 1Ch if directly after header
43 # The following variables are only used in .mo files with minor revision >= 1
109 >4 beshort x revision %d.
/freebsd/sys/arm/arm/
H A Dmachdep_boot.c90 SYSCTL_UINT(_hw_board, OID_AUTO, revision, CTLFLAG_RD,
108 board_set_revision(uint32_t revision) in board_set_revision() argument
111 board_revision = revision; in board_set_revision()
189 uint32_t revision; in linux_parse_boot_param() local
239 revision = walker->u.tag_rev.rev; in linux_parse_boot_param()
240 board_set_revision(revision); in linux_parse_boot_param()
/freebsd/sys/contrib/dev/rtw89/
H A Dacpi.h66 u8 revision; member
79 u8 revision; member
87 u8 revision; member
99 u8 revision; member
118 u8 revision; member
/freebsd/usr.sbin/mlxcontrol/
H A Dutil.c112 char *type, *device, *vendor, *revision; in mlx_print_phys_drv() local
151 if (!mlx_scsi_inquiry(0, chn, targ, &vendor, &device, &revision)) { in mlx_print_phys_drv()
152 printf("'%8.8s' '%16.16s' '%4.4s'", vendor, device, revision); in mlx_print_phys_drv()
/freebsd/contrib/blocklist/diff/
H A Dnamed.diff54 retrieving revision 1.8
72 retrieving revision 1.11
96 retrieving revision 1.15
122 retrieving revision 1.17
156 retrieving revision 1.9
196 retrieving revision 1.7
/freebsd/contrib/ofed/libcxgb4/
H A Dt4_chip_type.h51 #define CHELSIO_CHIP_CODE(version, revision) (((version) << 4) | (revision))
50 CHELSIO_CHIP_CODE(version,revision) global() argument
/freebsd/usr.sbin/mptutil/
H A Dmpt_drive.c303 u_char vendor[9], product[17], revision[5]; in mpt_pd_inq_string() local
311 cam_strvis(revision, inq_data->ProductRevLevel, in mpt_pd_inq_string()
312 sizeof(inq_data->ProductRevLevel), sizeof(revision)); in mpt_pd_inq_string()
317 product, revision); in mpt_pd_inq_string()
320 vendor, product, revision); in mpt_pd_inq_string()
H A Dmpt_cam.c303 char vendor[16], product[48], revision[16], rstr[12]; in format_scsi_inquiry() local
316 cam_strvis(revision, inq_data->revision, sizeof(inq_data->revision), in format_scsi_inquiry()
317 sizeof(revision)); in format_scsi_inquiry()
322 "<%s %s> SATA", product, revision); in format_scsi_inquiry()
339 vendor, product, revision, rstr); in format_scsi_inquiry()
/freebsd/sys/dev/fxp/
H A Dif_fxp.c506 sc->revision = FXP_REV_82559_A0; in fxp_attach()
510 sc->revision = FXP_REV_82557; in fxp_attach()
512 sc->revision = pci_get_revid(dev); in fxp_attach()
518 if (sc->revision >= FXP_REV_82558_A4 && in fxp_attach()
519 sc->revision != FXP_REV_82559S_A) { in fxp_attach()
525 if (sc->revision == FXP_REV_82550_C) { in fxp_attach()
538 if (sc->revision < FXP_REV_82558_A4) { in fxp_attach()
550 if (sc->revision == FXP_REV_82557 && (data & FXP_PHY_DEVICE_MASK) != 0 in fxp_attach()
568 (sc->ident->ich == 0 && sc->revision >= FXP_REV_82559_A0)) { in fxp_attach()
601 if (sc->revision != FXP_REV_82557) { in fxp_attach()
[all …]

12345678910>>...16