wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 1 | /* |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 2 | * (C) Copyright 2000-2004 |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 3 | * 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 |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 16 | * 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 Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 25 | |
wdenk | 0593920 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 26 | #include <ide.h> |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 27 | |
| 28 | typedef struct block_dev_desc { |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 29 | int if_type; /* type of the interface */ |
Wolfgang Denk | 9a6a7e0 | 2008-03-27 00:03:57 +0100 | [diff] [blame] | 30 | int dev; /* device number */ |
| 31 | unsigned char part_type; /* partition type */ |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 32 | 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 Gustschin | 4de7a47 | 2012-05-19 07:25:27 +0000 | [diff] [blame] | 39 | lbaint_t lba; /* number of blocks */ |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 40 | unsigned long blksz; /* block size */ |
Wolfgang Denk | 9a6a7e0 | 2008-03-27 00:03:57 +0100 | [diff] [blame] | 41 | char vendor [40+1]; /* IDE model, SCSI Vendor */ |
Marcel Ziswiler | 53761bc | 2007-10-19 00:25:33 +0200 | [diff] [blame] | 42 | char product[20+1]; /* IDE Serial no, SCSI product */ |
| 43 | char revision[8+1]; /* firmware revision */ |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 44 | unsigned long (*block_read)(int dev, |
| 45 | unsigned long start, |
wdenk | 0593920 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 46 | lbaint_t blkcnt, |
Grant Likely | 2089cab | 2007-02-20 09:05:45 +0100 | [diff] [blame] | 47 | void *buffer); |
Grant Likely | 4b43527 | 2007-02-20 09:05:38 +0100 | [diff] [blame] | 48 | unsigned long (*block_write)(int dev, |
| 49 | unsigned long start, |
| 50 | lbaint_t blkcnt, |
| 51 | const void *buffer); |
Lei Wen | ea52676 | 2011-06-22 17:03:31 +0000 | [diff] [blame] | 52 | unsigned long (*block_erase)(int dev, |
| 53 | unsigned long start, |
| 54 | lbaint_t blkcnt); |
Dave Liu | 76596ba | 2008-03-26 22:49:44 +0800 | [diff] [blame] | 55 | void *priv; /* driver private struct pointer */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 56 | }block_dev_desc_t; |
wdenk | f12e396 | 2003-06-29 21:03:46 +0000 | [diff] [blame] | 57 | |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame^] | 58 | #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 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 62 | /* Interface types: */ |
wdenk | f12e396 | 2003-06-29 21:03:46 +0000 | [diff] [blame] | 63 | #define IF_TYPE_UNKNOWN 0 |
| 64 | #define IF_TYPE_IDE 1 |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 65 | #define IF_TYPE_SCSI 2 |
| 66 | #define IF_TYPE_ATAPI 3 |
wdenk | f12e396 | 2003-06-29 21:03:46 +0000 | [diff] [blame] | 67 | #define IF_TYPE_USB 4 |
| 68 | #define IF_TYPE_DOC 5 |
wdenk | 2c9b05d | 2003-09-10 22:30:53 +0000 | [diff] [blame] | 69 | #define IF_TYPE_MMC 6 |
stefano babic | 43300a1 | 2007-11-20 10:40:24 +0100 | [diff] [blame] | 70 | #define IF_TYPE_SD 7 |
Dave Liu | 76596ba | 2008-03-26 22:49:44 +0800 | [diff] [blame] | 71 | #define IF_TYPE_SATA 8 |
wdenk | f12e396 | 2003-06-29 21:03:46 +0000 | [diff] [blame] | 72 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 73 | /* Part types */ |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 74 | #define PART_TYPE_UNKNOWN 0x00 |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 75 | #define PART_TYPE_MAC 0x01 |
| 76 | #define PART_TYPE_DOS 0x02 |
| 77 | #define PART_TYPE_ISO 0x03 |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 78 | #define PART_TYPE_AMIGA 0x04 |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 79 | #define PART_TYPE_EFI 0x05 |
wdenk | 452cfd6 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 80 | |
wdenk | f12e396 | 2003-06-29 21:03:46 +0000 | [diff] [blame] | 81 | /* |
| 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 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 87 | /* device types */ |
wdenk | f12e396 | 2003-06-29 21:03:46 +0000 | [diff] [blame] | 88 | #define DEV_TYPE_UNKNOWN 0xff /* not connected */ |
| 89 | #define DEV_TYPE_HARDDISK 0x00 /* harddisk */ |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 90 | #define DEV_TYPE_TAPE 0x01 /* Tape */ |
| 91 | #define DEV_TYPE_CDROM 0x05 /* CD-ROM */ |
| 92 | #define DEV_TYPE_OPDISK 0x07 /* optical disk */ |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 93 | |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 94 | typedef struct disk_partition { |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 95 | 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 Herring | eda5111 | 2012-08-23 11:31:43 +0000 | [diff] [blame] | 100 | int bootable; /* Active/Bootable flag is set */ |
Stephen Warren | c6c7b7a | 2012-09-21 09:50:59 +0000 | [diff] [blame] | 101 | #ifdef CONFIG_PARTITION_UUIDS |
| 102 | char uuid[37]; /* filesystem UUID as string, if exists */ |
| 103 | #endif |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 104 | } disk_partition_t; |
| 105 | |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 106 | /* Misc _get_dev functions */ |
Matthew McClintock | 6252b4f | 2011-05-24 05:31:19 +0000 | [diff] [blame] | 107 | #ifdef CONFIG_PARTITIONS |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 108 | block_dev_desc_t *get_dev(const char *ifname, int dev); |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 109 | block_dev_desc_t* ide_get_dev(int dev); |
Dave Liu | 76596ba | 2008-03-26 22:49:44 +0800 | [diff] [blame] | 110 | block_dev_desc_t* sata_get_dev(int dev); |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 111 | block_dev_desc_t* scsi_get_dev(int dev); |
| 112 | block_dev_desc_t* usb_stor_get_dev(int dev); |
| 113 | block_dev_desc_t* mmc_get_dev(int dev); |
| 114 | block_dev_desc_t* systemace_get_dev(int dev); |
unsik Kim | f0b1bdd | 2009-02-25 11:31:24 +0900 | [diff] [blame] | 115 | block_dev_desc_t* mg_disk_get_dev(int dev); |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 116 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 117 | /* disk/part.c */ |
| 118 | int get_partition_info (block_dev_desc_t * dev_desc, int part, disk_partition_t *info); |
| 119 | void print_part (block_dev_desc_t *dev_desc); |
| 120 | void init_part (block_dev_desc_t *dev_desc); |
| 121 | void dev_print(block_dev_desc_t *dev_desc); |
Stephen Warren | afd909c | 2012-09-21 09:50:56 +0000 | [diff] [blame] | 122 | int get_device(const char *ifname, const char *dev_str, |
| 123 | block_dev_desc_t **dev_desc); |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 124 | int get_device_and_partition(const char *ifname, const char *dev_part_str, |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 125 | block_dev_desc_t **dev_desc, |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 126 | disk_partition_t *info, int allow_whole_dev); |
Matthew McClintock | 6252b4f | 2011-05-24 05:31:19 +0000 | [diff] [blame] | 127 | #else |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 128 | static inline block_dev_desc_t *get_dev(const char *ifname, int dev) |
| 129 | { return NULL; } |
Matthew McClintock | 6252b4f | 2011-05-24 05:31:19 +0000 | [diff] [blame] | 130 | static inline block_dev_desc_t* ide_get_dev(int dev) { return NULL; } |
| 131 | static inline block_dev_desc_t* sata_get_dev(int dev) { return NULL; } |
| 132 | static inline block_dev_desc_t* scsi_get_dev(int dev) { return NULL; } |
| 133 | static inline block_dev_desc_t* usb_stor_get_dev(int dev) { return NULL; } |
| 134 | static inline block_dev_desc_t* mmc_get_dev(int dev) { return NULL; } |
| 135 | static inline block_dev_desc_t* systemace_get_dev(int dev) { return NULL; } |
| 136 | static inline block_dev_desc_t* mg_disk_get_dev(int dev) { return NULL; } |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 137 | |
Matthew McClintock | 6252b4f | 2011-05-24 05:31:19 +0000 | [diff] [blame] | 138 | static inline int get_partition_info (block_dev_desc_t * dev_desc, int part, |
| 139 | disk_partition_t *info) { return -1; } |
| 140 | static inline void print_part (block_dev_desc_t *dev_desc) {} |
| 141 | static inline void init_part (block_dev_desc_t *dev_desc) {} |
| 142 | static inline void dev_print(block_dev_desc_t *dev_desc) {} |
Stephen Warren | afd909c | 2012-09-21 09:50:56 +0000 | [diff] [blame] | 143 | static inline int get_device(const char *ifname, const char *dev_str, |
| 144 | block_dev_desc_t **dev_desc) |
| 145 | { return -1; } |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 146 | static inline int get_device_and_partition(const char *ifname, |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 147 | const char *dev_part_str, |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 148 | block_dev_desc_t **dev_desc, |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 149 | disk_partition_t *info, |
| 150 | int allow_whole_dev) |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 151 | { *dev_desc = NULL; return -1; } |
Matthew McClintock | 6252b4f | 2011-05-24 05:31:19 +0000 | [diff] [blame] | 152 | #endif |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 153 | |
| 154 | #ifdef CONFIG_MAC_PARTITION |
| 155 | /* disk/part_mac.c */ |
| 156 | int get_partition_info_mac (block_dev_desc_t * dev_desc, int part, disk_partition_t *info); |
| 157 | void print_part_mac (block_dev_desc_t *dev_desc); |
| 158 | int test_part_mac (block_dev_desc_t *dev_desc); |
| 159 | #endif |
| 160 | |
| 161 | #ifdef CONFIG_DOS_PARTITION |
| 162 | /* disk/part_dos.c */ |
| 163 | int get_partition_info_dos (block_dev_desc_t * dev_desc, int part, disk_partition_t *info); |
| 164 | void print_part_dos (block_dev_desc_t *dev_desc); |
| 165 | int test_part_dos (block_dev_desc_t *dev_desc); |
| 166 | #endif |
| 167 | |
| 168 | #ifdef CONFIG_ISO_PARTITION |
| 169 | /* disk/part_iso.c */ |
| 170 | int get_partition_info_iso (block_dev_desc_t * dev_desc, int part, disk_partition_t *info); |
| 171 | void print_part_iso (block_dev_desc_t *dev_desc); |
| 172 | int test_part_iso (block_dev_desc_t *dev_desc); |
| 173 | #endif |
| 174 | |
wdenk | 452cfd6 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 175 | #ifdef CONFIG_AMIGA_PARTITION |
| 176 | /* disk/part_amiga.c */ |
| 177 | int get_partition_info_amiga (block_dev_desc_t * dev_desc, int part, disk_partition_t *info); |
| 178 | void print_part_amiga (block_dev_desc_t *dev_desc); |
| 179 | int test_part_amiga (block_dev_desc_t *dev_desc); |
| 180 | #endif |
| 181 | |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 182 | #ifdef CONFIG_EFI_PARTITION |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 183 | #include <part_efi.h> |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 184 | /* disk/part_efi.c */ |
| 185 | int get_partition_info_efi (block_dev_desc_t * dev_desc, int part, disk_partition_t *info); |
| 186 | void print_part_efi (block_dev_desc_t *dev_desc); |
| 187 | int test_part_efi (block_dev_desc_t *dev_desc); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 188 | |
| 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 | */ |
| 198 | int 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 | */ |
| 211 | int 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 | */ |
| 224 | int 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 | */ |
| 237 | int gpt_restore(block_dev_desc_t *dev_desc, char *str_disk_guid, |
| 238 | disk_partition_t *partitions, const int parts_count); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 239 | #endif |
| 240 | |
wdenk | 012771d | 2002-03-08 21:31:05 +0000 | [diff] [blame] | 241 | #endif /* _PART_H */ |