Lines Matching refs:tf
12 struct ide_taskfile *tf = &cmd->tf;
15 low = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal;
17 tf = &cmd->hob;
18 high = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal;
20 high = tf->device & 0xf;
29 struct ide_taskfile *tf = &cmd.tf;
34 cmd.valid.in.tf = IDE_VALID_LBA;
38 cmd.valid.in.tf = IDE_VALID_LBA | IDE_VALID_DEVICE;
42 if (lba48 || (tf->device & ATA_LBA))
46 printk(KERN_CONT ", CHS=%d/%d/%d", (tf->lbah << 8) + tf->lbam,
47 tf->device & 0xf, tf->lbal);
142 drive->name, drive->hwif->cmd.tf.command);