Lines Matching defs:ucode
590 * This scans the ucode blob for the proper container as we can have multiple
596 static size_t parse_container(u8 *ucode, size_t size, struct cont_desc *desc)
600 u32 *hdr = (u32 *)ucode;
604 if (!verify_equivalence_table(ucode, size))
607 buf = ucode;
661 * container which has a patch for this CPU so return 0 to mean, @ucode
667 desc->data = ucode;
677 * Scan the ucode blob for the proper container as we can have multiple
680 static void scan_containers(u8 *ucode, size_t size, struct cont_desc *desc)
683 size_t s = parse_container(ucode, size, desc);
689 ucode += s;
736 char fw_name[36] = "amd-ucode/microcode_amd.bin";
745 "amd-ucode/microcode_amd_fam%02hhxh.bin", family);
846 * a small, trivial cache of per-family ucode patches
1230 * amd-ucode/microcode_amd.bin
1236 * amd-ucode/microcode_amd_fam15h.bin
1237 * amd-ucode/microcode_amd_fam16h.bin
1244 char fw_name[36] = "amd-ucode/microcode_amd.bin";
1253 snprintf(fw_name, sizeof(fw_name), "amd-ucode/microcode_amd_fam%.2xh.bin", c->x86);