Searched refs:revision (Results 1 - 25 of 180) sorted by relevance

12345678

/freebsd-current/stand/i386/libi386/
H A Dbiosacpi.c54 int revision; local
68 revision = rsdp->Revision;
69 if (revision == 0)
70 revision = 1;
71 sprintf(buf, "%d", revision);
72 setenv("acpi.revision", buf, 1);
78 if (revision >= 2) {
/freebsd-current/sys/dev/isci/scil/
H A Dintel_pci.h77 U8 revision; member in struct:sci_pci_common_header
/freebsd-current/sys/arm/ti/
H A Dti_cpuid.c69 * ti_revision - Returns the revision number of the device
71 * Simply returns an identifier for the revision of the chip we are running
84 * omap4_get_revision - determines omap4 revision
86 * Reads the registers to determine the revision of the chip we are currently
95 uint32_t revision; local
118 revision = ((id_code >> 28) & 0xf);
122 * the ARM cpuid to get the correct revision.
124 if (revision == 0) {
126 revision = (id_code & 0xf) - 1;
131 switch (revision) {
[all...]
/freebsd-current/sys/arm/broadcom/bcm2835/
H A Dbcm2838_xhci.c116 uint32_t revision; local
119 revision = pci_read_config(dev, VL805_FIRMWARE_REG, 4);
120 loaded = !(revision == 0 || revision == 0xffffffff);
128 "note: xhci firmware detected; firmware is revision %x.\n",
129 revision);
134 return (revision);
140 uint32_t revision, dev_addr; local
143 revision = bcm_xhci_check_firmware(dev, false);
144 if (revision >
[all...]
/freebsd-current/contrib/ofed/libcxgb4/
H A Dt4_chip_type.h50 #define CHELSIO_CHIP_CODE(version, revision) (((version) << 4) | (revision))
/freebsd-current/usr.sbin/cpucontrol/
H A Dvia.c87 int32_t revision; local
128 revision = msrargs.data >> 32; /* Revision in the high dword. */
172 if (fw_header->revision != 0 && revision >= fw_header->revision) {
174 path, fw_header->revision);
178 path, dev, revision, fw_header->revision);
H A Dvia.h39 int32_t revision; /* Unique version number. */ member in struct:via_fw_header
H A Damd10h.c95 uint32_t revision; local
124 revision = (uint32_t)msrargs.data;
126 selected_fw = ucode_amd_find(path, signature, revision, fw_image,
131 fprintf(stderr, "%s: updating cpu %s to revision %#x... ",
132 path, dev, revision);
152 if (new_rev != revision)
153 WARNX(0, "revision after update %#x", new_rev);
H A Dintel.h39 int32_t revision; /* Unique version number. */ member in struct:intel_fw_header
H A Dintel.c90 int32_t revision; local
144 revision = msrargs.data >> 32; /* Revision in the high dword. */
247 if (revision >= fw_header->revision) {
249 path, fw_header->revision);
253 path, dev, revision, fw_header->revision);
/freebsd-current/tools/tools/commitsdb/
H A Dquery_commit_db3 # This script takes a filename and revision number as arguments
13 # Take the filename and revision number from the command line.
15 my ($file, $revision, $genpatch) = (shift, shift, shift);
17 # Find the checksum of the named revision.
28 next unless $name eq $file and $rev eq $revision;
33 # Handle the fall-out if the file/revision wasn't matched.
41 die "Can't find $file rev $revision in database\n";
59 print `cvs log -r$revision $file` if $genpatch;
73 # Return the previous revision number.
H A Dmake_commit_db5 # messages of each revision of every file in the tree.
70 # Record the hash of the message against the revision.
73 # Get the revision number
74 $e =~ s/^revision\s*(\S*)\n//s;
/freebsd-current/share/doc/usd/19.memacros/
H A DMakefile9 revision=`sed -e 's/^0$$//' -e 's/^[1-9].*$$/.&/' ${GROFFDIR}/REVISION` macro
12 sed -e "s;@VERSION@;$(version)$(revision);" ${.ALLSRC} > ${.TARGET}
/freebsd-current/share/doc/usd/20.meref/
H A DMakefile9 revision=`sed -e 's/^0$$//' -e 's/^[1-9].*$$/.&/' ${GROFFDIR}/REVISION` macro
12 sed -e "s;@VERSION@;$(version)$(revision);" ${.ALLSRC} > ${.TARGET}
/freebsd-current/usr.bin/patch/
H A Dinp.c253 /* now check for revision, if any */
255 if (revision != NULL) {
261 revision);
265 revision);
269 revision);
275 revision);
289 bool found_revision = (revision == NULL);
307 if (revision != NULL && !found_revision && rev_in_string(p))
316 if (revision != NULL) {
322 revision);
[all...]
/freebsd-current/usr.sbin/mlxcontrol/
H A Dutil.c112 char *type, *device, *vendor, *revision; local
151 if (!mlx_scsi_inquiry(0, chn, targ, &vendor, &device, &revision)) {
152 printf("'%8.8s' '%16.16s' '%4.4s'", vendor, device, revision);
/freebsd-current/sys/arm/nvidia/
H A Dtegra_efuse.h53 enum tegra_revision revision; member in struct:tegra_sku_info
/freebsd-current/sys/contrib/dev/iwlwifi/fw/
H A Duefi.h24 u8 revision; member in struct:uefi_cnv_wlan_sgom_data
29 u8 revision; member in struct:uefi_cnv_common_step_data
/freebsd-current/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) argument
78 if (revision <= value)
82 if (revision >= value)
86 if (revision == value)
/freebsd-current/sys/x86/x86/
H A Ducode_subr.c97 ucode_amd_find(const char *path, uint32_t signature, uint32_t revision, argument
115 WARNX(1, "microcode revision %#x", revision);
215 if (fw_header->patch_id <= revision) {
216 WARNX(1, "patch_id %x, revision %x",
217 fw_header->patch_id, revision);
218 continue; /* not newer revision */
224 WARNX(3, "selecting revision: %x", fw_header->patch_id);
225 revision = fw_header->patch_id;
/freebsd-current/sys/cam/ata/
H A Data_all.c511 char product[48], revision[16]; local
515 cam_strvis(revision, ident_data->revision, sizeof(ident_data->revision),
516 sizeof(revision));
517 printf("<%s %s>", product, revision);
527 cam_strvis_sbuf(sb, ident_data->revision, sizeof(ident_data->revision), 0);
558 char vendor[9], product[17], revision[5], fw[5]; local
562 cam_strvis(revision, ident_dat
969 ata_revision2speed(int revision) argument
[all...]
/freebsd-current/sys/x86/include/
H A Ducode.h66 uint32_t revision, const uint8_t *fw_data, size_t fw_size,
/freebsd-current/stand/kboot/kboot/arch/aarch64/
H A Dexec.c123 int revision; local
141 revision = rsdp->Revision;
142 if (revision == 0)
143 revision = 1;
144 sprintf(buf, "%d", revision);
145 setenv("hint.acpi.0.revision", buf, 1);
146 setenv("acpi.revision", buf, 1);
154 if (revision >= 2) {
/freebsd-current/sys/arm/arm/
H A Dmachdep_boot.c90 SYSCTL_UINT(_hw_board, OID_AUTO, revision, CTLFLAG_RD,
91 &board_revision, 0, "Board revision");
108 board_set_revision(uint32_t revision) argument
111 board_revision = revision;
189 uint32_t revision; local
239 revision = walker->u.tag_rev.rev;
240 board_set_revision(revision);
/freebsd-current/sys/dev/isci/
H A Disci_oem_parameters.c73 struct revision struct in struct:oem_parameters_table
77 } revision; member in struct:oem_parameters_table

Completed in 241 milliseconds

12345678