Searched refs:gpt_e (Results 1 - 5 of 5) sorted by relevance

/u-boot/disk/
H A Dpart_efi.c154 static int validate_gpt_entries(gpt_header *gpt_h, gpt_entry *gpt_e) argument
159 calc_crc32 = efi_crc32((const unsigned char *)gpt_e,
367 int write_gpt_table(struct blk_desc *desc, gpt_header *gpt_h, gpt_entry *gpt_e) argument
379 calc_crc32 = efi_crc32((const unsigned char *)gpt_e,
393 pte_blk_cnt, gpt_e) != pte_blk_cnt)
399 + 1, pte_blk_cnt, gpt_e) != pte_blk_cnt)
415 gpt_header *gpt_h, gpt_entry *gpt_e,
458 gpt_e[i].starting_lba = cpu_to_le64(start);
467 gpt_e[i].ending_lba = gpt_h->last_usable_lba;
469 gpt_e[
414 gpt_fill_pte(struct blk_desc *desc, gpt_header *gpt_h, gpt_entry *gpt_e, struct disk_partition *partitions, int parts) argument
608 gpt_entry *gpt_e; local
723 write_one_gpt_table(struct blk_desc *desc, gpt_header *gpt_h, gpt_entry *gpt_e) argument
797 gpt_entry *gpt_e; local
872 gpt_entry *gpt_e; local
892 gpt_entry *gpt_e; local
[all...]
/u-boot/include/
H A Drkmtd.h60 gpt_entry *gpt_e; member in struct:rkmtd_dev
H A Dpart.h501 * @gpt_e: pointer to GPT partition table entries
505 int write_gpt_table(struct blk_desc *desc, gpt_header *gpt_h, gpt_entry *gpt_e);
512 * @gpt_e: GPT partition table entries
518 int gpt_fill_pte(struct blk_desc *desc, gpt_header *gpt_h, gpt_entry *gpt_e,
/u-boot/drivers/block/
H A Drkmtd.c384 debug("gpt_e : %d\n", i);
387 plat->gpt_e, sizeof(gpt_entry));
710 plat->gpt_e = devm_kzalloc(plat->dev, sizeof(gpt_entry), GFP_KERNEL);
711 if (!plat->gpt_e)
728 /* Init gpt_e */
729 plat->gpt_e->starting_lba = cpu_to_le64(64);
730 plat->gpt_e->ending_lba = cpu_to_le64(LBA - 34);
732 debug("starting_lba : %llu\n", le64_to_cpu(plat->gpt_e->starting_lba));
733 debug("ending_lba : %llu\n", le64_to_cpu(plat->gpt_e->ending_lba));
735 memcpy(plat->gpt_e
[all...]
/u-boot/lib/efi_loader/
H A Defi_tcg2.c1154 gpt_entry *gpt_e; local
1222 gpt_e = entry;
1224 if (guidcmp(&null_guid, &gpt_e->partition_type_guid))
1227 gpt_e = (gpt_entry *)((u8 *)gpt_e + gpt_h->sizeof_partition_entry);
1242 gpt_e = entry;
1245 if (guidcmp(&null_guid, &gpt_e->partition_type_guid)) {
1248 gpt_e, gpt_h->sizeof_partition_entry);
1252 gpt_e = (gpt_entry *)((u8 *)gpt_e
[all...]

Completed in 60 milliseconds