blob: a710a6e953073859fa0b344744d47b8c45d32b5a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Block driver for media (i.e., flash cards)
3 *
4 * Copyright 2002 Hewlett-Packard Company
Pierre Ossman979ce722008-06-29 12:19:47 +02005 * Copyright 2005-2008 Pierre Ossman
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Use consistent with the GNU GPL is permitted,
8 * provided that this copyright notice is
9 * preserved in its entirety in all copies and derived works.
10 *
11 * HEWLETT-PACKARD COMPANY MAKES NO WARRANTIES, EXPRESSED OR IMPLIED,
12 * AS TO THE USEFULNESS OR CORRECTNESS OF THIS CODE OR ITS
13 * FITNESS FOR ANY PARTICULAR PURPOSE.
14 *
15 * Many thanks to Alessandro Rubini and Jonathan Corbet!
16 *
17 * Author: Andrew Christian
18 * 28 May 2002
19 */
20#include <linux/moduleparam.h>
21#include <linux/module.h>
22#include <linux/init.h>
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/kernel.h>
25#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/errno.h>
28#include <linux/hdreg.h>
29#include <linux/kdev_t.h>
30#include <linux/blkdev.h>
Linus Walleij97548572017-09-20 10:02:00 +020031#include <linux/cdev.h>
Arjan van de Vena621aae2006-01-12 18:43:35 +000032#include <linux/mutex.h>
Pierre Ossmanec5a19d2006-10-06 00:44:03 -070033#include <linux/scatterlist.h>
Pierre Ossmana7bbb572008-09-06 10:57:57 +020034#include <linux/string_helpers.h>
John Calixtocb87ea22011-04-26 18:56:29 -040035#include <linux/delay.h>
36#include <linux/capability.h>
37#include <linux/compat.h>
Ulf Hanssone94cfef2013-05-02 14:02:38 +020038#include <linux/pm_runtime.h>
Ulf Hanssonb10fa992016-04-07 14:36:46 +020039#include <linux/idr.h>
Linus Walleij627c3cc2017-08-20 23:39:08 +020040#include <linux/debugfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
John Calixtocb87ea22011-04-26 18:56:29 -040042#include <linux/mmc/ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/mmc/card.h>
Pierre Ossman385e32272006-06-18 14:34:37 +020044#include <linux/mmc/host.h>
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010045#include <linux/mmc/mmc.h>
46#include <linux/mmc/sd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080048#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Pierre Ossman98ac2162006-12-23 20:03:02 +010050#include "queue.h"
Baoyou Xie48ab0862016-09-30 09:37:38 +080051#include "block.h"
Ulf Hansson55244c52017-01-13 14:14:08 +010052#include "core.h"
Ulf Hansson4facdde2017-01-13 14:14:14 +010053#include "card.h"
Ulf Hansson5857b292017-01-13 14:14:15 +010054#include "host.h"
Ulf Hansson4facdde2017-01-13 14:14:14 +010055#include "bus.h"
Ulf Hansson55244c52017-01-13 14:14:08 +010056#include "mmc_ops.h"
Shawn Lin28fc64a2017-02-15 16:35:28 +080057#include "quirks.h"
Ulf Hansson55244c52017-01-13 14:14:08 +010058#include "sd_ops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Andy Whitcroft6b0b6282009-02-23 12:38:41 +000060MODULE_ALIAS("mmc:block");
Olof Johansson5e71b7a2010-09-17 21:19:57 -040061#ifdef MODULE_PARAM_PREFIX
62#undef MODULE_PARAM_PREFIX
63#endif
64#define MODULE_PARAM_PREFIX "mmcblk."
David Woodhouse1dff3142007-11-21 18:45:12 +010065
Trey Ramsay8fee4762012-11-16 09:31:41 -060066#define MMC_BLK_TIMEOUT_MS (10 * 60 * 1000) /* 10 minute timeout */
Maya Erez775a9362013-04-18 15:41:55 +030067#define MMC_SANITIZE_REQ_TIMEOUT 240000
68#define MMC_EXTRACT_INDEX_FROM_ARG(x) ((x & 0x00FF0000) >> 16)
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -050069
Luca Porziod3df0462015-11-06 15:12:26 +000070#define mmc_req_rel_wr(req) ((req->cmd_flags & REQ_FUA) && \
Seungwon Jeonce39f9d2013-02-06 17:02:46 +090071 (rq_data_dir(req) == WRITE))
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020072static DEFINE_MUTEX(block_mutex);
Olof Johansson5e71b7a2010-09-17 21:19:57 -040073
74/*
75 * The defaults come from config options but can be overriden by module
76 * or bootarg options.
77 */
78static int perdev_minors = CONFIG_MMC_BLOCK_MINORS;
79
80/*
81 * We've only got one major, so number of mmcblk devices is
Ben Hutchingsa26eba62014-11-06 03:35:09 +000082 * limited to (1 << 20) / number of minors per device. It is also
Ulf Hanssonb10fa992016-04-07 14:36:46 +020083 * limited by the MAX_DEVICES below.
Olof Johansson5e71b7a2010-09-17 21:19:57 -040084 */
85static int max_devices;
86
Ben Hutchingsa26eba62014-11-06 03:35:09 +000087#define MAX_DEVICES 256
88
Ulf Hanssonb10fa992016-04-07 14:36:46 +020089static DEFINE_IDA(mmc_blk_ida);
Linus Walleij97548572017-09-20 10:02:00 +020090static DEFINE_IDA(mmc_rpmb_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
93 * There is one mmc_blk_data per slot.
94 */
95struct mmc_blk_data {
96 spinlock_t lock;
Dan Williams307d8e62016-06-20 10:40:44 -070097 struct device *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct gendisk *disk;
99 struct mmc_queue queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500100 struct list_head part;
Linus Walleij97548572017-09-20 10:02:00 +0200101 struct list_head rpmbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500103 unsigned int flags;
104#define MMC_BLK_CMD23 (1 << 0) /* Can do SET_BLOCK_COUNT for multiblock */
105#define MMC_BLK_REL_WR (1 << 1) /* MMC Reliable write support */
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 unsigned int usage;
Russell Kinga6f6c962006-01-03 22:38:44 +0000108 unsigned int read_only;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500109 unsigned int part_type;
Adrian Hunter67716322011-08-29 16:42:15 +0300110 unsigned int reset_done;
111#define MMC_BLK_READ BIT(0)
112#define MMC_BLK_WRITE BIT(1)
113#define MMC_BLK_DISCARD BIT(2)
114#define MMC_BLK_SECDISCARD BIT(3)
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200115#define MMC_BLK_CQE_RECOVERY BIT(4)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500116
117 /*
118 * Only set in main mmc_blk_data associated
Ulf Hanssonfc95e302014-10-06 14:34:09 +0200119 * with mmc_card with dev_set_drvdata, and keeps
Andrei Warkentin371a6892011-04-11 18:10:25 -0500120 * track of the current selected device partition.
121 */
122 unsigned int part_curr;
123 struct device_attribute force_ro;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100124 struct device_attribute power_ro_lock;
125 int area_type;
Adrian Hunterf9f0da92017-11-21 15:42:30 +0200126
127 /* debugfs files (only in main mmc_blk_data) */
128 struct dentry *status_dentry;
129 struct dentry *ext_csd_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Linus Walleij97548572017-09-20 10:02:00 +0200132/* Device type for RPMB character devices */
133static dev_t mmc_rpmb_devt;
134
135/* Bus type for RPMB character devices */
136static struct bus_type mmc_rpmb_bus_type = {
137 .name = "mmc_rpmb",
138};
139
140/**
141 * struct mmc_rpmb_data - special RPMB device type for these areas
142 * @dev: the device for the RPMB area
143 * @chrdev: character device for the RPMB area
144 * @id: unique device ID number
145 * @part_index: partition index (0 on first)
146 * @md: parent MMC block device
147 * @node: list item, so we can put this device on a list
148 */
149struct mmc_rpmb_data {
150 struct device dev;
151 struct cdev chrdev;
152 int id;
153 unsigned int part_index;
154 struct mmc_blk_data *md;
155 struct list_head node;
156};
157
Arjan van de Vena621aae2006-01-12 18:43:35 +0000158static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Olof Johansson5e71b7a2010-09-17 21:19:57 -0400160module_param(perdev_minors, int, 0444);
161MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
162
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200163static inline int mmc_blk_part_switch(struct mmc_card *card,
Linus Walleij1f797ed2017-08-20 23:39:10 +0200164 unsigned int part_type);
Adrian Huntercdf8a6f2017-03-13 14:36:35 +0200165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
167{
168 struct mmc_blk_data *md;
169
Arjan van de Vena621aae2006-01-12 18:43:35 +0000170 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 md = disk->private_data;
172 if (md && md->usage == 0)
173 md = NULL;
174 if (md)
175 md->usage++;
Arjan van de Vena621aae2006-01-12 18:43:35 +0000176 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 return md;
179}
180
Andrei Warkentin371a6892011-04-11 18:10:25 -0500181static inline int mmc_get_devidx(struct gendisk *disk)
182{
Colin Cross382c55f2015-10-22 10:00:41 -0700183 int devidx = disk->first_minor / perdev_minors;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500184 return devidx;
185}
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187static void mmc_blk_put(struct mmc_blk_data *md)
188{
Arjan van de Vena621aae2006-01-12 18:43:35 +0000189 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 md->usage--;
191 if (md->usage == 0) {
Andrei Warkentin371a6892011-04-11 18:10:25 -0500192 int devidx = mmc_get_devidx(md->disk);
Adrian Hunter41e3efd2017-11-29 15:40:59 +0200193 blk_put_queue(md->queue.queue);
Heiner Kallweita04848c2017-02-01 19:44:22 +0100194 ida_simple_remove(&mmc_blk_ida, devidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 put_disk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 kfree(md);
197 }
Arjan van de Vena621aae2006-01-12 18:43:35 +0000198 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Johan Rudholmadd710e2011-12-02 08:51:06 +0100201static ssize_t power_ro_lock_show(struct device *dev,
202 struct device_attribute *attr, char *buf)
203{
204 int ret;
205 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
206 struct mmc_card *card = md->queue.card;
207 int locked = 0;
208
209 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PERM_WP_EN)
210 locked = 2;
211 else if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_EN)
212 locked = 1;
213
214 ret = snprintf(buf, PAGE_SIZE, "%d\n", locked);
215
Tomas Winkler9098f842015-07-16 15:50:45 +0200216 mmc_blk_put(md);
217
Johan Rudholmadd710e2011-12-02 08:51:06 +0100218 return ret;
219}
220
221static ssize_t power_ro_lock_store(struct device *dev,
222 struct device_attribute *attr, const char *buf, size_t count)
223{
224 int ret;
225 struct mmc_blk_data *md, *part_md;
Linus Walleij0493f6f2017-05-19 15:37:30 +0200226 struct mmc_queue *mq;
227 struct request *req;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100228 unsigned long set;
229
230 if (kstrtoul(buf, 0, &set))
231 return -EINVAL;
232
233 if (set != 1)
234 return count;
235
236 md = mmc_blk_get(dev_to_disk(dev));
Linus Walleij0493f6f2017-05-19 15:37:30 +0200237 mq = &md->queue;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100238
Linus Walleij0493f6f2017-05-19 15:37:30 +0200239 /* Dispatch locking to the block layer */
240 req = blk_get_request(mq->queue, REQ_OP_DRV_OUT, __GFP_RECLAIM);
Adrian Hunterfb8e456e2017-11-21 15:42:28 +0200241 if (IS_ERR(req)) {
242 count = PTR_ERR(req);
243 goto out_put;
244 }
Linus Walleij0493f6f2017-05-19 15:37:30 +0200245 req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_BOOT_WP;
246 blk_execute_rq(mq->queue, NULL, req, 0);
247 ret = req_to_mmc_queue_req(req)->drv_op_result;
Adrian Hunter34c089e2017-11-21 15:42:27 +0200248 blk_put_request(req);
Johan Rudholmadd710e2011-12-02 08:51:06 +0100249
250 if (!ret) {
251 pr_info("%s: Locking boot partition ro until next power on\n",
252 md->disk->disk_name);
253 set_disk_ro(md->disk, 1);
254
255 list_for_each_entry(part_md, &md->part, part)
256 if (part_md->area_type == MMC_BLK_DATA_AREA_BOOT) {
257 pr_info("%s: Locking boot partition ro until next power on\n", part_md->disk->disk_name);
258 set_disk_ro(part_md->disk, 1);
259 }
260 }
Adrian Hunterfb8e456e2017-11-21 15:42:28 +0200261out_put:
Johan Rudholmadd710e2011-12-02 08:51:06 +0100262 mmc_blk_put(md);
263 return count;
264}
265
Andrei Warkentin371a6892011-04-11 18:10:25 -0500266static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
267 char *buf)
268{
269 int ret;
270 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
271
Baruch Siach0031a982014-09-22 10:12:51 +0300272 ret = snprintf(buf, PAGE_SIZE, "%d\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -0500273 get_disk_ro(dev_to_disk(dev)) ^
274 md->read_only);
275 mmc_blk_put(md);
276 return ret;
277}
278
279static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
280 const char *buf, size_t count)
281{
282 int ret;
283 char *end;
284 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
285 unsigned long set = simple_strtoul(buf, &end, 0);
286 if (end == buf) {
287 ret = -EINVAL;
288 goto out;
289 }
290
291 set_disk_ro(dev_to_disk(dev), set || md->read_only);
292 ret = count;
293out:
294 mmc_blk_put(md);
295 return ret;
296}
297
Al Viroa5a15612008-03-02 10:33:30 -0500298static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Al Viroa5a15612008-03-02 10:33:30 -0500300 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 int ret = -ENXIO;
302
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200303 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (md) {
305 if (md->usage == 2)
Al Viroa5a15612008-03-02 10:33:30 -0500306 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 ret = 0;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700308
Al Viroa5a15612008-03-02 10:33:30 -0500309 if ((mode & FMODE_WRITE) && md->read_only) {
Andrew Morton70bb0892008-09-05 14:00:24 -0700310 mmc_blk_put(md);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700311 ret = -EROFS;
Andrew Morton70bb0892008-09-05 14:00:24 -0700312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200314 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 return ret;
317}
318
Al Virodb2a1442013-05-05 21:52:57 -0400319static void mmc_blk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Al Viroa5a15612008-03-02 10:33:30 -0500321 struct mmc_blk_data *md = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200323 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 mmc_blk_put(md);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200325 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800329mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800331 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
332 geo->heads = 4;
333 geo->sectors = 16;
334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
John Calixtocb87ea22011-04-26 18:56:29 -0400337struct mmc_blk_ioc_data {
338 struct mmc_ioc_cmd ic;
339 unsigned char *buf;
340 u64 buf_bytes;
Linus Walleij97548572017-09-20 10:02:00 +0200341 struct mmc_rpmb_data *rpmb;
John Calixtocb87ea22011-04-26 18:56:29 -0400342};
343
344static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
345 struct mmc_ioc_cmd __user *user)
346{
347 struct mmc_blk_ioc_data *idata;
348 int err;
349
yalin wang1ff89502015-11-12 19:27:11 +0800350 idata = kmalloc(sizeof(*idata), GFP_KERNEL);
John Calixtocb87ea22011-04-26 18:56:29 -0400351 if (!idata) {
352 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400353 goto out;
John Calixtocb87ea22011-04-26 18:56:29 -0400354 }
355
356 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
357 err = -EFAULT;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400358 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400359 }
360
361 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
362 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
363 err = -EOVERFLOW;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400364 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400365 }
366
Ville Viinikkabfe5b1b2016-07-08 18:27:02 +0300367 if (!idata->buf_bytes) {
368 idata->buf = NULL;
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100369 return idata;
Ville Viinikkabfe5b1b2016-07-08 18:27:02 +0300370 }
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100371
yalin wang1ff89502015-11-12 19:27:11 +0800372 idata->buf = kmalloc(idata->buf_bytes, GFP_KERNEL);
John Calixtocb87ea22011-04-26 18:56:29 -0400373 if (!idata->buf) {
374 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400375 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400376 }
377
378 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
379 idata->ic.data_ptr, idata->buf_bytes)) {
380 err = -EFAULT;
381 goto copy_err;
382 }
383
384 return idata;
385
386copy_err:
387 kfree(idata->buf);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400388idata_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400389 kfree(idata);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400390out:
John Calixtocb87ea22011-04-26 18:56:29 -0400391 return ERR_PTR(err);
John Calixtocb87ea22011-04-26 18:56:29 -0400392}
393
Jon Huntera5f57742015-09-22 10:27:53 +0100394static int mmc_blk_ioctl_copy_to_user(struct mmc_ioc_cmd __user *ic_ptr,
395 struct mmc_blk_ioc_data *idata)
396{
397 struct mmc_ioc_cmd *ic = &idata->ic;
398
399 if (copy_to_user(&(ic_ptr->response), ic->response,
400 sizeof(ic->response)))
401 return -EFAULT;
402
403 if (!idata->ic.write_flag) {
404 if (copy_to_user((void __user *)(unsigned long)ic->data_ptr,
405 idata->buf, idata->buf_bytes))
406 return -EFAULT;
407 }
408
409 return 0;
410}
411
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200412static int ioctl_rpmb_card_status_poll(struct mmc_card *card, u32 *status,
413 u32 retries_max)
414{
415 int err;
416 u32 retry_count = 0;
417
418 if (!status || !retries_max)
419 return -EINVAL;
420
421 do {
Ulf Hansson2185bc22017-05-22 10:23:58 +0200422 err = __mmc_send_status(card, status, 5);
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200423 if (err)
424 break;
425
426 if (!R1_STATUS(*status) &&
427 (R1_CURRENT_STATE(*status) != R1_STATE_PRG))
428 break; /* RPMB programming operation complete */
429
430 /*
431 * Rechedule to give the MMC device a chance to continue
432 * processing the previous command without being polled too
433 * frequently.
434 */
435 usleep_range(1000, 5000);
436 } while (++retry_count < retries_max);
437
438 if (retry_count == retries_max)
439 err = -EPERM;
440
441 return err;
442}
443
Maya Erez775a9362013-04-18 15:41:55 +0300444static int ioctl_do_sanitize(struct mmc_card *card)
445{
446 int err;
447
Ulf Hanssona2d10862013-12-16 14:37:26 +0100448 if (!mmc_can_sanitize(card)) {
Maya Erez775a9362013-04-18 15:41:55 +0300449 pr_warn("%s: %s - SANITIZE is not supported\n",
450 mmc_hostname(card->host), __func__);
451 err = -EOPNOTSUPP;
452 goto out;
453 }
454
455 pr_debug("%s: %s - SANITIZE IN PROGRESS...\n",
456 mmc_hostname(card->host), __func__);
457
458 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
459 EXT_CSD_SANITIZE_START, 1,
460 MMC_SANITIZE_REQ_TIMEOUT);
461
462 if (err)
463 pr_err("%s: %s - EXT_CSD_SANITIZE_START failed. err=%d\n",
464 mmc_hostname(card->host), __func__, err);
465
466 pr_debug("%s: %s - SANITIZE COMPLETED\n", mmc_hostname(card->host),
467 __func__);
468out:
469 return err;
470}
471
Jon Huntera5f57742015-09-22 10:27:53 +0100472static int __mmc_blk_ioctl_cmd(struct mmc_card *card, struct mmc_blk_data *md,
473 struct mmc_blk_ioc_data *idata)
John Calixtocb87ea22011-04-26 18:56:29 -0400474{
Masahiro Yamadac7836d12016-12-19 20:51:18 +0900475 struct mmc_command cmd = {};
476 struct mmc_data data = {};
477 struct mmc_request mrq = {};
John Calixtocb87ea22011-04-26 18:56:29 -0400478 struct scatterlist sg;
479 int err;
Linus Walleij97548572017-09-20 10:02:00 +0200480 unsigned int target_part;
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200481 u32 status = 0;
John Calixtocb87ea22011-04-26 18:56:29 -0400482
Jon Huntera5f57742015-09-22 10:27:53 +0100483 if (!card || !md || !idata)
484 return -EINVAL;
John Calixtocb87ea22011-04-26 18:56:29 -0400485
Linus Walleij97548572017-09-20 10:02:00 +0200486 /*
487 * The RPMB accesses comes in from the character device, so we
488 * need to target these explicitly. Else we just target the
489 * partition type for the block device the ioctl() was issued
490 * on.
491 */
492 if (idata->rpmb) {
493 /* Support multiple RPMB partitions */
494 target_part = idata->rpmb->part_index;
495 target_part |= EXT_CSD_PART_CONFIG_ACC_RPMB;
496 } else {
497 target_part = md->part_type;
498 }
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200499
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100500 cmd.opcode = idata->ic.opcode;
501 cmd.arg = idata->ic.arg;
502 cmd.flags = idata->ic.flags;
503
504 if (idata->buf_bytes) {
505 data.sg = &sg;
506 data.sg_len = 1;
507 data.blksz = idata->ic.blksz;
508 data.blocks = idata->ic.blocks;
509
510 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
511
512 if (idata->ic.write_flag)
513 data.flags = MMC_DATA_WRITE;
514 else
515 data.flags = MMC_DATA_READ;
516
517 /* data.flags must already be set before doing this. */
518 mmc_set_data_timeout(&data, card);
519
520 /* Allow overriding the timeout_ns for empirical tuning. */
521 if (idata->ic.data_timeout_ns)
522 data.timeout_ns = idata->ic.data_timeout_ns;
523
524 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
525 /*
526 * Pretend this is a data transfer and rely on the
527 * host driver to compute timeout. When all host
528 * drivers support cmd.cmd_timeout for R1B, this
529 * can be changed to:
530 *
531 * mrq.data = NULL;
532 * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
533 */
534 data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
535 }
536
537 mrq.data = &data;
538 }
539
540 mrq.cmd = &cmd;
541
Linus Walleij97548572017-09-20 10:02:00 +0200542 err = mmc_blk_part_switch(card, target_part);
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200543 if (err)
Jon Huntera5f57742015-09-22 10:27:53 +0100544 return err;
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200545
John Calixtocb87ea22011-04-26 18:56:29 -0400546 if (idata->ic.is_acmd) {
547 err = mmc_app_cmd(card->host, card);
548 if (err)
Jon Huntera5f57742015-09-22 10:27:53 +0100549 return err;
John Calixtocb87ea22011-04-26 18:56:29 -0400550 }
551
Linus Walleij97548572017-09-20 10:02:00 +0200552 if (idata->rpmb) {
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200553 err = mmc_set_blockcount(card, data.blocks,
554 idata->ic.write_flag & (1 << 31));
555 if (err)
Jon Huntera5f57742015-09-22 10:27:53 +0100556 return err;
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200557 }
558
Yaniv Gardia82e4842013-06-05 14:13:08 +0300559 if ((MMC_EXTRACT_INDEX_FROM_ARG(cmd.arg) == EXT_CSD_SANITIZE_START) &&
560 (cmd.opcode == MMC_SWITCH)) {
Maya Erez775a9362013-04-18 15:41:55 +0300561 err = ioctl_do_sanitize(card);
562
563 if (err)
564 pr_err("%s: ioctl_do_sanitize() failed. err = %d",
565 __func__, err);
566
Jon Huntera5f57742015-09-22 10:27:53 +0100567 return err;
Maya Erez775a9362013-04-18 15:41:55 +0300568 }
569
John Calixtocb87ea22011-04-26 18:56:29 -0400570 mmc_wait_for_req(card->host, &mrq);
571
572 if (cmd.error) {
573 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
574 __func__, cmd.error);
Jon Huntera5f57742015-09-22 10:27:53 +0100575 return cmd.error;
John Calixtocb87ea22011-04-26 18:56:29 -0400576 }
577 if (data.error) {
578 dev_err(mmc_dev(card->host), "%s: data error %d\n",
579 __func__, data.error);
Jon Huntera5f57742015-09-22 10:27:53 +0100580 return data.error;
John Calixtocb87ea22011-04-26 18:56:29 -0400581 }
582
583 /*
584 * According to the SD specs, some commands require a delay after
585 * issuing the command.
586 */
587 if (idata->ic.postsleep_min_us)
588 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
589
Jon Huntera5f57742015-09-22 10:27:53 +0100590 memcpy(&(idata->ic.response), cmd.resp, sizeof(cmd.resp));
John Calixtocb87ea22011-04-26 18:56:29 -0400591
Linus Walleij97548572017-09-20 10:02:00 +0200592 if (idata->rpmb) {
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200593 /*
594 * Ensure RPMB command has completed by polling CMD13
595 * "Send Status".
596 */
597 err = ioctl_rpmb_card_status_poll(card, &status, 5);
598 if (err)
599 dev_err(mmc_dev(card->host),
600 "%s: Card Status=0x%08X, error %d\n",
601 __func__, status, err);
602 }
603
Jon Huntera5f57742015-09-22 10:27:53 +0100604 return err;
605}
606
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200607static int mmc_blk_ioctl_cmd(struct mmc_blk_data *md,
Linus Walleij97548572017-09-20 10:02:00 +0200608 struct mmc_ioc_cmd __user *ic_ptr,
609 struct mmc_rpmb_data *rpmb)
Jon Huntera5f57742015-09-22 10:27:53 +0100610{
611 struct mmc_blk_ioc_data *idata;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200612 struct mmc_blk_ioc_data *idatas[1];
Linus Walleij614f0382017-05-18 11:29:34 +0200613 struct mmc_queue *mq;
Jon Huntera5f57742015-09-22 10:27:53 +0100614 struct mmc_card *card;
Grant Grundlerb0934102015-09-23 18:30:33 -0700615 int err = 0, ioc_err = 0;
Linus Walleij614f0382017-05-18 11:29:34 +0200616 struct request *req;
Jon Huntera5f57742015-09-22 10:27:53 +0100617
618 idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
619 if (IS_ERR(idata))
620 return PTR_ERR(idata);
Linus Walleij97548572017-09-20 10:02:00 +0200621 /* This will be NULL on non-RPMB ioctl():s */
622 idata->rpmb = rpmb;
Jon Huntera5f57742015-09-22 10:27:53 +0100623
Jon Huntera5f57742015-09-22 10:27:53 +0100624 card = md->queue.card;
625 if (IS_ERR(card)) {
626 err = PTR_ERR(card);
627 goto cmd_done;
628 }
629
Linus Walleij614f0382017-05-18 11:29:34 +0200630 /*
631 * Dispatch the ioctl() into the block request queue.
632 */
633 mq = &md->queue;
634 req = blk_get_request(mq->queue,
635 idata->ic.write_flag ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN,
636 __GFP_RECLAIM);
Adrian Hunterfb8e456e2017-11-21 15:42:28 +0200637 if (IS_ERR(req)) {
638 err = PTR_ERR(req);
639 goto cmd_done;
640 }
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200641 idatas[0] = idata;
Linus Walleij97548572017-09-20 10:02:00 +0200642 req_to_mmc_queue_req(req)->drv_op =
643 rpmb ? MMC_DRV_OP_IOCTL_RPMB : MMC_DRV_OP_IOCTL;
Linus Walleij69f75992017-08-20 23:39:06 +0200644 req_to_mmc_queue_req(req)->drv_op_data = idatas;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200645 req_to_mmc_queue_req(req)->ioc_count = 1;
Linus Walleij614f0382017-05-18 11:29:34 +0200646 blk_execute_rq(mq->queue, NULL, req, 0);
Linus Walleij0493f6f2017-05-19 15:37:30 +0200647 ioc_err = req_to_mmc_queue_req(req)->drv_op_result;
Grant Grundlerb0934102015-09-23 18:30:33 -0700648 err = mmc_blk_ioctl_copy_to_user(ic_ptr, idata);
Linus Walleij614f0382017-05-18 11:29:34 +0200649 blk_put_request(req);
Jon Huntera5f57742015-09-22 10:27:53 +0100650
John Calixtocb87ea22011-04-26 18:56:29 -0400651cmd_done:
John Calixtocb87ea22011-04-26 18:56:29 -0400652 kfree(idata->buf);
653 kfree(idata);
Grant Grundlerb0934102015-09-23 18:30:33 -0700654 return ioc_err ? ioc_err : err;
John Calixtocb87ea22011-04-26 18:56:29 -0400655}
656
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200657static int mmc_blk_ioctl_multi_cmd(struct mmc_blk_data *md,
Linus Walleij97548572017-09-20 10:02:00 +0200658 struct mmc_ioc_multi_cmd __user *user,
659 struct mmc_rpmb_data *rpmb)
Jon Huntera5f57742015-09-22 10:27:53 +0100660{
661 struct mmc_blk_ioc_data **idata = NULL;
662 struct mmc_ioc_cmd __user *cmds = user->cmds;
663 struct mmc_card *card;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200664 struct mmc_queue *mq;
Grant Grundlerb0934102015-09-23 18:30:33 -0700665 int i, err = 0, ioc_err = 0;
Jon Huntera5f57742015-09-22 10:27:53 +0100666 __u64 num_of_cmds;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200667 struct request *req;
Jon Huntera5f57742015-09-22 10:27:53 +0100668
669 if (copy_from_user(&num_of_cmds, &user->num_of_cmds,
670 sizeof(num_of_cmds)))
671 return -EFAULT;
672
Geert Uytterhoevenaab2ee02017-07-05 17:09:42 +0200673 if (!num_of_cmds)
674 return 0;
675
Jon Huntera5f57742015-09-22 10:27:53 +0100676 if (num_of_cmds > MMC_IOC_MAX_CMDS)
677 return -EINVAL;
678
679 idata = kcalloc(num_of_cmds, sizeof(*idata), GFP_KERNEL);
680 if (!idata)
681 return -ENOMEM;
682
683 for (i = 0; i < num_of_cmds; i++) {
684 idata[i] = mmc_blk_ioctl_copy_from_user(&cmds[i]);
685 if (IS_ERR(idata[i])) {
686 err = PTR_ERR(idata[i]);
687 num_of_cmds = i;
688 goto cmd_err;
689 }
Linus Walleij97548572017-09-20 10:02:00 +0200690 /* This will be NULL on non-RPMB ioctl():s */
691 idata[i]->rpmb = rpmb;
Jon Huntera5f57742015-09-22 10:27:53 +0100692 }
693
Jon Huntera5f57742015-09-22 10:27:53 +0100694 card = md->queue.card;
695 if (IS_ERR(card)) {
696 err = PTR_ERR(card);
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200697 goto cmd_err;
Jon Huntera5f57742015-09-22 10:27:53 +0100698 }
699
Jon Huntera5f57742015-09-22 10:27:53 +0100700
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200701 /*
702 * Dispatch the ioctl()s into the block request queue.
703 */
704 mq = &md->queue;
705 req = blk_get_request(mq->queue,
706 idata[0]->ic.write_flag ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN,
707 __GFP_RECLAIM);
Adrian Hunterfb8e456e2017-11-21 15:42:28 +0200708 if (IS_ERR(req)) {
709 err = PTR_ERR(req);
710 goto cmd_err;
711 }
Linus Walleij97548572017-09-20 10:02:00 +0200712 req_to_mmc_queue_req(req)->drv_op =
713 rpmb ? MMC_DRV_OP_IOCTL_RPMB : MMC_DRV_OP_IOCTL;
Linus Walleij69f75992017-08-20 23:39:06 +0200714 req_to_mmc_queue_req(req)->drv_op_data = idata;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200715 req_to_mmc_queue_req(req)->ioc_count = num_of_cmds;
716 blk_execute_rq(mq->queue, NULL, req, 0);
Linus Walleij0493f6f2017-05-19 15:37:30 +0200717 ioc_err = req_to_mmc_queue_req(req)->drv_op_result;
Jon Huntera5f57742015-09-22 10:27:53 +0100718
719 /* copy to user if data and response */
Grant Grundlerb0934102015-09-23 18:30:33 -0700720 for (i = 0; i < num_of_cmds && !err; i++)
Jon Huntera5f57742015-09-22 10:27:53 +0100721 err = mmc_blk_ioctl_copy_to_user(&cmds[i], idata[i]);
Jon Huntera5f57742015-09-22 10:27:53 +0100722
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200723 blk_put_request(req);
724
Jon Huntera5f57742015-09-22 10:27:53 +0100725cmd_err:
726 for (i = 0; i < num_of_cmds; i++) {
727 kfree(idata[i]->buf);
728 kfree(idata[i]);
729 }
730 kfree(idata);
Grant Grundlerb0934102015-09-23 18:30:33 -0700731 return ioc_err ? ioc_err : err;
Jon Huntera5f57742015-09-22 10:27:53 +0100732}
733
Linus Walleij61fe0e22017-08-20 23:39:09 +0200734static int mmc_blk_check_blkdev(struct block_device *bdev)
735{
736 /*
737 * The caller must have CAP_SYS_RAWIO, and must be calling this on the
738 * whole block device, not on a partition. This prevents overspray
739 * between sibling partitions.
740 */
741 if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
742 return -EPERM;
743 return 0;
744}
745
John Calixtocb87ea22011-04-26 18:56:29 -0400746static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
747 unsigned int cmd, unsigned long arg)
748{
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200749 struct mmc_blk_data *md;
Linus Walleij61fe0e22017-08-20 23:39:09 +0200750 int ret;
751
Jon Huntera5f57742015-09-22 10:27:53 +0100752 switch (cmd) {
753 case MMC_IOC_CMD:
Linus Walleij61fe0e22017-08-20 23:39:09 +0200754 ret = mmc_blk_check_blkdev(bdev);
755 if (ret)
756 return ret;
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200757 md = mmc_blk_get(bdev->bd_disk);
758 if (!md)
759 return -EINVAL;
760 ret = mmc_blk_ioctl_cmd(md,
Linus Walleij97548572017-09-20 10:02:00 +0200761 (struct mmc_ioc_cmd __user *)arg,
762 NULL);
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200763 mmc_blk_put(md);
764 return ret;
Jon Huntera5f57742015-09-22 10:27:53 +0100765 case MMC_IOC_MULTI_CMD:
Linus Walleij61fe0e22017-08-20 23:39:09 +0200766 ret = mmc_blk_check_blkdev(bdev);
767 if (ret)
768 return ret;
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200769 md = mmc_blk_get(bdev->bd_disk);
770 if (!md)
771 return -EINVAL;
772 ret = mmc_blk_ioctl_multi_cmd(md,
Linus Walleij97548572017-09-20 10:02:00 +0200773 (struct mmc_ioc_multi_cmd __user *)arg,
774 NULL);
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200775 mmc_blk_put(md);
776 return ret;
Jon Huntera5f57742015-09-22 10:27:53 +0100777 default:
778 return -EINVAL;
779 }
John Calixtocb87ea22011-04-26 18:56:29 -0400780}
781
782#ifdef CONFIG_COMPAT
783static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
784 unsigned int cmd, unsigned long arg)
785{
786 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
787}
788#endif
789
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700790static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500791 .open = mmc_blk_open,
792 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800793 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400795 .ioctl = mmc_blk_ioctl,
796#ifdef CONFIG_COMPAT
797 .compat_ioctl = mmc_blk_compat_ioctl,
798#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799};
800
Adrian Hunter025e3d52017-03-13 14:36:39 +0200801static int mmc_blk_part_switch_pre(struct mmc_card *card,
802 unsigned int part_type)
803{
804 int ret = 0;
805
806 if (part_type == EXT_CSD_PART_CONFIG_ACC_RPMB) {
807 if (card->ext_csd.cmdq_en) {
808 ret = mmc_cmdq_disable(card);
809 if (ret)
810 return ret;
811 }
812 mmc_retune_pause(card->host);
813 }
814
815 return ret;
816}
817
818static int mmc_blk_part_switch_post(struct mmc_card *card,
819 unsigned int part_type)
820{
821 int ret = 0;
822
823 if (part_type == EXT_CSD_PART_CONFIG_ACC_RPMB) {
824 mmc_retune_unpause(card->host);
825 if (card->reenable_cmdq && !card->ext_csd.cmdq_en)
826 ret = mmc_cmdq_enable(card);
827 }
828
829 return ret;
830}
831
Andrei Warkentin371a6892011-04-11 18:10:25 -0500832static inline int mmc_blk_part_switch(struct mmc_card *card,
Linus Walleij1f797ed2017-08-20 23:39:10 +0200833 unsigned int part_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500834{
Adrian Hunter025e3d52017-03-13 14:36:39 +0200835 int ret = 0;
Ulf Hanssonfc95e302014-10-06 14:34:09 +0200836 struct mmc_blk_data *main_md = dev_get_drvdata(&card->dev);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300837
Linus Walleij1f797ed2017-08-20 23:39:10 +0200838 if (main_md->part_curr == part_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500839 return 0;
840
841 if (mmc_card_mmc(card)) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300842 u8 part_config = card->ext_csd.part_config;
843
Linus Walleij1f797ed2017-08-20 23:39:10 +0200844 ret = mmc_blk_part_switch_pre(card, part_type);
Adrian Hunter025e3d52017-03-13 14:36:39 +0200845 if (ret)
846 return ret;
Adrian Hunter57da0c02016-05-04 14:38:13 +0300847
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300848 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
Linus Walleij1f797ed2017-08-20 23:39:10 +0200849 part_config |= part_type;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500850
851 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300852 EXT_CSD_PART_CONFIG, part_config,
Andrei Warkentin371a6892011-04-11 18:10:25 -0500853 card->ext_csd.part_time);
Adrian Hunter57da0c02016-05-04 14:38:13 +0300854 if (ret) {
Linus Walleij1f797ed2017-08-20 23:39:10 +0200855 mmc_blk_part_switch_post(card, part_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -0500856 return ret;
Adrian Hunter57da0c02016-05-04 14:38:13 +0300857 }
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300858
859 card->ext_csd.part_config = part_config;
Adrian Hunter57da0c02016-05-04 14:38:13 +0300860
Adrian Hunter025e3d52017-03-13 14:36:39 +0200861 ret = mmc_blk_part_switch_post(card, main_md->part_curr);
Adrian Hunter67716322011-08-29 16:42:15 +0300862 }
Andrei Warkentin371a6892011-04-11 18:10:25 -0500863
Linus Walleij1f797ed2017-08-20 23:39:10 +0200864 main_md->part_curr = part_type;
Adrian Hunter025e3d52017-03-13 14:36:39 +0200865 return ret;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500866}
867
Linus Walleij169f03a2017-02-01 13:47:57 +0100868static int mmc_sd_num_wr_blocks(struct mmc_card *card, u32 *written_blocks)
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700869{
870 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100871 u32 result;
872 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700873
Masahiro Yamadac7836d12016-12-19 20:51:18 +0900874 struct mmc_request mrq = {};
875 struct mmc_command cmd = {};
876 struct mmc_data data = {};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700877
878 struct scatterlist sg;
879
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700880 cmd.opcode = MMC_APP_CMD;
881 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700882 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700883
884 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700885 if (err)
Linus Walleij169f03a2017-02-01 13:47:57 +0100886 return err;
David Brownell7213d172007-08-08 09:10:23 -0700887 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Linus Walleij169f03a2017-02-01 13:47:57 +0100888 return -EIO;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700889
890 memset(&cmd, 0, sizeof(struct mmc_command));
891
892 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
893 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700894 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700895
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700896 data.blksz = 4;
897 data.blocks = 1;
898 data.flags = MMC_DATA_READ;
899 data.sg = &sg;
900 data.sg_len = 1;
Subhash Jadavanid3804432012-06-13 17:10:43 +0530901 mmc_set_data_timeout(&data, card);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700902
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700903 mrq.cmd = &cmd;
904 mrq.data = &data;
905
Ben Dooks051913d2009-06-08 23:33:57 +0100906 blocks = kmalloc(4, GFP_KERNEL);
907 if (!blocks)
Linus Walleij169f03a2017-02-01 13:47:57 +0100908 return -ENOMEM;
Ben Dooks051913d2009-06-08 23:33:57 +0100909
910 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700911
912 mmc_wait_for_req(card->host, &mrq);
913
Ben Dooks051913d2009-06-08 23:33:57 +0100914 result = ntohl(*blocks);
915 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700916
Ben Dooks051913d2009-06-08 23:33:57 +0100917 if (cmd.error || data.error)
Linus Walleij169f03a2017-02-01 13:47:57 +0100918 return -EIO;
Ben Dooks051913d2009-06-08 23:33:57 +0100919
Linus Walleij169f03a2017-02-01 13:47:57 +0100920 *written_blocks = result;
921
922 return 0;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700923}
924
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100925static int card_busy_detect(struct mmc_card *card, unsigned int timeout_ms,
Linus Walleijc44d6ce2016-11-04 11:05:17 +0100926 bool hw_busy_detect, struct request *req, bool *gen_err)
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100927{
928 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
929 int err = 0;
930 u32 status;
931
932 do {
Ulf Hansson2185bc22017-05-22 10:23:58 +0200933 err = __mmc_send_status(card, &status, 5);
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100934 if (err) {
935 pr_err("%s: error %d requesting status\n",
936 req->rq_disk->disk_name, err);
937 return err;
938 }
939
940 if (status & R1_ERROR) {
941 pr_err("%s: %s: error sending status cmd, status %#x\n",
942 req->rq_disk->disk_name, __func__, status);
Linus Walleijc44d6ce2016-11-04 11:05:17 +0100943 *gen_err = true;
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100944 }
945
Ulf Hansson95a91292014-01-29 13:11:27 +0100946 /* We may rely on the host hw to handle busy detection.*/
947 if ((card->host->caps & MMC_CAP_WAIT_WHILE_BUSY) &&
948 hw_busy_detect)
949 break;
950
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100951 /*
952 * Timeout if the device never becomes ready for data and never
953 * leaves the program state.
954 */
955 if (time_after(jiffies, timeout)) {
956 pr_err("%s: Card stuck in programming state! %s %s\n",
957 mmc_hostname(card->host),
958 req->rq_disk->disk_name, __func__);
959 return -ETIMEDOUT;
960 }
961
962 /*
963 * Some cards mishandle the status bits,
964 * so make sure to check both the busy
965 * indication and the card state.
966 */
967 } while (!(status & R1_READY_FOR_DATA) ||
968 (R1_CURRENT_STATE(status) == R1_STATE_PRG));
969
970 return err;
971}
972
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100973static int send_stop(struct mmc_card *card, unsigned int timeout_ms,
Linus Walleijc44d6ce2016-11-04 11:05:17 +0100974 struct request *req, bool *gen_err, u32 *stop_status)
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100975{
976 struct mmc_host *host = card->host;
Masahiro Yamadac7836d12016-12-19 20:51:18 +0900977 struct mmc_command cmd = {};
Ulf Hanssonbb5cba42014-01-14 21:31:35 +0100978 int err;
979 bool use_r1b_resp = rq_data_dir(req) == WRITE;
980
981 /*
982 * Normally we use R1B responses for WRITE, but in cases where the host
983 * has specified a max_busy_timeout we need to validate it. A failure
984 * means we need to prevent the host from doing hw busy detection, which
985 * is done by converting to a R1 response instead.
986 */
987 if (host->max_busy_timeout && (timeout_ms > host->max_busy_timeout))
988 use_r1b_resp = false;
989
990 cmd.opcode = MMC_STOP_TRANSMISSION;
991 if (use_r1b_resp) {
992 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
993 cmd.busy_timeout = timeout_ms;
994 } else {
995 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
996 }
997
998 err = mmc_wait_for_cmd(host, &cmd, 5);
999 if (err)
1000 return err;
1001
1002 *stop_status = cmd.resp[0];
1003
1004 /* No need to check card status in case of READ. */
1005 if (rq_data_dir(req) == READ)
1006 return 0;
1007
1008 if (!mmc_host_is_spi(host) &&
1009 (*stop_status & R1_ERROR)) {
1010 pr_err("%s: %s: general error sending stop command, resp %#x\n",
1011 req->rq_disk->disk_name, __func__, *stop_status);
Linus Walleijc44d6ce2016-11-04 11:05:17 +01001012 *gen_err = true;
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001013 }
1014
1015 return card_busy_detect(card, timeout_ms, use_r1b_resp, req, gen_err);
1016}
1017
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301018#define ERR_NOMEDIUM 3
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001019#define ERR_RETRY 2
1020#define ERR_ABORT 1
1021#define ERR_CONTINUE 0
1022
1023static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
1024 bool status_valid, u32 status)
1025{
1026 switch (error) {
1027 case -EILSEQ:
1028 /* response crc error, retry the r/w cmd */
1029 pr_err("%s: %s sending %s command, card status %#x\n",
1030 req->rq_disk->disk_name, "response CRC error",
1031 name, status);
1032 return ERR_RETRY;
1033
1034 case -ETIMEDOUT:
1035 pr_err("%s: %s sending %s command, card status %#x\n",
1036 req->rq_disk->disk_name, "timed out", name, status);
1037
1038 /* If the status cmd initially failed, retry the r/w cmd */
Ken Sumrallcc4d04b2016-05-10 14:53:13 +05301039 if (!status_valid) {
1040 pr_err("%s: status not valid, retrying timeout\n",
1041 req->rq_disk->disk_name);
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001042 return ERR_RETRY;
Ken Sumrallcc4d04b2016-05-10 14:53:13 +05301043 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001044
1045 /*
1046 * If it was a r/w cmd crc error, or illegal command
1047 * (eg, issued in wrong state) then retry - we should
1048 * have corrected the state problem above.
1049 */
Ken Sumrallcc4d04b2016-05-10 14:53:13 +05301050 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND)) {
1051 pr_err("%s: command error, retrying timeout\n",
1052 req->rq_disk->disk_name);
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001053 return ERR_RETRY;
Ken Sumrallcc4d04b2016-05-10 14:53:13 +05301054 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001055
1056 /* Otherwise abort the command */
1057 return ERR_ABORT;
1058
1059 default:
1060 /* We don't understand the error code the driver gave us */
1061 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
1062 req->rq_disk->disk_name, error, status);
1063 return ERR_ABORT;
1064 }
1065}
1066
1067/*
1068 * Initial r/w and stop cmd error recovery.
1069 * We don't know whether the card received the r/w cmd or not, so try to
1070 * restore things back to a sane state. Essentially, we do this as follows:
1071 * - Obtain card status. If the first attempt to obtain card status fails,
1072 * the status word will reflect the failed status cmd, not the failed
1073 * r/w cmd. If we fail to obtain card status, it suggests we can no
1074 * longer communicate with the card.
1075 * - Check the card state. If the card received the cmd but there was a
1076 * transient problem with the response, it might still be in a data transfer
1077 * mode. Try to send it a stop command. If this fails, we can't recover.
1078 * - If the r/w cmd failed due to a response CRC error, it was probably
1079 * transient, so retry the cmd.
1080 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
1081 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
1082 * illegal cmd, retry.
1083 * Otherwise we don't understand what happened, so abort.
1084 */
1085static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
Linus Walleij2cc64582016-11-04 11:05:18 +01001086 struct mmc_blk_request *brq, bool *ecc_err, bool *gen_err)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001087{
1088 bool prev_cmd_status_valid = true;
1089 u32 status, stop_status = 0;
1090 int err, retry;
1091
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301092 if (mmc_card_removed(card))
1093 return ERR_NOMEDIUM;
1094
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001095 /*
1096 * Try to get card status which indicates both the card state
1097 * and why there was no response. If the first attempt fails,
1098 * we can't be sure the returned status is for the r/w command.
1099 */
1100 for (retry = 2; retry >= 0; retry--) {
Ulf Hansson2185bc22017-05-22 10:23:58 +02001101 err = __mmc_send_status(card, &status, 0);
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001102 if (!err)
1103 break;
1104
Adrian Hunter6f398ad2015-05-07 13:10:23 +03001105 /* Re-tune if needed */
1106 mmc_retune_recheck(card->host);
1107
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001108 prev_cmd_status_valid = false;
1109 pr_err("%s: error %d sending status command, %sing\n",
1110 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
1111 }
1112
1113 /* We couldn't get a response from the card. Give up. */
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301114 if (err) {
1115 /* Check if the card is removed */
1116 if (mmc_detect_card_removed(card->host))
1117 return ERR_NOMEDIUM;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001118 return ERR_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301119 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001120
Adrian Hunter67716322011-08-29 16:42:15 +03001121 /* Flag ECC errors */
1122 if ((status & R1_CARD_ECC_FAILED) ||
1123 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
1124 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
Linus Walleij2cc64582016-11-04 11:05:18 +01001125 *ecc_err = true;
Adrian Hunter67716322011-08-29 16:42:15 +03001126
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001127 /* Flag General errors */
1128 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ)
1129 if ((status & R1_ERROR) ||
1130 (brq->stop.resp[0] & R1_ERROR)) {
1131 pr_err("%s: %s: general error sending stop or status command, stop cmd response %#x, card status %#x\n",
1132 req->rq_disk->disk_name, __func__,
1133 brq->stop.resp[0], status);
Linus Walleijc44d6ce2016-11-04 11:05:17 +01001134 *gen_err = true;
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001135 }
1136
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001137 /*
1138 * Check the current card state. If it is in some data transfer
1139 * mode, tell it to stop (and hopefully transition back to TRAN.)
1140 */
1141 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
1142 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001143 err = send_stop(card,
1144 DIV_ROUND_UP(brq->data.timeout_ns, 1000000),
1145 req, gen_err, &stop_status);
1146 if (err) {
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001147 pr_err("%s: error %d sending stop command\n",
1148 req->rq_disk->disk_name, err);
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001149 /*
1150 * If the stop cmd also timed out, the card is probably
1151 * not present, so abort. Other errors are bad news too.
1152 */
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001153 return ERR_ABORT;
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001154 }
1155
Adrian Hunter67716322011-08-29 16:42:15 +03001156 if (stop_status & R1_CARD_ECC_FAILED)
Linus Walleij2cc64582016-11-04 11:05:18 +01001157 *ecc_err = true;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001158 }
1159
1160 /* Check for set block count errors */
1161 if (brq->sbc.error)
1162 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
1163 prev_cmd_status_valid, status);
1164
1165 /* Check for r/w command errors */
1166 if (brq->cmd.error)
1167 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
1168 prev_cmd_status_valid, status);
1169
Adrian Hunter67716322011-08-29 16:42:15 +03001170 /* Data errors */
1171 if (!brq->stop.error)
1172 return ERR_CONTINUE;
1173
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001174 /* Now for stop errors. These aren't fatal to the transfer. */
Johan Rudholm5e1344e2014-09-17 09:50:42 +02001175 pr_info("%s: error %d sending stop command, original cmd response %#x, card status %#x\n",
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001176 req->rq_disk->disk_name, brq->stop.error,
1177 brq->cmd.resp[0], status);
1178
1179 /*
1180 * Subsitute in our own stop status as this will give the error
1181 * state which happened during the execution of the r/w command.
1182 */
1183 if (stop_status) {
1184 brq->stop.resp[0] = stop_status;
1185 brq->stop.error = 0;
1186 }
1187 return ERR_CONTINUE;
1188}
1189
Adrian Hunter67716322011-08-29 16:42:15 +03001190static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
1191 int type)
1192{
1193 int err;
1194
1195 if (md->reset_done & type)
1196 return -EEXIST;
1197
1198 md->reset_done |= type;
1199 err = mmc_hw_reset(host);
1200 /* Ensure we switch back to the correct partition */
1201 if (err != -EOPNOTSUPP) {
Ulf Hanssonfc95e302014-10-06 14:34:09 +02001202 struct mmc_blk_data *main_md =
1203 dev_get_drvdata(&host->card->dev);
Adrian Hunter67716322011-08-29 16:42:15 +03001204 int part_err;
1205
1206 main_md->part_curr = main_md->part_type;
Linus Walleij1f797ed2017-08-20 23:39:10 +02001207 part_err = mmc_blk_part_switch(host->card, md->part_type);
Adrian Hunter67716322011-08-29 16:42:15 +03001208 if (part_err) {
1209 /*
1210 * We have failed to get back into the correct
1211 * partition, so we need to abort the whole request.
1212 */
1213 return -ENODEV;
1214 }
1215 }
1216 return err;
1217}
1218
1219static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
1220{
1221 md->reset_done &= ~type;
1222}
1223
Adrian Hunter81196972017-11-29 15:41:03 +02001224static void mmc_blk_end_request(struct request *req, blk_status_t error)
1225{
1226 if (req->mq_ctx)
1227 blk_mq_end_request(req, error);
1228 else
1229 blk_end_request_all(req, error);
1230}
1231
Linus Walleij5ec12392017-05-19 15:37:29 +02001232/*
1233 * The non-block commands come back from the block layer after it queued it and
1234 * processed it with all other requests and then they get issued in this
1235 * function.
1236 */
1237static void mmc_blk_issue_drv_op(struct mmc_queue *mq, struct request *req)
1238{
1239 struct mmc_queue_req *mq_rq;
1240 struct mmc_card *card = mq->card;
1241 struct mmc_blk_data *md = mq->blkdata;
Linus Walleij69f75992017-08-20 23:39:06 +02001242 struct mmc_blk_ioc_data **idata;
Linus Walleij97548572017-09-20 10:02:00 +02001243 bool rpmb_ioctl;
Linus Walleij627c3cc2017-08-20 23:39:08 +02001244 u8 **ext_csd;
1245 u32 status;
Linus Walleij0493f6f2017-05-19 15:37:30 +02001246 int ret;
Linus Walleij5ec12392017-05-19 15:37:29 +02001247 int i;
1248
1249 mq_rq = req_to_mmc_queue_req(req);
Linus Walleij97548572017-09-20 10:02:00 +02001250 rpmb_ioctl = (mq_rq->drv_op == MMC_DRV_OP_IOCTL_RPMB);
Linus Walleij5ec12392017-05-19 15:37:29 +02001251
1252 switch (mq_rq->drv_op) {
1253 case MMC_DRV_OP_IOCTL:
Linus Walleij97548572017-09-20 10:02:00 +02001254 case MMC_DRV_OP_IOCTL_RPMB:
Linus Walleij69f75992017-08-20 23:39:06 +02001255 idata = mq_rq->drv_op_data;
Geert Uytterhoeven7432b492017-07-05 17:09:41 +02001256 for (i = 0, ret = 0; i < mq_rq->ioc_count; i++) {
Linus Walleij69f75992017-08-20 23:39:06 +02001257 ret = __mmc_blk_ioctl_cmd(card, md, idata[i]);
Linus Walleij0493f6f2017-05-19 15:37:30 +02001258 if (ret)
Linus Walleij5ec12392017-05-19 15:37:29 +02001259 break;
1260 }
Linus Walleij5ec12392017-05-19 15:37:29 +02001261 /* Always switch back to main area after RPMB access */
Linus Walleij97548572017-09-20 10:02:00 +02001262 if (rpmb_ioctl)
1263 mmc_blk_part_switch(card, 0);
Linus Walleij0493f6f2017-05-19 15:37:30 +02001264 break;
1265 case MMC_DRV_OP_BOOT_WP:
1266 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP,
1267 card->ext_csd.boot_ro_lock |
1268 EXT_CSD_BOOT_WP_B_PWR_WP_EN,
1269 card->ext_csd.part_time);
1270 if (ret)
1271 pr_err("%s: Locking boot partition ro until next power on failed: %d\n",
1272 md->disk->disk_name, ret);
1273 else
1274 card->ext_csd.boot_ro_lock |=
1275 EXT_CSD_BOOT_WP_B_PWR_WP_EN;
Linus Walleij5ec12392017-05-19 15:37:29 +02001276 break;
Linus Walleij627c3cc2017-08-20 23:39:08 +02001277 case MMC_DRV_OP_GET_CARD_STATUS:
1278 ret = mmc_send_status(card, &status);
1279 if (!ret)
1280 ret = status;
1281 break;
1282 case MMC_DRV_OP_GET_EXT_CSD:
1283 ext_csd = mq_rq->drv_op_data;
1284 ret = mmc_get_ext_csd(card, ext_csd);
1285 break;
Linus Walleij5ec12392017-05-19 15:37:29 +02001286 default:
Linus Walleij0493f6f2017-05-19 15:37:30 +02001287 pr_err("%s: unknown driver specific operation\n",
1288 md->disk->disk_name);
1289 ret = -EINVAL;
Linus Walleij5ec12392017-05-19 15:37:29 +02001290 break;
1291 }
Linus Walleij0493f6f2017-05-19 15:37:30 +02001292 mq_rq->drv_op_result = ret;
Adrian Hunter81196972017-11-29 15:41:03 +02001293 mmc_blk_end_request(req, ret ? BLK_STS_IOERR : BLK_STS_OK);
Linus Walleij5ec12392017-05-19 15:37:29 +02001294}
1295
Linus Walleijdf061582017-01-24 11:17:57 +01001296static void mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
Adrian Hunterbd788c92010-08-11 14:17:47 -07001297{
Linus Walleij7db30282016-11-18 13:36:15 +01001298 struct mmc_blk_data *md = mq->blkdata;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001299 struct mmc_card *card = md->queue.card;
1300 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +03001301 int err = 0, type = MMC_BLK_DISCARD;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001302 blk_status_t status = BLK_STS_OK;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001303
Adrian Hunterbd788c92010-08-11 14:17:47 -07001304 if (!mmc_can_erase(card)) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001305 status = BLK_STS_NOTSUPP;
Geert Uytterhoeven8cb6ed12016-12-19 15:03:44 +01001306 goto fail;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001307 }
1308
1309 from = blk_rq_pos(req);
1310 nr = blk_rq_sectors(req);
1311
Kyungmin Parkb3bf9152011-10-18 09:34:04 +09001312 if (mmc_can_discard(card))
1313 arg = MMC_DISCARD_ARG;
1314 else if (mmc_can_trim(card))
Adrian Hunterbd788c92010-08-11 14:17:47 -07001315 arg = MMC_TRIM_ARG;
1316 else
1317 arg = MMC_ERASE_ARG;
Geert Uytterhoeven164b50b2016-12-19 15:03:45 +01001318 do {
1319 err = 0;
1320 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1321 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1322 INAND_CMD38_ARG_EXT_CSD,
1323 arg == MMC_TRIM_ARG ?
1324 INAND_CMD38_ARG_TRIM :
1325 INAND_CMD38_ARG_ERASE,
1326 0);
1327 }
1328 if (!err)
1329 err = mmc_erase(card, from, nr, arg);
1330 } while (err == -EIO && !mmc_blk_reset(md, card->host, type));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001331 if (err)
1332 status = BLK_STS_IOERR;
1333 else
Adrian Hunter67716322011-08-29 16:42:15 +03001334 mmc_blk_reset_success(md, type);
Geert Uytterhoeven8cb6ed12016-12-19 15:03:44 +01001335fail:
Adrian Hunter81196972017-11-29 15:41:03 +02001336 mmc_blk_end_request(req, status);
Adrian Hunterbd788c92010-08-11 14:17:47 -07001337}
1338
Linus Walleijdf061582017-01-24 11:17:57 +01001339static void mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
Adrian Hunter49804542010-08-11 14:17:50 -07001340 struct request *req)
1341{
Linus Walleij7db30282016-11-18 13:36:15 +01001342 struct mmc_blk_data *md = mq->blkdata;
Adrian Hunter49804542010-08-11 14:17:50 -07001343 struct mmc_card *card = md->queue.card;
Maya Erez775a9362013-04-18 15:41:55 +03001344 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +03001345 int err = 0, type = MMC_BLK_SECDISCARD;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001346 blk_status_t status = BLK_STS_OK;
Adrian Hunter49804542010-08-11 14:17:50 -07001347
Maya Erez775a9362013-04-18 15:41:55 +03001348 if (!(mmc_can_secure_erase_trim(card))) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001349 status = BLK_STS_NOTSUPP;
Adrian Hunter49804542010-08-11 14:17:50 -07001350 goto out;
1351 }
1352
1353 from = blk_rq_pos(req);
1354 nr = blk_rq_sectors(req);
1355
Maya Erez775a9362013-04-18 15:41:55 +03001356 if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
1357 arg = MMC_SECURE_TRIM1_ARG;
1358 else
1359 arg = MMC_SECURE_ERASE_ARG;
Adrian Hunter28302812012-04-05 14:45:48 +03001360
Adrian Hunter67716322011-08-29 16:42:15 +03001361retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001362 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1363 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1364 INAND_CMD38_ARG_EXT_CSD,
1365 arg == MMC_SECURE_TRIM1_ARG ?
1366 INAND_CMD38_ARG_SECTRIM1 :
1367 INAND_CMD38_ARG_SECERASE,
1368 0);
1369 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001370 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001371 }
Adrian Hunter28302812012-04-05 14:45:48 +03001372
Adrian Hunter49804542010-08-11 14:17:50 -07001373 err = mmc_erase(card, from, nr, arg);
Adrian Hunter28302812012-04-05 14:45:48 +03001374 if (err == -EIO)
1375 goto out_retry;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001376 if (err) {
1377 status = BLK_STS_IOERR;
Adrian Hunter28302812012-04-05 14:45:48 +03001378 goto out;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001379 }
Adrian Hunter28302812012-04-05 14:45:48 +03001380
1381 if (arg == MMC_SECURE_TRIM1_ARG) {
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001382 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1383 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1384 INAND_CMD38_ARG_EXT_CSD,
1385 INAND_CMD38_ARG_SECTRIM2,
1386 0);
1387 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001388 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001389 }
Adrian Hunter28302812012-04-05 14:45:48 +03001390
Adrian Hunter49804542010-08-11 14:17:50 -07001391 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Adrian Hunter28302812012-04-05 14:45:48 +03001392 if (err == -EIO)
1393 goto out_retry;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001394 if (err) {
1395 status = BLK_STS_IOERR;
Adrian Hunter28302812012-04-05 14:45:48 +03001396 goto out;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001397 }
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001398 }
Adrian Hunter28302812012-04-05 14:45:48 +03001399
Adrian Hunter28302812012-04-05 14:45:48 +03001400out_retry:
1401 if (err && !mmc_blk_reset(md, card->host, type))
Adrian Hunter67716322011-08-29 16:42:15 +03001402 goto retry;
1403 if (!err)
1404 mmc_blk_reset_success(md, type);
Adrian Hunter28302812012-04-05 14:45:48 +03001405out:
Adrian Hunter81196972017-11-29 15:41:03 +02001406 mmc_blk_end_request(req, status);
Adrian Hunter49804542010-08-11 14:17:50 -07001407}
1408
Linus Walleijdf061582017-01-24 11:17:57 +01001409static void mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001410{
Linus Walleij7db30282016-11-18 13:36:15 +01001411 struct mmc_blk_data *md = mq->blkdata;
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001412 struct mmc_card *card = md->queue.card;
1413 int ret = 0;
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001414
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001415 ret = mmc_flush_cache(card);
Adrian Hunter81196972017-11-29 15:41:03 +02001416 mmc_blk_end_request(req, ret ? BLK_STS_IOERR : BLK_STS_OK);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001417}
1418
1419/*
1420 * Reformat current write as a reliable write, supporting
1421 * both legacy and the enhanced reliable write MMC cards.
1422 * In each transfer we'll handle only as much as a single
1423 * reliable write can handle, thus finish the request in
1424 * partial completions.
1425 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001426static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
1427 struct mmc_card *card,
1428 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001429{
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001430 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
1431 /* Legacy mode imposes restrictions on transfers. */
Adrian Hunter9cb38f72017-03-13 14:36:40 +02001432 if (!IS_ALIGNED(blk_rq_pos(req), card->ext_csd.rel_sectors))
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001433 brq->data.blocks = 1;
1434
1435 if (brq->data.blocks > card->ext_csd.rel_sectors)
1436 brq->data.blocks = card->ext_csd.rel_sectors;
1437 else if (brq->data.blocks < card->ext_csd.rel_sectors)
1438 brq->data.blocks = 1;
1439 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001440}
1441
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001442#define CMD_ERRORS \
1443 (R1_OUT_OF_RANGE | /* Command argument out of range */ \
1444 R1_ADDRESS_ERROR | /* Misaligned address */ \
1445 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
1446 R1_WP_VIOLATION | /* Tried to write to protected block */ \
Wolfram Sanga04e6ba2017-04-08 22:20:05 +02001447 R1_CARD_ECC_FAILED | /* Card ECC failed */ \
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001448 R1_CC_ERROR | /* Card controller error */ \
1449 R1_ERROR) /* General/unknown error */
1450
Shawn Lind83c2db2017-08-18 09:16:08 +08001451static void mmc_blk_eval_resp_error(struct mmc_blk_request *brq)
Wolfram Sanga04e6ba2017-04-08 22:20:05 +02001452{
Shawn Lind83c2db2017-08-18 09:16:08 +08001453 u32 val;
Wolfram Sanga04e6ba2017-04-08 22:20:05 +02001454
Shawn Lind83c2db2017-08-18 09:16:08 +08001455 /*
1456 * Per the SD specification(physical layer version 4.10)[1],
1457 * section 4.3.3, it explicitly states that "When the last
1458 * block of user area is read using CMD18, the host should
1459 * ignore OUT_OF_RANGE error that may occur even the sequence
1460 * is correct". And JESD84-B51 for eMMC also has a similar
1461 * statement on section 6.8.3.
1462 *
1463 * Multiple block read/write could be done by either predefined
1464 * method, namely CMD23, or open-ending mode. For open-ending mode,
1465 * we should ignore the OUT_OF_RANGE error as it's normal behaviour.
1466 *
1467 * However the spec[1] doesn't tell us whether we should also
1468 * ignore that for predefined method. But per the spec[1], section
1469 * 4.15 Set Block Count Command, it says"If illegal block count
1470 * is set, out of range error will be indicated during read/write
1471 * operation (For example, data transfer is stopped at user area
1472 * boundary)." In another word, we could expect a out of range error
1473 * in the response for the following CMD18/25. And if argument of
1474 * CMD23 + the argument of CMD18/25 exceed the max number of blocks,
1475 * we could also expect to get a -ETIMEDOUT or any error number from
1476 * the host drivers due to missing data response(for write)/data(for
1477 * read), as the cards will stop the data transfer by itself per the
1478 * spec. So we only need to check R1_OUT_OF_RANGE for open-ending mode.
1479 */
1480
1481 if (!brq->stop.error) {
1482 bool oor_with_open_end;
1483 /* If there is no error yet, check R1 response */
1484
1485 val = brq->stop.resp[0] & CMD_ERRORS;
1486 oor_with_open_end = val & R1_OUT_OF_RANGE && !brq->mrq.sbc;
1487
1488 if (val && !oor_with_open_end)
1489 brq->stop.error = -EIO;
1490 }
Wolfram Sanga04e6ba2017-04-08 22:20:05 +02001491}
1492
Adrian Hunter81196972017-11-29 15:41:03 +02001493static enum mmc_blk_status __mmc_blk_err_check(struct mmc_card *card,
1494 struct mmc_queue_req *mq_mrq)
Per Forlind78d4a8a2011-07-01 18:55:30 +02001495{
Per Forlinee8a43a2011-07-01 18:55:33 +02001496 struct mmc_blk_request *brq = &mq_mrq->brq;
Linus Walleij67e69d52017-05-19 15:37:27 +02001497 struct request *req = mmc_queue_req_to_req(mq_mrq);
Adrian Hunterb8360a42015-05-07 13:10:24 +03001498 int need_retune = card->host->need_retune;
Linus Walleij2cc64582016-11-04 11:05:18 +01001499 bool ecc_err = false;
Linus Walleijc44d6ce2016-11-04 11:05:17 +01001500 bool gen_err = false;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001501
1502 /*
1503 * sbc.error indicates a problem with the set block count
1504 * command. No data will have been transferred.
1505 *
1506 * cmd.error indicates a problem with the r/w command. No
1507 * data will have been transferred.
1508 *
1509 * stop.error indicates a problem with the stop command. Data
1510 * may have been transferred, or may still be transferring.
1511 */
Shawn Lind83c2db2017-08-18 09:16:08 +08001512
1513 mmc_blk_eval_resp_error(brq);
1514
1515 if (brq->sbc.error || brq->cmd.error ||
1516 brq->stop.error || brq->data.error) {
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001517 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err, &gen_err)) {
Per Forlind78d4a8a2011-07-01 18:55:30 +02001518 case ERR_RETRY:
1519 return MMC_BLK_RETRY;
1520 case ERR_ABORT:
1521 return MMC_BLK_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301522 case ERR_NOMEDIUM:
1523 return MMC_BLK_NOMEDIUM;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001524 case ERR_CONTINUE:
1525 break;
1526 }
1527 }
1528
1529 /*
1530 * Check for errors relating to the execution of the
1531 * initial command - such as address errors. No data
1532 * has been transferred.
1533 */
1534 if (brq->cmd.resp[0] & CMD_ERRORS) {
1535 pr_err("%s: r/w command failed, status = %#x\n",
1536 req->rq_disk->disk_name, brq->cmd.resp[0]);
1537 return MMC_BLK_ABORT;
1538 }
1539
1540 /*
1541 * Everything else is either success, or a data error of some
1542 * kind. If it was a write, we may have transitioned to
1543 * program mode, which we have to wait for it to complete.
1544 */
1545 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001546 int err;
Trey Ramsay8fee4762012-11-16 09:31:41 -06001547
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001548 /* Check stop command response */
1549 if (brq->stop.resp[0] & R1_ERROR) {
1550 pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n",
1551 req->rq_disk->disk_name, __func__,
1552 brq->stop.resp[0]);
Linus Walleijc44d6ce2016-11-04 11:05:17 +01001553 gen_err = true;
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001554 }
1555
Ulf Hansson95a91292014-01-29 13:11:27 +01001556 err = card_busy_detect(card, MMC_BLK_TIMEOUT_MS, false, req,
1557 &gen_err);
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001558 if (err)
1559 return MMC_BLK_CMD_ERR;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001560 }
1561
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001562 /* if general error occurs, retry the write operation. */
1563 if (gen_err) {
1564 pr_warn("%s: retrying write for general error\n",
1565 req->rq_disk->disk_name);
1566 return MMC_BLK_RETRY;
1567 }
1568
Wolfram Sang9820a5b2017-04-08 22:20:06 +02001569 /* Some errors (ECC) are flagged on the next commmand, so check stop, too */
1570 if (brq->data.error || brq->stop.error) {
Adrian Hunterb8360a42015-05-07 13:10:24 +03001571 if (need_retune && !brq->retune_retry_done) {
Russell King09faf612016-01-29 09:44:00 +00001572 pr_debug("%s: retrying because a re-tune was needed\n",
1573 req->rq_disk->disk_name);
Adrian Hunterb8360a42015-05-07 13:10:24 +03001574 brq->retune_retry_done = 1;
1575 return MMC_BLK_RETRY;
1576 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02001577 pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n",
Wolfram Sang9820a5b2017-04-08 22:20:06 +02001578 req->rq_disk->disk_name, brq->data.error ?: brq->stop.error,
Per Forlind78d4a8a2011-07-01 18:55:30 +02001579 (unsigned)blk_rq_pos(req),
1580 (unsigned)blk_rq_sectors(req),
1581 brq->cmd.resp[0], brq->stop.resp[0]);
1582
1583 if (rq_data_dir(req) == READ) {
Adrian Hunter67716322011-08-29 16:42:15 +03001584 if (ecc_err)
1585 return MMC_BLK_ECC_ERR;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001586 return MMC_BLK_DATA_ERR;
1587 } else {
1588 return MMC_BLK_CMD_ERR;
1589 }
1590 }
1591
Adrian Hunter67716322011-08-29 16:42:15 +03001592 if (!brq->data.bytes_xfered)
1593 return MMC_BLK_RETRY;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001594
Adrian Hunter67716322011-08-29 16:42:15 +03001595 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1596 return MMC_BLK_PARTIAL;
1597
1598 return MMC_BLK_SUCCESS;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001599}
1600
Adrian Hunter81196972017-11-29 15:41:03 +02001601static enum mmc_blk_status mmc_blk_err_check(struct mmc_card *card,
1602 struct mmc_async_req *areq)
1603{
1604 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
1605 areq);
1606
1607 return __mmc_blk_err_check(card, mq_mrq);
1608}
1609
Adrian Hunterca5717f2017-03-13 14:36:41 +02001610static void mmc_blk_data_prep(struct mmc_queue *mq, struct mmc_queue_req *mqrq,
Adrian Hunterd3377c02017-09-22 15:36:55 +03001611 int disable_multi, bool *do_rel_wr_p,
1612 bool *do_data_tag_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613{
Adrian Hunterca5717f2017-03-13 14:36:41 +02001614 struct mmc_blk_data *md = mq->blkdata;
1615 struct mmc_card *card = md->queue.card;
Per Forlin54d49d72011-07-01 18:55:29 +02001616 struct mmc_blk_request *brq = &mqrq->brq;
Linus Walleij67e69d52017-05-19 15:37:27 +02001617 struct request *req = mmc_queue_req_to_req(mqrq);
Adrian Hunterd3377c02017-09-22 15:36:55 +03001618 bool do_rel_wr, do_data_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001620 /*
1621 * Reliable writes are used to implement Forced Unit Access and
Luca Porziod3df0462015-11-06 15:12:26 +00001622 * are supported only on MMCs.
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001623 */
Adrian Hunterd3377c02017-09-22 15:36:55 +03001624 do_rel_wr = (req->cmd_flags & REQ_FUA) &&
1625 rq_data_dir(req) == WRITE &&
1626 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001627
Per Forlin54d49d72011-07-01 18:55:29 +02001628 memset(brq, 0, sizeof(struct mmc_blk_request));
Adrian Hunterca5717f2017-03-13 14:36:41 +02001629
Per Forlin54d49d72011-07-01 18:55:29 +02001630 brq->mrq.data = &brq->data;
Adrian Hunter93482b32017-09-22 15:36:56 +03001631 brq->mrq.tag = req->tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Per Forlin54d49d72011-07-01 18:55:29 +02001633 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1634 brq->stop.arg = 0;
Adrian Hunterca5717f2017-03-13 14:36:41 +02001635
1636 if (rq_data_dir(req) == READ) {
1637 brq->data.flags = MMC_DATA_READ;
1638 brq->stop.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1639 } else {
1640 brq->data.flags = MMC_DATA_WRITE;
1641 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1642 }
1643
1644 brq->data.blksz = 512;
Per Forlin54d49d72011-07-01 18:55:29 +02001645 brq->data.blocks = blk_rq_sectors(req);
Adrian Hunter93482b32017-09-22 15:36:56 +03001646 brq->data.blk_addr = blk_rq_pos(req);
1647
1648 /*
1649 * The command queue supports 2 priorities: "high" (1) and "simple" (0).
1650 * The eMMC will give "high" priority tasks priority over "simple"
1651 * priority tasks. Here we always set "simple" priority by not setting
1652 * MMC_DATA_PRIO.
1653 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Per Forlin54d49d72011-07-01 18:55:29 +02001655 /*
1656 * The block layer doesn't support all sector count
1657 * restrictions, so we need to be prepared for too big
1658 * requests.
1659 */
1660 if (brq->data.blocks > card->host->max_blk_count)
1661 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001663 if (brq->data.blocks > 1) {
1664 /*
1665 * After a read error, we redo the request one sector
1666 * at a time in order to accurately determine which
1667 * sectors can be read successfully.
1668 */
1669 if (disable_multi)
1670 brq->data.blocks = 1;
1671
Kuninori Morimoto2e47e842014-09-02 19:08:53 -07001672 /*
1673 * Some controllers have HW issues while operating
1674 * in multiple I/O mode
1675 */
1676 if (card->host->ops->multi_io_quirk)
1677 brq->data.blocks = card->host->ops->multi_io_quirk(card,
1678 (rq_data_dir(req) == READ) ?
1679 MMC_DATA_READ : MMC_DATA_WRITE,
1680 brq->data.blocks);
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001681 }
Per Forlin54d49d72011-07-01 18:55:29 +02001682
Adrian Hunter93482b32017-09-22 15:36:56 +03001683 if (do_rel_wr) {
Adrian Hunterca5717f2017-03-13 14:36:41 +02001684 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter93482b32017-09-22 15:36:56 +03001685 brq->data.flags |= MMC_DATA_REL_WR;
1686 }
Adrian Hunterca5717f2017-03-13 14:36:41 +02001687
1688 /*
1689 * Data tag is used only during writing meta data to speed
1690 * up write and any subsequent read of this meta data
1691 */
Adrian Hunterd3377c02017-09-22 15:36:55 +03001692 do_data_tag = card->ext_csd.data_tag_unit_size &&
1693 (req->cmd_flags & REQ_META) &&
1694 (rq_data_dir(req) == WRITE) &&
1695 ((brq->data.blocks * brq->data.blksz) >=
1696 card->ext_csd.data_tag_unit_size);
Adrian Hunterca5717f2017-03-13 14:36:41 +02001697
Adrian Hunter93482b32017-09-22 15:36:56 +03001698 if (do_data_tag)
1699 brq->data.flags |= MMC_DATA_DAT_TAG;
1700
Adrian Hunterca5717f2017-03-13 14:36:41 +02001701 mmc_set_data_timeout(&brq->data, card);
1702
1703 brq->data.sg = mqrq->sg;
1704 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
1705
1706 /*
1707 * Adjust the sg list so it is the same size as the
1708 * request.
1709 */
1710 if (brq->data.blocks != blk_rq_sectors(req)) {
1711 int i, data_size = brq->data.blocks << 9;
1712 struct scatterlist *sg;
1713
1714 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1715 data_size -= sg->length;
1716 if (data_size <= 0) {
1717 sg->length += data_size;
1718 i++;
1719 break;
1720 }
1721 }
1722 brq->data.sg_len = i;
1723 }
1724
1725 mqrq->areq.mrq = &brq->mrq;
Adrian Hunterd3377c02017-09-22 15:36:55 +03001726
1727 if (do_rel_wr_p)
1728 *do_rel_wr_p = do_rel_wr;
1729
1730 if (do_data_tag_p)
1731 *do_data_tag_p = do_data_tag;
Adrian Hunterca5717f2017-03-13 14:36:41 +02001732}
1733
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02001734#define MMC_CQE_RETRIES 2
1735
1736static void mmc_blk_cqe_complete_rq(struct mmc_queue *mq, struct request *req)
1737{
1738 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
1739 struct mmc_request *mrq = &mqrq->brq.mrq;
1740 struct request_queue *q = req->q;
1741 struct mmc_host *host = mq->card->host;
1742 unsigned long flags;
1743 bool put_card;
1744 int err;
1745
1746 mmc_cqe_post_req(host, mrq);
1747
1748 if (mrq->cmd && mrq->cmd->error)
1749 err = mrq->cmd->error;
1750 else if (mrq->data && mrq->data->error)
1751 err = mrq->data->error;
1752 else
1753 err = 0;
1754
1755 if (err) {
1756 if (mqrq->retries++ < MMC_CQE_RETRIES)
1757 blk_mq_requeue_request(req, true);
1758 else
1759 blk_mq_end_request(req, BLK_STS_IOERR);
1760 } else if (mrq->data) {
1761 if (blk_update_request(req, BLK_STS_OK, mrq->data->bytes_xfered))
1762 blk_mq_requeue_request(req, true);
1763 else
1764 __blk_mq_end_request(req, BLK_STS_OK);
1765 } else {
1766 blk_mq_end_request(req, BLK_STS_OK);
1767 }
1768
1769 spin_lock_irqsave(q->queue_lock, flags);
1770
1771 mq->in_flight[mmc_issue_type(mq, req)] -= 1;
1772
1773 put_card = (mmc_tot_in_flight(mq) == 0);
1774
1775 mmc_cqe_check_busy(mq);
1776
1777 spin_unlock_irqrestore(q->queue_lock, flags);
1778
1779 if (!mq->cqe_busy)
1780 blk_mq_run_hw_queues(q, true);
1781
1782 if (put_card)
1783 mmc_put_card(mq->card, &mq->ctx);
1784}
1785
1786void mmc_blk_cqe_recovery(struct mmc_queue *mq)
1787{
1788 struct mmc_card *card = mq->card;
1789 struct mmc_host *host = card->host;
1790 int err;
1791
1792 pr_debug("%s: CQE recovery start\n", mmc_hostname(host));
1793
1794 err = mmc_cqe_recovery(host);
1795 if (err)
1796 mmc_blk_reset(mq->blkdata, host, MMC_BLK_CQE_RECOVERY);
1797 else
1798 mmc_blk_reset_success(mq->blkdata, MMC_BLK_CQE_RECOVERY);
1799
1800 pr_debug("%s: CQE recovery done\n", mmc_hostname(host));
1801}
1802
1803static void mmc_blk_cqe_req_done(struct mmc_request *mrq)
1804{
1805 struct mmc_queue_req *mqrq = container_of(mrq, struct mmc_queue_req,
1806 brq.mrq);
1807 struct request *req = mmc_queue_req_to_req(mqrq);
1808 struct request_queue *q = req->q;
1809 struct mmc_queue *mq = q->queuedata;
1810
1811 /*
1812 * Block layer timeouts race with completions which means the normal
1813 * completion path cannot be used during recovery.
1814 */
1815 if (mq->in_recovery)
1816 mmc_blk_cqe_complete_rq(mq, req);
1817 else
1818 blk_mq_complete_request(req);
1819}
1820
1821static int mmc_blk_cqe_start_req(struct mmc_host *host, struct mmc_request *mrq)
1822{
1823 mrq->done = mmc_blk_cqe_req_done;
1824 mrq->recovery_notifier = mmc_cqe_recovery_notifier;
1825
1826 return mmc_cqe_start_req(host, mrq);
1827}
1828
1829static struct mmc_request *mmc_blk_cqe_prep_dcmd(struct mmc_queue_req *mqrq,
1830 struct request *req)
1831{
1832 struct mmc_blk_request *brq = &mqrq->brq;
1833
1834 memset(brq, 0, sizeof(*brq));
1835
1836 brq->mrq.cmd = &brq->cmd;
1837 brq->mrq.tag = req->tag;
1838
1839 return &brq->mrq;
1840}
1841
1842static int mmc_blk_cqe_issue_flush(struct mmc_queue *mq, struct request *req)
1843{
1844 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
1845 struct mmc_request *mrq = mmc_blk_cqe_prep_dcmd(mqrq, req);
1846
1847 mrq->cmd->opcode = MMC_SWITCH;
1848 mrq->cmd->arg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
1849 (EXT_CSD_FLUSH_CACHE << 16) |
1850 (1 << 8) |
1851 EXT_CSD_CMD_SET_NORMAL;
1852 mrq->cmd->flags = MMC_CMD_AC | MMC_RSP_R1B;
1853
1854 return mmc_blk_cqe_start_req(mq->card->host, mrq);
1855}
1856
1857static int mmc_blk_cqe_issue_rw_rq(struct mmc_queue *mq, struct request *req)
1858{
1859 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
1860
1861 mmc_blk_data_prep(mq, mqrq, 0, NULL, NULL);
1862
1863 return mmc_blk_cqe_start_req(mq->card->host, &mqrq->brq.mrq);
1864}
1865
Adrian Hunterca5717f2017-03-13 14:36:41 +02001866static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1867 struct mmc_card *card,
1868 int disable_multi,
1869 struct mmc_queue *mq)
1870{
1871 u32 readcmd, writecmd;
1872 struct mmc_blk_request *brq = &mqrq->brq;
Linus Walleij67e69d52017-05-19 15:37:27 +02001873 struct request *req = mmc_queue_req_to_req(mqrq);
Adrian Hunterca5717f2017-03-13 14:36:41 +02001874 struct mmc_blk_data *md = mq->blkdata;
1875 bool do_rel_wr, do_data_tag;
1876
1877 mmc_blk_data_prep(mq, mqrq, disable_multi, &do_rel_wr, &do_data_tag);
1878
1879 brq->mrq.cmd = &brq->cmd;
1880
1881 brq->cmd.arg = blk_rq_pos(req);
1882 if (!mmc_card_blockaddr(card))
1883 brq->cmd.arg <<= 9;
1884 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1885
Per Forlin54d49d72011-07-01 18:55:29 +02001886 if (brq->data.blocks > 1 || do_rel_wr) {
1887 /* SPI multiblock writes terminate using a special
1888 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +02001889 */
Per Forlin54d49d72011-07-01 18:55:29 +02001890 if (!mmc_host_is_spi(card->host) ||
1891 rq_data_dir(req) == READ)
1892 brq->mrq.stop = &brq->stop;
1893 readcmd = MMC_READ_MULTIPLE_BLOCK;
1894 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1895 } else {
1896 brq->mrq.stop = NULL;
1897 readcmd = MMC_READ_SINGLE_BLOCK;
1898 writecmd = MMC_WRITE_BLOCK;
1899 }
Adrian Hunterca5717f2017-03-13 14:36:41 +02001900 brq->cmd.opcode = rq_data_dir(req) == READ ? readcmd : writecmd;
Saugata Das42659002011-12-21 13:09:17 +05301901
1902 /*
Per Forlin54d49d72011-07-01 18:55:29 +02001903 * Pre-defined multi-block transfers are preferable to
1904 * open ended-ones (and necessary for reliable writes).
1905 * However, it is not sufficient to just send CMD23,
1906 * and avoid the final CMD12, as on an error condition
1907 * CMD12 (stop) needs to be sent anyway. This, coupled
1908 * with Auto-CMD23 enhancements provided by some
1909 * hosts, means that the complexity of dealing
1910 * with this is best left to the host. If CMD23 is
1911 * supported by card and host, we'll fill sbc in and let
1912 * the host deal with handling it correctly. This means
1913 * that for hosts that don't expose MMC_CAP_CMD23, no
1914 * change of behavior will be observed.
1915 *
1916 * N.B: Some MMC cards experience perf degradation.
1917 * We'll avoid using CMD23-bounded multiblock writes for
1918 * these, while retaining features like reliable writes.
1919 */
Saugata Das42659002011-12-21 13:09:17 +05301920 if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) &&
1921 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) ||
1922 do_data_tag)) {
Per Forlin54d49d72011-07-01 18:55:29 +02001923 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1924 brq->sbc.arg = brq->data.blocks |
Saugata Das42659002011-12-21 13:09:17 +05301925 (do_rel_wr ? (1 << 31) : 0) |
1926 (do_data_tag ? (1 << 29) : 0);
Per Forlin54d49d72011-07-01 18:55:29 +02001927 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1928 brq->mrq.sbc = &brq->sbc;
1929 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001930
Linus Walleij74f5ba32017-02-01 13:47:55 +01001931 mqrq->areq.err_check = mmc_blk_err_check;
Per Forlin54d49d72011-07-01 18:55:29 +02001932}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Adrian Hunter81196972017-11-29 15:41:03 +02001934#define MMC_MAX_RETRIES 5
1935#define MMC_NO_RETRIES (MMC_MAX_RETRIES + 1)
1936
1937#define MMC_READ_SINGLE_RETRIES 2
1938
1939/* Single sector read during recovery */
1940static void mmc_blk_read_single(struct mmc_queue *mq, struct request *req)
1941{
1942 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
1943 struct mmc_request *mrq = &mqrq->brq.mrq;
1944 struct mmc_card *card = mq->card;
1945 struct mmc_host *host = card->host;
1946 blk_status_t error = BLK_STS_OK;
1947 int retries = 0;
1948
1949 do {
1950 u32 status;
1951 int err;
1952
1953 mmc_blk_rw_rq_prep(mqrq, card, 1, mq);
1954
1955 mmc_wait_for_req(host, mrq);
1956
1957 err = mmc_send_status(card, &status);
1958 if (err)
1959 goto error_exit;
1960
1961 if (!mmc_host_is_spi(host) &&
1962 R1_CURRENT_STATE(status) != R1_STATE_TRAN) {
1963 u32 stop_status = 0;
1964 bool gen_err = false;
1965
1966 err = send_stop(card,
1967 DIV_ROUND_UP(mrq->data->timeout_ns,
1968 1000000),
1969 req, &gen_err, &stop_status);
1970 if (err)
1971 goto error_exit;
1972 }
1973
1974 if (mrq->cmd->error && retries++ < MMC_READ_SINGLE_RETRIES)
1975 continue;
1976
1977 retries = 0;
1978
1979 if (mrq->cmd->error ||
1980 mrq->data->error ||
1981 (!mmc_host_is_spi(host) &&
1982 (mrq->cmd->resp[0] & CMD_ERRORS || status & CMD_ERRORS)))
1983 error = BLK_STS_IOERR;
1984 else
1985 error = BLK_STS_OK;
1986
1987 } while (blk_update_request(req, error, 512));
1988
1989 return;
1990
1991error_exit:
1992 mrq->data->bytes_xfered = 0;
1993 blk_update_request(req, BLK_STS_IOERR, 512);
1994 /* Let it try the remaining request again */
1995 if (mqrq->retries > MMC_MAX_RETRIES - 1)
1996 mqrq->retries = MMC_MAX_RETRIES - 1;
1997}
1998
1999static void mmc_blk_mq_rw_recovery(struct mmc_queue *mq, struct request *req)
2000{
2001 int type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
2002 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2003 struct mmc_blk_request *brq = &mqrq->brq;
2004 struct mmc_blk_data *md = mq->blkdata;
2005 struct mmc_card *card = mq->card;
2006 static enum mmc_blk_status status;
2007
2008 brq->retune_retry_done = mqrq->retries;
2009
2010 status = __mmc_blk_err_check(card, mqrq);
2011
2012 mmc_retune_release(card->host);
2013
2014 /*
2015 * Requests are completed by mmc_blk_mq_complete_rq() which sets simple
2016 * policy:
2017 * 1. A request that has transferred at least some data is considered
2018 * successful and will be requeued if there is remaining data to
2019 * transfer.
2020 * 2. Otherwise the number of retries is incremented and the request
2021 * will be requeued if there are remaining retries.
2022 * 3. Otherwise the request will be errored out.
2023 * That means mmc_blk_mq_complete_rq() is controlled by bytes_xfered and
2024 * mqrq->retries. So there are only 4 possible actions here:
2025 * 1. do not accept the bytes_xfered value i.e. set it to zero
2026 * 2. change mqrq->retries to determine the number of retries
2027 * 3. try to reset the card
2028 * 4. read one sector at a time
2029 */
2030 switch (status) {
2031 case MMC_BLK_SUCCESS:
2032 case MMC_BLK_PARTIAL:
2033 /* Reset success, and accept bytes_xfered */
2034 mmc_blk_reset_success(md, type);
2035 break;
2036 case MMC_BLK_CMD_ERR:
2037 /*
2038 * For SD cards, get bytes written, but do not accept
2039 * bytes_xfered if that fails. For MMC cards accept
2040 * bytes_xfered. Then try to reset. If reset fails then
2041 * error out the remaining request, otherwise retry
2042 * once (N.B mmc_blk_reset() will not succeed twice in a
2043 * row).
2044 */
2045 if (mmc_card_sd(card)) {
2046 u32 blocks;
2047 int err;
2048
2049 err = mmc_sd_num_wr_blocks(card, &blocks);
2050 if (err)
2051 brq->data.bytes_xfered = 0;
2052 else
2053 brq->data.bytes_xfered = blocks << 9;
2054 }
2055 if (mmc_blk_reset(md, card->host, type))
2056 mqrq->retries = MMC_NO_RETRIES;
2057 else
2058 mqrq->retries = MMC_MAX_RETRIES - 1;
2059 break;
2060 case MMC_BLK_RETRY:
2061 /*
2062 * Do not accept bytes_xfered, but retry up to 5 times,
2063 * otherwise same as abort.
2064 */
2065 brq->data.bytes_xfered = 0;
2066 if (mqrq->retries < MMC_MAX_RETRIES)
2067 break;
2068 /* Fall through */
2069 case MMC_BLK_ABORT:
2070 /*
2071 * Do not accept bytes_xfered, but try to reset. If
2072 * reset succeeds, try once more, otherwise error out
2073 * the request.
2074 */
2075 brq->data.bytes_xfered = 0;
2076 if (mmc_blk_reset(md, card->host, type))
2077 mqrq->retries = MMC_NO_RETRIES;
2078 else
2079 mqrq->retries = MMC_MAX_RETRIES - 1;
2080 break;
2081 case MMC_BLK_DATA_ERR: {
2082 int err;
2083
2084 /*
2085 * Do not accept bytes_xfered, but try to reset. If
2086 * reset succeeds, try once more. If reset fails with
2087 * ENODEV which means the partition is wrong, then error
2088 * out the request. Otherwise attempt to read one sector
2089 * at a time.
2090 */
2091 brq->data.bytes_xfered = 0;
2092 err = mmc_blk_reset(md, card->host, type);
2093 if (!err) {
2094 mqrq->retries = MMC_MAX_RETRIES - 1;
2095 break;
2096 }
2097 if (err == -ENODEV) {
2098 mqrq->retries = MMC_NO_RETRIES;
2099 break;
2100 }
2101 /* Fall through */
2102 }
2103 case MMC_BLK_ECC_ERR:
2104 /*
2105 * Do not accept bytes_xfered. If reading more than one
2106 * sector, try reading one sector at a time.
2107 */
2108 brq->data.bytes_xfered = 0;
2109 /* FIXME: Missing single sector read for large sector size */
2110 if (brq->data.blocks > 1 && !mmc_large_sector(card)) {
2111 /* Redo read one sector at a time */
2112 pr_warn("%s: retrying using single block read\n",
2113 req->rq_disk->disk_name);
2114 mmc_blk_read_single(mq, req);
2115 } else {
2116 mqrq->retries = MMC_NO_RETRIES;
2117 }
2118 break;
2119 case MMC_BLK_NOMEDIUM:
2120 /* Do not accept bytes_xfered. Error out the request */
2121 brq->data.bytes_xfered = 0;
2122 mqrq->retries = MMC_NO_RETRIES;
2123 break;
2124 default:
2125 /* Do not accept bytes_xfered. Error out the request */
2126 brq->data.bytes_xfered = 0;
2127 mqrq->retries = MMC_NO_RETRIES;
2128 pr_err("%s: Unhandled return value (%d)",
2129 req->rq_disk->disk_name, status);
2130 break;
2131 }
2132}
2133
Adrian Hunter10f21df42017-11-29 15:41:07 +02002134static inline bool mmc_blk_rq_error(struct mmc_blk_request *brq)
2135{
2136 mmc_blk_eval_resp_error(brq);
2137
2138 return brq->sbc.error || brq->cmd.error || brq->stop.error ||
2139 brq->data.error || brq->cmd.resp[0] & CMD_ERRORS;
2140}
2141
2142static inline void mmc_blk_rw_reset_success(struct mmc_queue *mq,
2143 struct request *req)
2144{
2145 int type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
2146
2147 mmc_blk_reset_success(mq->blkdata, type);
2148}
2149
Adrian Hunter81196972017-11-29 15:41:03 +02002150static void mmc_blk_mq_complete_rq(struct mmc_queue *mq, struct request *req)
2151{
2152 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2153 unsigned int nr_bytes = mqrq->brq.data.bytes_xfered;
2154
2155 if (nr_bytes) {
2156 if (blk_update_request(req, BLK_STS_OK, nr_bytes))
2157 blk_mq_requeue_request(req, true);
2158 else
2159 __blk_mq_end_request(req, BLK_STS_OK);
2160 } else if (!blk_rq_bytes(req)) {
2161 __blk_mq_end_request(req, BLK_STS_IOERR);
2162 } else if (mqrq->retries++ < MMC_MAX_RETRIES) {
2163 blk_mq_requeue_request(req, true);
2164 } else {
2165 if (mmc_card_removed(mq->card))
2166 req->rq_flags |= RQF_QUIET;
2167 blk_mq_end_request(req, BLK_STS_IOERR);
2168 }
2169}
2170
2171static bool mmc_blk_urgent_bkops_needed(struct mmc_queue *mq,
2172 struct mmc_queue_req *mqrq)
2173{
2174 return mmc_card_mmc(mq->card) && !mmc_host_is_spi(mq->card->host) &&
2175 (mqrq->brq.cmd.resp[0] & R1_EXCEPTION_EVENT ||
2176 mqrq->brq.stop.resp[0] & R1_EXCEPTION_EVENT);
2177}
2178
2179static void mmc_blk_urgent_bkops(struct mmc_queue *mq,
2180 struct mmc_queue_req *mqrq)
2181{
2182 if (mmc_blk_urgent_bkops_needed(mq, mqrq))
2183 mmc_start_bkops(mq->card, true);
2184}
2185
2186void mmc_blk_mq_complete(struct request *req)
2187{
2188 struct mmc_queue *mq = req->q->queuedata;
2189
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02002190 if (mq->use_cqe)
2191 mmc_blk_cqe_complete_rq(mq, req);
2192 else
2193 mmc_blk_mq_complete_rq(mq, req);
Adrian Hunter81196972017-11-29 15:41:03 +02002194}
2195
2196static void mmc_blk_mq_poll_completion(struct mmc_queue *mq,
2197 struct request *req)
2198{
2199 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2200
2201 mmc_blk_mq_rw_recovery(mq, req);
2202
2203 mmc_blk_urgent_bkops(mq, mqrq);
2204}
2205
2206static void mmc_blk_mq_dec_in_flight(struct mmc_queue *mq, struct request *req)
2207{
2208 struct request_queue *q = req->q;
2209 unsigned long flags;
2210 bool put_card;
2211
2212 spin_lock_irqsave(q->queue_lock, flags);
2213
2214 mq->in_flight[mmc_issue_type(mq, req)] -= 1;
2215
2216 put_card = (mmc_tot_in_flight(mq) == 0);
2217
2218 spin_unlock_irqrestore(q->queue_lock, flags);
2219
2220 if (put_card)
2221 mmc_put_card(mq->card, &mq->ctx);
2222}
2223
2224static void mmc_blk_mq_post_req(struct mmc_queue *mq, struct request *req)
2225{
2226 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2227 struct mmc_request *mrq = &mqrq->brq.mrq;
2228 struct mmc_host *host = mq->card->host;
2229
2230 mmc_post_req(host, mrq, 0);
2231
Adrian Hunter10f21df42017-11-29 15:41:07 +02002232 /*
2233 * Block layer timeouts race with completions which means the normal
2234 * completion path cannot be used during recovery.
2235 */
2236 if (mq->in_recovery)
2237 mmc_blk_mq_complete_rq(mq, req);
2238 else
2239 blk_mq_complete_request(req);
Adrian Hunter81196972017-11-29 15:41:03 +02002240
2241 mmc_blk_mq_dec_in_flight(mq, req);
2242}
2243
Adrian Hunter10f21df42017-11-29 15:41:07 +02002244void mmc_blk_mq_recovery(struct mmc_queue *mq)
2245{
2246 struct request *req = mq->recovery_req;
2247 struct mmc_host *host = mq->card->host;
2248 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2249
2250 mq->recovery_req = NULL;
2251 mq->rw_wait = false;
2252
2253 if (mmc_blk_rq_error(&mqrq->brq)) {
2254 mmc_retune_hold_now(host);
2255 mmc_blk_mq_rw_recovery(mq, req);
2256 }
2257
2258 mmc_blk_urgent_bkops(mq, mqrq);
2259
2260 mmc_blk_mq_post_req(mq, req);
2261}
2262
Adrian Hunter81196972017-11-29 15:41:03 +02002263static void mmc_blk_mq_complete_prev_req(struct mmc_queue *mq,
2264 struct request **prev_req)
2265{
Adrian Hunter10f21df42017-11-29 15:41:07 +02002266 if (mmc_host_done_complete(mq->card->host))
2267 return;
2268
Adrian Hunter81196972017-11-29 15:41:03 +02002269 mutex_lock(&mq->complete_lock);
2270
2271 if (!mq->complete_req)
2272 goto out_unlock;
2273
2274 mmc_blk_mq_poll_completion(mq, mq->complete_req);
2275
2276 if (prev_req)
2277 *prev_req = mq->complete_req;
2278 else
2279 mmc_blk_mq_post_req(mq, mq->complete_req);
2280
2281 mq->complete_req = NULL;
2282
2283out_unlock:
2284 mutex_unlock(&mq->complete_lock);
2285}
2286
2287void mmc_blk_mq_complete_work(struct work_struct *work)
2288{
2289 struct mmc_queue *mq = container_of(work, struct mmc_queue,
2290 complete_work);
2291
2292 mmc_blk_mq_complete_prev_req(mq, NULL);
2293}
2294
2295static void mmc_blk_mq_req_done(struct mmc_request *mrq)
2296{
2297 struct mmc_queue_req *mqrq = container_of(mrq, struct mmc_queue_req,
2298 brq.mrq);
2299 struct request *req = mmc_queue_req_to_req(mqrq);
2300 struct request_queue *q = req->q;
2301 struct mmc_queue *mq = q->queuedata;
Adrian Hunter10f21df42017-11-29 15:41:07 +02002302 struct mmc_host *host = mq->card->host;
Adrian Hunter81196972017-11-29 15:41:03 +02002303 unsigned long flags;
Adrian Hunter81196972017-11-29 15:41:03 +02002304
Adrian Hunter10f21df42017-11-29 15:41:07 +02002305 if (!mmc_host_done_complete(host)) {
2306 bool waiting;
Adrian Hunter81196972017-11-29 15:41:03 +02002307
Adrian Hunter10f21df42017-11-29 15:41:07 +02002308 /*
2309 * We cannot complete the request in this context, so record
2310 * that there is a request to complete, and that a following
2311 * request does not need to wait (although it does need to
2312 * complete complete_req first).
2313 */
2314 spin_lock_irqsave(q->queue_lock, flags);
2315 mq->complete_req = req;
2316 mq->rw_wait = false;
2317 waiting = mq->waiting;
2318 spin_unlock_irqrestore(q->queue_lock, flags);
2319
2320 /*
2321 * If 'waiting' then the waiting task will complete this
2322 * request, otherwise queue a work to do it. Note that
2323 * complete_work may still race with the dispatch of a following
2324 * request.
2325 */
2326 if (waiting)
2327 wake_up(&mq->wait);
2328 else
2329 kblockd_schedule_work(&mq->complete_work);
2330
2331 return;
2332 }
2333
2334 /* Take the recovery path for errors or urgent background operations */
2335 if (mmc_blk_rq_error(&mqrq->brq) ||
2336 mmc_blk_urgent_bkops_needed(mq, mqrq)) {
2337 spin_lock_irqsave(q->queue_lock, flags);
2338 mq->recovery_needed = true;
2339 mq->recovery_req = req;
2340 spin_unlock_irqrestore(q->queue_lock, flags);
Adrian Hunter81196972017-11-29 15:41:03 +02002341 wake_up(&mq->wait);
Adrian Hunter10f21df42017-11-29 15:41:07 +02002342 schedule_work(&mq->recovery_work);
2343 return;
2344 }
2345
2346 mmc_blk_rw_reset_success(mq, req);
2347
2348 mq->rw_wait = false;
2349 wake_up(&mq->wait);
2350
2351 mmc_blk_mq_post_req(mq, req);
Adrian Hunter81196972017-11-29 15:41:03 +02002352}
2353
2354static bool mmc_blk_rw_wait_cond(struct mmc_queue *mq, int *err)
2355{
2356 struct request_queue *q = mq->queue;
2357 unsigned long flags;
2358 bool done;
2359
2360 /*
Adrian Hunter10f21df42017-11-29 15:41:07 +02002361 * Wait while there is another request in progress, but not if recovery
2362 * is needed. Also indicate whether there is a request waiting to start.
Adrian Hunter81196972017-11-29 15:41:03 +02002363 */
2364 spin_lock_irqsave(q->queue_lock, flags);
Adrian Hunter10f21df42017-11-29 15:41:07 +02002365 if (mq->recovery_needed) {
2366 *err = -EBUSY;
2367 done = true;
2368 } else {
2369 done = !mq->rw_wait;
2370 }
Adrian Hunter81196972017-11-29 15:41:03 +02002371 mq->waiting = !done;
2372 spin_unlock_irqrestore(q->queue_lock, flags);
2373
2374 return done;
2375}
2376
2377static int mmc_blk_rw_wait(struct mmc_queue *mq, struct request **prev_req)
2378{
2379 int err = 0;
2380
2381 wait_event(mq->wait, mmc_blk_rw_wait_cond(mq, &err));
2382
2383 /* Always complete the previous request if there is one */
2384 mmc_blk_mq_complete_prev_req(mq, prev_req);
2385
2386 return err;
2387}
2388
2389static int mmc_blk_mq_issue_rw_rq(struct mmc_queue *mq,
2390 struct request *req)
2391{
2392 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2393 struct mmc_host *host = mq->card->host;
2394 struct request *prev_req = NULL;
2395 int err = 0;
2396
2397 mmc_blk_rw_rq_prep(mqrq, mq->card, 0, mq);
2398
2399 mqrq->brq.mrq.done = mmc_blk_mq_req_done;
2400
2401 mmc_pre_req(host, &mqrq->brq.mrq);
2402
2403 err = mmc_blk_rw_wait(mq, &prev_req);
2404 if (err)
2405 goto out_post_req;
2406
2407 mq->rw_wait = true;
2408
2409 err = mmc_start_request(host, &mqrq->brq.mrq);
2410
2411 if (prev_req)
2412 mmc_blk_mq_post_req(mq, prev_req);
2413
Adrian Hunter10f21df42017-11-29 15:41:07 +02002414 if (err)
Adrian Hunter81196972017-11-29 15:41:03 +02002415 mq->rw_wait = false;
Adrian Hunter10f21df42017-11-29 15:41:07 +02002416
2417 /* Release re-tuning here where there is no synchronization required */
2418 if (err || mmc_host_done_complete(host))
Adrian Hunter81196972017-11-29 15:41:03 +02002419 mmc_retune_release(host);
Adrian Hunter81196972017-11-29 15:41:03 +02002420
2421out_post_req:
2422 if (err)
2423 mmc_post_req(host, &mqrq->brq.mrq, err);
2424
2425 return err;
2426}
2427
2428static int mmc_blk_wait_for_idle(struct mmc_queue *mq, struct mmc_host *host)
2429{
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02002430 if (mq->use_cqe)
2431 return host->cqe_ops->cqe_wait_for_idle(host);
2432
Adrian Hunter81196972017-11-29 15:41:03 +02002433 return mmc_blk_rw_wait(mq, NULL);
2434}
2435
2436enum mmc_issued mmc_blk_mq_issue_rq(struct mmc_queue *mq, struct request *req)
2437{
2438 struct mmc_blk_data *md = mq->blkdata;
2439 struct mmc_card *card = md->queue.card;
2440 struct mmc_host *host = card->host;
2441 int ret;
2442
2443 ret = mmc_blk_part_switch(card, md->part_type);
2444 if (ret)
2445 return MMC_REQ_FAILED_TO_START;
2446
2447 switch (mmc_issue_type(mq, req)) {
2448 case MMC_ISSUE_SYNC:
2449 ret = mmc_blk_wait_for_idle(mq, host);
2450 if (ret)
2451 return MMC_REQ_BUSY;
2452 switch (req_op(req)) {
2453 case REQ_OP_DRV_IN:
2454 case REQ_OP_DRV_OUT:
2455 mmc_blk_issue_drv_op(mq, req);
2456 break;
2457 case REQ_OP_DISCARD:
2458 mmc_blk_issue_discard_rq(mq, req);
2459 break;
2460 case REQ_OP_SECURE_ERASE:
2461 mmc_blk_issue_secdiscard_rq(mq, req);
2462 break;
2463 case REQ_OP_FLUSH:
2464 mmc_blk_issue_flush(mq, req);
2465 break;
2466 default:
2467 WARN_ON_ONCE(1);
2468 return MMC_REQ_FAILED_TO_START;
2469 }
2470 return MMC_REQ_FINISHED;
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02002471 case MMC_ISSUE_DCMD:
Adrian Hunter81196972017-11-29 15:41:03 +02002472 case MMC_ISSUE_ASYNC:
2473 switch (req_op(req)) {
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02002474 case REQ_OP_FLUSH:
2475 ret = mmc_blk_cqe_issue_flush(mq, req);
2476 break;
Adrian Hunter81196972017-11-29 15:41:03 +02002477 case REQ_OP_READ:
2478 case REQ_OP_WRITE:
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02002479 if (mq->use_cqe)
2480 ret = mmc_blk_cqe_issue_rw_rq(mq, req);
2481 else
2482 ret = mmc_blk_mq_issue_rw_rq(mq, req);
Adrian Hunter81196972017-11-29 15:41:03 +02002483 break;
2484 default:
2485 WARN_ON_ONCE(1);
2486 ret = -EINVAL;
2487 }
2488 if (!ret)
2489 return MMC_REQ_STARTED;
2490 return ret == -EBUSY ? MMC_REQ_BUSY : MMC_REQ_FAILED_TO_START;
2491 default:
2492 WARN_ON_ONCE(1);
2493 return MMC_REQ_FAILED_TO_START;
2494 }
2495}
2496
Linus Walleij0e65f102017-02-01 13:47:58 +01002497static bool mmc_blk_rw_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
2498 struct mmc_blk_request *brq, struct request *req,
2499 bool old_req_pending)
Adrian Hunter67716322011-08-29 16:42:15 +03002500{
Linus Walleij0e65f102017-02-01 13:47:58 +01002501 bool req_pending;
2502
Adrian Hunter67716322011-08-29 16:42:15 +03002503 /*
2504 * If this is an SD card and we're writing, we can first
2505 * mark the known good sectors as ok.
2506 *
2507 * If the card is not SD, we can still ok written sectors
2508 * as reported by the controller (which might be less than
2509 * the real number of written sectors, but never more).
2510 */
2511 if (mmc_card_sd(card)) {
2512 u32 blocks;
Linus Walleij169f03a2017-02-01 13:47:57 +01002513 int err;
Adrian Hunter67716322011-08-29 16:42:15 +03002514
Linus Walleij169f03a2017-02-01 13:47:57 +01002515 err = mmc_sd_num_wr_blocks(card, &blocks);
Linus Walleij0e65f102017-02-01 13:47:58 +01002516 if (err)
2517 req_pending = old_req_pending;
2518 else
Adrian Huntera7c17d82017-08-25 15:43:45 +03002519 req_pending = blk_end_request(req, BLK_STS_OK, blocks << 9);
Adrian Hunter5dd784d22016-11-29 12:09:08 +02002520 } else {
Adrian Huntera7c17d82017-08-25 15:43:45 +03002521 req_pending = blk_end_request(req, BLK_STS_OK, brq->data.bytes_xfered);
Adrian Hunter67716322011-08-29 16:42:15 +03002522 }
Linus Walleij0e65f102017-02-01 13:47:58 +01002523 return req_pending;
Adrian Hunter67716322011-08-29 16:42:15 +03002524}
2525
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002526static void mmc_blk_rw_cmd_abort(struct mmc_queue *mq, struct mmc_card *card,
2527 struct request *req,
2528 struct mmc_queue_req *mqrq)
Linus Walleij4e1f7802017-01-24 11:17:52 +01002529{
Linus Walleij4e1f7802017-01-24 11:17:52 +01002530 if (mmc_card_removed(card))
2531 req->rq_flags |= RQF_QUIET;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002532 while (blk_end_request(req, BLK_STS_IOERR, blk_rq_cur_bytes(req)));
Linus Walleij304419d2017-05-18 11:29:32 +02002533 mq->qcnt--;
Linus Walleij4e1f7802017-01-24 11:17:52 +01002534}
2535
Linus Walleijb2928e12017-02-01 13:47:54 +01002536/**
2537 * mmc_blk_rw_try_restart() - tries to restart the current async request
2538 * @mq: the queue with the card and host to restart
2539 * @req: a new request that want to be started after the current one
2540 */
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002541static void mmc_blk_rw_try_restart(struct mmc_queue *mq, struct request *req,
2542 struct mmc_queue_req *mqrq)
Linus Walleijefb5a052017-01-24 11:17:53 +01002543{
2544 if (!req)
2545 return;
2546
Linus Walleijb2928e12017-02-01 13:47:54 +01002547 /*
2548 * If the card was removed, just cancel everything and return.
2549 */
2550 if (mmc_card_removed(mq->card)) {
Linus Walleijefb5a052017-01-24 11:17:53 +01002551 req->rq_flags |= RQF_QUIET;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002552 blk_end_request_all(req, BLK_STS_IOERR);
Linus Walleij304419d2017-05-18 11:29:32 +02002553 mq->qcnt--; /* FIXME: just set to 0? */
Linus Walleijb2928e12017-02-01 13:47:54 +01002554 return;
Linus Walleijefb5a052017-01-24 11:17:53 +01002555 }
Linus Walleijb2928e12017-02-01 13:47:54 +01002556 /* Else proceed and try to restart the current async request */
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002557 mmc_blk_rw_rq_prep(mqrq, mq->card, 0, mq);
2558 mmc_start_areq(mq->card->host, &mqrq->areq, NULL);
Linus Walleijefb5a052017-01-24 11:17:53 +01002559}
2560
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002561static void mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *new_req)
Per Forlin54d49d72011-07-01 18:55:29 +02002562{
Linus Walleij7db30282016-11-18 13:36:15 +01002563 struct mmc_blk_data *md = mq->blkdata;
Per Forlin54d49d72011-07-01 18:55:29 +02002564 struct mmc_card *card = md->queue.card;
Adrian Hunter5be80372016-11-29 12:09:09 +02002565 struct mmc_blk_request *brq;
Linus Walleij0e65f102017-02-01 13:47:58 +01002566 int disable_multi = 0, retry = 0, type, retune_retry_done = 0;
Per Forlind78d4a8a2011-07-01 18:55:30 +02002567 enum mmc_blk_status status;
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002568 struct mmc_queue_req *mqrq_cur = NULL;
Per Forlinee8a43a2011-07-01 18:55:33 +02002569 struct mmc_queue_req *mq_rq;
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002570 struct request *old_req;
Linus Walleij7d552a42017-01-24 11:17:56 +01002571 struct mmc_async_req *new_areq;
2572 struct mmc_async_req *old_areq;
Linus Walleij0e65f102017-02-01 13:47:58 +01002573 bool req_pending = true;
Per Forlinee8a43a2011-07-01 18:55:33 +02002574
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002575 if (new_req) {
Linus Walleij304419d2017-05-18 11:29:32 +02002576 mqrq_cur = req_to_mmc_queue_req(new_req);
2577 mq->qcnt++;
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002578 }
2579
2580 if (!mq->qcnt)
Linus Walleijdf061582017-01-24 11:17:57 +01002581 return;
Per Forlin54d49d72011-07-01 18:55:29 +02002582
2583 do {
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002584 if (new_req) {
Saugata Dasa5075eb2012-05-17 16:32:21 +05302585 /*
2586 * When 4KB native sector is enabled, only 8 blocks
2587 * multiple read or write is allowed
2588 */
Yuan, Juntaoe87c8562016-05-13 07:59:24 +00002589 if (mmc_large_sector(card) &&
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002590 !IS_ALIGNED(blk_rq_sectors(new_req), 8)) {
Saugata Dasa5075eb2012-05-17 16:32:21 +05302591 pr_err("%s: Transfer size is not 4KB sector size aligned\n",
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002592 new_req->rq_disk->disk_name);
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002593 mmc_blk_rw_cmd_abort(mq, card, new_req, mqrq_cur);
Linus Walleijdf061582017-01-24 11:17:57 +01002594 return;
Saugata Dasa5075eb2012-05-17 16:32:21 +05302595 }
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002596
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002597 mmc_blk_rw_rq_prep(mqrq_cur, card, 0, mq);
2598 new_areq = &mqrq_cur->areq;
Per Forlinee8a43a2011-07-01 18:55:33 +02002599 } else
Linus Walleij7d552a42017-01-24 11:17:56 +01002600 new_areq = NULL;
2601
Linus Walleijc3399ef2017-02-01 13:47:53 +01002602 old_areq = mmc_start_areq(card->host, new_areq, &status);
Linus Walleij7d552a42017-01-24 11:17:56 +01002603 if (!old_areq) {
Linus Walleijda0dbaf2017-01-24 11:17:55 +01002604 /*
2605 * We have just put the first request into the pipeline
2606 * and there is nothing more to do until it is
2607 * complete.
2608 */
Linus Walleijdf061582017-01-24 11:17:57 +01002609 return;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002610 }
Pierre Ossman98ccf142007-05-12 00:26:16 +02002611
Linus Walleijda0dbaf2017-01-24 11:17:55 +01002612 /*
2613 * An asynchronous request has been completed and we proceed
2614 * to handle the result of it.
2615 */
Linus Walleij74f5ba32017-02-01 13:47:55 +01002616 mq_rq = container_of(old_areq, struct mmc_queue_req, areq);
Per Forlinee8a43a2011-07-01 18:55:33 +02002617 brq = &mq_rq->brq;
Linus Walleij67e69d52017-05-19 15:37:27 +02002618 old_req = mmc_queue_req_to_req(mq_rq);
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002619 type = rq_data_dir(old_req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
Pierre Ossman98ccf142007-05-12 00:26:16 +02002620
Per Forlind78d4a8a2011-07-01 18:55:30 +02002621 switch (status) {
2622 case MMC_BLK_SUCCESS:
2623 case MMC_BLK_PARTIAL:
2624 /*
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002625 * Reset success, and accept bytes_xfered. For
2626 * MMC_BLK_PARTIAL re-submit the remaining request. For
2627 * MMC_BLK_SUCCESS error out the remaining request (it
2628 * could not be re-submitted anyway if a next request
2629 * had already begun).
Per Forlind78d4a8a2011-07-01 18:55:30 +02002630 */
Adrian Hunter67716322011-08-29 16:42:15 +03002631 mmc_blk_reset_success(md, type);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002632
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002633 req_pending = blk_end_request(old_req, BLK_STS_OK,
Linus Walleij0e65f102017-02-01 13:47:58 +01002634 brq->data.bytes_xfered);
Adrian Hunter67716322011-08-29 16:42:15 +03002635 /*
2636 * If the blk_end_request function returns non-zero even
2637 * though all data has been transferred and no errors
2638 * were returned by the host controller, it's a bug.
2639 */
Linus Walleij0e65f102017-02-01 13:47:58 +01002640 if (status == MMC_BLK_SUCCESS && req_pending) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302641 pr_err("%s BUG rq_tot %d d_xfer %d\n",
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002642 __func__, blk_rq_bytes(old_req),
Per Forlinee8a43a2011-07-01 18:55:33 +02002643 brq->data.bytes_xfered);
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002644 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
Linus Walleijdf061582017-01-24 11:17:57 +01002645 return;
Per Forlinee8a43a2011-07-01 18:55:33 +02002646 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02002647 break;
2648 case MMC_BLK_CMD_ERR:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002649 /*
2650 * For SD cards, get bytes written, but do not accept
2651 * bytes_xfered if that fails. For MMC cards accept
2652 * bytes_xfered. Then try to reset. If reset fails then
2653 * error out the remaining request, otherwise retry
2654 * once (N.B mmc_blk_reset() will not succeed twice in a
2655 * row).
2656 */
Linus Walleij0e65f102017-02-01 13:47:58 +01002657 req_pending = mmc_blk_rw_cmd_err(md, card, brq, old_req, req_pending);
Linus Walleijdb435502017-02-01 13:47:51 +01002658 if (mmc_blk_reset(md, card->host, type)) {
Adrian Hunter8ecc3442017-03-13 14:36:33 +02002659 if (req_pending)
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002660 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
2661 else
Linus Walleij304419d2017-05-18 11:29:32 +02002662 mq->qcnt--;
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002663 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002664 return;
2665 }
Linus Walleij0e65f102017-02-01 13:47:58 +01002666 if (!req_pending) {
Linus Walleij304419d2017-05-18 11:29:32 +02002667 mq->qcnt--;
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002668 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002669 return;
2670 }
Ding Wang29535f72015-05-18 20:14:15 +08002671 break;
Per Forlind78d4a8a2011-07-01 18:55:30 +02002672 case MMC_BLK_RETRY:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002673 /*
2674 * Do not accept bytes_xfered, but retry up to 5 times,
2675 * otherwise same as abort.
2676 */
Adrian Hunterb8360a42015-05-07 13:10:24 +03002677 retune_retry_done = brq->retune_retry_done;
Per Forlind78d4a8a2011-07-01 18:55:30 +02002678 if (retry++ < 5)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01002679 break;
Adrian Hunter67716322011-08-29 16:42:15 +03002680 /* Fall through */
Per Forlind78d4a8a2011-07-01 18:55:30 +02002681 case MMC_BLK_ABORT:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002682 /*
2683 * Do not accept bytes_xfered, but try to reset. If
2684 * reset succeeds, try once more, otherwise error out
2685 * the request.
2686 */
Adrian Hunter67716322011-08-29 16:42:15 +03002687 if (!mmc_blk_reset(md, card->host, type))
2688 break;
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002689 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002690 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002691 return;
Adrian Hunter67716322011-08-29 16:42:15 +03002692 case MMC_BLK_DATA_ERR: {
2693 int err;
2694
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002695 /*
2696 * Do not accept bytes_xfered, but try to reset. If
2697 * reset succeeds, try once more. If reset fails with
2698 * ENODEV which means the partition is wrong, then error
2699 * out the request. Otherwise attempt to read one sector
2700 * at a time.
2701 */
Adrian Hunter67716322011-08-29 16:42:15 +03002702 err = mmc_blk_reset(md, card->host, type);
2703 if (!err)
2704 break;
Linus Walleijdb435502017-02-01 13:47:51 +01002705 if (err == -ENODEV) {
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002706 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002707 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002708 return;
2709 }
Adrian Hunter67716322011-08-29 16:42:15 +03002710 /* Fall through */
2711 }
2712 case MMC_BLK_ECC_ERR:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002713 /*
2714 * Do not accept bytes_xfered. If reading more than one
2715 * sector, try reading one sector at a time.
2716 */
Adrian Hunter67716322011-08-29 16:42:15 +03002717 if (brq->data.blocks > 1) {
2718 /* Redo read one sector at a time */
Joe Perches66061102014-09-12 14:56:56 -07002719 pr_warn("%s: retrying using single block read\n",
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002720 old_req->rq_disk->disk_name);
Adrian Hunter67716322011-08-29 16:42:15 +03002721 disable_multi = 1;
2722 break;
2723 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02002724 /*
2725 * After an error, we redo I/O one sector at a
2726 * time, so we only reach here after trying to
2727 * read a single sector.
2728 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002729 req_pending = blk_end_request(old_req, BLK_STS_IOERR,
Linus Walleij0e65f102017-02-01 13:47:58 +01002730 brq->data.blksz);
2731 if (!req_pending) {
Linus Walleij304419d2017-05-18 11:29:32 +02002732 mq->qcnt--;
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002733 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002734 return;
2735 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02002736 break;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05302737 case MMC_BLK_NOMEDIUM:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002738 /* Do not accept bytes_xfered. Error out the request */
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002739 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002740 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002741 return;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002742 default:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002743 /* Do not accept bytes_xfered. Error out the request */
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002744 pr_err("%s: Unhandled return value (%d)",
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002745 old_req->rq_disk->disk_name, status);
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002746 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002747 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002748 return;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01002749 }
2750
Linus Walleij0e65f102017-02-01 13:47:58 +01002751 if (req_pending) {
Linus Walleij03d640a2016-11-25 10:35:00 +01002752 /*
2753 * In case of a incomplete request
2754 * prepare it again and resend.
2755 */
2756 mmc_blk_rw_rq_prep(mq_rq, card,
2757 disable_multi, mq);
Linus Walleijc3399ef2017-02-01 13:47:53 +01002758 mmc_start_areq(card->host,
Linus Walleij74f5ba32017-02-01 13:47:55 +01002759 &mq_rq->areq, NULL);
Adrian Hunterb8360a42015-05-07 13:10:24 +03002760 mq_rq->brq.retune_retry_done = retune_retry_done;
Per Forlinee8a43a2011-07-01 18:55:33 +02002761 }
Linus Walleij0e65f102017-02-01 13:47:58 +01002762 } while (req_pending);
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002763
Linus Walleij304419d2017-05-18 11:29:32 +02002764 mq->qcnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765}
2766
Linus Walleijdf061582017-01-24 11:17:57 +01002767void mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
Adrian Hunterbd788c92010-08-11 14:17:47 -07002768{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002769 int ret;
Linus Walleij7db30282016-11-18 13:36:15 +01002770 struct mmc_blk_data *md = mq->blkdata;
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002771 struct mmc_card *card = md->queue.card;
2772
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002773 if (req && !mq->qcnt)
Per Forlinee8a43a2011-07-01 18:55:33 +02002774 /* claim host only for the first request */
Adrian Hunter6c0cedd2017-09-22 15:36:51 +03002775 mmc_get_card(card, NULL);
Per Forlinee8a43a2011-07-01 18:55:33 +02002776
Linus Walleij1f797ed2017-08-20 23:39:10 +02002777 ret = mmc_blk_part_switch(card, md->part_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002778 if (ret) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03002779 if (req) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002780 blk_end_request_all(req, BLK_STS_IOERR);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03002781 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002782 goto out;
2783 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002784
Linus Walleij614f0382017-05-18 11:29:34 +02002785 if (req) {
2786 switch (req_op(req)) {
2787 case REQ_OP_DRV_IN:
2788 case REQ_OP_DRV_OUT:
2789 /*
2790 * Complete ongoing async transfer before issuing
2791 * ioctl()s
2792 */
2793 if (mq->qcnt)
2794 mmc_blk_issue_rw_rq(mq, NULL);
Linus Walleij02166a02017-05-19 15:37:28 +02002795 mmc_blk_issue_drv_op(mq, req);
Linus Walleij614f0382017-05-18 11:29:34 +02002796 break;
2797 case REQ_OP_DISCARD:
2798 /*
2799 * Complete ongoing async transfer before issuing
2800 * discard.
2801 */
2802 if (mq->qcnt)
2803 mmc_blk_issue_rw_rq(mq, NULL);
2804 mmc_blk_issue_discard_rq(mq, req);
2805 break;
2806 case REQ_OP_SECURE_ERASE:
2807 /*
2808 * Complete ongoing async transfer before issuing
2809 * secure erase.
2810 */
2811 if (mq->qcnt)
2812 mmc_blk_issue_rw_rq(mq, NULL);
2813 mmc_blk_issue_secdiscard_rq(mq, req);
2814 break;
2815 case REQ_OP_FLUSH:
2816 /*
2817 * Complete ongoing async transfer before issuing
2818 * flush.
2819 */
2820 if (mq->qcnt)
2821 mmc_blk_issue_rw_rq(mq, NULL);
2822 mmc_blk_issue_flush(mq, req);
2823 break;
2824 default:
2825 /* Normal request, just issue it */
2826 mmc_blk_issue_rw_rq(mq, req);
2827 card->host->context_info.is_waiting_last_req = false;
2828 break;
Wu Fengguang73222382017-05-23 05:11:33 +08002829 }
Adrian Hunter49804542010-08-11 14:17:50 -07002830 } else {
Linus Walleij614f0382017-05-18 11:29:34 +02002831 /* No request, flushing the pipeline with NULL */
2832 mmc_blk_issue_rw_rq(mq, NULL);
Adrian Hunter2602b742017-03-13 14:36:32 +02002833 card->host->context_info.is_waiting_last_req = false;
Adrian Hunter49804542010-08-11 14:17:50 -07002834 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002835
Andrei Warkentin371a6892011-04-11 18:10:25 -05002836out:
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002837 if (!mq->qcnt)
Adrian Hunter6c0cedd2017-09-22 15:36:51 +03002838 mmc_put_card(card, NULL);
Adrian Hunterbd788c92010-08-11 14:17:47 -07002839}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Russell Kinga6f6c962006-01-03 22:38:44 +00002841static inline int mmc_blk_readonly(struct mmc_card *card)
2842{
2843 return mmc_card_readonly(card) ||
2844 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
2845}
2846
Andrei Warkentin371a6892011-04-11 18:10:25 -05002847static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
2848 struct device *parent,
2849 sector_t size,
2850 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002851 const char *subname,
2852 int area_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853{
2854 struct mmc_blk_data *md;
2855 int devidx, ret;
2856
Heiner Kallweita04848c2017-02-01 19:44:22 +01002857 devidx = ida_simple_get(&mmc_blk_ida, 0, max_devices, GFP_KERNEL);
Shawn Line7b42762017-08-23 15:38:31 +08002858 if (devidx < 0) {
2859 /*
2860 * We get -ENOSPC because there are no more any available
2861 * devidx. The reason may be that, either userspace haven't yet
2862 * unmounted the partitions, which postpones mmc_blk_release()
2863 * from being called, or the device has more partitions than
2864 * what we support.
2865 */
2866 if (devidx == -ENOSPC)
2867 dev_err(mmc_dev(card->host),
2868 "no more device IDs available\n");
2869
Heiner Kallweita04848c2017-02-01 19:44:22 +01002870 return ERR_PTR(devidx);
Shawn Line7b42762017-08-23 15:38:31 +08002871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07002873 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00002874 if (!md) {
2875 ret = -ENOMEM;
2876 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 }
Russell Kinga6f6c962006-01-03 22:38:44 +00002878
Johan Rudholmadd710e2011-12-02 08:51:06 +01002879 md->area_type = area_type;
2880
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002881 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00002882 * Set the read-only status based on the supported commands
2883 * and the write protect switch.
2884 */
2885 md->read_only = mmc_blk_readonly(card);
2886
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002887 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00002888 if (md->disk == NULL) {
2889 ret = -ENOMEM;
2890 goto err_kfree;
2891 }
2892
2893 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002894 INIT_LIST_HEAD(&md->part);
Linus Walleij97548572017-09-20 10:02:00 +02002895 INIT_LIST_HEAD(&md->rpmbs);
Russell Kinga6f6c962006-01-03 22:38:44 +00002896 md->usage = 1;
2897
Adrian Hunterd09408a2011-06-23 13:40:28 +03002898 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00002899 if (ret)
2900 goto err_putdisk;
2901
Linus Walleij7db30282016-11-18 13:36:15 +01002902 md->queue.blkdata = md;
Russell Kinga6f6c962006-01-03 22:38:44 +00002903
Adrian Hunter41e3efd2017-11-29 15:40:59 +02002904 /*
2905 * Keep an extra reference to the queue so that we can shutdown the
2906 * queue (i.e. call blk_cleanup_queue()) while there are still
2907 * references to the 'md'. The corresponding blk_put_queue() is in
2908 * mmc_blk_put().
2909 */
2910 if (!blk_get_queue(md->queue.queue)) {
2911 mmc_cleanup_queue(&md->queue);
2912 goto err_putdisk;
2913 }
2914
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02002915 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04002916 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00002917 md->disk->fops = &mmc_bdops;
2918 md->disk->private_data = md;
2919 md->disk->queue = md->queue.queue;
Dan Williams307d8e62016-06-20 10:40:44 -07002920 md->parent = parent;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002921 set_disk_ro(md->disk, md->read_only || default_ro);
Colin Cross382c55f2015-10-22 10:00:41 -07002922 md->disk->flags = GENHD_FL_EXT_DEVT;
Ulf Hanssonf5b4d712014-09-03 11:02:23 +02002923 if (area_type & (MMC_BLK_DATA_AREA_RPMB | MMC_BLK_DATA_AREA_BOOT))
Loic Pallardy53d8f972012-08-06 17:12:28 +02002924 md->disk->flags |= GENHD_FL_NO_PART_SCAN;
Russell Kinga6f6c962006-01-03 22:38:44 +00002925
2926 /*
2927 * As discussed on lkml, GENHD_FL_REMOVABLE should:
2928 *
2929 * - be set for removable media with permanent block devices
2930 * - be unset for removable block devices with permanent media
2931 *
2932 * Since MMC block devices clearly fall under the second
2933 * case, we do not set GENHD_FL_REMOVABLE. Userspace
2934 * should use the block device creation/destruction hotplug
2935 * messages to tell when the card is present.
2936 */
2937
Andrei Warkentinf06c9152011-04-21 22:46:13 -05002938 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
Ulf Hansson9aaf3432016-04-06 16:12:08 +02002939 "mmcblk%u%s", card->host->index, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00002940
Saugata Dasa5075eb2012-05-17 16:32:21 +05302941 if (mmc_card_mmc(card))
2942 blk_queue_logical_block_size(md->queue.queue,
2943 card->ext_csd.data_sector_size);
2944 else
2945 blk_queue_logical_block_size(md->queue.queue, 512);
2946
Andrei Warkentin371a6892011-04-11 18:10:25 -05002947 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002948
Andrei Warkentinf0d89972011-05-23 15:06:38 -05002949 if (mmc_host_cmd23(card->host)) {
Daniel Glöckner0ed50ab2016-08-30 14:17:30 +02002950 if ((mmc_card_mmc(card) &&
2951 card->csd.mmca_vsn >= CSD_SPEC_VER_3) ||
Andrei Warkentinf0d89972011-05-23 15:06:38 -05002952 (mmc_card_sd(card) &&
2953 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
2954 md->flags |= MMC_BLK_CMD23;
2955 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002956
2957 if (mmc_card_mmc(card) &&
2958 md->flags & MMC_BLK_CMD23 &&
2959 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
2960 card->ext_csd.rel_sectors)) {
2961 md->flags |= MMC_BLK_REL_WR;
Jens Axboee9d5c742016-03-30 10:17:20 -06002962 blk_queue_write_cache(md->queue.queue, true, true);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05002963 }
2964
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00002966
2967 err_putdisk:
2968 put_disk(md->disk);
2969 err_kfree:
2970 kfree(md);
2971 out:
Heiner Kallweita04848c2017-02-01 19:44:22 +01002972 ida_simple_remove(&mmc_blk_ida, devidx);
Russell Kinga6f6c962006-01-03 22:38:44 +00002973 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974}
2975
Andrei Warkentin371a6892011-04-11 18:10:25 -05002976static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
2977{
2978 sector_t size;
Andrei Warkentin371a6892011-04-11 18:10:25 -05002979
2980 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
2981 /*
2982 * The EXT_CSD sector count is in number or 512 byte
2983 * sectors.
2984 */
2985 size = card->ext_csd.sectors;
2986 } else {
2987 /*
2988 * The CSD capacity field is in units of read_blkbits.
2989 * set_capacity takes units of 512 bytes.
2990 */
Kuninori Morimoto087de9e2015-05-11 07:35:28 +00002991 size = (typeof(sector_t))card->csd.capacity
2992 << (card->csd.read_blkbits - 9);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002993 }
2994
Tobias Klauser7a30f2a2015-01-21 15:56:44 +01002995 return mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002996 MMC_BLK_DATA_AREA_MAIN);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002997}
2998
2999static int mmc_blk_alloc_part(struct mmc_card *card,
3000 struct mmc_blk_data *md,
3001 unsigned int part_type,
3002 sector_t size,
3003 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01003004 const char *subname,
3005 int area_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -05003006{
3007 char cap_str[10];
3008 struct mmc_blk_data *part_md;
3009
3010 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01003011 subname, area_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003012 if (IS_ERR(part_md))
3013 return PTR_ERR(part_md);
3014 part_md->part_type = part_type;
3015 list_add(&part_md->part, &md->part);
3016
James Bottomleyb9f28d82015-03-05 18:47:01 -08003017 string_get_size((u64)get_capacity(part_md->disk), 512, STRING_UNITS_2,
Andrei Warkentin371a6892011-04-11 18:10:25 -05003018 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05303019 pr_info("%s: %s %s partition %u %s\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -05003020 part_md->disk->disk_name, mmc_card_id(card),
3021 mmc_card_name(card), part_md->part_type, cap_str);
3022 return 0;
3023}
3024
Linus Walleij97548572017-09-20 10:02:00 +02003025/**
3026 * mmc_rpmb_ioctl() - ioctl handler for the RPMB chardev
3027 * @filp: the character device file
3028 * @cmd: the ioctl() command
3029 * @arg: the argument from userspace
3030 *
3031 * This will essentially just redirect the ioctl()s coming in over to
3032 * the main block device spawning the RPMB character device.
3033 */
3034static long mmc_rpmb_ioctl(struct file *filp, unsigned int cmd,
3035 unsigned long arg)
3036{
3037 struct mmc_rpmb_data *rpmb = filp->private_data;
3038 int ret;
3039
3040 switch (cmd) {
3041 case MMC_IOC_CMD:
3042 ret = mmc_blk_ioctl_cmd(rpmb->md,
3043 (struct mmc_ioc_cmd __user *)arg,
3044 rpmb);
3045 break;
3046 case MMC_IOC_MULTI_CMD:
3047 ret = mmc_blk_ioctl_multi_cmd(rpmb->md,
3048 (struct mmc_ioc_multi_cmd __user *)arg,
3049 rpmb);
3050 break;
3051 default:
3052 ret = -EINVAL;
3053 break;
3054 }
3055
3056 return 0;
3057}
3058
3059#ifdef CONFIG_COMPAT
3060static long mmc_rpmb_ioctl_compat(struct file *filp, unsigned int cmd,
3061 unsigned long arg)
3062{
3063 return mmc_rpmb_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
3064}
3065#endif
3066
3067static int mmc_rpmb_chrdev_open(struct inode *inode, struct file *filp)
3068{
3069 struct mmc_rpmb_data *rpmb = container_of(inode->i_cdev,
3070 struct mmc_rpmb_data, chrdev);
3071
3072 get_device(&rpmb->dev);
3073 filp->private_data = rpmb;
Linus Walleij1c87f732017-10-04 11:10:07 +02003074 mmc_blk_get(rpmb->md->disk);
Linus Walleij97548572017-09-20 10:02:00 +02003075
3076 return nonseekable_open(inode, filp);
3077}
3078
3079static int mmc_rpmb_chrdev_release(struct inode *inode, struct file *filp)
3080{
3081 struct mmc_rpmb_data *rpmb = container_of(inode->i_cdev,
3082 struct mmc_rpmb_data, chrdev);
3083
3084 put_device(&rpmb->dev);
Linus Walleij1c87f732017-10-04 11:10:07 +02003085 mmc_blk_put(rpmb->md);
Linus Walleij97548572017-09-20 10:02:00 +02003086
3087 return 0;
3088}
3089
3090static const struct file_operations mmc_rpmb_fileops = {
3091 .release = mmc_rpmb_chrdev_release,
3092 .open = mmc_rpmb_chrdev_open,
3093 .owner = THIS_MODULE,
3094 .llseek = no_llseek,
3095 .unlocked_ioctl = mmc_rpmb_ioctl,
3096#ifdef CONFIG_COMPAT
3097 .compat_ioctl = mmc_rpmb_ioctl_compat,
3098#endif
3099};
3100
Linus Walleij1c87f732017-10-04 11:10:07 +02003101static void mmc_blk_rpmb_device_release(struct device *dev)
3102{
3103 struct mmc_rpmb_data *rpmb = dev_get_drvdata(dev);
3104
3105 ida_simple_remove(&mmc_rpmb_ida, rpmb->id);
3106 kfree(rpmb);
3107}
Linus Walleij97548572017-09-20 10:02:00 +02003108
3109static int mmc_blk_alloc_rpmb_part(struct mmc_card *card,
3110 struct mmc_blk_data *md,
3111 unsigned int part_index,
3112 sector_t size,
3113 const char *subname)
3114{
3115 int devidx, ret;
3116 char rpmb_name[DISK_NAME_LEN];
3117 char cap_str[10];
3118 struct mmc_rpmb_data *rpmb;
3119
3120 /* This creates the minor number for the RPMB char device */
3121 devidx = ida_simple_get(&mmc_rpmb_ida, 0, max_devices, GFP_KERNEL);
3122 if (devidx < 0)
3123 return devidx;
3124
3125 rpmb = kzalloc(sizeof(*rpmb), GFP_KERNEL);
Linus Walleij1c87f732017-10-04 11:10:07 +02003126 if (!rpmb) {
3127 ida_simple_remove(&mmc_rpmb_ida, devidx);
Linus Walleij97548572017-09-20 10:02:00 +02003128 return -ENOMEM;
Linus Walleij1c87f732017-10-04 11:10:07 +02003129 }
Linus Walleij97548572017-09-20 10:02:00 +02003130
3131 snprintf(rpmb_name, sizeof(rpmb_name),
3132 "mmcblk%u%s", card->host->index, subname ? subname : "");
3133
3134 rpmb->id = devidx;
3135 rpmb->part_index = part_index;
3136 rpmb->dev.init_name = rpmb_name;
3137 rpmb->dev.bus = &mmc_rpmb_bus_type;
3138 rpmb->dev.devt = MKDEV(MAJOR(mmc_rpmb_devt), rpmb->id);
3139 rpmb->dev.parent = &card->dev;
Linus Walleij1c87f732017-10-04 11:10:07 +02003140 rpmb->dev.release = mmc_blk_rpmb_device_release;
Linus Walleij97548572017-09-20 10:02:00 +02003141 device_initialize(&rpmb->dev);
3142 dev_set_drvdata(&rpmb->dev, rpmb);
3143 rpmb->md = md;
3144
3145 cdev_init(&rpmb->chrdev, &mmc_rpmb_fileops);
3146 rpmb->chrdev.owner = THIS_MODULE;
3147 ret = cdev_device_add(&rpmb->chrdev, &rpmb->dev);
3148 if (ret) {
3149 pr_err("%s: could not add character device\n", rpmb_name);
Linus Walleij1c87f732017-10-04 11:10:07 +02003150 goto out_put_device;
Linus Walleij97548572017-09-20 10:02:00 +02003151 }
3152
3153 list_add(&rpmb->node, &md->rpmbs);
3154
3155 string_get_size((u64)size, 512, STRING_UNITS_2,
3156 cap_str, sizeof(cap_str));
3157
3158 pr_info("%s: %s %s partition %u %s, chardev (%d:%d)\n",
3159 rpmb_name, mmc_card_id(card),
3160 mmc_card_name(card), EXT_CSD_PART_CONFIG_ACC_RPMB, cap_str,
3161 MAJOR(mmc_rpmb_devt), rpmb->id);
3162
3163 return 0;
3164
Linus Walleij1c87f732017-10-04 11:10:07 +02003165out_put_device:
3166 put_device(&rpmb->dev);
Linus Walleij97548572017-09-20 10:02:00 +02003167 return ret;
3168}
3169
3170static void mmc_blk_remove_rpmb_part(struct mmc_rpmb_data *rpmb)
Linus Walleij1c87f732017-10-04 11:10:07 +02003171
Linus Walleij97548572017-09-20 10:02:00 +02003172{
3173 cdev_device_del(&rpmb->chrdev, &rpmb->dev);
Linus Walleij1c87f732017-10-04 11:10:07 +02003174 put_device(&rpmb->dev);
Linus Walleij97548572017-09-20 10:02:00 +02003175}
3176
Namjae Jeone0c368d2011-10-06 23:41:38 +09003177/* MMC Physical partitions consist of two boot partitions and
3178 * up to four general purpose partitions.
3179 * For each partition enabled in EXT_CSD a block device will be allocatedi
3180 * to provide access to the partition.
3181 */
3182
Andrei Warkentin371a6892011-04-11 18:10:25 -05003183static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
3184{
Linus Walleij97548572017-09-20 10:02:00 +02003185 int idx, ret;
Andrei Warkentin371a6892011-04-11 18:10:25 -05003186
3187 if (!mmc_card_mmc(card))
3188 return 0;
3189
Namjae Jeone0c368d2011-10-06 23:41:38 +09003190 for (idx = 0; idx < card->nr_parts; idx++) {
Linus Walleij97548572017-09-20 10:02:00 +02003191 if (card->part[idx].area_type & MMC_BLK_DATA_AREA_RPMB) {
3192 /*
3193 * RPMB partitions does not provide block access, they
3194 * are only accessed using ioctl():s. Thus create
3195 * special RPMB block devices that do not have a
3196 * backing block queue for these.
3197 */
3198 ret = mmc_blk_alloc_rpmb_part(card, md,
3199 card->part[idx].part_cfg,
3200 card->part[idx].size >> 9,
3201 card->part[idx].name);
3202 if (ret)
3203 return ret;
3204 } else if (card->part[idx].size) {
Namjae Jeone0c368d2011-10-06 23:41:38 +09003205 ret = mmc_blk_alloc_part(card, md,
3206 card->part[idx].part_cfg,
3207 card->part[idx].size >> 9,
3208 card->part[idx].force_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01003209 card->part[idx].name,
3210 card->part[idx].area_type);
Namjae Jeone0c368d2011-10-06 23:41:38 +09003211 if (ret)
3212 return ret;
3213 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05003214 }
3215
Linus Walleij97548572017-09-20 10:02:00 +02003216 return 0;
Andrei Warkentin371a6892011-04-11 18:10:25 -05003217}
3218
Andrei Warkentin371a6892011-04-11 18:10:25 -05003219static void mmc_blk_remove_req(struct mmc_blk_data *md)
3220{
Johan Rudholmadd710e2011-12-02 08:51:06 +01003221 struct mmc_card *card;
3222
Andrei Warkentin371a6892011-04-11 18:10:25 -05003223 if (md) {
Paul Taysomfdfa20c2013-06-04 14:42:40 -07003224 /*
3225 * Flush remaining requests and free queues. It
3226 * is freeing the queue that stops new requests
3227 * from being accepted.
3228 */
Franck Jullien8efb83a2013-07-24 15:17:48 +02003229 card = md->queue.card;
Paul Taysomfdfa20c2013-06-04 14:42:40 -07003230 mmc_cleanup_queue(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003231 if (md->disk->flags & GENHD_FL_UP) {
3232 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
Johan Rudholmadd710e2011-12-02 08:51:06 +01003233 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
3234 card->ext_csd.boot_ro_lockable)
3235 device_remove_file(disk_to_dev(md->disk),
3236 &md->power_ro_lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003237
Andrei Warkentin371a6892011-04-11 18:10:25 -05003238 del_gendisk(md->disk);
3239 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05003240 mmc_blk_put(md);
3241 }
3242}
3243
3244static void mmc_blk_remove_parts(struct mmc_card *card,
3245 struct mmc_blk_data *md)
3246{
3247 struct list_head *pos, *q;
3248 struct mmc_blk_data *part_md;
Linus Walleij97548572017-09-20 10:02:00 +02003249 struct mmc_rpmb_data *rpmb;
Andrei Warkentin371a6892011-04-11 18:10:25 -05003250
Linus Walleij97548572017-09-20 10:02:00 +02003251 /* Remove RPMB partitions */
3252 list_for_each_safe(pos, q, &md->rpmbs) {
3253 rpmb = list_entry(pos, struct mmc_rpmb_data, node);
3254 list_del(pos);
3255 mmc_blk_remove_rpmb_part(rpmb);
3256 }
3257 /* Remove block partitions */
Andrei Warkentin371a6892011-04-11 18:10:25 -05003258 list_for_each_safe(pos, q, &md->part) {
3259 part_md = list_entry(pos, struct mmc_blk_data, part);
3260 list_del(pos);
3261 mmc_blk_remove_req(part_md);
3262 }
3263}
3264
3265static int mmc_add_disk(struct mmc_blk_data *md)
3266{
3267 int ret;
Johan Rudholmadd710e2011-12-02 08:51:06 +01003268 struct mmc_card *card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05003269
Dan Williams307d8e62016-06-20 10:40:44 -07003270 device_add_disk(md->parent, md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003271 md->force_ro.show = force_ro_show;
3272 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05303273 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003274 md->force_ro.attr.name = "force_ro";
3275 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
3276 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
3277 if (ret)
Johan Rudholmadd710e2011-12-02 08:51:06 +01003278 goto force_ro_fail;
3279
3280 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
3281 card->ext_csd.boot_ro_lockable) {
Al Viro88187392012-03-20 06:00:24 -04003282 umode_t mode;
Johan Rudholmadd710e2011-12-02 08:51:06 +01003283
3284 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
3285 mode = S_IRUGO;
3286 else
3287 mode = S_IRUGO | S_IWUSR;
3288
3289 md->power_ro_lock.show = power_ro_lock_show;
3290 md->power_ro_lock.store = power_ro_lock_store;
Rabin Vincent00d9ac02012-02-01 16:31:56 +01003291 sysfs_attr_init(&md->power_ro_lock.attr);
Johan Rudholmadd710e2011-12-02 08:51:06 +01003292 md->power_ro_lock.attr.mode = mode;
3293 md->power_ro_lock.attr.name =
3294 "ro_lock_until_next_power_on";
3295 ret = device_create_file(disk_to_dev(md->disk),
3296 &md->power_ro_lock);
3297 if (ret)
3298 goto power_ro_lock_fail;
3299 }
3300 return ret;
3301
3302power_ro_lock_fail:
3303 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
3304force_ro_fail:
3305 del_gendisk(md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003306
3307 return ret;
3308}
3309
Linus Walleij627c3cc2017-08-20 23:39:08 +02003310#ifdef CONFIG_DEBUG_FS
3311
3312static int mmc_dbg_card_status_get(void *data, u64 *val)
3313{
3314 struct mmc_card *card = data;
3315 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
3316 struct mmc_queue *mq = &md->queue;
3317 struct request *req;
3318 int ret;
3319
3320 /* Ask the block layer about the card status */
3321 req = blk_get_request(mq->queue, REQ_OP_DRV_IN, __GFP_RECLAIM);
Adrian Hunterfb8e456e2017-11-21 15:42:28 +02003322 if (IS_ERR(req))
3323 return PTR_ERR(req);
Linus Walleij627c3cc2017-08-20 23:39:08 +02003324 req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_GET_CARD_STATUS;
3325 blk_execute_rq(mq->queue, NULL, req, 0);
3326 ret = req_to_mmc_queue_req(req)->drv_op_result;
3327 if (ret >= 0) {
3328 *val = ret;
3329 ret = 0;
3330 }
Adrian Hunter34c089e2017-11-21 15:42:27 +02003331 blk_put_request(req);
Linus Walleij627c3cc2017-08-20 23:39:08 +02003332
3333 return ret;
3334}
3335DEFINE_SIMPLE_ATTRIBUTE(mmc_dbg_card_status_fops, mmc_dbg_card_status_get,
3336 NULL, "%08llx\n");
3337
3338/* That is two digits * 512 + 1 for newline */
3339#define EXT_CSD_STR_LEN 1025
3340
3341static int mmc_ext_csd_open(struct inode *inode, struct file *filp)
3342{
3343 struct mmc_card *card = inode->i_private;
3344 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
3345 struct mmc_queue *mq = &md->queue;
3346 struct request *req;
3347 char *buf;
3348 ssize_t n = 0;
3349 u8 *ext_csd;
3350 int err, i;
3351
3352 buf = kmalloc(EXT_CSD_STR_LEN + 1, GFP_KERNEL);
3353 if (!buf)
3354 return -ENOMEM;
3355
3356 /* Ask the block layer for the EXT CSD */
3357 req = blk_get_request(mq->queue, REQ_OP_DRV_IN, __GFP_RECLAIM);
Adrian Hunterfb8e456e2017-11-21 15:42:28 +02003358 if (IS_ERR(req)) {
3359 err = PTR_ERR(req);
3360 goto out_free;
3361 }
Linus Walleij627c3cc2017-08-20 23:39:08 +02003362 req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_GET_EXT_CSD;
3363 req_to_mmc_queue_req(req)->drv_op_data = &ext_csd;
3364 blk_execute_rq(mq->queue, NULL, req, 0);
3365 err = req_to_mmc_queue_req(req)->drv_op_result;
Adrian Hunter34c089e2017-11-21 15:42:27 +02003366 blk_put_request(req);
Linus Walleij627c3cc2017-08-20 23:39:08 +02003367 if (err) {
3368 pr_err("FAILED %d\n", err);
3369 goto out_free;
3370 }
3371
3372 for (i = 0; i < 512; i++)
3373 n += sprintf(buf + n, "%02x", ext_csd[i]);
3374 n += sprintf(buf + n, "\n");
3375
3376 if (n != EXT_CSD_STR_LEN) {
3377 err = -EINVAL;
3378 goto out_free;
3379 }
3380
3381 filp->private_data = buf;
3382 kfree(ext_csd);
3383 return 0;
3384
3385out_free:
3386 kfree(buf);
3387 return err;
3388}
3389
3390static ssize_t mmc_ext_csd_read(struct file *filp, char __user *ubuf,
3391 size_t cnt, loff_t *ppos)
3392{
3393 char *buf = filp->private_data;
3394
3395 return simple_read_from_buffer(ubuf, cnt, ppos,
3396 buf, EXT_CSD_STR_LEN);
3397}
3398
3399static int mmc_ext_csd_release(struct inode *inode, struct file *file)
3400{
3401 kfree(file->private_data);
3402 return 0;
3403}
3404
3405static const struct file_operations mmc_dbg_ext_csd_fops = {
3406 .open = mmc_ext_csd_open,
3407 .read = mmc_ext_csd_read,
3408 .release = mmc_ext_csd_release,
3409 .llseek = default_llseek,
3410};
3411
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003412static int mmc_blk_add_debugfs(struct mmc_card *card, struct mmc_blk_data *md)
Linus Walleij627c3cc2017-08-20 23:39:08 +02003413{
3414 struct dentry *root;
3415
3416 if (!card->debugfs_root)
3417 return 0;
3418
3419 root = card->debugfs_root;
3420
3421 if (mmc_card_mmc(card) || mmc_card_sd(card)) {
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003422 md->status_dentry =
3423 debugfs_create_file("status", S_IRUSR, root, card,
3424 &mmc_dbg_card_status_fops);
3425 if (!md->status_dentry)
Linus Walleij627c3cc2017-08-20 23:39:08 +02003426 return -EIO;
3427 }
3428
3429 if (mmc_card_mmc(card)) {
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003430 md->ext_csd_dentry =
3431 debugfs_create_file("ext_csd", S_IRUSR, root, card,
3432 &mmc_dbg_ext_csd_fops);
3433 if (!md->ext_csd_dentry)
Linus Walleij627c3cc2017-08-20 23:39:08 +02003434 return -EIO;
3435 }
3436
3437 return 0;
3438}
3439
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003440static void mmc_blk_remove_debugfs(struct mmc_card *card,
3441 struct mmc_blk_data *md)
3442{
3443 if (!card->debugfs_root)
3444 return;
3445
3446 if (!IS_ERR_OR_NULL(md->status_dentry)) {
3447 debugfs_remove(md->status_dentry);
3448 md->status_dentry = NULL;
3449 }
3450
3451 if (!IS_ERR_OR_NULL(md->ext_csd_dentry)) {
3452 debugfs_remove(md->ext_csd_dentry);
3453 md->ext_csd_dentry = NULL;
3454 }
3455}
Linus Walleij627c3cc2017-08-20 23:39:08 +02003456
3457#else
3458
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003459static int mmc_blk_add_debugfs(struct mmc_card *card, struct mmc_blk_data *md)
Linus Walleij627c3cc2017-08-20 23:39:08 +02003460{
3461 return 0;
3462}
3463
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003464static void mmc_blk_remove_debugfs(struct mmc_card *card,
3465 struct mmc_blk_data *md)
3466{
3467}
3468
Linus Walleij627c3cc2017-08-20 23:39:08 +02003469#endif /* CONFIG_DEBUG_FS */
3470
Ulf Hansson96541ba2015-04-14 13:06:12 +02003471static int mmc_blk_probe(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472{
Andrei Warkentin371a6892011-04-11 18:10:25 -05003473 struct mmc_blk_data *md, *part_md;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02003474 char cap_str[10];
3475
Pierre Ossman912490d2005-05-21 10:27:02 +01003476 /*
3477 * Check that the card supports the command class(es) we need.
3478 */
3479 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 return -ENODEV;
3481
Shawn Lin8c7cdbf2017-02-15 16:36:47 +08003482 mmc_fixup_device(card, mmc_blk_fixups);
Lukas Czerner5204d002014-06-18 13:18:07 +02003483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 md = mmc_blk_alloc(card);
Linus Walleij304419d2017-05-18 11:29:32 +02003485 if (IS_ERR(md))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 return PTR_ERR(md);
3487
James Bottomleyb9f28d82015-03-05 18:47:01 -08003488 string_get_size((u64)get_capacity(md->disk), 512, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02003489 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05303490 pr_info("%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02003492 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493
Andrei Warkentin371a6892011-04-11 18:10:25 -05003494 if (mmc_blk_alloc_parts(card, md))
3495 goto out;
3496
Ulf Hansson96541ba2015-04-14 13:06:12 +02003497 dev_set_drvdata(&card->dev, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04003498
Andrei Warkentin371a6892011-04-11 18:10:25 -05003499 if (mmc_add_disk(md))
3500 goto out;
3501
3502 list_for_each_entry(part_md, &md->part, part) {
3503 if (mmc_add_disk(part_md))
3504 goto out;
3505 }
Ulf Hanssone94cfef2013-05-02 14:02:38 +02003506
Linus Walleij627c3cc2017-08-20 23:39:08 +02003507 /* Add two debugfs entries */
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003508 mmc_blk_add_debugfs(card, md);
Linus Walleij627c3cc2017-08-20 23:39:08 +02003509
Ulf Hanssone94cfef2013-05-02 14:02:38 +02003510 pm_runtime_set_autosuspend_delay(&card->dev, 3000);
3511 pm_runtime_use_autosuspend(&card->dev);
3512
3513 /*
3514 * Don't enable runtime PM for SD-combo cards here. Leave that
3515 * decision to be taken during the SDIO init sequence instead.
3516 */
3517 if (card->type != MMC_TYPE_SD_COMBO) {
3518 pm_runtime_set_active(&card->dev);
3519 pm_runtime_enable(&card->dev);
3520 }
3521
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 return 0;
3523
3524 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05003525 mmc_blk_remove_parts(card, md);
3526 mmc_blk_remove_req(md);
Ulf Hansson5865f282012-03-22 11:47:26 +01003527 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528}
3529
Ulf Hansson96541ba2015-04-14 13:06:12 +02003530static void mmc_blk_remove(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531{
Ulf Hansson96541ba2015-04-14 13:06:12 +02003532 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003534 mmc_blk_remove_debugfs(card, md);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003535 mmc_blk_remove_parts(card, md);
Ulf Hanssone94cfef2013-05-02 14:02:38 +02003536 pm_runtime_get_sync(&card->dev);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03003537 mmc_claim_host(card->host);
Linus Walleij1f797ed2017-08-20 23:39:10 +02003538 mmc_blk_part_switch(card, md->part_type);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03003539 mmc_release_host(card->host);
Ulf Hanssone94cfef2013-05-02 14:02:38 +02003540 if (card->type != MMC_TYPE_SD_COMBO)
3541 pm_runtime_disable(&card->dev);
3542 pm_runtime_put_noidle(&card->dev);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003543 mmc_blk_remove_req(md);
Ulf Hansson96541ba2015-04-14 13:06:12 +02003544 dev_set_drvdata(&card->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545}
3546
Ulf Hansson96541ba2015-04-14 13:06:12 +02003547static int _mmc_blk_suspend(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548{
Andrei Warkentin371a6892011-04-11 18:10:25 -05003549 struct mmc_blk_data *part_md;
Ulf Hansson96541ba2015-04-14 13:06:12 +02003550 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
3552 if (md) {
3553 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003554 list_for_each_entry(part_md, &md->part, part) {
3555 mmc_queue_suspend(&part_md->queue);
3556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 }
3558 return 0;
3559}
3560
Ulf Hansson96541ba2015-04-14 13:06:12 +02003561static void mmc_blk_shutdown(struct mmc_card *card)
Ulf Hansson76287742013-06-10 17:03:40 +02003562{
Ulf Hansson96541ba2015-04-14 13:06:12 +02003563 _mmc_blk_suspend(card);
Ulf Hansson76287742013-06-10 17:03:40 +02003564}
3565
Ulf Hansson0967edc2014-10-06 11:29:42 +02003566#ifdef CONFIG_PM_SLEEP
3567static int mmc_blk_suspend(struct device *dev)
Ulf Hansson76287742013-06-10 17:03:40 +02003568{
Ulf Hansson96541ba2015-04-14 13:06:12 +02003569 struct mmc_card *card = mmc_dev_to_card(dev);
3570
3571 return _mmc_blk_suspend(card);
Ulf Hansson76287742013-06-10 17:03:40 +02003572}
3573
Ulf Hansson0967edc2014-10-06 11:29:42 +02003574static int mmc_blk_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575{
Andrei Warkentin371a6892011-04-11 18:10:25 -05003576 struct mmc_blk_data *part_md;
Ulf Hanssonfc95e302014-10-06 14:34:09 +02003577 struct mmc_blk_data *md = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
3579 if (md) {
Andrei Warkentin371a6892011-04-11 18:10:25 -05003580 /*
3581 * Resume involves the card going into idle state,
3582 * so current partition is always the main one.
3583 */
3584 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003586 list_for_each_entry(part_md, &md->part, part) {
3587 mmc_queue_resume(&part_md->queue);
3588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 }
3590 return 0;
3591}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592#endif
3593
Ulf Hansson0967edc2014-10-06 11:29:42 +02003594static SIMPLE_DEV_PM_OPS(mmc_blk_pm_ops, mmc_blk_suspend, mmc_blk_resume);
3595
Ulf Hansson96541ba2015-04-14 13:06:12 +02003596static struct mmc_driver mmc_driver = {
3597 .drv = {
3598 .name = "mmcblk",
3599 .pm = &mmc_blk_pm_ops,
3600 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 .probe = mmc_blk_probe,
3602 .remove = mmc_blk_remove,
Ulf Hansson76287742013-06-10 17:03:40 +02003603 .shutdown = mmc_blk_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604};
3605
3606static int __init mmc_blk_init(void)
3607{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09003608 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609
Linus Walleij97548572017-09-20 10:02:00 +02003610 res = bus_register(&mmc_rpmb_bus_type);
3611 if (res < 0) {
3612 pr_err("mmcblk: could not register RPMB bus type\n");
3613 return res;
3614 }
3615 res = alloc_chrdev_region(&mmc_rpmb_devt, 0, MAX_DEVICES, "rpmb");
3616 if (res < 0) {
3617 pr_err("mmcblk: failed to allocate rpmb chrdev region\n");
3618 goto out_bus_unreg;
3619 }
3620
Olof Johansson5e71b7a2010-09-17 21:19:57 -04003621 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
3622 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
3623
Ben Hutchingsa26eba62014-11-06 03:35:09 +00003624 max_devices = min(MAX_DEVICES, (1 << MINORBITS) / perdev_minors);
Olof Johansson5e71b7a2010-09-17 21:19:57 -04003625
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02003626 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
3627 if (res)
Linus Walleij97548572017-09-20 10:02:00 +02003628 goto out_chrdev_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09003630 res = mmc_register_driver(&mmc_driver);
3631 if (res)
Linus Walleij97548572017-09-20 10:02:00 +02003632 goto out_blkdev_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09003634 return 0;
Linus Walleij97548572017-09-20 10:02:00 +02003635
3636out_blkdev_unreg:
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09003637 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Walleij97548572017-09-20 10:02:00 +02003638out_chrdev_unreg:
3639 unregister_chrdev_region(mmc_rpmb_devt, MAX_DEVICES);
3640out_bus_unreg:
3641 bus_unregister(&mmc_rpmb_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 return res;
3643}
3644
3645static void __exit mmc_blk_exit(void)
3646{
3647 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02003648 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Walleij97548572017-09-20 10:02:00 +02003649 unregister_chrdev_region(mmc_rpmb_devt, MAX_DEVICES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650}
3651
3652module_init(mmc_blk_init);
3653module_exit(mmc_blk_exit);
3654
3655MODULE_LICENSE("GPL");
3656MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
3657