blob: 12e9b056e46eec20c86e4b50f3e093f6657b029f [file] [log] [blame]
wdenk012771d2002-03-08 21:31:05 +00001/*
wdenkc35ba4e2004-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 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenkc35ba4e2004-03-14 22:25:36 +000015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk012771d2002-03-08 21:31:05 +000016 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23#ifndef _PART_H
24#define _PART_H
Grant Likelyffc2dd72007-02-20 09:04:34 +010025
wdenk05939202004-04-18 17:39:38 +000026#include <ide.h>
wdenk012771d2002-03-08 21:31:05 +000027
28typedef struct block_dev_desc {
wdenkc35ba4e2004-03-14 22:25:36 +000029 int if_type; /* type of the interface */
Wolfgang Denk9a6a7e02008-03-27 00:03:57 +010030 int dev; /* device number */
31 unsigned char part_type; /* partition type */
wdenkc35ba4e2004-03-14 22:25:36 +000032 unsigned char target; /* target SCSI ID */
33 unsigned char lun; /* target LUN */
34 unsigned char type; /* device type */
35 unsigned char removable; /* removable device */
36#ifdef CONFIG_LBA48
37 unsigned char lba48; /* device can use 48bit addr (ATA/ATAPI v7) */
38#endif
Anatolij Gustschin4de7a472012-05-19 07:25:27 +000039 lbaint_t lba; /* number of blocks */
wdenkc35ba4e2004-03-14 22:25:36 +000040 unsigned long blksz; /* block size */
Wolfgang Denk9a6a7e02008-03-27 00:03:57 +010041 char vendor [40+1]; /* IDE model, SCSI Vendor */
Marcel Ziswiler53761bc2007-10-19 00:25:33 +020042 char product[20+1]; /* IDE Serial no, SCSI product */
43 char revision[8+1]; /* firmware revision */
wdenkc35ba4e2004-03-14 22:25:36 +000044 unsigned long (*block_read)(int dev,
45 unsigned long start,
wdenk05939202004-04-18 17:39:38 +000046 lbaint_t blkcnt,
Grant Likely2089cab2007-02-20 09:05:45 +010047 void *buffer);
Grant Likely4b435272007-02-20 09:05:38 +010048 unsigned long (*block_write)(int dev,
49 unsigned long start,
50 lbaint_t blkcnt,
51 const void *buffer);
Lei Wenea526762011-06-22 17:03:31 +000052 unsigned long (*block_erase)(int dev,
53 unsigned long start,
54 lbaint_t blkcnt);
Dave Liu76596ba2008-03-26 22:49:44 +080055 void *priv; /* driver private struct pointer */
wdenk012771d2002-03-08 21:31:05 +000056}block_dev_desc_t;
wdenkf12e3962003-06-29 21:03:46 +000057
Egbert Eich071e4232013-04-09 06:03:36 +000058#define BLOCK_CNT(size, block_dev_desc) (PAD_COUNT(size, block_dev_desc->blksz))
59#define PAD_TO_BLOCKSIZE(size, block_dev_desc) \
60 (PAD_SIZE(size, block_dev_desc->blksz))
61
wdenk012771d2002-03-08 21:31:05 +000062/* Interface types: */
wdenkf12e3962003-06-29 21:03:46 +000063#define IF_TYPE_UNKNOWN 0
64#define IF_TYPE_IDE 1
wdenk012771d2002-03-08 21:31:05 +000065#define IF_TYPE_SCSI 2
66#define IF_TYPE_ATAPI 3
wdenkf12e3962003-06-29 21:03:46 +000067#define IF_TYPE_USB 4
68#define IF_TYPE_DOC 5
wdenk2c9b05d2003-09-10 22:30:53 +000069#define IF_TYPE_MMC 6
stefano babic43300a12007-11-20 10:40:24 +010070#define IF_TYPE_SD 7
Dave Liu76596ba2008-03-26 22:49:44 +080071#define IF_TYPE_SATA 8
wdenkf12e3962003-06-29 21:03:46 +000072
wdenk012771d2002-03-08 21:31:05 +000073/* Part types */
wdenkc35ba4e2004-03-14 22:25:36 +000074#define PART_TYPE_UNKNOWN 0x00
wdenk012771d2002-03-08 21:31:05 +000075#define PART_TYPE_MAC 0x01
76#define PART_TYPE_DOS 0x02
77#define PART_TYPE_ISO 0x03
wdenkc35ba4e2004-03-14 22:25:36 +000078#define PART_TYPE_AMIGA 0x04
richardretanubune6745592008-09-26 11:13:22 -040079#define PART_TYPE_EFI 0x05
wdenk452cfd62002-11-19 11:04:11 +000080
wdenkf12e3962003-06-29 21:03:46 +000081/*
82 * Type string for U-Boot bootable partitions
83 */
84#define BOOT_PART_TYPE "U-Boot" /* primary boot partition type */
85#define BOOT_PART_COMP "PPCBoot" /* PPCBoot compatibility type */
86
wdenk012771d2002-03-08 21:31:05 +000087/* device types */
wdenkf12e3962003-06-29 21:03:46 +000088#define DEV_TYPE_UNKNOWN 0xff /* not connected */
89#define DEV_TYPE_HARDDISK 0x00 /* harddisk */
wdenkc35ba4e2004-03-14 22:25:36 +000090#define DEV_TYPE_TAPE 0x01 /* Tape */
91#define DEV_TYPE_CDROM 0x05 /* CD-ROM */
92#define DEV_TYPE_OPDISK 0x07 /* optical disk */
wdenk012771d2002-03-08 21:31:05 +000093
wdenkc35ba4e2004-03-14 22:25:36 +000094typedef struct disk_partition {
wdenk012771d2002-03-08 21:31:05 +000095 ulong start; /* # of first block in partition */
96 ulong size; /* number of blocks in partition */
97 ulong blksz; /* block size in bytes */
98 uchar name[32]; /* partition name */
99 uchar type[32]; /* string type description */
Rob Herringeda51112012-08-23 11:31:43 +0000100 int bootable; /* Active/Bootable flag is set */
Stephen Warrenc6c7b7a2012-09-21 09:50:59 +0000101#ifdef CONFIG_PARTITION_UUIDS
102 char uuid[37]; /* filesystem UUID as string, if exists */
103#endif
wdenk012771d2002-03-08 21:31:05 +0000104} disk_partition_t;
105
Grant Likelyffc2dd72007-02-20 09:04:34 +0100106/* Misc _get_dev functions */
Matthew McClintock6252b4f2011-05-24 05:31:19 +0000107#ifdef CONFIG_PARTITIONS
Rob Herringd586cec2012-09-21 04:08:17 +0000108block_dev_desc_t *get_dev(const char *ifname, int dev);
Grant Likelyffc2dd72007-02-20 09:04:34 +0100109block_dev_desc_t* ide_get_dev(int dev);
Dave Liu76596ba2008-03-26 22:49:44 +0800110block_dev_desc_t* sata_get_dev(int dev);
Grant Likelyffc2dd72007-02-20 09:04:34 +0100111block_dev_desc_t* scsi_get_dev(int dev);
112block_dev_desc_t* usb_stor_get_dev(int dev);
113block_dev_desc_t* mmc_get_dev(int dev);
114block_dev_desc_t* systemace_get_dev(int dev);
unsik Kimf0b1bdd2009-02-25 11:31:24 +0900115block_dev_desc_t* mg_disk_get_dev(int dev);
Grant Likelyffc2dd72007-02-20 09:04:34 +0100116
wdenk012771d2002-03-08 21:31:05 +0000117/* disk/part.c */
118int get_partition_info (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
119void print_part (block_dev_desc_t *dev_desc);
120void init_part (block_dev_desc_t *dev_desc);
121void dev_print(block_dev_desc_t *dev_desc);
Stephen Warrenafd909c2012-09-21 09:50:56 +0000122int get_device(const char *ifname, const char *dev_str,
123 block_dev_desc_t **dev_desc);
Stephen Warrenc87ff222012-09-21 09:50:57 +0000124int get_device_and_partition(const char *ifname, const char *dev_part_str,
Rob Herringd586cec2012-09-21 04:08:17 +0000125 block_dev_desc_t **dev_desc,
Stephen Warrenc87ff222012-09-21 09:50:57 +0000126 disk_partition_t *info, int allow_whole_dev);
Matthew McClintock6252b4f2011-05-24 05:31:19 +0000127#else
Rob Herringd586cec2012-09-21 04:08:17 +0000128static inline block_dev_desc_t *get_dev(const char *ifname, int dev)
129{ return NULL; }
Matthew McClintock6252b4f2011-05-24 05:31:19 +0000130static inline block_dev_desc_t* ide_get_dev(int dev) { return NULL; }
131static inline block_dev_desc_t* sata_get_dev(int dev) { return NULL; }
132static inline block_dev_desc_t* scsi_get_dev(int dev) { return NULL; }
133static inline block_dev_desc_t* usb_stor_get_dev(int dev) { return NULL; }
134static inline block_dev_desc_t* mmc_get_dev(int dev) { return NULL; }
135static 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; }
wdenk012771d2002-03-08 21:31:05 +0000137
Matthew McClintock6252b4f2011-05-24 05:31:19 +0000138static inline int get_partition_info (block_dev_desc_t * dev_desc, int part,
139 disk_partition_t *info) { return -1; }
140static inline void print_part (block_dev_desc_t *dev_desc) {}
141static inline void init_part (block_dev_desc_t *dev_desc) {}
142static inline void dev_print(block_dev_desc_t *dev_desc) {}
Stephen Warrenafd909c2012-09-21 09:50:56 +0000143static inline int get_device(const char *ifname, const char *dev_str,
144 block_dev_desc_t **dev_desc)
145{ return -1; }
Rob Herringd586cec2012-09-21 04:08:17 +0000146static inline int get_device_and_partition(const char *ifname,
Stephen Warrenc87ff222012-09-21 09:50:57 +0000147 const char *dev_part_str,
Rob Herringd586cec2012-09-21 04:08:17 +0000148 block_dev_desc_t **dev_desc,
Stephen Warrenc87ff222012-09-21 09:50:57 +0000149 disk_partition_t *info,
150 int allow_whole_dev)
Rob Herringd586cec2012-09-21 04:08:17 +0000151{ *dev_desc = NULL; return -1; }
Matthew McClintock6252b4f2011-05-24 05:31:19 +0000152#endif
wdenk012771d2002-03-08 21:31:05 +0000153
154#ifdef CONFIG_MAC_PARTITION
155/* disk/part_mac.c */
156int get_partition_info_mac (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
157void print_part_mac (block_dev_desc_t *dev_desc);
158int test_part_mac (block_dev_desc_t *dev_desc);
159#endif
160
161#ifdef CONFIG_DOS_PARTITION
162/* disk/part_dos.c */
163int get_partition_info_dos (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
164void print_part_dos (block_dev_desc_t *dev_desc);
165int test_part_dos (block_dev_desc_t *dev_desc);
166#endif
167
168#ifdef CONFIG_ISO_PARTITION
169/* disk/part_iso.c */
170int get_partition_info_iso (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
171void print_part_iso (block_dev_desc_t *dev_desc);
172int test_part_iso (block_dev_desc_t *dev_desc);
173#endif
174
wdenk452cfd62002-11-19 11:04:11 +0000175#ifdef CONFIG_AMIGA_PARTITION
176/* disk/part_amiga.c */
177int get_partition_info_amiga (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
178void print_part_amiga (block_dev_desc_t *dev_desc);
179int test_part_amiga (block_dev_desc_t *dev_desc);
180#endif
181
richardretanubune6745592008-09-26 11:13:22 -0400182#ifdef CONFIG_EFI_PARTITION
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100183#include <part_efi.h>
richardretanubune6745592008-09-26 11:13:22 -0400184/* disk/part_efi.c */
185int get_partition_info_efi (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
186void print_part_efi (block_dev_desc_t *dev_desc);
187int test_part_efi (block_dev_desc_t *dev_desc);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100188
189/**
190 * write_gpt_table() - Write the GUID Partition Table to disk
191 *
192 * @param dev_desc - block device descriptor
193 * @param gpt_h - pointer to GPT header representation
194 * @param gpt_e - pointer to GPT partition table entries
195 *
196 * @return - zero on success, otherwise error
197 */
198int write_gpt_table(block_dev_desc_t *dev_desc,
199 gpt_header *gpt_h, gpt_entry *gpt_e);
200
201/**
202 * gpt_fill_pte(): Fill the GPT partition table entry
203 *
204 * @param gpt_h - GPT header representation
205 * @param gpt_e - GPT partition table entries
206 * @param partitions - list of partitions
207 * @param parts - number of partitions
208 *
209 * @return zero on success
210 */
211int gpt_fill_pte(gpt_header *gpt_h, gpt_entry *gpt_e,
212 disk_partition_t *partitions, int parts);
213
214/**
215 * gpt_fill_header(): Fill the GPT header
216 *
217 * @param dev_desc - block device descriptor
218 * @param gpt_h - GPT header representation
219 * @param str_guid - disk guid string representation
220 * @param parts_count - number of partitions
221 *
222 * @return - error on str_guid conversion error
223 */
224int gpt_fill_header(block_dev_desc_t *dev_desc, gpt_header *gpt_h,
225 char *str_guid, int parts_count);
226
227/**
228 * gpt_restore(): Restore GPT partition table
229 *
230 * @param dev_desc - block device descriptor
231 * @param str_disk_guid - disk GUID
232 * @param partitions - list of partitions
233 * @param parts - number of partitions
234 *
235 * @return zero on success
236 */
237int gpt_restore(block_dev_desc_t *dev_desc, char *str_disk_guid,
238 disk_partition_t *partitions, const int parts_count);
richardretanubune6745592008-09-26 11:13:22 -0400239#endif
240
wdenk012771d2002-03-08 21:31:05 +0000241#endif /* _PART_H */