1 #include <linux/libata.h>
2 #include <linux/cdrom.h>
3 #include <linux/pm_runtime.h>
4 #include <linux/module.h>
5 #include <linux/pm_qos.h>
6 #include <scsi/scsi_device.h>
10 static int zpodd_poweroff_delay
= 30; /* 30 seconds for power off delay */
11 module_param(zpodd_poweroff_delay
, int, 0644);
12 MODULE_PARM_DESC(zpodd_poweroff_delay
, "Poweroff delay for ZPODD in seconds");
17 ODD_MECH_TYPE_UNSUPPORTED
,
21 enum odd_mech_type mech_type
; /* init during probe, RO afterwards */
22 struct ata_device
*dev
;
24 /* The following fields are synchronized by PM core. */
25 bool from_notify
; /* resumed as a result of
26 * acpi wake notification */
27 bool zp_ready
; /* ZP ready state */
28 unsigned long last_ready
; /* last ZP ready timestamp */
29 bool zp_sampled
; /* ZP ready state sampled */
30 bool powered_off
; /* ODD is powered off
34 static int eject_tray(struct ata_device
*dev
)
36 struct ata_taskfile tf
;
37 const char cdb
[] = { GPCMD_START_STOP_UNIT
,
43 ata_tf_init(dev
, &tf
);
44 tf
.flags
= ATA_TFLAG_ISADDR
| ATA_TFLAG_DEVICE
;
45 tf
.command
= ATA_CMD_PACKET
;
46 tf
.protocol
= ATAPI_PROT_NODATA
;
48 return ata_exec_internal(dev
, &tf
, cdb
, DMA_NONE
, NULL
, 0, 0);
51 /* Per the spec, only slot type and drawer type ODD can be supported */
52 static enum odd_mech_type
zpodd_get_mech_type(struct ata_device
*dev
)
56 struct rm_feature_desc
*desc
= (void *)(buf
+ 8);
57 struct ata_taskfile tf
;
58 char cdb
[] = { GPCMD_GET_CONFIGURATION
,
59 2, /* only 1 feature descriptor requested */
60 0, 3, /* 3, removable medium feature */
61 0, 0, 0,/* reserved */
66 ata_tf_init(dev
, &tf
);
67 tf
.flags
= ATA_TFLAG_ISADDR
| ATA_TFLAG_DEVICE
;
68 tf
.command
= ATA_CMD_PACKET
;
69 tf
.protocol
= ATAPI_PROT_PIO
;
70 tf
.lbam
= sizeof(buf
);
72 ret
= ata_exec_internal(dev
, &tf
, cdb
, DMA_FROM_DEVICE
,
75 return ODD_MECH_TYPE_UNSUPPORTED
;
77 if (be16_to_cpu(desc
->feature_code
) != 3)
78 return ODD_MECH_TYPE_UNSUPPORTED
;
80 if (desc
->mech_type
== 0 && desc
->load
== 0 && desc
->eject
== 1)
81 return ODD_MECH_TYPE_SLOT
;
82 else if (desc
->mech_type
== 1 && desc
->load
== 0 && desc
->eject
== 1)
83 return ODD_MECH_TYPE_DRAWER
;
85 return ODD_MECH_TYPE_UNSUPPORTED
;
88 static bool odd_can_poweroff(struct ata_device
*ata_dev
)
92 struct acpi_device
*acpi_dev
;
94 handle
= ata_dev_acpi_handle(ata_dev
);
98 status
= acpi_bus_get_device(handle
, &acpi_dev
);
99 if (ACPI_FAILURE(status
))
102 return acpi_device_can_poweroff(acpi_dev
);
105 /* Test if ODD is zero power ready by sense code */
106 static bool zpready(struct ata_device
*dev
)
108 u8 sense_key
, *sense_buf
;
109 unsigned int ret
, asc
, ascq
, add_len
;
110 struct zpodd
*zpodd
= dev
->zpodd
;
112 ret
= atapi_eh_tur(dev
, &sense_key
);
114 if (!ret
|| sense_key
!= NOT_READY
)
117 sense_buf
= dev
->link
->ap
->sector_buf
;
118 ret
= atapi_eh_request_sense(dev
, sense_buf
, sense_key
);
123 if ((sense_buf
[0] & 0x7f) != 0x70)
126 add_len
= sense_buf
[7];
127 /* has asc and ascq */
132 ascq
= sense_buf
[13];
134 if (zpodd
->mech_type
== ODD_MECH_TYPE_SLOT
)
135 /* no media inside */
138 /* no media inside and door closed */
139 return asc
== 0x3a && ascq
== 0x01;
143 * Update the zpodd->zp_ready field. This field will only be set
144 * if the ODD has stayed in ZP ready state for zpodd_poweroff_delay
145 * time, and will be used to decide if power off is allowed. If it
146 * is set, it will be cleared during resume from powered off state.
148 void zpodd_on_suspend(struct ata_device
*dev
)
150 struct zpodd
*zpodd
= dev
->zpodd
;
151 unsigned long expires
;
154 zpodd
->zp_sampled
= false;
155 zpodd
->zp_ready
= false;
159 if (!zpodd
->zp_sampled
) {
160 zpodd
->zp_sampled
= true;
161 zpodd
->last_ready
= jiffies
;
165 expires
= zpodd
->last_ready
+
166 msecs_to_jiffies(zpodd_poweroff_delay
* 1000);
167 if (time_before(jiffies
, expires
))
170 zpodd
->zp_ready
= true;
173 bool zpodd_zpready(struct ata_device
*dev
)
175 struct zpodd
*zpodd
= dev
->zpodd
;
176 return zpodd
->zp_ready
;
180 * Enable runtime wake capability through ACPI and set the powered_off flag,
181 * this flag will be used during resume to decide what operations are needed
184 * Also, media poll needs to be silenced, so that it doesn't bring the ODD
185 * back to full power state every few seconds.
187 void zpodd_enable_run_wake(struct ata_device
*dev
)
189 struct zpodd
*zpodd
= dev
->zpodd
;
191 sdev_disable_disk_events(dev
->sdev
);
193 zpodd
->powered_off
= true;
194 device_set_run_wake(&dev
->tdev
, true);
195 acpi_pm_device_run_wake(&dev
->tdev
, true);
198 /* Disable runtime wake capability if it is enabled */
199 void zpodd_disable_run_wake(struct ata_device
*dev
)
201 struct zpodd
*zpodd
= dev
->zpodd
;
203 if (zpodd
->powered_off
) {
204 acpi_pm_device_run_wake(&dev
->tdev
, false);
205 device_set_run_wake(&dev
->tdev
, false);
210 * Post power on processing after the ODD has been recovered. If the
211 * ODD wasn't powered off during suspend, it doesn't do anything.
213 * For drawer type ODD, if it is powered on due to user pressed the
214 * eject button, the tray needs to be ejected. This can only be done
215 * after the ODD has been recovered, i.e. link is initialized and
216 * device is able to process NON_DATA PIO command, as eject needs to
217 * send command for the ODD to process.
219 * The from_notify flag set in wake notification handler function
220 * zpodd_wake_dev represents if power on is due to user's action.
222 * For both types of ODD, several fields need to be reset.
224 void zpodd_post_poweron(struct ata_device
*dev
)
226 struct zpodd
*zpodd
= dev
->zpodd
;
228 if (!zpodd
->powered_off
)
231 zpodd
->powered_off
= false;
233 if (zpodd
->from_notify
) {
234 zpodd
->from_notify
= false;
235 if (zpodd
->mech_type
== ODD_MECH_TYPE_DRAWER
)
239 zpodd
->zp_sampled
= false;
240 zpodd
->zp_ready
= false;
242 sdev_enable_disk_events(dev
->sdev
);
245 static void zpodd_wake_dev(acpi_handle handle
, u32 event
, void *context
)
247 struct ata_device
*ata_dev
= context
;
248 struct zpodd
*zpodd
= ata_dev
->zpodd
;
249 struct device
*dev
= &ata_dev
->sdev
->sdev_gendev
;
251 if (event
== ACPI_NOTIFY_DEVICE_WAKE
&& pm_runtime_suspended(dev
)) {
252 zpodd
->from_notify
= true;
253 pm_runtime_resume(dev
);
257 static void ata_acpi_add_pm_notifier(struct ata_device
*dev
)
259 acpi_handle handle
= ata_dev_acpi_handle(dev
);
260 acpi_install_notify_handler(handle
, ACPI_SYSTEM_NOTIFY
,
261 zpodd_wake_dev
, dev
);
264 static void ata_acpi_remove_pm_notifier(struct ata_device
*dev
)
266 acpi_handle handle
= ata_dev_acpi_handle(dev
);
267 acpi_remove_notify_handler(handle
, ACPI_SYSTEM_NOTIFY
, zpodd_wake_dev
);
270 void zpodd_init(struct ata_device
*dev
)
272 enum odd_mech_type mech_type
;
278 if (!odd_can_poweroff(dev
))
281 mech_type
= zpodd_get_mech_type(dev
);
282 if (mech_type
== ODD_MECH_TYPE_UNSUPPORTED
)
285 zpodd
= kzalloc(sizeof(struct zpodd
), GFP_KERNEL
);
289 zpodd
->mech_type
= mech_type
;
291 ata_acpi_add_pm_notifier(dev
);
294 dev_pm_qos_expose_flags(&dev
->tdev
, 0);
297 void zpodd_exit(struct ata_device
*dev
)
299 ata_acpi_remove_pm_notifier(dev
);