aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2009-03-27 07:46:28 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2009-03-27 07:46:28 -0400
commit19710d25d50ae0be05eebe4231ed8918b1092d82 (patch)
tree2ec84e215d6dd07afcf3433e8f920bb6919d3f88
parentc094ea0774d6881598da430ea0916a597162f8df (diff)
ide: add "flagged" taskfile flags to struct ide_taskfile (v2)
* Add ->ftf_flags field to struct ide_taskfile and convert flags for TASKFILE ioctl to use it. * Rename "flagged" taskfile flags: - IDE_TFLAG_FLAGGED -> IDE_FTFLAG_FLAGGED - IDE_TFLAG_FLAGGED_SET_IN_FLAGS -> IDE_FTFLAG_SET_IN_FLAGS - IDE_TFLAG_{OUT,IN}_DATA -> IDE_FTFLAG_{OUT,IN}_DATA v2: * Remember to fully update ide-h8300.c, scc_pata.c and tx493{8,9}ide.c (thanks to Stephen Rothwell for noticing). There should be no functional changes caused by this patch. Cc: Stephen Rothwell <sfr@canb.auug.org.au> Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-rw-r--r--drivers/ide/at91_ide.c6
-rw-r--r--drivers/ide/ide-h8300.c6
-rw-r--r--drivers/ide/ide-io-std.c6
-rw-r--r--drivers/ide/ide-taskfile.c12
-rw-r--r--drivers/ide/ns87415.c2
-rw-r--r--drivers/ide/scc_pata.c6
-rw-r--r--drivers/ide/tx4938ide.c6
-rw-r--r--drivers/ide/tx4939ide.c6
-rw-r--r--include/linux/ide.h66
9 files changed, 60 insertions, 56 deletions
diff --git a/drivers/ide/at91_ide.c b/drivers/ide/at91_ide.c
index 4bd46d2d6b64..6eabf9e31290 100644
--- a/drivers/ide/at91_ide.c
+++ b/drivers/ide/at91_ide.c
@@ -192,10 +192,10 @@ static void at91_ide_tf_load(ide_drive_t *drive, ide_task_t *task)
192 struct ide_taskfile *tf = &task->tf; 192 struct ide_taskfile *tf = &task->tf;
193 u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF; 193 u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF;
194 194
195 if (task->tf_flags & IDE_TFLAG_FLAGGED) 195 if (task->tf_flags & IDE_FTFLAG_FLAGGED)
196 HIHI = 0xFF; 196 HIHI = 0xFF;
197 197
198 if (task->tf_flags & IDE_TFLAG_OUT_DATA) { 198 if (task->tf_flags & IDE_FTFLAG_OUT_DATA) {
199 u16 data = (tf->hob_data << 8) | tf->data; 199 u16 data = (tf->hob_data << 8) | tf->data;
200 200
201 at91_ide_output_data(drive, NULL, &data, 2); 201 at91_ide_output_data(drive, NULL, &data, 2);
@@ -233,7 +233,7 @@ static void at91_ide_tf_read(ide_drive_t *drive, ide_task_t *task)
233 struct ide_io_ports *io_ports = &hwif->io_ports; 233 struct ide_io_ports *io_ports = &hwif->io_ports;
234 struct ide_taskfile *tf = &task->tf; 234 struct ide_taskfile *tf = &task->tf;
235 235
236 if (task->tf_flags & IDE_TFLAG_IN_DATA) { 236 if (task->tf_flags & IDE_FTFLAG_IN_DATA) {
237 u16 data; 237 u16 data;
238 238
239 at91_ide_input_data(drive, NULL, &data, 2); 239 at91_ide_input_data(drive, NULL, &data, 2);
diff --git a/drivers/ide/ide-h8300.c b/drivers/ide/ide-h8300.c
index 9270d3255ee0..11e937485bff 100644
--- a/drivers/ide/ide-h8300.c
+++ b/drivers/ide/ide-h8300.c
@@ -51,10 +51,10 @@ static void h8300_tf_load(ide_drive_t *drive, ide_task_t *task)
51 struct ide_taskfile *tf = &task->tf; 51 struct ide_taskfile *tf = &task->tf;
52 u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF; 52 u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF;
53 53
54 if (task->tf_flags & IDE_TFLAG_FLAGGED) 54 if (task->ftf_flags & IDE_FTFLAG_FLAGGED)
55 HIHI = 0xFF; 55 HIHI = 0xFF;
56 56
57 if (task->tf_flags & IDE_TFLAG_OUT_DATA) 57 if (task->ftf_flags & IDE_FTFLAG_OUT_DATA)
58 mm_outw((tf->hob_data << 8) | tf->data, io_ports->data_addr); 58 mm_outw((tf->hob_data << 8) | tf->data, io_ports->data_addr);
59 59
60 if (task->tf_flags & IDE_TFLAG_OUT_HOB_FEATURE) 60 if (task->tf_flags & IDE_TFLAG_OUT_HOB_FEATURE)
@@ -90,7 +90,7 @@ static void h8300_tf_read(ide_drive_t *drive, ide_task_t *task)
90 struct ide_io_ports *io_ports = &hwif->io_ports; 90 struct ide_io_ports *io_ports = &hwif->io_ports;
91 struct ide_taskfile *tf = &task->tf; 91 struct ide_taskfile *tf = &task->tf;
92 92
93 if (task->tf_flags & IDE_TFLAG_IN_DATA) { 93 if (task->ftf_flags & IDE_FTFLAG_IN_DATA) {
94 u16 data = mm_inw(io_ports->data_addr); 94 u16 data = mm_inw(io_ports->data_addr);
95 95
96 tf->data = data & 0xff; 96 tf->data = data & 0xff;
diff --git a/drivers/ide/ide-io-std.c b/drivers/ide/ide-io-std.c
index 9a8da6744d93..cad59f0bfbce 100644
--- a/drivers/ide/ide-io-std.c
+++ b/drivers/ide/ide-io-std.c
@@ -96,10 +96,10 @@ void ide_tf_load(ide_drive_t *drive, ide_task_t *task)
96 else 96 else
97 tf_outb = ide_outb; 97 tf_outb = ide_outb;
98 98
99 if (task->tf_flags & IDE_TFLAG_FLAGGED) 99 if (task->ftf_flags & IDE_FTFLAG_FLAGGED)
100 HIHI = 0xFF; 100 HIHI = 0xFF;
101 101
102 if (task->tf_flags & IDE_TFLAG_OUT_DATA) { 102 if (task->ftf_flags & IDE_FTFLAG_OUT_DATA) {
103 u16 data = (tf->hob_data << 8) | tf->data; 103 u16 data = (tf->hob_data << 8) | tf->data;
104 104
105 if (mmio) 105 if (mmio)
@@ -153,7 +153,7 @@ void ide_tf_read(ide_drive_t *drive, ide_task_t *task)
153 tf_inb = ide_inb; 153 tf_inb = ide_inb;
154 } 154 }
155 155
156 if (task->tf_flags & IDE_TFLAG_IN_DATA) { 156 if (task->ftf_flags & IDE_FTFLAG_IN_DATA) {
157 u16 data; 157 u16 data;
158 158
159 if (mmio) 159 if (mmio)
diff --git a/drivers/ide/ide-taskfile.c b/drivers/ide/ide-taskfile.c
index 2461245820b7..02240a3ee0fb 100644
--- a/drivers/ide/ide-taskfile.c
+++ b/drivers/ide/ide-taskfile.c
@@ -73,8 +73,8 @@ ide_startstop_t do_rw_taskfile (ide_drive_t *drive, ide_task_t *task)
73 } 73 }
74 } 74 }
75 75
76 if (task->tf_flags & IDE_TFLAG_FLAGGED) 76 if (task->ftf_flags & IDE_FTFLAG_FLAGGED)
77 task->tf_flags |= IDE_TFLAG_FLAGGED_SET_IN_FLAGS; 77 task->ftf_flags |= IDE_FTFLAG_SET_IN_FLAGS;
78 78
79 memcpy(&hwif->task, task, sizeof(*task)); 79 memcpy(&hwif->task, task, sizeof(*task));
80 80
@@ -551,10 +551,10 @@ int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
551 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB); 551 args.tf_flags |= (IDE_TFLAG_LBA48 | IDE_TFLAG_IN_HOB);
552 552
553 if (req_task->out_flags.all) { 553 if (req_task->out_flags.all) {
554 args.tf_flags |= IDE_TFLAG_FLAGGED; 554 args.ftf_flags |= IDE_FTFLAG_FLAGGED;
555 555
556 if (req_task->out_flags.b.data) 556 if (req_task->out_flags.b.data)
557 args.tf_flags |= IDE_TFLAG_OUT_DATA; 557 args.ftf_flags |= IDE_FTFLAG_OUT_DATA;
558 558
559 if (req_task->out_flags.b.nsector_hob) 559 if (req_task->out_flags.b.nsector_hob)
560 args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT; 560 args.tf_flags |= IDE_TFLAG_OUT_HOB_NSECT;
@@ -582,7 +582,7 @@ int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
582 } 582 }
583 583
584 if (req_task->in_flags.b.data) 584 if (req_task->in_flags.b.data)
585 args.tf_flags |= IDE_TFLAG_IN_DATA; 585 args.ftf_flags |= IDE_FTFLAG_IN_DATA;
586 586
587 switch(req_task->data_phase) { 587 switch(req_task->data_phase) {
588 case TASKFILE_MULTI_OUT: 588 case TASKFILE_MULTI_OUT:
@@ -647,7 +647,7 @@ int ide_taskfile_ioctl (ide_drive_t *drive, unsigned int cmd, unsigned long arg)
647 memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2); 647 memcpy(req_task->hob_ports, &args.tf_array[0], HDIO_DRIVE_HOB_HDR_SIZE - 2);
648 memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE); 648 memcpy(req_task->io_ports, &args.tf_array[6], HDIO_DRIVE_TASK_HDR_SIZE);
649 649
650 if ((args.tf_flags & IDE_TFLAG_FLAGGED_SET_IN_FLAGS) && 650 if ((args.ftf_flags & IDE_FTFLAG_SET_IN_FLAGS) &&
651 req_task->in_flags.all == 0) { 651 req_task->in_flags.all == 0) {
652 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS; 652 req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS;
653 if (drive->dev_flags & IDE_DFLAG_LBA48) 653 if (drive->dev_flags & IDE_DFLAG_LBA48)
diff --git a/drivers/ide/ns87415.c b/drivers/ide/ns87415.c
index ea48a3ee8063..159eb39c7932 100644
--- a/drivers/ide/ns87415.c
+++ b/drivers/ide/ns87415.c
@@ -66,7 +66,7 @@ static void superio_tf_read(ide_drive_t *drive, ide_task_t *task)
66 struct ide_io_ports *io_ports = &drive->hwif->io_ports; 66 struct ide_io_ports *io_ports = &drive->hwif->io_ports;
67 struct ide_taskfile *tf = &task->tf; 67 struct ide_taskfile *tf = &task->tf;
68 68
69 if (task->tf_flags & IDE_TFLAG_IN_DATA) { 69 if (task->ftf_flags & IDE_FTFLAG_IN_DATA) {
70 u16 data = inw(io_ports->data_addr); 70 u16 data = inw(io_ports->data_addr);
71 71
72 tf->data = data & 0xff; 72 tf->data = data & 0xff;
diff --git a/drivers/ide/scc_pata.c b/drivers/ide/scc_pata.c
index ae965da5dde0..82929c725d82 100644
--- a/drivers/ide/scc_pata.c
+++ b/drivers/ide/scc_pata.c
@@ -672,10 +672,10 @@ static void scc_tf_load(ide_drive_t *drive, ide_task_t *task)
672 struct ide_taskfile *tf = &task->tf; 672 struct ide_taskfile *tf = &task->tf;
673 u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF; 673 u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF;
674 674
675 if (task->tf_flags & IDE_TFLAG_FLAGGED) 675 if (task->ftf_flags & IDE_FTFLAG_FLAGGED)
676 HIHI = 0xFF; 676 HIHI = 0xFF;
677 677
678 if (task->tf_flags & IDE_TFLAG_OUT_DATA) 678 if (task->ftf_flags & IDE_FTFLAG_OUT_DATA)
679 out_be32((void *)io_ports->data_addr, 679 out_be32((void *)io_ports->data_addr,
680 (tf->hob_data << 8) | tf->data); 680 (tf->hob_data << 8) | tf->data);
681 681
@@ -711,7 +711,7 @@ static void scc_tf_read(ide_drive_t *drive, ide_task_t *task)
711 struct ide_io_ports *io_ports = &drive->hwif->io_ports; 711 struct ide_io_ports *io_ports = &drive->hwif->io_ports;
712 struct ide_taskfile *tf = &task->tf; 712 struct ide_taskfile *tf = &task->tf;
713 713
714 if (task->tf_flags & IDE_TFLAG_IN_DATA) { 714 if (task->ftf_flags & IDE_FTFLAG_IN_DATA) {
715 u16 data = (u16)in_be32((void *)io_ports->data_addr); 715 u16 data = (u16)in_be32((void *)io_ports->data_addr);
716 716
717 tf->data = data & 0xff; 717 tf->data = data & 0xff;
diff --git a/drivers/ide/tx4938ide.c b/drivers/ide/tx4938ide.c
index efade9e898b3..6b51e0c58af7 100644
--- a/drivers/ide/tx4938ide.c
+++ b/drivers/ide/tx4938ide.c
@@ -89,10 +89,10 @@ static void tx4938ide_tf_load(ide_drive_t *drive, ide_task_t *task)
89 struct ide_taskfile *tf = &task->tf; 89 struct ide_taskfile *tf = &task->tf;
90 u8 HIHI = task->tf_flags & IDE_TFLAG_LBA48 ? 0xE0 : 0xEF; 90 u8 HIHI = task->tf_flags & IDE_TFLAG_LBA48 ? 0xE0 : 0xEF;
91 91
92 if (task->tf_flags & IDE_TFLAG_FLAGGED) 92 if (task->ftf_flags & IDE_FTFLAG_FLAGGED)
93 HIHI = 0xFF; 93 HIHI = 0xFF;
94 94
95 if (task->tf_flags & IDE_TFLAG_OUT_DATA) { 95 if (task->ftf_flags & IDE_FTFLAG_OUT_DATA) {
96 u16 data = (tf->hob_data << 8) | tf->data; 96 u16 data = (tf->hob_data << 8) | tf->data;
97 97
98 /* no endian swap */ 98 /* no endian swap */
@@ -132,7 +132,7 @@ static void tx4938ide_tf_read(ide_drive_t *drive, ide_task_t *task)
132 struct ide_io_ports *io_ports = &hwif->io_ports; 132 struct ide_io_ports *io_ports = &hwif->io_ports;
133 struct ide_taskfile *tf = &task->tf; 133 struct ide_taskfile *tf = &task->tf;
134 134
135 if (task->tf_flags & IDE_TFLAG_IN_DATA) { 135 if (task->ftf_flags & IDE_FTFLAG_IN_DATA) {
136 u16 data; 136 u16 data;
137 137
138 /* no endian swap */ 138 /* no endian swap */
diff --git a/drivers/ide/tx4939ide.c b/drivers/ide/tx4939ide.c
index fb037a5e70b3..f0033eb2e885 100644
--- a/drivers/ide/tx4939ide.c
+++ b/drivers/ide/tx4939ide.c
@@ -474,10 +474,10 @@ static void tx4939ide_tf_load(ide_drive_t *drive, ide_task_t *task)
474 struct ide_taskfile *tf = &task->tf; 474 struct ide_taskfile *tf = &task->tf;
475 u8 HIHI = task->tf_flags & IDE_TFLAG_LBA48 ? 0xE0 : 0xEF; 475 u8 HIHI = task->tf_flags & IDE_TFLAG_LBA48 ? 0xE0 : 0xEF;
476 476
477 if (task->tf_flags & IDE_TFLAG_FLAGGED) 477 if (task->ftf_flags & IDE_FTFLAG_FLAGGED)
478 HIHI = 0xFF; 478 HIHI = 0xFF;
479 479
480 if (task->tf_flags & IDE_TFLAG_OUT_DATA) { 480 if (task->ftf_flags & IDE_FTFLAG_OUT_DATA) {
481 u16 data = (tf->hob_data << 8) | tf->data; 481 u16 data = (tf->hob_data << 8) | tf->data;
482 482
483 /* no endian swap */ 483 /* no endian swap */
@@ -519,7 +519,7 @@ static void tx4939ide_tf_read(ide_drive_t *drive, ide_task_t *task)
519 struct ide_io_ports *io_ports = &hwif->io_ports; 519 struct ide_io_ports *io_ports = &hwif->io_ports;
520 struct ide_taskfile *tf = &task->tf; 520 struct ide_taskfile *tf = &task->tf;
521 521
522 if (task->tf_flags & IDE_TFLAG_IN_DATA) { 522 if (task->ftf_flags & IDE_FTFLAG_IN_DATA) {
523 u16 data; 523 u16 data;
524 524
525 /* no endian swap */ 525 /* no endian swap */
diff --git a/include/linux/ide.h b/include/linux/ide.h
index 3d4ba8e95d4a..675d4363ece4 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -234,56 +234,52 @@ typedef enum {
234 234
235enum { 235enum {
236 IDE_TFLAG_LBA48 = (1 << 0), 236 IDE_TFLAG_LBA48 = (1 << 0),
237 IDE_TFLAG_FLAGGED = (1 << 2), 237 IDE_TFLAG_OUT_HOB_FEATURE = (1 << 1),
238 IDE_TFLAG_OUT_DATA = (1 << 3), 238 IDE_TFLAG_OUT_HOB_NSECT = (1 << 2),
239 IDE_TFLAG_OUT_HOB_FEATURE = (1 << 4), 239 IDE_TFLAG_OUT_HOB_LBAL = (1 << 3),
240 IDE_TFLAG_OUT_HOB_NSECT = (1 << 5), 240 IDE_TFLAG_OUT_HOB_LBAM = (1 << 4),
241 IDE_TFLAG_OUT_HOB_LBAL = (1 << 6), 241 IDE_TFLAG_OUT_HOB_LBAH = (1 << 5),
242 IDE_TFLAG_OUT_HOB_LBAM = (1 << 7),
243 IDE_TFLAG_OUT_HOB_LBAH = (1 << 8),
244 IDE_TFLAG_OUT_HOB = IDE_TFLAG_OUT_HOB_FEATURE | 242 IDE_TFLAG_OUT_HOB = IDE_TFLAG_OUT_HOB_FEATURE |
245 IDE_TFLAG_OUT_HOB_NSECT | 243 IDE_TFLAG_OUT_HOB_NSECT |
246 IDE_TFLAG_OUT_HOB_LBAL | 244 IDE_TFLAG_OUT_HOB_LBAL |
247 IDE_TFLAG_OUT_HOB_LBAM | 245 IDE_TFLAG_OUT_HOB_LBAM |
248 IDE_TFLAG_OUT_HOB_LBAH, 246 IDE_TFLAG_OUT_HOB_LBAH,
249 IDE_TFLAG_OUT_FEATURE = (1 << 9), 247 IDE_TFLAG_OUT_FEATURE = (1 << 6),
250 IDE_TFLAG_OUT_NSECT = (1 << 10), 248 IDE_TFLAG_OUT_NSECT = (1 << 7),
251 IDE_TFLAG_OUT_LBAL = (1 << 11), 249 IDE_TFLAG_OUT_LBAL = (1 << 8),
252 IDE_TFLAG_OUT_LBAM = (1 << 12), 250 IDE_TFLAG_OUT_LBAM = (1 << 9),
253 IDE_TFLAG_OUT_LBAH = (1 << 13), 251 IDE_TFLAG_OUT_LBAH = (1 << 10),
254 IDE_TFLAG_OUT_TF = IDE_TFLAG_OUT_FEATURE | 252 IDE_TFLAG_OUT_TF = IDE_TFLAG_OUT_FEATURE |
255 IDE_TFLAG_OUT_NSECT | 253 IDE_TFLAG_OUT_NSECT |
256 IDE_TFLAG_OUT_LBAL | 254 IDE_TFLAG_OUT_LBAL |
257 IDE_TFLAG_OUT_LBAM | 255 IDE_TFLAG_OUT_LBAM |
258 IDE_TFLAG_OUT_LBAH, 256 IDE_TFLAG_OUT_LBAH,
259 IDE_TFLAG_OUT_DEVICE = (1 << 14), 257 IDE_TFLAG_OUT_DEVICE = (1 << 11),
260 IDE_TFLAG_WRITE = (1 << 15), 258 IDE_TFLAG_WRITE = (1 << 12),
261 IDE_TFLAG_FLAGGED_SET_IN_FLAGS = (1 << 16), 259 IDE_TFLAG_CUSTOM_HANDLER = (1 << 13),
262 IDE_TFLAG_IN_DATA = (1 << 17), 260 IDE_TFLAG_DMA_PIO_FALLBACK = (1 << 14),
263 IDE_TFLAG_CUSTOM_HANDLER = (1 << 18), 261 IDE_TFLAG_IN_HOB_FEATURE = (1 << 15),
264 IDE_TFLAG_DMA_PIO_FALLBACK = (1 << 19), 262 IDE_TFLAG_IN_HOB_NSECT = (1 << 16),
265 IDE_TFLAG_IN_HOB_FEATURE = (1 << 20), 263 IDE_TFLAG_IN_HOB_LBAL = (1 << 17),
266 IDE_TFLAG_IN_HOB_NSECT = (1 << 21), 264 IDE_TFLAG_IN_HOB_LBAM = (1 << 18),
267 IDE_TFLAG_IN_HOB_LBAL = (1 << 22), 265 IDE_TFLAG_IN_HOB_LBAH = (1 << 19),
268 IDE_TFLAG_IN_HOB_LBAM = (1 << 23),
269 IDE_TFLAG_IN_HOB_LBAH = (1 << 24),
270 IDE_TFLAG_IN_HOB_LBA = IDE_TFLAG_IN_HOB_LBAL | 266 IDE_TFLAG_IN_HOB_LBA = IDE_TFLAG_IN_HOB_LBAL |
271 IDE_TFLAG_IN_HOB_LBAM | 267 IDE_TFLAG_IN_HOB_LBAM |
272 IDE_TFLAG_IN_HOB_LBAH, 268 IDE_TFLAG_IN_HOB_LBAH,
273 IDE_TFLAG_IN_HOB = IDE_TFLAG_IN_HOB_FEATURE | 269 IDE_TFLAG_IN_HOB = IDE_TFLAG_IN_HOB_FEATURE |
274 IDE_TFLAG_IN_HOB_NSECT | 270 IDE_TFLAG_IN_HOB_NSECT |
275 IDE_TFLAG_IN_HOB_LBA, 271 IDE_TFLAG_IN_HOB_LBA,
276 IDE_TFLAG_IN_FEATURE = (1 << 1), 272 IDE_TFLAG_IN_FEATURE = (1 << 20),
277 IDE_TFLAG_IN_NSECT = (1 << 25), 273 IDE_TFLAG_IN_NSECT = (1 << 21),
278 IDE_TFLAG_IN_LBAL = (1 << 26), 274 IDE_TFLAG_IN_LBAL = (1 << 22),
279 IDE_TFLAG_IN_LBAM = (1 << 27), 275 IDE_TFLAG_IN_LBAM = (1 << 23),
280 IDE_TFLAG_IN_LBAH = (1 << 28), 276 IDE_TFLAG_IN_LBAH = (1 << 24),
281 IDE_TFLAG_IN_LBA = IDE_TFLAG_IN_LBAL | 277 IDE_TFLAG_IN_LBA = IDE_TFLAG_IN_LBAL |
282 IDE_TFLAG_IN_LBAM | 278 IDE_TFLAG_IN_LBAM |
283 IDE_TFLAG_IN_LBAH, 279 IDE_TFLAG_IN_LBAH,
284 IDE_TFLAG_IN_TF = IDE_TFLAG_IN_NSECT | 280 IDE_TFLAG_IN_TF = IDE_TFLAG_IN_NSECT |
285 IDE_TFLAG_IN_LBA, 281 IDE_TFLAG_IN_LBA,
286 IDE_TFLAG_IN_DEVICE = (1 << 29), 282 IDE_TFLAG_IN_DEVICE = (1 << 25),
287 IDE_TFLAG_HOB = IDE_TFLAG_OUT_HOB | 283 IDE_TFLAG_HOB = IDE_TFLAG_OUT_HOB |
288 IDE_TFLAG_IN_HOB, 284 IDE_TFLAG_IN_HOB,
289 IDE_TFLAG_TF = IDE_TFLAG_OUT_TF | 285 IDE_TFLAG_TF = IDE_TFLAG_OUT_TF |
@@ -291,9 +287,16 @@ enum {
291 IDE_TFLAG_DEVICE = IDE_TFLAG_OUT_DEVICE | 287 IDE_TFLAG_DEVICE = IDE_TFLAG_OUT_DEVICE |
292 IDE_TFLAG_IN_DEVICE, 288 IDE_TFLAG_IN_DEVICE,
293 /* force 16-bit I/O operations */ 289 /* force 16-bit I/O operations */
294 IDE_TFLAG_IO_16BIT = (1 << 30), 290 IDE_TFLAG_IO_16BIT = (1 << 26),
295 /* ide_task_t was allocated using kmalloc() */ 291 /* ide_task_t was allocated using kmalloc() */
296 IDE_TFLAG_DYN = (1 << 31), 292 IDE_TFLAG_DYN = (1 << 27),
293};
294
295enum {
296 IDE_FTFLAG_FLAGGED = (1 << 0),
297 IDE_FTFLAG_SET_IN_FLAGS = (1 << 1),
298 IDE_FTFLAG_OUT_DATA = (1 << 2),
299 IDE_FTFLAG_IN_DATA = (1 << 3),
297}; 300};
298 301
299struct ide_taskfile { 302struct ide_taskfile {
@@ -330,6 +333,7 @@ typedef struct ide_task_s {
330 struct ide_taskfile tf; 333 struct ide_taskfile tf;
331 u8 tf_array[14]; 334 u8 tf_array[14];
332 }; 335 };
336 u8 ftf_flags; /* for TASKFILE ioctl */
333 u32 tf_flags; 337 u32 tf_flags;
334 int data_phase; 338 int data_phase;
335 struct request *rq; /* copy of request */ 339 struct request *rq; /* copy of request */