blob: 92662677551173915c7c196a99557e7e1cda32db [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk012771d2002-03-08 21:31:05 +00002/*
wdenkc35ba4e2004-03-14 22:25:36 +00003 * (C) Copyright 2000-2004
wdenk012771d2002-03-08 21:31:05 +00004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk012771d2002-03-08 21:31:05 +00005 */
6#ifndef _PART_H
7#define _PART_H
Grant Likelyffc2dd72007-02-20 09:04:34 +01008
Simon Glassac8162f2016-02-29 15:25:39 -07009#include <blk.h>
wdenk05939202004-04-18 17:39:38 +000010#include <ide.h>
Caleb Connolly29cab7c2024-08-30 13:34:37 +010011#include <u-boot/uuid.h>
Corneliu Doban0c6776c2020-11-09 11:49:16 +053012#include <linker_lists.h>
AKASHI Takahiro7780a932022-04-19 10:01:52 +090013#include <linux/errno.h>
Alison Chaikenf04d4b52017-07-04 11:18:50 -070014#include <linux/list.h>
wdenk012771d2002-03-08 21:31:05 +000015
Alexander Graf3b3d9152016-03-04 01:09:56 +010016struct block_drvr {
17 char *name;
Alexander Graf3b3d9152016-03-04 01:09:56 +010018 int (*select_hwpart)(int dev_num, int hwpart);
19};
20
Egbert Eich2eec2ab2013-04-09 21:11:56 +000021#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 Eich071e4232013-04-09 06:03:36 +000025
wdenk012771d2002-03-08 21:31:05 +000026/* Part types */
wdenkc35ba4e2004-03-14 22:25:36 +000027#define PART_TYPE_UNKNOWN 0x00
wdenk012771d2002-03-08 21:31:05 +000028#define PART_TYPE_MAC 0x01
29#define PART_TYPE_DOS 0x02
30#define PART_TYPE_ISO 0x03
wdenkc35ba4e2004-03-14 22:25:36 +000031#define PART_TYPE_AMIGA 0x04
richardretanubune6745592008-09-26 11:13:22 -040032#define PART_TYPE_EFI 0x05
Alexey Romanovd5119672024-07-18 08:46:04 +030033#define PART_TYPE_MTD 0x06
Alexey Romanovc9f61132024-07-18 08:45:27 +030034#define PART_TYPE_UBI 0x07
wdenk452cfd62002-11-19 11:04:11 +000035
Petr Kulhavy712257e2016-09-09 10:27:15 +020036/* 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 Romanovd5119672024-07-18 08:46:04 +030041#define MTD_ENTRY_NUMBERS 64
Alexey Romanovc9f61132024-07-18 08:45:27 +030042#define UBI_ENTRY_NUMBERS UBI_MAX_VOLUMES
Alexey Romanovd5119672024-07-18 08:46:04 +030043
wdenkf12e3962003-06-29 21:03:46 +000044/*
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
wdenk012771d2002-03-08 21:31:05 +000050/* device types */
wdenkf12e3962003-06-29 21:03:46 +000051#define DEV_TYPE_UNKNOWN 0xff /* not connected */
52#define DEV_TYPE_HARDDISK 0x00 /* harddisk */
wdenkc35ba4e2004-03-14 22:25:36 +000053#define DEV_TYPE_TAPE 0x01 /* Tape */
54#define DEV_TYPE_CDROM 0x05 /* CD-ROM */
55#define DEV_TYPE_OPDISK 0x07 /* optical disk */
wdenk012771d2002-03-08 21:31:05 +000056
Alison Chaiken462e2322017-06-25 16:43:18 -070057#define PART_NAME_LEN 32
58#define PART_TYPE_LEN 32
Heinrich Schuchardt72d78832022-01-11 16:03:38 +010059#define MAX_SEARCH_PARTITIONS 128
Alison Chaiken462e2322017-06-25 16:43:18 -070060
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +010061#define PART_BOOTABLE ((int)BIT(0))
62#define PART_EFI_SYSTEM_PARTITION ((int)BIT(1))
63
Simon Glassc1c4a8f2020-05-10 11:39:57 -060064struct disk_partition {
Frederic Leroye7ee0282013-06-26 18:11:25 +020065 lbaint_t start; /* # of first block in partition */
66 lbaint_t size; /* number of blocks in partition */
wdenk012771d2002-03-08 21:31:05 +000067 ulong blksz; /* block size in bytes */
Alison Chaiken462e2322017-06-25 16:43:18 -070068 uchar name[PART_NAME_LEN]; /* partition name */
69 uchar type[PART_TYPE_LEN]; /* string type description */
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +010070 /*
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 Delaunay73287092017-01-27 11:00:42 +010077#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Alison Chaiken2cb47e62017-06-25 16:43:17 -070078 char uuid[UUID_STR_LEN + 1]; /* filesystem UUID as string, if exists */
Stephen Warrenc6c7b7a2012-09-21 09:50:59 +000079#endif
Patrick Delaunay8248c8d2015-10-27 11:00:27 +010080#ifdef CONFIG_PARTITION_TYPE_GUID
Alison Chaiken2cb47e62017-06-25 16:43:17 -070081 char type_guid[UUID_STR_LEN + 1]; /* type GUID as string, if exists */
Patrick Delaunay8248c8d2015-10-27 11:00:27 +010082#endif
Dalon Westergreen8d770f42017-02-10 17:15:34 -080083#ifdef CONFIG_DOS_PARTITION
Wolfgang Denk62fb2b42021-09-27 17:42:39 +020084 uchar sys_ind; /* partition type */
Dalon Westergreen8d770f42017-02-10 17:15:34 -080085#endif
Simon Glassc1c4a8f2020-05-10 11:39:57 -060086};
wdenk012771d2002-03-08 21:31:05 +000087
Simon Glass23e34532023-08-24 13:55:31 -060088/* Accessors for struct disk_partition field ->uuid */
89extern char *__invalid_use_of_disk_partition_uuid;
90
91static 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
100static 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
108static 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 Glassb8d3a782023-08-24 13:55:32 -0600115/* Accessors for struct disk_partition field ->type_guid */
Heinrich Schuchardtf4b4c4e2023-09-02 09:35:21 +0200116extern char *__invalid_use_of_disk_partition_type_guid;
Simon Glassb8d3a782023-08-24 13:55:32 -0600117
Heinrich Schuchardtf4b4c4e2023-09-02 09:35:21 +0200118/**
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 Glassb8d3a782023-08-24 13:55:32 -0600128static inline const
Heinrich Schuchardtf4b4c4e2023-09-02 09:35:21 +0200129char *disk_partition_type_guid(const struct disk_partition *info)
Simon Glassb8d3a782023-08-24 13:55:32 -0600130{
131#ifdef CONFIG_PARTITION_TYPE_GUID
132 return info->type_guid;
133#else
Heinrich Schuchardtf4b4c4e2023-09-02 09:35:21 +0200134 return __invalid_use_of_disk_partition_type_guid;
Simon Glassb8d3a782023-08-24 13:55:32 -0600135#endif
136}
137
Heinrich Schuchardtf4b4c4e2023-09-02 09:35:21 +0200138/**
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 Glassb8d3a782023-08-24 13:55:32 -0600148static 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
156static 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 Glassed0ec662023-08-24 13:55:33 -0600163/* Accessors for struct disk_partition field ->sys_ind */
164extern int __invalid_use_of_disk_partition_sys_ind;
165
166static 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 Chaikenf04d4b52017-07-04 11:18:50 -0700175struct disk_part {
176 int partnum;
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600177 struct disk_partition gpt_part_info;
Alison Chaikenf04d4b52017-07-04 11:18:50 -0700178 struct list_head list;
179};
180
Grant Likelyffc2dd72007-02-20 09:04:34 +0100181/* Misc _get_dev functions */
AKASHI Takahiro60bb6d72022-04-19 10:01:53 +0900182#if CONFIG_IS_ENABLED(PARTITIONS)
Simon Glassddb13252016-02-29 15:25:41 -0700183/**
Simon Glassbe1e9bb2016-02-29 15:25:42 -0700184 * blk_get_dev() - get a pointer to a block device given its type and number
Simon Glassddb13252016-02-29 15:25:41 -0700185 *
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 Schuchardt4a45c722023-08-15 12:30:19 +0200193 * Return:
194 * pointer to the block device, or NULL if not available, or an error occurred.
Simon Glassddb13252016-02-29 15:25:41 -0700195 */
Simon Glassbe1e9bb2016-02-29 15:25:42 -0700196struct blk_desc *blk_get_dev(const char *ifname, int dev);
Simon Glassddb13252016-02-29 15:25:41 -0700197
Simon Glasse3394752016-02-29 15:25:34 -0700198struct blk_desc *mg_disk_get_dev(int dev);
Grant Likelyffc2dd72007-02-20 09:04:34 +0100199
Joshua Wattaa62d502023-07-03 08:39:54 -0500200/**
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 Glass54c709a2023-08-24 13:55:24 -0600208 * @desc: Block device descriptor
Joshua Wattaa62d502023-07-03 08:39:54 -0500209 * @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 Glass54c709a2023-08-24 13:55:24 -0600216int part_get_info_by_type(struct blk_desc *desc, int part, int part_type,
Joshua Wattaa62d502023-07-03 08:39:54 -0500217 struct disk_partition *info);
Simon Glass54c709a2023-08-24 13:55:24 -0600218int part_get_info(struct blk_desc *desc, int part,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600219 struct disk_partition *info);
Rob Clark2b7bfd92017-09-09 13:15:55 -0400220/**
221 * part_get_info_whole_disk() - get partition info for the special case of
222 * a partition occupying the entire disk.
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200223 *
Simon Glass54c709a2023-08-24 13:55:24 -0600224 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200225 * @info: returned partition information
226 * Return: 0 on success
Rob Clark2b7bfd92017-09-09 13:15:55 -0400227 */
Simon Glass54c709a2023-08-24 13:55:24 -0600228int part_get_info_whole_disk(struct blk_desc *desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600229 struct disk_partition *info);
Rob Clark2b7bfd92017-09-09 13:15:55 -0400230
Simon Glass54c709a2023-08-24 13:55:24 -0600231void part_print(struct blk_desc *desc);
232void part_init(struct blk_desc *desc);
233void dev_print(struct blk_desc *desc);
Simon Glasse6649a62016-02-29 15:25:43 -0700234
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 Glass54c709a2023-08-24 13:55:24 -0600257 * @desc: Returns a pointer to the block device on success
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100258 * Return: block device number (local to the interface), or -1 on error
Simon Glasse6649a62016-02-29 15:25:43 -0700259 */
260int blk_get_device_by_str(const char *ifname, const char *dev_str,
Simon Glass54c709a2023-08-24 13:55:24 -0600261 struct blk_desc **desc);
Simon Glasse76ee972016-02-29 15:25:44 -0700262
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 Schuchardt4a45c722023-08-15 12:30:19 +0200269 * @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 Glasse76ee972016-02-29 15:25:44 -0700274 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200275 * * <part> is the partition number.
276 *
277 * If @ifname is "hostfs", then this function returns the sandbox host block
Simon Glasse76ee972016-02-29 15:25:44 -0700278 * device.
279 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200280 * If @ifname is "ubi", then this function returns 0, with @info set to a
Simon Glasse76ee972016-02-29 15:25:44 -0700281 * 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 Schuchardt4a45c722023-08-15 12:30:19 +0200289 * @ifname: Interface name (e.g. "ide", "scsi")
Simon Glasse76ee972016-02-29 15:25:44 -0700290 * @dev_part_str: Device and partition string
Simon Glass54c709a2023-08-24 13:55:24 -0600291 * @desc: Returns a pointer to the block device on success
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200292 * @info: Returns partition information
Simon Glasse76ee972016-02-29 15:25:44 -0700293 * @allow_whole_dev: true to allow the user to select partition 0
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200294 * (which means the whole device), false to require a valid
295 * partition number >= 1
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100296 * Return: partition number, or -1 on error
Simon Glasse76ee972016-02-29 15:25:44 -0700297 *
298 */
299int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glass54c709a2023-08-24 13:55:24 -0600300 struct blk_desc **desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600301 struct disk_partition *info, int allow_whole_dev);
Petr Kulhavy712257e2016-09-09 10:27:15 +0200302
303/**
304 * part_get_info_by_name() - Search for a partition by name
305 * among all available registered partitions
306 *
Simon Glass54c709a2023-08-24 13:55:24 -0600307 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200308 * @name: the specified table entry name
309 * @info: returns the disk partition info
Petr Kulhavy712257e2016-09-09 10:27:15 +0200310 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200311 * Return: the partition number on match (starting on 1), -1 on no match,
Alex Deymoe2f689f2017-04-02 01:49:50 -0700312 * otherwise error
Petr Kulhavy712257e2016-09-09 10:27:15 +0200313 */
Simon Glass54c709a2023-08-24 13:55:24 -0600314int part_get_info_by_name(struct blk_desc *desc, const char *name,
315 struct disk_partition *info);
Petr Kulhavy712257e2016-09-09 10:27:15 +0200316
Petr Kulhavy2e790d52016-09-09 10:27:17 +0200317/**
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200318 * 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 Trofymenko5e171ef2019-07-05 15:37:31 +0300321 *
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 Glass54c709a2023-08-24 13:55:24 -0600327 * desc and part_info accordingly with the information of the partition.
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300328 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200329 * @dev_iface: Device interface
330 * @dev_part_str: Input partition description, like "0#misc" or "0:1"
Simon Glass54c709a2023-08-24 13:55:24 -0600331 * @desc: Place to store the device description pointer
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200332 * @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 Trofymenko5e171ef2019-07-05 15:37:31 +0300337 */
338int part_get_info_by_dev_and_name_or_num(const char *dev_iface,
339 const char *dev_part_str,
Simon Glass54c709a2023-08-24 13:55:24 -0600340 struct blk_desc **desc,
Sean Andersonc81028d2021-02-05 09:38:56 -0500341 struct disk_partition *part_info,
342 int allow_whole_dev);
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300343
344/**
Petr Kulhavy2e790d52016-09-09 10:27:17 +0200345 * 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 Glass54c709a2023-08-24 13:55:24 -0600351 * @desc: pointer to the block device
Petr Kulhavy2e790d52016-09-09 10:27:17 +0200352 * @part_num: partition number for which the name is generated
353 * @name: buffer where the name is written
354 */
Simon Glass54c709a2023-08-24 13:55:24 -0600355void part_set_generic_name(const struct blk_desc *desc, int part_num,
356 char *name);
Petr Kulhavy2e790d52016-09-09 10:27:17 +0200357
Alexander Graf3b3d9152016-03-04 01:09:56 +0100358extern const struct block_drvr block_drvr[];
Matthew McClintock6252b4f2011-05-24 05:31:19 +0000359#else
Simon Glassbe1e9bb2016-02-29 15:25:42 -0700360static inline struct blk_desc *blk_get_dev(const char *ifname, int dev)
Rob Herringd586cec2012-09-21 04:08:17 +0000361{ return NULL; }
Simon Glasse3394752016-02-29 15:25:34 -0700362static inline struct blk_desc *mg_disk_get_dev(int dev) { return NULL; }
wdenk012771d2002-03-08 21:31:05 +0000363
Simon Glass54c709a2023-08-24 13:55:24 -0600364static inline int part_get_info(struct blk_desc *desc, int part,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600365 struct disk_partition *info) { return -1; }
Simon Glass54c709a2023-08-24 13:55:24 -0600366static inline int part_get_info_whole_disk(struct blk_desc *desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600367 struct disk_partition *info)
Rob Clark2b7bfd92017-09-09 13:15:55 -0400368{ return -1; }
Simon Glass54c709a2023-08-24 13:55:24 -0600369static inline void part_print(struct blk_desc *desc) {}
370static inline void part_init(struct blk_desc *desc) {}
371static inline void dev_print(struct blk_desc *desc) {}
Simon Glasse6649a62016-02-29 15:25:43 -0700372static inline int blk_get_device_by_str(const char *ifname, const char *dev_str,
Simon Glass54c709a2023-08-24 13:55:24 -0600373 struct blk_desc **desc)
Stephen Warrenafd909c2012-09-21 09:50:56 +0000374{ return -1; }
Simon Glasse76ee972016-02-29 15:25:44 -0700375static inline int blk_get_device_part_str(const char *ifname,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600376 const char *dev_part_str,
Simon Glass54c709a2023-08-24 13:55:24 -0600377 struct blk_desc **desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600378 struct disk_partition *info,
379 int allow_whole_dev)
Simon Glass54c709a2023-08-24 13:55:24 -0600380{ *desc = NULL; return -1; }
AKASHI Takahiro140c59c2022-04-19 10:01:54 +0900381
Simon Glass54c709a2023-08-24 13:55:24 -0600382static inline int part_get_info_by_name(struct blk_desc *desc, const char *name,
AKASHI Takahiro140c59c2022-04-19 10:01:54 +0900383 struct disk_partition *info)
384{
385 return -ENOENT;
386}
387
Sean Andersonf476b4a2021-04-12 18:53:05 -0400388static inline int
389part_get_info_by_dev_and_name_or_num(const char *dev_iface,
390 const char *dev_part_str,
Simon Glass54c709a2023-08-24 13:55:24 -0600391 struct blk_desc **desc,
Sean Andersonf476b4a2021-04-12 18:53:05 -0400392 struct disk_partition *part_info,
393 int allow_whole_dev)
394{
Simon Glass54c709a2023-08-24 13:55:24 -0600395 *desc = NULL;
Sean Andersonf476b4a2021-04-12 18:53:05 -0400396 return -ENOSYS;
397}
Matthew McClintock6252b4f2011-05-24 05:31:19 +0000398#endif
wdenk012771d2002-03-08 21:31:05 +0000399
AKASHI Takahiroefb9a9d2022-04-19 10:05:09 +0900400struct udevice;
401/**
Simon Glass4e93eea2022-10-20 18:22:52 -0600402 * 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 Schuchardt4a45c722023-08-15 12:30:19 +0200408 * Return: number of blocks read, or -ve error number (see the
Simon Glass4e93eea2022-10-20 18:22:52 -0600409 * IS_ERR_VALUE() macro
410 */
411ulong 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 Schuchardt4a45c722023-08-15 12:30:19 +0200421 * Return: number of blocks written, or -ve error number (see the
Simon Glass4e93eea2022-10-20 18:22:52 -0600422 * IS_ERR_VALUE() macro
423 */
424ulong 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 Schuchardt4a45c722023-08-15 12:30:19 +0200433 * Return: number of blocks erased, or -ve error number (see the
Simon Glass4e93eea2022-10-20 18:22:52 -0600434 * IS_ERR_VALUE() macro
435 */
436ulong disk_blk_erase(struct udevice *dev, lbaint_t start, lbaint_t blkcnt);
AKASHI Takahiro8b57fe32022-04-19 10:05:16 +0900437
Simon Glass83ce5632016-02-29 15:25:47 -0700438/*
439 * We don't support printing partition information in SPL and only support
440 * getting partition information in a few cases.
441 */
Simon Glass209ae762024-09-29 19:49:49 -0600442#ifdef CONFIG_XPL_BUILD
Simon Glass83ce5632016-02-29 15:25:47 -0700443# define part_print_ptr(x) NULL
Tien Fong Chee6091dd12019-01-23 14:20:05 +0800444# if defined(CONFIG_SPL_FS_EXT4) || defined(CONFIG_SPL_FS_FAT) || \
Simon Glass83ce5632016-02-29 15:25:47 -0700445 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
wdenk012771d2002-03-08 21:31:05 +0000453#endif
454
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200455/**
456 * struct part_driver - partition driver
457 */
Simon Glass83ce5632016-02-29 15:25:47 -0700458struct part_driver {
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200459 /** @name: partition name */
Simon Glass83ce5632016-02-29 15:25:47 -0700460 const char *name;
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200461 /** @part_type: (MBR) partition type */
Simon Glass83ce5632016-02-29 15:25:47 -0700462 int part_type;
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200463 /** @max_entries: maximum number of partition table entries */
464 const int max_entries;
Simon Glass83ce5632016-02-29 15:25:47 -0700465 /**
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200466 * @get_info: Get information about a partition
Simon Glass83ce5632016-02-29 15:25:47 -0700467 *
Simon Glass54c709a2023-08-24 13:55:24 -0600468 * @get_info.desc: Block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200469 * @get_info.part: Partition number (1 = first)
470 * @get_info.info: Returns partition information
Simon Glass83ce5632016-02-29 15:25:47 -0700471 */
Simon Glass54c709a2023-08-24 13:55:24 -0600472 int (*get_info)(struct blk_desc *desc, int part,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600473 struct disk_partition *info);
Simon Glass83ce5632016-02-29 15:25:47 -0700474
475 /**
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200476 * @print: Print partition information
Simon Glass83ce5632016-02-29 15:25:47 -0700477 *
Simon Glass54c709a2023-08-24 13:55:24 -0600478 * @print.desc: Block device descriptor
Simon Glass83ce5632016-02-29 15:25:47 -0700479 */
Simon Glass54c709a2023-08-24 13:55:24 -0600480 void (*print)(struct blk_desc *desc);
Simon Glass83ce5632016-02-29 15:25:47 -0700481
482 /**
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200483 * @test: Test if a device contains this partition type
Simon Glass83ce5632016-02-29 15:25:47 -0700484 *
Simon Glass54c709a2023-08-24 13:55:24 -0600485 * @test.desc: Block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200486 * @test.Return:
487 * 0 if the block device appears to contain this partition type,
488 * -ve if not
Simon Glass83ce5632016-02-29 15:25:47 -0700489 */
Simon Glass54c709a2023-08-24 13:55:24 -0600490 int (*test)(struct blk_desc *desc);
Simon Glass83ce5632016-02-29 15:25:47 -0700491};
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)
wdenk452cfd62002-11-19 11:04:11 +0000496
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100497#include <part_efi.h>
Rob Clark224ee842017-09-13 18:05:24 -0400498
499#if CONFIG_IS_ENABLED(EFI_PARTITION)
richardretanubune6745592008-09-26 11:13:22 -0400500/* disk/part_efi.c */
Steve Raef7f10b82014-05-26 11:52:24 -0700501/**
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100502 * write_gpt_table() - Write the GUID Partition Table to disk
503 *
Simon Glass54c709a2023-08-24 13:55:24 -0600504 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200505 * @gpt_h: pointer to GPT header representation
506 * @gpt_e: pointer to GPT partition table entries
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100507 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200508 * Return: zero on success, otherwise error
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100509 */
Simon Glass54c709a2023-08-24 13:55:24 -0600510int write_gpt_table(struct blk_desc *desc, gpt_header *gpt_h, gpt_entry *gpt_e);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100511
512/**
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200513 * gpt_fill_pte() - Fill the GPT partition table entry
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100514 *
Simon Glass54c709a2023-08-24 13:55:24 -0600515 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200516 * @gpt_h: GPT header representation
517 * @gpt_e: GPT partition table entries
518 * @partitions: list of partitions
519 * @parts: number of partitions
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100520 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200521 * Return: zero on success
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100522 */
Simon Glass54c709a2023-08-24 13:55:24 -0600523int gpt_fill_pte(struct blk_desc *desc, gpt_header *gpt_h, gpt_entry *gpt_e,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600524 struct disk_partition *partitions, int parts);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100525
526/**
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200527 * gpt_fill_header() - Fill the GPT header
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100528 *
Simon Glass54c709a2023-08-24 13:55:24 -0600529 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200530 * @gpt_h: GPT header representation
531 * @str_guid: disk guid string representation
532 * @parts_count: number of partitions
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100533 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200534 * Return: error on str_guid conversion error
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100535 */
Simon Glass54c709a2023-08-24 13:55:24 -0600536int gpt_fill_header(struct blk_desc *desc, gpt_header *gpt_h, char *str_guid,
537 int parts_count);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100538
539/**
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200540 * gpt_restore() - Restore GPT partition table
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100541 *
Simon Glass54c709a2023-08-24 13:55:24 -0600542 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200543 * @str_disk_guid: disk GUID
544 * @partitions: list of partitions
545 * @parts_count: number of partitions
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100546 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200547 * Return: 0 on success
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100548 */
Simon Glass54c709a2023-08-24 13:55:24 -0600549int gpt_restore(struct blk_desc *desc, char *str_disk_guid,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600550 struct disk_partition *partitions, const int parts_count);
Steve Rae7d059342014-12-12 15:51:54 -0800551
552/**
553 * is_valid_gpt_buf() - Ensure that the Primary GPT information is valid
554 *
Simon Glass54c709a2023-08-24 13:55:24 -0600555 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200556 * @buf: buffer which contains the MBR and Primary GPT info
Steve Rae7d059342014-12-12 15:51:54 -0800557 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200558 * Return: 0 on success, otherwise error
Steve Rae7d059342014-12-12 15:51:54 -0800559 */
Simon Glass54c709a2023-08-24 13:55:24 -0600560int is_valid_gpt_buf(struct blk_desc *desc, void *buf);
Steve Rae7d059342014-12-12 15:51:54 -0800561
562/**
563 * write_mbr_and_gpt_partitions() - write MBR, Primary GPT and Backup GPT
564 *
Simon Glass54c709a2023-08-24 13:55:24 -0600565 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200566 * @buf: buffer which contains the MBR and Primary GPT info
Steve Rae7d059342014-12-12 15:51:54 -0800567 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200568 * Return: 0 on success, otherwise error
Steve Rae7d059342014-12-12 15:51:54 -0800569 */
Simon Glass54c709a2023-08-24 13:55:24 -0600570int write_mbr_and_gpt_partitions(struct blk_desc *desc, void *buf);
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100571
572/**
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200573 * gpt_verify_headers() - Read and check CRC32 of the GPT's header
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100574 * 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 Glass54c709a2023-08-24 13:55:24 -0600578 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200579 * @gpt_head: pointer to GPT header data read from medium
580 * @gpt_pte: pointer to GPT partition table enties read from medium
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100581 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200582 * Return: 0 on success, otherwise error
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100583 */
Simon Glass54c709a2023-08-24 13:55:24 -0600584int gpt_verify_headers(struct blk_desc *desc, gpt_header *gpt_head,
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100585 gpt_entry **gpt_pte);
586
587/**
Philippe Reynes8b054f52022-04-22 17:46:48 +0200588 * gpt_repair_headers() - Function to repair the GPT's header
589 * and partition table entries (PTE)
590 *
Simon Glass54c709a2023-08-24 13:55:24 -0600591 * @desc: block device descriptor
Philippe Reynes8b054f52022-04-22 17:46:48 +0200592 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200593 * Return: 0 on success, otherwise error
Philippe Reynes8b054f52022-04-22 17:46:48 +0200594 */
Simon Glass54c709a2023-08-24 13:55:24 -0600595int gpt_repair_headers(struct blk_desc *desc);
Philippe Reynes8b054f52022-04-22 17:46:48 +0200596
597/**
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100598 * 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 Glass54c709a2023-08-24 13:55:24 -0600605 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200606 * @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 Majewski7b9839c2015-11-20 08:06:16 +0100610 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200611 * Return: 0 on success, otherwise error
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100612 */
Simon Glass54c709a2023-08-24 13:55:24 -0600613int gpt_verify_partitions(struct blk_desc *desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600614 struct disk_partition *partitions, int parts,
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100615 gpt_header *gpt_head, gpt_entry **gpt_pte);
Alison Chaikene4222582017-06-25 16:43:23 -0700616
Alison Chaikene4222582017-06-25 16:43:23 -0700617/**
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200618 * get_disk_guid() - Read the GUID string from a device's GPT
Alison Chaikene4222582017-06-25 16:43:23 -0700619 *
620 * This function reads the GUID string from a block device whose descriptor
621 * is provided.
622 *
Simon Glass54c709a2023-08-24 13:55:24 -0600623 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200624 * @guid: pre-allocated string in which to return the GUID
Alison Chaikene4222582017-06-25 16:43:23 -0700625 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200626 * Return: 0 on success, otherwise error
Alison Chaikene4222582017-06-25 16:43:23 -0700627 */
Simon Glass54c709a2023-08-24 13:55:24 -0600628int get_disk_guid(struct blk_desc *desc, char *guid);
Alison Chaikene4222582017-06-25 16:43:23 -0700629
richardretanubune6745592008-09-26 11:13:22 -0400630#endif
631
Patrick Delaunayf7e07722017-01-27 11:00:37 +0100632#if CONFIG_IS_ENABLED(DOS_PARTITION)
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200633/**
634 * is_valid_dos_buf() - Ensure that a DOS MBR image is valid
635 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200636 * @buf: buffer which contains the MBR
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200637 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200638 * Return: 0 on success, otherwise error
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200639 */
640int is_valid_dos_buf(void *buf);
641
642/**
Marek Szyprowski29ee06b2020-12-23 13:55:10 +0100643 * write_mbr_sector() - write DOS MBR
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200644 *
Simon Glass54c709a2023-08-24 13:55:24 -0600645 * @desc: block device descriptor
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200646 * @buf: buffer which contains the MBR
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200647 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200648 * Return: 0 on success, otherwise error
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200649 */
Simon Glass54c709a2023-08-24 13:55:24 -0600650int write_mbr_sector(struct blk_desc *desc, void *buf);
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200651
Marek Szyprowski6a60b672020-12-23 13:55:14 +0100652int write_mbr_partitions(struct blk_desc *dev,
653 struct disk_partition *p, int count, unsigned int disksig);
654int layout_mbr_partitions(struct disk_partition *p, int count,
655 lbaint_t total_sectors);
656
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200657#endif
658
AKASHI Takahiro60bb6d72022-04-19 10:01:53 +0900659#if CONFIG_IS_ENABLED(PARTITIONS)
Corneliu Doban0c6776c2020-11-09 11:49:16 +0530660/**
661 * part_driver_get_count() - get partition driver count
662 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200663 * Return: number of partition drivers
Corneliu Doban0c6776c2020-11-09 11:49:16 +0530664 */
665static 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 Schuchardt4a45c722023-08-15 12:30:19 +0200673 * Return: pointer to first partition driver on success, otherwise NULL
Corneliu Doban0c6776c2020-11-09 11:49:16 +0530674 */
675static inline struct part_driver *part_driver_get_first(void)
676{
677 return ll_entry_start(struct part_driver, part_driver);
678}
679
Simon Glassed338b72023-07-15 21:38:47 -0600680/**
681 * part_get_type_by_name() - Get partition type by name
682 *
Heinrich Schuchardt4a45c722023-08-15 12:30:19 +0200683 * @name: Name of partition type to look up (not case-sensitive)
684 * Return:
685 * Corresponding partition type (PART\_TYPE\_...) or PART\_TYPE\_UNKNOWN
Simon Glassed338b72023-07-15 21:38:47 -0600686 */
687int part_get_type_by_name(const char *name);
688
Simon Glass1e7f4472023-08-24 13:55:42 -0600689/**
690 * part_get_bootable() - Find the first bootable partition
691 *
Heinrich Schuchardt04044f92024-01-16 15:00:20 +0100692 * @desc: Block-device descriptor
693 * Return: first bootable partition, or 0 if there is none
Simon Glass1e7f4472023-08-24 13:55:42 -0600694 */
695int part_get_bootable(struct blk_desc *desc);
696
Corneliu Doban0c6776c2020-11-09 11:49:16 +0530697#else
698static inline int part_driver_get_count(void)
699{ return 0; }
700
701static inline struct part_driver *part_driver_get_first(void)
702{ return NULL; }
Simon Glass1e7f4472023-08-24 13:55:42 -0600703
704static inline bool part_get_bootable(struct blk_desc *desc)
705{ return false; }
706
Corneliu Doban0c6776c2020-11-09 11:49:16 +0530707#endif /* CONFIG_PARTITIONS */
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200708
wdenk012771d2002-03-08 21:31:05 +0000709#endif /* _PART_H */