Searched refs:guid (Results 1 - 25 of 63) sorted by relevance

123

/u-boot/cmd/
H A Defi_common.c21 printf("%p %pUl %s\n", tab->table, tab->guid.b,
22 uuid_guid_get_str(tab->guid.b) ?: "(unknown)");
H A Dnvedit_efi.c46 * @guid: Vendor GUID
51 static void efi_dump_single_var(u16 *name, const efi_guid_t *guid, bool verbose) argument
63 ret = efi_get_variable_int(name, guid, &attributes, &size, data, &time);
69 ret = efi_get_variable_int(name, guid, &attributes, &size,
80 printf("%ls:\n %pUl (%pUs)\n", name, guid, guid);
144 efi_guid_t guid; local
157 &guid);
169 &guid);
176 if (guid_p && guidcmp(guid_p, &guid))
211 efi_guid_t guid; local
382 efi_guid_t guid; local
[all...]
H A Defidebug.c72 printf("Capsule guid: %pUl\n", &capsule->capsule_guid);
129 printf("Capsule guid: %pUl\n", &capsule->capsule_guid);
232 efi_guid_t guid; local
240 guid = efi_guid_capsule_report;
243 ret = efi_get_variable_int(u"CapsuleLast", &guid, NULL,
268 ret = efi_get_variable_int(var_name16, &guid, NULL, &size, NULL, NULL);
273 ret = efi_get_variable_int(var_name16, &guid, NULL, &size,
284 printf("Capsule guid: %pUl\n", &result->capsule_guid);
456 efi_guid_t **guid; local
480 ret = EFI_CALL(BS->protocols_per_handle(handles[i], &guid,
793 efi_guid_t guid; local
973 efi_guid_t guid; local
1095 efi_guid_t guid; local
1243 efi_guid_t guid; local
1293 efi_guid_t guid; local
[all...]
/u-boot/arch/x86/lib/
H A Dhob.c38 * @guid: GUID to search
43 const struct hob_header *hob_get_next_guid_hob(const efi_guid_t *guid, argument
52 if (!guidcmp(guid, &guid_hob->name))
66 * @guid A pointer to HOB GUID.
72 const efi_guid_t *guid)
76 guid_hob = hob_get_next_guid_hob(guid, hob_list);
71 hob_get_guid_hob_data(const void *hob_list, u32 *len, const efi_guid_t *guid) argument
/u-boot/arch/x86/lib/fsp/
H A Dfsp_support.c103 const efi_guid_t *guid)
116 if (!guidcmp(&res_desc->owner, guid)) {
132 const efi_guid_t guid = FSP_HOB_RESOURCE_OWNER_FSP_GUID; local
137 &length, &guid);
146 const efi_guid_t guid = FSP_HOB_RESOURCE_OWNER_TSEG_GUID; local
151 &length, &guid);
160 const efi_guid_t guid = FSP_NON_VOLATILE_STORAGE_HOB_GUID; local
162 return hob_get_guid_hob_data(hob_list, len, &guid);
167 const efi_guid_t guid = FSP_VARIABLE_NV_DATA_HOB_GUID; local
169 return hob_get_guid_hob_data(hob_list, len, &guid);
102 fsp_get_reserved_mem_from_guid(const void *hob_list, u64 *len, const efi_guid_t *guid) argument
174 const efi_guid_t guid = FSP_BOOTLOADER_TEMP_MEM_HOB_GUID; local
181 const efi_guid_t guid = FSP_GRAPHICS_INFO_HOB_GUID; local
[all...]
/u-boot/lib/efi_selftest/
H A Defi_selftest_ecpt.c19 * @guid: GUID to find
23 const efi_guid_t *guid) {
27 if (!memcmp(&ecpt->conformance_profiles[i], guid, 16))
30 efi_st_error("GUID %pU not found\n", guid);
22 ecpt_find_guid(struct efi_conformance_profiles_table *ecpt, const efi_guid_t *guid) argument
H A Defi_selftest_variables.c53 efi_guid_t guid; local
186 ret = runtime->get_next_variable_name(NULL, u"efi_st_var1", &guid);
193 ret = runtime->get_next_variable_name(&len, NULL, &guid);
207 ret = runtime->get_next_variable_name(&len, u"", &guid);
214 ret = runtime->get_next_variable_name(&len, u"efi_st_var1", &guid);
220 boottime->set_mem(&guid, 16, 0);
225 ret = runtime->get_next_variable_name(&len, varname, &guid);
233 if (!memcmp(&guid, &guid_vendor0, sizeof(efi_guid_t)) &&
242 if (!memcmp(&guid, &guid_vendor1, sizeof(efi_guid_t)) &&
H A Defi_selftest_util.c114 void *efi_st_get_config_table(const efi_guid_t *guid) argument
119 if (!guidcmp(guid, &st_systable->tables[i].guid))
/u-boot/arch/x86/cpu/slimbootloader/
H A Dslimbootloader.c17 * The performance info guid hob has all performance timestamp data, but
28 const efi_guid_t guid = SBL_PERFORMANCE_INFO_GUID; local
36 data = hob_get_guid_hob_data(gd->arch.hob_list, NULL, &guid);
H A Dserial.c20 const efi_guid_t guid = SBL_SERIAL_PORT_INFO_GUID; local
27 data = hob_get_guid_hob_data(gd->arch.hob_list, NULL, &guid);
/u-boot/cmd/x86/
H A Dhob.c42 efi_guid_t guid; member in struct:guid_name
56 { {}, "zero-guid" },
60 static const char *guid_to_name(const efi_guid_t *guid) argument
65 if (!guidcmp(guid, &entry->guid))
98 efi_guid_t *guid; local
141 guid = (efi_guid_t *)(hdr + 1);
142 name = guid_to_name(guid);
144 uuid_bin_to_str(guid->b, uuid,
/u-boot/tools/
H A Defivar.py71 def __init__(self, size, attrs, time, guid, name, data):
75 self.guid = guid
114 size, attrs, time, guid = struct.unpack_from(self.efi.var_entry_fmt, self.ents, offs)
122 return EfiVariable(size, attrs, time, uuid.UUID(bytes_le=guid), name, data), offs
139 def _set_var(self, guid, name_data, size, attrs, tsec):
144 uuid.UUID(guid).bytes_le)
148 def del_var(self, guid, name, attrs):
152 if var.name == name and str(var.guid) == guid
[all...]
H A Dmkeficapsule.c40 {"guid", required_argument, NULL, 'g'},
61 "\t-g, --guid <guid string> guid for image blob type\n"
389 * @guid: GUID of related FMP driver
406 static int create_fwbin(char *path, char *bin, efi_guid_t *guid, argument
425 fprintf(stderr, "\tbin: %s\n\ttype: %pUl\n", bin, guid);
528 memcpy(&image.update_image_type_id, guid, sizeof(*guid));
608 static int create_empty_capsule(char *path, efi_guid_t *guid, boo argument
654 efi_guid_t *guid = ptr; local
874 efi_guid_t *guid; local
[all...]
/u-boot/tools/binman/etype/
H A Defi_empty_capsule.py22 - image-guid: Image GUID which will be used for identifying the
62 self.image_guid = fdt_util.GetString(self._node, 'image-guid')
76 guid = self.image_guid
78 guid = get_binman_test_guid('binman-test')
80 ret = self.mkeficapsule.generate_empty_capsule(guid, capsule_fname,
H A Defi_capsule.py43 - image-guid: Image GUID which will be used for identifying the
75 image-guid = SANDBOX_UBOOT_IMAGE_GUID;
94 self.required_props = ['image-index', 'image-guid']
109 self.image_guid = fdt_util.GetString(self._node, 'image-guid')
136 guid = self.image_guid
138 guid = get_binman_test_guid('binman-test')
141 guid,
/u-boot/include/
H A Defi_variable.h61 * @vendor: vendor's guid
111 * @guid: vendor GUID
118 efi_guid_t guid; member in struct:efi_var_entry
198 * @guid: GUID of the variable
203 struct efi_var_entry *efi_var_mem_find(const efi_guid_t *guid, const u16 *name,
250 * efi_auth_var_get_type() - convert variable name and guid to enum
253 * @guid: guid of UEFI variable
257 const efi_guid_t *guid);
263 * Return: guid o
[all...]
H A Dmm_communication.h147 * @guid: vendor GUID
157 efi_guid_t guid; member in struct:smm_variable_access
183 * @guid: vendor GUID
190 efi_guid_t guid; member in struct:smm_variable_getnext
245 * @guid: vendor GUID
253 efi_guid_t guid; member in struct:smm_variable_var_check_property
/u-boot/fs/squashfs/
H A Dsqfs_filesystem.h94 __le16 guid; member in struct:squashfs_base_inode
103 __le16 guid; member in struct:squashfs_ipc_inode
113 __le16 guid; member in struct:squashfs_lipc_inode
124 __le16 guid; member in struct:squashfs_dev_inode
135 __le16 guid; member in struct:squashfs_ldev_inode
147 __le16 guid; member in struct:squashfs_symlink_inode
159 __le16 guid; member in struct:squashfs_reg_inode
173 __le16 guid; member in struct:squashfs_lreg_inode
190 __le16 guid; member in struct:squashfs_dir_inode
204 __le16 guid; member in struct:squashfs_ldir_inode
[all...]
/u-boot/lib/efi_loader/
H A Defi_var_common.c22 const efi_guid_t *guid; member in struct:efi_auth_var_name_type
116 * @vendor: vendor's guid
174 efi_get_variable_runtime(u16 *variable_name, const efi_guid_t *guid, argument
179 ret = efi_get_variable_mem(variable_name, guid, attributes, data_size,
191 u16 *variable_name, efi_guid_t *guid)
194 guid, EFI_VARIABLE_RUNTIME_ACCESS);
366 const efi_guid_t *guid)
370 !guidcmp(guid, name_type[i].guid))
380 return name_type[i].guid;
190 efi_get_next_variable_name_runtime(efi_uintn_t *variable_name_size, u16 *variable_name, efi_guid_t *guid) argument
365 efi_auth_var_get_type(const u16 *name, const efi_guid_t *guid) argument
[all...]
H A Defi_helper.c70 * @guid: vendor GUID of the VenMedia() device path node identifying the
75 struct efi_device_path *efi_get_dp_from_boot(const efi_guid_t *guid) argument
95 return efi_dp_from_lo(&lo, guid);
103 efi_guid_t guid; member in struct:guid_to_hash_map
131 /** guid_to_sha_str - return the sha string e.g "sha256" for a given guid
134 * @guid: guid to check
138 const char *guid_to_sha_str(const efi_guid_t *guid) argument
143 if (!guidcmp(guid, &guid_to_hash[i].guid))
245 efi_next_variable_name(efi_uintn_t *size, u16 **buf, efi_guid_t *guid) argument
388 efi_get_configuration_table(const efi_guid_t *guid) argument
[all...]
H A Defi_var_file.c118 (efi_auth_var_get_type(var->name, &var->guid) !=
120 !guidcmp(&var->guid, &shim_lock_guid) ||
125 if (efi_var_mem_find(&var->guid, var->name, NULL))
127 ret = efi_var_mem_ins(var->name, &var->guid, var->attr,
H A Defi_var_mem.c25 * @guid: GUID to compare
31 efi_var_mem_compare(struct efi_var_entry *var, const efi_guid_t *guid, argument
39 for (guid1 = (u8 *)&var->guid, guid2 = (u8 *)guid, i = 0;
82 *efi_var_mem_find(const efi_guid_t *guid, const u16 *name, argument
99 efi_var_mem_compare(efi_current_var, guid, name, next)) {
111 match = efi_var_mem_compare(var, guid, name, &pos);
178 efi_memcpy_runtime(&var->guid, vendor, sizeof(efi_guid_t));
386 efi_memcpy_runtime(vendor, &var->guid, sizeof(efi_guid_t));
/u-boot/arch/x86/lib/fsp2/
H A Dfsp_support.c22 static efi_guid_t guid = FSP_HEADER_GUID; local
71 if (memcmp(&file_hdr->name, &guid, sizeof(guid)))
/u-boot/arch/x86/include/asm/fsp/
H A Dfsp_support.h64 * @guid: A pointer to the owner guild.
70 u64 *len, const efi_guid_t *guid);
/u-boot/arch/x86/include/asm/
H A Dhob.h208 * @guid: GUID to search
213 const struct hob_header *hob_get_next_guid_hob(const efi_guid_t *guid,
222 * @guid A pointer to HOB GUID.
228 const efi_guid_t *guid);

Completed in 182 milliseconds

123