Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 112892
b: refs/heads/master
c: 942dcd8
h: refs/heads/master
v: v3
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Oct 10, 2008
1 parent 5db3eb3 commit 318e090
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 367d7e78dd48cf6ad35182a99d97abb5486e040e
refs/heads/master: 942dcd85bf8edf38cdc3745306ca250684d99a61
21 changes: 6 additions & 15 deletions trunk/drivers/ide/ide-disk.c
Original file line number Diff line number Diff line change
Expand Up @@ -383,16 +383,6 @@ static unsigned long long sectors_to_MB(unsigned long long n)
return n;
}

/*
* The same here.
*/
static inline int idedisk_supports_lba48(const u16 *id)
{
return (id[ATA_ID_COMMAND_SET_2] & 0x0400) &&
(id[ATA_ID_CFS_ENABLE_2] & 0x0400) &&
ata_id_u64(id, ATA_ID_LBA_CAPACITY_2);
}

/*
* Some disks report total number of sectors instead of
* maximum sector address. We list them here.
Expand All @@ -407,7 +397,7 @@ static const struct drive_list_entry hpa_list[] = {
static void idedisk_check_hpa(ide_drive_t *drive)
{
unsigned long long capacity, set_max;
int lba48 = idedisk_supports_lba48(drive->id);
int lba48 = ata_id_lba48_enabled(drive->id);

capacity = drive->capacity64;

Expand Down Expand Up @@ -450,7 +440,7 @@ static void init_idedisk_capacity(ide_drive_t *drive)
*/
int hpa = ata_id_hpa_enabled(id);

if (idedisk_supports_lba48(id)) {
if (ata_id_lba48_enabled(id)) {
/* drive speaks 48-bit LBA */
drive->select.b.lba = 1;
drive->capacity64 = ata_id_u64(id, ATA_ID_LBA_CAPACITY_2);
Expand Down Expand Up @@ -754,9 +744,11 @@ static int set_lba_addressing(ide_drive_t *drive, int arg)
if (drive->hwif->host_flags & IDE_HFLAG_NO_LBA48)
return 0;

if (!idedisk_supports_lba48(drive->id))
if (ata_id_lba48_enabled(drive->id) == 0)
return -EIO;

drive->addressing = arg;

return 0;
}

Expand Down Expand Up @@ -853,8 +845,7 @@ static void idedisk_setup(ide_drive_t *drive)
capacity = idedisk_capacity(drive);

if (!drive->forced_geom) {

if (idedisk_supports_lba48(drive->id)) {
if (ata_id_lba48_enabled(drive->id)) {
/* compatibility */
drive->bios_sect = 63;
drive->bios_head = 255;
Expand Down
9 changes: 9 additions & 0 deletions trunk/include/linux/ata.h
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,15 @@ static inline int ata_id_has_lba48(const u16 *id)
return id[ATA_ID_COMMAND_SET_2] & (1 << 10);
}

static inline int ata_id_lba48_enabled(const u16 *id)
{
if (ata_id_has_lba48(id) == 0)
return 0;
if ((id[ATA_ID_CSF_DEFAULT] & 0xC000) != 0x4000)
return 0;
return id[ATA_ID_CFS_ENABLE_2] & (1 << 10);
}

static inline int ata_id_hpa_enabled(const u16 *id)
{
/* Yes children, word 83 valid bits cover word 82 data */
Expand Down

0 comments on commit 318e090

Please sign in to comment.