2002-05-03 11:59:53 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2002 by Bj<EFBFBD>rn Stenberg
|
|
|
|
|
*
|
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
|
*
|
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
|
* KIND, either express or implied.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
2002-05-30 19:41:35 +00:00
|
|
|
|
#include <stdio.h>
|
2002-05-03 11:59:53 +00:00
|
|
|
|
#include "ata.h"
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
#include "disk.h"
|
|
|
|
|
|
|
|
|
|
/* Partition table entry layout:
|
|
|
|
|
-----------------------
|
|
|
|
|
0: 0x80 - active
|
|
|
|
|
1: starting head
|
|
|
|
|
2: starting sector
|
|
|
|
|
3: starting cylinder
|
|
|
|
|
4: partition type
|
|
|
|
|
5: end head
|
|
|
|
|
6: end sector
|
|
|
|
|
7: end cylinder
|
|
|
|
|
8-11: starting sector (LBA)
|
|
|
|
|
12-15: nr of sectors in partition
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define BYTES2INT32(array,pos) \
|
|
|
|
|
(array[pos] | (array[pos+1] << 8 ) | \
|
|
|
|
|
(array[pos+2] << 16 ) | (array[pos+3] << 24 ))
|
|
|
|
|
|
2002-05-30 19:41:35 +00:00
|
|
|
|
static struct partinfo part[8];
|
2002-05-03 11:59:53 +00:00
|
|
|
|
|
2004-12-28 22:16:07 +00:00
|
|
|
|
struct partinfo* disk_init(IF_MV_NONVOID(int drive))
|
2002-05-03 11:59:53 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
unsigned char sector[512];
|
2004-12-28 22:16:07 +00:00
|
|
|
|
#ifdef HAVE_MULTIVOLUME
|
|
|
|
|
/* For each drive, start at a different position, in order not to destroy
|
|
|
|
|
the first entry of drive 0.
|
|
|
|
|
That one is needed to calculate config sector position. */
|
|
|
|
|
struct partinfo* pinfo = &part[drive*4];
|
|
|
|
|
if ((size_t)drive >= sizeof(part)/sizeof(*part)/4)
|
|
|
|
|
return NULL; /* out of space in table */
|
|
|
|
|
#else
|
|
|
|
|
struct partinfo* pinfo = part;
|
|
|
|
|
#endif
|
2002-05-03 11:59:53 +00:00
|
|
|
|
|
2004-12-28 22:16:07 +00:00
|
|
|
|
ata_read_sectors(IF_MV2(drive,) 0,1,§or);
|
2002-05-03 11:59:53 +00:00
|
|
|
|
|
|
|
|
|
/* check that the boot sector is initialized */
|
|
|
|
|
if ( (sector[510] != 0x55) ||
|
|
|
|
|
(sector[511] != 0xaa)) {
|
|
|
|
|
DEBUGF("Bad boot sector signature\n");
|
2002-05-30 19:41:35 +00:00
|
|
|
|
return NULL;
|
2002-05-03 11:59:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* parse partitions */
|
|
|
|
|
for ( i=0; i<4; i++ ) {
|
|
|
|
|
unsigned char* ptr = sector + 0x1be + 16*i;
|
2004-12-28 22:16:07 +00:00
|
|
|
|
pinfo[i].type = ptr[4];
|
|
|
|
|
pinfo[i].start = BYTES2INT32(ptr, 8);
|
|
|
|
|
pinfo[i].size = BYTES2INT32(ptr, 12);
|
2002-05-03 11:59:53 +00:00
|
|
|
|
|
|
|
|
|
DEBUGF("Part%d: Type %02x, start: %08x size: %08x\n",
|
2004-12-28 22:16:07 +00:00
|
|
|
|
i,pinfo[i].type,pinfo[i].start,pinfo[i].size);
|
2002-05-03 11:59:53 +00:00
|
|
|
|
|
|
|
|
|
/* extended? */
|
2004-12-28 22:16:07 +00:00
|
|
|
|
if ( pinfo[i].type == 5 ) {
|
2002-05-03 11:59:53 +00:00
|
|
|
|
/* not handled yet */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-28 22:16:07 +00:00
|
|
|
|
return pinfo;
|
2002-05-03 11:59:53 +00:00
|
|
|
|
}
|
2002-10-10 12:01:58 +00:00
|
|
|
|
|
|
|
|
|
struct partinfo* disk_partinfo(int partition)
|
|
|
|
|
{
|
|
|
|
|
return &part[partition];
|
|
|
|
|
}
|
|
|
|
|
|