1 #include <linux/kernel.h>
3 #include <linux/jiffies.h>
4 #include <linux/blkdev.h>
6 DECLARE_WAIT_QUEUE_HEAD(ide_park_wq);
8 static void issue_park_cmd(ide_drive_t *drive, unsigned long timeout)
10 ide_hwif_t *hwif = drive->hwif;
11 struct request_queue *q = drive->queue;
16 spin_lock_irq(&hwif->lock);
17 if (drive->dev_flags & IDE_DFLAG_PARKED) {
18 int reset_timer = time_before(timeout, drive->sleep);
21 drive->sleep = timeout;
22 wake_up_all(&ide_park_wq);
23 if (reset_timer && del_timer(&hwif->timer))
25 spin_unlock_irq(&hwif->lock);
28 spin_lock_irq(q->queue_lock);
29 blk_start_queueing(q);
30 spin_unlock_irq(q->queue_lock);
34 spin_unlock_irq(&hwif->lock);
36 rq = blk_get_request(q, READ, __GFP_WAIT);
37 rq->cmd[0] = REQ_PARK_HEADS;
39 rq->cmd_type = REQ_TYPE_SPECIAL;
40 rq->special = &timeout;
41 rc = blk_execute_rq(q, NULL, rq, 1);
47 * Make sure that *some* command is sent to the drive after the
48 * timeout has expired, so power management will be reenabled.
50 rq = blk_get_request(q, READ, GFP_NOWAIT);
54 rq->cmd[0] = REQ_UNPARK_HEADS;
56 rq->cmd_type = REQ_TYPE_SPECIAL;
57 elv_add_request(q, rq, ELEVATOR_INSERT_FRONT, 1);
63 ide_startstop_t ide_do_park_unpark(ide_drive_t *drive, struct request *rq)
66 struct ide_taskfile *tf = &cmd.tf;
68 memset(&cmd, 0, sizeof(cmd));
69 if (rq->cmd[0] == REQ_PARK_HEADS) {
70 drive->sleep = *(unsigned long *)rq->special;
71 drive->dev_flags |= IDE_DFLAG_SLEEPING;
72 tf->command = ATA_CMD_IDLEIMMEDIATE;
77 cmd.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE;
78 } else /* cmd == REQ_UNPARK_HEADS */
79 tf->command = ATA_CMD_CHK_POWER;
81 cmd.tf_flags |= IDE_TFLAG_CUSTOM_HANDLER;
82 cmd.protocol = ATA_PROT_NODATA;
86 return do_rw_taskfile(drive, &cmd);
89 ssize_t ide_park_show(struct device *dev, struct device_attribute *attr,
92 ide_drive_t *drive = to_ide_device(dev);
93 ide_hwif_t *hwif = drive->hwif;
97 if (drive->dev_flags & IDE_DFLAG_NO_UNLOAD)
100 spin_lock_irq(&hwif->lock);
102 if (drive->dev_flags & IDE_DFLAG_PARKED &&
103 time_after(drive->sleep, now))
104 msecs = jiffies_to_msecs(drive->sleep - now);
107 spin_unlock_irq(&hwif->lock);
109 return snprintf(buf, 20, "%u\n", msecs);
112 ssize_t ide_park_store(struct device *dev, struct device_attribute *attr,
113 const char *buf, size_t len)
115 #define MAX_PARK_TIMEOUT 30000
116 ide_drive_t *drive = to_ide_device(dev);
120 rc = strict_strtol(buf, 10, &input);
121 if (rc || input < -2)
123 if (input > MAX_PARK_TIMEOUT) {
124 input = MAX_PARK_TIMEOUT;
128 mutex_lock(&ide_setting_mtx);
130 if (drive->dev_flags & IDE_DFLAG_NO_UNLOAD)
132 else if (input || drive->dev_flags & IDE_DFLAG_PARKED)
133 issue_park_cmd(drive, msecs_to_jiffies(input));
135 if (drive->media == ide_disk)
138 drive->dev_flags &= ~IDE_DFLAG_NO_UNLOAD;
141 drive->dev_flags |= IDE_DFLAG_NO_UNLOAD;
147 mutex_unlock(&ide_setting_mtx);
149 return rc ? rc : len;