part_dos.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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 <cmd_disk.h>
  35. #include "part_dos.h"
  36. #if ((CONFIG_COMMANDS & CFG_CMD_IDE) || (CONFIG_COMMANDS & CFG_CMD_SCSI)) && defined(CONFIG_DOS_PARTITION)
  37. /* Convert char[4] in little endian format to the host format integer
  38. */
  39. static inline int le32_to_int(unsigned char *le32)
  40. {
  41. return ((le32[3] << 24) +
  42. (le32[2] << 16) +
  43. (le32[1] << 8) +
  44. le32[0]
  45. );
  46. }
  47. static inline int is_extended(int part_type)
  48. {
  49. return (part_type == 0x5 ||
  50. part_type == 0xf ||
  51. part_type == 0x85);
  52. }
  53. static void print_one_part (dos_partition_t *p, int ext_part_sector, int part_num)
  54. {
  55. int lba_start = ext_part_sector + le32_to_int (p->start4);
  56. int lba_size = le32_to_int (p->size4);
  57. printf ("%5d\t\t%10d\t%10d\t%2x%s\n",
  58. part_num, lba_start, lba_size, p->sys_ind,
  59. (is_extended (p->sys_ind) ? " Extd" : ""));
  60. }
  61. int test_part_dos (block_dev_desc_t *dev_desc)
  62. {
  63. unsigned char buffer[DEFAULT_SECTOR_SIZE];
  64. if ((dev_desc->block_read(dev_desc->dev, 0, 1, (ulong *) buffer) != 1) ||
  65. (buffer[DOS_PART_MAGIC_OFFSET + 0] != 0x55) ||
  66. (buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) ) {
  67. return (-1);
  68. }
  69. return (0);
  70. }
  71. /* Print a partition that is relative to its Extended partition table
  72. */
  73. static void print_partition_extended (block_dev_desc_t *dev_desc, int ext_part_sector, int relative,
  74. int part_num)
  75. {
  76. unsigned char buffer[DEFAULT_SECTOR_SIZE];
  77. dos_partition_t *pt;
  78. int i;
  79. if (dev_desc->block_read(dev_desc->dev, ext_part_sector, 1, (ulong *) buffer) != 1) {
  80. printf ("** Can't read partition table on %d:%d **\n",
  81. dev_desc->dev, ext_part_sector);
  82. return;
  83. }
  84. if (buffer[DOS_PART_MAGIC_OFFSET] != 0x55 ||
  85. buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) {
  86. printf ("bad MBR sector signature 0x%02x%02x\n",
  87. buffer[DOS_PART_MAGIC_OFFSET],
  88. buffer[DOS_PART_MAGIC_OFFSET + 1]);
  89. return;
  90. }
  91. /* Print all primary/logical partitions */
  92. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  93. for (i = 0; i < 4; i++, pt++) {
  94. /*
  95. * fdisk does not show the extended partitions that
  96. * are not in the MBR
  97. */
  98. if ((pt->sys_ind != 0) &&
  99. (ext_part_sector == 0 || !is_extended (pt->sys_ind)) ) {
  100. print_one_part (pt, ext_part_sector, part_num);
  101. }
  102. /* Reverse engr the fdisk part# assignment rule! */
  103. if ((ext_part_sector == 0) ||
  104. (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
  105. part_num++;
  106. }
  107. }
  108. /* Follows the extended partitions */
  109. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  110. for (i = 0; i < 4; i++, pt++) {
  111. if (is_extended (pt->sys_ind)) {
  112. int lba_start = le32_to_int (pt->start4) + relative;
  113. print_partition_extended (dev_desc, lba_start,
  114. ext_part_sector == 0 ? lba_start
  115. : relative,
  116. part_num);
  117. }
  118. }
  119. return;
  120. }
  121. /* Print a partition that is relative to its Extended partition table
  122. */
  123. static int get_partition_info_extended (block_dev_desc_t *dev_desc, int ext_part_sector,
  124. int relative, int part_num,
  125. int which_part, disk_partition_t *info)
  126. {
  127. unsigned char buffer[DEFAULT_SECTOR_SIZE];
  128. dos_partition_t *pt;
  129. int i;
  130. if (dev_desc->block_read (dev_desc->dev, ext_part_sector, 1, (ulong *) buffer) != 1) {
  131. printf ("** Can't read partition table on %d:%d **\n",
  132. dev_desc->dev, ext_part_sector);
  133. return -1;
  134. }
  135. if (buffer[DOS_PART_MAGIC_OFFSET] != 0x55 ||
  136. buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) {
  137. printf ("bad MBR sector signature 0x%02x%02x\n",
  138. buffer[DOS_PART_MAGIC_OFFSET],
  139. buffer[DOS_PART_MAGIC_OFFSET + 1]);
  140. return -1;
  141. }
  142. /* Print all primary/logical partitions */
  143. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  144. for (i = 0; i < 4; i++, pt++) {
  145. /*
  146. * fdisk does not show the extended partitions that
  147. * are not in the MBR
  148. */
  149. if ((pt->sys_ind != 0) &&
  150. (part_num == which_part) &&
  151. (is_extended(pt->sys_ind) == 0)) {
  152. info->blksz = 512;
  153. info->start = ext_part_sector + le32_to_int (pt->start4);
  154. info->size = le32_to_int (pt->size4);
  155. switch(dev_desc->if_type) {
  156. case IF_TYPE_IDE:
  157. case IF_TYPE_ATAPI:
  158. sprintf (info->name, "hd%c%d\n", 'a' + dev_desc->dev, part_num);
  159. break;
  160. case IF_TYPE_SCSI:
  161. sprintf (info->name, "sd%c%d\n", 'a' + dev_desc->dev, part_num);
  162. break;
  163. case IF_TYPE_USB:
  164. sprintf (info->name, "usbd%c%d\n", 'a' + dev_desc->dev, part_num);
  165. break;
  166. case IF_TYPE_DOC:
  167. sprintf (info->name, "docd%c%d\n", 'a' + dev_desc->dev, part_num);
  168. break;
  169. default:
  170. sprintf (info->name, "xx%c%d\n", 'a' + dev_desc->dev, part_num);
  171. break;
  172. }
  173. /* sprintf(info->type, "%d, pt->sys_ind); */
  174. sprintf (info->type, "U-Boot");
  175. return 0;
  176. }
  177. /* Reverse engr the fdisk part# assignment rule! */
  178. if ((ext_part_sector == 0) ||
  179. (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
  180. part_num++;
  181. }
  182. }
  183. /* Follows the extended partitions */
  184. pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
  185. for (i = 0; i < 4; i++, pt++) {
  186. if (is_extended (pt->sys_ind)) {
  187. int lba_start = le32_to_int (pt->start4) + relative;
  188. return get_partition_info_extended (dev_desc, lba_start,
  189. ext_part_sector == 0 ? lba_start : relative,
  190. part_num, which_part, info);
  191. }
  192. }
  193. return -1;
  194. }
  195. void print_part_dos (block_dev_desc_t *dev_desc)
  196. {
  197. printf ("Partition Start Sector Num Sectors Type\n");
  198. print_partition_extended (dev_desc, 0, 0, 1);
  199. }
  200. int get_partition_info_dos (block_dev_desc_t *dev_desc, int part, disk_partition_t * info)
  201. {
  202. return get_partition_info_extended (dev_desc, 0, 0, 1, part, info);
  203. }
  204. #endif /* (CONFIG_COMMANDS & CFG_CMD_IDE) && CONFIG_DOS_PARTITION */