blob: bd7ead343500bd28d152eeea04482e5b87e021d1 [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
Adrian Hunter6b7a3632017-11-29 15:41:14 +020066/*
67 * Set a 10 second timeout for polling write request busy state. Note, mmc core
68 * is setting a 3 second timeout for SD cards, and SDHCI has long had a 10
69 * second software timer to timeout the whole request, so 10 seconds should be
70 * ample.
71 */
72#define MMC_BLK_TIMEOUT_MS (10 * 1000)
Maya Erez775a9362013-04-18 15:41:55 +030073#define MMC_SANITIZE_REQ_TIMEOUT 240000
74#define MMC_EXTRACT_INDEX_FROM_ARG(x) ((x & 0x00FF0000) >> 16)
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -050075
Luca Porziod3df0462015-11-06 15:12:26 +000076#define mmc_req_rel_wr(req) ((req->cmd_flags & REQ_FUA) && \
Seungwon Jeonce39f9d2013-02-06 17:02:46 +090077 (rq_data_dir(req) == WRITE))
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020078static DEFINE_MUTEX(block_mutex);
Olof Johansson5e71b7a2010-09-17 21:19:57 -040079
80/*
81 * The defaults come from config options but can be overriden by module
82 * or bootarg options.
83 */
84static int perdev_minors = CONFIG_MMC_BLOCK_MINORS;
85
86/*
87 * We've only got one major, so number of mmcblk devices is
Ben Hutchingsa26eba62014-11-06 03:35:09 +000088 * limited to (1 << 20) / number of minors per device. It is also
Ulf Hanssonb10fa992016-04-07 14:36:46 +020089 * limited by the MAX_DEVICES below.
Olof Johansson5e71b7a2010-09-17 21:19:57 -040090 */
91static int max_devices;
92
Ben Hutchingsa26eba62014-11-06 03:35:09 +000093#define MAX_DEVICES 256
94
Ulf Hanssonb10fa992016-04-07 14:36:46 +020095static DEFINE_IDA(mmc_blk_ida);
Linus Walleij97548572017-09-20 10:02:00 +020096static DEFINE_IDA(mmc_rpmb_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/*
99 * There is one mmc_blk_data per slot.
100 */
101struct mmc_blk_data {
102 spinlock_t lock;
Dan Williams307d8e62016-06-20 10:40:44 -0700103 struct device *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct gendisk *disk;
105 struct mmc_queue queue;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500106 struct list_head part;
Linus Walleij97548572017-09-20 10:02:00 +0200107 struct list_head rpmbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Andrei Warkentind0c97cf2011-05-23 15:06:36 -0500109 unsigned int flags;
110#define MMC_BLK_CMD23 (1 << 0) /* Can do SET_BLOCK_COUNT for multiblock */
111#define MMC_BLK_REL_WR (1 << 1) /* MMC Reliable write support */
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 unsigned int usage;
Russell Kinga6f6c962006-01-03 22:38:44 +0000114 unsigned int read_only;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500115 unsigned int part_type;
Adrian Hunter67716322011-08-29 16:42:15 +0300116 unsigned int reset_done;
117#define MMC_BLK_READ BIT(0)
118#define MMC_BLK_WRITE BIT(1)
119#define MMC_BLK_DISCARD BIT(2)
120#define MMC_BLK_SECDISCARD BIT(3)
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200121#define MMC_BLK_CQE_RECOVERY BIT(4)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500122
123 /*
124 * Only set in main mmc_blk_data associated
Ulf Hanssonfc95e302014-10-06 14:34:09 +0200125 * with mmc_card with dev_set_drvdata, and keeps
Andrei Warkentin371a6892011-04-11 18:10:25 -0500126 * track of the current selected device partition.
127 */
128 unsigned int part_curr;
129 struct device_attribute force_ro;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100130 struct device_attribute power_ro_lock;
131 int area_type;
Adrian Hunterf9f0da92017-11-21 15:42:30 +0200132
133 /* debugfs files (only in main mmc_blk_data) */
134 struct dentry *status_dentry;
135 struct dentry *ext_csd_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136};
137
Linus Walleij97548572017-09-20 10:02:00 +0200138/* Device type for RPMB character devices */
139static dev_t mmc_rpmb_devt;
140
141/* Bus type for RPMB character devices */
142static struct bus_type mmc_rpmb_bus_type = {
143 .name = "mmc_rpmb",
144};
145
146/**
147 * struct mmc_rpmb_data - special RPMB device type for these areas
148 * @dev: the device for the RPMB area
149 * @chrdev: character device for the RPMB area
150 * @id: unique device ID number
151 * @part_index: partition index (0 on first)
152 * @md: parent MMC block device
153 * @node: list item, so we can put this device on a list
154 */
155struct mmc_rpmb_data {
156 struct device dev;
157 struct cdev chrdev;
158 int id;
159 unsigned int part_index;
160 struct mmc_blk_data *md;
161 struct list_head node;
162};
163
Arjan van de Vena621aae2006-01-12 18:43:35 +0000164static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Olof Johansson5e71b7a2010-09-17 21:19:57 -0400166module_param(perdev_minors, int, 0444);
167MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device");
168
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200169static inline int mmc_blk_part_switch(struct mmc_card *card,
Linus Walleij1f797ed2017-08-20 23:39:10 +0200170 unsigned int part_type);
Adrian Huntercdf8a6f2017-03-13 14:36:35 +0200171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk)
173{
174 struct mmc_blk_data *md;
175
Arjan van de Vena621aae2006-01-12 18:43:35 +0000176 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 md = disk->private_data;
178 if (md && md->usage == 0)
179 md = NULL;
180 if (md)
181 md->usage++;
Arjan van de Vena621aae2006-01-12 18:43:35 +0000182 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 return md;
185}
186
Andrei Warkentin371a6892011-04-11 18:10:25 -0500187static inline int mmc_get_devidx(struct gendisk *disk)
188{
Colin Cross382c55f2015-10-22 10:00:41 -0700189 int devidx = disk->first_minor / perdev_minors;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500190 return devidx;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static void mmc_blk_put(struct mmc_blk_data *md)
194{
Arjan van de Vena621aae2006-01-12 18:43:35 +0000195 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 md->usage--;
197 if (md->usage == 0) {
Andrei Warkentin371a6892011-04-11 18:10:25 -0500198 int devidx = mmc_get_devidx(md->disk);
Adrian Hunter41e3efd2017-11-29 15:40:59 +0200199 blk_put_queue(md->queue.queue);
Heiner Kallweita04848c2017-02-01 19:44:22 +0100200 ida_simple_remove(&mmc_blk_ida, devidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 put_disk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 kfree(md);
203 }
Arjan van de Vena621aae2006-01-12 18:43:35 +0000204 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Johan Rudholmadd710e2011-12-02 08:51:06 +0100207static ssize_t power_ro_lock_show(struct device *dev,
208 struct device_attribute *attr, char *buf)
209{
210 int ret;
211 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
212 struct mmc_card *card = md->queue.card;
213 int locked = 0;
214
215 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PERM_WP_EN)
216 locked = 2;
217 else if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_EN)
218 locked = 1;
219
220 ret = snprintf(buf, PAGE_SIZE, "%d\n", locked);
221
Tomas Winkler9098f842015-07-16 15:50:45 +0200222 mmc_blk_put(md);
223
Johan Rudholmadd710e2011-12-02 08:51:06 +0100224 return ret;
225}
226
227static ssize_t power_ro_lock_store(struct device *dev,
228 struct device_attribute *attr, const char *buf, size_t count)
229{
230 int ret;
231 struct mmc_blk_data *md, *part_md;
Linus Walleij0493f6f2017-05-19 15:37:30 +0200232 struct mmc_queue *mq;
233 struct request *req;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100234 unsigned long set;
235
236 if (kstrtoul(buf, 0, &set))
237 return -EINVAL;
238
239 if (set != 1)
240 return count;
241
242 md = mmc_blk_get(dev_to_disk(dev));
Linus Walleij0493f6f2017-05-19 15:37:30 +0200243 mq = &md->queue;
Johan Rudholmadd710e2011-12-02 08:51:06 +0100244
Linus Walleij0493f6f2017-05-19 15:37:30 +0200245 /* Dispatch locking to the block layer */
246 req = blk_get_request(mq->queue, REQ_OP_DRV_OUT, __GFP_RECLAIM);
Adrian Hunterfb8e456e2017-11-21 15:42:28 +0200247 if (IS_ERR(req)) {
248 count = PTR_ERR(req);
249 goto out_put;
250 }
Linus Walleij0493f6f2017-05-19 15:37:30 +0200251 req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_BOOT_WP;
252 blk_execute_rq(mq->queue, NULL, req, 0);
253 ret = req_to_mmc_queue_req(req)->drv_op_result;
Adrian Hunter34c089e2017-11-21 15:42:27 +0200254 blk_put_request(req);
Johan Rudholmadd710e2011-12-02 08:51:06 +0100255
256 if (!ret) {
257 pr_info("%s: Locking boot partition ro until next power on\n",
258 md->disk->disk_name);
259 set_disk_ro(md->disk, 1);
260
261 list_for_each_entry(part_md, &md->part, part)
262 if (part_md->area_type == MMC_BLK_DATA_AREA_BOOT) {
263 pr_info("%s: Locking boot partition ro until next power on\n", part_md->disk->disk_name);
264 set_disk_ro(part_md->disk, 1);
265 }
266 }
Adrian Hunterfb8e456e2017-11-21 15:42:28 +0200267out_put:
Johan Rudholmadd710e2011-12-02 08:51:06 +0100268 mmc_blk_put(md);
269 return count;
270}
271
Andrei Warkentin371a6892011-04-11 18:10:25 -0500272static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr,
273 char *buf)
274{
275 int ret;
276 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
277
Baruch Siach0031a982014-09-22 10:12:51 +0300278 ret = snprintf(buf, PAGE_SIZE, "%d\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -0500279 get_disk_ro(dev_to_disk(dev)) ^
280 md->read_only);
281 mmc_blk_put(md);
282 return ret;
283}
284
285static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr,
286 const char *buf, size_t count)
287{
288 int ret;
289 char *end;
290 struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev));
291 unsigned long set = simple_strtoul(buf, &end, 0);
292 if (end == buf) {
293 ret = -EINVAL;
294 goto out;
295 }
296
297 set_disk_ro(dev_to_disk(dev), set || md->read_only);
298 ret = count;
299out:
300 mmc_blk_put(md);
301 return ret;
302}
303
Al Viroa5a15612008-03-02 10:33:30 -0500304static int mmc_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Al Viroa5a15612008-03-02 10:33:30 -0500306 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 int ret = -ENXIO;
308
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200309 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (md) {
311 if (md->usage == 2)
Al Viroa5a15612008-03-02 10:33:30 -0500312 check_disk_change(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 ret = 0;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700314
Al Viroa5a15612008-03-02 10:33:30 -0500315 if ((mode & FMODE_WRITE) && md->read_only) {
Andrew Morton70bb0892008-09-05 14:00:24 -0700316 mmc_blk_put(md);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700317 ret = -EROFS;
Andrew Morton70bb0892008-09-05 14:00:24 -0700318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200320 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 return ret;
323}
324
Al Virodb2a1442013-05-05 21:52:57 -0400325static void mmc_blk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Al Viroa5a15612008-03-02 10:33:30 -0500327 struct mmc_blk_data *md = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200329 mutex_lock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 mmc_blk_put(md);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200331 mutex_unlock(&block_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800335mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800337 geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16);
338 geo->heads = 4;
339 geo->sectors = 16;
340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
John Calixtocb87ea22011-04-26 18:56:29 -0400343struct mmc_blk_ioc_data {
344 struct mmc_ioc_cmd ic;
345 unsigned char *buf;
346 u64 buf_bytes;
Linus Walleij97548572017-09-20 10:02:00 +0200347 struct mmc_rpmb_data *rpmb;
John Calixtocb87ea22011-04-26 18:56:29 -0400348};
349
350static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user(
351 struct mmc_ioc_cmd __user *user)
352{
353 struct mmc_blk_ioc_data *idata;
354 int err;
355
yalin wang1ff89502015-11-12 19:27:11 +0800356 idata = kmalloc(sizeof(*idata), GFP_KERNEL);
John Calixtocb87ea22011-04-26 18:56:29 -0400357 if (!idata) {
358 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400359 goto out;
John Calixtocb87ea22011-04-26 18:56:29 -0400360 }
361
362 if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) {
363 err = -EFAULT;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400364 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400365 }
366
367 idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks;
368 if (idata->buf_bytes > MMC_IOC_MAX_BYTES) {
369 err = -EOVERFLOW;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400370 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400371 }
372
Ville Viinikkabfe5b1b2016-07-08 18:27:02 +0300373 if (!idata->buf_bytes) {
374 idata->buf = NULL;
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100375 return idata;
Ville Viinikkabfe5b1b2016-07-08 18:27:02 +0300376 }
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100377
yalin wang1ff89502015-11-12 19:27:11 +0800378 idata->buf = kmalloc(idata->buf_bytes, GFP_KERNEL);
John Calixtocb87ea22011-04-26 18:56:29 -0400379 if (!idata->buf) {
380 err = -ENOMEM;
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400381 goto idata_err;
John Calixtocb87ea22011-04-26 18:56:29 -0400382 }
383
384 if (copy_from_user(idata->buf, (void __user *)(unsigned long)
385 idata->ic.data_ptr, idata->buf_bytes)) {
386 err = -EFAULT;
387 goto copy_err;
388 }
389
390 return idata;
391
392copy_err:
393 kfree(idata->buf);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400394idata_err:
John Calixtocb87ea22011-04-26 18:56:29 -0400395 kfree(idata);
Vladimir Motykaaea253e2011-05-11 00:00:43 -0400396out:
John Calixtocb87ea22011-04-26 18:56:29 -0400397 return ERR_PTR(err);
John Calixtocb87ea22011-04-26 18:56:29 -0400398}
399
Jon Huntera5f57742015-09-22 10:27:53 +0100400static int mmc_blk_ioctl_copy_to_user(struct mmc_ioc_cmd __user *ic_ptr,
401 struct mmc_blk_ioc_data *idata)
402{
403 struct mmc_ioc_cmd *ic = &idata->ic;
404
405 if (copy_to_user(&(ic_ptr->response), ic->response,
406 sizeof(ic->response)))
407 return -EFAULT;
408
409 if (!idata->ic.write_flag) {
410 if (copy_to_user((void __user *)(unsigned long)ic->data_ptr,
411 idata->buf, idata->buf_bytes))
412 return -EFAULT;
413 }
414
415 return 0;
416}
417
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200418static int ioctl_rpmb_card_status_poll(struct mmc_card *card, u32 *status,
419 u32 retries_max)
420{
421 int err;
422 u32 retry_count = 0;
423
424 if (!status || !retries_max)
425 return -EINVAL;
426
427 do {
Ulf Hansson2185bc22017-05-22 10:23:58 +0200428 err = __mmc_send_status(card, status, 5);
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200429 if (err)
430 break;
431
432 if (!R1_STATUS(*status) &&
433 (R1_CURRENT_STATE(*status) != R1_STATE_PRG))
434 break; /* RPMB programming operation complete */
435
436 /*
437 * Rechedule to give the MMC device a chance to continue
438 * processing the previous command without being polled too
439 * frequently.
440 */
441 usleep_range(1000, 5000);
442 } while (++retry_count < retries_max);
443
444 if (retry_count == retries_max)
445 err = -EPERM;
446
447 return err;
448}
449
Maya Erez775a9362013-04-18 15:41:55 +0300450static int ioctl_do_sanitize(struct mmc_card *card)
451{
452 int err;
453
Ulf Hanssona2d10862013-12-16 14:37:26 +0100454 if (!mmc_can_sanitize(card)) {
Maya Erez775a9362013-04-18 15:41:55 +0300455 pr_warn("%s: %s - SANITIZE is not supported\n",
456 mmc_hostname(card->host), __func__);
457 err = -EOPNOTSUPP;
458 goto out;
459 }
460
461 pr_debug("%s: %s - SANITIZE IN PROGRESS...\n",
462 mmc_hostname(card->host), __func__);
463
464 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
465 EXT_CSD_SANITIZE_START, 1,
466 MMC_SANITIZE_REQ_TIMEOUT);
467
468 if (err)
469 pr_err("%s: %s - EXT_CSD_SANITIZE_START failed. err=%d\n",
470 mmc_hostname(card->host), __func__, err);
471
472 pr_debug("%s: %s - SANITIZE COMPLETED\n", mmc_hostname(card->host),
473 __func__);
474out:
475 return err;
476}
477
Jon Huntera5f57742015-09-22 10:27:53 +0100478static int __mmc_blk_ioctl_cmd(struct mmc_card *card, struct mmc_blk_data *md,
479 struct mmc_blk_ioc_data *idata)
John Calixtocb87ea22011-04-26 18:56:29 -0400480{
Masahiro Yamadac7836d12016-12-19 20:51:18 +0900481 struct mmc_command cmd = {};
482 struct mmc_data data = {};
483 struct mmc_request mrq = {};
John Calixtocb87ea22011-04-26 18:56:29 -0400484 struct scatterlist sg;
485 int err;
Linus Walleij97548572017-09-20 10:02:00 +0200486 unsigned int target_part;
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200487 u32 status = 0;
John Calixtocb87ea22011-04-26 18:56:29 -0400488
Jon Huntera5f57742015-09-22 10:27:53 +0100489 if (!card || !md || !idata)
490 return -EINVAL;
John Calixtocb87ea22011-04-26 18:56:29 -0400491
Linus Walleij97548572017-09-20 10:02:00 +0200492 /*
493 * The RPMB accesses comes in from the character device, so we
494 * need to target these explicitly. Else we just target the
495 * partition type for the block device the ioctl() was issued
496 * on.
497 */
498 if (idata->rpmb) {
499 /* Support multiple RPMB partitions */
500 target_part = idata->rpmb->part_index;
501 target_part |= EXT_CSD_PART_CONFIG_ACC_RPMB;
502 } else {
503 target_part = md->part_type;
504 }
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200505
Johan Rudholm4d6144d2011-11-23 09:05:58 +0100506 cmd.opcode = idata->ic.opcode;
507 cmd.arg = idata->ic.arg;
508 cmd.flags = idata->ic.flags;
509
510 if (idata->buf_bytes) {
511 data.sg = &sg;
512 data.sg_len = 1;
513 data.blksz = idata->ic.blksz;
514 data.blocks = idata->ic.blocks;
515
516 sg_init_one(data.sg, idata->buf, idata->buf_bytes);
517
518 if (idata->ic.write_flag)
519 data.flags = MMC_DATA_WRITE;
520 else
521 data.flags = MMC_DATA_READ;
522
523 /* data.flags must already be set before doing this. */
524 mmc_set_data_timeout(&data, card);
525
526 /* Allow overriding the timeout_ns for empirical tuning. */
527 if (idata->ic.data_timeout_ns)
528 data.timeout_ns = idata->ic.data_timeout_ns;
529
530 if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) {
531 /*
532 * Pretend this is a data transfer and rely on the
533 * host driver to compute timeout. When all host
534 * drivers support cmd.cmd_timeout for R1B, this
535 * can be changed to:
536 *
537 * mrq.data = NULL;
538 * cmd.cmd_timeout = idata->ic.cmd_timeout_ms;
539 */
540 data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000;
541 }
542
543 mrq.data = &data;
544 }
545
546 mrq.cmd = &cmd;
547
Linus Walleij97548572017-09-20 10:02:00 +0200548 err = mmc_blk_part_switch(card, target_part);
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200549 if (err)
Jon Huntera5f57742015-09-22 10:27:53 +0100550 return err;
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200551
John Calixtocb87ea22011-04-26 18:56:29 -0400552 if (idata->ic.is_acmd) {
553 err = mmc_app_cmd(card->host, card);
554 if (err)
Jon Huntera5f57742015-09-22 10:27:53 +0100555 return err;
John Calixtocb87ea22011-04-26 18:56:29 -0400556 }
557
Linus Walleij97548572017-09-20 10:02:00 +0200558 if (idata->rpmb) {
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200559 err = mmc_set_blockcount(card, data.blocks,
560 idata->ic.write_flag & (1 << 31));
561 if (err)
Jon Huntera5f57742015-09-22 10:27:53 +0100562 return err;
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200563 }
564
Yaniv Gardia82e4842013-06-05 14:13:08 +0300565 if ((MMC_EXTRACT_INDEX_FROM_ARG(cmd.arg) == EXT_CSD_SANITIZE_START) &&
566 (cmd.opcode == MMC_SWITCH)) {
Maya Erez775a9362013-04-18 15:41:55 +0300567 err = ioctl_do_sanitize(card);
568
569 if (err)
570 pr_err("%s: ioctl_do_sanitize() failed. err = %d",
571 __func__, err);
572
Jon Huntera5f57742015-09-22 10:27:53 +0100573 return err;
Maya Erez775a9362013-04-18 15:41:55 +0300574 }
575
John Calixtocb87ea22011-04-26 18:56:29 -0400576 mmc_wait_for_req(card->host, &mrq);
577
578 if (cmd.error) {
579 dev_err(mmc_dev(card->host), "%s: cmd error %d\n",
580 __func__, cmd.error);
Jon Huntera5f57742015-09-22 10:27:53 +0100581 return cmd.error;
John Calixtocb87ea22011-04-26 18:56:29 -0400582 }
583 if (data.error) {
584 dev_err(mmc_dev(card->host), "%s: data error %d\n",
585 __func__, data.error);
Jon Huntera5f57742015-09-22 10:27:53 +0100586 return data.error;
John Calixtocb87ea22011-04-26 18:56:29 -0400587 }
588
589 /*
590 * According to the SD specs, some commands require a delay after
591 * issuing the command.
592 */
593 if (idata->ic.postsleep_min_us)
594 usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us);
595
Jon Huntera5f57742015-09-22 10:27:53 +0100596 memcpy(&(idata->ic.response), cmd.resp, sizeof(cmd.resp));
John Calixtocb87ea22011-04-26 18:56:29 -0400597
Linus Walleij97548572017-09-20 10:02:00 +0200598 if (idata->rpmb) {
Loic Pallardy8d1e9772012-08-06 17:12:31 +0200599 /*
600 * Ensure RPMB command has completed by polling CMD13
601 * "Send Status".
602 */
603 err = ioctl_rpmb_card_status_poll(card, &status, 5);
604 if (err)
605 dev_err(mmc_dev(card->host),
606 "%s: Card Status=0x%08X, error %d\n",
607 __func__, status, err);
608 }
609
Jon Huntera5f57742015-09-22 10:27:53 +0100610 return err;
611}
612
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200613static int mmc_blk_ioctl_cmd(struct mmc_blk_data *md,
Linus Walleij97548572017-09-20 10:02:00 +0200614 struct mmc_ioc_cmd __user *ic_ptr,
615 struct mmc_rpmb_data *rpmb)
Jon Huntera5f57742015-09-22 10:27:53 +0100616{
617 struct mmc_blk_ioc_data *idata;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200618 struct mmc_blk_ioc_data *idatas[1];
Linus Walleij614f0382017-05-18 11:29:34 +0200619 struct mmc_queue *mq;
Jon Huntera5f57742015-09-22 10:27:53 +0100620 struct mmc_card *card;
Grant Grundlerb0934102015-09-23 18:30:33 -0700621 int err = 0, ioc_err = 0;
Linus Walleij614f0382017-05-18 11:29:34 +0200622 struct request *req;
Jon Huntera5f57742015-09-22 10:27:53 +0100623
624 idata = mmc_blk_ioctl_copy_from_user(ic_ptr);
625 if (IS_ERR(idata))
626 return PTR_ERR(idata);
Linus Walleij97548572017-09-20 10:02:00 +0200627 /* This will be NULL on non-RPMB ioctl():s */
628 idata->rpmb = rpmb;
Jon Huntera5f57742015-09-22 10:27:53 +0100629
Jon Huntera5f57742015-09-22 10:27:53 +0100630 card = md->queue.card;
631 if (IS_ERR(card)) {
632 err = PTR_ERR(card);
633 goto cmd_done;
634 }
635
Linus Walleij614f0382017-05-18 11:29:34 +0200636 /*
637 * Dispatch the ioctl() into the block request queue.
638 */
639 mq = &md->queue;
640 req = blk_get_request(mq->queue,
641 idata->ic.write_flag ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN,
642 __GFP_RECLAIM);
Adrian Hunterfb8e456e2017-11-21 15:42:28 +0200643 if (IS_ERR(req)) {
644 err = PTR_ERR(req);
645 goto cmd_done;
646 }
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200647 idatas[0] = idata;
Linus Walleij97548572017-09-20 10:02:00 +0200648 req_to_mmc_queue_req(req)->drv_op =
649 rpmb ? MMC_DRV_OP_IOCTL_RPMB : MMC_DRV_OP_IOCTL;
Linus Walleij69f75992017-08-20 23:39:06 +0200650 req_to_mmc_queue_req(req)->drv_op_data = idatas;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200651 req_to_mmc_queue_req(req)->ioc_count = 1;
Linus Walleij614f0382017-05-18 11:29:34 +0200652 blk_execute_rq(mq->queue, NULL, req, 0);
Linus Walleij0493f6f2017-05-19 15:37:30 +0200653 ioc_err = req_to_mmc_queue_req(req)->drv_op_result;
Grant Grundlerb0934102015-09-23 18:30:33 -0700654 err = mmc_blk_ioctl_copy_to_user(ic_ptr, idata);
Linus Walleij614f0382017-05-18 11:29:34 +0200655 blk_put_request(req);
Jon Huntera5f57742015-09-22 10:27:53 +0100656
John Calixtocb87ea22011-04-26 18:56:29 -0400657cmd_done:
John Calixtocb87ea22011-04-26 18:56:29 -0400658 kfree(idata->buf);
659 kfree(idata);
Grant Grundlerb0934102015-09-23 18:30:33 -0700660 return ioc_err ? ioc_err : err;
John Calixtocb87ea22011-04-26 18:56:29 -0400661}
662
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200663static int mmc_blk_ioctl_multi_cmd(struct mmc_blk_data *md,
Linus Walleij97548572017-09-20 10:02:00 +0200664 struct mmc_ioc_multi_cmd __user *user,
665 struct mmc_rpmb_data *rpmb)
Jon Huntera5f57742015-09-22 10:27:53 +0100666{
667 struct mmc_blk_ioc_data **idata = NULL;
668 struct mmc_ioc_cmd __user *cmds = user->cmds;
669 struct mmc_card *card;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200670 struct mmc_queue *mq;
Grant Grundlerb0934102015-09-23 18:30:33 -0700671 int i, err = 0, ioc_err = 0;
Jon Huntera5f57742015-09-22 10:27:53 +0100672 __u64 num_of_cmds;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200673 struct request *req;
Jon Huntera5f57742015-09-22 10:27:53 +0100674
675 if (copy_from_user(&num_of_cmds, &user->num_of_cmds,
676 sizeof(num_of_cmds)))
677 return -EFAULT;
678
Geert Uytterhoevenaab2ee02017-07-05 17:09:42 +0200679 if (!num_of_cmds)
680 return 0;
681
Jon Huntera5f57742015-09-22 10:27:53 +0100682 if (num_of_cmds > MMC_IOC_MAX_CMDS)
683 return -EINVAL;
684
685 idata = kcalloc(num_of_cmds, sizeof(*idata), GFP_KERNEL);
686 if (!idata)
687 return -ENOMEM;
688
689 for (i = 0; i < num_of_cmds; i++) {
690 idata[i] = mmc_blk_ioctl_copy_from_user(&cmds[i]);
691 if (IS_ERR(idata[i])) {
692 err = PTR_ERR(idata[i]);
693 num_of_cmds = i;
694 goto cmd_err;
695 }
Linus Walleij97548572017-09-20 10:02:00 +0200696 /* This will be NULL on non-RPMB ioctl():s */
697 idata[i]->rpmb = rpmb;
Jon Huntera5f57742015-09-22 10:27:53 +0100698 }
699
Jon Huntera5f57742015-09-22 10:27:53 +0100700 card = md->queue.card;
701 if (IS_ERR(card)) {
702 err = PTR_ERR(card);
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200703 goto cmd_err;
Jon Huntera5f57742015-09-22 10:27:53 +0100704 }
705
Jon Huntera5f57742015-09-22 10:27:53 +0100706
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200707 /*
708 * Dispatch the ioctl()s into the block request queue.
709 */
710 mq = &md->queue;
711 req = blk_get_request(mq->queue,
712 idata[0]->ic.write_flag ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN,
713 __GFP_RECLAIM);
Adrian Hunterfb8e456e2017-11-21 15:42:28 +0200714 if (IS_ERR(req)) {
715 err = PTR_ERR(req);
716 goto cmd_err;
717 }
Linus Walleij97548572017-09-20 10:02:00 +0200718 req_to_mmc_queue_req(req)->drv_op =
719 rpmb ? MMC_DRV_OP_IOCTL_RPMB : MMC_DRV_OP_IOCTL;
Linus Walleij69f75992017-08-20 23:39:06 +0200720 req_to_mmc_queue_req(req)->drv_op_data = idata;
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200721 req_to_mmc_queue_req(req)->ioc_count = num_of_cmds;
722 blk_execute_rq(mq->queue, NULL, req, 0);
Linus Walleij0493f6f2017-05-19 15:37:30 +0200723 ioc_err = req_to_mmc_queue_req(req)->drv_op_result;
Jon Huntera5f57742015-09-22 10:27:53 +0100724
725 /* copy to user if data and response */
Grant Grundlerb0934102015-09-23 18:30:33 -0700726 for (i = 0; i < num_of_cmds && !err; i++)
Jon Huntera5f57742015-09-22 10:27:53 +0100727 err = mmc_blk_ioctl_copy_to_user(&cmds[i], idata[i]);
Jon Huntera5f57742015-09-22 10:27:53 +0100728
Linus Walleij3ecd8cf2017-05-18 11:29:35 +0200729 blk_put_request(req);
730
Jon Huntera5f57742015-09-22 10:27:53 +0100731cmd_err:
732 for (i = 0; i < num_of_cmds; i++) {
733 kfree(idata[i]->buf);
734 kfree(idata[i]);
735 }
736 kfree(idata);
Grant Grundlerb0934102015-09-23 18:30:33 -0700737 return ioc_err ? ioc_err : err;
Jon Huntera5f57742015-09-22 10:27:53 +0100738}
739
Linus Walleij61fe0e22017-08-20 23:39:09 +0200740static int mmc_blk_check_blkdev(struct block_device *bdev)
741{
742 /*
743 * The caller must have CAP_SYS_RAWIO, and must be calling this on the
744 * whole block device, not on a partition. This prevents overspray
745 * between sibling partitions.
746 */
747 if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains))
748 return -EPERM;
749 return 0;
750}
751
John Calixtocb87ea22011-04-26 18:56:29 -0400752static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode,
753 unsigned int cmd, unsigned long arg)
754{
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200755 struct mmc_blk_data *md;
Linus Walleij61fe0e22017-08-20 23:39:09 +0200756 int ret;
757
Jon Huntera5f57742015-09-22 10:27:53 +0100758 switch (cmd) {
759 case MMC_IOC_CMD:
Linus Walleij61fe0e22017-08-20 23:39:09 +0200760 ret = mmc_blk_check_blkdev(bdev);
761 if (ret)
762 return ret;
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200763 md = mmc_blk_get(bdev->bd_disk);
764 if (!md)
765 return -EINVAL;
766 ret = mmc_blk_ioctl_cmd(md,
Linus Walleij97548572017-09-20 10:02:00 +0200767 (struct mmc_ioc_cmd __user *)arg,
768 NULL);
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200769 mmc_blk_put(md);
770 return ret;
Jon Huntera5f57742015-09-22 10:27:53 +0100771 case MMC_IOC_MULTI_CMD:
Linus Walleij61fe0e22017-08-20 23:39:09 +0200772 ret = mmc_blk_check_blkdev(bdev);
773 if (ret)
774 return ret;
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200775 md = mmc_blk_get(bdev->bd_disk);
776 if (!md)
777 return -EINVAL;
778 ret = mmc_blk_ioctl_multi_cmd(md,
Linus Walleij97548572017-09-20 10:02:00 +0200779 (struct mmc_ioc_multi_cmd __user *)arg,
780 NULL);
Linus Walleij2fe20ba2017-08-20 23:39:11 +0200781 mmc_blk_put(md);
782 return ret;
Jon Huntera5f57742015-09-22 10:27:53 +0100783 default:
784 return -EINVAL;
785 }
John Calixtocb87ea22011-04-26 18:56:29 -0400786}
787
788#ifdef CONFIG_COMPAT
789static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode,
790 unsigned int cmd, unsigned long arg)
791{
792 return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg));
793}
794#endif
795
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700796static const struct block_device_operations mmc_bdops = {
Al Viroa5a15612008-03-02 10:33:30 -0500797 .open = mmc_blk_open,
798 .release = mmc_blk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800799 .getgeo = mmc_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 .owner = THIS_MODULE,
John Calixtocb87ea22011-04-26 18:56:29 -0400801 .ioctl = mmc_blk_ioctl,
802#ifdef CONFIG_COMPAT
803 .compat_ioctl = mmc_blk_compat_ioctl,
804#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805};
806
Adrian Hunter025e3d52017-03-13 14:36:39 +0200807static int mmc_blk_part_switch_pre(struct mmc_card *card,
808 unsigned int part_type)
809{
810 int ret = 0;
811
812 if (part_type == EXT_CSD_PART_CONFIG_ACC_RPMB) {
813 if (card->ext_csd.cmdq_en) {
814 ret = mmc_cmdq_disable(card);
815 if (ret)
816 return ret;
817 }
818 mmc_retune_pause(card->host);
819 }
820
821 return ret;
822}
823
824static int mmc_blk_part_switch_post(struct mmc_card *card,
825 unsigned int part_type)
826{
827 int ret = 0;
828
829 if (part_type == EXT_CSD_PART_CONFIG_ACC_RPMB) {
830 mmc_retune_unpause(card->host);
831 if (card->reenable_cmdq && !card->ext_csd.cmdq_en)
832 ret = mmc_cmdq_enable(card);
833 }
834
835 return ret;
836}
837
Andrei Warkentin371a6892011-04-11 18:10:25 -0500838static inline int mmc_blk_part_switch(struct mmc_card *card,
Linus Walleij1f797ed2017-08-20 23:39:10 +0200839 unsigned int part_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500840{
Adrian Hunter025e3d52017-03-13 14:36:39 +0200841 int ret = 0;
Ulf Hanssonfc95e302014-10-06 14:34:09 +0200842 struct mmc_blk_data *main_md = dev_get_drvdata(&card->dev);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300843
Linus Walleij1f797ed2017-08-20 23:39:10 +0200844 if (main_md->part_curr == part_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -0500845 return 0;
846
847 if (mmc_card_mmc(card)) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300848 u8 part_config = card->ext_csd.part_config;
849
Linus Walleij1f797ed2017-08-20 23:39:10 +0200850 ret = mmc_blk_part_switch_pre(card, part_type);
Adrian Hunter025e3d52017-03-13 14:36:39 +0200851 if (ret)
852 return ret;
Adrian Hunter57da0c02016-05-04 14:38:13 +0300853
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300854 part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
Linus Walleij1f797ed2017-08-20 23:39:10 +0200855 part_config |= part_type;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500856
857 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300858 EXT_CSD_PART_CONFIG, part_config,
Andrei Warkentin371a6892011-04-11 18:10:25 -0500859 card->ext_csd.part_time);
Adrian Hunter57da0c02016-05-04 14:38:13 +0300860 if (ret) {
Linus Walleij1f797ed2017-08-20 23:39:10 +0200861 mmc_blk_part_switch_post(card, part_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -0500862 return ret;
Adrian Hunter57da0c02016-05-04 14:38:13 +0300863 }
Adrian Hunter0d7d85c2011-09-23 12:48:20 +0300864
865 card->ext_csd.part_config = part_config;
Adrian Hunter57da0c02016-05-04 14:38:13 +0300866
Adrian Hunter025e3d52017-03-13 14:36:39 +0200867 ret = mmc_blk_part_switch_post(card, main_md->part_curr);
Adrian Hunter67716322011-08-29 16:42:15 +0300868 }
Andrei Warkentin371a6892011-04-11 18:10:25 -0500869
Linus Walleij1f797ed2017-08-20 23:39:10 +0200870 main_md->part_curr = part_type;
Adrian Hunter025e3d52017-03-13 14:36:39 +0200871 return ret;
Andrei Warkentin371a6892011-04-11 18:10:25 -0500872}
873
Linus Walleij169f03a2017-02-01 13:47:57 +0100874static int mmc_sd_num_wr_blocks(struct mmc_card *card, u32 *written_blocks)
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700875{
876 int err;
Ben Dooks051913d2009-06-08 23:33:57 +0100877 u32 result;
878 __be32 *blocks;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700879
Masahiro Yamadac7836d12016-12-19 20:51:18 +0900880 struct mmc_request mrq = {};
881 struct mmc_command cmd = {};
882 struct mmc_data data = {};
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700883
884 struct scatterlist sg;
885
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700886 cmd.opcode = MMC_APP_CMD;
887 cmd.arg = card->rca << 16;
David Brownell7213d172007-08-08 09:10:23 -0700888 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700889
890 err = mmc_wait_for_cmd(card->host, &cmd, 0);
David Brownell7213d172007-08-08 09:10:23 -0700891 if (err)
Linus Walleij169f03a2017-02-01 13:47:57 +0100892 return err;
David Brownell7213d172007-08-08 09:10:23 -0700893 if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD))
Linus Walleij169f03a2017-02-01 13:47:57 +0100894 return -EIO;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700895
896 memset(&cmd, 0, sizeof(struct mmc_command));
897
898 cmd.opcode = SD_APP_SEND_NUM_WR_BLKS;
899 cmd.arg = 0;
David Brownell7213d172007-08-08 09:10:23 -0700900 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700901
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700902 data.blksz = 4;
903 data.blocks = 1;
904 data.flags = MMC_DATA_READ;
905 data.sg = &sg;
906 data.sg_len = 1;
Subhash Jadavanid3804432012-06-13 17:10:43 +0530907 mmc_set_data_timeout(&data, card);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700908
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700909 mrq.cmd = &cmd;
910 mrq.data = &data;
911
Ben Dooks051913d2009-06-08 23:33:57 +0100912 blocks = kmalloc(4, GFP_KERNEL);
913 if (!blocks)
Linus Walleij169f03a2017-02-01 13:47:57 +0100914 return -ENOMEM;
Ben Dooks051913d2009-06-08 23:33:57 +0100915
916 sg_init_one(&sg, blocks, 4);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700917
918 mmc_wait_for_req(card->host, &mrq);
919
Ben Dooks051913d2009-06-08 23:33:57 +0100920 result = ntohl(*blocks);
921 kfree(blocks);
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700922
Ben Dooks051913d2009-06-08 23:33:57 +0100923 if (cmd.error || data.error)
Linus Walleij169f03a2017-02-01 13:47:57 +0100924 return -EIO;
Ben Dooks051913d2009-06-08 23:33:57 +0100925
Linus Walleij169f03a2017-02-01 13:47:57 +0100926 *written_blocks = result;
927
928 return 0;
Pierre Ossmanec5a19d2006-10-06 00:44:03 -0700929}
930
Adrian Hunter92c0a0cc2017-11-29 15:41:13 +0200931static unsigned int mmc_blk_clock_khz(struct mmc_host *host)
932{
933 if (host->actual_clock)
934 return host->actual_clock / 1000;
935
936 /* Clock may be subject to a divisor, fudge it by a factor of 2. */
937 if (host->ios.clock)
938 return host->ios.clock / 2000;
939
940 /* How can there be no clock */
941 WARN_ON_ONCE(1);
942 return 100; /* 100 kHz is minimum possible value */
943}
944
945static unsigned int mmc_blk_data_timeout_ms(struct mmc_host *host,
946 struct mmc_data *data)
947{
948 unsigned int ms = DIV_ROUND_UP(data->timeout_ns, 1000000);
949 unsigned int khz;
950
951 if (data->timeout_clks) {
952 khz = mmc_blk_clock_khz(host);
953 ms += DIV_ROUND_UP(data->timeout_clks, khz);
954 }
955
956 return ms;
957}
958
Adrian Hunter0987c6b2017-11-29 15:41:12 +0200959static inline bool mmc_blk_in_tran_state(u32 status)
960{
961 /*
962 * Some cards mishandle the status bits, so make sure to check both the
963 * busy indication and the card state.
964 */
965 return status & R1_READY_FOR_DATA &&
966 (R1_CURRENT_STATE(status) == R1_STATE_TRAN);
967}
968
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100969static int card_busy_detect(struct mmc_card *card, unsigned int timeout_ms,
Adrian Hunterc89b4852017-11-29 15:41:09 +0200970 bool hw_busy_detect, struct request *req,
971 u32 *resp_errs)
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100972{
973 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
974 int err = 0;
975 u32 status;
976
977 do {
Adrian Hunter77018852017-11-29 15:41:11 +0200978 bool done = time_after(jiffies, timeout);
979
Ulf Hansson2185bc22017-05-22 10:23:58 +0200980 err = __mmc_send_status(card, &status, 5);
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100981 if (err) {
982 pr_err("%s: error %d requesting status\n",
983 req->rq_disk->disk_name, err);
984 return err;
985 }
986
Adrian Hunterc89b4852017-11-29 15:41:09 +0200987 /* Accumulate any response error bits seen */
988 if (resp_errs)
989 *resp_errs |= status;
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100990
Ulf Hansson95a91292014-01-29 13:11:27 +0100991 /* We may rely on the host hw to handle busy detection.*/
992 if ((card->host->caps & MMC_CAP_WAIT_WHILE_BUSY) &&
993 hw_busy_detect)
994 break;
995
Ulf Hanssonc49433f2014-01-29 11:01:55 +0100996 /*
997 * Timeout if the device never becomes ready for data and never
998 * leaves the program state.
999 */
Adrian Hunter77018852017-11-29 15:41:11 +02001000 if (done) {
Adrian Hunter0987c6b2017-11-29 15:41:12 +02001001 pr_err("%s: Card stuck in wrong state! %s %s status: %#x\n",
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001002 mmc_hostname(card->host),
Adrian Hunter0987c6b2017-11-29 15:41:12 +02001003 req->rq_disk->disk_name, __func__, status);
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001004 return -ETIMEDOUT;
1005 }
1006
1007 /*
1008 * Some cards mishandle the status bits,
1009 * so make sure to check both the busy
1010 * indication and the card state.
1011 */
Adrian Hunter0987c6b2017-11-29 15:41:12 +02001012 } while (!mmc_blk_in_tran_state(status));
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001013
1014 return err;
1015}
1016
Adrian Hunterc89b4852017-11-29 15:41:09 +02001017static int card_busy_detect_err(struct mmc_card *card, unsigned int timeout_ms,
1018 bool hw_busy_detect, struct request *req,
1019 bool *gen_err)
1020{
1021 u32 resp_errs = 0;
1022 int err;
1023
1024 err = card_busy_detect(card, timeout_ms, hw_busy_detect, req,
1025 &resp_errs);
1026 if (resp_errs & R1_ERROR) {
1027 pr_err("%s: %s: error sending status cmd, status %#x\n",
1028 req->rq_disk->disk_name, __func__, resp_errs);
1029 *gen_err = true;
1030 }
1031
1032 return err;
1033}
1034
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001035static int send_stop(struct mmc_card *card, unsigned int timeout_ms,
Linus Walleijc44d6ce2016-11-04 11:05:17 +01001036 struct request *req, bool *gen_err, u32 *stop_status)
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001037{
1038 struct mmc_host *host = card->host;
Masahiro Yamadac7836d12016-12-19 20:51:18 +09001039 struct mmc_command cmd = {};
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001040 int err;
1041 bool use_r1b_resp = rq_data_dir(req) == WRITE;
1042
1043 /*
1044 * Normally we use R1B responses for WRITE, but in cases where the host
1045 * has specified a max_busy_timeout we need to validate it. A failure
1046 * means we need to prevent the host from doing hw busy detection, which
1047 * is done by converting to a R1 response instead.
1048 */
1049 if (host->max_busy_timeout && (timeout_ms > host->max_busy_timeout))
1050 use_r1b_resp = false;
1051
1052 cmd.opcode = MMC_STOP_TRANSMISSION;
1053 if (use_r1b_resp) {
1054 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1055 cmd.busy_timeout = timeout_ms;
1056 } else {
1057 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1058 }
1059
1060 err = mmc_wait_for_cmd(host, &cmd, 5);
1061 if (err)
1062 return err;
1063
1064 *stop_status = cmd.resp[0];
1065
1066 /* No need to check card status in case of READ. */
1067 if (rq_data_dir(req) == READ)
1068 return 0;
1069
1070 if (!mmc_host_is_spi(host) &&
1071 (*stop_status & R1_ERROR)) {
1072 pr_err("%s: %s: general error sending stop command, resp %#x\n",
1073 req->rq_disk->disk_name, __func__, *stop_status);
Linus Walleijc44d6ce2016-11-04 11:05:17 +01001074 *gen_err = true;
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001075 }
1076
Adrian Hunterc89b4852017-11-29 15:41:09 +02001077 return card_busy_detect_err(card, timeout_ms, use_r1b_resp, req,
1078 gen_err);
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001079}
1080
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301081#define ERR_NOMEDIUM 3
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001082#define ERR_RETRY 2
1083#define ERR_ABORT 1
1084#define ERR_CONTINUE 0
1085
1086static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
1087 bool status_valid, u32 status)
1088{
1089 switch (error) {
1090 case -EILSEQ:
1091 /* response crc error, retry the r/w cmd */
1092 pr_err("%s: %s sending %s command, card status %#x\n",
1093 req->rq_disk->disk_name, "response CRC error",
1094 name, status);
1095 return ERR_RETRY;
1096
1097 case -ETIMEDOUT:
1098 pr_err("%s: %s sending %s command, card status %#x\n",
1099 req->rq_disk->disk_name, "timed out", name, status);
1100
1101 /* If the status cmd initially failed, retry the r/w cmd */
Ken Sumrallcc4d04b2016-05-10 14:53:13 +05301102 if (!status_valid) {
1103 pr_err("%s: status not valid, retrying timeout\n",
1104 req->rq_disk->disk_name);
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001105 return ERR_RETRY;
Ken Sumrallcc4d04b2016-05-10 14:53:13 +05301106 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001107
1108 /*
1109 * If it was a r/w cmd crc error, or illegal command
1110 * (eg, issued in wrong state) then retry - we should
1111 * have corrected the state problem above.
1112 */
Ken Sumrallcc4d04b2016-05-10 14:53:13 +05301113 if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND)) {
1114 pr_err("%s: command error, retrying timeout\n",
1115 req->rq_disk->disk_name);
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001116 return ERR_RETRY;
Ken Sumrallcc4d04b2016-05-10 14:53:13 +05301117 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001118
1119 /* Otherwise abort the command */
1120 return ERR_ABORT;
1121
1122 default:
1123 /* We don't understand the error code the driver gave us */
1124 pr_err("%s: unknown error %d sending read/write command, card status %#x\n",
1125 req->rq_disk->disk_name, error, status);
1126 return ERR_ABORT;
1127 }
1128}
1129
1130/*
1131 * Initial r/w and stop cmd error recovery.
1132 * We don't know whether the card received the r/w cmd or not, so try to
1133 * restore things back to a sane state. Essentially, we do this as follows:
1134 * - Obtain card status. If the first attempt to obtain card status fails,
1135 * the status word will reflect the failed status cmd, not the failed
1136 * r/w cmd. If we fail to obtain card status, it suggests we can no
1137 * longer communicate with the card.
1138 * - Check the card state. If the card received the cmd but there was a
1139 * transient problem with the response, it might still be in a data transfer
1140 * mode. Try to send it a stop command. If this fails, we can't recover.
1141 * - If the r/w cmd failed due to a response CRC error, it was probably
1142 * transient, so retry the cmd.
1143 * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry.
1144 * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or
1145 * illegal cmd, retry.
1146 * Otherwise we don't understand what happened, so abort.
1147 */
1148static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req,
Linus Walleij2cc64582016-11-04 11:05:18 +01001149 struct mmc_blk_request *brq, bool *ecc_err, bool *gen_err)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001150{
1151 bool prev_cmd_status_valid = true;
1152 u32 status, stop_status = 0;
1153 int err, retry;
1154
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301155 if (mmc_card_removed(card))
1156 return ERR_NOMEDIUM;
1157
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001158 /*
1159 * Try to get card status which indicates both the card state
1160 * and why there was no response. If the first attempt fails,
1161 * we can't be sure the returned status is for the r/w command.
1162 */
1163 for (retry = 2; retry >= 0; retry--) {
Ulf Hansson2185bc22017-05-22 10:23:58 +02001164 err = __mmc_send_status(card, &status, 0);
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001165 if (!err)
1166 break;
1167
Adrian Hunter6f398ad2015-05-07 13:10:23 +03001168 /* Re-tune if needed */
1169 mmc_retune_recheck(card->host);
1170
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001171 prev_cmd_status_valid = false;
1172 pr_err("%s: error %d sending status command, %sing\n",
1173 req->rq_disk->disk_name, err, retry ? "retry" : "abort");
1174 }
1175
1176 /* We couldn't get a response from the card. Give up. */
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301177 if (err) {
1178 /* Check if the card is removed */
1179 if (mmc_detect_card_removed(card->host))
1180 return ERR_NOMEDIUM;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001181 return ERR_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301182 }
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001183
Adrian Hunter67716322011-08-29 16:42:15 +03001184 /* Flag ECC errors */
1185 if ((status & R1_CARD_ECC_FAILED) ||
1186 (brq->stop.resp[0] & R1_CARD_ECC_FAILED) ||
1187 (brq->cmd.resp[0] & R1_CARD_ECC_FAILED))
Linus Walleij2cc64582016-11-04 11:05:18 +01001188 *ecc_err = true;
Adrian Hunter67716322011-08-29 16:42:15 +03001189
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001190 /* Flag General errors */
1191 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ)
1192 if ((status & R1_ERROR) ||
1193 (brq->stop.resp[0] & R1_ERROR)) {
1194 pr_err("%s: %s: general error sending stop or status command, stop cmd response %#x, card status %#x\n",
1195 req->rq_disk->disk_name, __func__,
1196 brq->stop.resp[0], status);
Linus Walleijc44d6ce2016-11-04 11:05:17 +01001197 *gen_err = true;
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001198 }
1199
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001200 /*
1201 * Check the current card state. If it is in some data transfer
1202 * mode, tell it to stop (and hopefully transition back to TRAN.)
1203 */
1204 if (R1_CURRENT_STATE(status) == R1_STATE_DATA ||
1205 R1_CURRENT_STATE(status) == R1_STATE_RCV) {
Adrian Hunter92c0a0cc2017-11-29 15:41:13 +02001206 unsigned int timeout;
1207
1208 timeout = mmc_blk_data_timeout_ms(card->host, &brq->data);
1209 err = send_stop(card, timeout, req, gen_err, &stop_status);
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001210 if (err) {
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001211 pr_err("%s: error %d sending stop command\n",
1212 req->rq_disk->disk_name, err);
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001213 /*
1214 * If the stop cmd also timed out, the card is probably
1215 * not present, so abort. Other errors are bad news too.
1216 */
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001217 return ERR_ABORT;
Ulf Hanssonbb5cba42014-01-14 21:31:35 +01001218 }
1219
Adrian Hunter67716322011-08-29 16:42:15 +03001220 if (stop_status & R1_CARD_ECC_FAILED)
Linus Walleij2cc64582016-11-04 11:05:18 +01001221 *ecc_err = true;
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001222 }
1223
1224 /* Check for set block count errors */
1225 if (brq->sbc.error)
1226 return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error,
1227 prev_cmd_status_valid, status);
1228
1229 /* Check for r/w command errors */
1230 if (brq->cmd.error)
1231 return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error,
1232 prev_cmd_status_valid, status);
1233
Adrian Hunter67716322011-08-29 16:42:15 +03001234 /* Data errors */
1235 if (!brq->stop.error)
1236 return ERR_CONTINUE;
1237
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01001238 /* Now for stop errors. These aren't fatal to the transfer. */
Johan Rudholm5e1344e2014-09-17 09:50:42 +02001239 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 +01001240 req->rq_disk->disk_name, brq->stop.error,
1241 brq->cmd.resp[0], status);
1242
1243 /*
1244 * Subsitute in our own stop status as this will give the error
1245 * state which happened during the execution of the r/w command.
1246 */
1247 if (stop_status) {
1248 brq->stop.resp[0] = stop_status;
1249 brq->stop.error = 0;
1250 }
1251 return ERR_CONTINUE;
1252}
1253
Adrian Hunter67716322011-08-29 16:42:15 +03001254static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host,
1255 int type)
1256{
1257 int err;
1258
1259 if (md->reset_done & type)
1260 return -EEXIST;
1261
1262 md->reset_done |= type;
1263 err = mmc_hw_reset(host);
1264 /* Ensure we switch back to the correct partition */
1265 if (err != -EOPNOTSUPP) {
Ulf Hanssonfc95e302014-10-06 14:34:09 +02001266 struct mmc_blk_data *main_md =
1267 dev_get_drvdata(&host->card->dev);
Adrian Hunter67716322011-08-29 16:42:15 +03001268 int part_err;
1269
1270 main_md->part_curr = main_md->part_type;
Linus Walleij1f797ed2017-08-20 23:39:10 +02001271 part_err = mmc_blk_part_switch(host->card, md->part_type);
Adrian Hunter67716322011-08-29 16:42:15 +03001272 if (part_err) {
1273 /*
1274 * We have failed to get back into the correct
1275 * partition, so we need to abort the whole request.
1276 */
1277 return -ENODEV;
1278 }
1279 }
1280 return err;
1281}
1282
1283static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type)
1284{
1285 md->reset_done &= ~type;
1286}
1287
Adrian Hunter81196972017-11-29 15:41:03 +02001288static void mmc_blk_end_request(struct request *req, blk_status_t error)
1289{
1290 if (req->mq_ctx)
1291 blk_mq_end_request(req, error);
1292 else
1293 blk_end_request_all(req, error);
1294}
1295
Linus Walleij5ec12392017-05-19 15:37:29 +02001296/*
1297 * The non-block commands come back from the block layer after it queued it and
1298 * processed it with all other requests and then they get issued in this
1299 * function.
1300 */
1301static void mmc_blk_issue_drv_op(struct mmc_queue *mq, struct request *req)
1302{
1303 struct mmc_queue_req *mq_rq;
1304 struct mmc_card *card = mq->card;
1305 struct mmc_blk_data *md = mq->blkdata;
Linus Walleij69f75992017-08-20 23:39:06 +02001306 struct mmc_blk_ioc_data **idata;
Linus Walleij97548572017-09-20 10:02:00 +02001307 bool rpmb_ioctl;
Linus Walleij627c3cc2017-08-20 23:39:08 +02001308 u8 **ext_csd;
1309 u32 status;
Linus Walleij0493f6f2017-05-19 15:37:30 +02001310 int ret;
Linus Walleij5ec12392017-05-19 15:37:29 +02001311 int i;
1312
1313 mq_rq = req_to_mmc_queue_req(req);
Linus Walleij97548572017-09-20 10:02:00 +02001314 rpmb_ioctl = (mq_rq->drv_op == MMC_DRV_OP_IOCTL_RPMB);
Linus Walleij5ec12392017-05-19 15:37:29 +02001315
1316 switch (mq_rq->drv_op) {
1317 case MMC_DRV_OP_IOCTL:
Linus Walleij97548572017-09-20 10:02:00 +02001318 case MMC_DRV_OP_IOCTL_RPMB:
Linus Walleij69f75992017-08-20 23:39:06 +02001319 idata = mq_rq->drv_op_data;
Geert Uytterhoeven7432b492017-07-05 17:09:41 +02001320 for (i = 0, ret = 0; i < mq_rq->ioc_count; i++) {
Linus Walleij69f75992017-08-20 23:39:06 +02001321 ret = __mmc_blk_ioctl_cmd(card, md, idata[i]);
Linus Walleij0493f6f2017-05-19 15:37:30 +02001322 if (ret)
Linus Walleij5ec12392017-05-19 15:37:29 +02001323 break;
1324 }
Linus Walleij5ec12392017-05-19 15:37:29 +02001325 /* Always switch back to main area after RPMB access */
Linus Walleij97548572017-09-20 10:02:00 +02001326 if (rpmb_ioctl)
1327 mmc_blk_part_switch(card, 0);
Linus Walleij0493f6f2017-05-19 15:37:30 +02001328 break;
1329 case MMC_DRV_OP_BOOT_WP:
1330 ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP,
1331 card->ext_csd.boot_ro_lock |
1332 EXT_CSD_BOOT_WP_B_PWR_WP_EN,
1333 card->ext_csd.part_time);
1334 if (ret)
1335 pr_err("%s: Locking boot partition ro until next power on failed: %d\n",
1336 md->disk->disk_name, ret);
1337 else
1338 card->ext_csd.boot_ro_lock |=
1339 EXT_CSD_BOOT_WP_B_PWR_WP_EN;
Linus Walleij5ec12392017-05-19 15:37:29 +02001340 break;
Linus Walleij627c3cc2017-08-20 23:39:08 +02001341 case MMC_DRV_OP_GET_CARD_STATUS:
1342 ret = mmc_send_status(card, &status);
1343 if (!ret)
1344 ret = status;
1345 break;
1346 case MMC_DRV_OP_GET_EXT_CSD:
1347 ext_csd = mq_rq->drv_op_data;
1348 ret = mmc_get_ext_csd(card, ext_csd);
1349 break;
Linus Walleij5ec12392017-05-19 15:37:29 +02001350 default:
Linus Walleij0493f6f2017-05-19 15:37:30 +02001351 pr_err("%s: unknown driver specific operation\n",
1352 md->disk->disk_name);
1353 ret = -EINVAL;
Linus Walleij5ec12392017-05-19 15:37:29 +02001354 break;
1355 }
Linus Walleij0493f6f2017-05-19 15:37:30 +02001356 mq_rq->drv_op_result = ret;
Adrian Hunter81196972017-11-29 15:41:03 +02001357 mmc_blk_end_request(req, ret ? BLK_STS_IOERR : BLK_STS_OK);
Linus Walleij5ec12392017-05-19 15:37:29 +02001358}
1359
Linus Walleijdf061582017-01-24 11:17:57 +01001360static void mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req)
Adrian Hunterbd788c92010-08-11 14:17:47 -07001361{
Linus Walleij7db30282016-11-18 13:36:15 +01001362 struct mmc_blk_data *md = mq->blkdata;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001363 struct mmc_card *card = md->queue.card;
1364 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +03001365 int err = 0, type = MMC_BLK_DISCARD;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001366 blk_status_t status = BLK_STS_OK;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001367
Adrian Hunterbd788c92010-08-11 14:17:47 -07001368 if (!mmc_can_erase(card)) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001369 status = BLK_STS_NOTSUPP;
Geert Uytterhoeven8cb6ed12016-12-19 15:03:44 +01001370 goto fail;
Adrian Hunterbd788c92010-08-11 14:17:47 -07001371 }
1372
1373 from = blk_rq_pos(req);
1374 nr = blk_rq_sectors(req);
1375
Kyungmin Parkb3bf9152011-10-18 09:34:04 +09001376 if (mmc_can_discard(card))
1377 arg = MMC_DISCARD_ARG;
1378 else if (mmc_can_trim(card))
Adrian Hunterbd788c92010-08-11 14:17:47 -07001379 arg = MMC_TRIM_ARG;
1380 else
1381 arg = MMC_ERASE_ARG;
Geert Uytterhoeven164b50b2016-12-19 15:03:45 +01001382 do {
1383 err = 0;
1384 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1385 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1386 INAND_CMD38_ARG_EXT_CSD,
1387 arg == MMC_TRIM_ARG ?
1388 INAND_CMD38_ARG_TRIM :
1389 INAND_CMD38_ARG_ERASE,
1390 0);
1391 }
1392 if (!err)
1393 err = mmc_erase(card, from, nr, arg);
1394 } while (err == -EIO && !mmc_blk_reset(md, card->host, type));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001395 if (err)
1396 status = BLK_STS_IOERR;
1397 else
Adrian Hunter67716322011-08-29 16:42:15 +03001398 mmc_blk_reset_success(md, type);
Geert Uytterhoeven8cb6ed12016-12-19 15:03:44 +01001399fail:
Adrian Hunter81196972017-11-29 15:41:03 +02001400 mmc_blk_end_request(req, status);
Adrian Hunterbd788c92010-08-11 14:17:47 -07001401}
1402
Linus Walleijdf061582017-01-24 11:17:57 +01001403static void mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq,
Adrian Hunter49804542010-08-11 14:17:50 -07001404 struct request *req)
1405{
Linus Walleij7db30282016-11-18 13:36:15 +01001406 struct mmc_blk_data *md = mq->blkdata;
Adrian Hunter49804542010-08-11 14:17:50 -07001407 struct mmc_card *card = md->queue.card;
Maya Erez775a9362013-04-18 15:41:55 +03001408 unsigned int from, nr, arg;
Adrian Hunter67716322011-08-29 16:42:15 +03001409 int err = 0, type = MMC_BLK_SECDISCARD;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001410 blk_status_t status = BLK_STS_OK;
Adrian Hunter49804542010-08-11 14:17:50 -07001411
Maya Erez775a9362013-04-18 15:41:55 +03001412 if (!(mmc_can_secure_erase_trim(card))) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001413 status = BLK_STS_NOTSUPP;
Adrian Hunter49804542010-08-11 14:17:50 -07001414 goto out;
1415 }
1416
1417 from = blk_rq_pos(req);
1418 nr = blk_rq_sectors(req);
1419
Maya Erez775a9362013-04-18 15:41:55 +03001420 if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr))
1421 arg = MMC_SECURE_TRIM1_ARG;
1422 else
1423 arg = MMC_SECURE_ERASE_ARG;
Adrian Hunter28302812012-04-05 14:45:48 +03001424
Adrian Hunter67716322011-08-29 16:42:15 +03001425retry:
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001426 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1427 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1428 INAND_CMD38_ARG_EXT_CSD,
1429 arg == MMC_SECURE_TRIM1_ARG ?
1430 INAND_CMD38_ARG_SECTRIM1 :
1431 INAND_CMD38_ARG_SECERASE,
1432 0);
1433 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001434 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001435 }
Adrian Hunter28302812012-04-05 14:45:48 +03001436
Adrian Hunter49804542010-08-11 14:17:50 -07001437 err = mmc_erase(card, from, nr, arg);
Adrian Hunter28302812012-04-05 14:45:48 +03001438 if (err == -EIO)
1439 goto out_retry;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001440 if (err) {
1441 status = BLK_STS_IOERR;
Adrian Hunter28302812012-04-05 14:45:48 +03001442 goto out;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001443 }
Adrian Hunter28302812012-04-05 14:45:48 +03001444
1445 if (arg == MMC_SECURE_TRIM1_ARG) {
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001446 if (card->quirks & MMC_QUIRK_INAND_CMD38) {
1447 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1448 INAND_CMD38_ARG_EXT_CSD,
1449 INAND_CMD38_ARG_SECTRIM2,
1450 0);
1451 if (err)
Adrian Hunter28302812012-04-05 14:45:48 +03001452 goto out_retry;
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001453 }
Adrian Hunter28302812012-04-05 14:45:48 +03001454
Adrian Hunter49804542010-08-11 14:17:50 -07001455 err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG);
Adrian Hunter28302812012-04-05 14:45:48 +03001456 if (err == -EIO)
1457 goto out_retry;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001458 if (err) {
1459 status = BLK_STS_IOERR;
Adrian Hunter28302812012-04-05 14:45:48 +03001460 goto out;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001461 }
Andrei Warkentin6a7a6b42011-04-12 15:06:53 -05001462 }
Adrian Hunter28302812012-04-05 14:45:48 +03001463
Adrian Hunter28302812012-04-05 14:45:48 +03001464out_retry:
1465 if (err && !mmc_blk_reset(md, card->host, type))
Adrian Hunter67716322011-08-29 16:42:15 +03001466 goto retry;
1467 if (!err)
1468 mmc_blk_reset_success(md, type);
Adrian Hunter28302812012-04-05 14:45:48 +03001469out:
Adrian Hunter81196972017-11-29 15:41:03 +02001470 mmc_blk_end_request(req, status);
Adrian Hunter49804542010-08-11 14:17:50 -07001471}
1472
Linus Walleijdf061582017-01-24 11:17:57 +01001473static void mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001474{
Linus Walleij7db30282016-11-18 13:36:15 +01001475 struct mmc_blk_data *md = mq->blkdata;
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001476 struct mmc_card *card = md->queue.card;
1477 int ret = 0;
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001478
Seungwon Jeon881d1c22011-10-14 14:03:21 +09001479 ret = mmc_flush_cache(card);
Adrian Hunter81196972017-11-29 15:41:03 +02001480 mmc_blk_end_request(req, ret ? BLK_STS_IOERR : BLK_STS_OK);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001481}
1482
1483/*
1484 * Reformat current write as a reliable write, supporting
1485 * both legacy and the enhanced reliable write MMC cards.
1486 * In each transfer we'll handle only as much as a single
1487 * reliable write can handle, thus finish the request in
1488 * partial completions.
1489 */
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001490static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq,
1491 struct mmc_card *card,
1492 struct request *req)
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001493{
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001494 if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) {
1495 /* Legacy mode imposes restrictions on transfers. */
Adrian Hunter9cb38f72017-03-13 14:36:40 +02001496 if (!IS_ALIGNED(blk_rq_pos(req), card->ext_csd.rel_sectors))
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001497 brq->data.blocks = 1;
1498
1499 if (brq->data.blocks > card->ext_csd.rel_sectors)
1500 brq->data.blocks = card->ext_csd.rel_sectors;
1501 else if (brq->data.blocks < card->ext_csd.rel_sectors)
1502 brq->data.blocks = 1;
1503 }
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001504}
1505
Adrian Hunterf47a1fe2017-11-29 15:41:10 +02001506#define CMD_ERRORS_EXCL_OOR \
1507 (R1_ADDRESS_ERROR | /* Misaligned address */ \
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001508 R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\
1509 R1_WP_VIOLATION | /* Tried to write to protected block */ \
Wolfram Sanga04e6ba2017-04-08 22:20:05 +02001510 R1_CARD_ECC_FAILED | /* Card ECC failed */ \
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01001511 R1_CC_ERROR | /* Card controller error */ \
1512 R1_ERROR) /* General/unknown error */
1513
Adrian Hunterf47a1fe2017-11-29 15:41:10 +02001514#define CMD_ERRORS \
1515 (CMD_ERRORS_EXCL_OOR | \
1516 R1_OUT_OF_RANGE) /* Command argument out of range */ \
1517
Shawn Lind83c2db2017-08-18 09:16:08 +08001518static void mmc_blk_eval_resp_error(struct mmc_blk_request *brq)
Wolfram Sanga04e6ba2017-04-08 22:20:05 +02001519{
Shawn Lind83c2db2017-08-18 09:16:08 +08001520 u32 val;
Wolfram Sanga04e6ba2017-04-08 22:20:05 +02001521
Shawn Lind83c2db2017-08-18 09:16:08 +08001522 /*
1523 * Per the SD specification(physical layer version 4.10)[1],
1524 * section 4.3.3, it explicitly states that "When the last
1525 * block of user area is read using CMD18, the host should
1526 * ignore OUT_OF_RANGE error that may occur even the sequence
1527 * is correct". And JESD84-B51 for eMMC also has a similar
1528 * statement on section 6.8.3.
1529 *
1530 * Multiple block read/write could be done by either predefined
1531 * method, namely CMD23, or open-ending mode. For open-ending mode,
1532 * we should ignore the OUT_OF_RANGE error as it's normal behaviour.
1533 *
1534 * However the spec[1] doesn't tell us whether we should also
1535 * ignore that for predefined method. But per the spec[1], section
1536 * 4.15 Set Block Count Command, it says"If illegal block count
1537 * is set, out of range error will be indicated during read/write
1538 * operation (For example, data transfer is stopped at user area
1539 * boundary)." In another word, we could expect a out of range error
1540 * in the response for the following CMD18/25. And if argument of
1541 * CMD23 + the argument of CMD18/25 exceed the max number of blocks,
1542 * we could also expect to get a -ETIMEDOUT or any error number from
1543 * the host drivers due to missing data response(for write)/data(for
1544 * read), as the cards will stop the data transfer by itself per the
1545 * spec. So we only need to check R1_OUT_OF_RANGE for open-ending mode.
1546 */
1547
1548 if (!brq->stop.error) {
1549 bool oor_with_open_end;
1550 /* If there is no error yet, check R1 response */
1551
1552 val = brq->stop.resp[0] & CMD_ERRORS;
1553 oor_with_open_end = val & R1_OUT_OF_RANGE && !brq->mrq.sbc;
1554
1555 if (val && !oor_with_open_end)
1556 brq->stop.error = -EIO;
1557 }
Wolfram Sanga04e6ba2017-04-08 22:20:05 +02001558}
1559
Adrian Hunter7eb43d52017-11-29 15:41:15 +02001560static enum mmc_blk_status mmc_blk_err_check(struct mmc_card *card,
1561 struct mmc_async_req *areq)
Per Forlind78d4a8a2011-07-01 18:55:30 +02001562{
Adrian Hunter7eb43d52017-11-29 15:41:15 +02001563 struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req,
1564 areq);
Per Forlinee8a43a2011-07-01 18:55:33 +02001565 struct mmc_blk_request *brq = &mq_mrq->brq;
Linus Walleij67e69d52017-05-19 15:37:27 +02001566 struct request *req = mmc_queue_req_to_req(mq_mrq);
Adrian Hunterb8360a42015-05-07 13:10:24 +03001567 int need_retune = card->host->need_retune;
Linus Walleij2cc64582016-11-04 11:05:18 +01001568 bool ecc_err = false;
Linus Walleijc44d6ce2016-11-04 11:05:17 +01001569 bool gen_err = false;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001570
1571 /*
1572 * sbc.error indicates a problem with the set block count
1573 * command. No data will have been transferred.
1574 *
1575 * cmd.error indicates a problem with the r/w command. No
1576 * data will have been transferred.
1577 *
1578 * stop.error indicates a problem with the stop command. Data
1579 * may have been transferred, or may still be transferring.
1580 */
Shawn Lind83c2db2017-08-18 09:16:08 +08001581
1582 mmc_blk_eval_resp_error(brq);
1583
1584 if (brq->sbc.error || brq->cmd.error ||
1585 brq->stop.error || brq->data.error) {
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001586 switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err, &gen_err)) {
Per Forlind78d4a8a2011-07-01 18:55:30 +02001587 case ERR_RETRY:
1588 return MMC_BLK_RETRY;
1589 case ERR_ABORT:
1590 return MMC_BLK_ABORT;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05301591 case ERR_NOMEDIUM:
1592 return MMC_BLK_NOMEDIUM;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001593 case ERR_CONTINUE:
1594 break;
1595 }
1596 }
1597
1598 /*
1599 * Check for errors relating to the execution of the
1600 * initial command - such as address errors. No data
1601 * has been transferred.
1602 */
1603 if (brq->cmd.resp[0] & CMD_ERRORS) {
1604 pr_err("%s: r/w command failed, status = %#x\n",
1605 req->rq_disk->disk_name, brq->cmd.resp[0]);
1606 return MMC_BLK_ABORT;
1607 }
1608
1609 /*
1610 * Everything else is either success, or a data error of some
1611 * kind. If it was a write, we may have transitioned to
1612 * program mode, which we have to wait for it to complete.
1613 */
1614 if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) {
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001615 int err;
Trey Ramsay8fee4762012-11-16 09:31:41 -06001616
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001617 /* Check stop command response */
1618 if (brq->stop.resp[0] & R1_ERROR) {
1619 pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n",
1620 req->rq_disk->disk_name, __func__,
1621 brq->stop.resp[0]);
Linus Walleijc44d6ce2016-11-04 11:05:17 +01001622 gen_err = true;
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001623 }
1624
Adrian Hunterc89b4852017-11-29 15:41:09 +02001625 err = card_busy_detect_err(card, MMC_BLK_TIMEOUT_MS, false, req,
1626 &gen_err);
Ulf Hanssonc49433f2014-01-29 11:01:55 +01001627 if (err)
1628 return MMC_BLK_CMD_ERR;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001629 }
1630
KOBAYASHI Yoshitakec8760062013-07-07 07:35:45 +09001631 /* if general error occurs, retry the write operation. */
1632 if (gen_err) {
1633 pr_warn("%s: retrying write for general error\n",
1634 req->rq_disk->disk_name);
1635 return MMC_BLK_RETRY;
1636 }
1637
Wolfram Sang9820a5b2017-04-08 22:20:06 +02001638 /* Some errors (ECC) are flagged on the next commmand, so check stop, too */
1639 if (brq->data.error || brq->stop.error) {
Adrian Hunterb8360a42015-05-07 13:10:24 +03001640 if (need_retune && !brq->retune_retry_done) {
Russell King09faf612016-01-29 09:44:00 +00001641 pr_debug("%s: retrying because a re-tune was needed\n",
1642 req->rq_disk->disk_name);
Adrian Hunterb8360a42015-05-07 13:10:24 +03001643 brq->retune_retry_done = 1;
1644 return MMC_BLK_RETRY;
1645 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02001646 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 +02001647 req->rq_disk->disk_name, brq->data.error ?: brq->stop.error,
Per Forlind78d4a8a2011-07-01 18:55:30 +02001648 (unsigned)blk_rq_pos(req),
1649 (unsigned)blk_rq_sectors(req),
1650 brq->cmd.resp[0], brq->stop.resp[0]);
1651
1652 if (rq_data_dir(req) == READ) {
Adrian Hunter67716322011-08-29 16:42:15 +03001653 if (ecc_err)
1654 return MMC_BLK_ECC_ERR;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001655 return MMC_BLK_DATA_ERR;
1656 } else {
1657 return MMC_BLK_CMD_ERR;
1658 }
1659 }
1660
Adrian Hunter67716322011-08-29 16:42:15 +03001661 if (!brq->data.bytes_xfered)
1662 return MMC_BLK_RETRY;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001663
Adrian Hunter67716322011-08-29 16:42:15 +03001664 if (blk_rq_bytes(req) != brq->data.bytes_xfered)
1665 return MMC_BLK_PARTIAL;
1666
1667 return MMC_BLK_SUCCESS;
Per Forlind78d4a8a2011-07-01 18:55:30 +02001668}
1669
Adrian Hunterca5717f2017-03-13 14:36:41 +02001670static void mmc_blk_data_prep(struct mmc_queue *mq, struct mmc_queue_req *mqrq,
Adrian Hunterd3377c02017-09-22 15:36:55 +03001671 int disable_multi, bool *do_rel_wr_p,
1672 bool *do_data_tag_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
Adrian Hunterca5717f2017-03-13 14:36:41 +02001674 struct mmc_blk_data *md = mq->blkdata;
1675 struct mmc_card *card = md->queue.card;
Per Forlin54d49d72011-07-01 18:55:29 +02001676 struct mmc_blk_request *brq = &mqrq->brq;
Linus Walleij67e69d52017-05-19 15:37:27 +02001677 struct request *req = mmc_queue_req_to_req(mqrq);
Adrian Hunterd3377c02017-09-22 15:36:55 +03001678 bool do_rel_wr, do_data_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001680 /*
1681 * Reliable writes are used to implement Forced Unit Access and
Luca Porziod3df0462015-11-06 15:12:26 +00001682 * are supported only on MMCs.
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001683 */
Adrian Hunterd3377c02017-09-22 15:36:55 +03001684 do_rel_wr = (req->cmd_flags & REQ_FUA) &&
1685 rq_data_dir(req) == WRITE &&
1686 (md->flags & MMC_BLK_REL_WR);
Andrei Warkentinf4c55222011-03-31 18:40:00 -05001687
Per Forlin54d49d72011-07-01 18:55:29 +02001688 memset(brq, 0, sizeof(struct mmc_blk_request));
Adrian Hunterca5717f2017-03-13 14:36:41 +02001689
Per Forlin54d49d72011-07-01 18:55:29 +02001690 brq->mrq.data = &brq->data;
Adrian Hunter93482b32017-09-22 15:36:56 +03001691 brq->mrq.tag = req->tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Per Forlin54d49d72011-07-01 18:55:29 +02001693 brq->stop.opcode = MMC_STOP_TRANSMISSION;
1694 brq->stop.arg = 0;
Adrian Hunterca5717f2017-03-13 14:36:41 +02001695
1696 if (rq_data_dir(req) == READ) {
1697 brq->data.flags = MMC_DATA_READ;
1698 brq->stop.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1699 } else {
1700 brq->data.flags = MMC_DATA_WRITE;
1701 brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1702 }
1703
1704 brq->data.blksz = 512;
Per Forlin54d49d72011-07-01 18:55:29 +02001705 brq->data.blocks = blk_rq_sectors(req);
Adrian Hunter93482b32017-09-22 15:36:56 +03001706 brq->data.blk_addr = blk_rq_pos(req);
1707
1708 /*
1709 * The command queue supports 2 priorities: "high" (1) and "simple" (0).
1710 * The eMMC will give "high" priority tasks priority over "simple"
1711 * priority tasks. Here we always set "simple" priority by not setting
1712 * MMC_DATA_PRIO.
1713 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Per Forlin54d49d72011-07-01 18:55:29 +02001715 /*
1716 * The block layer doesn't support all sector count
1717 * restrictions, so we need to be prepared for too big
1718 * requests.
1719 */
1720 if (brq->data.blocks > card->host->max_blk_count)
1721 brq->data.blocks = card->host->max_blk_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001723 if (brq->data.blocks > 1) {
1724 /*
1725 * After a read error, we redo the request one sector
1726 * at a time in order to accurately determine which
1727 * sectors can be read successfully.
1728 */
1729 if (disable_multi)
1730 brq->data.blocks = 1;
1731
Kuninori Morimoto2e47e842014-09-02 19:08:53 -07001732 /*
1733 * Some controllers have HW issues while operating
1734 * in multiple I/O mode
1735 */
1736 if (card->host->ops->multi_io_quirk)
1737 brq->data.blocks = card->host->ops->multi_io_quirk(card,
1738 (rq_data_dir(req) == READ) ?
1739 MMC_DATA_READ : MMC_DATA_WRITE,
1740 brq->data.blocks);
Paul Walmsley2bf22b32011-10-06 14:50:33 -06001741 }
Per Forlin54d49d72011-07-01 18:55:29 +02001742
Adrian Hunter93482b32017-09-22 15:36:56 +03001743 if (do_rel_wr) {
Adrian Hunterca5717f2017-03-13 14:36:41 +02001744 mmc_apply_rel_rw(brq, card, req);
Adrian Hunter93482b32017-09-22 15:36:56 +03001745 brq->data.flags |= MMC_DATA_REL_WR;
1746 }
Adrian Hunterca5717f2017-03-13 14:36:41 +02001747
1748 /*
1749 * Data tag is used only during writing meta data to speed
1750 * up write and any subsequent read of this meta data
1751 */
Adrian Hunterd3377c02017-09-22 15:36:55 +03001752 do_data_tag = card->ext_csd.data_tag_unit_size &&
1753 (req->cmd_flags & REQ_META) &&
1754 (rq_data_dir(req) == WRITE) &&
1755 ((brq->data.blocks * brq->data.blksz) >=
1756 card->ext_csd.data_tag_unit_size);
Adrian Hunterca5717f2017-03-13 14:36:41 +02001757
Adrian Hunter93482b32017-09-22 15:36:56 +03001758 if (do_data_tag)
1759 brq->data.flags |= MMC_DATA_DAT_TAG;
1760
Adrian Hunterca5717f2017-03-13 14:36:41 +02001761 mmc_set_data_timeout(&brq->data, card);
1762
1763 brq->data.sg = mqrq->sg;
1764 brq->data.sg_len = mmc_queue_map_sg(mq, mqrq);
1765
1766 /*
1767 * Adjust the sg list so it is the same size as the
1768 * request.
1769 */
1770 if (brq->data.blocks != blk_rq_sectors(req)) {
1771 int i, data_size = brq->data.blocks << 9;
1772 struct scatterlist *sg;
1773
1774 for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) {
1775 data_size -= sg->length;
1776 if (data_size <= 0) {
1777 sg->length += data_size;
1778 i++;
1779 break;
1780 }
1781 }
1782 brq->data.sg_len = i;
1783 }
1784
1785 mqrq->areq.mrq = &brq->mrq;
Adrian Hunterd3377c02017-09-22 15:36:55 +03001786
1787 if (do_rel_wr_p)
1788 *do_rel_wr_p = do_rel_wr;
1789
1790 if (do_data_tag_p)
1791 *do_data_tag_p = do_data_tag;
Adrian Hunterca5717f2017-03-13 14:36:41 +02001792}
1793
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02001794#define MMC_CQE_RETRIES 2
1795
1796static void mmc_blk_cqe_complete_rq(struct mmc_queue *mq, struct request *req)
1797{
1798 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
1799 struct mmc_request *mrq = &mqrq->brq.mrq;
1800 struct request_queue *q = req->q;
1801 struct mmc_host *host = mq->card->host;
1802 unsigned long flags;
1803 bool put_card;
1804 int err;
1805
1806 mmc_cqe_post_req(host, mrq);
1807
1808 if (mrq->cmd && mrq->cmd->error)
1809 err = mrq->cmd->error;
1810 else if (mrq->data && mrq->data->error)
1811 err = mrq->data->error;
1812 else
1813 err = 0;
1814
1815 if (err) {
1816 if (mqrq->retries++ < MMC_CQE_RETRIES)
1817 blk_mq_requeue_request(req, true);
1818 else
1819 blk_mq_end_request(req, BLK_STS_IOERR);
1820 } else if (mrq->data) {
1821 if (blk_update_request(req, BLK_STS_OK, mrq->data->bytes_xfered))
1822 blk_mq_requeue_request(req, true);
1823 else
1824 __blk_mq_end_request(req, BLK_STS_OK);
1825 } else {
1826 blk_mq_end_request(req, BLK_STS_OK);
1827 }
1828
1829 spin_lock_irqsave(q->queue_lock, flags);
1830
1831 mq->in_flight[mmc_issue_type(mq, req)] -= 1;
1832
1833 put_card = (mmc_tot_in_flight(mq) == 0);
1834
1835 mmc_cqe_check_busy(mq);
1836
1837 spin_unlock_irqrestore(q->queue_lock, flags);
1838
1839 if (!mq->cqe_busy)
1840 blk_mq_run_hw_queues(q, true);
1841
1842 if (put_card)
1843 mmc_put_card(mq->card, &mq->ctx);
1844}
1845
1846void mmc_blk_cqe_recovery(struct mmc_queue *mq)
1847{
1848 struct mmc_card *card = mq->card;
1849 struct mmc_host *host = card->host;
1850 int err;
1851
1852 pr_debug("%s: CQE recovery start\n", mmc_hostname(host));
1853
1854 err = mmc_cqe_recovery(host);
1855 if (err)
1856 mmc_blk_reset(mq->blkdata, host, MMC_BLK_CQE_RECOVERY);
1857 else
1858 mmc_blk_reset_success(mq->blkdata, MMC_BLK_CQE_RECOVERY);
1859
1860 pr_debug("%s: CQE recovery done\n", mmc_hostname(host));
1861}
1862
1863static void mmc_blk_cqe_req_done(struct mmc_request *mrq)
1864{
1865 struct mmc_queue_req *mqrq = container_of(mrq, struct mmc_queue_req,
1866 brq.mrq);
1867 struct request *req = mmc_queue_req_to_req(mqrq);
1868 struct request_queue *q = req->q;
1869 struct mmc_queue *mq = q->queuedata;
1870
1871 /*
1872 * Block layer timeouts race with completions which means the normal
1873 * completion path cannot be used during recovery.
1874 */
1875 if (mq->in_recovery)
1876 mmc_blk_cqe_complete_rq(mq, req);
1877 else
1878 blk_mq_complete_request(req);
1879}
1880
1881static int mmc_blk_cqe_start_req(struct mmc_host *host, struct mmc_request *mrq)
1882{
1883 mrq->done = mmc_blk_cqe_req_done;
1884 mrq->recovery_notifier = mmc_cqe_recovery_notifier;
1885
1886 return mmc_cqe_start_req(host, mrq);
1887}
1888
1889static struct mmc_request *mmc_blk_cqe_prep_dcmd(struct mmc_queue_req *mqrq,
1890 struct request *req)
1891{
1892 struct mmc_blk_request *brq = &mqrq->brq;
1893
1894 memset(brq, 0, sizeof(*brq));
1895
1896 brq->mrq.cmd = &brq->cmd;
1897 brq->mrq.tag = req->tag;
1898
1899 return &brq->mrq;
1900}
1901
1902static int mmc_blk_cqe_issue_flush(struct mmc_queue *mq, struct request *req)
1903{
1904 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
1905 struct mmc_request *mrq = mmc_blk_cqe_prep_dcmd(mqrq, req);
1906
1907 mrq->cmd->opcode = MMC_SWITCH;
1908 mrq->cmd->arg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
1909 (EXT_CSD_FLUSH_CACHE << 16) |
1910 (1 << 8) |
1911 EXT_CSD_CMD_SET_NORMAL;
1912 mrq->cmd->flags = MMC_CMD_AC | MMC_RSP_R1B;
1913
1914 return mmc_blk_cqe_start_req(mq->card->host, mrq);
1915}
1916
1917static int mmc_blk_cqe_issue_rw_rq(struct mmc_queue *mq, struct request *req)
1918{
1919 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
1920
1921 mmc_blk_data_prep(mq, mqrq, 0, NULL, NULL);
1922
1923 return mmc_blk_cqe_start_req(mq->card->host, &mqrq->brq.mrq);
1924}
1925
Adrian Hunterca5717f2017-03-13 14:36:41 +02001926static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
1927 struct mmc_card *card,
1928 int disable_multi,
1929 struct mmc_queue *mq)
1930{
1931 u32 readcmd, writecmd;
1932 struct mmc_blk_request *brq = &mqrq->brq;
Linus Walleij67e69d52017-05-19 15:37:27 +02001933 struct request *req = mmc_queue_req_to_req(mqrq);
Adrian Hunterca5717f2017-03-13 14:36:41 +02001934 struct mmc_blk_data *md = mq->blkdata;
1935 bool do_rel_wr, do_data_tag;
1936
1937 mmc_blk_data_prep(mq, mqrq, disable_multi, &do_rel_wr, &do_data_tag);
1938
1939 brq->mrq.cmd = &brq->cmd;
1940
1941 brq->cmd.arg = blk_rq_pos(req);
1942 if (!mmc_card_blockaddr(card))
1943 brq->cmd.arg <<= 9;
1944 brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
1945
Per Forlin54d49d72011-07-01 18:55:29 +02001946 if (brq->data.blocks > 1 || do_rel_wr) {
1947 /* SPI multiblock writes terminate using a special
1948 * token, not a STOP_TRANSMISSION request.
Pierre Ossman548d2de2009-04-10 17:52:57 +02001949 */
Per Forlin54d49d72011-07-01 18:55:29 +02001950 if (!mmc_host_is_spi(card->host) ||
1951 rq_data_dir(req) == READ)
1952 brq->mrq.stop = &brq->stop;
1953 readcmd = MMC_READ_MULTIPLE_BLOCK;
1954 writecmd = MMC_WRITE_MULTIPLE_BLOCK;
1955 } else {
1956 brq->mrq.stop = NULL;
1957 readcmd = MMC_READ_SINGLE_BLOCK;
1958 writecmd = MMC_WRITE_BLOCK;
1959 }
Adrian Hunterca5717f2017-03-13 14:36:41 +02001960 brq->cmd.opcode = rq_data_dir(req) == READ ? readcmd : writecmd;
Saugata Das42659002011-12-21 13:09:17 +05301961
1962 /*
Per Forlin54d49d72011-07-01 18:55:29 +02001963 * Pre-defined multi-block transfers are preferable to
1964 * open ended-ones (and necessary for reliable writes).
1965 * However, it is not sufficient to just send CMD23,
1966 * and avoid the final CMD12, as on an error condition
1967 * CMD12 (stop) needs to be sent anyway. This, coupled
1968 * with Auto-CMD23 enhancements provided by some
1969 * hosts, means that the complexity of dealing
1970 * with this is best left to the host. If CMD23 is
1971 * supported by card and host, we'll fill sbc in and let
1972 * the host deal with handling it correctly. This means
1973 * that for hosts that don't expose MMC_CAP_CMD23, no
1974 * change of behavior will be observed.
1975 *
1976 * N.B: Some MMC cards experience perf degradation.
1977 * We'll avoid using CMD23-bounded multiblock writes for
1978 * these, while retaining features like reliable writes.
1979 */
Saugata Das42659002011-12-21 13:09:17 +05301980 if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) &&
1981 (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) ||
1982 do_data_tag)) {
Per Forlin54d49d72011-07-01 18:55:29 +02001983 brq->sbc.opcode = MMC_SET_BLOCK_COUNT;
1984 brq->sbc.arg = brq->data.blocks |
Saugata Das42659002011-12-21 13:09:17 +05301985 (do_rel_wr ? (1 << 31) : 0) |
1986 (do_data_tag ? (1 << 29) : 0);
Per Forlin54d49d72011-07-01 18:55:29 +02001987 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC;
1988 brq->mrq.sbc = &brq->sbc;
1989 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05001990
Linus Walleij74f5ba32017-02-01 13:47:55 +01001991 mqrq->areq.err_check = mmc_blk_err_check;
Per Forlin54d49d72011-07-01 18:55:29 +02001992}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Adrian Hunter81196972017-11-29 15:41:03 +02001994#define MMC_MAX_RETRIES 5
Adrian Hunter7eb43d52017-11-29 15:41:15 +02001995#define MMC_DATA_RETRIES 2
Adrian Hunter81196972017-11-29 15:41:03 +02001996#define MMC_NO_RETRIES (MMC_MAX_RETRIES + 1)
1997
Adrian Hunter7eb43d52017-11-29 15:41:15 +02001998static int mmc_blk_send_stop(struct mmc_card *card, unsigned int timeout)
1999{
2000 struct mmc_command cmd = {
2001 .opcode = MMC_STOP_TRANSMISSION,
2002 .flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC,
2003 /* Some hosts wait for busy anyway, so provide a busy timeout */
2004 .busy_timeout = timeout,
2005 };
2006
2007 return mmc_wait_for_cmd(card->host, &cmd, 5);
2008}
2009
2010static int mmc_blk_fix_state(struct mmc_card *card, struct request *req)
2011{
2012 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2013 struct mmc_blk_request *brq = &mqrq->brq;
2014 unsigned int timeout = mmc_blk_data_timeout_ms(card->host, &brq->data);
2015 int err;
2016
2017 mmc_retune_hold_now(card->host);
2018
2019 mmc_blk_send_stop(card, timeout);
2020
2021 err = card_busy_detect(card, timeout, false, req, NULL);
2022
2023 mmc_retune_release(card->host);
2024
2025 return err;
2026}
2027
Adrian Hunter81196972017-11-29 15:41:03 +02002028#define MMC_READ_SINGLE_RETRIES 2
2029
2030/* Single sector read during recovery */
2031static void mmc_blk_read_single(struct mmc_queue *mq, struct request *req)
2032{
2033 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2034 struct mmc_request *mrq = &mqrq->brq.mrq;
2035 struct mmc_card *card = mq->card;
2036 struct mmc_host *host = card->host;
2037 blk_status_t error = BLK_STS_OK;
2038 int retries = 0;
2039
2040 do {
2041 u32 status;
2042 int err;
2043
2044 mmc_blk_rw_rq_prep(mqrq, card, 1, mq);
2045
2046 mmc_wait_for_req(host, mrq);
2047
2048 err = mmc_send_status(card, &status);
2049 if (err)
2050 goto error_exit;
2051
2052 if (!mmc_host_is_spi(host) &&
Adrian Hunter7eb43d52017-11-29 15:41:15 +02002053 !mmc_blk_in_tran_state(status)) {
2054 err = mmc_blk_fix_state(card, req);
Adrian Hunter81196972017-11-29 15:41:03 +02002055 if (err)
2056 goto error_exit;
2057 }
2058
2059 if (mrq->cmd->error && retries++ < MMC_READ_SINGLE_RETRIES)
2060 continue;
2061
2062 retries = 0;
2063
2064 if (mrq->cmd->error ||
2065 mrq->data->error ||
2066 (!mmc_host_is_spi(host) &&
2067 (mrq->cmd->resp[0] & CMD_ERRORS || status & CMD_ERRORS)))
2068 error = BLK_STS_IOERR;
2069 else
2070 error = BLK_STS_OK;
2071
2072 } while (blk_update_request(req, error, 512));
2073
2074 return;
2075
2076error_exit:
2077 mrq->data->bytes_xfered = 0;
2078 blk_update_request(req, BLK_STS_IOERR, 512);
2079 /* Let it try the remaining request again */
2080 if (mqrq->retries > MMC_MAX_RETRIES - 1)
2081 mqrq->retries = MMC_MAX_RETRIES - 1;
2082}
2083
Adrian Hunter7eb43d52017-11-29 15:41:15 +02002084static inline bool mmc_blk_oor_valid(struct mmc_blk_request *brq)
2085{
2086 return !!brq->mrq.sbc;
2087}
2088
2089static inline u32 mmc_blk_stop_err_bits(struct mmc_blk_request *brq)
2090{
2091 return mmc_blk_oor_valid(brq) ? CMD_ERRORS : CMD_ERRORS_EXCL_OOR;
2092}
2093
2094/*
2095 * Check for errors the host controller driver might not have seen such as
2096 * response mode errors or invalid card state.
2097 */
2098static bool mmc_blk_status_error(struct request *req, u32 status)
2099{
2100 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2101 struct mmc_blk_request *brq = &mqrq->brq;
2102 struct mmc_queue *mq = req->q->queuedata;
2103 u32 stop_err_bits;
2104
2105 if (mmc_host_is_spi(mq->card->host))
2106 return 0;
2107
2108 stop_err_bits = mmc_blk_stop_err_bits(brq);
2109
2110 return brq->cmd.resp[0] & CMD_ERRORS ||
2111 brq->stop.resp[0] & stop_err_bits ||
2112 status & stop_err_bits ||
2113 (rq_data_dir(req) == WRITE && !mmc_blk_in_tran_state(status));
2114}
2115
2116static inline bool mmc_blk_cmd_started(struct mmc_blk_request *brq)
2117{
2118 return !brq->sbc.error && !brq->cmd.error &&
2119 !(brq->cmd.resp[0] & CMD_ERRORS);
2120}
2121
2122/*
2123 * Requests are completed by mmc_blk_mq_complete_rq() which sets simple
2124 * policy:
2125 * 1. A request that has transferred at least some data is considered
2126 * successful and will be requeued if there is remaining data to
2127 * transfer.
2128 * 2. Otherwise the number of retries is incremented and the request
2129 * will be requeued if there are remaining retries.
2130 * 3. Otherwise the request will be errored out.
2131 * That means mmc_blk_mq_complete_rq() is controlled by bytes_xfered and
2132 * mqrq->retries. So there are only 4 possible actions here:
2133 * 1. do not accept the bytes_xfered value i.e. set it to zero
2134 * 2. change mqrq->retries to determine the number of retries
2135 * 3. try to reset the card
2136 * 4. read one sector at a time
2137 */
Adrian Hunter81196972017-11-29 15:41:03 +02002138static void mmc_blk_mq_rw_recovery(struct mmc_queue *mq, struct request *req)
2139{
2140 int type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
2141 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2142 struct mmc_blk_request *brq = &mqrq->brq;
2143 struct mmc_blk_data *md = mq->blkdata;
2144 struct mmc_card *card = mq->card;
Adrian Hunter7eb43d52017-11-29 15:41:15 +02002145 u32 status;
2146 u32 blocks;
2147 int err;
Adrian Hunter81196972017-11-29 15:41:03 +02002148
Adrian Hunter7eb43d52017-11-29 15:41:15 +02002149 /*
2150 * Some errors the host driver might not have seen. Set the number of
2151 * bytes transferred to zero in that case.
2152 */
2153 err = __mmc_send_status(card, &status, 0);
2154 if (err || mmc_blk_status_error(req, status))
2155 brq->data.bytes_xfered = 0;
Adrian Hunter81196972017-11-29 15:41:03 +02002156
2157 mmc_retune_release(card->host);
2158
2159 /*
Adrian Hunter7eb43d52017-11-29 15:41:15 +02002160 * Try again to get the status. This also provides an opportunity for
2161 * re-tuning.
Adrian Hunter81196972017-11-29 15:41:03 +02002162 */
Adrian Hunter7eb43d52017-11-29 15:41:15 +02002163 if (err)
2164 err = __mmc_send_status(card, &status, 0);
Adrian Hunter81196972017-11-29 15:41:03 +02002165
Adrian Hunter7eb43d52017-11-29 15:41:15 +02002166 /*
2167 * Nothing more to do after the number of bytes transferred has been
2168 * updated and there is no card.
2169 */
2170 if (err && mmc_detect_card_removed(card->host))
2171 return;
Adrian Hunter81196972017-11-29 15:41:03 +02002172
Adrian Hunter7eb43d52017-11-29 15:41:15 +02002173 /* Try to get back to "tran" state */
2174 if (!mmc_host_is_spi(mq->card->host) &&
2175 (err || !mmc_blk_in_tran_state(status)))
2176 err = mmc_blk_fix_state(mq->card, req);
2177
2178 /*
2179 * Special case for SD cards where the card might record the number of
2180 * blocks written.
2181 */
2182 if (!err && mmc_blk_cmd_started(brq) && mmc_card_sd(card) &&
2183 rq_data_dir(req) == WRITE) {
2184 if (mmc_sd_num_wr_blocks(card, &blocks))
2185 brq->data.bytes_xfered = 0;
2186 else
2187 brq->data.bytes_xfered = blocks << 9;
Adrian Hunter81196972017-11-29 15:41:03 +02002188 }
Adrian Hunter7eb43d52017-11-29 15:41:15 +02002189
2190 /* Reset if the card is in a bad state */
2191 if (!mmc_host_is_spi(mq->card->host) &&
2192 err && mmc_blk_reset(md, card->host, type)) {
2193 pr_err("%s: recovery failed!\n", req->rq_disk->disk_name);
Adrian Hunter81196972017-11-29 15:41:03 +02002194 mqrq->retries = MMC_NO_RETRIES;
Adrian Hunter7eb43d52017-11-29 15:41:15 +02002195 return;
2196 }
2197
2198 /*
2199 * If anything was done, just return and if there is anything remaining
2200 * on the request it will get requeued.
2201 */
2202 if (brq->data.bytes_xfered)
2203 return;
2204
2205 /* Reset before last retry */
2206 if (mqrq->retries + 1 == MMC_MAX_RETRIES)
2207 mmc_blk_reset(md, card->host, type);
2208
2209 /* Command errors fail fast, so use all MMC_MAX_RETRIES */
2210 if (brq->sbc.error || brq->cmd.error)
2211 return;
2212
2213 /* Reduce the remaining retries for data errors */
2214 if (mqrq->retries < MMC_MAX_RETRIES - MMC_DATA_RETRIES) {
2215 mqrq->retries = MMC_MAX_RETRIES - MMC_DATA_RETRIES;
2216 return;
2217 }
2218
2219 /* FIXME: Missing single sector read for large sector size */
2220 if (!mmc_large_sector(card) && rq_data_dir(req) == READ &&
2221 brq->data.blocks > 1) {
2222 /* Read one sector at a time */
2223 mmc_blk_read_single(mq, req);
2224 return;
Adrian Hunter81196972017-11-29 15:41:03 +02002225 }
2226}
2227
Adrian Hunter10f21df42017-11-29 15:41:07 +02002228static inline bool mmc_blk_rq_error(struct mmc_blk_request *brq)
2229{
2230 mmc_blk_eval_resp_error(brq);
2231
2232 return brq->sbc.error || brq->cmd.error || brq->stop.error ||
2233 brq->data.error || brq->cmd.resp[0] & CMD_ERRORS;
2234}
2235
Adrian Hunter88a51642017-11-29 15:41:08 +02002236static int mmc_blk_card_busy(struct mmc_card *card, struct request *req)
2237{
2238 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
Adrian Hunterf47a1fe2017-11-29 15:41:10 +02002239 u32 status = 0;
Adrian Hunter88a51642017-11-29 15:41:08 +02002240 int err;
2241
2242 if (mmc_host_is_spi(card->host) || rq_data_dir(req) == READ)
2243 return 0;
2244
Adrian Hunterf47a1fe2017-11-29 15:41:10 +02002245 err = card_busy_detect(card, MMC_BLK_TIMEOUT_MS, false, req, &status);
Adrian Hunter88a51642017-11-29 15:41:08 +02002246
Adrian Hunterf47a1fe2017-11-29 15:41:10 +02002247 /*
2248 * Do not assume data transferred correctly if there are any error bits
2249 * set.
2250 */
2251 if (status & mmc_blk_stop_err_bits(&mqrq->brq)) {
2252 mqrq->brq.data.bytes_xfered = 0;
Adrian Hunter88a51642017-11-29 15:41:08 +02002253 err = err ? err : -EIO;
2254 }
2255
Adrian Hunterf47a1fe2017-11-29 15:41:10 +02002256 /* Copy the exception bit so it will be seen later on */
2257 if (mmc_card_mmc(card) && status & R1_EXCEPTION_EVENT)
2258 mqrq->brq.cmd.resp[0] |= R1_EXCEPTION_EVENT;
2259
Adrian Hunter88a51642017-11-29 15:41:08 +02002260 return err;
2261}
2262
Adrian Hunter10f21df42017-11-29 15:41:07 +02002263static inline void mmc_blk_rw_reset_success(struct mmc_queue *mq,
2264 struct request *req)
2265{
2266 int type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
2267
2268 mmc_blk_reset_success(mq->blkdata, type);
2269}
2270
Adrian Hunter81196972017-11-29 15:41:03 +02002271static void mmc_blk_mq_complete_rq(struct mmc_queue *mq, struct request *req)
2272{
2273 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2274 unsigned int nr_bytes = mqrq->brq.data.bytes_xfered;
2275
2276 if (nr_bytes) {
2277 if (blk_update_request(req, BLK_STS_OK, nr_bytes))
2278 blk_mq_requeue_request(req, true);
2279 else
2280 __blk_mq_end_request(req, BLK_STS_OK);
2281 } else if (!blk_rq_bytes(req)) {
2282 __blk_mq_end_request(req, BLK_STS_IOERR);
2283 } else if (mqrq->retries++ < MMC_MAX_RETRIES) {
2284 blk_mq_requeue_request(req, true);
2285 } else {
2286 if (mmc_card_removed(mq->card))
2287 req->rq_flags |= RQF_QUIET;
2288 blk_mq_end_request(req, BLK_STS_IOERR);
2289 }
2290}
2291
2292static bool mmc_blk_urgent_bkops_needed(struct mmc_queue *mq,
2293 struct mmc_queue_req *mqrq)
2294{
2295 return mmc_card_mmc(mq->card) && !mmc_host_is_spi(mq->card->host) &&
2296 (mqrq->brq.cmd.resp[0] & R1_EXCEPTION_EVENT ||
2297 mqrq->brq.stop.resp[0] & R1_EXCEPTION_EVENT);
2298}
2299
2300static void mmc_blk_urgent_bkops(struct mmc_queue *mq,
2301 struct mmc_queue_req *mqrq)
2302{
2303 if (mmc_blk_urgent_bkops_needed(mq, mqrq))
2304 mmc_start_bkops(mq->card, true);
2305}
2306
2307void mmc_blk_mq_complete(struct request *req)
2308{
2309 struct mmc_queue *mq = req->q->queuedata;
2310
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02002311 if (mq->use_cqe)
2312 mmc_blk_cqe_complete_rq(mq, req);
2313 else
2314 mmc_blk_mq_complete_rq(mq, req);
Adrian Hunter81196972017-11-29 15:41:03 +02002315}
2316
2317static void mmc_blk_mq_poll_completion(struct mmc_queue *mq,
2318 struct request *req)
2319{
2320 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
Adrian Hunter88a51642017-11-29 15:41:08 +02002321 struct mmc_host *host = mq->card->host;
Adrian Hunter81196972017-11-29 15:41:03 +02002322
Adrian Hunter88a51642017-11-29 15:41:08 +02002323 if (mmc_blk_rq_error(&mqrq->brq) ||
2324 mmc_blk_card_busy(mq->card, req)) {
2325 mmc_blk_mq_rw_recovery(mq, req);
2326 } else {
2327 mmc_blk_rw_reset_success(mq, req);
2328 mmc_retune_release(host);
2329 }
Adrian Hunter81196972017-11-29 15:41:03 +02002330
2331 mmc_blk_urgent_bkops(mq, mqrq);
2332}
2333
2334static void mmc_blk_mq_dec_in_flight(struct mmc_queue *mq, struct request *req)
2335{
2336 struct request_queue *q = req->q;
2337 unsigned long flags;
2338 bool put_card;
2339
2340 spin_lock_irqsave(q->queue_lock, flags);
2341
2342 mq->in_flight[mmc_issue_type(mq, req)] -= 1;
2343
2344 put_card = (mmc_tot_in_flight(mq) == 0);
2345
2346 spin_unlock_irqrestore(q->queue_lock, flags);
2347
2348 if (put_card)
2349 mmc_put_card(mq->card, &mq->ctx);
2350}
2351
2352static void mmc_blk_mq_post_req(struct mmc_queue *mq, struct request *req)
2353{
2354 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2355 struct mmc_request *mrq = &mqrq->brq.mrq;
2356 struct mmc_host *host = mq->card->host;
2357
2358 mmc_post_req(host, mrq, 0);
2359
Adrian Hunter10f21df42017-11-29 15:41:07 +02002360 /*
2361 * Block layer timeouts race with completions which means the normal
2362 * completion path cannot be used during recovery.
2363 */
2364 if (mq->in_recovery)
2365 mmc_blk_mq_complete_rq(mq, req);
2366 else
2367 blk_mq_complete_request(req);
Adrian Hunter81196972017-11-29 15:41:03 +02002368
2369 mmc_blk_mq_dec_in_flight(mq, req);
2370}
2371
Adrian Hunter10f21df42017-11-29 15:41:07 +02002372void mmc_blk_mq_recovery(struct mmc_queue *mq)
2373{
2374 struct request *req = mq->recovery_req;
2375 struct mmc_host *host = mq->card->host;
2376 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2377
2378 mq->recovery_req = NULL;
2379 mq->rw_wait = false;
2380
2381 if (mmc_blk_rq_error(&mqrq->brq)) {
2382 mmc_retune_hold_now(host);
2383 mmc_blk_mq_rw_recovery(mq, req);
2384 }
2385
2386 mmc_blk_urgent_bkops(mq, mqrq);
2387
2388 mmc_blk_mq_post_req(mq, req);
2389}
2390
Adrian Hunter81196972017-11-29 15:41:03 +02002391static void mmc_blk_mq_complete_prev_req(struct mmc_queue *mq,
2392 struct request **prev_req)
2393{
Adrian Hunter10f21df42017-11-29 15:41:07 +02002394 if (mmc_host_done_complete(mq->card->host))
2395 return;
2396
Adrian Hunter81196972017-11-29 15:41:03 +02002397 mutex_lock(&mq->complete_lock);
2398
2399 if (!mq->complete_req)
2400 goto out_unlock;
2401
2402 mmc_blk_mq_poll_completion(mq, mq->complete_req);
2403
2404 if (prev_req)
2405 *prev_req = mq->complete_req;
2406 else
2407 mmc_blk_mq_post_req(mq, mq->complete_req);
2408
2409 mq->complete_req = NULL;
2410
2411out_unlock:
2412 mutex_unlock(&mq->complete_lock);
2413}
2414
2415void mmc_blk_mq_complete_work(struct work_struct *work)
2416{
2417 struct mmc_queue *mq = container_of(work, struct mmc_queue,
2418 complete_work);
2419
2420 mmc_blk_mq_complete_prev_req(mq, NULL);
2421}
2422
2423static void mmc_blk_mq_req_done(struct mmc_request *mrq)
2424{
2425 struct mmc_queue_req *mqrq = container_of(mrq, struct mmc_queue_req,
2426 brq.mrq);
2427 struct request *req = mmc_queue_req_to_req(mqrq);
2428 struct request_queue *q = req->q;
2429 struct mmc_queue *mq = q->queuedata;
Adrian Hunter10f21df42017-11-29 15:41:07 +02002430 struct mmc_host *host = mq->card->host;
Adrian Hunter81196972017-11-29 15:41:03 +02002431 unsigned long flags;
Adrian Hunter81196972017-11-29 15:41:03 +02002432
Adrian Hunter10f21df42017-11-29 15:41:07 +02002433 if (!mmc_host_done_complete(host)) {
2434 bool waiting;
Adrian Hunter81196972017-11-29 15:41:03 +02002435
Adrian Hunter10f21df42017-11-29 15:41:07 +02002436 /*
2437 * We cannot complete the request in this context, so record
2438 * that there is a request to complete, and that a following
2439 * request does not need to wait (although it does need to
2440 * complete complete_req first).
2441 */
2442 spin_lock_irqsave(q->queue_lock, flags);
2443 mq->complete_req = req;
2444 mq->rw_wait = false;
2445 waiting = mq->waiting;
2446 spin_unlock_irqrestore(q->queue_lock, flags);
2447
2448 /*
2449 * If 'waiting' then the waiting task will complete this
2450 * request, otherwise queue a work to do it. Note that
2451 * complete_work may still race with the dispatch of a following
2452 * request.
2453 */
2454 if (waiting)
2455 wake_up(&mq->wait);
2456 else
2457 kblockd_schedule_work(&mq->complete_work);
2458
2459 return;
2460 }
2461
2462 /* Take the recovery path for errors or urgent background operations */
2463 if (mmc_blk_rq_error(&mqrq->brq) ||
2464 mmc_blk_urgent_bkops_needed(mq, mqrq)) {
2465 spin_lock_irqsave(q->queue_lock, flags);
2466 mq->recovery_needed = true;
2467 mq->recovery_req = req;
2468 spin_unlock_irqrestore(q->queue_lock, flags);
Adrian Hunter81196972017-11-29 15:41:03 +02002469 wake_up(&mq->wait);
Adrian Hunter10f21df42017-11-29 15:41:07 +02002470 schedule_work(&mq->recovery_work);
2471 return;
2472 }
2473
2474 mmc_blk_rw_reset_success(mq, req);
2475
2476 mq->rw_wait = false;
2477 wake_up(&mq->wait);
2478
2479 mmc_blk_mq_post_req(mq, req);
Adrian Hunter81196972017-11-29 15:41:03 +02002480}
2481
2482static bool mmc_blk_rw_wait_cond(struct mmc_queue *mq, int *err)
2483{
2484 struct request_queue *q = mq->queue;
2485 unsigned long flags;
2486 bool done;
2487
2488 /*
Adrian Hunter10f21df42017-11-29 15:41:07 +02002489 * Wait while there is another request in progress, but not if recovery
2490 * is needed. Also indicate whether there is a request waiting to start.
Adrian Hunter81196972017-11-29 15:41:03 +02002491 */
2492 spin_lock_irqsave(q->queue_lock, flags);
Adrian Hunter10f21df42017-11-29 15:41:07 +02002493 if (mq->recovery_needed) {
2494 *err = -EBUSY;
2495 done = true;
2496 } else {
2497 done = !mq->rw_wait;
2498 }
Adrian Hunter81196972017-11-29 15:41:03 +02002499 mq->waiting = !done;
2500 spin_unlock_irqrestore(q->queue_lock, flags);
2501
2502 return done;
2503}
2504
2505static int mmc_blk_rw_wait(struct mmc_queue *mq, struct request **prev_req)
2506{
2507 int err = 0;
2508
2509 wait_event(mq->wait, mmc_blk_rw_wait_cond(mq, &err));
2510
2511 /* Always complete the previous request if there is one */
2512 mmc_blk_mq_complete_prev_req(mq, prev_req);
2513
2514 return err;
2515}
2516
2517static int mmc_blk_mq_issue_rw_rq(struct mmc_queue *mq,
2518 struct request *req)
2519{
2520 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
2521 struct mmc_host *host = mq->card->host;
2522 struct request *prev_req = NULL;
2523 int err = 0;
2524
2525 mmc_blk_rw_rq_prep(mqrq, mq->card, 0, mq);
2526
2527 mqrq->brq.mrq.done = mmc_blk_mq_req_done;
2528
2529 mmc_pre_req(host, &mqrq->brq.mrq);
2530
2531 err = mmc_blk_rw_wait(mq, &prev_req);
2532 if (err)
2533 goto out_post_req;
2534
2535 mq->rw_wait = true;
2536
2537 err = mmc_start_request(host, &mqrq->brq.mrq);
2538
2539 if (prev_req)
2540 mmc_blk_mq_post_req(mq, prev_req);
2541
Adrian Hunter10f21df42017-11-29 15:41:07 +02002542 if (err)
Adrian Hunter81196972017-11-29 15:41:03 +02002543 mq->rw_wait = false;
Adrian Hunter10f21df42017-11-29 15:41:07 +02002544
2545 /* Release re-tuning here where there is no synchronization required */
2546 if (err || mmc_host_done_complete(host))
Adrian Hunter81196972017-11-29 15:41:03 +02002547 mmc_retune_release(host);
Adrian Hunter81196972017-11-29 15:41:03 +02002548
2549out_post_req:
2550 if (err)
2551 mmc_post_req(host, &mqrq->brq.mrq, err);
2552
2553 return err;
2554}
2555
2556static int mmc_blk_wait_for_idle(struct mmc_queue *mq, struct mmc_host *host)
2557{
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02002558 if (mq->use_cqe)
2559 return host->cqe_ops->cqe_wait_for_idle(host);
2560
Adrian Hunter81196972017-11-29 15:41:03 +02002561 return mmc_blk_rw_wait(mq, NULL);
2562}
2563
2564enum mmc_issued mmc_blk_mq_issue_rq(struct mmc_queue *mq, struct request *req)
2565{
2566 struct mmc_blk_data *md = mq->blkdata;
2567 struct mmc_card *card = md->queue.card;
2568 struct mmc_host *host = card->host;
2569 int ret;
2570
2571 ret = mmc_blk_part_switch(card, md->part_type);
2572 if (ret)
2573 return MMC_REQ_FAILED_TO_START;
2574
2575 switch (mmc_issue_type(mq, req)) {
2576 case MMC_ISSUE_SYNC:
2577 ret = mmc_blk_wait_for_idle(mq, host);
2578 if (ret)
2579 return MMC_REQ_BUSY;
2580 switch (req_op(req)) {
2581 case REQ_OP_DRV_IN:
2582 case REQ_OP_DRV_OUT:
2583 mmc_blk_issue_drv_op(mq, req);
2584 break;
2585 case REQ_OP_DISCARD:
2586 mmc_blk_issue_discard_rq(mq, req);
2587 break;
2588 case REQ_OP_SECURE_ERASE:
2589 mmc_blk_issue_secdiscard_rq(mq, req);
2590 break;
2591 case REQ_OP_FLUSH:
2592 mmc_blk_issue_flush(mq, req);
2593 break;
2594 default:
2595 WARN_ON_ONCE(1);
2596 return MMC_REQ_FAILED_TO_START;
2597 }
2598 return MMC_REQ_FINISHED;
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02002599 case MMC_ISSUE_DCMD:
Adrian Hunter81196972017-11-29 15:41:03 +02002600 case MMC_ISSUE_ASYNC:
2601 switch (req_op(req)) {
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02002602 case REQ_OP_FLUSH:
2603 ret = mmc_blk_cqe_issue_flush(mq, req);
2604 break;
Adrian Hunter81196972017-11-29 15:41:03 +02002605 case REQ_OP_READ:
2606 case REQ_OP_WRITE:
Adrian Hunter1e8e55b2017-11-29 15:41:04 +02002607 if (mq->use_cqe)
2608 ret = mmc_blk_cqe_issue_rw_rq(mq, req);
2609 else
2610 ret = mmc_blk_mq_issue_rw_rq(mq, req);
Adrian Hunter81196972017-11-29 15:41:03 +02002611 break;
2612 default:
2613 WARN_ON_ONCE(1);
2614 ret = -EINVAL;
2615 }
2616 if (!ret)
2617 return MMC_REQ_STARTED;
2618 return ret == -EBUSY ? MMC_REQ_BUSY : MMC_REQ_FAILED_TO_START;
2619 default:
2620 WARN_ON_ONCE(1);
2621 return MMC_REQ_FAILED_TO_START;
2622 }
2623}
2624
Linus Walleij0e65f102017-02-01 13:47:58 +01002625static bool mmc_blk_rw_cmd_err(struct mmc_blk_data *md, struct mmc_card *card,
2626 struct mmc_blk_request *brq, struct request *req,
2627 bool old_req_pending)
Adrian Hunter67716322011-08-29 16:42:15 +03002628{
Linus Walleij0e65f102017-02-01 13:47:58 +01002629 bool req_pending;
2630
Adrian Hunter67716322011-08-29 16:42:15 +03002631 /*
2632 * If this is an SD card and we're writing, we can first
2633 * mark the known good sectors as ok.
2634 *
2635 * If the card is not SD, we can still ok written sectors
2636 * as reported by the controller (which might be less than
2637 * the real number of written sectors, but never more).
2638 */
2639 if (mmc_card_sd(card)) {
2640 u32 blocks;
Linus Walleij169f03a2017-02-01 13:47:57 +01002641 int err;
Adrian Hunter67716322011-08-29 16:42:15 +03002642
Linus Walleij169f03a2017-02-01 13:47:57 +01002643 err = mmc_sd_num_wr_blocks(card, &blocks);
Linus Walleij0e65f102017-02-01 13:47:58 +01002644 if (err)
2645 req_pending = old_req_pending;
2646 else
Adrian Huntera7c17d82017-08-25 15:43:45 +03002647 req_pending = blk_end_request(req, BLK_STS_OK, blocks << 9);
Adrian Hunter5dd784d22016-11-29 12:09:08 +02002648 } else {
Adrian Huntera7c17d82017-08-25 15:43:45 +03002649 req_pending = blk_end_request(req, BLK_STS_OK, brq->data.bytes_xfered);
Adrian Hunter67716322011-08-29 16:42:15 +03002650 }
Linus Walleij0e65f102017-02-01 13:47:58 +01002651 return req_pending;
Adrian Hunter67716322011-08-29 16:42:15 +03002652}
2653
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002654static void mmc_blk_rw_cmd_abort(struct mmc_queue *mq, struct mmc_card *card,
2655 struct request *req,
2656 struct mmc_queue_req *mqrq)
Linus Walleij4e1f7802017-01-24 11:17:52 +01002657{
Linus Walleij4e1f7802017-01-24 11:17:52 +01002658 if (mmc_card_removed(card))
2659 req->rq_flags |= RQF_QUIET;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002660 while (blk_end_request(req, BLK_STS_IOERR, blk_rq_cur_bytes(req)));
Linus Walleij304419d2017-05-18 11:29:32 +02002661 mq->qcnt--;
Linus Walleij4e1f7802017-01-24 11:17:52 +01002662}
2663
Linus Walleijb2928e12017-02-01 13:47:54 +01002664/**
2665 * mmc_blk_rw_try_restart() - tries to restart the current async request
2666 * @mq: the queue with the card and host to restart
2667 * @req: a new request that want to be started after the current one
2668 */
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002669static void mmc_blk_rw_try_restart(struct mmc_queue *mq, struct request *req,
2670 struct mmc_queue_req *mqrq)
Linus Walleijefb5a052017-01-24 11:17:53 +01002671{
2672 if (!req)
2673 return;
2674
Linus Walleijb2928e12017-02-01 13:47:54 +01002675 /*
2676 * If the card was removed, just cancel everything and return.
2677 */
2678 if (mmc_card_removed(mq->card)) {
Linus Walleijefb5a052017-01-24 11:17:53 +01002679 req->rq_flags |= RQF_QUIET;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002680 blk_end_request_all(req, BLK_STS_IOERR);
Linus Walleij304419d2017-05-18 11:29:32 +02002681 mq->qcnt--; /* FIXME: just set to 0? */
Linus Walleijb2928e12017-02-01 13:47:54 +01002682 return;
Linus Walleijefb5a052017-01-24 11:17:53 +01002683 }
Linus Walleijb2928e12017-02-01 13:47:54 +01002684 /* Else proceed and try to restart the current async request */
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002685 mmc_blk_rw_rq_prep(mqrq, mq->card, 0, mq);
2686 mmc_start_areq(mq->card->host, &mqrq->areq, NULL);
Linus Walleijefb5a052017-01-24 11:17:53 +01002687}
2688
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002689static void mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *new_req)
Per Forlin54d49d72011-07-01 18:55:29 +02002690{
Linus Walleij7db30282016-11-18 13:36:15 +01002691 struct mmc_blk_data *md = mq->blkdata;
Per Forlin54d49d72011-07-01 18:55:29 +02002692 struct mmc_card *card = md->queue.card;
Adrian Hunter5be80372016-11-29 12:09:09 +02002693 struct mmc_blk_request *brq;
Linus Walleij0e65f102017-02-01 13:47:58 +01002694 int disable_multi = 0, retry = 0, type, retune_retry_done = 0;
Per Forlind78d4a8a2011-07-01 18:55:30 +02002695 enum mmc_blk_status status;
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002696 struct mmc_queue_req *mqrq_cur = NULL;
Per Forlinee8a43a2011-07-01 18:55:33 +02002697 struct mmc_queue_req *mq_rq;
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002698 struct request *old_req;
Linus Walleij7d552a42017-01-24 11:17:56 +01002699 struct mmc_async_req *new_areq;
2700 struct mmc_async_req *old_areq;
Linus Walleij0e65f102017-02-01 13:47:58 +01002701 bool req_pending = true;
Per Forlinee8a43a2011-07-01 18:55:33 +02002702
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002703 if (new_req) {
Linus Walleij304419d2017-05-18 11:29:32 +02002704 mqrq_cur = req_to_mmc_queue_req(new_req);
2705 mq->qcnt++;
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002706 }
2707
2708 if (!mq->qcnt)
Linus Walleijdf061582017-01-24 11:17:57 +01002709 return;
Per Forlin54d49d72011-07-01 18:55:29 +02002710
2711 do {
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002712 if (new_req) {
Saugata Dasa5075eb2012-05-17 16:32:21 +05302713 /*
2714 * When 4KB native sector is enabled, only 8 blocks
2715 * multiple read or write is allowed
2716 */
Yuan, Juntaoe87c8562016-05-13 07:59:24 +00002717 if (mmc_large_sector(card) &&
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002718 !IS_ALIGNED(blk_rq_sectors(new_req), 8)) {
Saugata Dasa5075eb2012-05-17 16:32:21 +05302719 pr_err("%s: Transfer size is not 4KB sector size aligned\n",
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002720 new_req->rq_disk->disk_name);
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002721 mmc_blk_rw_cmd_abort(mq, card, new_req, mqrq_cur);
Linus Walleijdf061582017-01-24 11:17:57 +01002722 return;
Saugata Dasa5075eb2012-05-17 16:32:21 +05302723 }
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002724
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002725 mmc_blk_rw_rq_prep(mqrq_cur, card, 0, mq);
2726 new_areq = &mqrq_cur->areq;
Per Forlinee8a43a2011-07-01 18:55:33 +02002727 } else
Linus Walleij7d552a42017-01-24 11:17:56 +01002728 new_areq = NULL;
2729
Linus Walleijc3399ef2017-02-01 13:47:53 +01002730 old_areq = mmc_start_areq(card->host, new_areq, &status);
Linus Walleij7d552a42017-01-24 11:17:56 +01002731 if (!old_areq) {
Linus Walleijda0dbaf2017-01-24 11:17:55 +01002732 /*
2733 * We have just put the first request into the pipeline
2734 * and there is nothing more to do until it is
2735 * complete.
2736 */
Linus Walleijdf061582017-01-24 11:17:57 +01002737 return;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002738 }
Pierre Ossman98ccf142007-05-12 00:26:16 +02002739
Linus Walleijda0dbaf2017-01-24 11:17:55 +01002740 /*
2741 * An asynchronous request has been completed and we proceed
2742 * to handle the result of it.
2743 */
Linus Walleij74f5ba32017-02-01 13:47:55 +01002744 mq_rq = container_of(old_areq, struct mmc_queue_req, areq);
Per Forlinee8a43a2011-07-01 18:55:33 +02002745 brq = &mq_rq->brq;
Linus Walleij67e69d52017-05-19 15:37:27 +02002746 old_req = mmc_queue_req_to_req(mq_rq);
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002747 type = rq_data_dir(old_req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE;
Pierre Ossman98ccf142007-05-12 00:26:16 +02002748
Per Forlind78d4a8a2011-07-01 18:55:30 +02002749 switch (status) {
2750 case MMC_BLK_SUCCESS:
2751 case MMC_BLK_PARTIAL:
2752 /*
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002753 * Reset success, and accept bytes_xfered. For
2754 * MMC_BLK_PARTIAL re-submit the remaining request. For
2755 * MMC_BLK_SUCCESS error out the remaining request (it
2756 * could not be re-submitted anyway if a next request
2757 * had already begun).
Per Forlind78d4a8a2011-07-01 18:55:30 +02002758 */
Adrian Hunter67716322011-08-29 16:42:15 +03002759 mmc_blk_reset_success(md, type);
Seungwon Jeonce39f9d2013-02-06 17:02:46 +09002760
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002761 req_pending = blk_end_request(old_req, BLK_STS_OK,
Linus Walleij0e65f102017-02-01 13:47:58 +01002762 brq->data.bytes_xfered);
Adrian Hunter67716322011-08-29 16:42:15 +03002763 /*
2764 * If the blk_end_request function returns non-zero even
2765 * though all data has been transferred and no errors
2766 * were returned by the host controller, it's a bug.
2767 */
Linus Walleij0e65f102017-02-01 13:47:58 +01002768 if (status == MMC_BLK_SUCCESS && req_pending) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302769 pr_err("%s BUG rq_tot %d d_xfer %d\n",
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002770 __func__, blk_rq_bytes(old_req),
Per Forlinee8a43a2011-07-01 18:55:33 +02002771 brq->data.bytes_xfered);
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002772 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
Linus Walleijdf061582017-01-24 11:17:57 +01002773 return;
Per Forlinee8a43a2011-07-01 18:55:33 +02002774 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02002775 break;
2776 case MMC_BLK_CMD_ERR:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002777 /*
2778 * For SD cards, get bytes written, but do not accept
2779 * bytes_xfered if that fails. For MMC cards accept
2780 * bytes_xfered. Then try to reset. If reset fails then
2781 * error out the remaining request, otherwise retry
2782 * once (N.B mmc_blk_reset() will not succeed twice in a
2783 * row).
2784 */
Linus Walleij0e65f102017-02-01 13:47:58 +01002785 req_pending = mmc_blk_rw_cmd_err(md, card, brq, old_req, req_pending);
Linus Walleijdb435502017-02-01 13:47:51 +01002786 if (mmc_blk_reset(md, card->host, type)) {
Adrian Hunter8ecc3442017-03-13 14:36:33 +02002787 if (req_pending)
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002788 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
2789 else
Linus Walleij304419d2017-05-18 11:29:32 +02002790 mq->qcnt--;
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002791 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002792 return;
2793 }
Linus Walleij0e65f102017-02-01 13:47:58 +01002794 if (!req_pending) {
Linus Walleij304419d2017-05-18 11:29:32 +02002795 mq->qcnt--;
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002796 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002797 return;
2798 }
Ding Wang29535f72015-05-18 20:14:15 +08002799 break;
Per Forlind78d4a8a2011-07-01 18:55:30 +02002800 case MMC_BLK_RETRY:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002801 /*
2802 * Do not accept bytes_xfered, but retry up to 5 times,
2803 * otherwise same as abort.
2804 */
Adrian Hunterb8360a42015-05-07 13:10:24 +03002805 retune_retry_done = brq->retune_retry_done;
Per Forlind78d4a8a2011-07-01 18:55:30 +02002806 if (retry++ < 5)
Russell King - ARM Linuxa01f3cc2011-06-20 20:10:28 +01002807 break;
Adrian Hunter67716322011-08-29 16:42:15 +03002808 /* Fall through */
Per Forlind78d4a8a2011-07-01 18:55:30 +02002809 case MMC_BLK_ABORT:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002810 /*
2811 * Do not accept bytes_xfered, but try to reset. If
2812 * reset succeeds, try once more, otherwise error out
2813 * the request.
2814 */
Adrian Hunter67716322011-08-29 16:42:15 +03002815 if (!mmc_blk_reset(md, card->host, type))
2816 break;
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002817 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002818 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002819 return;
Adrian Hunter67716322011-08-29 16:42:15 +03002820 case MMC_BLK_DATA_ERR: {
2821 int err;
2822
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002823 /*
2824 * Do not accept bytes_xfered, but try to reset. If
2825 * reset succeeds, try once more. If reset fails with
2826 * ENODEV which means the partition is wrong, then error
2827 * out the request. Otherwise attempt to read one sector
2828 * at a time.
2829 */
Adrian Hunter67716322011-08-29 16:42:15 +03002830 err = mmc_blk_reset(md, card->host, type);
2831 if (!err)
2832 break;
Linus Walleijdb435502017-02-01 13:47:51 +01002833 if (err == -ENODEV) {
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002834 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002835 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002836 return;
2837 }
Adrian Hunter67716322011-08-29 16:42:15 +03002838 /* Fall through */
2839 }
2840 case MMC_BLK_ECC_ERR:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002841 /*
2842 * Do not accept bytes_xfered. If reading more than one
2843 * sector, try reading one sector at a time.
2844 */
Adrian Hunter67716322011-08-29 16:42:15 +03002845 if (brq->data.blocks > 1) {
2846 /* Redo read one sector at a time */
Joe Perches66061102014-09-12 14:56:56 -07002847 pr_warn("%s: retrying using single block read\n",
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002848 old_req->rq_disk->disk_name);
Adrian Hunter67716322011-08-29 16:42:15 +03002849 disable_multi = 1;
2850 break;
2851 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02002852 /*
2853 * After an error, we redo I/O one sector at a
2854 * time, so we only reach here after trying to
2855 * read a single sector.
2856 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002857 req_pending = blk_end_request(old_req, BLK_STS_IOERR,
Linus Walleij0e65f102017-02-01 13:47:58 +01002858 brq->data.blksz);
2859 if (!req_pending) {
Linus Walleij304419d2017-05-18 11:29:32 +02002860 mq->qcnt--;
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002861 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002862 return;
2863 }
Per Forlind78d4a8a2011-07-01 18:55:30 +02002864 break;
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +05302865 case MMC_BLK_NOMEDIUM:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002866 /* Do not accept bytes_xfered. Error out the request */
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002867 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002868 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002869 return;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002870 default:
Adrian Hunter6d3898a62017-11-29 15:41:01 +02002871 /* Do not accept bytes_xfered. Error out the request */
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05002872 pr_err("%s: Unhandled return value (%d)",
Linus Walleijacd8dbd2017-02-01 13:47:52 +01002873 old_req->rq_disk->disk_name, status);
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002874 mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq);
Adrian Hunter8ddfe072017-03-13 14:36:34 +02002875 mmc_blk_rw_try_restart(mq, new_req, mqrq_cur);
Linus Walleijdb435502017-02-01 13:47:51 +01002876 return;
Russell King - ARM Linux4c2b8f22011-06-20 20:10:49 +01002877 }
2878
Linus Walleij0e65f102017-02-01 13:47:58 +01002879 if (req_pending) {
Linus Walleij03d640a2016-11-25 10:35:00 +01002880 /*
2881 * In case of a incomplete request
2882 * prepare it again and resend.
2883 */
2884 mmc_blk_rw_rq_prep(mq_rq, card,
2885 disable_multi, mq);
Linus Walleijc3399ef2017-02-01 13:47:53 +01002886 mmc_start_areq(card->host,
Linus Walleij74f5ba32017-02-01 13:47:55 +01002887 &mq_rq->areq, NULL);
Adrian Hunterb8360a42015-05-07 13:10:24 +03002888 mq_rq->brq.retune_retry_done = retune_retry_done;
Per Forlinee8a43a2011-07-01 18:55:33 +02002889 }
Linus Walleij0e65f102017-02-01 13:47:58 +01002890 } while (req_pending);
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002891
Linus Walleij304419d2017-05-18 11:29:32 +02002892 mq->qcnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893}
2894
Linus Walleijdf061582017-01-24 11:17:57 +01002895void mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
Adrian Hunterbd788c92010-08-11 14:17:47 -07002896{
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002897 int ret;
Linus Walleij7db30282016-11-18 13:36:15 +01002898 struct mmc_blk_data *md = mq->blkdata;
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002899 struct mmc_card *card = md->queue.card;
2900
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002901 if (req && !mq->qcnt)
Per Forlinee8a43a2011-07-01 18:55:33 +02002902 /* claim host only for the first request */
Adrian Hunter6c0cedd2017-09-22 15:36:51 +03002903 mmc_get_card(card, NULL);
Per Forlinee8a43a2011-07-01 18:55:33 +02002904
Linus Walleij1f797ed2017-08-20 23:39:10 +02002905 ret = mmc_blk_part_switch(card, md->part_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05002906 if (ret) {
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03002907 if (req) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002908 blk_end_request_all(req, BLK_STS_IOERR);
Adrian Hunter0d7d85c2011-09-23 12:48:20 +03002909 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05002910 goto out;
2911 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002912
Linus Walleij614f0382017-05-18 11:29:34 +02002913 if (req) {
2914 switch (req_op(req)) {
2915 case REQ_OP_DRV_IN:
2916 case REQ_OP_DRV_OUT:
2917 /*
2918 * Complete ongoing async transfer before issuing
2919 * ioctl()s
2920 */
2921 if (mq->qcnt)
2922 mmc_blk_issue_rw_rq(mq, NULL);
Linus Walleij02166a02017-05-19 15:37:28 +02002923 mmc_blk_issue_drv_op(mq, req);
Linus Walleij614f0382017-05-18 11:29:34 +02002924 break;
2925 case REQ_OP_DISCARD:
2926 /*
2927 * Complete ongoing async transfer before issuing
2928 * discard.
2929 */
2930 if (mq->qcnt)
2931 mmc_blk_issue_rw_rq(mq, NULL);
2932 mmc_blk_issue_discard_rq(mq, req);
2933 break;
2934 case REQ_OP_SECURE_ERASE:
2935 /*
2936 * Complete ongoing async transfer before issuing
2937 * secure erase.
2938 */
2939 if (mq->qcnt)
2940 mmc_blk_issue_rw_rq(mq, NULL);
2941 mmc_blk_issue_secdiscard_rq(mq, req);
2942 break;
2943 case REQ_OP_FLUSH:
2944 /*
2945 * Complete ongoing async transfer before issuing
2946 * flush.
2947 */
2948 if (mq->qcnt)
2949 mmc_blk_issue_rw_rq(mq, NULL);
2950 mmc_blk_issue_flush(mq, req);
2951 break;
2952 default:
2953 /* Normal request, just issue it */
2954 mmc_blk_issue_rw_rq(mq, req);
2955 card->host->context_info.is_waiting_last_req = false;
2956 break;
Wu Fengguang73222382017-05-23 05:11:33 +08002957 }
Adrian Hunter49804542010-08-11 14:17:50 -07002958 } else {
Linus Walleij614f0382017-05-18 11:29:34 +02002959 /* No request, flushing the pipeline with NULL */
2960 mmc_blk_issue_rw_rq(mq, NULL);
Adrian Hunter2602b742017-03-13 14:36:32 +02002961 card->host->context_info.is_waiting_last_req = false;
Adrian Hunter49804542010-08-11 14:17:50 -07002962 }
Andrei Warkentin1a258db2011-04-11 18:10:24 -05002963
Andrei Warkentin371a6892011-04-11 18:10:25 -05002964out:
Adrian Huntercdf8a6f2017-03-13 14:36:35 +02002965 if (!mq->qcnt)
Adrian Hunter6c0cedd2017-09-22 15:36:51 +03002966 mmc_put_card(card, NULL);
Adrian Hunterbd788c92010-08-11 14:17:47 -07002967}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Russell Kinga6f6c962006-01-03 22:38:44 +00002969static inline int mmc_blk_readonly(struct mmc_card *card)
2970{
2971 return mmc_card_readonly(card) ||
2972 !(card->csd.cmdclass & CCC_BLOCK_WRITE);
2973}
2974
Andrei Warkentin371a6892011-04-11 18:10:25 -05002975static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card,
2976 struct device *parent,
2977 sector_t size,
2978 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01002979 const char *subname,
2980 int area_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
2982 struct mmc_blk_data *md;
2983 int devidx, ret;
2984
Heiner Kallweita04848c2017-02-01 19:44:22 +01002985 devidx = ida_simple_get(&mmc_blk_ida, 0, max_devices, GFP_KERNEL);
Shawn Line7b42762017-08-23 15:38:31 +08002986 if (devidx < 0) {
2987 /*
2988 * We get -ENOSPC because there are no more any available
2989 * devidx. The reason may be that, either userspace haven't yet
2990 * unmounted the partitions, which postpones mmc_blk_release()
2991 * from being called, or the device has more partitions than
2992 * what we support.
2993 */
2994 if (devidx == -ENOSPC)
2995 dev_err(mmc_dev(card->host),
2996 "no more device IDs available\n");
2997
Heiner Kallweita04848c2017-02-01 19:44:22 +01002998 return ERR_PTR(devidx);
Shawn Line7b42762017-08-23 15:38:31 +08002999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07003001 md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL);
Russell Kinga6f6c962006-01-03 22:38:44 +00003002 if (!md) {
3003 ret = -ENOMEM;
3004 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 }
Russell Kinga6f6c962006-01-03 22:38:44 +00003006
Johan Rudholmadd710e2011-12-02 08:51:06 +01003007 md->area_type = area_type;
3008
Andrei Warkentinf06c9152011-04-21 22:46:13 -05003009 /*
Russell Kinga6f6c962006-01-03 22:38:44 +00003010 * Set the read-only status based on the supported commands
3011 * and the write protect switch.
3012 */
3013 md->read_only = mmc_blk_readonly(card);
3014
Olof Johansson5e71b7a2010-09-17 21:19:57 -04003015 md->disk = alloc_disk(perdev_minors);
Russell Kinga6f6c962006-01-03 22:38:44 +00003016 if (md->disk == NULL) {
3017 ret = -ENOMEM;
3018 goto err_kfree;
3019 }
3020
3021 spin_lock_init(&md->lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003022 INIT_LIST_HEAD(&md->part);
Linus Walleij97548572017-09-20 10:02:00 +02003023 INIT_LIST_HEAD(&md->rpmbs);
Russell Kinga6f6c962006-01-03 22:38:44 +00003024 md->usage = 1;
3025
Adrian Hunterd09408a2011-06-23 13:40:28 +03003026 ret = mmc_init_queue(&md->queue, card, &md->lock, subname);
Russell Kinga6f6c962006-01-03 22:38:44 +00003027 if (ret)
3028 goto err_putdisk;
3029
Linus Walleij7db30282016-11-18 13:36:15 +01003030 md->queue.blkdata = md;
Russell Kinga6f6c962006-01-03 22:38:44 +00003031
Adrian Hunter41e3efd2017-11-29 15:40:59 +02003032 /*
3033 * Keep an extra reference to the queue so that we can shutdown the
3034 * queue (i.e. call blk_cleanup_queue()) while there are still
3035 * references to the 'md'. The corresponding blk_put_queue() is in
3036 * mmc_blk_put().
3037 */
3038 if (!blk_get_queue(md->queue.queue)) {
3039 mmc_cleanup_queue(&md->queue);
3040 goto err_putdisk;
3041 }
3042
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02003043 md->disk->major = MMC_BLOCK_MAJOR;
Olof Johansson5e71b7a2010-09-17 21:19:57 -04003044 md->disk->first_minor = devidx * perdev_minors;
Russell Kinga6f6c962006-01-03 22:38:44 +00003045 md->disk->fops = &mmc_bdops;
3046 md->disk->private_data = md;
3047 md->disk->queue = md->queue.queue;
Dan Williams307d8e62016-06-20 10:40:44 -07003048 md->parent = parent;
Andrei Warkentin371a6892011-04-11 18:10:25 -05003049 set_disk_ro(md->disk, md->read_only || default_ro);
Colin Cross382c55f2015-10-22 10:00:41 -07003050 md->disk->flags = GENHD_FL_EXT_DEVT;
Ulf Hanssonf5b4d712014-09-03 11:02:23 +02003051 if (area_type & (MMC_BLK_DATA_AREA_RPMB | MMC_BLK_DATA_AREA_BOOT))
Loic Pallardy53d8f972012-08-06 17:12:28 +02003052 md->disk->flags |= GENHD_FL_NO_PART_SCAN;
Russell Kinga6f6c962006-01-03 22:38:44 +00003053
3054 /*
3055 * As discussed on lkml, GENHD_FL_REMOVABLE should:
3056 *
3057 * - be set for removable media with permanent block devices
3058 * - be unset for removable block devices with permanent media
3059 *
3060 * Since MMC block devices clearly fall under the second
3061 * case, we do not set GENHD_FL_REMOVABLE. Userspace
3062 * should use the block device creation/destruction hotplug
3063 * messages to tell when the card is present.
3064 */
3065
Andrei Warkentinf06c9152011-04-21 22:46:13 -05003066 snprintf(md->disk->disk_name, sizeof(md->disk->disk_name),
Ulf Hansson9aaf3432016-04-06 16:12:08 +02003067 "mmcblk%u%s", card->host->index, subname ? subname : "");
Russell Kinga6f6c962006-01-03 22:38:44 +00003068
Saugata Dasa5075eb2012-05-17 16:32:21 +05303069 if (mmc_card_mmc(card))
3070 blk_queue_logical_block_size(md->queue.queue,
3071 card->ext_csd.data_sector_size);
3072 else
3073 blk_queue_logical_block_size(md->queue.queue, 512);
3074
Andrei Warkentin371a6892011-04-11 18:10:25 -05003075 set_capacity(md->disk, size);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05003076
Andrei Warkentinf0d89972011-05-23 15:06:38 -05003077 if (mmc_host_cmd23(card->host)) {
Daniel Glöckner0ed50ab2016-08-30 14:17:30 +02003078 if ((mmc_card_mmc(card) &&
3079 card->csd.mmca_vsn >= CSD_SPEC_VER_3) ||
Andrei Warkentinf0d89972011-05-23 15:06:38 -05003080 (mmc_card_sd(card) &&
3081 card->scr.cmds & SD_SCR_CMD23_SUPPORT))
3082 md->flags |= MMC_BLK_CMD23;
3083 }
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05003084
3085 if (mmc_card_mmc(card) &&
3086 md->flags & MMC_BLK_CMD23 &&
3087 ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) ||
3088 card->ext_csd.rel_sectors)) {
3089 md->flags |= MMC_BLK_REL_WR;
Jens Axboee9d5c742016-03-30 10:17:20 -06003090 blk_queue_write_cache(md->queue.queue, true, true);
Andrei Warkentind0c97cf2011-05-23 15:06:36 -05003091 }
3092
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 return md;
Russell Kinga6f6c962006-01-03 22:38:44 +00003094
3095 err_putdisk:
3096 put_disk(md->disk);
3097 err_kfree:
3098 kfree(md);
3099 out:
Heiner Kallweita04848c2017-02-01 19:44:22 +01003100 ida_simple_remove(&mmc_blk_ida, devidx);
Russell Kinga6f6c962006-01-03 22:38:44 +00003101 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102}
3103
Andrei Warkentin371a6892011-04-11 18:10:25 -05003104static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card)
3105{
3106 sector_t size;
Andrei Warkentin371a6892011-04-11 18:10:25 -05003107
3108 if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) {
3109 /*
3110 * The EXT_CSD sector count is in number or 512 byte
3111 * sectors.
3112 */
3113 size = card->ext_csd.sectors;
3114 } else {
3115 /*
3116 * The CSD capacity field is in units of read_blkbits.
3117 * set_capacity takes units of 512 bytes.
3118 */
Kuninori Morimoto087de9e2015-05-11 07:35:28 +00003119 size = (typeof(sector_t))card->csd.capacity
3120 << (card->csd.read_blkbits - 9);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003121 }
3122
Tobias Klauser7a30f2a2015-01-21 15:56:44 +01003123 return mmc_blk_alloc_req(card, &card->dev, size, false, NULL,
Johan Rudholmadd710e2011-12-02 08:51:06 +01003124 MMC_BLK_DATA_AREA_MAIN);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003125}
3126
3127static int mmc_blk_alloc_part(struct mmc_card *card,
3128 struct mmc_blk_data *md,
3129 unsigned int part_type,
3130 sector_t size,
3131 bool default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01003132 const char *subname,
3133 int area_type)
Andrei Warkentin371a6892011-04-11 18:10:25 -05003134{
3135 char cap_str[10];
3136 struct mmc_blk_data *part_md;
3137
3138 part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01003139 subname, area_type);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003140 if (IS_ERR(part_md))
3141 return PTR_ERR(part_md);
3142 part_md->part_type = part_type;
3143 list_add(&part_md->part, &md->part);
3144
James Bottomleyb9f28d82015-03-05 18:47:01 -08003145 string_get_size((u64)get_capacity(part_md->disk), 512, STRING_UNITS_2,
Andrei Warkentin371a6892011-04-11 18:10:25 -05003146 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05303147 pr_info("%s: %s %s partition %u %s\n",
Andrei Warkentin371a6892011-04-11 18:10:25 -05003148 part_md->disk->disk_name, mmc_card_id(card),
3149 mmc_card_name(card), part_md->part_type, cap_str);
3150 return 0;
3151}
3152
Linus Walleij97548572017-09-20 10:02:00 +02003153/**
3154 * mmc_rpmb_ioctl() - ioctl handler for the RPMB chardev
3155 * @filp: the character device file
3156 * @cmd: the ioctl() command
3157 * @arg: the argument from userspace
3158 *
3159 * This will essentially just redirect the ioctl()s coming in over to
3160 * the main block device spawning the RPMB character device.
3161 */
3162static long mmc_rpmb_ioctl(struct file *filp, unsigned int cmd,
3163 unsigned long arg)
3164{
3165 struct mmc_rpmb_data *rpmb = filp->private_data;
3166 int ret;
3167
3168 switch (cmd) {
3169 case MMC_IOC_CMD:
3170 ret = mmc_blk_ioctl_cmd(rpmb->md,
3171 (struct mmc_ioc_cmd __user *)arg,
3172 rpmb);
3173 break;
3174 case MMC_IOC_MULTI_CMD:
3175 ret = mmc_blk_ioctl_multi_cmd(rpmb->md,
3176 (struct mmc_ioc_multi_cmd __user *)arg,
3177 rpmb);
3178 break;
3179 default:
3180 ret = -EINVAL;
3181 break;
3182 }
3183
3184 return 0;
3185}
3186
3187#ifdef CONFIG_COMPAT
3188static long mmc_rpmb_ioctl_compat(struct file *filp, unsigned int cmd,
3189 unsigned long arg)
3190{
3191 return mmc_rpmb_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
3192}
3193#endif
3194
3195static int mmc_rpmb_chrdev_open(struct inode *inode, struct file *filp)
3196{
3197 struct mmc_rpmb_data *rpmb = container_of(inode->i_cdev,
3198 struct mmc_rpmb_data, chrdev);
3199
3200 get_device(&rpmb->dev);
3201 filp->private_data = rpmb;
Linus Walleij1c87f732017-10-04 11:10:07 +02003202 mmc_blk_get(rpmb->md->disk);
Linus Walleij97548572017-09-20 10:02:00 +02003203
3204 return nonseekable_open(inode, filp);
3205}
3206
3207static int mmc_rpmb_chrdev_release(struct inode *inode, struct file *filp)
3208{
3209 struct mmc_rpmb_data *rpmb = container_of(inode->i_cdev,
3210 struct mmc_rpmb_data, chrdev);
3211
3212 put_device(&rpmb->dev);
Linus Walleij1c87f732017-10-04 11:10:07 +02003213 mmc_blk_put(rpmb->md);
Linus Walleij97548572017-09-20 10:02:00 +02003214
3215 return 0;
3216}
3217
3218static const struct file_operations mmc_rpmb_fileops = {
3219 .release = mmc_rpmb_chrdev_release,
3220 .open = mmc_rpmb_chrdev_open,
3221 .owner = THIS_MODULE,
3222 .llseek = no_llseek,
3223 .unlocked_ioctl = mmc_rpmb_ioctl,
3224#ifdef CONFIG_COMPAT
3225 .compat_ioctl = mmc_rpmb_ioctl_compat,
3226#endif
3227};
3228
Linus Walleij1c87f732017-10-04 11:10:07 +02003229static void mmc_blk_rpmb_device_release(struct device *dev)
3230{
3231 struct mmc_rpmb_data *rpmb = dev_get_drvdata(dev);
3232
3233 ida_simple_remove(&mmc_rpmb_ida, rpmb->id);
3234 kfree(rpmb);
3235}
Linus Walleij97548572017-09-20 10:02:00 +02003236
3237static int mmc_blk_alloc_rpmb_part(struct mmc_card *card,
3238 struct mmc_blk_data *md,
3239 unsigned int part_index,
3240 sector_t size,
3241 const char *subname)
3242{
3243 int devidx, ret;
3244 char rpmb_name[DISK_NAME_LEN];
3245 char cap_str[10];
3246 struct mmc_rpmb_data *rpmb;
3247
3248 /* This creates the minor number for the RPMB char device */
3249 devidx = ida_simple_get(&mmc_rpmb_ida, 0, max_devices, GFP_KERNEL);
3250 if (devidx < 0)
3251 return devidx;
3252
3253 rpmb = kzalloc(sizeof(*rpmb), GFP_KERNEL);
Linus Walleij1c87f732017-10-04 11:10:07 +02003254 if (!rpmb) {
3255 ida_simple_remove(&mmc_rpmb_ida, devidx);
Linus Walleij97548572017-09-20 10:02:00 +02003256 return -ENOMEM;
Linus Walleij1c87f732017-10-04 11:10:07 +02003257 }
Linus Walleij97548572017-09-20 10:02:00 +02003258
3259 snprintf(rpmb_name, sizeof(rpmb_name),
3260 "mmcblk%u%s", card->host->index, subname ? subname : "");
3261
3262 rpmb->id = devidx;
3263 rpmb->part_index = part_index;
3264 rpmb->dev.init_name = rpmb_name;
3265 rpmb->dev.bus = &mmc_rpmb_bus_type;
3266 rpmb->dev.devt = MKDEV(MAJOR(mmc_rpmb_devt), rpmb->id);
3267 rpmb->dev.parent = &card->dev;
Linus Walleij1c87f732017-10-04 11:10:07 +02003268 rpmb->dev.release = mmc_blk_rpmb_device_release;
Linus Walleij97548572017-09-20 10:02:00 +02003269 device_initialize(&rpmb->dev);
3270 dev_set_drvdata(&rpmb->dev, rpmb);
3271 rpmb->md = md;
3272
3273 cdev_init(&rpmb->chrdev, &mmc_rpmb_fileops);
3274 rpmb->chrdev.owner = THIS_MODULE;
3275 ret = cdev_device_add(&rpmb->chrdev, &rpmb->dev);
3276 if (ret) {
3277 pr_err("%s: could not add character device\n", rpmb_name);
Linus Walleij1c87f732017-10-04 11:10:07 +02003278 goto out_put_device;
Linus Walleij97548572017-09-20 10:02:00 +02003279 }
3280
3281 list_add(&rpmb->node, &md->rpmbs);
3282
3283 string_get_size((u64)size, 512, STRING_UNITS_2,
3284 cap_str, sizeof(cap_str));
3285
3286 pr_info("%s: %s %s partition %u %s, chardev (%d:%d)\n",
3287 rpmb_name, mmc_card_id(card),
3288 mmc_card_name(card), EXT_CSD_PART_CONFIG_ACC_RPMB, cap_str,
3289 MAJOR(mmc_rpmb_devt), rpmb->id);
3290
3291 return 0;
3292
Linus Walleij1c87f732017-10-04 11:10:07 +02003293out_put_device:
3294 put_device(&rpmb->dev);
Linus Walleij97548572017-09-20 10:02:00 +02003295 return ret;
3296}
3297
3298static void mmc_blk_remove_rpmb_part(struct mmc_rpmb_data *rpmb)
Linus Walleij1c87f732017-10-04 11:10:07 +02003299
Linus Walleij97548572017-09-20 10:02:00 +02003300{
3301 cdev_device_del(&rpmb->chrdev, &rpmb->dev);
Linus Walleij1c87f732017-10-04 11:10:07 +02003302 put_device(&rpmb->dev);
Linus Walleij97548572017-09-20 10:02:00 +02003303}
3304
Namjae Jeone0c368d2011-10-06 23:41:38 +09003305/* MMC Physical partitions consist of two boot partitions and
3306 * up to four general purpose partitions.
3307 * For each partition enabled in EXT_CSD a block device will be allocatedi
3308 * to provide access to the partition.
3309 */
3310
Andrei Warkentin371a6892011-04-11 18:10:25 -05003311static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md)
3312{
Linus Walleij97548572017-09-20 10:02:00 +02003313 int idx, ret;
Andrei Warkentin371a6892011-04-11 18:10:25 -05003314
3315 if (!mmc_card_mmc(card))
3316 return 0;
3317
Namjae Jeone0c368d2011-10-06 23:41:38 +09003318 for (idx = 0; idx < card->nr_parts; idx++) {
Linus Walleij97548572017-09-20 10:02:00 +02003319 if (card->part[idx].area_type & MMC_BLK_DATA_AREA_RPMB) {
3320 /*
3321 * RPMB partitions does not provide block access, they
3322 * are only accessed using ioctl():s. Thus create
3323 * special RPMB block devices that do not have a
3324 * backing block queue for these.
3325 */
3326 ret = mmc_blk_alloc_rpmb_part(card, md,
3327 card->part[idx].part_cfg,
3328 card->part[idx].size >> 9,
3329 card->part[idx].name);
3330 if (ret)
3331 return ret;
3332 } else if (card->part[idx].size) {
Namjae Jeone0c368d2011-10-06 23:41:38 +09003333 ret = mmc_blk_alloc_part(card, md,
3334 card->part[idx].part_cfg,
3335 card->part[idx].size >> 9,
3336 card->part[idx].force_ro,
Johan Rudholmadd710e2011-12-02 08:51:06 +01003337 card->part[idx].name,
3338 card->part[idx].area_type);
Namjae Jeone0c368d2011-10-06 23:41:38 +09003339 if (ret)
3340 return ret;
3341 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05003342 }
3343
Linus Walleij97548572017-09-20 10:02:00 +02003344 return 0;
Andrei Warkentin371a6892011-04-11 18:10:25 -05003345}
3346
Andrei Warkentin371a6892011-04-11 18:10:25 -05003347static void mmc_blk_remove_req(struct mmc_blk_data *md)
3348{
Johan Rudholmadd710e2011-12-02 08:51:06 +01003349 struct mmc_card *card;
3350
Andrei Warkentin371a6892011-04-11 18:10:25 -05003351 if (md) {
Paul Taysomfdfa20c2013-06-04 14:42:40 -07003352 /*
3353 * Flush remaining requests and free queues. It
3354 * is freeing the queue that stops new requests
3355 * from being accepted.
3356 */
Franck Jullien8efb83a2013-07-24 15:17:48 +02003357 card = md->queue.card;
Paul Taysomfdfa20c2013-06-04 14:42:40 -07003358 mmc_cleanup_queue(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003359 if (md->disk->flags & GENHD_FL_UP) {
3360 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
Johan Rudholmadd710e2011-12-02 08:51:06 +01003361 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
3362 card->ext_csd.boot_ro_lockable)
3363 device_remove_file(disk_to_dev(md->disk),
3364 &md->power_ro_lock);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003365
Andrei Warkentin371a6892011-04-11 18:10:25 -05003366 del_gendisk(md->disk);
3367 }
Andrei Warkentin371a6892011-04-11 18:10:25 -05003368 mmc_blk_put(md);
3369 }
3370}
3371
3372static void mmc_blk_remove_parts(struct mmc_card *card,
3373 struct mmc_blk_data *md)
3374{
3375 struct list_head *pos, *q;
3376 struct mmc_blk_data *part_md;
Linus Walleij97548572017-09-20 10:02:00 +02003377 struct mmc_rpmb_data *rpmb;
Andrei Warkentin371a6892011-04-11 18:10:25 -05003378
Linus Walleij97548572017-09-20 10:02:00 +02003379 /* Remove RPMB partitions */
3380 list_for_each_safe(pos, q, &md->rpmbs) {
3381 rpmb = list_entry(pos, struct mmc_rpmb_data, node);
3382 list_del(pos);
3383 mmc_blk_remove_rpmb_part(rpmb);
3384 }
3385 /* Remove block partitions */
Andrei Warkentin371a6892011-04-11 18:10:25 -05003386 list_for_each_safe(pos, q, &md->part) {
3387 part_md = list_entry(pos, struct mmc_blk_data, part);
3388 list_del(pos);
3389 mmc_blk_remove_req(part_md);
3390 }
3391}
3392
3393static int mmc_add_disk(struct mmc_blk_data *md)
3394{
3395 int ret;
Johan Rudholmadd710e2011-12-02 08:51:06 +01003396 struct mmc_card *card = md->queue.card;
Andrei Warkentin371a6892011-04-11 18:10:25 -05003397
Dan Williams307d8e62016-06-20 10:40:44 -07003398 device_add_disk(md->parent, md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003399 md->force_ro.show = force_ro_show;
3400 md->force_ro.store = force_ro_store;
Rabin Vincent641c3182011-04-23 20:52:58 +05303401 sysfs_attr_init(&md->force_ro.attr);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003402 md->force_ro.attr.name = "force_ro";
3403 md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
3404 ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);
3405 if (ret)
Johan Rudholmadd710e2011-12-02 08:51:06 +01003406 goto force_ro_fail;
3407
3408 if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) &&
3409 card->ext_csd.boot_ro_lockable) {
Al Viro88187392012-03-20 06:00:24 -04003410 umode_t mode;
Johan Rudholmadd710e2011-12-02 08:51:06 +01003411
3412 if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS)
3413 mode = S_IRUGO;
3414 else
3415 mode = S_IRUGO | S_IWUSR;
3416
3417 md->power_ro_lock.show = power_ro_lock_show;
3418 md->power_ro_lock.store = power_ro_lock_store;
Rabin Vincent00d9ac02012-02-01 16:31:56 +01003419 sysfs_attr_init(&md->power_ro_lock.attr);
Johan Rudholmadd710e2011-12-02 08:51:06 +01003420 md->power_ro_lock.attr.mode = mode;
3421 md->power_ro_lock.attr.name =
3422 "ro_lock_until_next_power_on";
3423 ret = device_create_file(disk_to_dev(md->disk),
3424 &md->power_ro_lock);
3425 if (ret)
3426 goto power_ro_lock_fail;
3427 }
3428 return ret;
3429
3430power_ro_lock_fail:
3431 device_remove_file(disk_to_dev(md->disk), &md->force_ro);
3432force_ro_fail:
3433 del_gendisk(md->disk);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003434
3435 return ret;
3436}
3437
Linus Walleij627c3cc2017-08-20 23:39:08 +02003438#ifdef CONFIG_DEBUG_FS
3439
3440static int mmc_dbg_card_status_get(void *data, u64 *val)
3441{
3442 struct mmc_card *card = data;
3443 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
3444 struct mmc_queue *mq = &md->queue;
3445 struct request *req;
3446 int ret;
3447
3448 /* Ask the block layer about the card status */
3449 req = blk_get_request(mq->queue, REQ_OP_DRV_IN, __GFP_RECLAIM);
Adrian Hunterfb8e456e2017-11-21 15:42:28 +02003450 if (IS_ERR(req))
3451 return PTR_ERR(req);
Linus Walleij627c3cc2017-08-20 23:39:08 +02003452 req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_GET_CARD_STATUS;
3453 blk_execute_rq(mq->queue, NULL, req, 0);
3454 ret = req_to_mmc_queue_req(req)->drv_op_result;
3455 if (ret >= 0) {
3456 *val = ret;
3457 ret = 0;
3458 }
Adrian Hunter34c089e2017-11-21 15:42:27 +02003459 blk_put_request(req);
Linus Walleij627c3cc2017-08-20 23:39:08 +02003460
3461 return ret;
3462}
3463DEFINE_SIMPLE_ATTRIBUTE(mmc_dbg_card_status_fops, mmc_dbg_card_status_get,
3464 NULL, "%08llx\n");
3465
3466/* That is two digits * 512 + 1 for newline */
3467#define EXT_CSD_STR_LEN 1025
3468
3469static int mmc_ext_csd_open(struct inode *inode, struct file *filp)
3470{
3471 struct mmc_card *card = inode->i_private;
3472 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
3473 struct mmc_queue *mq = &md->queue;
3474 struct request *req;
3475 char *buf;
3476 ssize_t n = 0;
3477 u8 *ext_csd;
3478 int err, i;
3479
3480 buf = kmalloc(EXT_CSD_STR_LEN + 1, GFP_KERNEL);
3481 if (!buf)
3482 return -ENOMEM;
3483
3484 /* Ask the block layer for the EXT CSD */
3485 req = blk_get_request(mq->queue, REQ_OP_DRV_IN, __GFP_RECLAIM);
Adrian Hunterfb8e456e2017-11-21 15:42:28 +02003486 if (IS_ERR(req)) {
3487 err = PTR_ERR(req);
3488 goto out_free;
3489 }
Linus Walleij627c3cc2017-08-20 23:39:08 +02003490 req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_GET_EXT_CSD;
3491 req_to_mmc_queue_req(req)->drv_op_data = &ext_csd;
3492 blk_execute_rq(mq->queue, NULL, req, 0);
3493 err = req_to_mmc_queue_req(req)->drv_op_result;
Adrian Hunter34c089e2017-11-21 15:42:27 +02003494 blk_put_request(req);
Linus Walleij627c3cc2017-08-20 23:39:08 +02003495 if (err) {
3496 pr_err("FAILED %d\n", err);
3497 goto out_free;
3498 }
3499
3500 for (i = 0; i < 512; i++)
3501 n += sprintf(buf + n, "%02x", ext_csd[i]);
3502 n += sprintf(buf + n, "\n");
3503
3504 if (n != EXT_CSD_STR_LEN) {
3505 err = -EINVAL;
3506 goto out_free;
3507 }
3508
3509 filp->private_data = buf;
3510 kfree(ext_csd);
3511 return 0;
3512
3513out_free:
3514 kfree(buf);
3515 return err;
3516}
3517
3518static ssize_t mmc_ext_csd_read(struct file *filp, char __user *ubuf,
3519 size_t cnt, loff_t *ppos)
3520{
3521 char *buf = filp->private_data;
3522
3523 return simple_read_from_buffer(ubuf, cnt, ppos,
3524 buf, EXT_CSD_STR_LEN);
3525}
3526
3527static int mmc_ext_csd_release(struct inode *inode, struct file *file)
3528{
3529 kfree(file->private_data);
3530 return 0;
3531}
3532
3533static const struct file_operations mmc_dbg_ext_csd_fops = {
3534 .open = mmc_ext_csd_open,
3535 .read = mmc_ext_csd_read,
3536 .release = mmc_ext_csd_release,
3537 .llseek = default_llseek,
3538};
3539
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003540static int mmc_blk_add_debugfs(struct mmc_card *card, struct mmc_blk_data *md)
Linus Walleij627c3cc2017-08-20 23:39:08 +02003541{
3542 struct dentry *root;
3543
3544 if (!card->debugfs_root)
3545 return 0;
3546
3547 root = card->debugfs_root;
3548
3549 if (mmc_card_mmc(card) || mmc_card_sd(card)) {
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003550 md->status_dentry =
3551 debugfs_create_file("status", S_IRUSR, root, card,
3552 &mmc_dbg_card_status_fops);
3553 if (!md->status_dentry)
Linus Walleij627c3cc2017-08-20 23:39:08 +02003554 return -EIO;
3555 }
3556
3557 if (mmc_card_mmc(card)) {
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003558 md->ext_csd_dentry =
3559 debugfs_create_file("ext_csd", S_IRUSR, root, card,
3560 &mmc_dbg_ext_csd_fops);
3561 if (!md->ext_csd_dentry)
Linus Walleij627c3cc2017-08-20 23:39:08 +02003562 return -EIO;
3563 }
3564
3565 return 0;
3566}
3567
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003568static void mmc_blk_remove_debugfs(struct mmc_card *card,
3569 struct mmc_blk_data *md)
3570{
3571 if (!card->debugfs_root)
3572 return;
3573
3574 if (!IS_ERR_OR_NULL(md->status_dentry)) {
3575 debugfs_remove(md->status_dentry);
3576 md->status_dentry = NULL;
3577 }
3578
3579 if (!IS_ERR_OR_NULL(md->ext_csd_dentry)) {
3580 debugfs_remove(md->ext_csd_dentry);
3581 md->ext_csd_dentry = NULL;
3582 }
3583}
Linus Walleij627c3cc2017-08-20 23:39:08 +02003584
3585#else
3586
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003587static int mmc_blk_add_debugfs(struct mmc_card *card, struct mmc_blk_data *md)
Linus Walleij627c3cc2017-08-20 23:39:08 +02003588{
3589 return 0;
3590}
3591
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003592static void mmc_blk_remove_debugfs(struct mmc_card *card,
3593 struct mmc_blk_data *md)
3594{
3595}
3596
Linus Walleij627c3cc2017-08-20 23:39:08 +02003597#endif /* CONFIG_DEBUG_FS */
3598
Ulf Hansson96541ba2015-04-14 13:06:12 +02003599static int mmc_blk_probe(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600{
Andrei Warkentin371a6892011-04-11 18:10:25 -05003601 struct mmc_blk_data *md, *part_md;
Pierre Ossmana7bbb572008-09-06 10:57:57 +02003602 char cap_str[10];
3603
Pierre Ossman912490d2005-05-21 10:27:02 +01003604 /*
3605 * Check that the card supports the command class(es) we need.
3606 */
3607 if (!(card->csd.cmdclass & CCC_BLOCK_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 return -ENODEV;
3609
Shawn Lin8c7cdbf2017-02-15 16:36:47 +08003610 mmc_fixup_device(card, mmc_blk_fixups);
Lukas Czerner5204d002014-06-18 13:18:07 +02003611
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 md = mmc_blk_alloc(card);
Linus Walleij304419d2017-05-18 11:29:32 +02003613 if (IS_ERR(md))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 return PTR_ERR(md);
3615
James Bottomleyb9f28d82015-03-05 18:47:01 -08003616 string_get_size((u64)get_capacity(md->disk), 512, STRING_UNITS_2,
Pierre Ossmana7bbb572008-09-06 10:57:57 +02003617 cap_str, sizeof(cap_str));
Girish K Sa3c76eb2011-10-11 11:44:09 +05303618 pr_info("%s: %s %s %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
Pierre Ossmana7bbb572008-09-06 10:57:57 +02003620 cap_str, md->read_only ? "(ro)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
Andrei Warkentin371a6892011-04-11 18:10:25 -05003622 if (mmc_blk_alloc_parts(card, md))
3623 goto out;
3624
Ulf Hansson96541ba2015-04-14 13:06:12 +02003625 dev_set_drvdata(&card->dev, md);
Andrei Warkentin6f60c222011-04-11 19:11:04 -04003626
Andrei Warkentin371a6892011-04-11 18:10:25 -05003627 if (mmc_add_disk(md))
3628 goto out;
3629
3630 list_for_each_entry(part_md, &md->part, part) {
3631 if (mmc_add_disk(part_md))
3632 goto out;
3633 }
Ulf Hanssone94cfef2013-05-02 14:02:38 +02003634
Linus Walleij627c3cc2017-08-20 23:39:08 +02003635 /* Add two debugfs entries */
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003636 mmc_blk_add_debugfs(card, md);
Linus Walleij627c3cc2017-08-20 23:39:08 +02003637
Ulf Hanssone94cfef2013-05-02 14:02:38 +02003638 pm_runtime_set_autosuspend_delay(&card->dev, 3000);
3639 pm_runtime_use_autosuspend(&card->dev);
3640
3641 /*
3642 * Don't enable runtime PM for SD-combo cards here. Leave that
3643 * decision to be taken during the SDIO init sequence instead.
3644 */
3645 if (card->type != MMC_TYPE_SD_COMBO) {
3646 pm_runtime_set_active(&card->dev);
3647 pm_runtime_enable(&card->dev);
3648 }
3649
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 return 0;
3651
3652 out:
Andrei Warkentin371a6892011-04-11 18:10:25 -05003653 mmc_blk_remove_parts(card, md);
3654 mmc_blk_remove_req(md);
Ulf Hansson5865f282012-03-22 11:47:26 +01003655 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656}
3657
Ulf Hansson96541ba2015-04-14 13:06:12 +02003658static void mmc_blk_remove(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659{
Ulf Hansson96541ba2015-04-14 13:06:12 +02003660 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661
Adrian Hunterf9f0da92017-11-21 15:42:30 +02003662 mmc_blk_remove_debugfs(card, md);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003663 mmc_blk_remove_parts(card, md);
Ulf Hanssone94cfef2013-05-02 14:02:38 +02003664 pm_runtime_get_sync(&card->dev);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03003665 mmc_claim_host(card->host);
Linus Walleij1f797ed2017-08-20 23:39:10 +02003666 mmc_blk_part_switch(card, md->part_type);
Adrian Hunterddd6fa72011-06-23 13:40:26 +03003667 mmc_release_host(card->host);
Ulf Hanssone94cfef2013-05-02 14:02:38 +02003668 if (card->type != MMC_TYPE_SD_COMBO)
3669 pm_runtime_disable(&card->dev);
3670 pm_runtime_put_noidle(&card->dev);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003671 mmc_blk_remove_req(md);
Ulf Hansson96541ba2015-04-14 13:06:12 +02003672 dev_set_drvdata(&card->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673}
3674
Ulf Hansson96541ba2015-04-14 13:06:12 +02003675static int _mmc_blk_suspend(struct mmc_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676{
Andrei Warkentin371a6892011-04-11 18:10:25 -05003677 struct mmc_blk_data *part_md;
Ulf Hansson96541ba2015-04-14 13:06:12 +02003678 struct mmc_blk_data *md = dev_get_drvdata(&card->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
3680 if (md) {
3681 mmc_queue_suspend(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003682 list_for_each_entry(part_md, &md->part, part) {
3683 mmc_queue_suspend(&part_md->queue);
3684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 }
3686 return 0;
3687}
3688
Ulf Hansson96541ba2015-04-14 13:06:12 +02003689static void mmc_blk_shutdown(struct mmc_card *card)
Ulf Hansson76287742013-06-10 17:03:40 +02003690{
Ulf Hansson96541ba2015-04-14 13:06:12 +02003691 _mmc_blk_suspend(card);
Ulf Hansson76287742013-06-10 17:03:40 +02003692}
3693
Ulf Hansson0967edc2014-10-06 11:29:42 +02003694#ifdef CONFIG_PM_SLEEP
3695static int mmc_blk_suspend(struct device *dev)
Ulf Hansson76287742013-06-10 17:03:40 +02003696{
Ulf Hansson96541ba2015-04-14 13:06:12 +02003697 struct mmc_card *card = mmc_dev_to_card(dev);
3698
3699 return _mmc_blk_suspend(card);
Ulf Hansson76287742013-06-10 17:03:40 +02003700}
3701
Ulf Hansson0967edc2014-10-06 11:29:42 +02003702static int mmc_blk_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703{
Andrei Warkentin371a6892011-04-11 18:10:25 -05003704 struct mmc_blk_data *part_md;
Ulf Hanssonfc95e302014-10-06 14:34:09 +02003705 struct mmc_blk_data *md = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
3707 if (md) {
Andrei Warkentin371a6892011-04-11 18:10:25 -05003708 /*
3709 * Resume involves the card going into idle state,
3710 * so current partition is always the main one.
3711 */
3712 md->part_curr = md->part_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 mmc_queue_resume(&md->queue);
Andrei Warkentin371a6892011-04-11 18:10:25 -05003714 list_for_each_entry(part_md, &md->part, part) {
3715 mmc_queue_resume(&part_md->queue);
3716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 }
3718 return 0;
3719}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720#endif
3721
Ulf Hansson0967edc2014-10-06 11:29:42 +02003722static SIMPLE_DEV_PM_OPS(mmc_blk_pm_ops, mmc_blk_suspend, mmc_blk_resume);
3723
Ulf Hansson96541ba2015-04-14 13:06:12 +02003724static struct mmc_driver mmc_driver = {
3725 .drv = {
3726 .name = "mmcblk",
3727 .pm = &mmc_blk_pm_ops,
3728 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 .probe = mmc_blk_probe,
3730 .remove = mmc_blk_remove,
Ulf Hansson76287742013-06-10 17:03:40 +02003731 .shutdown = mmc_blk_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732};
3733
3734static int __init mmc_blk_init(void)
3735{
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09003736 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Linus Walleij97548572017-09-20 10:02:00 +02003738 res = bus_register(&mmc_rpmb_bus_type);
3739 if (res < 0) {
3740 pr_err("mmcblk: could not register RPMB bus type\n");
3741 return res;
3742 }
3743 res = alloc_chrdev_region(&mmc_rpmb_devt, 0, MAX_DEVICES, "rpmb");
3744 if (res < 0) {
3745 pr_err("mmcblk: failed to allocate rpmb chrdev region\n");
3746 goto out_bus_unreg;
3747 }
3748
Olof Johansson5e71b7a2010-09-17 21:19:57 -04003749 if (perdev_minors != CONFIG_MMC_BLOCK_MINORS)
3750 pr_info("mmcblk: using %d minors per device\n", perdev_minors);
3751
Ben Hutchingsa26eba62014-11-06 03:35:09 +00003752 max_devices = min(MAX_DEVICES, (1 << MINORBITS) / perdev_minors);
Olof Johansson5e71b7a2010-09-17 21:19:57 -04003753
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02003754 res = register_blkdev(MMC_BLOCK_MAJOR, "mmc");
3755 if (res)
Linus Walleij97548572017-09-20 10:02:00 +02003756 goto out_chrdev_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09003758 res = mmc_register_driver(&mmc_driver);
3759 if (res)
Linus Walleij97548572017-09-20 10:02:00 +02003760 goto out_blkdev_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09003762 return 0;
Linus Walleij97548572017-09-20 10:02:00 +02003763
3764out_blkdev_unreg:
Akinobu Mita9d4e98e2008-09-13 19:02:07 +09003765 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Walleij97548572017-09-20 10:02:00 +02003766out_chrdev_unreg:
3767 unregister_chrdev_region(mmc_rpmb_devt, MAX_DEVICES);
3768out_bus_unreg:
3769 bus_unregister(&mmc_rpmb_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 return res;
3771}
3772
3773static void __exit mmc_blk_exit(void)
3774{
3775 mmc_unregister_driver(&mmc_driver);
Pierre Ossmanfe6b4c82007-05-14 17:27:29 +02003776 unregister_blkdev(MMC_BLOCK_MAJOR, "mmc");
Linus Walleij97548572017-09-20 10:02:00 +02003777 unregister_chrdev_region(mmc_rpmb_devt, MAX_DEVICES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778}
3779
3780module_init(mmc_blk_init);
3781module_exit(mmc_blk_exit);
3782
3783MODULE_LICENSE("GPL");
3784MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver");
3785