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) || (CONFIG_COMMANDS & CFG_CMD_SCSI)
39 /* ------------------------------------------------------------------------- */
41 * reports device info to the user
43 void dev_print (block_dev_desc_t *dev_desc)
45 ulong lba512; /* number of blocks if 512bytes block size */
47 if (dev_desc->type==DEV_TYPE_UNKNOWN) {
48 puts ("not available\n");
51 if (dev_desc->if_type==IF_TYPE_SCSI) {
52 printf ("(%d:%d) ", dev_desc->target,dev_desc->lun);
54 if (dev_desc->if_type==IF_TYPE_IDE) {
55 printf ("Model: %s Firm: %s Ser#: %s\n",
60 printf ("Vendor: %s Prod.: %s Rev: %s\n",
66 if (dev_desc->removable)
68 switch (dev_desc->type & 0x1F) {
69 case DEV_TYPE_HARDDISK: puts ("Hard Disk");
71 case DEV_TYPE_CDROM: puts ("CD ROM");
73 case DEV_TYPE_OPDISK: puts ("Optical Device");
75 case DEV_TYPE_TAPE: puts ("Tape");
77 default: printf ("# %02X #", dev_desc->type & 0x1F);
81 if ((dev_desc->lba * dev_desc->blksz)>0L) {
82 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
84 lba512 = (dev_desc->lba * (dev_desc->blksz/512));
86 mb = (10 * lba512) / 2048; /* 2048 = (1024 * 1024) / 512 MB */
87 /* round to 1 digit */
89 mb_rem = mb - (10 * mb_quot);
93 gb_rem = gb - (10 * gb_quot);
95 printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%ld x %ld)\n",
101 puts (" Capacity: not available\n");
106 #if defined(CONFIG_MAC_PARTITION) || \
107 defined(CONFIG_DOS_PARTITION) || \
108 defined(CONFIG_ISO_PARTITION) || \
109 defined(CONFIG_AMIGA_PARTITION)
111 void init_part (block_dev_desc_t * dev_desc)
113 #ifdef CONFIG_ISO_PARTITION
114 if (test_part_iso(dev_desc) == 0) {
115 dev_desc->part_type = PART_TYPE_ISO;
120 #ifdef CONFIG_MAC_PARTITION
121 if (test_part_mac(dev_desc) == 0) {
122 dev_desc->part_type = PART_TYPE_MAC;
127 #ifdef CONFIG_DOS_PARTITION
128 if (test_part_dos(dev_desc) == 0) {
129 dev_desc->part_type = PART_TYPE_DOS;
134 #ifdef CONFIG_AMIGA_PARTITION
135 if (test_part_amiga(dev_desc) == 0) {
136 dev_desc->part_type = PART_TYPE_AMIGA;
143 int get_partition_info (block_dev_desc_t *dev_desc, int part, disk_partition_t *info)
145 switch (dev_desc->part_type) {
146 #ifdef CONFIG_MAC_PARTITION
148 if (get_partition_info_mac(dev_desc,part,info) == 0) {
149 PRINTF ("## Valid MAC partition found ##\n");
155 #ifdef CONFIG_DOS_PARTITION
157 if (get_partition_info_dos(dev_desc,part,info) == 0) {
158 PRINTF ("## Valid DOS partition found ##\n");
164 #ifdef CONFIG_ISO_PARTITION
166 if (get_partition_info_iso(dev_desc,part,info) == 0) {
167 PRINTF ("## Valid ISO boot partition found ##\n");
173 #ifdef CONFIG_AMIGA_PARTITION
174 case PART_TYPE_AMIGA:
175 if (get_partition_info_amiga(dev_desc, part, info) == 0)
177 PRINTF ("## Valid Amiga partition found ##\n");
188 static void print_part_header (const char *type, block_dev_desc_t * dev_desc)
190 puts ("\nPartition Map for ");
191 switch (dev_desc->if_type) {
192 case IF_TYPE_IDE: puts ("IDE");
194 case IF_TYPE_SCSI: puts ("SCSI");
196 case IF_TYPE_ATAPI: puts ("ATAPI");
198 case IF_TYPE_USB: puts ("USB");
200 case IF_TYPE_DOC: puts ("DOC");
202 default: puts ("UNKNOWN");
205 printf (" device %d -- Partition Type: %s\n\n",
206 dev_desc->dev, type);
209 void print_part (block_dev_desc_t * dev_desc)
212 switch (dev_desc->part_type) {
213 #ifdef CONFIG_MAC_PARTITION
215 PRINTF ("## Testing for valid MAC partition ##\n");
216 print_part_header ("MAC", dev_desc);
217 print_part_mac (dev_desc);
220 #ifdef CONFIG_DOS_PARTITION
222 PRINTF ("## Testing for valid DOS partition ##\n");
223 print_part_header ("DOS", dev_desc);
224 print_part_dos (dev_desc);
228 #ifdef CONFIG_ISO_PARTITION
230 PRINTF ("## Testing for valid ISO Boot partition ##\n");
231 print_part_header ("ISO", dev_desc);
232 print_part_iso (dev_desc);
236 #ifdef CONFIG_AMIGA_PARTITION
237 case PART_TYPE_AMIGA:
238 PRINTF ("## Testing for a valid Amiga partition ##\n");
239 print_part_header ("AMIGA", dev_desc);
240 print_part_amiga (dev_desc);
244 puts ("## Unknown partition table\n");
248 #else /* neither MAC nor DOS nor ISO partition configured */
249 # error neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION nor CONFIG_ISO_PARTITION configured!
252 #endif /* (CONFIG_COMMANDS & CFG_CMD_IDE) || CONFIG_COMMANDS & CFG_CMD_SCSI) */