Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 2 | /* |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 3 | * (C) Copyright 2000-2004 |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 5 | */ |
| 6 | #ifndef _PART_H |
| 7 | #define _PART_H |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 8 | |
Simon Glass | ac8162f | 2016-02-29 15:25:39 -0700 | [diff] [blame] | 9 | #include <blk.h> |
wdenk | 0593920 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 10 | #include <ide.h> |
Caleb Connolly | 29cab7c | 2024-08-30 13:34:37 +0100 | [diff] [blame] | 11 | #include <u-boot/uuid.h> |
Corneliu Doban | 0c6776c | 2020-11-09 11:49:16 +0530 | [diff] [blame] | 12 | #include <linker_lists.h> |
AKASHI Takahiro | 7780a93 | 2022-04-19 10:01:52 +0900 | [diff] [blame] | 13 | #include <linux/errno.h> |
Alison Chaiken | f04d4b5 | 2017-07-04 11:18:50 -0700 | [diff] [blame] | 14 | #include <linux/list.h> |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 15 | |
Alexander Graf | 3b3d915 | 2016-03-04 01:09:56 +0100 | [diff] [blame] | 16 | struct block_drvr { |
| 17 | char *name; |
Alexander Graf | 3b3d915 | 2016-03-04 01:09:56 +0100 | [diff] [blame] | 18 | int (*select_hwpart)(int dev_num, int hwpart); |
| 19 | }; |
| 20 | |
Egbert Eich | 2eec2ab | 2013-04-09 21:11:56 +0000 | [diff] [blame] | 21 | #define LOG2(x) (((x & 0xaaaaaaaa) ? 1 : 0) + ((x & 0xcccccccc) ? 2 : 0) + \ |
| 22 | ((x & 0xf0f0f0f0) ? 4 : 0) + ((x & 0xff00ff00) ? 8 : 0) + \ |
| 23 | ((x & 0xffff0000) ? 16 : 0)) |
| 24 | #define LOG2_INVALID(type) ((type)((sizeof(type)<<3)-1)) |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 25 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 26 | /* Part types */ |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 27 | #define PART_TYPE_UNKNOWN 0x00 |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 28 | #define PART_TYPE_MAC 0x01 |
| 29 | #define PART_TYPE_DOS 0x02 |
| 30 | #define PART_TYPE_ISO 0x03 |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 31 | #define PART_TYPE_AMIGA 0x04 |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 32 | #define PART_TYPE_EFI 0x05 |
Alexey Romanov | d511967 | 2024-07-18 08:46:04 +0300 | [diff] [blame] | 33 | #define PART_TYPE_MTD 0x06 |
Alexey Romanov | c9f6113 | 2024-07-18 08:45:27 +0300 | [diff] [blame] | 34 | #define PART_TYPE_UBI 0x07 |
wdenk | 452cfd6 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 35 | |
Petr Kulhavy | 712257e | 2016-09-09 10:27:15 +0200 | [diff] [blame] | 36 | /* maximum number of partition entries supported by search */ |
| 37 | #define DOS_ENTRY_NUMBERS 8 |
| 38 | #define ISO_ENTRY_NUMBERS 64 |
| 39 | #define MAC_ENTRY_NUMBERS 64 |
| 40 | #define AMIGA_ENTRY_NUMBERS 8 |
Alexey Romanov | d511967 | 2024-07-18 08:46:04 +0300 | [diff] [blame] | 41 | #define MTD_ENTRY_NUMBERS 64 |
Alexey Romanov | c9f6113 | 2024-07-18 08:45:27 +0300 | [diff] [blame] | 42 | #define UBI_ENTRY_NUMBERS UBI_MAX_VOLUMES |
Alexey Romanov | d511967 | 2024-07-18 08:46:04 +0300 | [diff] [blame] | 43 | |
wdenk | f12e396 | 2003-06-29 21:03:46 +0000 | [diff] [blame] | 44 | /* |
| 45 | * Type string for U-Boot bootable partitions |
| 46 | */ |
| 47 | #define BOOT_PART_TYPE "U-Boot" /* primary boot partition type */ |
| 48 | #define BOOT_PART_COMP "PPCBoot" /* PPCBoot compatibility type */ |
| 49 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 50 | /* device types */ |
wdenk | f12e396 | 2003-06-29 21:03:46 +0000 | [diff] [blame] | 51 | #define DEV_TYPE_UNKNOWN 0xff /* not connected */ |
| 52 | #define DEV_TYPE_HARDDISK 0x00 /* harddisk */ |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 53 | #define DEV_TYPE_TAPE 0x01 /* Tape */ |
| 54 | #define DEV_TYPE_CDROM 0x05 /* CD-ROM */ |
| 55 | #define DEV_TYPE_OPDISK 0x07 /* optical disk */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 56 | |
Alison Chaiken | 462e232 | 2017-06-25 16:43:18 -0700 | [diff] [blame] | 57 | #define PART_NAME_LEN 32 |
| 58 | #define PART_TYPE_LEN 32 |
Heinrich Schuchardt | 72d7883 | 2022-01-11 16:03:38 +0100 | [diff] [blame] | 59 | #define MAX_SEARCH_PARTITIONS 128 |
Alison Chaiken | 462e232 | 2017-06-25 16:43:18 -0700 | [diff] [blame] | 60 | |
Heinrich Schuchardt | 59a860d | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 61 | #define PART_BOOTABLE ((int)BIT(0)) |
| 62 | #define PART_EFI_SYSTEM_PARTITION ((int)BIT(1)) |
| 63 | |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 64 | struct disk_partition { |
Frederic Leroy | e7ee028 | 2013-06-26 18:11:25 +0200 | [diff] [blame] | 65 | lbaint_t start; /* # of first block in partition */ |
| 66 | lbaint_t size; /* number of blocks in partition */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 67 | ulong blksz; /* block size in bytes */ |
Alison Chaiken | 462e232 | 2017-06-25 16:43:18 -0700 | [diff] [blame] | 68 | uchar name[PART_NAME_LEN]; /* partition name */ |
| 69 | uchar type[PART_TYPE_LEN]; /* string type description */ |
Heinrich Schuchardt | 59a860d | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 70 | /* |
| 71 | * The bootable is a bitmask with the following fields: |
| 72 | * |
| 73 | * PART_BOOTABLE the MBR bootable flag is set |
| 74 | * PART_EFI_SYSTEM_PARTITION the partition is an EFI system partition |
| 75 | */ |
| 76 | int bootable; |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 77 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
Alison Chaiken | 2cb47e6 | 2017-06-25 16:43:17 -0700 | [diff] [blame] | 78 | char uuid[UUID_STR_LEN + 1]; /* filesystem UUID as string, if exists */ |
Stephen Warren | c6c7b7a | 2012-09-21 09:50:59 +0000 | [diff] [blame] | 79 | #endif |
Patrick Delaunay | 8248c8d | 2015-10-27 11:00:27 +0100 | [diff] [blame] | 80 | #ifdef CONFIG_PARTITION_TYPE_GUID |
Alison Chaiken | 2cb47e6 | 2017-06-25 16:43:17 -0700 | [diff] [blame] | 81 | char type_guid[UUID_STR_LEN + 1]; /* type GUID as string, if exists */ |
Patrick Delaunay | 8248c8d | 2015-10-27 11:00:27 +0100 | [diff] [blame] | 82 | #endif |
Dalon Westergreen | 8d770f4 | 2017-02-10 17:15:34 -0800 | [diff] [blame] | 83 | #ifdef CONFIG_DOS_PARTITION |
Wolfgang Denk | 62fb2b4 | 2021-09-27 17:42:39 +0200 | [diff] [blame] | 84 | uchar sys_ind; /* partition type */ |
Dalon Westergreen | 8d770f4 | 2017-02-10 17:15:34 -0800 | [diff] [blame] | 85 | #endif |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 86 | }; |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 87 | |
Simon Glass | 23e3453 | 2023-08-24 13:55:31 -0600 | [diff] [blame] | 88 | /* Accessors for struct disk_partition field ->uuid */ |
| 89 | extern char *__invalid_use_of_disk_partition_uuid; |
| 90 | |
| 91 | static inline const char *disk_partition_uuid(const struct disk_partition *info) |
| 92 | { |
| 93 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
| 94 | return info->uuid; |
| 95 | #else |
| 96 | return __invalid_use_of_disk_partition_uuid; |
| 97 | #endif |
| 98 | } |
| 99 | |
| 100 | static inline void disk_partition_set_uuid(struct disk_partition *info, |
| 101 | const char *val) |
| 102 | { |
| 103 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
| 104 | strlcpy(info->uuid, val, UUID_STR_LEN + 1); |
| 105 | #endif |
| 106 | } |
| 107 | |
| 108 | static inline void disk_partition_clr_uuid(struct disk_partition *info) |
| 109 | { |
| 110 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
| 111 | *info->uuid = '\0'; |
| 112 | #endif |
| 113 | } |
| 114 | |
Simon Glass | b8d3a78 | 2023-08-24 13:55:32 -0600 | [diff] [blame] | 115 | /* Accessors for struct disk_partition field ->type_guid */ |
Heinrich Schuchardt | f4b4c4e | 2023-09-02 09:35:21 +0200 | [diff] [blame] | 116 | extern char *__invalid_use_of_disk_partition_type_guid; |
Simon Glass | b8d3a78 | 2023-08-24 13:55:32 -0600 | [diff] [blame] | 117 | |
Heinrich Schuchardt | f4b4c4e | 2023-09-02 09:35:21 +0200 | [diff] [blame] | 118 | /** |
| 119 | * disk_partition_type_guid() - get partition type GUID |
| 120 | * |
| 121 | * By using this function to get the partition type GUID we can use |
| 122 | * 'if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID))' instead of |
| 123 | * '#ifdef CONFIG_PARTITION_TYPE_GUID'. |
| 124 | * |
| 125 | * @info: partition information |
| 126 | * Return: partition type GUID |
| 127 | */ |
Simon Glass | b8d3a78 | 2023-08-24 13:55:32 -0600 | [diff] [blame] | 128 | static inline const |
Heinrich Schuchardt | f4b4c4e | 2023-09-02 09:35:21 +0200 | [diff] [blame] | 129 | char *disk_partition_type_guid(const struct disk_partition *info) |
Simon Glass | b8d3a78 | 2023-08-24 13:55:32 -0600 | [diff] [blame] | 130 | { |
| 131 | #ifdef CONFIG_PARTITION_TYPE_GUID |
| 132 | return info->type_guid; |
| 133 | #else |
Heinrich Schuchardt | f4b4c4e | 2023-09-02 09:35:21 +0200 | [diff] [blame] | 134 | return __invalid_use_of_disk_partition_type_guid; |
Simon Glass | b8d3a78 | 2023-08-24 13:55:32 -0600 | [diff] [blame] | 135 | #endif |
| 136 | } |
| 137 | |
Heinrich Schuchardt | f4b4c4e | 2023-09-02 09:35:21 +0200 | [diff] [blame] | 138 | /** |
| 139 | * disk_partition_set_type_guid() - set partition type GUID |
| 140 | * |
| 141 | * By using this function to set the partition type GUID we can use |
| 142 | * 'if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID))' instead of |
| 143 | * '#ifdef CONFIG_PARTITION_TYPE_GUID'. |
| 144 | * |
| 145 | * @info: partition information |
| 146 | * @val: partition type GUID as string |
| 147 | */ |
Simon Glass | b8d3a78 | 2023-08-24 13:55:32 -0600 | [diff] [blame] | 148 | static inline void disk_partition_set_type_guid(struct disk_partition *info, |
| 149 | const char *val) |
| 150 | { |
| 151 | #ifdef CONFIG_PARTITION_TYPE_GUID |
| 152 | strlcpy(info->type_guid, val, UUID_STR_LEN + 1); |
| 153 | #endif |
| 154 | } |
| 155 | |
| 156 | static inline void disk_partition_clr_type_guid(struct disk_partition *info) |
| 157 | { |
| 158 | #ifdef CONFIG_PARTITION_TYPE_GUID |
| 159 | *info->type_guid = '\0'; |
| 160 | #endif |
| 161 | } |
| 162 | |
Simon Glass | ed0ec66 | 2023-08-24 13:55:33 -0600 | [diff] [blame] | 163 | /* Accessors for struct disk_partition field ->sys_ind */ |
| 164 | extern int __invalid_use_of_disk_partition_sys_ind; |
| 165 | |
| 166 | static inline uint disk_partition_sys_ind(const struct disk_partition *info) |
| 167 | { |
| 168 | #ifdef CONFIG_DOS_PARTITION |
| 169 | return info->sys_ind; |
| 170 | #else |
| 171 | return __invalid_use_of_disk_partition_sys_ind; |
| 172 | #endif |
| 173 | } |
| 174 | |
Alison Chaiken | f04d4b5 | 2017-07-04 11:18:50 -0700 | [diff] [blame] | 175 | struct disk_part { |
| 176 | int partnum; |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 177 | struct disk_partition gpt_part_info; |
Alison Chaiken | f04d4b5 | 2017-07-04 11:18:50 -0700 | [diff] [blame] | 178 | struct list_head list; |
| 179 | }; |
| 180 | |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 181 | /* Misc _get_dev functions */ |
AKASHI Takahiro | 60bb6d7 | 2022-04-19 10:01:53 +0900 | [diff] [blame] | 182 | #if CONFIG_IS_ENABLED(PARTITIONS) |
Simon Glass | ddb1325 | 2016-02-29 15:25:41 -0700 | [diff] [blame] | 183 | /** |
Simon Glass | be1e9bb | 2016-02-29 15:25:42 -0700 | [diff] [blame] | 184 | * blk_get_dev() - get a pointer to a block device given its type and number |
Simon Glass | ddb1325 | 2016-02-29 15:25:41 -0700 | [diff] [blame] | 185 | * |
| 186 | * Each interface allocates its own devices and typically struct blk_desc is |
| 187 | * contained with the interface's data structure. There is no global |
| 188 | * numbering for block devices, so the interface name must be provided. |
| 189 | * |
| 190 | * @ifname: Interface name (e.g. "ide", "scsi") |
| 191 | * @dev: Device number (0 for first device on that interface, 1 for |
| 192 | * second, etc. |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 193 | * Return: |
| 194 | * pointer to the block device, or NULL if not available, or an error occurred. |
Simon Glass | ddb1325 | 2016-02-29 15:25:41 -0700 | [diff] [blame] | 195 | */ |
Simon Glass | be1e9bb | 2016-02-29 15:25:42 -0700 | [diff] [blame] | 196 | struct blk_desc *blk_get_dev(const char *ifname, int dev); |
Simon Glass | ddb1325 | 2016-02-29 15:25:41 -0700 | [diff] [blame] | 197 | |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 198 | struct blk_desc *mg_disk_get_dev(int dev); |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 199 | |
Joshua Watt | aa62d50 | 2023-07-03 08:39:54 -0500 | [diff] [blame] | 200 | /** |
| 201 | * part_get_info_by_type() - Get partitions from a block device using a specific |
| 202 | * partition driver |
| 203 | * |
| 204 | * Each interface allocates its own devices and typically struct blk_desc is |
| 205 | * contained with the interface's data structure. There is no global |
| 206 | * numbering for block devices, so the interface name must be provided. |
| 207 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 208 | * @desc: Block device descriptor |
Joshua Watt | aa62d50 | 2023-07-03 08:39:54 -0500 | [diff] [blame] | 209 | * @part: Partition number to read |
| 210 | * @part_type: Partition driver to use, or PART_TYPE_UNKNOWN to automatically |
| 211 | * choose a driver |
| 212 | * @info: Returned partition information |
| 213 | * |
| 214 | * Return: 0 on success, negative errno on failure |
| 215 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 216 | int part_get_info_by_type(struct blk_desc *desc, int part, int part_type, |
Joshua Watt | aa62d50 | 2023-07-03 08:39:54 -0500 | [diff] [blame] | 217 | struct disk_partition *info); |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 218 | int part_get_info(struct blk_desc *desc, int part, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 219 | struct disk_partition *info); |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 220 | /** |
| 221 | * part_get_info_whole_disk() - get partition info for the special case of |
| 222 | * a partition occupying the entire disk. |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 223 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 224 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 225 | * @info: returned partition information |
| 226 | * Return: 0 on success |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 227 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 228 | int part_get_info_whole_disk(struct blk_desc *desc, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 229 | struct disk_partition *info); |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 230 | |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 231 | void part_print(struct blk_desc *desc); |
| 232 | void part_init(struct blk_desc *desc); |
| 233 | void dev_print(struct blk_desc *desc); |
Simon Glass | e6649a6 | 2016-02-29 15:25:43 -0700 | [diff] [blame] | 234 | |
| 235 | /** |
| 236 | * blk_get_device_by_str() - Get a block device given its interface/hw partition |
| 237 | * |
| 238 | * Each interface allocates its own devices and typically struct blk_desc is |
| 239 | * contained with the interface's data structure. There is no global |
| 240 | * numbering for block devices, so the interface name must be provided. |
| 241 | * |
| 242 | * The hardware parition is not related to the normal software partitioning |
| 243 | * of a device - each hardware partition is effectively a separately |
| 244 | * accessible block device. When a hardware parition is selected on MMC the |
| 245 | * other hardware partitions become inaccessible. The same block device is |
| 246 | * used to access all hardware partitions, but its capacity may change when a |
| 247 | * different hardware partition is selected. |
| 248 | * |
| 249 | * When a hardware partition number is given, the block device switches to |
| 250 | * that hardware partition. |
| 251 | * |
| 252 | * @ifname: Interface name (e.g. "ide", "scsi") |
| 253 | * @dev_str: Device and optional hw partition. This can either be a string |
| 254 | * containing the device number (e.g. "2") or the device number |
| 255 | * and hardware partition number (e.g. "2.4") for devices that |
| 256 | * support it (currently only MMC). |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 257 | * @desc: Returns a pointer to the block device on success |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 258 | * Return: block device number (local to the interface), or -1 on error |
Simon Glass | e6649a6 | 2016-02-29 15:25:43 -0700 | [diff] [blame] | 259 | */ |
| 260 | int blk_get_device_by_str(const char *ifname, const char *dev_str, |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 261 | struct blk_desc **desc); |
Simon Glass | e76ee97 | 2016-02-29 15:25:44 -0700 | [diff] [blame] | 262 | |
| 263 | /** |
| 264 | * blk_get_device_part_str() - Get a block device and partition |
| 265 | * |
| 266 | * This calls blk_get_device_by_str() to look up a device. It also looks up |
| 267 | * a partition and returns information about it. |
| 268 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 269 | * @dev_part_str is in the format <dev>.<hw_part>:<part> where |
| 270 | * |
| 271 | * * <dev> is the device number, |
| 272 | * |
| 273 | * * <hw_part> is the optional hardware partition number and |
Simon Glass | e76ee97 | 2016-02-29 15:25:44 -0700 | [diff] [blame] | 274 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 275 | * * <part> is the partition number. |
| 276 | * |
| 277 | * If @ifname is "hostfs", then this function returns the sandbox host block |
Simon Glass | e76ee97 | 2016-02-29 15:25:44 -0700 | [diff] [blame] | 278 | * device. |
| 279 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 280 | * If @ifname is "ubi", then this function returns 0, with @info set to a |
Simon Glass | e76ee97 | 2016-02-29 15:25:44 -0700 | [diff] [blame] | 281 | * special UBI device. |
| 282 | * |
| 283 | * If @dev_part_str is NULL or empty or "-", then this function looks up |
| 284 | * the "bootdevice" environment variable and uses that string instead. |
| 285 | * |
| 286 | * If the partition string is empty then the first partition is used. If the |
| 287 | * partition string is "auto" then the first bootable partition is used. |
| 288 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 289 | * @ifname: Interface name (e.g. "ide", "scsi") |
Simon Glass | e76ee97 | 2016-02-29 15:25:44 -0700 | [diff] [blame] | 290 | * @dev_part_str: Device and partition string |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 291 | * @desc: Returns a pointer to the block device on success |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 292 | * @info: Returns partition information |
Simon Glass | e76ee97 | 2016-02-29 15:25:44 -0700 | [diff] [blame] | 293 | * @allow_whole_dev: true to allow the user to select partition 0 |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 294 | * (which means the whole device), false to require a valid |
| 295 | * partition number >= 1 |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 296 | * Return: partition number, or -1 on error |
Simon Glass | e76ee97 | 2016-02-29 15:25:44 -0700 | [diff] [blame] | 297 | * |
| 298 | */ |
| 299 | int blk_get_device_part_str(const char *ifname, const char *dev_part_str, |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 300 | struct blk_desc **desc, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 301 | struct disk_partition *info, int allow_whole_dev); |
Petr Kulhavy | 712257e | 2016-09-09 10:27:15 +0200 | [diff] [blame] | 302 | |
| 303 | /** |
| 304 | * part_get_info_by_name() - Search for a partition by name |
| 305 | * among all available registered partitions |
| 306 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 307 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 308 | * @name: the specified table entry name |
| 309 | * @info: returns the disk partition info |
Petr Kulhavy | 712257e | 2016-09-09 10:27:15 +0200 | [diff] [blame] | 310 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 311 | * Return: the partition number on match (starting on 1), -1 on no match, |
Alex Deymo | e2f689f | 2017-04-02 01:49:50 -0700 | [diff] [blame] | 312 | * otherwise error |
Petr Kulhavy | 712257e | 2016-09-09 10:27:15 +0200 | [diff] [blame] | 313 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 314 | int part_get_info_by_name(struct blk_desc *desc, const char *name, |
| 315 | struct disk_partition *info); |
Petr Kulhavy | 712257e | 2016-09-09 10:27:15 +0200 | [diff] [blame] | 316 | |
Petr Kulhavy | 2e790d5 | 2016-09-09 10:27:17 +0200 | [diff] [blame] | 317 | /** |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 318 | * part_get_info_by_dev_and_name_or_num() - Get partition info from dev number |
| 319 | * and part name, or dev number and |
| 320 | * part number. |
Ruslan Trofymenko | 5e171ef | 2019-07-05 15:37:31 +0300 | [diff] [blame] | 321 | * |
| 322 | * Parse a device number and partition description (either name or number) |
| 323 | * in the form of device number plus partition name separated by a "#" |
| 324 | * (like "device_num#partition_name") or a device number plus a partition number |
| 325 | * separated by a ":". For example both "0#misc" and "0:1" can be valid |
| 326 | * partition descriptions for a given interface. If the partition is found, sets |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 327 | * desc and part_info accordingly with the information of the partition. |
Ruslan Trofymenko | 5e171ef | 2019-07-05 15:37:31 +0300 | [diff] [blame] | 328 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 329 | * @dev_iface: Device interface |
| 330 | * @dev_part_str: Input partition description, like "0#misc" or "0:1" |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 331 | * @desc: Place to store the device description pointer |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 332 | * @part_info: Place to store the partition information |
| 333 | * @allow_whole_dev: true to allow the user to select partition 0 |
| 334 | * (which means the whole device), false to require a valid |
| 335 | * partition number >= 1 |
| 336 | * Return: the partition number on success, or negative errno on error |
Ruslan Trofymenko | 5e171ef | 2019-07-05 15:37:31 +0300 | [diff] [blame] | 337 | */ |
| 338 | int part_get_info_by_dev_and_name_or_num(const char *dev_iface, |
| 339 | const char *dev_part_str, |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 340 | struct blk_desc **desc, |
Sean Anderson | c81028d | 2021-02-05 09:38:56 -0500 | [diff] [blame] | 341 | struct disk_partition *part_info, |
| 342 | int allow_whole_dev); |
Ruslan Trofymenko | 5e171ef | 2019-07-05 15:37:31 +0300 | [diff] [blame] | 343 | |
| 344 | /** |
Petr Kulhavy | 2e790d5 | 2016-09-09 10:27:17 +0200 | [diff] [blame] | 345 | * part_set_generic_name() - create generic partition like hda1 or sdb2 |
| 346 | * |
| 347 | * Helper function for partition tables, which don't hold partition names |
| 348 | * (DOS, ISO). Generates partition name out of the device type and partition |
| 349 | * number. |
| 350 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 351 | * @desc: pointer to the block device |
Petr Kulhavy | 2e790d5 | 2016-09-09 10:27:17 +0200 | [diff] [blame] | 352 | * @part_num: partition number for which the name is generated |
| 353 | * @name: buffer where the name is written |
| 354 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 355 | void part_set_generic_name(const struct blk_desc *desc, int part_num, |
| 356 | char *name); |
Petr Kulhavy | 2e790d5 | 2016-09-09 10:27:17 +0200 | [diff] [blame] | 357 | |
Alexander Graf | 3b3d915 | 2016-03-04 01:09:56 +0100 | [diff] [blame] | 358 | extern const struct block_drvr block_drvr[]; |
Matthew McClintock | 6252b4f | 2011-05-24 05:31:19 +0000 | [diff] [blame] | 359 | #else |
Simon Glass | be1e9bb | 2016-02-29 15:25:42 -0700 | [diff] [blame] | 360 | static inline struct blk_desc *blk_get_dev(const char *ifname, int dev) |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 361 | { return NULL; } |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 362 | static inline struct blk_desc *mg_disk_get_dev(int dev) { return NULL; } |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 363 | |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 364 | static inline int part_get_info(struct blk_desc *desc, int part, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 365 | struct disk_partition *info) { return -1; } |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 366 | static inline int part_get_info_whole_disk(struct blk_desc *desc, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 367 | struct disk_partition *info) |
Rob Clark | 2b7bfd9 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 368 | { return -1; } |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 369 | static inline void part_print(struct blk_desc *desc) {} |
| 370 | static inline void part_init(struct blk_desc *desc) {} |
| 371 | static inline void dev_print(struct blk_desc *desc) {} |
Simon Glass | e6649a6 | 2016-02-29 15:25:43 -0700 | [diff] [blame] | 372 | static inline int blk_get_device_by_str(const char *ifname, const char *dev_str, |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 373 | struct blk_desc **desc) |
Stephen Warren | afd909c | 2012-09-21 09:50:56 +0000 | [diff] [blame] | 374 | { return -1; } |
Simon Glass | e76ee97 | 2016-02-29 15:25:44 -0700 | [diff] [blame] | 375 | static inline int blk_get_device_part_str(const char *ifname, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 376 | const char *dev_part_str, |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 377 | struct blk_desc **desc, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 378 | struct disk_partition *info, |
| 379 | int allow_whole_dev) |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 380 | { *desc = NULL; return -1; } |
AKASHI Takahiro | 140c59c | 2022-04-19 10:01:54 +0900 | [diff] [blame] | 381 | |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 382 | static inline int part_get_info_by_name(struct blk_desc *desc, const char *name, |
AKASHI Takahiro | 140c59c | 2022-04-19 10:01:54 +0900 | [diff] [blame] | 383 | struct disk_partition *info) |
| 384 | { |
| 385 | return -ENOENT; |
| 386 | } |
| 387 | |
Sean Anderson | f476b4a | 2021-04-12 18:53:05 -0400 | [diff] [blame] | 388 | static inline int |
| 389 | part_get_info_by_dev_and_name_or_num(const char *dev_iface, |
| 390 | const char *dev_part_str, |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 391 | struct blk_desc **desc, |
Sean Anderson | f476b4a | 2021-04-12 18:53:05 -0400 | [diff] [blame] | 392 | struct disk_partition *part_info, |
| 393 | int allow_whole_dev) |
| 394 | { |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 395 | *desc = NULL; |
Sean Anderson | f476b4a | 2021-04-12 18:53:05 -0400 | [diff] [blame] | 396 | return -ENOSYS; |
| 397 | } |
Matthew McClintock | 6252b4f | 2011-05-24 05:31:19 +0000 | [diff] [blame] | 398 | #endif |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 399 | |
AKASHI Takahiro | efb9a9d | 2022-04-19 10:05:09 +0900 | [diff] [blame] | 400 | struct udevice; |
| 401 | /** |
Simon Glass | 4e93eea | 2022-10-20 18:22:52 -0600 | [diff] [blame] | 402 | * disk_blk_read() - read blocks from a disk partition |
| 403 | * |
| 404 | * @dev: Device to read from (UCLASS_PARTITION) |
| 405 | * @start: Start block number to read in the partition (0=first) |
| 406 | * @blkcnt: Number of blocks to read |
| 407 | * @buffer: Destination buffer for data read |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 408 | * Return: number of blocks read, or -ve error number (see the |
Simon Glass | 4e93eea | 2022-10-20 18:22:52 -0600 | [diff] [blame] | 409 | * IS_ERR_VALUE() macro |
| 410 | */ |
| 411 | ulong disk_blk_read(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, |
| 412 | void *buffer); |
| 413 | |
| 414 | /** |
| 415 | * disk_blk_write() - write to a disk partition |
| 416 | * |
| 417 | * @dev: Device to write to (UCLASS_PARTITION) |
| 418 | * @start: Start block number to write in the partition (0=first) |
| 419 | * @blkcnt: Number of blocks to write |
| 420 | * @buffer: Source buffer for data to write |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 421 | * Return: number of blocks written, or -ve error number (see the |
Simon Glass | 4e93eea | 2022-10-20 18:22:52 -0600 | [diff] [blame] | 422 | * IS_ERR_VALUE() macro |
| 423 | */ |
| 424 | ulong disk_blk_write(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, |
| 425 | const void *buffer); |
| 426 | |
| 427 | /** |
| 428 | * disk_blk_erase() - erase a section of a disk partition |
| 429 | * |
| 430 | * @dev: Device to (partially) erase (UCLASS_PARTITION) |
| 431 | * @start: Start block number to erase in the partition (0=first) |
| 432 | * @blkcnt: Number of blocks to erase |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 433 | * Return: number of blocks erased, or -ve error number (see the |
Simon Glass | 4e93eea | 2022-10-20 18:22:52 -0600 | [diff] [blame] | 434 | * IS_ERR_VALUE() macro |
| 435 | */ |
| 436 | ulong disk_blk_erase(struct udevice *dev, lbaint_t start, lbaint_t blkcnt); |
AKASHI Takahiro | 8b57fe3 | 2022-04-19 10:05:16 +0900 | [diff] [blame] | 437 | |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 438 | /* |
| 439 | * We don't support printing partition information in SPL and only support |
| 440 | * getting partition information in a few cases. |
| 441 | */ |
Simon Glass | 209ae76 | 2024-09-29 19:49:49 -0600 | [diff] [blame] | 442 | #ifdef CONFIG_XPL_BUILD |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 443 | # define part_print_ptr(x) NULL |
Tien Fong Chee | 6091dd1 | 2019-01-23 14:20:05 +0800 | [diff] [blame] | 444 | # if defined(CONFIG_SPL_FS_EXT4) || defined(CONFIG_SPL_FS_FAT) || \ |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 445 | defined(CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION) |
| 446 | # define part_get_info_ptr(x) x |
| 447 | # else |
| 448 | # define part_get_info_ptr(x) NULL |
| 449 | # endif |
| 450 | #else |
| 451 | #define part_print_ptr(x) x |
| 452 | #define part_get_info_ptr(x) x |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 453 | #endif |
| 454 | |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 455 | /** |
| 456 | * struct part_driver - partition driver |
| 457 | */ |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 458 | struct part_driver { |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 459 | /** @name: partition name */ |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 460 | const char *name; |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 461 | /** @part_type: (MBR) partition type */ |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 462 | int part_type; |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 463 | /** @max_entries: maximum number of partition table entries */ |
| 464 | const int max_entries; |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 465 | /** |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 466 | * @get_info: Get information about a partition |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 467 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 468 | * @get_info.desc: Block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 469 | * @get_info.part: Partition number (1 = first) |
| 470 | * @get_info.info: Returns partition information |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 471 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 472 | int (*get_info)(struct blk_desc *desc, int part, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 473 | struct disk_partition *info); |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 474 | |
| 475 | /** |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 476 | * @print: Print partition information |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 477 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 478 | * @print.desc: Block device descriptor |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 479 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 480 | void (*print)(struct blk_desc *desc); |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 481 | |
| 482 | /** |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 483 | * @test: Test if a device contains this partition type |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 484 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 485 | * @test.desc: Block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 486 | * @test.Return: |
| 487 | * 0 if the block device appears to contain this partition type, |
| 488 | * -ve if not |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 489 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 490 | int (*test)(struct blk_desc *desc); |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 491 | }; |
| 492 | |
| 493 | /* Declare a new U-Boot partition 'driver' */ |
| 494 | #define U_BOOT_PART_TYPE(__name) \ |
| 495 | ll_entry_declare(struct part_driver, __name, part_driver) |
wdenk | 452cfd6 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 496 | |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 497 | #include <part_efi.h> |
Rob Clark | 224ee84 | 2017-09-13 18:05:24 -0400 | [diff] [blame] | 498 | |
| 499 | #if CONFIG_IS_ENABLED(EFI_PARTITION) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 500 | /* disk/part_efi.c */ |
Steve Rae | f7f10b8 | 2014-05-26 11:52:24 -0700 | [diff] [blame] | 501 | /** |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 502 | * write_gpt_table() - Write the GUID Partition Table to disk |
| 503 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 504 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 505 | * @gpt_h: pointer to GPT header representation |
| 506 | * @gpt_e: pointer to GPT partition table entries |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 507 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 508 | * Return: zero on success, otherwise error |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 509 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 510 | int write_gpt_table(struct blk_desc *desc, gpt_header *gpt_h, gpt_entry *gpt_e); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 511 | |
| 512 | /** |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 513 | * gpt_fill_pte() - Fill the GPT partition table entry |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 514 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 515 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 516 | * @gpt_h: GPT header representation |
| 517 | * @gpt_e: GPT partition table entries |
| 518 | * @partitions: list of partitions |
| 519 | * @parts: number of partitions |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 520 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 521 | * Return: zero on success |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 522 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 523 | int gpt_fill_pte(struct blk_desc *desc, gpt_header *gpt_h, gpt_entry *gpt_e, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 524 | struct disk_partition *partitions, int parts); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 525 | |
| 526 | /** |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 527 | * gpt_fill_header() - Fill the GPT header |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 528 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 529 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 530 | * @gpt_h: GPT header representation |
| 531 | * @str_guid: disk guid string representation |
| 532 | * @parts_count: number of partitions |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 533 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 534 | * Return: error on str_guid conversion error |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 535 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 536 | int gpt_fill_header(struct blk_desc *desc, gpt_header *gpt_h, char *str_guid, |
| 537 | int parts_count); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 538 | |
| 539 | /** |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 540 | * gpt_restore() - Restore GPT partition table |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 541 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 542 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 543 | * @str_disk_guid: disk GUID |
| 544 | * @partitions: list of partitions |
| 545 | * @parts_count: number of partitions |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 546 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 547 | * Return: 0 on success |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 548 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 549 | int gpt_restore(struct blk_desc *desc, char *str_disk_guid, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 550 | struct disk_partition *partitions, const int parts_count); |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 551 | |
| 552 | /** |
| 553 | * is_valid_gpt_buf() - Ensure that the Primary GPT information is valid |
| 554 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 555 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 556 | * @buf: buffer which contains the MBR and Primary GPT info |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 557 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 558 | * Return: 0 on success, otherwise error |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 559 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 560 | int is_valid_gpt_buf(struct blk_desc *desc, void *buf); |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 561 | |
| 562 | /** |
| 563 | * write_mbr_and_gpt_partitions() - write MBR, Primary GPT and Backup GPT |
| 564 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 565 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 566 | * @buf: buffer which contains the MBR and Primary GPT info |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 567 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 568 | * Return: 0 on success, otherwise error |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 569 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 570 | int write_mbr_and_gpt_partitions(struct blk_desc *desc, void *buf); |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 571 | |
| 572 | /** |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 573 | * gpt_verify_headers() - Read and check CRC32 of the GPT's header |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 574 | * and partition table entries (PTE) |
| 575 | * |
| 576 | * As a side effect if sets gpt_head and gpt_pte so they point to GPT data. |
| 577 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 578 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 579 | * @gpt_head: pointer to GPT header data read from medium |
| 580 | * @gpt_pte: pointer to GPT partition table enties read from medium |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 581 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 582 | * Return: 0 on success, otherwise error |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 583 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 584 | int gpt_verify_headers(struct blk_desc *desc, gpt_header *gpt_head, |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 585 | gpt_entry **gpt_pte); |
| 586 | |
| 587 | /** |
Philippe Reynes | 8b054f5 | 2022-04-22 17:46:48 +0200 | [diff] [blame] | 588 | * gpt_repair_headers() - Function to repair the GPT's header |
| 589 | * and partition table entries (PTE) |
| 590 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 591 | * @desc: block device descriptor |
Philippe Reynes | 8b054f5 | 2022-04-22 17:46:48 +0200 | [diff] [blame] | 592 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 593 | * Return: 0 on success, otherwise error |
Philippe Reynes | 8b054f5 | 2022-04-22 17:46:48 +0200 | [diff] [blame] | 594 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 595 | int gpt_repair_headers(struct blk_desc *desc); |
Philippe Reynes | 8b054f5 | 2022-04-22 17:46:48 +0200 | [diff] [blame] | 596 | |
| 597 | /** |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 598 | * gpt_verify_partitions() - Function to check if partitions' name, start and |
| 599 | * size correspond to '$partitions' env variable |
| 600 | * |
| 601 | * This function checks if on medium stored GPT data is in sync with information |
| 602 | * provided in '$partitions' environment variable. Specificially, name, start |
| 603 | * and size of the partition is checked. |
| 604 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 605 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 606 | * @partitions: partition data read from '$partitions' env variable |
| 607 | * @parts: number of partitions read from '$partitions' env variable |
| 608 | * @gpt_head: pointer to GPT header data read from medium |
| 609 | * @gpt_pte: pointer to GPT partition table enties read from medium |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 610 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 611 | * Return: 0 on success, otherwise error |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 612 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 613 | int gpt_verify_partitions(struct blk_desc *desc, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 614 | struct disk_partition *partitions, int parts, |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 615 | gpt_header *gpt_head, gpt_entry **gpt_pte); |
Alison Chaiken | e422258 | 2017-06-25 16:43:23 -0700 | [diff] [blame] | 616 | |
Alison Chaiken | e422258 | 2017-06-25 16:43:23 -0700 | [diff] [blame] | 617 | /** |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 618 | * get_disk_guid() - Read the GUID string from a device's GPT |
Alison Chaiken | e422258 | 2017-06-25 16:43:23 -0700 | [diff] [blame] | 619 | * |
| 620 | * This function reads the GUID string from a block device whose descriptor |
| 621 | * is provided. |
| 622 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 623 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 624 | * @guid: pre-allocated string in which to return the GUID |
Alison Chaiken | e422258 | 2017-06-25 16:43:23 -0700 | [diff] [blame] | 625 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 626 | * Return: 0 on success, otherwise error |
Alison Chaiken | e422258 | 2017-06-25 16:43:23 -0700 | [diff] [blame] | 627 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 628 | int get_disk_guid(struct blk_desc *desc, char *guid); |
Alison Chaiken | e422258 | 2017-06-25 16:43:23 -0700 | [diff] [blame] | 629 | |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 630 | #endif |
| 631 | |
Patrick Delaunay | f7e0772 | 2017-01-27 11:00:37 +0100 | [diff] [blame] | 632 | #if CONFIG_IS_ENABLED(DOS_PARTITION) |
Petr Kulhavy | 9f174c9 | 2016-09-09 10:27:16 +0200 | [diff] [blame] | 633 | /** |
| 634 | * is_valid_dos_buf() - Ensure that a DOS MBR image is valid |
| 635 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 636 | * @buf: buffer which contains the MBR |
Petr Kulhavy | 9f174c9 | 2016-09-09 10:27:16 +0200 | [diff] [blame] | 637 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 638 | * Return: 0 on success, otherwise error |
Petr Kulhavy | 9f174c9 | 2016-09-09 10:27:16 +0200 | [diff] [blame] | 639 | */ |
| 640 | int is_valid_dos_buf(void *buf); |
| 641 | |
| 642 | /** |
Marek Szyprowski | 29ee06b | 2020-12-23 13:55:10 +0100 | [diff] [blame] | 643 | * write_mbr_sector() - write DOS MBR |
Petr Kulhavy | 9f174c9 | 2016-09-09 10:27:16 +0200 | [diff] [blame] | 644 | * |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 645 | * @desc: block device descriptor |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 646 | * @buf: buffer which contains the MBR |
Petr Kulhavy | 9f174c9 | 2016-09-09 10:27:16 +0200 | [diff] [blame] | 647 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 648 | * Return: 0 on success, otherwise error |
Petr Kulhavy | 9f174c9 | 2016-09-09 10:27:16 +0200 | [diff] [blame] | 649 | */ |
Simon Glass | 54c709a | 2023-08-24 13:55:24 -0600 | [diff] [blame] | 650 | int write_mbr_sector(struct blk_desc *desc, void *buf); |
Petr Kulhavy | 9f174c9 | 2016-09-09 10:27:16 +0200 | [diff] [blame] | 651 | |
Marek Szyprowski | 6a60b67 | 2020-12-23 13:55:14 +0100 | [diff] [blame] | 652 | int write_mbr_partitions(struct blk_desc *dev, |
| 653 | struct disk_partition *p, int count, unsigned int disksig); |
| 654 | int layout_mbr_partitions(struct disk_partition *p, int count, |
| 655 | lbaint_t total_sectors); |
| 656 | |
Petr Kulhavy | 9f174c9 | 2016-09-09 10:27:16 +0200 | [diff] [blame] | 657 | #endif |
| 658 | |
AKASHI Takahiro | 60bb6d7 | 2022-04-19 10:01:53 +0900 | [diff] [blame] | 659 | #if CONFIG_IS_ENABLED(PARTITIONS) |
Corneliu Doban | 0c6776c | 2020-11-09 11:49:16 +0530 | [diff] [blame] | 660 | /** |
| 661 | * part_driver_get_count() - get partition driver count |
| 662 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 663 | * Return: number of partition drivers |
Corneliu Doban | 0c6776c | 2020-11-09 11:49:16 +0530 | [diff] [blame] | 664 | */ |
| 665 | static inline int part_driver_get_count(void) |
| 666 | { |
| 667 | return ll_entry_count(struct part_driver, part_driver); |
| 668 | } |
| 669 | |
| 670 | /** |
| 671 | * part_driver_get_first() - get first partition driver |
| 672 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 673 | * Return: pointer to first partition driver on success, otherwise NULL |
Corneliu Doban | 0c6776c | 2020-11-09 11:49:16 +0530 | [diff] [blame] | 674 | */ |
| 675 | static inline struct part_driver *part_driver_get_first(void) |
| 676 | { |
| 677 | return ll_entry_start(struct part_driver, part_driver); |
| 678 | } |
| 679 | |
Simon Glass | ed338b7 | 2023-07-15 21:38:47 -0600 | [diff] [blame] | 680 | /** |
| 681 | * part_get_type_by_name() - Get partition type by name |
| 682 | * |
Heinrich Schuchardt | 4a45c72 | 2023-08-15 12:30:19 +0200 | [diff] [blame] | 683 | * @name: Name of partition type to look up (not case-sensitive) |
| 684 | * Return: |
| 685 | * Corresponding partition type (PART\_TYPE\_...) or PART\_TYPE\_UNKNOWN |
Simon Glass | ed338b7 | 2023-07-15 21:38:47 -0600 | [diff] [blame] | 686 | */ |
| 687 | int part_get_type_by_name(const char *name); |
| 688 | |
Simon Glass | 1e7f447 | 2023-08-24 13:55:42 -0600 | [diff] [blame] | 689 | /** |
| 690 | * part_get_bootable() - Find the first bootable partition |
| 691 | * |
Heinrich Schuchardt | 04044f9 | 2024-01-16 15:00:20 +0100 | [diff] [blame] | 692 | * @desc: Block-device descriptor |
| 693 | * Return: first bootable partition, or 0 if there is none |
Simon Glass | 1e7f447 | 2023-08-24 13:55:42 -0600 | [diff] [blame] | 694 | */ |
| 695 | int part_get_bootable(struct blk_desc *desc); |
| 696 | |
Corneliu Doban | 0c6776c | 2020-11-09 11:49:16 +0530 | [diff] [blame] | 697 | #else |
| 698 | static inline int part_driver_get_count(void) |
| 699 | { return 0; } |
| 700 | |
| 701 | static inline struct part_driver *part_driver_get_first(void) |
| 702 | { return NULL; } |
Simon Glass | 1e7f447 | 2023-08-24 13:55:42 -0600 | [diff] [blame] | 703 | |
| 704 | static inline bool part_get_bootable(struct blk_desc *desc) |
| 705 | { return false; } |
| 706 | |
Corneliu Doban | 0c6776c | 2020-11-09 11:49:16 +0530 | [diff] [blame] | 707 | #endif /* CONFIG_PARTITIONS */ |
Petr Kulhavy | 9f174c9 | 2016-09-09 10:27:16 +0200 | [diff] [blame] | 708 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 709 | #endif /* _PART_H */ |