part_dos.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /*
  2. * (C) Copyright 2001
  3. * Raymond Lo, lo@routefree.com
  4. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. /*
  25. * Support for harddisk partitions.
  26. *
  27. * To be compatible with LinuxPPC and Apple we use the standard Apple
  28. * SCSI disk partitioning scheme. For more information see:
  29. * http://developer.apple.com/techpubs/mac/Devices/Devices-126.html#MARKER-14-92
  30. */
  31. #include <common.h>
  32. #include <command.h>
  33. #include <ide.h>
  34. #include "part_dos.h"
  35. #if defined(CONFIG_CMD_IDE) || \
  36. defined(CONFIG_CMD_MG_DISK) || \
  37. defined(CONFIG_CMD_SATA) || \
  38. defined(CONFIG_CMD_SCSI) || \
  39. defined(CONFIG_CMD_USB) || \
  40. defined(CONFIG_MMC) || \
  41. defined(CONFIG_SYSTEMACE)
  42. /* Convert char[4] in little endian format to the host format integer
  43. */
  44. static inline int le32_to_int(unsigned char *le32)
  45. {
  46. return ((le32[3] << 24) +
  47. (le32[2] << 16) +
  48. (le32[1] << 8) +
  49. le32[0]
  50. );
  51. }
  52. static inline int is_extended(int part_type)
  53. {
  54. return (part_type == 0x5 ||
  55. part_type == 0xf ||
  56. part_type == 0x85);
  57. }
  58. static void print_one_part (dos_partition_t *p, int ext_part_sector, int part_num)
  59. {
  60. int lba_start = ext_part_sector + le32_to_int (p->start4);
  61. int lba_size = le32_to_int (p->size4);
  62. printf ("%5d\t\t%10d\t%10d\t%2x%s\n",
  63. part_num, lba_start, lba_size, p->sys_ind,
  64. (is_extended (p->sys_ind) ? " Extd" : ""));
  65. }
  66. static int test_block_type(unsigned char *buffer)
  67. {
  68. if((buffer[DOS_PART_MAGIC_OFFSET + 0] != 0x55) ||
  69. (buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) ) {
  70. return (-1);
  71. } /* no DOS Signature at all */
  72. if (strncmp((char *)&buffer[DOS_PBR_FSTYPE_OFFSET],"FAT",3)==0 ||
  73. strncmp((char *)&buffer[DOS_PBR32_FSTYPE_OFFSET],"FAT32",5)==0) {
  74. return DOS_PBR; /* is PBR */
  75. }
  76. return DOS_MBR; /* Is MBR */
  77. }
  78. int test_part_dos (block_dev_desc_t *dev_desc)
  79. {
  80. unsigned char buffer[DEFAULT_SECTOR_SIZE];
  81. if ((dev_desc->block_read(dev_desc->dev, 0, 1, (ulong *) buffer) != 1) ||
  82. (buffer[DOS_PART_MAGIC_OFFSET + 0] != 0x55) ||
  83. (buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) ) {
  84. return (-1);
  85. }
  86. return (0);
  87. }
  88. /* Print a partition that is relative to its Extended partition table
  89. */
  90. static void print_partition_extended (block_dev_desc_t *dev_desc, int ext_part_sector, int relative,
  91. int part_num)
  92. {
  93. unsigned char buffer[DEFAULT_SECTOR_SIZE];
  94. dos_partition_t *pt;
  95. int i;
  96. if (dev_desc->block_read(dev_desc->dev, ext_part_sector, 1, (ulong *) buffer) != 1) {
  97. printf ("** Can't read partition table on %d:%d **\n",
  98. dev_desc->dev, ext_part_sector);
  99. return;
  100. }
  101. i=test_block_type(buffer);
  102. if(i==-1) {
  103. printf ("bad MBR sector signature 0x%02x%02x\n",
  104. buffer[DOS_PART_MAGIC_OFFSET],
  105. buffer[DOS_PART_MAGIC_OFFSET + 1]);
  106. return;
  107. }
  108. if(i==DOS_PBR) {
  109. printf (" 1\t\t 0\t%10ld\t%2x\n",
  110. dev_desc->lba, buffer[DOS_PBR_MEDIA_TYPE_OFFSET]);
  111. return;
  112. }
  113. /* Print all primary/logical partitions */
  114. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  115. for (i = 0; i < 4; i++, pt++) {
  116. /*
  117. * fdisk does not show the extended partitions that
  118. * are not in the MBR
  119. */
  120. if ((pt->sys_ind != 0) &&
  121. (ext_part_sector == 0 || !is_extended (pt->sys_ind)) ) {
  122. print_one_part (pt, ext_part_sector, part_num);
  123. }
  124. /* Reverse engr the fdisk part# assignment rule! */
  125. if ((ext_part_sector == 0) ||
  126. (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
  127. part_num++;
  128. }
  129. }
  130. /* Follows the extended partitions */
  131. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  132. for (i = 0; i < 4; i++, pt++) {
  133. if (is_extended (pt->sys_ind)) {
  134. int lba_start = le32_to_int (pt->start4) + relative;
  135. print_partition_extended (dev_desc, lba_start,
  136. ext_part_sector == 0 ? lba_start
  137. : relative,
  138. part_num);
  139. }
  140. }
  141. return;
  142. }
  143. /* Print a partition that is relative to its Extended partition table
  144. */
  145. static int get_partition_info_extended (block_dev_desc_t *dev_desc, int ext_part_sector,
  146. int relative, int part_num,
  147. int which_part, disk_partition_t *info)
  148. {
  149. unsigned char buffer[DEFAULT_SECTOR_SIZE];
  150. dos_partition_t *pt;
  151. int i;
  152. if (dev_desc->block_read (dev_desc->dev, ext_part_sector, 1, (ulong *) buffer) != 1) {
  153. printf ("** Can't read partition table on %d:%d **\n",
  154. dev_desc->dev, ext_part_sector);
  155. return -1;
  156. }
  157. if (buffer[DOS_PART_MAGIC_OFFSET] != 0x55 ||
  158. buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) {
  159. printf ("bad MBR sector signature 0x%02x%02x\n",
  160. buffer[DOS_PART_MAGIC_OFFSET],
  161. buffer[DOS_PART_MAGIC_OFFSET + 1]);
  162. return -1;
  163. }
  164. /* Print all primary/logical partitions */
  165. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  166. for (i = 0; i < 4; i++, pt++) {
  167. /*
  168. * fdisk does not show the extended partitions that
  169. * are not in the MBR
  170. */
  171. if (((pt->boot_ind & ~0x80) == 0) &&
  172. (pt->sys_ind != 0) &&
  173. (part_num == which_part) &&
  174. (is_extended(pt->sys_ind) == 0)) {
  175. info->blksz = 512;
  176. info->start = ext_part_sector + le32_to_int (pt->start4);
  177. info->size = le32_to_int (pt->size4);
  178. switch(dev_desc->if_type) {
  179. case IF_TYPE_IDE:
  180. case IF_TYPE_SATA:
  181. case IF_TYPE_ATAPI:
  182. sprintf ((char *)info->name, "hd%c%d",
  183. 'a' + dev_desc->dev, part_num);
  184. break;
  185. case IF_TYPE_SCSI:
  186. sprintf ((char *)info->name, "sd%c%d",
  187. 'a' + dev_desc->dev, part_num);
  188. break;
  189. case IF_TYPE_USB:
  190. sprintf ((char *)info->name, "usbd%c%d",
  191. 'a' + dev_desc->dev, part_num);
  192. break;
  193. case IF_TYPE_DOC:
  194. sprintf ((char *)info->name, "docd%c%d",
  195. 'a' + dev_desc->dev, part_num);
  196. break;
  197. default:
  198. sprintf ((char *)info->name, "xx%c%d",
  199. 'a' + dev_desc->dev, part_num);
  200. break;
  201. }
  202. /* sprintf(info->type, "%d, pt->sys_ind); */
  203. sprintf ((char *)info->type, "U-Boot");
  204. return 0;
  205. }
  206. /* Reverse engr the fdisk part# assignment rule! */
  207. if ((ext_part_sector == 0) ||
  208. (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
  209. part_num++;
  210. }
  211. }
  212. /* Follows the extended partitions */
  213. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  214. for (i = 0; i < 4; i++, pt++) {
  215. if (is_extended (pt->sys_ind)) {
  216. int lba_start = le32_to_int (pt->start4) + relative;
  217. return get_partition_info_extended (dev_desc, lba_start,
  218. ext_part_sector == 0 ? lba_start : relative,
  219. part_num, which_part, info);
  220. }
  221. }
  222. return -1;
  223. }
  224. void print_part_dos (block_dev_desc_t *dev_desc)
  225. {
  226. printf ("Partition Start Sector Num Sectors Type\n");
  227. print_partition_extended (dev_desc, 0, 0, 1);
  228. }
  229. int get_partition_info_dos (block_dev_desc_t *dev_desc, int part, disk_partition_t * info)
  230. {
  231. return get_partition_info_extended (dev_desc, 0, 0, 1, part, info);
  232. }
  233. #endif