Lines Matching refs:update

1016 			dprintf("find_microcode_intel update is too small for header\n");
1030 dprintf("find_microcode_intel update is too small for data\n");
1035 // prepare the next update
1043 // 9.11.6 The microcode update data requires a 16-byte boundary
1093 struct intel_microcode_header* update = (struct intel_microcode_header*)sLoadedUcodeUpdate;
1094 if (update == NULL) {
1095 update = find_microcode_intel((addr_t)sUcodeData, sUcodeDataSize,
1098 if (update == NULL) {
1099 dprintf("CPU %d: no update found\n", currentCPU);
1100 } else if (update->update_revision != revision) {
1101 addr_t data = (addr_t)update + sizeof(struct intel_microcode_header);
1106 dprintf("CPU %d: update failed\n", currentCPU);
1109 sLoadedUcodeUpdate = update;
1128 dprintf("find_microcode_amd update is too small for header\n");
1133 dprintf("find_microcode_amd update invalid magic\n");
1143 dprintf("find_microcode_amd update first section invalid\n");
1163 dprintf("find_microcode_amd update cpu not found in equiv table\n");
1174 dprintf("find_microcode_amd update firmware section invalid\n");
1182 dprintf("find_microcode_amd update found rev_id %x\n", header->processor_rev_id);
1190 dprintf("find_microcode_amd update chipset specific firmware\n");
1200 dprintf("find_microcode_amd no fw update found for this cpu\n");
1213 struct amd_microcode_header* update = (struct amd_microcode_header*)sLoadedUcodeUpdate;
1214 if (update == NULL) {
1215 update = find_microcode_amd((addr_t)sUcodeData, sUcodeDataSize,
1218 if (update != NULL) {
1219 addr_t data = (addr_t)update;
1226 dprintf("CPU %d: update failed\n", currentCPU);
1229 sLoadedUcodeUpdate = update;
1235 dprintf("CPU %d: no update found\n", currentCPU);