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
,
56 struct grub_disk_memberlist
;
62 GRUB_DISK_PULL_REMOVABLE
,
63 GRUB_DISK_PULL_RESCAN
,
67 typedef int (*grub_disk_dev_iterate_hook_t
) (const char *name
, void *data
);
72 /* The device name. */
75 /* The device id used by the cache manager. */
76 enum grub_disk_dev_id id
;
78 /* Call HOOK with each device name, until HOOK returns non-zero. */
79 int (*iterate
) (grub_disk_dev_iterate_hook_t hook
, void *hook_data
,
80 grub_disk_pull_t pull
);
82 /* Open the device named NAME, and set up DISK. */
83 grub_err_t (*open
) (const char *name
, struct grub_disk
*disk
);
85 /* Close the disk DISK. */
86 void (*close
) (struct grub_disk
*disk
);
88 /* Read SIZE sectors from the sector SECTOR of the disk DISK into BUF. */
89 grub_err_t (*read
) (struct grub_disk
*disk
, grub_disk_addr_t sector
,
90 grub_size_t size
, char *buf
);
92 /* Write SIZE sectors from BUF into the sector SECTOR of the disk DISK. */
93 grub_err_t (*write
) (struct grub_disk
*disk
, grub_disk_addr_t sector
,
94 grub_size_t size
, const char *buf
);
97 struct grub_disk_memberlist
*(*memberlist
) (struct grub_disk
*disk
);
98 const char * (*raidname
) (struct grub_disk
*disk
);
101 /* The next disk device. */
102 struct grub_disk_dev
*next
;
104 typedef struct grub_disk_dev
*grub_disk_dev_t
;
106 extern grub_disk_dev_t
EXPORT_VAR (grub_disk_dev_list
);
108 struct grub_partition
;
110 typedef void (*grub_disk_read_hook_t
) (grub_disk_addr_t sector
,
111 unsigned offset
, unsigned length
,
120 /* The underlying disk device. */
123 /* The total number of sectors. */
124 grub_uint64_t total_sectors
;
126 /* Logarithm of sector size. */
127 unsigned int log_sector_size
;
129 /* Maximum number of sectors read divided by GRUB_DISK_CACHE_SIZE. */
130 unsigned int max_agglomerate
;
132 /* The id used by the disk cache manager. */
135 /* The partition information. This is machine-specific. */
136 struct grub_partition
*partition
;
138 /* Called when a sector was read. OFFSET is between 0 and
139 the sector size minus 1, and LENGTH is between 0 and the sector size. */
140 grub_disk_read_hook_t read_hook
;
142 /* Caller-specific data passed to the read hook. */
143 void *read_hook_data
;
145 /* Device-specific data. */
148 typedef struct grub_disk
*grub_disk_t
;
151 struct grub_disk_memberlist
154 struct grub_disk_memberlist
*next
;
156 typedef struct grub_disk_memberlist
*grub_disk_memberlist_t
;
159 /* The sector size. */
160 #define GRUB_DISK_SECTOR_SIZE 0x200
161 #define GRUB_DISK_SECTOR_BITS 9
163 /* The maximum number of disk caches. */
164 #define GRUB_DISK_CACHE_NUM 1021
166 /* The size of a disk cache in 512B units. Must be at least as big as the
167 largest supported sector size, currently 16K. */
168 #define GRUB_DISK_CACHE_BITS 6
169 #define GRUB_DISK_CACHE_SIZE (1 << GRUB_DISK_CACHE_BITS)
171 #define GRUB_DISK_MAX_MAX_AGGLOMERATE ((1 << (30 - GRUB_DISK_CACHE_BITS - GRUB_DISK_SECTOR_BITS)) - 1)
173 /* Return value of grub_disk_get_size() in case disk size is unknown. */
174 #define GRUB_DISK_SIZE_UNKNOWN 0xffffffffffffffffULL
176 /* This is called from the memory manager. */
177 void grub_disk_cache_invalidate_all (void);
179 void EXPORT_FUNC(grub_disk_dev_register
) (grub_disk_dev_t dev
);
180 void EXPORT_FUNC(grub_disk_dev_unregister
) (grub_disk_dev_t dev
);
182 grub_disk_dev_iterate (grub_disk_dev_iterate_hook_t hook
, void *hook_data
)
185 grub_disk_pull_t pull
;
187 for (pull
= 0; pull
< GRUB_DISK_PULL_MAX
; pull
++)
188 for (p
= grub_disk_dev_list
; p
; p
= p
->next
)
189 if (p
->iterate
&& (p
->iterate
) (hook
, hook_data
, pull
))
195 grub_disk_t
EXPORT_FUNC(grub_disk_open
) (const char *name
);
196 void EXPORT_FUNC(grub_disk_close
) (grub_disk_t disk
);
197 grub_err_t
EXPORT_FUNC(grub_disk_read
) (grub_disk_t disk
,
198 grub_disk_addr_t sector
,
202 grub_err_t
grub_disk_write (grub_disk_t disk
,
203 grub_disk_addr_t sector
,
207 extern grub_err_t (*EXPORT_VAR(grub_disk_write_weak
)) (grub_disk_t disk
,
208 grub_disk_addr_t sector
,
214 grub_uint64_t
EXPORT_FUNC(grub_disk_get_size
) (grub_disk_t disk
);
218 EXPORT_FUNC(grub_disk_cache_get_performance
) (unsigned long *hits
, unsigned long *misses
);
221 extern void (* EXPORT_VAR(grub_disk_firmware_fini
)) (void);
222 extern int EXPORT_VAR(grub_disk_firmware_is_tainted
);
225 grub_stop_disk_firmware (void)
227 /* To prevent two drivers operating on the same disks. */
228 grub_disk_firmware_is_tainted
= 1;
229 if (grub_disk_firmware_fini
)
231 grub_disk_firmware_fini ();
232 grub_disk_firmware_fini
= NULL
;
237 struct grub_disk_cache
239 enum grub_disk_dev_id dev_id
;
240 unsigned long disk_id
;
241 grub_disk_addr_t sector
;
246 extern struct grub_disk_cache
EXPORT_VAR(grub_disk_cache_table
)[GRUB_DISK_CACHE_NUM
];
248 #if defined (GRUB_UTIL)
249 void grub_lvm_init (void);
250 void grub_ldm_init (void);
251 void grub_mdraid09_init (void);
252 void grub_mdraid1x_init (void);
253 void grub_diskfilter_init (void);
254 void grub_lvm_fini (void);
255 void grub_ldm_fini (void);
256 void grub_mdraid09_fini (void);
257 void grub_mdraid1x_fini (void);
258 void grub_diskfilter_fini (void);
261 #endif /* ! GRUB_DISK_HEADER */