diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-01-25 16:17:07 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-01-25 16:17:07 -0500 |
commit | 9e42237f26cf517a3f682505f03a3a8d89b3b35d (patch) | |
tree | 93b94dd8e1b1d9e257ed3ef84682bf4c0a22ad11 /drivers/ide/ide-taskfile.c | |
parent | 2bd06b23e2a099abbf550202f62cd433e01f83e7 (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-taskfile.c')
-rw-r--r-- | drivers/ide/ide-taskfile.c | 56 |
1 files changed, 34 insertions, 22 deletions
diff --git a/drivers/ide/ide-taskfile.c b/drivers/ide/ide-taskfile.c index 5a1a9f7846b6..a79150e6be07 100644 --- a/drivers/ide/ide-taskfile.c +++ b/drivers/ide/ide-taskfile.c | |||
@@ -63,6 +63,37 @@ static void taskfile_output_data(ide_drive_t *drive, void *buffer, u32 wcount) | |||
63 | } | 63 | } |
64 | } | 64 | } |
65 | 65 | ||
66 | void ide_tf_load(ide_drive_t *drive, ide_task_t *task) | ||
67 | { | ||
68 | ide_hwif_t *hwif = drive->hwif; | ||
69 | struct ide_taskfile *tf = &task->tf; | ||
70 | u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF; | ||
71 | |||
72 | if (IDE_CONTROL_REG) | ||
73 | hwif->OUTB(drive->ctl, IDE_CONTROL_REG); /* clear nIEN */ | ||
74 | |||
75 | if ((task->tf_flags & IDE_TFLAG_NO_SELECT_MASK) == 0) | ||
76 | SELECT_MASK(drive, 0); | ||
77 | |||
78 | if (task->tf_flags & IDE_TFLAG_LBA48) { | ||
79 | hwif->OUTB(tf->hob_feature, IDE_FEATURE_REG); | ||
80 | hwif->OUTB(tf->hob_nsect, IDE_NSECTOR_REG); | ||
81 | hwif->OUTB(tf->hob_lbal, IDE_SECTOR_REG); | ||
82 | hwif->OUTB(tf->hob_lbam, IDE_LCYL_REG); | ||
83 | hwif->OUTB(tf->hob_lbah, IDE_HCYL_REG); | ||
84 | } | ||
85 | |||
86 | hwif->OUTB(tf->feature, IDE_FEATURE_REG); | ||
87 | hwif->OUTB(tf->nsect, IDE_NSECTOR_REG); | ||
88 | hwif->OUTB(tf->lbal, IDE_SECTOR_REG); | ||
89 | hwif->OUTB(tf->lbam, IDE_LCYL_REG); | ||
90 | hwif->OUTB(tf->lbah, IDE_HCYL_REG); | ||
91 | |||
92 | hwif->OUTB((tf->device & HIHI) | drive->select.all, IDE_SELECT_REG); | ||
93 | } | ||
94 | |||
95 | EXPORT_SYMBOL_GPL(ide_tf_load); | ||
96 | |||
66 | int taskfile_lib_get_identify (ide_drive_t *drive, u8 *buf) | 97 | int taskfile_lib_get_identify (ide_drive_t *drive, u8 *buf) |
67 | { | 98 | { |
68 | ide_task_t args; | 99 | ide_task_t args; |
@@ -83,30 +114,11 @@ ide_startstop_t do_rw_taskfile (ide_drive_t *drive, ide_task_t *task) | |||
83 | { | 114 | { |
84 | ide_hwif_t *hwif = HWIF(drive); | 115 | ide_hwif_t *hwif = HWIF(drive); |
85 | struct ide_taskfile *tf = &task->tf; | 116 | struct ide_taskfile *tf = &task->tf; |
86 | u8 HIHI = (drive->addressing == 1) ? 0xE0 : 0xEF; | ||
87 | 117 | ||
88 | /* ALL Command Block Executions SHALL clear nIEN, unless otherwise */ | 118 | if (drive->addressing == 1) |
89 | if (IDE_CONTROL_REG) { | 119 | task->tf_flags |= IDE_TFLAG_LBA48; |
90 | /* clear nIEN */ | ||
91 | hwif->OUTB(drive->ctl, IDE_CONTROL_REG); | ||
92 | } | ||
93 | SELECT_MASK(drive, 0); | ||
94 | 120 | ||
95 | if (drive->addressing == 1) { | 121 | ide_tf_load(drive, task); |
96 | hwif->OUTB(tf->hob_feature, IDE_FEATURE_REG); | ||
97 | hwif->OUTB(tf->hob_nsect, IDE_NSECTOR_REG); | ||
98 | hwif->OUTB(tf->hob_lbal, IDE_SECTOR_REG); | ||
99 | hwif->OUTB(tf->hob_lbam, IDE_LCYL_REG); | ||
100 | hwif->OUTB(tf->hob_lbah, IDE_HCYL_REG); | ||
101 | } | ||
102 | |||
103 | hwif->OUTB(tf->feature, IDE_FEATURE_REG); | ||
104 | hwif->OUTB(tf->nsect, IDE_NSECTOR_REG); | ||
105 | hwif->OUTB(tf->lbal, IDE_SECTOR_REG); | ||
106 | hwif->OUTB(tf->lbam, IDE_LCYL_REG); | ||
107 | hwif->OUTB(tf->lbah, IDE_HCYL_REG); | ||
108 | |||
109 | hwif->OUTB((tf->device & HIHI) | drive->select.all, IDE_SELECT_REG); | ||
110 | 122 | ||
111 | if (task->handler != NULL) { | 123 | if (task->handler != NULL) { |
112 | if (task->prehandler != NULL) { | 124 | if (task->prehandler != NULL) { |