3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
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,
32 #define PRINTF(fmt,args...) printf (fmt ,##args)
34 #define PRINTF(fmt,args...)
37 #if ((CONFIG_COMMANDS & CFG_CMD_IDE) || \
38 (CONFIG_COMMANDS & CFG_CMD_SCSI) || \
39 (CONFIG_COMMANDS & CFG_CMD_USB) || \
40 defined(CONFIG_MMC) || \
41 defined(CONFIG_SYSTEMACE) )
45 block_dev_desc_t* (*get_dev)(int dev);
48 static const struct block_drvr block_drvr[] = {
49 #if (CONFIG_COMMANDS & CFG_CMD_IDE)
50 { .name = "ide", .get_dev = ide_get_dev, },
52 #if (CONFIG_COMMANDS & CFG_CMD_SCSI)
53 { .name = "scsi", .get_dev = scsi_get_dev, },
55 #if ((CONFIG_COMMANDS & CFG_CMD_USB) && defined(CONFIG_USB_STORAGE))
56 { .name = "usb", .get_dev = usb_stor_get_dev, },
58 #if defined(CONFIG_MMC)
59 { .name = "mmc", .get_dev = mmc_get_dev, },
61 #if defined(CONFIG_SYSTEMACE)
62 { .name = "ace", .get_dev = systemace_get_dev, },
67 DECLARE_GLOBAL_DATA_PTR;
69 block_dev_desc_t *get_dev(char* ifname, int dev)
71 const struct block_drvr *drvr = block_drvr;
72 block_dev_desc_t* (*reloc_get_dev)(int dev);
75 reloc_get_dev = drvr->get_dev + gd->reloc_off;
76 if (strncmp(ifname, drvr->name, strlen(drvr->name)) == 0)
77 return reloc_get_dev(dev);
83 block_dev_desc_t *get_dev(char* ifname, int dev)
89 #if ((CONFIG_COMMANDS & CFG_CMD_IDE) || \
90 (CONFIG_COMMANDS & CFG_CMD_SCSI) || \
91 (CONFIG_COMMANDS & CFG_CMD_USB) || \
92 defined(CONFIG_MMC) || \
93 defined(CONFIG_SYSTEMACE) )
95 /* ------------------------------------------------------------------------- */
97 * reports device info to the user
99 void dev_print (block_dev_desc_t *dev_desc)
102 uint64_t lba512; /* number of blocks if 512bytes block size */
107 if (dev_desc->type==DEV_TYPE_UNKNOWN) {
108 puts ("not available\n");
111 if (dev_desc->if_type==IF_TYPE_SCSI) {
112 printf ("(%d:%d) ", dev_desc->target,dev_desc->lun);
114 if (dev_desc->if_type==IF_TYPE_IDE) {
115 printf ("Model: %s Firm: %s Ser#: %s\n",
120 printf ("Vendor: %s Prod.: %s Rev: %s\n",
126 if (dev_desc->removable)
128 switch (dev_desc->type & 0x1F) {
129 case DEV_TYPE_HARDDISK: puts ("Hard Disk");
131 case DEV_TYPE_CDROM: puts ("CD ROM");
133 case DEV_TYPE_OPDISK: puts ("Optical Device");
135 case DEV_TYPE_TAPE: puts ("Tape");
137 default: printf ("# %02X #", dev_desc->type & 0x1F);
141 if ((dev_desc->lba * dev_desc->blksz)>0L) {
142 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
147 lba512 = (lba * (dev_desc->blksz/512));
148 mb = (10 * lba512) / 2048; /* 2048 = (1024 * 1024) / 512 MB */
149 /* round to 1 digit */
151 mb_rem = mb - (10 * mb_quot);
155 gb_rem = gb - (10 * gb_quot);
158 printf (" Supports 48-bit addressing\n");
160 #if defined(CFG_64BIT_LBA) && defined(CFG_64BIT_VSPRINTF)
161 printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%qd x %ld)\n",
167 printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%ld x %ld)\n",
174 puts (" Capacity: not available\n");
177 #endif /* CFG_CMD_IDE || CFG_CMD_SCSI || CFG_CMD_USB || CONFIG_MMC */
179 #if ((CONFIG_COMMANDS & CFG_CMD_IDE) || \
180 (CONFIG_COMMANDS & CFG_CMD_SCSI) || \
181 (CONFIG_COMMANDS & CFG_CMD_USB) || \
182 defined(CONFIG_SYSTEMACE) )
184 #if defined(CONFIG_MAC_PARTITION) || \
185 defined(CONFIG_DOS_PARTITION) || \
186 defined(CONFIG_ISO_PARTITION) || \
187 defined(CONFIG_AMIGA_PARTITION)
189 void init_part (block_dev_desc_t * dev_desc)
191 #ifdef CONFIG_ISO_PARTITION
192 if (test_part_iso(dev_desc) == 0) {
193 dev_desc->part_type = PART_TYPE_ISO;
198 #ifdef CONFIG_MAC_PARTITION
199 if (test_part_mac(dev_desc) == 0) {
200 dev_desc->part_type = PART_TYPE_MAC;
205 #ifdef CONFIG_DOS_PARTITION
206 if (test_part_dos(dev_desc) == 0) {
207 dev_desc->part_type = PART_TYPE_DOS;
212 #ifdef CONFIG_AMIGA_PARTITION
213 if (test_part_amiga(dev_desc) == 0) {
214 dev_desc->part_type = PART_TYPE_AMIGA;
221 int get_partition_info (block_dev_desc_t *dev_desc, int part, disk_partition_t *info)
223 switch (dev_desc->part_type) {
224 #ifdef CONFIG_MAC_PARTITION
226 if (get_partition_info_mac(dev_desc,part,info) == 0) {
227 PRINTF ("## Valid MAC partition found ##\n");
233 #ifdef CONFIG_DOS_PARTITION
235 if (get_partition_info_dos(dev_desc,part,info) == 0) {
236 PRINTF ("## Valid DOS partition found ##\n");
242 #ifdef CONFIG_ISO_PARTITION
244 if (get_partition_info_iso(dev_desc,part,info) == 0) {
245 PRINTF ("## Valid ISO boot partition found ##\n");
251 #ifdef CONFIG_AMIGA_PARTITION
252 case PART_TYPE_AMIGA:
253 if (get_partition_info_amiga(dev_desc, part, info) == 0)
255 PRINTF ("## Valid Amiga partition found ##\n");
266 static void print_part_header (const char *type, block_dev_desc_t * dev_desc)
268 puts ("\nPartition Map for ");
269 switch (dev_desc->if_type) {
270 case IF_TYPE_IDE: puts ("IDE");
272 case IF_TYPE_SCSI: puts ("SCSI");
274 case IF_TYPE_ATAPI: puts ("ATAPI");
276 case IF_TYPE_USB: puts ("USB");
278 case IF_TYPE_DOC: puts ("DOC");
280 default: puts ("UNKNOWN");
283 printf (" device %d -- Partition Type: %s\n\n",
284 dev_desc->dev, type);
287 void print_part (block_dev_desc_t * dev_desc)
290 switch (dev_desc->part_type) {
291 #ifdef CONFIG_MAC_PARTITION
293 PRINTF ("## Testing for valid MAC partition ##\n");
294 print_part_header ("MAC", dev_desc);
295 print_part_mac (dev_desc);
298 #ifdef CONFIG_DOS_PARTITION
300 PRINTF ("## Testing for valid DOS partition ##\n");
301 print_part_header ("DOS", dev_desc);
302 print_part_dos (dev_desc);
306 #ifdef CONFIG_ISO_PARTITION
308 PRINTF ("## Testing for valid ISO Boot partition ##\n");
309 print_part_header ("ISO", dev_desc);
310 print_part_iso (dev_desc);
314 #ifdef CONFIG_AMIGA_PARTITION
315 case PART_TYPE_AMIGA:
316 PRINTF ("## Testing for a valid Amiga partition ##\n");
317 print_part_header ("AMIGA", dev_desc);
318 print_part_amiga (dev_desc);
322 puts ("## Unknown partition table\n");
326 #else /* neither MAC nor DOS nor ISO partition configured */
327 # error neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION nor CONFIG_ISO_PARTITION configured!
330 #endif /* (CONFIG_COMMANDS & CFG_CMD_IDE) || CONFIG_COMMANDS & CFG_CMD_SCSI) */