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,
31 #define PRINTF(fmt,args...) printf (fmt ,##args)
33 #define PRINTF(fmt,args...)
36 #if ((CONFIG_COMMANDS & CFG_CMD_IDE) || \
37 (CONFIG_COMMANDS & CFG_CMD_SCSI) || \
38 (CONFIG_COMMANDS & CFG_CMD_USB) || \
41 /* ------------------------------------------------------------------------- */
43 * reports device info to the user
45 void dev_print (block_dev_desc_t *dev_desc)
47 ulong lba512; /* number of blocks if 512bytes block size */
49 if (dev_desc->type==DEV_TYPE_UNKNOWN) {
50 puts ("not available\n");
53 if (dev_desc->if_type==IF_TYPE_SCSI) {
54 printf ("(%d:%d) ", dev_desc->target,dev_desc->lun);
56 if (dev_desc->if_type==IF_TYPE_IDE) {
57 printf ("Model: %s Firm: %s Ser#: %s\n",
62 printf ("Vendor: %s Prod.: %s Rev: %s\n",
68 if (dev_desc->removable)
70 switch (dev_desc->type & 0x1F) {
71 case DEV_TYPE_HARDDISK: puts ("Hard Disk");
73 case DEV_TYPE_CDROM: puts ("CD ROM");
75 case DEV_TYPE_OPDISK: puts ("Optical Device");
77 case DEV_TYPE_TAPE: puts ("Tape");
79 default: printf ("# %02X #", dev_desc->type & 0x1F);
83 if ((dev_desc->lba * dev_desc->blksz)>0L) {
84 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
86 lba512 = (dev_desc->lba * (dev_desc->blksz/512));
88 mb = (10 * lba512) / 2048; /* 2048 = (1024 * 1024) / 512 MB */
89 /* round to 1 digit */
91 mb_rem = mb - (10 * mb_quot);
95 gb_rem = gb - (10 * gb_quot);
97 printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%ld x %ld)\n",
103 puts (" Capacity: not available\n");
106 #endif /* CFG_CMD_IDE || CFG_CMD_SCSI || CFG_CMD_USB || CONFIG_MMC */
108 #if ((CONFIG_COMMANDS & CFG_CMD_IDE) || \
109 (CONFIG_COMMANDS & CFG_CMD_SCSI) || \
110 (CONFIG_COMMANDS & CFG_CMD_USB) )
112 #if defined(CONFIG_MAC_PARTITION) || \
113 defined(CONFIG_DOS_PARTITION) || \
114 defined(CONFIG_ISO_PARTITION) || \
115 defined(CONFIG_AMIGA_PARTITION)
117 void init_part (block_dev_desc_t * dev_desc)
119 #ifdef CONFIG_ISO_PARTITION
120 if (test_part_iso(dev_desc) == 0) {
121 dev_desc->part_type = PART_TYPE_ISO;
126 #ifdef CONFIG_MAC_PARTITION
127 if (test_part_mac(dev_desc) == 0) {
128 dev_desc->part_type = PART_TYPE_MAC;
133 #ifdef CONFIG_DOS_PARTITION
134 if (test_part_dos(dev_desc) == 0) {
135 dev_desc->part_type = PART_TYPE_DOS;
140 #ifdef CONFIG_AMIGA_PARTITION
141 if (test_part_amiga(dev_desc) == 0) {
142 dev_desc->part_type = PART_TYPE_AMIGA;
149 int get_partition_info (block_dev_desc_t *dev_desc, int part, disk_partition_t *info)
151 switch (dev_desc->part_type) {
152 #ifdef CONFIG_MAC_PARTITION
154 if (get_partition_info_mac(dev_desc,part,info) == 0) {
155 PRINTF ("## Valid MAC partition found ##\n");
161 #ifdef CONFIG_DOS_PARTITION
163 if (get_partition_info_dos(dev_desc,part,info) == 0) {
164 PRINTF ("## Valid DOS partition found ##\n");
170 #ifdef CONFIG_ISO_PARTITION
172 if (get_partition_info_iso(dev_desc,part,info) == 0) {
173 PRINTF ("## Valid ISO boot partition found ##\n");
179 #ifdef CONFIG_AMIGA_PARTITION
180 case PART_TYPE_AMIGA:
181 if (get_partition_info_amiga(dev_desc, part, info) == 0)
183 PRINTF ("## Valid Amiga partition found ##\n");
194 static void print_part_header (const char *type, block_dev_desc_t * dev_desc)
196 puts ("\nPartition Map for ");
197 switch (dev_desc->if_type) {
198 case IF_TYPE_IDE: puts ("IDE");
200 case IF_TYPE_SCSI: puts ("SCSI");
202 case IF_TYPE_ATAPI: puts ("ATAPI");
204 case IF_TYPE_USB: puts ("USB");
206 case IF_TYPE_DOC: puts ("DOC");
208 default: puts ("UNKNOWN");
211 printf (" device %d -- Partition Type: %s\n\n",
212 dev_desc->dev, type);
215 void print_part (block_dev_desc_t * dev_desc)
218 switch (dev_desc->part_type) {
219 #ifdef CONFIG_MAC_PARTITION
221 PRINTF ("## Testing for valid MAC partition ##\n");
222 print_part_header ("MAC", dev_desc);
223 print_part_mac (dev_desc);
226 #ifdef CONFIG_DOS_PARTITION
228 PRINTF ("## Testing for valid DOS partition ##\n");
229 print_part_header ("DOS", dev_desc);
230 print_part_dos (dev_desc);
234 #ifdef CONFIG_ISO_PARTITION
236 PRINTF ("## Testing for valid ISO Boot partition ##\n");
237 print_part_header ("ISO", dev_desc);
238 print_part_iso (dev_desc);
242 #ifdef CONFIG_AMIGA_PARTITION
243 case PART_TYPE_AMIGA:
244 PRINTF ("## Testing for a valid Amiga partition ##\n");
245 print_part_header ("AMIGA", dev_desc);
246 print_part_amiga (dev_desc);
250 puts ("## Unknown partition table\n");
254 #else /* neither MAC nor DOS nor ISO partition configured */
255 # error neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION nor CONFIG_ISO_PARTITION configured!
258 #endif /* (CONFIG_COMMANDS & CFG_CMD_IDE) || CONFIG_COMMANDS & CFG_CMD_SCSI) */