blob: cd1a95b4521b89c8c68ada0a0b132a5f378d5d58 [file] [log] [blame]
Haojian Zhuang91f56462016-07-28 14:19:36 +08001/*
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +01002 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
Haojian Zhuang91f56462016-07-28 14:19:36 +08003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Haojian Zhuang91f56462016-07-28 14:19:36 +08005 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef PARTITION_H
8#define PARTITION_H
Haojian Zhuang91f56462016-07-28 14:19:36 +08009
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +010010#include <stdint.h>
Haojian Zhuang91f56462016-07-28 14:19:36 +080011
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <lib/cassert.h>
Sughosh Ganue9269152021-12-07 16:49:21 +053013#include <drivers/partition/efi.h>
Sughosh Ganu2436c1c2021-07-02 16:22:55 +053014#include <tools_share/uuid.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015
Haojian Zhuang91f56462016-07-28 14:19:36 +080016#if !PLAT_PARTITION_MAX_ENTRIES
17# define PLAT_PARTITION_MAX_ENTRIES 128
18#endif /* PLAT_PARTITION_MAX_ENTRIES */
19
20CASSERT(PLAT_PARTITION_MAX_ENTRIES <= 128, assert_plat_partition_max_entries);
21
Haojian Zhuang42a746d2019-09-14 18:01:16 +080022#if !PLAT_PARTITION_BLOCK_SIZE
23# define PLAT_PARTITION_BLOCK_SIZE 512
24#endif /* PLAT_PARTITION_BLOCK_SIZE */
25
26CASSERT((PLAT_PARTITION_BLOCK_SIZE == 512) ||
27 (PLAT_PARTITION_BLOCK_SIZE == 4096),
28 assert_plat_partition_block_size);
29
30#define LEGACY_PARTITION_BLOCK_SIZE 512
Haojian Zhuang91f56462016-07-28 14:19:36 +080031
Haojian Zhuang91f56462016-07-28 14:19:36 +080032typedef struct partition_entry {
33 uint64_t start;
34 uint64_t length;
35 char name[EFI_NAMELEN];
Sughosh Ganu2436c1c2021-07-02 16:22:55 +053036 struct efi_guid part_guid;
Haojian Zhuang91f56462016-07-28 14:19:36 +080037} partition_entry_t;
38
39typedef struct partition_entry_list {
40 partition_entry_t list[PLAT_PARTITION_MAX_ENTRIES];
41 int entry_count;
42} partition_entry_list_t;
43
44int load_partition_table(unsigned int image_id);
45const partition_entry_t *get_partition_entry(const char *name);
46const partition_entry_list_t *get_partition_entry_list(void);
47void partition_init(unsigned int image_id);
48
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000049#endif /* PARTITION_H */