ide: remove ide_task_t typedef
[deliverable/linux.git] / drivers / ide / ide-park.c
CommitLineData
4abdc6ee
EO
1#include <linux/kernel.h>
2#include <linux/ide.h>
c4e66c36 3#include <linux/hdreg.h>
4abdc6ee
EO
4#include <linux/jiffies.h>
5#include <linux/blkdev.h>
6
7DECLARE_WAIT_QUEUE_HEAD(ide_park_wq);
8
9static void issue_park_cmd(ide_drive_t *drive, unsigned long timeout)
10{
b65fac32 11 ide_hwif_t *hwif = drive->hwif;
4abdc6ee
EO
12 struct request_queue *q = drive->queue;
13 struct request *rq;
14 int rc;
15
16 timeout += jiffies;
b65fac32 17 spin_lock_irq(&hwif->lock);
4abdc6ee 18 if (drive->dev_flags & IDE_DFLAG_PARKED) {
2a2ca6a9 19 int reset_timer = time_before(timeout, drive->sleep);
201bffa4 20 int start_queue = 0;
4abdc6ee 21
4abdc6ee
EO
22 drive->sleep = timeout;
23 wake_up_all(&ide_park_wq);
b65fac32 24 if (reset_timer && del_timer(&hwif->timer))
201bffa4 25 start_queue = 1;
b65fac32 26 spin_unlock_irq(&hwif->lock);
201bffa4
BZ
27
28 if (start_queue) {
29 spin_lock_irq(q->queue_lock);
4abdc6ee 30 blk_start_queueing(q);
201bffa4 31 spin_unlock_irq(q->queue_lock);
4abdc6ee 32 }
4abdc6ee
EO
33 return;
34 }
b65fac32 35 spin_unlock_irq(&hwif->lock);
4abdc6ee
EO
36
37 rq = blk_get_request(q, READ, __GFP_WAIT);
38 rq->cmd[0] = REQ_PARK_HEADS;
39 rq->cmd_len = 1;
40 rq->cmd_type = REQ_TYPE_SPECIAL;
41 rq->special = &timeout;
42 rc = blk_execute_rq(q, NULL, rq, 1);
43 blk_put_request(rq);
44 if (rc)
45 goto out;
46
47 /*
48 * Make sure that *some* command is sent to the drive after the
49 * timeout has expired, so power management will be reenabled.
50 */
51 rq = blk_get_request(q, READ, GFP_NOWAIT);
52 if (unlikely(!rq))
53 goto out;
54
55 rq->cmd[0] = REQ_UNPARK_HEADS;
56 rq->cmd_len = 1;
57 rq->cmd_type = REQ_TYPE_SPECIAL;
58 elv_add_request(q, rq, ELEVATOR_INSERT_FRONT, 1);
59
60out:
61 return;
62}
63
c4e66c36
BZ
64ide_startstop_t ide_do_park_unpark(ide_drive_t *drive, struct request *rq)
65{
22aa4b32
BZ
66 struct ide_cmd cmd;
67 struct ide_taskfile *tf = &cmd.tf;
c4e66c36 68
22aa4b32 69 memset(&cmd, 0, sizeof(cmd));
c4e66c36
BZ
70 if (rq->cmd[0] == REQ_PARK_HEADS) {
71 drive->sleep = *(unsigned long *)rq->special;
72 drive->dev_flags |= IDE_DFLAG_SLEEPING;
73 tf->command = ATA_CMD_IDLEIMMEDIATE;
74 tf->feature = 0x44;
75 tf->lbal = 0x4c;
76 tf->lbam = 0x4e;
77 tf->lbah = 0x55;
22aa4b32 78 cmd.tf_flags |= IDE_TFLAG_CUSTOM_HANDLER;
c4e66c36
BZ
79 } else /* cmd == REQ_UNPARK_HEADS */
80 tf->command = ATA_CMD_CHK_POWER;
81
22aa4b32
BZ
82 cmd.tf_flags |= IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
83 cmd.rq = rq;
84 cmd.data_phase = TASKFILE_NO_DATA;
85
86 return do_rw_taskfile(drive, &cmd);
c4e66c36
BZ
87}
88
4abdc6ee
EO
89ssize_t ide_park_show(struct device *dev, struct device_attribute *attr,
90 char *buf)
91{
92 ide_drive_t *drive = to_ide_device(dev);
b65fac32 93 ide_hwif_t *hwif = drive->hwif;
4abdc6ee
EO
94 unsigned long now;
95 unsigned int msecs;
96
97 if (drive->dev_flags & IDE_DFLAG_NO_UNLOAD)
98 return -EOPNOTSUPP;
99
b65fac32 100 spin_lock_irq(&hwif->lock);
4abdc6ee
EO
101 now = jiffies;
102 if (drive->dev_flags & IDE_DFLAG_PARKED &&
103 time_after(drive->sleep, now))
104 msecs = jiffies_to_msecs(drive->sleep - now);
105 else
106 msecs = 0;
b65fac32 107 spin_unlock_irq(&hwif->lock);
4abdc6ee
EO
108
109 return snprintf(buf, 20, "%u\n", msecs);
110}
111
112ssize_t ide_park_store(struct device *dev, struct device_attribute *attr,
113 const char *buf, size_t len)
114{
115#define MAX_PARK_TIMEOUT 30000
116 ide_drive_t *drive = to_ide_device(dev);
117 long int input;
118 int rc;
119
120 rc = strict_strtol(buf, 10, &input);
121 if (rc || input < -2)
122 return -EINVAL;
123 if (input > MAX_PARK_TIMEOUT) {
124 input = MAX_PARK_TIMEOUT;
125 rc = -EOVERFLOW;
126 }
127
128 mutex_lock(&ide_setting_mtx);
129 if (input >= 0) {
130 if (drive->dev_flags & IDE_DFLAG_NO_UNLOAD)
131 rc = -EOPNOTSUPP;
132 else if (input || drive->dev_flags & IDE_DFLAG_PARKED)
133 issue_park_cmd(drive, msecs_to_jiffies(input));
134 } else {
135 if (drive->media == ide_disk)
136 switch (input) {
137 case -1:
138 drive->dev_flags &= ~IDE_DFLAG_NO_UNLOAD;
139 break;
140 case -2:
141 drive->dev_flags |= IDE_DFLAG_NO_UNLOAD;
142 break;
143 }
144 else
145 rc = -EOPNOTSUPP;
146 }
147 mutex_unlock(&ide_setting_mtx);
148
149 return rc ? rc : len;
150}
This page took 0.083704 seconds and 5 git commands to generate.