ccwgroup: move attributes to attribute group
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / ide / ide-park.c
bloba914023d6d035d9e530178ff2422a7bf386cc2cd
1 #include <linux/kernel.h>
2 #include <linux/ide.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;
12 struct request *rq;
13 int rc;
15 timeout += jiffies;
16 spin_lock_irq(&hwif->lock);
17 if (drive->dev_flags & IDE_DFLAG_PARKED) {
18 int reset_timer = time_before(timeout, drive->sleep);
19 int start_queue = 0;
21 drive->sleep = timeout;
22 wake_up_all(&ide_park_wq);
23 if (reset_timer && del_timer(&hwif->timer))
24 start_queue = 1;
25 spin_unlock_irq(&hwif->lock);
27 if (start_queue)
28 blk_run_queue(q);
29 return;
31 spin_unlock_irq(&hwif->lock);
33 rq = blk_get_request(q, READ, __GFP_WAIT);
34 rq->cmd[0] = REQ_PARK_HEADS;
35 rq->cmd_len = 1;
36 rq->cmd_type = REQ_TYPE_SPECIAL;
37 rq->special = &timeout;
38 rc = blk_execute_rq(q, NULL, rq, 1);
39 blk_put_request(rq);
40 if (rc)
41 goto out;
44 * Make sure that *some* command is sent to the drive after the
45 * timeout has expired, so power management will be reenabled.
47 rq = blk_get_request(q, READ, GFP_NOWAIT);
48 if (unlikely(!rq))
49 goto out;
51 rq->cmd[0] = REQ_UNPARK_HEADS;
52 rq->cmd_len = 1;
53 rq->cmd_type = REQ_TYPE_SPECIAL;
54 elv_add_request(q, rq, ELEVATOR_INSERT_FRONT, 1);
56 out:
57 return;
60 ide_startstop_t ide_do_park_unpark(ide_drive_t *drive, struct request *rq)
62 struct ide_cmd cmd;
63 struct ide_taskfile *tf = &cmd.tf;
65 memset(&cmd, 0, sizeof(cmd));
66 if (rq->cmd[0] == REQ_PARK_HEADS) {
67 drive->sleep = *(unsigned long *)rq->special;
68 drive->dev_flags |= IDE_DFLAG_SLEEPING;
69 tf->command = ATA_CMD_IDLEIMMEDIATE;
70 tf->feature = 0x44;
71 tf->lbal = 0x4c;
72 tf->lbam = 0x4e;
73 tf->lbah = 0x55;
74 cmd.valid.out.tf = IDE_VALID_OUT_TF | IDE_VALID_DEVICE;
75 cmd.valid.in.tf = IDE_VALID_IN_TF | IDE_VALID_DEVICE;
76 } else /* cmd == REQ_UNPARK_HEADS */
77 tf->command = ATA_CMD_CHK_POWER;
79 cmd.tf_flags |= IDE_TFLAG_CUSTOM_HANDLER;
80 cmd.protocol = ATA_PROT_NODATA;
82 cmd.rq = rq;
84 return do_rw_taskfile(drive, &cmd);
87 ssize_t ide_park_show(struct device *dev, struct device_attribute *attr,
88 char *buf)
90 ide_drive_t *drive = to_ide_device(dev);
91 ide_hwif_t *hwif = drive->hwif;
92 unsigned long now;
93 unsigned int msecs;
95 if (drive->dev_flags & IDE_DFLAG_NO_UNLOAD)
96 return -EOPNOTSUPP;
98 spin_lock_irq(&hwif->lock);
99 now = jiffies;
100 if (drive->dev_flags & IDE_DFLAG_PARKED &&
101 time_after(drive->sleep, now))
102 msecs = jiffies_to_msecs(drive->sleep - now);
103 else
104 msecs = 0;
105 spin_unlock_irq(&hwif->lock);
107 return snprintf(buf, 20, "%u\n", msecs);
110 ssize_t ide_park_store(struct device *dev, struct device_attribute *attr,
111 const char *buf, size_t len)
113 #define MAX_PARK_TIMEOUT 30000
114 ide_drive_t *drive = to_ide_device(dev);
115 long int input;
116 int rc;
118 rc = strict_strtol(buf, 10, &input);
119 if (rc || input < -2)
120 return -EINVAL;
121 if (input > MAX_PARK_TIMEOUT) {
122 input = MAX_PARK_TIMEOUT;
123 rc = -EOVERFLOW;
126 mutex_lock(&ide_setting_mtx);
127 if (input >= 0) {
128 if (drive->dev_flags & IDE_DFLAG_NO_UNLOAD)
129 rc = -EOPNOTSUPP;
130 else if (input || drive->dev_flags & IDE_DFLAG_PARKED)
131 issue_park_cmd(drive, msecs_to_jiffies(input));
132 } else {
133 if (drive->media == ide_disk)
134 switch (input) {
135 case -1:
136 drive->dev_flags &= ~IDE_DFLAG_NO_UNLOAD;
137 break;
138 case -2:
139 drive->dev_flags |= IDE_DFLAG_NO_UNLOAD;
140 break;
142 else
143 rc = -EOPNOTSUPP;
145 mutex_unlock(&ide_setting_mtx);
147 return rc ? rc : len;