blob: f30e52152fcbf1e2d3609998ef282eaf6b9a5f21 [file] [log] [blame]
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +02001#include <linux/kernel.h>
2#include <linux/ide.h>
Bartlomiej Zolnierkiewiczc4e66c32009-03-24 23:22:44 +01003#include <linux/hdreg.h>
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +02004#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{
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +010011 ide_hwif_t *hwif = drive->hwif;
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +020012 struct request_queue *q = drive->queue;
13 struct request *rq;
14 int rc;
15
16 timeout += jiffies;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +010017 spin_lock_irq(&hwif->lock);
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +020018 if (drive->dev_flags & IDE_DFLAG_PARKED) {
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +010019 int reset_timer = time_before(timeout, drive->sleep);
Bartlomiej Zolnierkiewicz201bffa2009-01-02 16:12:50 +010020 int start_queue = 0;
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +020021
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +020022 drive->sleep = timeout;
23 wake_up_all(&ide_park_wq);
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +010024 if (reset_timer && del_timer(&hwif->timer))
Bartlomiej Zolnierkiewicz201bffa2009-01-02 16:12:50 +010025 start_queue = 1;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +010026 spin_unlock_irq(&hwif->lock);
Bartlomiej Zolnierkiewicz201bffa2009-01-02 16:12:50 +010027
28 if (start_queue) {
29 spin_lock_irq(q->queue_lock);
30 blk_start_queueing(q);
31 spin_unlock_irq(q->queue_lock);
32 }
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +020033 return;
34 }
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +010035 spin_unlock_irq(&hwif->lock);
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +020036
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
Bartlomiej Zolnierkiewiczc4e66c32009-03-24 23:22:44 +010064ide_startstop_t ide_do_park_unpark(ide_drive_t *drive, struct request *rq)
65{
66 ide_task_t task;
67 struct ide_taskfile *tf = &task.tf;
68
69 memset(&task, 0, sizeof(task));
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;
78 task.tf_flags |= IDE_TFLAG_CUSTOM_HANDLER;
79 } else /* cmd == REQ_UNPARK_HEADS */
80 tf->command = ATA_CMD_CHK_POWER;
81
82 task.tf_flags |= IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
83 task.rq = rq;
84 drive->hwif->data_phase = task.data_phase = TASKFILE_NO_DATA;
85 return do_rw_taskfile(drive, &task);
86}
87
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +020088ssize_t ide_park_show(struct device *dev, struct device_attribute *attr,
89 char *buf)
90{
91 ide_drive_t *drive = to_ide_device(dev);
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +010092 ide_hwif_t *hwif = drive->hwif;
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +020093 unsigned long now;
94 unsigned int msecs;
95
96 if (drive->dev_flags & IDE_DFLAG_NO_UNLOAD)
97 return -EOPNOTSUPP;
98
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +010099 spin_lock_irq(&hwif->lock);
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +0200100 now = jiffies;
101 if (drive->dev_flags & IDE_DFLAG_PARKED &&
102 time_after(drive->sleep, now))
103 msecs = jiffies_to_msecs(drive->sleep - now);
104 else
105 msecs = 0;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100106 spin_unlock_irq(&hwif->lock);
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +0200107
108 return snprintf(buf, 20, "%u\n", msecs);
109}
110
111ssize_t ide_park_store(struct device *dev, struct device_attribute *attr,
112 const char *buf, size_t len)
113{
114#define MAX_PARK_TIMEOUT 30000
115 ide_drive_t *drive = to_ide_device(dev);
116 long int input;
117 int rc;
118
119 rc = strict_strtol(buf, 10, &input);
120 if (rc || input < -2)
121 return -EINVAL;
122 if (input > MAX_PARK_TIMEOUT) {
123 input = MAX_PARK_TIMEOUT;
124 rc = -EOVERFLOW;
125 }
126
127 mutex_lock(&ide_setting_mtx);
128 if (input >= 0) {
129 if (drive->dev_flags & IDE_DFLAG_NO_UNLOAD)
130 rc = -EOPNOTSUPP;
131 else if (input || drive->dev_flags & IDE_DFLAG_PARKED)
132 issue_park_cmd(drive, msecs_to_jiffies(input));
133 } else {
134 if (drive->media == ide_disk)
135 switch (input) {
136 case -1:
137 drive->dev_flags &= ~IDE_DFLAG_NO_UNLOAD;
138 break;
139 case -2:
140 drive->dev_flags |= IDE_DFLAG_NO_UNLOAD;
141 break;
142 }
143 else
144 rc = -EOPNOTSUPP;
145 }
146 mutex_unlock(&ide_setting_mtx);
147
148 return rc ? rc : len;
149}