libata-zpodd.c 7.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3
#include <linux/libata.h>
#include <linux/cdrom.h>
4
#include <linux/pm_runtime.h>
5
#include <linux/module.h>
6
#include <linux/pm_qos.h>
7
#include <scsi/scsi_device.h>
8 9 10

#include "libata.h"

11 12 13 14
static int zpodd_poweroff_delay = 30; /* 30 seconds for power off delay */
module_param(zpodd_poweroff_delay, int, 0644);
MODULE_PARM_DESC(zpodd_poweroff_delay, "Poweroff delay for ZPODD in seconds");

15 16 17 18 19 20 21 22 23
enum odd_mech_type {
	ODD_MECH_TYPE_SLOT,
	ODD_MECH_TYPE_DRAWER,
	ODD_MECH_TYPE_UNSUPPORTED,
};

struct zpodd {
	enum odd_mech_type	mech_type; /* init during probe, RO afterwards */
	struct ata_device	*dev;
24 25 26 27

	/* The following fields are synchronized by PM core. */
	bool			from_notify; /* resumed as a result of
					      * acpi wake notification */
28 29 30
	bool			zp_ready; /* ZP ready state */
	unsigned long		last_ready; /* last ZP ready timestamp */
	bool			zp_sampled; /* ZP ready state sampled */
31 32
	bool			powered_off; /* ODD is powered off
					      *	during suspend */
33 34
};

35 36
static int eject_tray(struct ata_device *dev)
{
37
	struct ata_taskfile tf;
38
	static const char cdb[ATAPI_CDB_LEN] = {  GPCMD_START_STOP_UNIT,
39 40 41 42 43
		0, 0, 0,
		0x02,     /* LoEj */
		0, 0, 0, 0, 0, 0, 0,
	};

44
	ata_tf_init(dev, &tf);
45 46 47 48 49 50 51
	tf.flags = ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
	tf.command = ATA_CMD_PACKET;
	tf.protocol = ATAPI_PROT_NODATA;

	return ata_exec_internal(dev, &tf, cdb, DMA_NONE, NULL, 0, 0);
}

52 53 54
/* Per the spec, only slot type and drawer type ODD can be supported */
static enum odd_mech_type zpodd_get_mech_type(struct ata_device *dev)
{
55
	char *buf;
56
	unsigned int ret;
57
	struct rm_feature_desc *desc;
58
	struct ata_taskfile tf;
59
	static const char cdb[ATAPI_CDB_LEN] = {  GPCMD_GET_CONFIGURATION,
60 61 62
			2,      /* only 1 feature descriptor requested */
			0, 3,   /* 3, removable medium feature */
			0, 0, 0,/* reserved */
63
			0, 16,
64 65 66
			0, 0, 0,
	};

67 68 69 70 71
	buf = kzalloc(16, GFP_KERNEL);
	if (!buf)
		return ODD_MECH_TYPE_UNSUPPORTED;
	desc = (void *)(buf + 8);

72
	ata_tf_init(dev, &tf);
73 74 75
	tf.flags = ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE;
	tf.command = ATA_CMD_PACKET;
	tf.protocol = ATAPI_PROT_PIO;
76
	tf.lbam = 16;
77 78

	ret = ata_exec_internal(dev, &tf, cdb, DMA_FROM_DEVICE,
79 80 81
				buf, 16, 0);
	if (ret) {
		kfree(buf);
82
		return ODD_MECH_TYPE_UNSUPPORTED;
83
	}
84

85 86
	if (be16_to_cpu(desc->feature_code) != 3) {
		kfree(buf);
87
		return ODD_MECH_TYPE_UNSUPPORTED;
88
	}
89

90 91
	if (desc->mech_type == 0 && desc->load == 0 && desc->eject == 1) {
		kfree(buf);
92
		return ODD_MECH_TYPE_SLOT;
93 94 95
	} else if (desc->mech_type == 1 && desc->load == 0 &&
		   desc->eject == 1) {
		kfree(buf);
96
		return ODD_MECH_TYPE_DRAWER;
97 98
	} else {
		kfree(buf);
99
		return ODD_MECH_TYPE_UNSUPPORTED;
100
	}
101 102
}

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
/* Test if ODD is zero power ready by sense code */
static bool zpready(struct ata_device *dev)
{
	u8 sense_key, *sense_buf;
	unsigned int ret, asc, ascq, add_len;
	struct zpodd *zpodd = dev->zpodd;

	ret = atapi_eh_tur(dev, &sense_key);

	if (!ret || sense_key != NOT_READY)
		return false;

	sense_buf = dev->link->ap->sector_buf;
	ret = atapi_eh_request_sense(dev, sense_buf, sense_key);
	if (ret)
		return false;

	/* sense valid */
	if ((sense_buf[0] & 0x7f) != 0x70)
		return false;

	add_len = sense_buf[7];
	/* has asc and ascq */
	if (add_len < 6)
		return false;

	asc = sense_buf[12];
	ascq = sense_buf[13];

	if (zpodd->mech_type == ODD_MECH_TYPE_SLOT)
		/* no media inside */
		return asc == 0x3a;
	else
		/* no media inside and door closed */
		return asc == 0x3a && ascq == 0x01;
}

/*
 * Update the zpodd->zp_ready field. This field will only be set
 * if the ODD has stayed in ZP ready state for zpodd_poweroff_delay
 * time, and will be used to decide if power off is allowed. If it
 * is set, it will be cleared during resume from powered off state.
 */
void zpodd_on_suspend(struct ata_device *dev)
{
	struct zpodd *zpodd = dev->zpodd;
	unsigned long expires;

	if (!zpready(dev)) {
		zpodd->zp_sampled = false;
153
		zpodd->zp_ready = false;
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
		return;
	}

	if (!zpodd->zp_sampled) {
		zpodd->zp_sampled = true;
		zpodd->last_ready = jiffies;
		return;
	}

	expires = zpodd->last_ready +
		  msecs_to_jiffies(zpodd_poweroff_delay * 1000);
	if (time_before(jiffies, expires))
		return;

	zpodd->zp_ready = true;
}

171 172 173 174 175 176 177 178 179 180
bool zpodd_zpready(struct ata_device *dev)
{
	struct zpodd *zpodd = dev->zpodd;
	return zpodd->zp_ready;
}

/*
 * Enable runtime wake capability through ACPI and set the powered_off flag,
 * this flag will be used during resume to decide what operations are needed
 * to take.
181 182 183
 *
 * Also, media poll needs to be silenced, so that it doesn't bring the ODD
 * back to full power state every few seconds.
184 185 186 187 188
 */
void zpodd_enable_run_wake(struct ata_device *dev)
{
	struct zpodd *zpodd = dev->zpodd;

189 190
	sdev_disable_disk_events(dev->sdev);

191
	zpodd->powered_off = true;
192
	acpi_pm_set_device_wakeup(&dev->tdev, true);
193 194 195 196 197 198 199
}

/* Disable runtime wake capability if it is enabled */
void zpodd_disable_run_wake(struct ata_device *dev)
{
	struct zpodd *zpodd = dev->zpodd;

200 201
	if (zpodd->powered_off)
		acpi_pm_set_device_wakeup(&dev->tdev, false);
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
}

/*
 * Post power on processing after the ODD has been recovered. If the
 * ODD wasn't powered off during suspend, it doesn't do anything.
 *
 * For drawer type ODD, if it is powered on due to user pressed the
 * eject button, the tray needs to be ejected. This can only be done
 * after the ODD has been recovered, i.e. link is initialized and
 * device is able to process NON_DATA PIO command, as eject needs to
 * send command for the ODD to process.
 *
 * The from_notify flag set in wake notification handler function
 * zpodd_wake_dev represents if power on is due to user's action.
 *
 * For both types of ODD, several fields need to be reset.
 */
void zpodd_post_poweron(struct ata_device *dev)
{
	struct zpodd *zpodd = dev->zpodd;

	if (!zpodd->powered_off)
		return;

	zpodd->powered_off = false;

	if (zpodd->from_notify) {
		zpodd->from_notify = false;
		if (zpodd->mech_type == ODD_MECH_TYPE_DRAWER)
			eject_tray(dev);
	}

	zpodd->zp_sampled = false;
	zpodd->zp_ready = false;
236 237

	sdev_enable_disk_events(dev->sdev);
238 239
}

240 241 242 243 244 245
static void zpodd_wake_dev(acpi_handle handle, u32 event, void *context)
{
	struct ata_device *ata_dev = context;
	struct zpodd *zpodd = ata_dev->zpodd;
	struct device *dev = &ata_dev->sdev->sdev_gendev;

246
	if (event == ACPI_NOTIFY_DEVICE_WAKE && pm_runtime_suspended(dev)) {
247 248 249 250 251 252 253 254 255 256 257 258 259 260
		zpodd->from_notify = true;
		pm_runtime_resume(dev);
	}
}

static void ata_acpi_add_pm_notifier(struct ata_device *dev)
{
	acpi_handle handle = ata_dev_acpi_handle(dev);
	acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
				    zpodd_wake_dev, dev);
}

static void ata_acpi_remove_pm_notifier(struct ata_device *dev)
{
261
	acpi_handle handle = ata_dev_acpi_handle(dev);
262 263 264
	acpi_remove_notify_handler(handle, ACPI_SYSTEM_NOTIFY, zpodd_wake_dev);
}

265 266
void zpodd_init(struct ata_device *dev)
{
267
	struct acpi_device *adev = ACPI_COMPANION(&dev->tdev);
268 269 270
	enum odd_mech_type mech_type;
	struct zpodd *zpodd;

271
	if (dev->zpodd || !adev || !acpi_device_can_poweroff(adev))
272 273 274 275 276 277 278 279 280 281 282 283
		return;

	mech_type = zpodd_get_mech_type(dev);
	if (mech_type == ODD_MECH_TYPE_UNSUPPORTED)
		return;

	zpodd = kzalloc(sizeof(struct zpodd), GFP_KERNEL);
	if (!zpodd)
		return;

	zpodd->mech_type = mech_type;

284
	ata_acpi_add_pm_notifier(dev);
285 286
	zpodd->dev = dev;
	dev->zpodd = zpodd;
287
	dev_pm_qos_expose_flags(&dev->tdev, 0);
288 289 290 291
}

void zpodd_exit(struct ata_device *dev)
{
292
	ata_acpi_remove_pm_notifier(dev);
293 294 295
	kfree(dev->zpodd);
	dev->zpodd = NULL;
}