blob: dc23949ae8c079ddf05f9e50b6ab51f5bcd7b52a [file] [log] [blame]
wdenk012771d2002-03-08 21:31:05 +00001/*
wdenk42dfe7a2004-03-14 22:25:36 +00002 * (C) Copyright 2000-2004
wdenk012771d2002-03-08 21:31:05 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk012771d2002-03-08 21:31:05 +00006 */
7#ifndef _PART_H
8#define _PART_H
Grant Likely735dd972007-02-20 09:04:34 +01009
wdenk6e592382004-04-18 17:39:38 +000010#include <ide.h>
Mateusz Zalega6b423b72014-04-28 21:13:22 +020011#include <common.h>
wdenk012771d2002-03-08 21:31:05 +000012
Stephen Warren7c4213f2015-12-07 11:38:48 -070013struct block_dev_desc {
wdenk42dfe7a2004-03-14 22:25:36 +000014 int if_type; /* type of the interface */
Wolfgang Denkd049cc72008-03-27 00:03:57 +010015 int dev; /* device number */
16 unsigned char part_type; /* partition type */
wdenk42dfe7a2004-03-14 22:25:36 +000017 unsigned char target; /* target SCSI ID */
18 unsigned char lun; /* target LUN */
Stephen Warren873cc1d2015-12-07 11:38:49 -070019 unsigned char hwpart; /* HW partition, e.g. for eMMC */
wdenk42dfe7a2004-03-14 22:25:36 +000020 unsigned char type; /* device type */
21 unsigned char removable; /* removable device */
22#ifdef CONFIG_LBA48
23 unsigned char lba48; /* device can use 48bit addr (ATA/ATAPI v7) */
24#endif
Anatolij Gustschin985889b2012-05-19 07:25:27 +000025 lbaint_t lba; /* number of blocks */
wdenk42dfe7a2004-03-14 22:25:36 +000026 unsigned long blksz; /* block size */
Egbert Eich0472fbf2013-04-09 21:11:56 +000027 int log2blksz; /* for convenience: log2(blksz) */
Wolfgang Denkd049cc72008-03-27 00:03:57 +010028 char vendor [40+1]; /* IDE model, SCSI Vendor */
Marcel Ziswiler2a4741d2007-10-19 00:25:33 +020029 char product[20+1]; /* IDE Serial no, SCSI product */
30 char revision[8+1]; /* firmware revision */
Stephen Warren7c4213f2015-12-07 11:38:48 -070031 unsigned long (*block_read)(block_dev_desc_t *block_dev,
Sascha Silbeff8fef52013-06-14 13:07:25 +020032 lbaint_t start,
wdenk6e592382004-04-18 17:39:38 +000033 lbaint_t blkcnt,
Grant Likelyeb867a72007-02-20 09:05:45 +010034 void *buffer);
Stephen Warren7c4213f2015-12-07 11:38:48 -070035 unsigned long (*block_write)(block_dev_desc_t *block_dev,
Sascha Silbeff8fef52013-06-14 13:07:25 +020036 lbaint_t start,
Grant Likely53758fa2007-02-20 09:05:38 +010037 lbaint_t blkcnt,
38 const void *buffer);
Stephen Warren7c4213f2015-12-07 11:38:48 -070039 unsigned long (*block_erase)(block_dev_desc_t *block_dev,
Sascha Silbeff8fef52013-06-14 13:07:25 +020040 lbaint_t start,
Lei Wene6f99a52011-06-22 17:03:31 +000041 lbaint_t blkcnt);
Dave Liuc7057b52008-03-26 22:49:44 +080042 void *priv; /* driver private struct pointer */
Stephen Warren7c4213f2015-12-07 11:38:48 -070043};
wdenkb0fce992003-06-29 21:03:46 +000044
Egbert Eichae1768a2013-04-09 06:03:36 +000045#define BLOCK_CNT(size, block_dev_desc) (PAD_COUNT(size, block_dev_desc->blksz))
46#define PAD_TO_BLOCKSIZE(size, block_dev_desc) \
47 (PAD_SIZE(size, block_dev_desc->blksz))
Egbert Eich0472fbf2013-04-09 21:11:56 +000048#define LOG2(x) (((x & 0xaaaaaaaa) ? 1 : 0) + ((x & 0xcccccccc) ? 2 : 0) + \
49 ((x & 0xf0f0f0f0) ? 4 : 0) + ((x & 0xff00ff00) ? 8 : 0) + \
50 ((x & 0xffff0000) ? 16 : 0))
51#define LOG2_INVALID(type) ((type)((sizeof(type)<<3)-1))
Egbert Eichae1768a2013-04-09 06:03:36 +000052
wdenk012771d2002-03-08 21:31:05 +000053/* Interface types: */
wdenkb0fce992003-06-29 21:03:46 +000054#define IF_TYPE_UNKNOWN 0
55#define IF_TYPE_IDE 1
wdenk012771d2002-03-08 21:31:05 +000056#define IF_TYPE_SCSI 2
57#define IF_TYPE_ATAPI 3
wdenkb0fce992003-06-29 21:03:46 +000058#define IF_TYPE_USB 4
59#define IF_TYPE_DOC 5
wdenk7205e402003-09-10 22:30:53 +000060#define IF_TYPE_MMC 6
stefano babicc95219f2007-11-20 10:40:24 +010061#define IF_TYPE_SD 7
Dave Liuc7057b52008-03-26 22:49:44 +080062#define IF_TYPE_SATA 8
Henrik Nordströmf4d8de42013-11-10 10:26:56 -070063#define IF_TYPE_HOST 9
64#define IF_TYPE_MAX 10 /* Max number of IF_TYPE_* supported */
wdenkb0fce992003-06-29 21:03:46 +000065
wdenk012771d2002-03-08 21:31:05 +000066/* Part types */
wdenk42dfe7a2004-03-14 22:25:36 +000067#define PART_TYPE_UNKNOWN 0x00
wdenk012771d2002-03-08 21:31:05 +000068#define PART_TYPE_MAC 0x01
69#define PART_TYPE_DOS 0x02
70#define PART_TYPE_ISO 0x03
wdenk42dfe7a2004-03-14 22:25:36 +000071#define PART_TYPE_AMIGA 0x04
richardretanubun07f3d782008-09-26 11:13:22 -040072#define PART_TYPE_EFI 0x05
wdenkc7de8292002-11-19 11:04:11 +000073
wdenkb0fce992003-06-29 21:03:46 +000074/*
75 * Type string for U-Boot bootable partitions
76 */
77#define BOOT_PART_TYPE "U-Boot" /* primary boot partition type */
78#define BOOT_PART_COMP "PPCBoot" /* PPCBoot compatibility type */
79
wdenk012771d2002-03-08 21:31:05 +000080/* device types */
wdenkb0fce992003-06-29 21:03:46 +000081#define DEV_TYPE_UNKNOWN 0xff /* not connected */
82#define DEV_TYPE_HARDDISK 0x00 /* harddisk */
wdenk42dfe7a2004-03-14 22:25:36 +000083#define DEV_TYPE_TAPE 0x01 /* Tape */
84#define DEV_TYPE_CDROM 0x05 /* CD-ROM */
85#define DEV_TYPE_OPDISK 0x07 /* optical disk */
wdenk012771d2002-03-08 21:31:05 +000086
wdenk42dfe7a2004-03-14 22:25:36 +000087typedef struct disk_partition {
Frederic Leroy04735e92013-06-26 18:11:25 +020088 lbaint_t start; /* # of first block in partition */
89 lbaint_t size; /* number of blocks in partition */
wdenk012771d2002-03-08 21:31:05 +000090 ulong blksz; /* block size in bytes */
91 uchar name[32]; /* partition name */
92 uchar type[32]; /* string type description */
Rob Herring40e0e562012-08-23 11:31:43 +000093 int bootable; /* Active/Bootable flag is set */
Stephen Warren894bfbb2012-09-21 09:50:59 +000094#ifdef CONFIG_PARTITION_UUIDS
95 char uuid[37]; /* filesystem UUID as string, if exists */
96#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +010097#ifdef CONFIG_PARTITION_TYPE_GUID
98 char type_guid[37]; /* type GUID as string, if exists */
99#endif
wdenk012771d2002-03-08 21:31:05 +0000100} disk_partition_t;
101
Grant Likely735dd972007-02-20 09:04:34 +0100102/* Misc _get_dev functions */
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000103#ifdef CONFIG_PARTITIONS
Rob Herring99d2c202012-09-21 04:08:17 +0000104block_dev_desc_t *get_dev(const char *ifname, int dev);
Grant Likely735dd972007-02-20 09:04:34 +0100105block_dev_desc_t* ide_get_dev(int dev);
Dave Liuc7057b52008-03-26 22:49:44 +0800106block_dev_desc_t* sata_get_dev(int dev);
Grant Likely735dd972007-02-20 09:04:34 +0100107block_dev_desc_t* scsi_get_dev(int dev);
108block_dev_desc_t* usb_stor_get_dev(int dev);
109block_dev_desc_t* mmc_get_dev(int dev);
Stephen Warrend2356282014-05-07 12:19:02 -0600110int mmc_select_hwpart(int dev_num, int hwpart);
Grant Likely735dd972007-02-20 09:04:34 +0100111block_dev_desc_t* systemace_get_dev(int dev);
unsik Kim75eb82e2009-02-25 11:31:24 +0900112block_dev_desc_t* mg_disk_get_dev(int dev);
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700113block_dev_desc_t *host_get_dev(int dev);
114int host_get_dev_err(int dev, block_dev_desc_t **blk_devp);
Grant Likely735dd972007-02-20 09:04:34 +0100115
wdenk012771d2002-03-08 21:31:05 +0000116/* disk/part.c */
117int get_partition_info (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
118void print_part (block_dev_desc_t *dev_desc);
119void init_part (block_dev_desc_t *dev_desc);
120void dev_print(block_dev_desc_t *dev_desc);
Stephen Warren2023e602012-09-21 09:50:56 +0000121int get_device(const char *ifname, const char *dev_str,
122 block_dev_desc_t **dev_desc);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000123int get_device_and_partition(const char *ifname, const char *dev_part_str,
Rob Herring99d2c202012-09-21 04:08:17 +0000124 block_dev_desc_t **dev_desc,
Stephen Warren10a37fd2012-09-21 09:50:57 +0000125 disk_partition_t *info, int allow_whole_dev);
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000126#else
Rob Herring99d2c202012-09-21 04:08:17 +0000127static inline block_dev_desc_t *get_dev(const char *ifname, int dev)
128{ return NULL; }
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000129static inline block_dev_desc_t* ide_get_dev(int dev) { return NULL; }
130static inline block_dev_desc_t* sata_get_dev(int dev) { return NULL; }
131static inline block_dev_desc_t* scsi_get_dev(int dev) { return NULL; }
132static inline block_dev_desc_t* usb_stor_get_dev(int dev) { return NULL; }
133static inline block_dev_desc_t* mmc_get_dev(int dev) { return NULL; }
Stephen Warrend2356282014-05-07 12:19:02 -0600134static inline int mmc_select_hwpart(int dev_num, int hwpart) { return -1; }
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000135static inline block_dev_desc_t* systemace_get_dev(int dev) { return NULL; }
136static inline block_dev_desc_t* mg_disk_get_dev(int dev) { return NULL; }
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700137static inline block_dev_desc_t *host_get_dev(int dev) { return NULL; }
wdenk012771d2002-03-08 21:31:05 +0000138
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000139static inline int get_partition_info (block_dev_desc_t * dev_desc, int part,
140 disk_partition_t *info) { return -1; }
141static inline void print_part (block_dev_desc_t *dev_desc) {}
142static inline void init_part (block_dev_desc_t *dev_desc) {}
143static inline void dev_print(block_dev_desc_t *dev_desc) {}
Stephen Warren2023e602012-09-21 09:50:56 +0000144static inline int get_device(const char *ifname, const char *dev_str,
145 block_dev_desc_t **dev_desc)
146{ return -1; }
Rob Herring99d2c202012-09-21 04:08:17 +0000147static inline int get_device_and_partition(const char *ifname,
Stephen Warren10a37fd2012-09-21 09:50:57 +0000148 const char *dev_part_str,
Rob Herring99d2c202012-09-21 04:08:17 +0000149 block_dev_desc_t **dev_desc,
Stephen Warren10a37fd2012-09-21 09:50:57 +0000150 disk_partition_t *info,
151 int allow_whole_dev)
Rob Herring99d2c202012-09-21 04:08:17 +0000152{ *dev_desc = NULL; return -1; }
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000153#endif
wdenk012771d2002-03-08 21:31:05 +0000154
155#ifdef CONFIG_MAC_PARTITION
156/* disk/part_mac.c */
157int get_partition_info_mac (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
158void print_part_mac (block_dev_desc_t *dev_desc);
159int test_part_mac (block_dev_desc_t *dev_desc);
160#endif
161
162#ifdef CONFIG_DOS_PARTITION
163/* disk/part_dos.c */
164int get_partition_info_dos (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
165void print_part_dos (block_dev_desc_t *dev_desc);
166int test_part_dos (block_dev_desc_t *dev_desc);
167#endif
168
169#ifdef CONFIG_ISO_PARTITION
170/* disk/part_iso.c */
171int get_partition_info_iso (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
172void print_part_iso (block_dev_desc_t *dev_desc);
173int test_part_iso (block_dev_desc_t *dev_desc);
174#endif
175
wdenkc7de8292002-11-19 11:04:11 +0000176#ifdef CONFIG_AMIGA_PARTITION
177/* disk/part_amiga.c */
178int get_partition_info_amiga (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
179void print_part_amiga (block_dev_desc_t *dev_desc);
180int test_part_amiga (block_dev_desc_t *dev_desc);
181#endif
182
richardretanubun07f3d782008-09-26 11:13:22 -0400183#ifdef CONFIG_EFI_PARTITION
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100184#include <part_efi.h>
richardretanubun07f3d782008-09-26 11:13:22 -0400185/* disk/part_efi.c */
186int get_partition_info_efi (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
Steve Rae60bf9412014-05-26 11:52:24 -0700187/**
188 * get_partition_info_efi_by_name() - Find the specified GPT partition table entry
189 *
190 * @param dev_desc - block device descriptor
191 * @param gpt_name - the specified table entry name
192 * @param info - returns the disk partition info
193 *
194 * @return - '0' on match, '-1' on no match, otherwise error
195 */
196int get_partition_info_efi_by_name(block_dev_desc_t *dev_desc,
197 const char *name, disk_partition_t *info);
richardretanubun07f3d782008-09-26 11:13:22 -0400198void print_part_efi (block_dev_desc_t *dev_desc);
199int test_part_efi (block_dev_desc_t *dev_desc);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100200
201/**
202 * write_gpt_table() - Write the GUID Partition Table to disk
203 *
204 * @param dev_desc - block device descriptor
205 * @param gpt_h - pointer to GPT header representation
206 * @param gpt_e - pointer to GPT partition table entries
207 *
208 * @return - zero on success, otherwise error
209 */
210int write_gpt_table(block_dev_desc_t *dev_desc,
211 gpt_header *gpt_h, gpt_entry *gpt_e);
212
213/**
214 * gpt_fill_pte(): Fill the GPT partition table entry
215 *
216 * @param gpt_h - GPT header representation
217 * @param gpt_e - GPT partition table entries
218 * @param partitions - list of partitions
219 * @param parts - number of partitions
220 *
221 * @return zero on success
222 */
223int gpt_fill_pte(gpt_header *gpt_h, gpt_entry *gpt_e,
224 disk_partition_t *partitions, int parts);
225
226/**
227 * gpt_fill_header(): Fill the GPT header
228 *
229 * @param dev_desc - block device descriptor
230 * @param gpt_h - GPT header representation
231 * @param str_guid - disk guid string representation
232 * @param parts_count - number of partitions
233 *
234 * @return - error on str_guid conversion error
235 */
236int gpt_fill_header(block_dev_desc_t *dev_desc, gpt_header *gpt_h,
237 char *str_guid, int parts_count);
238
239/**
240 * gpt_restore(): Restore GPT partition table
241 *
242 * @param dev_desc - block device descriptor
243 * @param str_disk_guid - disk GUID
244 * @param partitions - list of partitions
245 * @param parts - number of partitions
246 *
247 * @return zero on success
248 */
249int gpt_restore(block_dev_desc_t *dev_desc, char *str_disk_guid,
250 disk_partition_t *partitions, const int parts_count);
Steve Rae0ff7e582014-12-12 15:51:54 -0800251
252/**
253 * is_valid_gpt_buf() - Ensure that the Primary GPT information is valid
254 *
255 * @param dev_desc - block device descriptor
256 * @param buf - buffer which contains the MBR and Primary GPT info
257 *
258 * @return - '0' on success, otherwise error
259 */
260int is_valid_gpt_buf(block_dev_desc_t *dev_desc, void *buf);
261
262/**
263 * write_mbr_and_gpt_partitions() - write MBR, Primary GPT and Backup GPT
264 *
265 * @param dev_desc - block device descriptor
266 * @param buf - buffer which contains the MBR and Primary GPT info
267 *
268 * @return - '0' on success, otherwise error
269 */
270int write_mbr_and_gpt_partitions(block_dev_desc_t *dev_desc, void *buf);
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100271
272/**
273 * gpt_verify_headers() - Function to read and CRC32 check of the GPT's header
274 * and partition table entries (PTE)
275 *
276 * As a side effect if sets gpt_head and gpt_pte so they point to GPT data.
277 *
278 * @param dev_desc - block device descriptor
279 * @param gpt_head - pointer to GPT header data read from medium
280 * @param gpt_pte - pointer to GPT partition table enties read from medium
281 *
282 * @return - '0' on success, otherwise error
283 */
284int gpt_verify_headers(block_dev_desc_t *dev_desc, gpt_header *gpt_head,
285 gpt_entry **gpt_pte);
286
287/**
288 * gpt_verify_partitions() - Function to check if partitions' name, start and
289 * size correspond to '$partitions' env variable
290 *
291 * This function checks if on medium stored GPT data is in sync with information
292 * provided in '$partitions' environment variable. Specificially, name, start
293 * and size of the partition is checked.
294 *
295 * @param dev_desc - block device descriptor
296 * @param partitions - partition data read from '$partitions' env variable
297 * @param parts - number of partitions read from '$partitions' env variable
298 * @param gpt_head - pointer to GPT header data read from medium
299 * @param gpt_pte - pointer to GPT partition table enties read from medium
300 *
301 * @return - '0' on success, otherwise error
302 */
303int gpt_verify_partitions(block_dev_desc_t *dev_desc,
304 disk_partition_t *partitions, int parts,
305 gpt_header *gpt_head, gpt_entry **gpt_pte);
richardretanubun07f3d782008-09-26 11:13:22 -0400306#endif
307
wdenk012771d2002-03-08 21:31:05 +0000308#endif /* _PART_H */