]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/part.h
board: axs103 - add maintainer information
[people/ms/u-boot.git] / include / part.h
CommitLineData
012771d8 1/*
42dfe7a1 2 * (C) Copyright 2000-2004
012771d8
WD
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
3765b3e7 5 * SPDX-License-Identifier: GPL-2.0+
012771d8
WD
6 */
7#ifndef _PART_H
8#define _PART_H
735dd97b 9
6e592385 10#include <ide.h>
6b423b75 11#include <common.h>
012771d8
WD
12
13typedef struct block_dev_desc {
42dfe7a1 14 int if_type; /* type of the interface */
d049cc7f
WD
15 int dev; /* device number */
16 unsigned char part_type; /* partition type */
42dfe7a1
WD
17 unsigned char target; /* target SCSI ID */
18 unsigned char lun; /* target LUN */
19 unsigned char type; /* device type */
20 unsigned char removable; /* removable device */
21#ifdef CONFIG_LBA48
22 unsigned char lba48; /* device can use 48bit addr (ATA/ATAPI v7) */
23#endif
985889b1 24 lbaint_t lba; /* number of blocks */
42dfe7a1 25 unsigned long blksz; /* block size */
0472fbfd 26 int log2blksz; /* for convenience: log2(blksz) */
d049cc7f 27 char vendor [40+1]; /* IDE model, SCSI Vendor */
2a4741d9
MZ
28 char product[20+1]; /* IDE Serial no, SCSI product */
29 char revision[8+1]; /* firmware revision */
42dfe7a1 30 unsigned long (*block_read)(int dev,
ff8fef56 31 lbaint_t start,
6e592385 32 lbaint_t blkcnt,
eb867a76 33 void *buffer);
53758fa2 34 unsigned long (*block_write)(int dev,
ff8fef56 35 lbaint_t start,
53758fa2
GL
36 lbaint_t blkcnt,
37 const void *buffer);
e6f99a56 38 unsigned long (*block_erase)(int dev,
ff8fef56 39 lbaint_t start,
e6f99a56 40 lbaint_t blkcnt);
c7057b52 41 void *priv; /* driver private struct pointer */
012771d8 42}block_dev_desc_t;
b0fce99b 43
ae1768a7
EE
44#define BLOCK_CNT(size, block_dev_desc) (PAD_COUNT(size, block_dev_desc->blksz))
45#define PAD_TO_BLOCKSIZE(size, block_dev_desc) \
46 (PAD_SIZE(size, block_dev_desc->blksz))
0472fbfd
EE
47#define LOG2(x) (((x & 0xaaaaaaaa) ? 1 : 0) + ((x & 0xcccccccc) ? 2 : 0) + \
48 ((x & 0xf0f0f0f0) ? 4 : 0) + ((x & 0xff00ff00) ? 8 : 0) + \
49 ((x & 0xffff0000) ? 16 : 0))
50#define LOG2_INVALID(type) ((type)((sizeof(type)<<3)-1))
ae1768a7 51
012771d8 52/* Interface types: */
b0fce99b
WD
53#define IF_TYPE_UNKNOWN 0
54#define IF_TYPE_IDE 1
012771d8
WD
55#define IF_TYPE_SCSI 2
56#define IF_TYPE_ATAPI 3
b0fce99b
WD
57#define IF_TYPE_USB 4
58#define IF_TYPE_DOC 5
7205e407 59#define IF_TYPE_MMC 6
c95219fa 60#define IF_TYPE_SD 7
c7057b52 61#define IF_TYPE_SATA 8
f4d8de48
HN
62#define IF_TYPE_HOST 9
63#define IF_TYPE_MAX 10 /* Max number of IF_TYPE_* supported */
b0fce99b 64
012771d8 65/* Part types */
42dfe7a1 66#define PART_TYPE_UNKNOWN 0x00
012771d8
WD
67#define PART_TYPE_MAC 0x01
68#define PART_TYPE_DOS 0x02
69#define PART_TYPE_ISO 0x03
42dfe7a1 70#define PART_TYPE_AMIGA 0x04
07f3d789 71#define PART_TYPE_EFI 0x05
c7de829c 72
b0fce99b
WD
73/*
74 * Type string for U-Boot bootable partitions
75 */
76#define BOOT_PART_TYPE "U-Boot" /* primary boot partition type */
77#define BOOT_PART_COMP "PPCBoot" /* PPCBoot compatibility type */
78
012771d8 79/* device types */
b0fce99b
WD
80#define DEV_TYPE_UNKNOWN 0xff /* not connected */
81#define DEV_TYPE_HARDDISK 0x00 /* harddisk */
42dfe7a1
WD
82#define DEV_TYPE_TAPE 0x01 /* Tape */
83#define DEV_TYPE_CDROM 0x05 /* CD-ROM */
84#define DEV_TYPE_OPDISK 0x07 /* optical disk */
012771d8 85
42dfe7a1 86typedef struct disk_partition {
04735e9c
FL
87 lbaint_t start; /* # of first block in partition */
88 lbaint_t size; /* number of blocks in partition */
012771d8
WD
89 ulong blksz; /* block size in bytes */
90 uchar name[32]; /* partition name */
91 uchar type[32]; /* string type description */
40e0e568 92 int bootable; /* Active/Bootable flag is set */
894bfbbf
SW
93#ifdef CONFIG_PARTITION_UUIDS
94 char uuid[37]; /* filesystem UUID as string, if exists */
95#endif
012771d8
WD
96} disk_partition_t;
97
735dd97b 98/* Misc _get_dev functions */
df3fc526 99#ifdef CONFIG_PARTITIONS
99d2c205 100block_dev_desc_t *get_dev(const char *ifname, int dev);
735dd97b 101block_dev_desc_t* ide_get_dev(int dev);
c7057b52 102block_dev_desc_t* sata_get_dev(int dev);
735dd97b
GL
103block_dev_desc_t* scsi_get_dev(int dev);
104block_dev_desc_t* usb_stor_get_dev(int dev);
105block_dev_desc_t* mmc_get_dev(int dev);
d2356284 106int mmc_select_hwpart(int dev_num, int hwpart);
735dd97b 107block_dev_desc_t* systemace_get_dev(int dev);
75eb82ec 108block_dev_desc_t* mg_disk_get_dev(int dev);
f4d8de48
HN
109block_dev_desc_t *host_get_dev(int dev);
110int host_get_dev_err(int dev, block_dev_desc_t **blk_devp);
735dd97b 111
012771d8
WD
112/* disk/part.c */
113int get_partition_info (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
114void print_part (block_dev_desc_t *dev_desc);
115void init_part (block_dev_desc_t *dev_desc);
116void dev_print(block_dev_desc_t *dev_desc);
2023e608
SW
117int get_device(const char *ifname, const char *dev_str,
118 block_dev_desc_t **dev_desc);
10a37fd7 119int get_device_and_partition(const char *ifname, const char *dev_part_str,
99d2c205 120 block_dev_desc_t **dev_desc,
10a37fd7 121 disk_partition_t *info, int allow_whole_dev);
df3fc526 122#else
99d2c205
RH
123static inline block_dev_desc_t *get_dev(const char *ifname, int dev)
124{ return NULL; }
df3fc526
MM
125static inline block_dev_desc_t* ide_get_dev(int dev) { return NULL; }
126static inline block_dev_desc_t* sata_get_dev(int dev) { return NULL; }
127static inline block_dev_desc_t* scsi_get_dev(int dev) { return NULL; }
128static inline block_dev_desc_t* usb_stor_get_dev(int dev) { return NULL; }
129static inline block_dev_desc_t* mmc_get_dev(int dev) { return NULL; }
d2356284 130static inline int mmc_select_hwpart(int dev_num, int hwpart) { return -1; }
df3fc526
MM
131static inline block_dev_desc_t* systemace_get_dev(int dev) { return NULL; }
132static inline block_dev_desc_t* mg_disk_get_dev(int dev) { return NULL; }
f4d8de48 133static inline block_dev_desc_t *host_get_dev(int dev) { return NULL; }
012771d8 134
df3fc526
MM
135static inline int get_partition_info (block_dev_desc_t * dev_desc, int part,
136 disk_partition_t *info) { return -1; }
137static inline void print_part (block_dev_desc_t *dev_desc) {}
138static inline void init_part (block_dev_desc_t *dev_desc) {}
139static inline void dev_print(block_dev_desc_t *dev_desc) {}
2023e608
SW
140static inline int get_device(const char *ifname, const char *dev_str,
141 block_dev_desc_t **dev_desc)
142{ return -1; }
99d2c205 143static inline int get_device_and_partition(const char *ifname,
10a37fd7 144 const char *dev_part_str,
99d2c205 145 block_dev_desc_t **dev_desc,
10a37fd7
SW
146 disk_partition_t *info,
147 int allow_whole_dev)
99d2c205 148{ *dev_desc = NULL; return -1; }
df3fc526 149#endif
012771d8
WD
150
151#ifdef CONFIG_MAC_PARTITION
152/* disk/part_mac.c */
153int get_partition_info_mac (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
154void print_part_mac (block_dev_desc_t *dev_desc);
155int test_part_mac (block_dev_desc_t *dev_desc);
156#endif
157
158#ifdef CONFIG_DOS_PARTITION
159/* disk/part_dos.c */
160int get_partition_info_dos (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
161void print_part_dos (block_dev_desc_t *dev_desc);
162int test_part_dos (block_dev_desc_t *dev_desc);
163#endif
164
165#ifdef CONFIG_ISO_PARTITION
166/* disk/part_iso.c */
167int get_partition_info_iso (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
168void print_part_iso (block_dev_desc_t *dev_desc);
169int test_part_iso (block_dev_desc_t *dev_desc);
170#endif
171
c7de829c
WD
172#ifdef CONFIG_AMIGA_PARTITION
173/* disk/part_amiga.c */
174int get_partition_info_amiga (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
175void print_part_amiga (block_dev_desc_t *dev_desc);
176int test_part_amiga (block_dev_desc_t *dev_desc);
177#endif
178
07f3d789 179#ifdef CONFIG_EFI_PARTITION
40684ddb 180#include <part_efi.h>
07f3d789 181/* disk/part_efi.c */
182int get_partition_info_efi (block_dev_desc_t * dev_desc, int part, disk_partition_t *info);
60bf9416
SR
183/**
184 * get_partition_info_efi_by_name() - Find the specified GPT partition table entry
185 *
186 * @param dev_desc - block device descriptor
187 * @param gpt_name - the specified table entry name
188 * @param info - returns the disk partition info
189 *
190 * @return - '0' on match, '-1' on no match, otherwise error
191 */
192int get_partition_info_efi_by_name(block_dev_desc_t *dev_desc,
193 const char *name, disk_partition_t *info);
07f3d789 194void print_part_efi (block_dev_desc_t *dev_desc);
195int test_part_efi (block_dev_desc_t *dev_desc);
40684ddb
ŁM
196
197/**
198 * write_gpt_table() - Write the GUID Partition Table to disk
199 *
200 * @param dev_desc - block device descriptor
201 * @param gpt_h - pointer to GPT header representation
202 * @param gpt_e - pointer to GPT partition table entries
203 *
204 * @return - zero on success, otherwise error
205 */
206int write_gpt_table(block_dev_desc_t *dev_desc,
207 gpt_header *gpt_h, gpt_entry *gpt_e);
208
209/**
210 * gpt_fill_pte(): Fill the GPT partition table entry
211 *
212 * @param gpt_h - GPT header representation
213 * @param gpt_e - GPT partition table entries
214 * @param partitions - list of partitions
215 * @param parts - number of partitions
216 *
217 * @return zero on success
218 */
219int gpt_fill_pte(gpt_header *gpt_h, gpt_entry *gpt_e,
220 disk_partition_t *partitions, int parts);
221
222/**
223 * gpt_fill_header(): Fill the GPT header
224 *
225 * @param dev_desc - block device descriptor
226 * @param gpt_h - GPT header representation
227 * @param str_guid - disk guid string representation
228 * @param parts_count - number of partitions
229 *
230 * @return - error on str_guid conversion error
231 */
232int gpt_fill_header(block_dev_desc_t *dev_desc, gpt_header *gpt_h,
233 char *str_guid, int parts_count);
234
235/**
236 * gpt_restore(): Restore GPT partition table
237 *
238 * @param dev_desc - block device descriptor
239 * @param str_disk_guid - disk GUID
240 * @param partitions - list of partitions
241 * @param parts - number of partitions
242 *
243 * @return zero on success
244 */
245int gpt_restore(block_dev_desc_t *dev_desc, char *str_disk_guid,
246 disk_partition_t *partitions, const int parts_count);
0ff7e585
SR
247
248/**
249 * is_valid_gpt_buf() - Ensure that the Primary GPT information is valid
250 *
251 * @param dev_desc - block device descriptor
252 * @param buf - buffer which contains the MBR and Primary GPT info
253 *
254 * @return - '0' on success, otherwise error
255 */
256int is_valid_gpt_buf(block_dev_desc_t *dev_desc, void *buf);
257
258/**
259 * write_mbr_and_gpt_partitions() - write MBR, Primary GPT and Backup GPT
260 *
261 * @param dev_desc - block device descriptor
262 * @param buf - buffer which contains the MBR and Primary GPT info
263 *
264 * @return - '0' on success, otherwise error
265 */
266int write_mbr_and_gpt_partitions(block_dev_desc_t *dev_desc, void *buf);
07f3d789 267#endif
268
012771d8 269#endif /* _PART_H */