2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef GRUB_DISK_HEADER
20 #define GRUB_DISK_HEADER 1
24 #include <grub/symbol.h>
26 #include <grub/types.h>
27 #include <grub/device.h>
31 /* These are used to set a device id. When you add a new disk device,
32 you must define a new id for it here. */
35 GRUB_DISK_DEVICE_BIOSDISK_ID
,
36 GRUB_DISK_DEVICE_OFDISK_ID
,
37 GRUB_DISK_DEVICE_LOOPBACK_ID
,
38 GRUB_DISK_DEVICE_EFIDISK_ID
,
39 GRUB_DISK_DEVICE_DISKFILTER_ID
,
40 GRUB_DISK_DEVICE_HOST_ID
,
41 GRUB_DISK_DEVICE_ATA_ID
,
42 GRUB_DISK_DEVICE_MEMDISK_ID
,
43 GRUB_DISK_DEVICE_NAND_ID
,
44 GRUB_DISK_DEVICE_SCSI_ID
,
45 GRUB_DISK_DEVICE_CRYPTODISK_ID
,
46 GRUB_DISK_DEVICE_ARCDISK_ID
,
47 GRUB_DISK_DEVICE_HOSTDISK_ID
,
48 GRUB_DISK_DEVICE_PROCFS_ID
,
49 GRUB_DISK_DEVICE_CBFSDISK_ID
,
50 GRUB_DISK_DEVICE_UBOOTDISK_ID
,
52 GRUB_DISK_DEVICE_OBDISK_ID
,
57 struct grub_disk_memberlist
;
63 GRUB_DISK_PULL_REMOVABLE
,
64 GRUB_DISK_PULL_RESCAN
,
68 typedef int (*grub_disk_dev_iterate_hook_t
) (const char *name
, void *data
);
73 /* The device name. */
76 /* The device id used by the cache manager. */
77 enum grub_disk_dev_id id
;
79 /* Call HOOK with each device name, until HOOK returns non-zero. */
80 int (*disk_iterate
) (grub_disk_dev_iterate_hook_t hook
, void *hook_data
,
81 grub_disk_pull_t pull
);
83 /* Open the device named NAME, and set up DISK. */
84 grub_err_t (*disk_open
) (const char *name
, struct grub_disk
*disk
);
86 /* Close the disk DISK. */
87 void (*disk_close
) (struct grub_disk
*disk
);
89 /* Read SIZE sectors from the sector SECTOR of the disk DISK into BUF. */
90 grub_err_t (*disk_read
) (struct grub_disk
*disk
, grub_disk_addr_t sector
,
91 grub_size_t size
, char *buf
);
93 /* Write SIZE sectors from BUF into the sector SECTOR of the disk DISK. */
94 grub_err_t (*disk_write
) (struct grub_disk
*disk
, grub_disk_addr_t sector
,
95 grub_size_t size
, const char *buf
);
98 struct grub_disk_memberlist
*(*disk_memberlist
) (struct grub_disk
*disk
);
99 const char * (*disk_raidname
) (struct grub_disk
*disk
);
102 /* The next disk device. */
103 struct grub_disk_dev
*next
;
105 typedef struct grub_disk_dev
*grub_disk_dev_t
;
107 extern grub_disk_dev_t
EXPORT_VAR (grub_disk_dev_list
);
109 struct grub_partition
;
111 typedef void (*grub_disk_read_hook_t
) (grub_disk_addr_t sector
,
112 unsigned offset
, unsigned length
,
121 /* The underlying disk device. */
124 /* The total number of sectors. */
125 grub_uint64_t total_sectors
;
127 /* Logarithm of sector size. */
128 unsigned int log_sector_size
;
130 /* Maximum number of sectors read divided by GRUB_DISK_CACHE_SIZE. */
131 unsigned int max_agglomerate
;
133 /* The id used by the disk cache manager. */
136 /* The partition information. This is machine-specific. */
137 struct grub_partition
*partition
;
139 /* Called when a sector was read. OFFSET is between 0 and
140 the sector size minus 1, and LENGTH is between 0 and the sector size. */
141 grub_disk_read_hook_t read_hook
;
143 /* Caller-specific data passed to the read hook. */
144 void *read_hook_data
;
146 /* Device-specific data. */
149 typedef struct grub_disk
*grub_disk_t
;
152 struct grub_disk_memberlist
155 struct grub_disk_memberlist
*next
;
157 typedef struct grub_disk_memberlist
*grub_disk_memberlist_t
;
160 /* The sector size. */
161 #define GRUB_DISK_SECTOR_SIZE 0x200
162 #define GRUB_DISK_SECTOR_BITS 9
164 /* The maximum number of disk caches. */
165 #define GRUB_DISK_CACHE_NUM 1021
167 /* The size of a disk cache in 512B units. Must be at least as big as the
168 largest supported sector size, currently 16K. */
169 #define GRUB_DISK_CACHE_BITS 6
170 #define GRUB_DISK_CACHE_SIZE (1 << GRUB_DISK_CACHE_BITS)
172 #define GRUB_DISK_MAX_MAX_AGGLOMERATE ((1 << (30 - GRUB_DISK_CACHE_BITS - GRUB_DISK_SECTOR_BITS)) - 1)
174 /* Return value of grub_disk_get_size() in case disk size is unknown. */
175 #define GRUB_DISK_SIZE_UNKNOWN 0xffffffffffffffffULL
177 /* This is called from the memory manager. */
178 void grub_disk_cache_invalidate_all (void);
180 void EXPORT_FUNC(grub_disk_dev_register
) (grub_disk_dev_t dev
);
181 void EXPORT_FUNC(grub_disk_dev_unregister
) (grub_disk_dev_t dev
);
183 grub_disk_dev_iterate (grub_disk_dev_iterate_hook_t hook
, void *hook_data
)
186 grub_disk_pull_t pull
;
188 for (pull
= 0; pull
< GRUB_DISK_PULL_MAX
; pull
++)
189 for (p
= grub_disk_dev_list
; p
; p
= p
->next
)
190 if (p
->disk_iterate
&& (p
->disk_iterate
) (hook
, hook_data
, pull
))
196 grub_disk_t
EXPORT_FUNC(grub_disk_open
) (const char *name
);
197 void EXPORT_FUNC(grub_disk_close
) (grub_disk_t disk
);
198 grub_err_t
EXPORT_FUNC(grub_disk_blocklist_read
)(void *chunklist
, grub_uint64_t sector
,
199 grub_uint64_t size
, grub_uint32_t log_sector_size
);
201 grub_err_t
EXPORT_FUNC(grub_disk_read
) (grub_disk_t disk
,
202 grub_disk_addr_t sector
,
206 grub_err_t
grub_disk_write (grub_disk_t disk
,
207 grub_disk_addr_t sector
,
211 extern grub_err_t (*EXPORT_VAR(grub_disk_write_weak
)) (grub_disk_t disk
,
212 grub_disk_addr_t sector
,
218 grub_uint64_t
EXPORT_FUNC(grub_disk_get_size
) (grub_disk_t disk
);
222 EXPORT_FUNC(grub_disk_cache_get_performance
) (unsigned long *hits
, unsigned long *misses
);
225 extern void (* EXPORT_VAR(grub_disk_firmware_fini
)) (void);
226 extern int EXPORT_VAR(grub_disk_firmware_is_tainted
);
229 grub_stop_disk_firmware (void)
231 /* To prevent two drivers operating on the same disks. */
232 grub_disk_firmware_is_tainted
= 1;
233 if (grub_disk_firmware_fini
)
235 grub_disk_firmware_fini ();
236 grub_disk_firmware_fini
= NULL
;
241 struct grub_disk_cache
243 enum grub_disk_dev_id dev_id
;
244 unsigned long disk_id
;
245 grub_disk_addr_t sector
;
250 extern struct grub_disk_cache
EXPORT_VAR(grub_disk_cache_table
)[GRUB_DISK_CACHE_NUM
];
252 #if defined (GRUB_UTIL)
253 void grub_lvm_init (void);
254 void grub_ldm_init (void);
255 void grub_mdraid09_init (void);
256 void grub_mdraid1x_init (void);
257 void grub_diskfilter_init (void);
258 void grub_lvm_fini (void);
259 void grub_ldm_fini (void);
260 void grub_mdraid09_fini (void);
261 void grub_mdraid1x_fini (void);
262 void grub_diskfilter_fini (void);
265 #endif /* ! GRUB_DISK_HEADER */