aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/ide-disk.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-01-25 16:17:07 -0500
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-01-25 16:17:07 -0500
commit9e42237f26cf517a3f682505f03a3a8d89b3b35d (patch)
tree93b94dd8e1b1d9e257ed3ef84682bf4c0a22ad11 /drivers/ide/ide-disk.c
parent2bd06b23e2a099abbf550202f62cd433e01f83e7 (diff)
ide: add ide_tf_load() helper
Based on the earlier work by Tejun Heo. * Add 'tf_flags' field (for taskfile flags) to ide_task_t. * Add IDE_TFLAG_LBA48 taskfile flag for LBA48 taskfiles. * Add IDE_TFLAG_NO_SELECT_MASK taskfile flag for __ide_do_rw_disk() which doesn't use SELECT_MASK() (looks like a bug but it requires some more investigation). * Split off ide_tf_load() helper from do_rw_taskfile(). * Convert __ide_do_rw_disk() to use ide_tf_load(). There should be no functionality changes caused by this patch. Cc: Tejun Heo <htejun@gmail.com> Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-disk.c')
-rw-r--r--drivers/ide/ide-disk.c28
1 files changed, 6 insertions, 22 deletions
diff --git a/drivers/ide/ide-disk.c b/drivers/ide/ide-disk.c
index 20d357e9329d..6387222dd200 100644
--- a/drivers/ide/ide-disk.c
+++ b/drivers/ide/ide-disk.c
@@ -140,7 +140,8 @@ static ide_startstop_t __ide_do_rw_disk(ide_drive_t *drive, struct request *rq,
140 u8 lba48 = (drive->addressing == 1) ? 1 : 0; 140 u8 lba48 = (drive->addressing == 1) ? 1 : 0;
141 u8 command = WIN_NOP; 141 u8 command = WIN_NOP;
142 ata_nsector_t nsectors; 142 ata_nsector_t nsectors;
143 struct ide_taskfile ltf, *tf = &ltf; 143 ide_task_t task;
144 struct ide_taskfile *tf = &task.tf;
144 145
145 nsectors.all = (u16) rq->nr_sectors; 146 nsectors.all = (u16) rq->nr_sectors;
146 147
@@ -156,12 +157,8 @@ static ide_startstop_t __ide_do_rw_disk(ide_drive_t *drive, struct request *rq,
156 ide_map_sg(drive, rq); 157 ide_map_sg(drive, rq);
157 } 158 }
158 159
159 if (IDE_CONTROL_REG) 160 memset(&task, 0, sizeof(task));
160 hwif->OUTB(drive->ctl, IDE_CONTROL_REG); 161 task.tf_flags = IDE_TFLAG_NO_SELECT_MASK; /* FIXME? */
161
162 /* FIXME: SELECT_MASK(drive, 0) ? */
163
164 memset(tf, 0, sizeof(*tf));
165 162
166 if (drive->select.b.lba) { 163 if (drive->select.b.lba) {
167 if (lba48) { 164 if (lba48) {
@@ -185,6 +182,7 @@ static ide_startstop_t __ide_do_rw_disk(ide_drive_t *drive, struct request *rq,
185 tf->hob_lbah, tf->hob_lbam, tf->hob_lbal, 182 tf->hob_lbah, tf->hob_lbam, tf->hob_lbal,
186 tf->lbah, tf->lbam, tf->lbal); 183 tf->lbah, tf->lbam, tf->lbal);
187#endif 184#endif
185 task.tf_flags |= IDE_TFLAG_LBA48;
188 } else { 186 } else {
189 tf->nsect = nsectors.b.low; 187 tf->nsect = nsectors.b.low;
190 tf->lbal = block; 188 tf->lbal = block;
@@ -208,21 +206,7 @@ static ide_startstop_t __ide_do_rw_disk(ide_drive_t *drive, struct request *rq,
208 tf->device = head; 206 tf->device = head;
209 } 207 }
210 208
211 if (drive->select.b.lba && lba48) { 209 ide_tf_load(drive, &task);
212 hwif->OUTB(tf->hob_feature, IDE_FEATURE_REG);
213 hwif->OUTB(tf->hob_nsect, IDE_NSECTOR_REG);
214 hwif->OUTB(tf->hob_lbal, IDE_SECTOR_REG);
215 hwif->OUTB(tf->hob_lbam, IDE_LCYL_REG);
216 hwif->OUTB(tf->hob_lbah, IDE_HCYL_REG);
217 }
218
219 hwif->OUTB(tf->feature, IDE_FEATURE_REG);
220 hwif->OUTB(tf->nsect, IDE_NSECTOR_REG);
221 hwif->OUTB(tf->lbal, IDE_SECTOR_REG);
222 hwif->OUTB(tf->lbam, IDE_LCYL_REG);
223 hwif->OUTB(tf->lbah, IDE_HCYL_REG);
224
225 hwif->OUTB(tf->device | drive->select.all, IDE_SELECT_REG);
226 210
227 if (dma) { 211 if (dma) {
228 if (!hwif->dma_setup(drive)) { 212 if (!hwif->dma_setup(drive)) {