Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Block driver for media (i.e., flash cards) |
| 3 | * |
| 4 | * Copyright 2002 Hewlett-Packard Company |
Pierre Ossman | 979ce72 | 2008-06-29 12:19:47 +0200 | [diff] [blame] | 5 | * Copyright 2005-2008 Pierre Ossman |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/kernel.h> |
| 25 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 26 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/errno.h> |
| 28 | #include <linux/hdreg.h> |
| 29 | #include <linux/kdev_t.h> |
| 30 | #include <linux/blkdev.h> |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 31 | #include <linux/cdev.h> |
Arjan van de Ven | a621aae | 2006-01-12 18:43:35 +0000 | [diff] [blame] | 32 | #include <linux/mutex.h> |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 33 | #include <linux/scatterlist.h> |
Pierre Ossman | a7bbb57 | 2008-09-06 10:57:57 +0200 | [diff] [blame] | 34 | #include <linux/string_helpers.h> |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 35 | #include <linux/delay.h> |
| 36 | #include <linux/capability.h> |
| 37 | #include <linux/compat.h> |
Ulf Hansson | e94cfef | 2013-05-02 14:02:38 +0200 | [diff] [blame] | 38 | #include <linux/pm_runtime.h> |
Ulf Hansson | b10fa99 | 2016-04-07 14:36:46 +0200 | [diff] [blame] | 39 | #include <linux/idr.h> |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 40 | #include <linux/debugfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 42 | #include <linux/mmc/ioctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/mmc/card.h> |
Pierre Ossman | 385e3227 | 2006-06-18 14:34:37 +0200 | [diff] [blame] | 44 | #include <linux/mmc/host.h> |
Pierre Ossman | da7fbe5 | 2006-12-24 22:46:55 +0100 | [diff] [blame] | 45 | #include <linux/mmc/mmc.h> |
| 46 | #include <linux/mmc/sd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 48 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Pierre Ossman | 98ac216 | 2006-12-23 20:03:02 +0100 | [diff] [blame] | 50 | #include "queue.h" |
Baoyou Xie | 48ab086 | 2016-09-30 09:37:38 +0800 | [diff] [blame] | 51 | #include "block.h" |
Ulf Hansson | 55244c5 | 2017-01-13 14:14:08 +0100 | [diff] [blame] | 52 | #include "core.h" |
Ulf Hansson | 4facdde | 2017-01-13 14:14:14 +0100 | [diff] [blame] | 53 | #include "card.h" |
Ulf Hansson | 5857b29 | 2017-01-13 14:14:15 +0100 | [diff] [blame] | 54 | #include "host.h" |
Ulf Hansson | 4facdde | 2017-01-13 14:14:14 +0100 | [diff] [blame] | 55 | #include "bus.h" |
Ulf Hansson | 55244c5 | 2017-01-13 14:14:08 +0100 | [diff] [blame] | 56 | #include "mmc_ops.h" |
Shawn Lin | 28fc64a | 2017-02-15 16:35:28 +0800 | [diff] [blame] | 57 | #include "quirks.h" |
Ulf Hansson | 55244c5 | 2017-01-13 14:14:08 +0100 | [diff] [blame] | 58 | #include "sd_ops.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Andy Whitcroft | 6b0b628 | 2009-02-23 12:38:41 +0000 | [diff] [blame] | 60 | MODULE_ALIAS("mmc:block"); |
Olof Johansson | 5e71b7a | 2010-09-17 21:19:57 -0400 | [diff] [blame] | 61 | #ifdef MODULE_PARAM_PREFIX |
| 62 | #undef MODULE_PARAM_PREFIX |
| 63 | #endif |
| 64 | #define MODULE_PARAM_PREFIX "mmcblk." |
David Woodhouse | 1dff314 | 2007-11-21 18:45:12 +0100 | [diff] [blame] | 65 | |
Trey Ramsay | 8fee476 | 2012-11-16 09:31:41 -0600 | [diff] [blame] | 66 | #define MMC_BLK_TIMEOUT_MS (10 * 60 * 1000) /* 10 minute timeout */ |
Maya Erez | 775a936 | 2013-04-18 15:41:55 +0300 | [diff] [blame] | 67 | #define MMC_SANITIZE_REQ_TIMEOUT 240000 |
| 68 | #define MMC_EXTRACT_INDEX_FROM_ARG(x) ((x & 0x00FF0000) >> 16) |
Andrei Warkentin | 6a7a6b4 | 2011-04-12 15:06:53 -0500 | [diff] [blame] | 69 | |
Luca Porzio | d3df046 | 2015-11-06 15:12:26 +0000 | [diff] [blame] | 70 | #define mmc_req_rel_wr(req) ((req->cmd_flags & REQ_FUA) && \ |
Seungwon Jeon | ce39f9d | 2013-02-06 17:02:46 +0900 | [diff] [blame] | 71 | (rq_data_dir(req) == WRITE)) |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 72 | static DEFINE_MUTEX(block_mutex); |
Olof Johansson | 5e71b7a | 2010-09-17 21:19:57 -0400 | [diff] [blame] | 73 | |
| 74 | /* |
| 75 | * The defaults come from config options but can be overriden by module |
| 76 | * or bootarg options. |
| 77 | */ |
| 78 | static int perdev_minors = CONFIG_MMC_BLOCK_MINORS; |
| 79 | |
| 80 | /* |
| 81 | * We've only got one major, so number of mmcblk devices is |
Ben Hutchings | a26eba6 | 2014-11-06 03:35:09 +0000 | [diff] [blame] | 82 | * limited to (1 << 20) / number of minors per device. It is also |
Ulf Hansson | b10fa99 | 2016-04-07 14:36:46 +0200 | [diff] [blame] | 83 | * limited by the MAX_DEVICES below. |
Olof Johansson | 5e71b7a | 2010-09-17 21:19:57 -0400 | [diff] [blame] | 84 | */ |
| 85 | static int max_devices; |
| 86 | |
Ben Hutchings | a26eba6 | 2014-11-06 03:35:09 +0000 | [diff] [blame] | 87 | #define MAX_DEVICES 256 |
| 88 | |
Ulf Hansson | b10fa99 | 2016-04-07 14:36:46 +0200 | [diff] [blame] | 89 | static DEFINE_IDA(mmc_blk_ida); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 90 | static DEFINE_IDA(mmc_rpmb_ida); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /* |
| 93 | * There is one mmc_blk_data per slot. |
| 94 | */ |
| 95 | struct mmc_blk_data { |
| 96 | spinlock_t lock; |
Dan Williams | 307d8e6 | 2016-06-20 10:40:44 -0700 | [diff] [blame] | 97 | struct device *parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | struct gendisk *disk; |
| 99 | struct mmc_queue queue; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 100 | struct list_head part; |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 101 | struct list_head rpmbs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Andrei Warkentin | d0c97cf | 2011-05-23 15:06:36 -0500 | [diff] [blame] | 103 | unsigned int flags; |
| 104 | #define MMC_BLK_CMD23 (1 << 0) /* Can do SET_BLOCK_COUNT for multiblock */ |
| 105 | #define MMC_BLK_REL_WR (1 << 1) /* MMC Reliable write support */ |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | unsigned int usage; |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 108 | unsigned int read_only; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 109 | unsigned int part_type; |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 110 | unsigned int reset_done; |
| 111 | #define MMC_BLK_READ BIT(0) |
| 112 | #define MMC_BLK_WRITE BIT(1) |
| 113 | #define MMC_BLK_DISCARD BIT(2) |
| 114 | #define MMC_BLK_SECDISCARD BIT(3) |
Adrian Hunter | 1e8e55b | 2017-11-29 15:41:04 +0200 | [diff] [blame] | 115 | #define MMC_BLK_CQE_RECOVERY BIT(4) |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 116 | |
| 117 | /* |
| 118 | * Only set in main mmc_blk_data associated |
Ulf Hansson | fc95e30 | 2014-10-06 14:34:09 +0200 | [diff] [blame] | 119 | * with mmc_card with dev_set_drvdata, and keeps |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 120 | * track of the current selected device partition. |
| 121 | */ |
| 122 | unsigned int part_curr; |
| 123 | struct device_attribute force_ro; |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 124 | struct device_attribute power_ro_lock; |
| 125 | int area_type; |
Adrian Hunter | f9f0da9 | 2017-11-21 15:42:30 +0200 | [diff] [blame] | 126 | |
| 127 | /* debugfs files (only in main mmc_blk_data) */ |
| 128 | struct dentry *status_dentry; |
| 129 | struct dentry *ext_csd_dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | }; |
| 131 | |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 132 | /* Device type for RPMB character devices */ |
| 133 | static dev_t mmc_rpmb_devt; |
| 134 | |
| 135 | /* Bus type for RPMB character devices */ |
| 136 | static struct bus_type mmc_rpmb_bus_type = { |
| 137 | .name = "mmc_rpmb", |
| 138 | }; |
| 139 | |
| 140 | /** |
| 141 | * struct mmc_rpmb_data - special RPMB device type for these areas |
| 142 | * @dev: the device for the RPMB area |
| 143 | * @chrdev: character device for the RPMB area |
| 144 | * @id: unique device ID number |
| 145 | * @part_index: partition index (0 on first) |
| 146 | * @md: parent MMC block device |
| 147 | * @node: list item, so we can put this device on a list |
| 148 | */ |
| 149 | struct mmc_rpmb_data { |
| 150 | struct device dev; |
| 151 | struct cdev chrdev; |
| 152 | int id; |
| 153 | unsigned int part_index; |
| 154 | struct mmc_blk_data *md; |
| 155 | struct list_head node; |
| 156 | }; |
| 157 | |
Arjan van de Ven | a621aae | 2006-01-12 18:43:35 +0000 | [diff] [blame] | 158 | static DEFINE_MUTEX(open_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Olof Johansson | 5e71b7a | 2010-09-17 21:19:57 -0400 | [diff] [blame] | 160 | module_param(perdev_minors, int, 0444); |
| 161 | MODULE_PARM_DESC(perdev_minors, "Minors numbers to allocate per device"); |
| 162 | |
Loic Pallardy | 8d1e977 | 2012-08-06 17:12:31 +0200 | [diff] [blame] | 163 | static inline int mmc_blk_part_switch(struct mmc_card *card, |
Linus Walleij | 1f797ed | 2017-08-20 23:39:10 +0200 | [diff] [blame] | 164 | unsigned int part_type); |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | static struct mmc_blk_data *mmc_blk_get(struct gendisk *disk) |
| 167 | { |
| 168 | struct mmc_blk_data *md; |
| 169 | |
Arjan van de Ven | a621aae | 2006-01-12 18:43:35 +0000 | [diff] [blame] | 170 | mutex_lock(&open_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | md = disk->private_data; |
| 172 | if (md && md->usage == 0) |
| 173 | md = NULL; |
| 174 | if (md) |
| 175 | md->usage++; |
Arjan van de Ven | a621aae | 2006-01-12 18:43:35 +0000 | [diff] [blame] | 176 | mutex_unlock(&open_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
| 178 | return md; |
| 179 | } |
| 180 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 181 | static inline int mmc_get_devidx(struct gendisk *disk) |
| 182 | { |
Colin Cross | 382c55f | 2015-10-22 10:00:41 -0700 | [diff] [blame] | 183 | int devidx = disk->first_minor / perdev_minors; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 184 | return devidx; |
| 185 | } |
| 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | static void mmc_blk_put(struct mmc_blk_data *md) |
| 188 | { |
Arjan van de Ven | a621aae | 2006-01-12 18:43:35 +0000 | [diff] [blame] | 189 | mutex_lock(&open_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | md->usage--; |
| 191 | if (md->usage == 0) { |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 192 | int devidx = mmc_get_devidx(md->disk); |
Adrian Hunter | 41e3efd | 2017-11-29 15:40:59 +0200 | [diff] [blame] | 193 | blk_put_queue(md->queue.queue); |
Heiner Kallweit | a04848c | 2017-02-01 19:44:22 +0100 | [diff] [blame] | 194 | ida_simple_remove(&mmc_blk_ida, devidx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | put_disk(md->disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | kfree(md); |
| 197 | } |
Arjan van de Ven | a621aae | 2006-01-12 18:43:35 +0000 | [diff] [blame] | 198 | mutex_unlock(&open_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | } |
| 200 | |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 201 | static ssize_t power_ro_lock_show(struct device *dev, |
| 202 | struct device_attribute *attr, char *buf) |
| 203 | { |
| 204 | int ret; |
| 205 | struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev)); |
| 206 | struct mmc_card *card = md->queue.card; |
| 207 | int locked = 0; |
| 208 | |
| 209 | if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PERM_WP_EN) |
| 210 | locked = 2; |
| 211 | else if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_EN) |
| 212 | locked = 1; |
| 213 | |
| 214 | ret = snprintf(buf, PAGE_SIZE, "%d\n", locked); |
| 215 | |
Tomas Winkler | 9098f84 | 2015-07-16 15:50:45 +0200 | [diff] [blame] | 216 | mmc_blk_put(md); |
| 217 | |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 218 | return ret; |
| 219 | } |
| 220 | |
| 221 | static ssize_t power_ro_lock_store(struct device *dev, |
| 222 | struct device_attribute *attr, const char *buf, size_t count) |
| 223 | { |
| 224 | int ret; |
| 225 | struct mmc_blk_data *md, *part_md; |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 226 | struct mmc_queue *mq; |
| 227 | struct request *req; |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 228 | unsigned long set; |
| 229 | |
| 230 | if (kstrtoul(buf, 0, &set)) |
| 231 | return -EINVAL; |
| 232 | |
| 233 | if (set != 1) |
| 234 | return count; |
| 235 | |
| 236 | md = mmc_blk_get(dev_to_disk(dev)); |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 237 | mq = &md->queue; |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 238 | |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 239 | /* Dispatch locking to the block layer */ |
| 240 | req = blk_get_request(mq->queue, REQ_OP_DRV_OUT, __GFP_RECLAIM); |
Adrian Hunter | fb8e456e | 2017-11-21 15:42:28 +0200 | [diff] [blame] | 241 | if (IS_ERR(req)) { |
| 242 | count = PTR_ERR(req); |
| 243 | goto out_put; |
| 244 | } |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 245 | req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_BOOT_WP; |
| 246 | blk_execute_rq(mq->queue, NULL, req, 0); |
| 247 | ret = req_to_mmc_queue_req(req)->drv_op_result; |
Adrian Hunter | 34c089e | 2017-11-21 15:42:27 +0200 | [diff] [blame] | 248 | blk_put_request(req); |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 249 | |
| 250 | if (!ret) { |
| 251 | pr_info("%s: Locking boot partition ro until next power on\n", |
| 252 | md->disk->disk_name); |
| 253 | set_disk_ro(md->disk, 1); |
| 254 | |
| 255 | list_for_each_entry(part_md, &md->part, part) |
| 256 | if (part_md->area_type == MMC_BLK_DATA_AREA_BOOT) { |
| 257 | pr_info("%s: Locking boot partition ro until next power on\n", part_md->disk->disk_name); |
| 258 | set_disk_ro(part_md->disk, 1); |
| 259 | } |
| 260 | } |
Adrian Hunter | fb8e456e | 2017-11-21 15:42:28 +0200 | [diff] [blame] | 261 | out_put: |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 262 | mmc_blk_put(md); |
| 263 | return count; |
| 264 | } |
| 265 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 266 | static ssize_t force_ro_show(struct device *dev, struct device_attribute *attr, |
| 267 | char *buf) |
| 268 | { |
| 269 | int ret; |
| 270 | struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev)); |
| 271 | |
Baruch Siach | 0031a98 | 2014-09-22 10:12:51 +0300 | [diff] [blame] | 272 | ret = snprintf(buf, PAGE_SIZE, "%d\n", |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 273 | get_disk_ro(dev_to_disk(dev)) ^ |
| 274 | md->read_only); |
| 275 | mmc_blk_put(md); |
| 276 | return ret; |
| 277 | } |
| 278 | |
| 279 | static ssize_t force_ro_store(struct device *dev, struct device_attribute *attr, |
| 280 | const char *buf, size_t count) |
| 281 | { |
| 282 | int ret; |
| 283 | char *end; |
| 284 | struct mmc_blk_data *md = mmc_blk_get(dev_to_disk(dev)); |
| 285 | unsigned long set = simple_strtoul(buf, &end, 0); |
| 286 | if (end == buf) { |
| 287 | ret = -EINVAL; |
| 288 | goto out; |
| 289 | } |
| 290 | |
| 291 | set_disk_ro(dev_to_disk(dev), set || md->read_only); |
| 292 | ret = count; |
| 293 | out: |
| 294 | mmc_blk_put(md); |
| 295 | return ret; |
| 296 | } |
| 297 | |
Al Viro | a5a1561 | 2008-03-02 10:33:30 -0500 | [diff] [blame] | 298 | static int mmc_blk_open(struct block_device *bdev, fmode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | { |
Al Viro | a5a1561 | 2008-03-02 10:33:30 -0500 | [diff] [blame] | 300 | struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | int ret = -ENXIO; |
| 302 | |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 303 | mutex_lock(&block_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | if (md) { |
| 305 | if (md->usage == 2) |
Al Viro | a5a1561 | 2008-03-02 10:33:30 -0500 | [diff] [blame] | 306 | check_disk_change(bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | ret = 0; |
Pierre Ossman | a00fc09 | 2005-09-06 15:18:52 -0700 | [diff] [blame] | 308 | |
Al Viro | a5a1561 | 2008-03-02 10:33:30 -0500 | [diff] [blame] | 309 | if ((mode & FMODE_WRITE) && md->read_only) { |
Andrew Morton | 70bb089 | 2008-09-05 14:00:24 -0700 | [diff] [blame] | 310 | mmc_blk_put(md); |
Pierre Ossman | a00fc09 | 2005-09-06 15:18:52 -0700 | [diff] [blame] | 311 | ret = -EROFS; |
Andrew Morton | 70bb089 | 2008-09-05 14:00:24 -0700 | [diff] [blame] | 312 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 314 | mutex_unlock(&block_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
| 316 | return ret; |
| 317 | } |
| 318 | |
Al Viro | db2a144 | 2013-05-05 21:52:57 -0400 | [diff] [blame] | 319 | static void mmc_blk_release(struct gendisk *disk, fmode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | { |
Al Viro | a5a1561 | 2008-03-02 10:33:30 -0500 | [diff] [blame] | 321 | struct mmc_blk_data *md = disk->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 323 | mutex_lock(&block_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | mmc_blk_put(md); |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 325 | mutex_unlock(&block_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | static int |
Christoph Hellwig | a885c8c | 2006-01-08 01:02:50 -0800 | [diff] [blame] | 329 | mmc_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
Christoph Hellwig | a885c8c | 2006-01-08 01:02:50 -0800 | [diff] [blame] | 331 | geo->cylinders = get_capacity(bdev->bd_disk) / (4 * 16); |
| 332 | geo->heads = 4; |
| 333 | geo->sectors = 16; |
| 334 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | } |
| 336 | |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 337 | struct mmc_blk_ioc_data { |
| 338 | struct mmc_ioc_cmd ic; |
| 339 | unsigned char *buf; |
| 340 | u64 buf_bytes; |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 341 | struct mmc_rpmb_data *rpmb; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 342 | }; |
| 343 | |
| 344 | static struct mmc_blk_ioc_data *mmc_blk_ioctl_copy_from_user( |
| 345 | struct mmc_ioc_cmd __user *user) |
| 346 | { |
| 347 | struct mmc_blk_ioc_data *idata; |
| 348 | int err; |
| 349 | |
yalin wang | 1ff8950 | 2015-11-12 19:27:11 +0800 | [diff] [blame] | 350 | idata = kmalloc(sizeof(*idata), GFP_KERNEL); |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 351 | if (!idata) { |
| 352 | err = -ENOMEM; |
Vladimir Motyka | aea253e | 2011-05-11 00:00:43 -0400 | [diff] [blame] | 353 | goto out; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | if (copy_from_user(&idata->ic, user, sizeof(idata->ic))) { |
| 357 | err = -EFAULT; |
Vladimir Motyka | aea253e | 2011-05-11 00:00:43 -0400 | [diff] [blame] | 358 | goto idata_err; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | idata->buf_bytes = (u64) idata->ic.blksz * idata->ic.blocks; |
| 362 | if (idata->buf_bytes > MMC_IOC_MAX_BYTES) { |
| 363 | err = -EOVERFLOW; |
Vladimir Motyka | aea253e | 2011-05-11 00:00:43 -0400 | [diff] [blame] | 364 | goto idata_err; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 365 | } |
| 366 | |
Ville Viinikka | bfe5b1b | 2016-07-08 18:27:02 +0300 | [diff] [blame] | 367 | if (!idata->buf_bytes) { |
| 368 | idata->buf = NULL; |
Johan Rudholm | 4d6144d | 2011-11-23 09:05:58 +0100 | [diff] [blame] | 369 | return idata; |
Ville Viinikka | bfe5b1b | 2016-07-08 18:27:02 +0300 | [diff] [blame] | 370 | } |
Johan Rudholm | 4d6144d | 2011-11-23 09:05:58 +0100 | [diff] [blame] | 371 | |
yalin wang | 1ff8950 | 2015-11-12 19:27:11 +0800 | [diff] [blame] | 372 | idata->buf = kmalloc(idata->buf_bytes, GFP_KERNEL); |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 373 | if (!idata->buf) { |
| 374 | err = -ENOMEM; |
Vladimir Motyka | aea253e | 2011-05-11 00:00:43 -0400 | [diff] [blame] | 375 | goto idata_err; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | if (copy_from_user(idata->buf, (void __user *)(unsigned long) |
| 379 | idata->ic.data_ptr, idata->buf_bytes)) { |
| 380 | err = -EFAULT; |
| 381 | goto copy_err; |
| 382 | } |
| 383 | |
| 384 | return idata; |
| 385 | |
| 386 | copy_err: |
| 387 | kfree(idata->buf); |
Vladimir Motyka | aea253e | 2011-05-11 00:00:43 -0400 | [diff] [blame] | 388 | idata_err: |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 389 | kfree(idata); |
Vladimir Motyka | aea253e | 2011-05-11 00:00:43 -0400 | [diff] [blame] | 390 | out: |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 391 | return ERR_PTR(err); |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 392 | } |
| 393 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 394 | static int mmc_blk_ioctl_copy_to_user(struct mmc_ioc_cmd __user *ic_ptr, |
| 395 | struct mmc_blk_ioc_data *idata) |
| 396 | { |
| 397 | struct mmc_ioc_cmd *ic = &idata->ic; |
| 398 | |
| 399 | if (copy_to_user(&(ic_ptr->response), ic->response, |
| 400 | sizeof(ic->response))) |
| 401 | return -EFAULT; |
| 402 | |
| 403 | if (!idata->ic.write_flag) { |
| 404 | if (copy_to_user((void __user *)(unsigned long)ic->data_ptr, |
| 405 | idata->buf, idata->buf_bytes)) |
| 406 | return -EFAULT; |
| 407 | } |
| 408 | |
| 409 | return 0; |
| 410 | } |
| 411 | |
Loic Pallardy | 8d1e977 | 2012-08-06 17:12:31 +0200 | [diff] [blame] | 412 | static int ioctl_rpmb_card_status_poll(struct mmc_card *card, u32 *status, |
| 413 | u32 retries_max) |
| 414 | { |
| 415 | int err; |
| 416 | u32 retry_count = 0; |
| 417 | |
| 418 | if (!status || !retries_max) |
| 419 | return -EINVAL; |
| 420 | |
| 421 | do { |
Ulf Hansson | 2185bc2 | 2017-05-22 10:23:58 +0200 | [diff] [blame] | 422 | err = __mmc_send_status(card, status, 5); |
Loic Pallardy | 8d1e977 | 2012-08-06 17:12:31 +0200 | [diff] [blame] | 423 | if (err) |
| 424 | break; |
| 425 | |
| 426 | if (!R1_STATUS(*status) && |
| 427 | (R1_CURRENT_STATE(*status) != R1_STATE_PRG)) |
| 428 | break; /* RPMB programming operation complete */ |
| 429 | |
| 430 | /* |
| 431 | * Rechedule to give the MMC device a chance to continue |
| 432 | * processing the previous command without being polled too |
| 433 | * frequently. |
| 434 | */ |
| 435 | usleep_range(1000, 5000); |
| 436 | } while (++retry_count < retries_max); |
| 437 | |
| 438 | if (retry_count == retries_max) |
| 439 | err = -EPERM; |
| 440 | |
| 441 | return err; |
| 442 | } |
| 443 | |
Maya Erez | 775a936 | 2013-04-18 15:41:55 +0300 | [diff] [blame] | 444 | static int ioctl_do_sanitize(struct mmc_card *card) |
| 445 | { |
| 446 | int err; |
| 447 | |
Ulf Hansson | a2d1086 | 2013-12-16 14:37:26 +0100 | [diff] [blame] | 448 | if (!mmc_can_sanitize(card)) { |
Maya Erez | 775a936 | 2013-04-18 15:41:55 +0300 | [diff] [blame] | 449 | pr_warn("%s: %s - SANITIZE is not supported\n", |
| 450 | mmc_hostname(card->host), __func__); |
| 451 | err = -EOPNOTSUPP; |
| 452 | goto out; |
| 453 | } |
| 454 | |
| 455 | pr_debug("%s: %s - SANITIZE IN PROGRESS...\n", |
| 456 | mmc_hostname(card->host), __func__); |
| 457 | |
| 458 | err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, |
| 459 | EXT_CSD_SANITIZE_START, 1, |
| 460 | MMC_SANITIZE_REQ_TIMEOUT); |
| 461 | |
| 462 | if (err) |
| 463 | pr_err("%s: %s - EXT_CSD_SANITIZE_START failed. err=%d\n", |
| 464 | mmc_hostname(card->host), __func__, err); |
| 465 | |
| 466 | pr_debug("%s: %s - SANITIZE COMPLETED\n", mmc_hostname(card->host), |
| 467 | __func__); |
| 468 | out: |
| 469 | return err; |
| 470 | } |
| 471 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 472 | static int __mmc_blk_ioctl_cmd(struct mmc_card *card, struct mmc_blk_data *md, |
| 473 | struct mmc_blk_ioc_data *idata) |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 474 | { |
Masahiro Yamada | c7836d1 | 2016-12-19 20:51:18 +0900 | [diff] [blame] | 475 | struct mmc_command cmd = {}; |
| 476 | struct mmc_data data = {}; |
| 477 | struct mmc_request mrq = {}; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 478 | struct scatterlist sg; |
| 479 | int err; |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 480 | unsigned int target_part; |
Loic Pallardy | 8d1e977 | 2012-08-06 17:12:31 +0200 | [diff] [blame] | 481 | u32 status = 0; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 482 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 483 | if (!card || !md || !idata) |
| 484 | return -EINVAL; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 485 | |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 486 | /* |
| 487 | * The RPMB accesses comes in from the character device, so we |
| 488 | * need to target these explicitly. Else we just target the |
| 489 | * partition type for the block device the ioctl() was issued |
| 490 | * on. |
| 491 | */ |
| 492 | if (idata->rpmb) { |
| 493 | /* Support multiple RPMB partitions */ |
| 494 | target_part = idata->rpmb->part_index; |
| 495 | target_part |= EXT_CSD_PART_CONFIG_ACC_RPMB; |
| 496 | } else { |
| 497 | target_part = md->part_type; |
| 498 | } |
Loic Pallardy | 8d1e977 | 2012-08-06 17:12:31 +0200 | [diff] [blame] | 499 | |
Johan Rudholm | 4d6144d | 2011-11-23 09:05:58 +0100 | [diff] [blame] | 500 | cmd.opcode = idata->ic.opcode; |
| 501 | cmd.arg = idata->ic.arg; |
| 502 | cmd.flags = idata->ic.flags; |
| 503 | |
| 504 | if (idata->buf_bytes) { |
| 505 | data.sg = &sg; |
| 506 | data.sg_len = 1; |
| 507 | data.blksz = idata->ic.blksz; |
| 508 | data.blocks = idata->ic.blocks; |
| 509 | |
| 510 | sg_init_one(data.sg, idata->buf, idata->buf_bytes); |
| 511 | |
| 512 | if (idata->ic.write_flag) |
| 513 | data.flags = MMC_DATA_WRITE; |
| 514 | else |
| 515 | data.flags = MMC_DATA_READ; |
| 516 | |
| 517 | /* data.flags must already be set before doing this. */ |
| 518 | mmc_set_data_timeout(&data, card); |
| 519 | |
| 520 | /* Allow overriding the timeout_ns for empirical tuning. */ |
| 521 | if (idata->ic.data_timeout_ns) |
| 522 | data.timeout_ns = idata->ic.data_timeout_ns; |
| 523 | |
| 524 | if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) { |
| 525 | /* |
| 526 | * Pretend this is a data transfer and rely on the |
| 527 | * host driver to compute timeout. When all host |
| 528 | * drivers support cmd.cmd_timeout for R1B, this |
| 529 | * can be changed to: |
| 530 | * |
| 531 | * mrq.data = NULL; |
| 532 | * cmd.cmd_timeout = idata->ic.cmd_timeout_ms; |
| 533 | */ |
| 534 | data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000; |
| 535 | } |
| 536 | |
| 537 | mrq.data = &data; |
| 538 | } |
| 539 | |
| 540 | mrq.cmd = &cmd; |
| 541 | |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 542 | err = mmc_blk_part_switch(card, target_part); |
Loic Pallardy | 8d1e977 | 2012-08-06 17:12:31 +0200 | [diff] [blame] | 543 | if (err) |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 544 | return err; |
Loic Pallardy | 8d1e977 | 2012-08-06 17:12:31 +0200 | [diff] [blame] | 545 | |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 546 | if (idata->ic.is_acmd) { |
| 547 | err = mmc_app_cmd(card->host, card); |
| 548 | if (err) |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 549 | return err; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 550 | } |
| 551 | |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 552 | if (idata->rpmb) { |
Loic Pallardy | 8d1e977 | 2012-08-06 17:12:31 +0200 | [diff] [blame] | 553 | err = mmc_set_blockcount(card, data.blocks, |
| 554 | idata->ic.write_flag & (1 << 31)); |
| 555 | if (err) |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 556 | return err; |
Loic Pallardy | 8d1e977 | 2012-08-06 17:12:31 +0200 | [diff] [blame] | 557 | } |
| 558 | |
Yaniv Gardi | a82e484 | 2013-06-05 14:13:08 +0300 | [diff] [blame] | 559 | if ((MMC_EXTRACT_INDEX_FROM_ARG(cmd.arg) == EXT_CSD_SANITIZE_START) && |
| 560 | (cmd.opcode == MMC_SWITCH)) { |
Maya Erez | 775a936 | 2013-04-18 15:41:55 +0300 | [diff] [blame] | 561 | err = ioctl_do_sanitize(card); |
| 562 | |
| 563 | if (err) |
| 564 | pr_err("%s: ioctl_do_sanitize() failed. err = %d", |
| 565 | __func__, err); |
| 566 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 567 | return err; |
Maya Erez | 775a936 | 2013-04-18 15:41:55 +0300 | [diff] [blame] | 568 | } |
| 569 | |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 570 | mmc_wait_for_req(card->host, &mrq); |
| 571 | |
| 572 | if (cmd.error) { |
| 573 | dev_err(mmc_dev(card->host), "%s: cmd error %d\n", |
| 574 | __func__, cmd.error); |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 575 | return cmd.error; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 576 | } |
| 577 | if (data.error) { |
| 578 | dev_err(mmc_dev(card->host), "%s: data error %d\n", |
| 579 | __func__, data.error); |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 580 | return data.error; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | /* |
| 584 | * According to the SD specs, some commands require a delay after |
| 585 | * issuing the command. |
| 586 | */ |
| 587 | if (idata->ic.postsleep_min_us) |
| 588 | usleep_range(idata->ic.postsleep_min_us, idata->ic.postsleep_max_us); |
| 589 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 590 | memcpy(&(idata->ic.response), cmd.resp, sizeof(cmd.resp)); |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 591 | |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 592 | if (idata->rpmb) { |
Loic Pallardy | 8d1e977 | 2012-08-06 17:12:31 +0200 | [diff] [blame] | 593 | /* |
| 594 | * Ensure RPMB command has completed by polling CMD13 |
| 595 | * "Send Status". |
| 596 | */ |
| 597 | err = ioctl_rpmb_card_status_poll(card, &status, 5); |
| 598 | if (err) |
| 599 | dev_err(mmc_dev(card->host), |
| 600 | "%s: Card Status=0x%08X, error %d\n", |
| 601 | __func__, status, err); |
| 602 | } |
| 603 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 604 | return err; |
| 605 | } |
| 606 | |
Linus Walleij | 2fe20ba | 2017-08-20 23:39:11 +0200 | [diff] [blame] | 607 | static int mmc_blk_ioctl_cmd(struct mmc_blk_data *md, |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 608 | struct mmc_ioc_cmd __user *ic_ptr, |
| 609 | struct mmc_rpmb_data *rpmb) |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 610 | { |
| 611 | struct mmc_blk_ioc_data *idata; |
Linus Walleij | 3ecd8cf | 2017-05-18 11:29:35 +0200 | [diff] [blame] | 612 | struct mmc_blk_ioc_data *idatas[1]; |
Linus Walleij | 614f038 | 2017-05-18 11:29:34 +0200 | [diff] [blame] | 613 | struct mmc_queue *mq; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 614 | struct mmc_card *card; |
Grant Grundler | b093410 | 2015-09-23 18:30:33 -0700 | [diff] [blame] | 615 | int err = 0, ioc_err = 0; |
Linus Walleij | 614f038 | 2017-05-18 11:29:34 +0200 | [diff] [blame] | 616 | struct request *req; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 617 | |
| 618 | idata = mmc_blk_ioctl_copy_from_user(ic_ptr); |
| 619 | if (IS_ERR(idata)) |
| 620 | return PTR_ERR(idata); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 621 | /* This will be NULL on non-RPMB ioctl():s */ |
| 622 | idata->rpmb = rpmb; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 623 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 624 | card = md->queue.card; |
| 625 | if (IS_ERR(card)) { |
| 626 | err = PTR_ERR(card); |
| 627 | goto cmd_done; |
| 628 | } |
| 629 | |
Linus Walleij | 614f038 | 2017-05-18 11:29:34 +0200 | [diff] [blame] | 630 | /* |
| 631 | * Dispatch the ioctl() into the block request queue. |
| 632 | */ |
| 633 | mq = &md->queue; |
| 634 | req = blk_get_request(mq->queue, |
| 635 | idata->ic.write_flag ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN, |
| 636 | __GFP_RECLAIM); |
Adrian Hunter | fb8e456e | 2017-11-21 15:42:28 +0200 | [diff] [blame] | 637 | if (IS_ERR(req)) { |
| 638 | err = PTR_ERR(req); |
| 639 | goto cmd_done; |
| 640 | } |
Linus Walleij | 3ecd8cf | 2017-05-18 11:29:35 +0200 | [diff] [blame] | 641 | idatas[0] = idata; |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 642 | req_to_mmc_queue_req(req)->drv_op = |
| 643 | rpmb ? MMC_DRV_OP_IOCTL_RPMB : MMC_DRV_OP_IOCTL; |
Linus Walleij | 69f7599 | 2017-08-20 23:39:06 +0200 | [diff] [blame] | 644 | req_to_mmc_queue_req(req)->drv_op_data = idatas; |
Linus Walleij | 3ecd8cf | 2017-05-18 11:29:35 +0200 | [diff] [blame] | 645 | req_to_mmc_queue_req(req)->ioc_count = 1; |
Linus Walleij | 614f038 | 2017-05-18 11:29:34 +0200 | [diff] [blame] | 646 | blk_execute_rq(mq->queue, NULL, req, 0); |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 647 | ioc_err = req_to_mmc_queue_req(req)->drv_op_result; |
Grant Grundler | b093410 | 2015-09-23 18:30:33 -0700 | [diff] [blame] | 648 | err = mmc_blk_ioctl_copy_to_user(ic_ptr, idata); |
Linus Walleij | 614f038 | 2017-05-18 11:29:34 +0200 | [diff] [blame] | 649 | blk_put_request(req); |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 650 | |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 651 | cmd_done: |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 652 | kfree(idata->buf); |
| 653 | kfree(idata); |
Grant Grundler | b093410 | 2015-09-23 18:30:33 -0700 | [diff] [blame] | 654 | return ioc_err ? ioc_err : err; |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 655 | } |
| 656 | |
Linus Walleij | 2fe20ba | 2017-08-20 23:39:11 +0200 | [diff] [blame] | 657 | static int mmc_blk_ioctl_multi_cmd(struct mmc_blk_data *md, |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 658 | struct mmc_ioc_multi_cmd __user *user, |
| 659 | struct mmc_rpmb_data *rpmb) |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 660 | { |
| 661 | struct mmc_blk_ioc_data **idata = NULL; |
| 662 | struct mmc_ioc_cmd __user *cmds = user->cmds; |
| 663 | struct mmc_card *card; |
Linus Walleij | 3ecd8cf | 2017-05-18 11:29:35 +0200 | [diff] [blame] | 664 | struct mmc_queue *mq; |
Grant Grundler | b093410 | 2015-09-23 18:30:33 -0700 | [diff] [blame] | 665 | int i, err = 0, ioc_err = 0; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 666 | __u64 num_of_cmds; |
Linus Walleij | 3ecd8cf | 2017-05-18 11:29:35 +0200 | [diff] [blame] | 667 | struct request *req; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 668 | |
| 669 | if (copy_from_user(&num_of_cmds, &user->num_of_cmds, |
| 670 | sizeof(num_of_cmds))) |
| 671 | return -EFAULT; |
| 672 | |
Geert Uytterhoeven | aab2ee0 | 2017-07-05 17:09:42 +0200 | [diff] [blame] | 673 | if (!num_of_cmds) |
| 674 | return 0; |
| 675 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 676 | if (num_of_cmds > MMC_IOC_MAX_CMDS) |
| 677 | return -EINVAL; |
| 678 | |
| 679 | idata = kcalloc(num_of_cmds, sizeof(*idata), GFP_KERNEL); |
| 680 | if (!idata) |
| 681 | return -ENOMEM; |
| 682 | |
| 683 | for (i = 0; i < num_of_cmds; i++) { |
| 684 | idata[i] = mmc_blk_ioctl_copy_from_user(&cmds[i]); |
| 685 | if (IS_ERR(idata[i])) { |
| 686 | err = PTR_ERR(idata[i]); |
| 687 | num_of_cmds = i; |
| 688 | goto cmd_err; |
| 689 | } |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 690 | /* This will be NULL on non-RPMB ioctl():s */ |
| 691 | idata[i]->rpmb = rpmb; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 692 | } |
| 693 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 694 | card = md->queue.card; |
| 695 | if (IS_ERR(card)) { |
| 696 | err = PTR_ERR(card); |
Linus Walleij | 2fe20ba | 2017-08-20 23:39:11 +0200 | [diff] [blame] | 697 | goto cmd_err; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 698 | } |
| 699 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 700 | |
Linus Walleij | 3ecd8cf | 2017-05-18 11:29:35 +0200 | [diff] [blame] | 701 | /* |
| 702 | * Dispatch the ioctl()s into the block request queue. |
| 703 | */ |
| 704 | mq = &md->queue; |
| 705 | req = blk_get_request(mq->queue, |
| 706 | idata[0]->ic.write_flag ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN, |
| 707 | __GFP_RECLAIM); |
Adrian Hunter | fb8e456e | 2017-11-21 15:42:28 +0200 | [diff] [blame] | 708 | if (IS_ERR(req)) { |
| 709 | err = PTR_ERR(req); |
| 710 | goto cmd_err; |
| 711 | } |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 712 | req_to_mmc_queue_req(req)->drv_op = |
| 713 | rpmb ? MMC_DRV_OP_IOCTL_RPMB : MMC_DRV_OP_IOCTL; |
Linus Walleij | 69f7599 | 2017-08-20 23:39:06 +0200 | [diff] [blame] | 714 | req_to_mmc_queue_req(req)->drv_op_data = idata; |
Linus Walleij | 3ecd8cf | 2017-05-18 11:29:35 +0200 | [diff] [blame] | 715 | req_to_mmc_queue_req(req)->ioc_count = num_of_cmds; |
| 716 | blk_execute_rq(mq->queue, NULL, req, 0); |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 717 | ioc_err = req_to_mmc_queue_req(req)->drv_op_result; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 718 | |
| 719 | /* copy to user if data and response */ |
Grant Grundler | b093410 | 2015-09-23 18:30:33 -0700 | [diff] [blame] | 720 | for (i = 0; i < num_of_cmds && !err; i++) |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 721 | err = mmc_blk_ioctl_copy_to_user(&cmds[i], idata[i]); |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 722 | |
Linus Walleij | 3ecd8cf | 2017-05-18 11:29:35 +0200 | [diff] [blame] | 723 | blk_put_request(req); |
| 724 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 725 | cmd_err: |
| 726 | for (i = 0; i < num_of_cmds; i++) { |
| 727 | kfree(idata[i]->buf); |
| 728 | kfree(idata[i]); |
| 729 | } |
| 730 | kfree(idata); |
Grant Grundler | b093410 | 2015-09-23 18:30:33 -0700 | [diff] [blame] | 731 | return ioc_err ? ioc_err : err; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 732 | } |
| 733 | |
Linus Walleij | 61fe0e2 | 2017-08-20 23:39:09 +0200 | [diff] [blame] | 734 | static int mmc_blk_check_blkdev(struct block_device *bdev) |
| 735 | { |
| 736 | /* |
| 737 | * The caller must have CAP_SYS_RAWIO, and must be calling this on the |
| 738 | * whole block device, not on a partition. This prevents overspray |
| 739 | * between sibling partitions. |
| 740 | */ |
| 741 | if ((!capable(CAP_SYS_RAWIO)) || (bdev != bdev->bd_contains)) |
| 742 | return -EPERM; |
| 743 | return 0; |
| 744 | } |
| 745 | |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 746 | static int mmc_blk_ioctl(struct block_device *bdev, fmode_t mode, |
| 747 | unsigned int cmd, unsigned long arg) |
| 748 | { |
Linus Walleij | 2fe20ba | 2017-08-20 23:39:11 +0200 | [diff] [blame] | 749 | struct mmc_blk_data *md; |
Linus Walleij | 61fe0e2 | 2017-08-20 23:39:09 +0200 | [diff] [blame] | 750 | int ret; |
| 751 | |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 752 | switch (cmd) { |
| 753 | case MMC_IOC_CMD: |
Linus Walleij | 61fe0e2 | 2017-08-20 23:39:09 +0200 | [diff] [blame] | 754 | ret = mmc_blk_check_blkdev(bdev); |
| 755 | if (ret) |
| 756 | return ret; |
Linus Walleij | 2fe20ba | 2017-08-20 23:39:11 +0200 | [diff] [blame] | 757 | md = mmc_blk_get(bdev->bd_disk); |
| 758 | if (!md) |
| 759 | return -EINVAL; |
| 760 | ret = mmc_blk_ioctl_cmd(md, |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 761 | (struct mmc_ioc_cmd __user *)arg, |
| 762 | NULL); |
Linus Walleij | 2fe20ba | 2017-08-20 23:39:11 +0200 | [diff] [blame] | 763 | mmc_blk_put(md); |
| 764 | return ret; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 765 | case MMC_IOC_MULTI_CMD: |
Linus Walleij | 61fe0e2 | 2017-08-20 23:39:09 +0200 | [diff] [blame] | 766 | ret = mmc_blk_check_blkdev(bdev); |
| 767 | if (ret) |
| 768 | return ret; |
Linus Walleij | 2fe20ba | 2017-08-20 23:39:11 +0200 | [diff] [blame] | 769 | md = mmc_blk_get(bdev->bd_disk); |
| 770 | if (!md) |
| 771 | return -EINVAL; |
| 772 | ret = mmc_blk_ioctl_multi_cmd(md, |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 773 | (struct mmc_ioc_multi_cmd __user *)arg, |
| 774 | NULL); |
Linus Walleij | 2fe20ba | 2017-08-20 23:39:11 +0200 | [diff] [blame] | 775 | mmc_blk_put(md); |
| 776 | return ret; |
Jon Hunter | a5f5774 | 2015-09-22 10:27:53 +0100 | [diff] [blame] | 777 | default: |
| 778 | return -EINVAL; |
| 779 | } |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | #ifdef CONFIG_COMPAT |
| 783 | static int mmc_blk_compat_ioctl(struct block_device *bdev, fmode_t mode, |
| 784 | unsigned int cmd, unsigned long arg) |
| 785 | { |
| 786 | return mmc_blk_ioctl(bdev, mode, cmd, (unsigned long) compat_ptr(arg)); |
| 787 | } |
| 788 | #endif |
| 789 | |
Alexey Dobriyan | 83d5cde | 2009-09-21 17:01:13 -0700 | [diff] [blame] | 790 | static const struct block_device_operations mmc_bdops = { |
Al Viro | a5a1561 | 2008-03-02 10:33:30 -0500 | [diff] [blame] | 791 | .open = mmc_blk_open, |
| 792 | .release = mmc_blk_release, |
Christoph Hellwig | a885c8c | 2006-01-08 01:02:50 -0800 | [diff] [blame] | 793 | .getgeo = mmc_blk_getgeo, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | .owner = THIS_MODULE, |
John Calixto | cb87ea2 | 2011-04-26 18:56:29 -0400 | [diff] [blame] | 795 | .ioctl = mmc_blk_ioctl, |
| 796 | #ifdef CONFIG_COMPAT |
| 797 | .compat_ioctl = mmc_blk_compat_ioctl, |
| 798 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | }; |
| 800 | |
Adrian Hunter | 025e3d5 | 2017-03-13 14:36:39 +0200 | [diff] [blame] | 801 | static int mmc_blk_part_switch_pre(struct mmc_card *card, |
| 802 | unsigned int part_type) |
| 803 | { |
| 804 | int ret = 0; |
| 805 | |
| 806 | if (part_type == EXT_CSD_PART_CONFIG_ACC_RPMB) { |
| 807 | if (card->ext_csd.cmdq_en) { |
| 808 | ret = mmc_cmdq_disable(card); |
| 809 | if (ret) |
| 810 | return ret; |
| 811 | } |
| 812 | mmc_retune_pause(card->host); |
| 813 | } |
| 814 | |
| 815 | return ret; |
| 816 | } |
| 817 | |
| 818 | static int mmc_blk_part_switch_post(struct mmc_card *card, |
| 819 | unsigned int part_type) |
| 820 | { |
| 821 | int ret = 0; |
| 822 | |
| 823 | if (part_type == EXT_CSD_PART_CONFIG_ACC_RPMB) { |
| 824 | mmc_retune_unpause(card->host); |
| 825 | if (card->reenable_cmdq && !card->ext_csd.cmdq_en) |
| 826 | ret = mmc_cmdq_enable(card); |
| 827 | } |
| 828 | |
| 829 | return ret; |
| 830 | } |
| 831 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 832 | static inline int mmc_blk_part_switch(struct mmc_card *card, |
Linus Walleij | 1f797ed | 2017-08-20 23:39:10 +0200 | [diff] [blame] | 833 | unsigned int part_type) |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 834 | { |
Adrian Hunter | 025e3d5 | 2017-03-13 14:36:39 +0200 | [diff] [blame] | 835 | int ret = 0; |
Ulf Hansson | fc95e30 | 2014-10-06 14:34:09 +0200 | [diff] [blame] | 836 | struct mmc_blk_data *main_md = dev_get_drvdata(&card->dev); |
Adrian Hunter | 0d7d85c | 2011-09-23 12:48:20 +0300 | [diff] [blame] | 837 | |
Linus Walleij | 1f797ed | 2017-08-20 23:39:10 +0200 | [diff] [blame] | 838 | if (main_md->part_curr == part_type) |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 839 | return 0; |
| 840 | |
| 841 | if (mmc_card_mmc(card)) { |
Adrian Hunter | 0d7d85c | 2011-09-23 12:48:20 +0300 | [diff] [blame] | 842 | u8 part_config = card->ext_csd.part_config; |
| 843 | |
Linus Walleij | 1f797ed | 2017-08-20 23:39:10 +0200 | [diff] [blame] | 844 | ret = mmc_blk_part_switch_pre(card, part_type); |
Adrian Hunter | 025e3d5 | 2017-03-13 14:36:39 +0200 | [diff] [blame] | 845 | if (ret) |
| 846 | return ret; |
Adrian Hunter | 57da0c0 | 2016-05-04 14:38:13 +0300 | [diff] [blame] | 847 | |
Adrian Hunter | 0d7d85c | 2011-09-23 12:48:20 +0300 | [diff] [blame] | 848 | part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK; |
Linus Walleij | 1f797ed | 2017-08-20 23:39:10 +0200 | [diff] [blame] | 849 | part_config |= part_type; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 850 | |
| 851 | ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, |
Adrian Hunter | 0d7d85c | 2011-09-23 12:48:20 +0300 | [diff] [blame] | 852 | EXT_CSD_PART_CONFIG, part_config, |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 853 | card->ext_csd.part_time); |
Adrian Hunter | 57da0c0 | 2016-05-04 14:38:13 +0300 | [diff] [blame] | 854 | if (ret) { |
Linus Walleij | 1f797ed | 2017-08-20 23:39:10 +0200 | [diff] [blame] | 855 | mmc_blk_part_switch_post(card, part_type); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 856 | return ret; |
Adrian Hunter | 57da0c0 | 2016-05-04 14:38:13 +0300 | [diff] [blame] | 857 | } |
Adrian Hunter | 0d7d85c | 2011-09-23 12:48:20 +0300 | [diff] [blame] | 858 | |
| 859 | card->ext_csd.part_config = part_config; |
Adrian Hunter | 57da0c0 | 2016-05-04 14:38:13 +0300 | [diff] [blame] | 860 | |
Adrian Hunter | 025e3d5 | 2017-03-13 14:36:39 +0200 | [diff] [blame] | 861 | ret = mmc_blk_part_switch_post(card, main_md->part_curr); |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 862 | } |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 863 | |
Linus Walleij | 1f797ed | 2017-08-20 23:39:10 +0200 | [diff] [blame] | 864 | main_md->part_curr = part_type; |
Adrian Hunter | 025e3d5 | 2017-03-13 14:36:39 +0200 | [diff] [blame] | 865 | return ret; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 866 | } |
| 867 | |
Linus Walleij | 169f03a | 2017-02-01 13:47:57 +0100 | [diff] [blame] | 868 | static int mmc_sd_num_wr_blocks(struct mmc_card *card, u32 *written_blocks) |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 869 | { |
| 870 | int err; |
Ben Dooks | 051913d | 2009-06-08 23:33:57 +0100 | [diff] [blame] | 871 | u32 result; |
| 872 | __be32 *blocks; |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 873 | |
Masahiro Yamada | c7836d1 | 2016-12-19 20:51:18 +0900 | [diff] [blame] | 874 | struct mmc_request mrq = {}; |
| 875 | struct mmc_command cmd = {}; |
| 876 | struct mmc_data data = {}; |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 877 | |
| 878 | struct scatterlist sg; |
| 879 | |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 880 | cmd.opcode = MMC_APP_CMD; |
| 881 | cmd.arg = card->rca << 16; |
David Brownell | 7213d17 | 2007-08-08 09:10:23 -0700 | [diff] [blame] | 882 | cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC; |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 883 | |
| 884 | err = mmc_wait_for_cmd(card->host, &cmd, 0); |
David Brownell | 7213d17 | 2007-08-08 09:10:23 -0700 | [diff] [blame] | 885 | if (err) |
Linus Walleij | 169f03a | 2017-02-01 13:47:57 +0100 | [diff] [blame] | 886 | return err; |
David Brownell | 7213d17 | 2007-08-08 09:10:23 -0700 | [diff] [blame] | 887 | if (!mmc_host_is_spi(card->host) && !(cmd.resp[0] & R1_APP_CMD)) |
Linus Walleij | 169f03a | 2017-02-01 13:47:57 +0100 | [diff] [blame] | 888 | return -EIO; |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 889 | |
| 890 | memset(&cmd, 0, sizeof(struct mmc_command)); |
| 891 | |
| 892 | cmd.opcode = SD_APP_SEND_NUM_WR_BLKS; |
| 893 | cmd.arg = 0; |
David Brownell | 7213d17 | 2007-08-08 09:10:23 -0700 | [diff] [blame] | 894 | cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC; |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 895 | |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 896 | data.blksz = 4; |
| 897 | data.blocks = 1; |
| 898 | data.flags = MMC_DATA_READ; |
| 899 | data.sg = &sg; |
| 900 | data.sg_len = 1; |
Subhash Jadavani | d380443 | 2012-06-13 17:10:43 +0530 | [diff] [blame] | 901 | mmc_set_data_timeout(&data, card); |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 902 | |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 903 | mrq.cmd = &cmd; |
| 904 | mrq.data = &data; |
| 905 | |
Ben Dooks | 051913d | 2009-06-08 23:33:57 +0100 | [diff] [blame] | 906 | blocks = kmalloc(4, GFP_KERNEL); |
| 907 | if (!blocks) |
Linus Walleij | 169f03a | 2017-02-01 13:47:57 +0100 | [diff] [blame] | 908 | return -ENOMEM; |
Ben Dooks | 051913d | 2009-06-08 23:33:57 +0100 | [diff] [blame] | 909 | |
| 910 | sg_init_one(&sg, blocks, 4); |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 911 | |
| 912 | mmc_wait_for_req(card->host, &mrq); |
| 913 | |
Ben Dooks | 051913d | 2009-06-08 23:33:57 +0100 | [diff] [blame] | 914 | result = ntohl(*blocks); |
| 915 | kfree(blocks); |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 916 | |
Ben Dooks | 051913d | 2009-06-08 23:33:57 +0100 | [diff] [blame] | 917 | if (cmd.error || data.error) |
Linus Walleij | 169f03a | 2017-02-01 13:47:57 +0100 | [diff] [blame] | 918 | return -EIO; |
Ben Dooks | 051913d | 2009-06-08 23:33:57 +0100 | [diff] [blame] | 919 | |
Linus Walleij | 169f03a | 2017-02-01 13:47:57 +0100 | [diff] [blame] | 920 | *written_blocks = result; |
| 921 | |
| 922 | return 0; |
Pierre Ossman | ec5a19d | 2006-10-06 00:44:03 -0700 | [diff] [blame] | 923 | } |
| 924 | |
Ulf Hansson | c49433f | 2014-01-29 11:01:55 +0100 | [diff] [blame] | 925 | static int card_busy_detect(struct mmc_card *card, unsigned int timeout_ms, |
Linus Walleij | c44d6ce | 2016-11-04 11:05:17 +0100 | [diff] [blame] | 926 | bool hw_busy_detect, struct request *req, bool *gen_err) |
Ulf Hansson | c49433f | 2014-01-29 11:01:55 +0100 | [diff] [blame] | 927 | { |
| 928 | unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms); |
| 929 | int err = 0; |
| 930 | u32 status; |
| 931 | |
| 932 | do { |
Ulf Hansson | 2185bc2 | 2017-05-22 10:23:58 +0200 | [diff] [blame] | 933 | err = __mmc_send_status(card, &status, 5); |
Ulf Hansson | c49433f | 2014-01-29 11:01:55 +0100 | [diff] [blame] | 934 | if (err) { |
| 935 | pr_err("%s: error %d requesting status\n", |
| 936 | req->rq_disk->disk_name, err); |
| 937 | return err; |
| 938 | } |
| 939 | |
| 940 | if (status & R1_ERROR) { |
| 941 | pr_err("%s: %s: error sending status cmd, status %#x\n", |
| 942 | req->rq_disk->disk_name, __func__, status); |
Linus Walleij | c44d6ce | 2016-11-04 11:05:17 +0100 | [diff] [blame] | 943 | *gen_err = true; |
Ulf Hansson | c49433f | 2014-01-29 11:01:55 +0100 | [diff] [blame] | 944 | } |
| 945 | |
Ulf Hansson | 95a9129 | 2014-01-29 13:11:27 +0100 | [diff] [blame] | 946 | /* We may rely on the host hw to handle busy detection.*/ |
| 947 | if ((card->host->caps & MMC_CAP_WAIT_WHILE_BUSY) && |
| 948 | hw_busy_detect) |
| 949 | break; |
| 950 | |
Ulf Hansson | c49433f | 2014-01-29 11:01:55 +0100 | [diff] [blame] | 951 | /* |
| 952 | * Timeout if the device never becomes ready for data and never |
| 953 | * leaves the program state. |
| 954 | */ |
| 955 | if (time_after(jiffies, timeout)) { |
| 956 | pr_err("%s: Card stuck in programming state! %s %s\n", |
| 957 | mmc_hostname(card->host), |
| 958 | req->rq_disk->disk_name, __func__); |
| 959 | return -ETIMEDOUT; |
| 960 | } |
| 961 | |
| 962 | /* |
| 963 | * Some cards mishandle the status bits, |
| 964 | * so make sure to check both the busy |
| 965 | * indication and the card state. |
| 966 | */ |
| 967 | } while (!(status & R1_READY_FOR_DATA) || |
| 968 | (R1_CURRENT_STATE(status) == R1_STATE_PRG)); |
| 969 | |
| 970 | return err; |
| 971 | } |
| 972 | |
Ulf Hansson | bb5cba4 | 2014-01-14 21:31:35 +0100 | [diff] [blame] | 973 | static int send_stop(struct mmc_card *card, unsigned int timeout_ms, |
Linus Walleij | c44d6ce | 2016-11-04 11:05:17 +0100 | [diff] [blame] | 974 | struct request *req, bool *gen_err, u32 *stop_status) |
Ulf Hansson | bb5cba4 | 2014-01-14 21:31:35 +0100 | [diff] [blame] | 975 | { |
| 976 | struct mmc_host *host = card->host; |
Masahiro Yamada | c7836d1 | 2016-12-19 20:51:18 +0900 | [diff] [blame] | 977 | struct mmc_command cmd = {}; |
Ulf Hansson | bb5cba4 | 2014-01-14 21:31:35 +0100 | [diff] [blame] | 978 | int err; |
| 979 | bool use_r1b_resp = rq_data_dir(req) == WRITE; |
| 980 | |
| 981 | /* |
| 982 | * Normally we use R1B responses for WRITE, but in cases where the host |
| 983 | * has specified a max_busy_timeout we need to validate it. A failure |
| 984 | * means we need to prevent the host from doing hw busy detection, which |
| 985 | * is done by converting to a R1 response instead. |
| 986 | */ |
| 987 | if (host->max_busy_timeout && (timeout_ms > host->max_busy_timeout)) |
| 988 | use_r1b_resp = false; |
| 989 | |
| 990 | cmd.opcode = MMC_STOP_TRANSMISSION; |
| 991 | if (use_r1b_resp) { |
| 992 | cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC; |
| 993 | cmd.busy_timeout = timeout_ms; |
| 994 | } else { |
| 995 | cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC; |
| 996 | } |
| 997 | |
| 998 | err = mmc_wait_for_cmd(host, &cmd, 5); |
| 999 | if (err) |
| 1000 | return err; |
| 1001 | |
| 1002 | *stop_status = cmd.resp[0]; |
| 1003 | |
| 1004 | /* No need to check card status in case of READ. */ |
| 1005 | if (rq_data_dir(req) == READ) |
| 1006 | return 0; |
| 1007 | |
| 1008 | if (!mmc_host_is_spi(host) && |
| 1009 | (*stop_status & R1_ERROR)) { |
| 1010 | pr_err("%s: %s: general error sending stop command, resp %#x\n", |
| 1011 | req->rq_disk->disk_name, __func__, *stop_status); |
Linus Walleij | c44d6ce | 2016-11-04 11:05:17 +0100 | [diff] [blame] | 1012 | *gen_err = true; |
Ulf Hansson | bb5cba4 | 2014-01-14 21:31:35 +0100 | [diff] [blame] | 1013 | } |
| 1014 | |
| 1015 | return card_busy_detect(card, timeout_ms, use_r1b_resp, req, gen_err); |
| 1016 | } |
| 1017 | |
Sujit Reddy Thumma | a8ad82cc | 2011-12-08 14:05:50 +0530 | [diff] [blame] | 1018 | #define ERR_NOMEDIUM 3 |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1019 | #define ERR_RETRY 2 |
| 1020 | #define ERR_ABORT 1 |
| 1021 | #define ERR_CONTINUE 0 |
| 1022 | |
| 1023 | static int mmc_blk_cmd_error(struct request *req, const char *name, int error, |
| 1024 | bool status_valid, u32 status) |
| 1025 | { |
| 1026 | switch (error) { |
| 1027 | case -EILSEQ: |
| 1028 | /* response crc error, retry the r/w cmd */ |
| 1029 | pr_err("%s: %s sending %s command, card status %#x\n", |
| 1030 | req->rq_disk->disk_name, "response CRC error", |
| 1031 | name, status); |
| 1032 | return ERR_RETRY; |
| 1033 | |
| 1034 | case -ETIMEDOUT: |
| 1035 | pr_err("%s: %s sending %s command, card status %#x\n", |
| 1036 | req->rq_disk->disk_name, "timed out", name, status); |
| 1037 | |
| 1038 | /* If the status cmd initially failed, retry the r/w cmd */ |
Ken Sumrall | cc4d04b | 2016-05-10 14:53:13 +0530 | [diff] [blame] | 1039 | if (!status_valid) { |
| 1040 | pr_err("%s: status not valid, retrying timeout\n", |
| 1041 | req->rq_disk->disk_name); |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1042 | return ERR_RETRY; |
Ken Sumrall | cc4d04b | 2016-05-10 14:53:13 +0530 | [diff] [blame] | 1043 | } |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1044 | |
| 1045 | /* |
| 1046 | * If it was a r/w cmd crc error, or illegal command |
| 1047 | * (eg, issued in wrong state) then retry - we should |
| 1048 | * have corrected the state problem above. |
| 1049 | */ |
Ken Sumrall | cc4d04b | 2016-05-10 14:53:13 +0530 | [diff] [blame] | 1050 | if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND)) { |
| 1051 | pr_err("%s: command error, retrying timeout\n", |
| 1052 | req->rq_disk->disk_name); |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1053 | return ERR_RETRY; |
Ken Sumrall | cc4d04b | 2016-05-10 14:53:13 +0530 | [diff] [blame] | 1054 | } |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1055 | |
| 1056 | /* Otherwise abort the command */ |
| 1057 | return ERR_ABORT; |
| 1058 | |
| 1059 | default: |
| 1060 | /* We don't understand the error code the driver gave us */ |
| 1061 | pr_err("%s: unknown error %d sending read/write command, card status %#x\n", |
| 1062 | req->rq_disk->disk_name, error, status); |
| 1063 | return ERR_ABORT; |
| 1064 | } |
| 1065 | } |
| 1066 | |
| 1067 | /* |
| 1068 | * Initial r/w and stop cmd error recovery. |
| 1069 | * We don't know whether the card received the r/w cmd or not, so try to |
| 1070 | * restore things back to a sane state. Essentially, we do this as follows: |
| 1071 | * - Obtain card status. If the first attempt to obtain card status fails, |
| 1072 | * the status word will reflect the failed status cmd, not the failed |
| 1073 | * r/w cmd. If we fail to obtain card status, it suggests we can no |
| 1074 | * longer communicate with the card. |
| 1075 | * - Check the card state. If the card received the cmd but there was a |
| 1076 | * transient problem with the response, it might still be in a data transfer |
| 1077 | * mode. Try to send it a stop command. If this fails, we can't recover. |
| 1078 | * - If the r/w cmd failed due to a response CRC error, it was probably |
| 1079 | * transient, so retry the cmd. |
| 1080 | * - If the r/w cmd timed out, but we didn't get the r/w cmd status, retry. |
| 1081 | * - If the r/w cmd timed out, and the r/w cmd failed due to CRC error or |
| 1082 | * illegal cmd, retry. |
| 1083 | * Otherwise we don't understand what happened, so abort. |
| 1084 | */ |
| 1085 | static int mmc_blk_cmd_recovery(struct mmc_card *card, struct request *req, |
Linus Walleij | 2cc6458 | 2016-11-04 11:05:18 +0100 | [diff] [blame] | 1086 | struct mmc_blk_request *brq, bool *ecc_err, bool *gen_err) |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1087 | { |
| 1088 | bool prev_cmd_status_valid = true; |
| 1089 | u32 status, stop_status = 0; |
| 1090 | int err, retry; |
| 1091 | |
Sujit Reddy Thumma | a8ad82cc | 2011-12-08 14:05:50 +0530 | [diff] [blame] | 1092 | if (mmc_card_removed(card)) |
| 1093 | return ERR_NOMEDIUM; |
| 1094 | |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1095 | /* |
| 1096 | * Try to get card status which indicates both the card state |
| 1097 | * and why there was no response. If the first attempt fails, |
| 1098 | * we can't be sure the returned status is for the r/w command. |
| 1099 | */ |
| 1100 | for (retry = 2; retry >= 0; retry--) { |
Ulf Hansson | 2185bc2 | 2017-05-22 10:23:58 +0200 | [diff] [blame] | 1101 | err = __mmc_send_status(card, &status, 0); |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1102 | if (!err) |
| 1103 | break; |
| 1104 | |
Adrian Hunter | 6f398ad | 2015-05-07 13:10:23 +0300 | [diff] [blame] | 1105 | /* Re-tune if needed */ |
| 1106 | mmc_retune_recheck(card->host); |
| 1107 | |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1108 | prev_cmd_status_valid = false; |
| 1109 | pr_err("%s: error %d sending status command, %sing\n", |
| 1110 | req->rq_disk->disk_name, err, retry ? "retry" : "abort"); |
| 1111 | } |
| 1112 | |
| 1113 | /* We couldn't get a response from the card. Give up. */ |
Sujit Reddy Thumma | a8ad82cc | 2011-12-08 14:05:50 +0530 | [diff] [blame] | 1114 | if (err) { |
| 1115 | /* Check if the card is removed */ |
| 1116 | if (mmc_detect_card_removed(card->host)) |
| 1117 | return ERR_NOMEDIUM; |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1118 | return ERR_ABORT; |
Sujit Reddy Thumma | a8ad82cc | 2011-12-08 14:05:50 +0530 | [diff] [blame] | 1119 | } |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1120 | |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1121 | /* Flag ECC errors */ |
| 1122 | if ((status & R1_CARD_ECC_FAILED) || |
| 1123 | (brq->stop.resp[0] & R1_CARD_ECC_FAILED) || |
| 1124 | (brq->cmd.resp[0] & R1_CARD_ECC_FAILED)) |
Linus Walleij | 2cc6458 | 2016-11-04 11:05:18 +0100 | [diff] [blame] | 1125 | *ecc_err = true; |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1126 | |
KOBAYASHI Yoshitake | c876006 | 2013-07-07 07:35:45 +0900 | [diff] [blame] | 1127 | /* Flag General errors */ |
| 1128 | if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) |
| 1129 | if ((status & R1_ERROR) || |
| 1130 | (brq->stop.resp[0] & R1_ERROR)) { |
| 1131 | pr_err("%s: %s: general error sending stop or status command, stop cmd response %#x, card status %#x\n", |
| 1132 | req->rq_disk->disk_name, __func__, |
| 1133 | brq->stop.resp[0], status); |
Linus Walleij | c44d6ce | 2016-11-04 11:05:17 +0100 | [diff] [blame] | 1134 | *gen_err = true; |
KOBAYASHI Yoshitake | c876006 | 2013-07-07 07:35:45 +0900 | [diff] [blame] | 1135 | } |
| 1136 | |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1137 | /* |
| 1138 | * Check the current card state. If it is in some data transfer |
| 1139 | * mode, tell it to stop (and hopefully transition back to TRAN.) |
| 1140 | */ |
| 1141 | if (R1_CURRENT_STATE(status) == R1_STATE_DATA || |
| 1142 | R1_CURRENT_STATE(status) == R1_STATE_RCV) { |
Ulf Hansson | bb5cba4 | 2014-01-14 21:31:35 +0100 | [diff] [blame] | 1143 | err = send_stop(card, |
| 1144 | DIV_ROUND_UP(brq->data.timeout_ns, 1000000), |
| 1145 | req, gen_err, &stop_status); |
| 1146 | if (err) { |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1147 | pr_err("%s: error %d sending stop command\n", |
| 1148 | req->rq_disk->disk_name, err); |
Ulf Hansson | bb5cba4 | 2014-01-14 21:31:35 +0100 | [diff] [blame] | 1149 | /* |
| 1150 | * If the stop cmd also timed out, the card is probably |
| 1151 | * not present, so abort. Other errors are bad news too. |
| 1152 | */ |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1153 | return ERR_ABORT; |
Ulf Hansson | bb5cba4 | 2014-01-14 21:31:35 +0100 | [diff] [blame] | 1154 | } |
| 1155 | |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1156 | if (stop_status & R1_CARD_ECC_FAILED) |
Linus Walleij | 2cc6458 | 2016-11-04 11:05:18 +0100 | [diff] [blame] | 1157 | *ecc_err = true; |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1158 | } |
| 1159 | |
| 1160 | /* Check for set block count errors */ |
| 1161 | if (brq->sbc.error) |
| 1162 | return mmc_blk_cmd_error(req, "SET_BLOCK_COUNT", brq->sbc.error, |
| 1163 | prev_cmd_status_valid, status); |
| 1164 | |
| 1165 | /* Check for r/w command errors */ |
| 1166 | if (brq->cmd.error) |
| 1167 | return mmc_blk_cmd_error(req, "r/w cmd", brq->cmd.error, |
| 1168 | prev_cmd_status_valid, status); |
| 1169 | |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1170 | /* Data errors */ |
| 1171 | if (!brq->stop.error) |
| 1172 | return ERR_CONTINUE; |
| 1173 | |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1174 | /* Now for stop errors. These aren't fatal to the transfer. */ |
Johan Rudholm | 5e1344e | 2014-09-17 09:50:42 +0200 | [diff] [blame] | 1175 | pr_info("%s: error %d sending stop command, original cmd response %#x, card status %#x\n", |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 1176 | req->rq_disk->disk_name, brq->stop.error, |
| 1177 | brq->cmd.resp[0], status); |
| 1178 | |
| 1179 | /* |
| 1180 | * Subsitute in our own stop status as this will give the error |
| 1181 | * state which happened during the execution of the r/w command. |
| 1182 | */ |
| 1183 | if (stop_status) { |
| 1184 | brq->stop.resp[0] = stop_status; |
| 1185 | brq->stop.error = 0; |
| 1186 | } |
| 1187 | return ERR_CONTINUE; |
| 1188 | } |
| 1189 | |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1190 | static int mmc_blk_reset(struct mmc_blk_data *md, struct mmc_host *host, |
| 1191 | int type) |
| 1192 | { |
| 1193 | int err; |
| 1194 | |
| 1195 | if (md->reset_done & type) |
| 1196 | return -EEXIST; |
| 1197 | |
| 1198 | md->reset_done |= type; |
| 1199 | err = mmc_hw_reset(host); |
| 1200 | /* Ensure we switch back to the correct partition */ |
| 1201 | if (err != -EOPNOTSUPP) { |
Ulf Hansson | fc95e30 | 2014-10-06 14:34:09 +0200 | [diff] [blame] | 1202 | struct mmc_blk_data *main_md = |
| 1203 | dev_get_drvdata(&host->card->dev); |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1204 | int part_err; |
| 1205 | |
| 1206 | main_md->part_curr = main_md->part_type; |
Linus Walleij | 1f797ed | 2017-08-20 23:39:10 +0200 | [diff] [blame] | 1207 | part_err = mmc_blk_part_switch(host->card, md->part_type); |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1208 | if (part_err) { |
| 1209 | /* |
| 1210 | * We have failed to get back into the correct |
| 1211 | * partition, so we need to abort the whole request. |
| 1212 | */ |
| 1213 | return -ENODEV; |
| 1214 | } |
| 1215 | } |
| 1216 | return err; |
| 1217 | } |
| 1218 | |
| 1219 | static inline void mmc_blk_reset_success(struct mmc_blk_data *md, int type) |
| 1220 | { |
| 1221 | md->reset_done &= ~type; |
| 1222 | } |
| 1223 | |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 1224 | static void mmc_blk_end_request(struct request *req, blk_status_t error) |
| 1225 | { |
| 1226 | if (req->mq_ctx) |
| 1227 | blk_mq_end_request(req, error); |
| 1228 | else |
| 1229 | blk_end_request_all(req, error); |
| 1230 | } |
| 1231 | |
Linus Walleij | 5ec1239 | 2017-05-19 15:37:29 +0200 | [diff] [blame] | 1232 | /* |
| 1233 | * The non-block commands come back from the block layer after it queued it and |
| 1234 | * processed it with all other requests and then they get issued in this |
| 1235 | * function. |
| 1236 | */ |
| 1237 | static void mmc_blk_issue_drv_op(struct mmc_queue *mq, struct request *req) |
| 1238 | { |
| 1239 | struct mmc_queue_req *mq_rq; |
| 1240 | struct mmc_card *card = mq->card; |
| 1241 | struct mmc_blk_data *md = mq->blkdata; |
Linus Walleij | 69f7599 | 2017-08-20 23:39:06 +0200 | [diff] [blame] | 1242 | struct mmc_blk_ioc_data **idata; |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 1243 | bool rpmb_ioctl; |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 1244 | u8 **ext_csd; |
| 1245 | u32 status; |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 1246 | int ret; |
Linus Walleij | 5ec1239 | 2017-05-19 15:37:29 +0200 | [diff] [blame] | 1247 | int i; |
| 1248 | |
| 1249 | mq_rq = req_to_mmc_queue_req(req); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 1250 | rpmb_ioctl = (mq_rq->drv_op == MMC_DRV_OP_IOCTL_RPMB); |
Linus Walleij | 5ec1239 | 2017-05-19 15:37:29 +0200 | [diff] [blame] | 1251 | |
| 1252 | switch (mq_rq->drv_op) { |
| 1253 | case MMC_DRV_OP_IOCTL: |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 1254 | case MMC_DRV_OP_IOCTL_RPMB: |
Linus Walleij | 69f7599 | 2017-08-20 23:39:06 +0200 | [diff] [blame] | 1255 | idata = mq_rq->drv_op_data; |
Geert Uytterhoeven | 7432b49 | 2017-07-05 17:09:41 +0200 | [diff] [blame] | 1256 | for (i = 0, ret = 0; i < mq_rq->ioc_count; i++) { |
Linus Walleij | 69f7599 | 2017-08-20 23:39:06 +0200 | [diff] [blame] | 1257 | ret = __mmc_blk_ioctl_cmd(card, md, idata[i]); |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 1258 | if (ret) |
Linus Walleij | 5ec1239 | 2017-05-19 15:37:29 +0200 | [diff] [blame] | 1259 | break; |
| 1260 | } |
Linus Walleij | 5ec1239 | 2017-05-19 15:37:29 +0200 | [diff] [blame] | 1261 | /* Always switch back to main area after RPMB access */ |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 1262 | if (rpmb_ioctl) |
| 1263 | mmc_blk_part_switch(card, 0); |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 1264 | break; |
| 1265 | case MMC_DRV_OP_BOOT_WP: |
| 1266 | ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP, |
| 1267 | card->ext_csd.boot_ro_lock | |
| 1268 | EXT_CSD_BOOT_WP_B_PWR_WP_EN, |
| 1269 | card->ext_csd.part_time); |
| 1270 | if (ret) |
| 1271 | pr_err("%s: Locking boot partition ro until next power on failed: %d\n", |
| 1272 | md->disk->disk_name, ret); |
| 1273 | else |
| 1274 | card->ext_csd.boot_ro_lock |= |
| 1275 | EXT_CSD_BOOT_WP_B_PWR_WP_EN; |
Linus Walleij | 5ec1239 | 2017-05-19 15:37:29 +0200 | [diff] [blame] | 1276 | break; |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 1277 | case MMC_DRV_OP_GET_CARD_STATUS: |
| 1278 | ret = mmc_send_status(card, &status); |
| 1279 | if (!ret) |
| 1280 | ret = status; |
| 1281 | break; |
| 1282 | case MMC_DRV_OP_GET_EXT_CSD: |
| 1283 | ext_csd = mq_rq->drv_op_data; |
| 1284 | ret = mmc_get_ext_csd(card, ext_csd); |
| 1285 | break; |
Linus Walleij | 5ec1239 | 2017-05-19 15:37:29 +0200 | [diff] [blame] | 1286 | default: |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 1287 | pr_err("%s: unknown driver specific operation\n", |
| 1288 | md->disk->disk_name); |
| 1289 | ret = -EINVAL; |
Linus Walleij | 5ec1239 | 2017-05-19 15:37:29 +0200 | [diff] [blame] | 1290 | break; |
| 1291 | } |
Linus Walleij | 0493f6f | 2017-05-19 15:37:30 +0200 | [diff] [blame] | 1292 | mq_rq->drv_op_result = ret; |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 1293 | mmc_blk_end_request(req, ret ? BLK_STS_IOERR : BLK_STS_OK); |
Linus Walleij | 5ec1239 | 2017-05-19 15:37:29 +0200 | [diff] [blame] | 1294 | } |
| 1295 | |
Linus Walleij | df06158 | 2017-01-24 11:17:57 +0100 | [diff] [blame] | 1296 | static void mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *req) |
Adrian Hunter | bd788c9 | 2010-08-11 14:17:47 -0700 | [diff] [blame] | 1297 | { |
Linus Walleij | 7db3028 | 2016-11-18 13:36:15 +0100 | [diff] [blame] | 1298 | struct mmc_blk_data *md = mq->blkdata; |
Adrian Hunter | bd788c9 | 2010-08-11 14:17:47 -0700 | [diff] [blame] | 1299 | struct mmc_card *card = md->queue.card; |
| 1300 | unsigned int from, nr, arg; |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1301 | int err = 0, type = MMC_BLK_DISCARD; |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 1302 | blk_status_t status = BLK_STS_OK; |
Adrian Hunter | bd788c9 | 2010-08-11 14:17:47 -0700 | [diff] [blame] | 1303 | |
Adrian Hunter | bd788c9 | 2010-08-11 14:17:47 -0700 | [diff] [blame] | 1304 | if (!mmc_can_erase(card)) { |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 1305 | status = BLK_STS_NOTSUPP; |
Geert Uytterhoeven | 8cb6ed1 | 2016-12-19 15:03:44 +0100 | [diff] [blame] | 1306 | goto fail; |
Adrian Hunter | bd788c9 | 2010-08-11 14:17:47 -0700 | [diff] [blame] | 1307 | } |
| 1308 | |
| 1309 | from = blk_rq_pos(req); |
| 1310 | nr = blk_rq_sectors(req); |
| 1311 | |
Kyungmin Park | b3bf915 | 2011-10-18 09:34:04 +0900 | [diff] [blame] | 1312 | if (mmc_can_discard(card)) |
| 1313 | arg = MMC_DISCARD_ARG; |
| 1314 | else if (mmc_can_trim(card)) |
Adrian Hunter | bd788c9 | 2010-08-11 14:17:47 -0700 | [diff] [blame] | 1315 | arg = MMC_TRIM_ARG; |
| 1316 | else |
| 1317 | arg = MMC_ERASE_ARG; |
Geert Uytterhoeven | 164b50b | 2016-12-19 15:03:45 +0100 | [diff] [blame] | 1318 | do { |
| 1319 | err = 0; |
| 1320 | if (card->quirks & MMC_QUIRK_INAND_CMD38) { |
| 1321 | err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, |
| 1322 | INAND_CMD38_ARG_EXT_CSD, |
| 1323 | arg == MMC_TRIM_ARG ? |
| 1324 | INAND_CMD38_ARG_TRIM : |
| 1325 | INAND_CMD38_ARG_ERASE, |
| 1326 | 0); |
| 1327 | } |
| 1328 | if (!err) |
| 1329 | err = mmc_erase(card, from, nr, arg); |
| 1330 | } while (err == -EIO && !mmc_blk_reset(md, card->host, type)); |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 1331 | if (err) |
| 1332 | status = BLK_STS_IOERR; |
| 1333 | else |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1334 | mmc_blk_reset_success(md, type); |
Geert Uytterhoeven | 8cb6ed1 | 2016-12-19 15:03:44 +0100 | [diff] [blame] | 1335 | fail: |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 1336 | mmc_blk_end_request(req, status); |
Adrian Hunter | bd788c9 | 2010-08-11 14:17:47 -0700 | [diff] [blame] | 1337 | } |
| 1338 | |
Linus Walleij | df06158 | 2017-01-24 11:17:57 +0100 | [diff] [blame] | 1339 | static void mmc_blk_issue_secdiscard_rq(struct mmc_queue *mq, |
Adrian Hunter | 4980454 | 2010-08-11 14:17:50 -0700 | [diff] [blame] | 1340 | struct request *req) |
| 1341 | { |
Linus Walleij | 7db3028 | 2016-11-18 13:36:15 +0100 | [diff] [blame] | 1342 | struct mmc_blk_data *md = mq->blkdata; |
Adrian Hunter | 4980454 | 2010-08-11 14:17:50 -0700 | [diff] [blame] | 1343 | struct mmc_card *card = md->queue.card; |
Maya Erez | 775a936 | 2013-04-18 15:41:55 +0300 | [diff] [blame] | 1344 | unsigned int from, nr, arg; |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1345 | int err = 0, type = MMC_BLK_SECDISCARD; |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 1346 | blk_status_t status = BLK_STS_OK; |
Adrian Hunter | 4980454 | 2010-08-11 14:17:50 -0700 | [diff] [blame] | 1347 | |
Maya Erez | 775a936 | 2013-04-18 15:41:55 +0300 | [diff] [blame] | 1348 | if (!(mmc_can_secure_erase_trim(card))) { |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 1349 | status = BLK_STS_NOTSUPP; |
Adrian Hunter | 4980454 | 2010-08-11 14:17:50 -0700 | [diff] [blame] | 1350 | goto out; |
| 1351 | } |
| 1352 | |
| 1353 | from = blk_rq_pos(req); |
| 1354 | nr = blk_rq_sectors(req); |
| 1355 | |
Maya Erez | 775a936 | 2013-04-18 15:41:55 +0300 | [diff] [blame] | 1356 | if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr)) |
| 1357 | arg = MMC_SECURE_TRIM1_ARG; |
| 1358 | else |
| 1359 | arg = MMC_SECURE_ERASE_ARG; |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1360 | |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1361 | retry: |
Andrei Warkentin | 6a7a6b4 | 2011-04-12 15:06:53 -0500 | [diff] [blame] | 1362 | if (card->quirks & MMC_QUIRK_INAND_CMD38) { |
| 1363 | err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, |
| 1364 | INAND_CMD38_ARG_EXT_CSD, |
| 1365 | arg == MMC_SECURE_TRIM1_ARG ? |
| 1366 | INAND_CMD38_ARG_SECTRIM1 : |
| 1367 | INAND_CMD38_ARG_SECERASE, |
| 1368 | 0); |
| 1369 | if (err) |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1370 | goto out_retry; |
Andrei Warkentin | 6a7a6b4 | 2011-04-12 15:06:53 -0500 | [diff] [blame] | 1371 | } |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1372 | |
Adrian Hunter | 4980454 | 2010-08-11 14:17:50 -0700 | [diff] [blame] | 1373 | err = mmc_erase(card, from, nr, arg); |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1374 | if (err == -EIO) |
| 1375 | goto out_retry; |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 1376 | if (err) { |
| 1377 | status = BLK_STS_IOERR; |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1378 | goto out; |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 1379 | } |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1380 | |
| 1381 | if (arg == MMC_SECURE_TRIM1_ARG) { |
Andrei Warkentin | 6a7a6b4 | 2011-04-12 15:06:53 -0500 | [diff] [blame] | 1382 | if (card->quirks & MMC_QUIRK_INAND_CMD38) { |
| 1383 | err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, |
| 1384 | INAND_CMD38_ARG_EXT_CSD, |
| 1385 | INAND_CMD38_ARG_SECTRIM2, |
| 1386 | 0); |
| 1387 | if (err) |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1388 | goto out_retry; |
Andrei Warkentin | 6a7a6b4 | 2011-04-12 15:06:53 -0500 | [diff] [blame] | 1389 | } |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1390 | |
Adrian Hunter | 4980454 | 2010-08-11 14:17:50 -0700 | [diff] [blame] | 1391 | err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG); |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1392 | if (err == -EIO) |
| 1393 | goto out_retry; |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 1394 | if (err) { |
| 1395 | status = BLK_STS_IOERR; |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1396 | goto out; |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 1397 | } |
Andrei Warkentin | 6a7a6b4 | 2011-04-12 15:06:53 -0500 | [diff] [blame] | 1398 | } |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1399 | |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1400 | out_retry: |
| 1401 | if (err && !mmc_blk_reset(md, card->host, type)) |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1402 | goto retry; |
| 1403 | if (!err) |
| 1404 | mmc_blk_reset_success(md, type); |
Adrian Hunter | 2830281 | 2012-04-05 14:45:48 +0300 | [diff] [blame] | 1405 | out: |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 1406 | mmc_blk_end_request(req, status); |
Adrian Hunter | 4980454 | 2010-08-11 14:17:50 -0700 | [diff] [blame] | 1407 | } |
| 1408 | |
Linus Walleij | df06158 | 2017-01-24 11:17:57 +0100 | [diff] [blame] | 1409 | static void mmc_blk_issue_flush(struct mmc_queue *mq, struct request *req) |
Andrei Warkentin | f4c5522 | 2011-03-31 18:40:00 -0500 | [diff] [blame] | 1410 | { |
Linus Walleij | 7db3028 | 2016-11-18 13:36:15 +0100 | [diff] [blame] | 1411 | struct mmc_blk_data *md = mq->blkdata; |
Seungwon Jeon | 881d1c2 | 2011-10-14 14:03:21 +0900 | [diff] [blame] | 1412 | struct mmc_card *card = md->queue.card; |
| 1413 | int ret = 0; |
Andrei Warkentin | f4c5522 | 2011-03-31 18:40:00 -0500 | [diff] [blame] | 1414 | |
Seungwon Jeon | 881d1c2 | 2011-10-14 14:03:21 +0900 | [diff] [blame] | 1415 | ret = mmc_flush_cache(card); |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 1416 | mmc_blk_end_request(req, ret ? BLK_STS_IOERR : BLK_STS_OK); |
Andrei Warkentin | f4c5522 | 2011-03-31 18:40:00 -0500 | [diff] [blame] | 1417 | } |
| 1418 | |
| 1419 | /* |
| 1420 | * Reformat current write as a reliable write, supporting |
| 1421 | * both legacy and the enhanced reliable write MMC cards. |
| 1422 | * In each transfer we'll handle only as much as a single |
| 1423 | * reliable write can handle, thus finish the request in |
| 1424 | * partial completions. |
| 1425 | */ |
Andrei Warkentin | d0c97cf | 2011-05-23 15:06:36 -0500 | [diff] [blame] | 1426 | static inline void mmc_apply_rel_rw(struct mmc_blk_request *brq, |
| 1427 | struct mmc_card *card, |
| 1428 | struct request *req) |
Andrei Warkentin | f4c5522 | 2011-03-31 18:40:00 -0500 | [diff] [blame] | 1429 | { |
Andrei Warkentin | f4c5522 | 2011-03-31 18:40:00 -0500 | [diff] [blame] | 1430 | if (!(card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN)) { |
| 1431 | /* Legacy mode imposes restrictions on transfers. */ |
Adrian Hunter | 9cb38f7 | 2017-03-13 14:36:40 +0200 | [diff] [blame] | 1432 | if (!IS_ALIGNED(blk_rq_pos(req), card->ext_csd.rel_sectors)) |
Andrei Warkentin | f4c5522 | 2011-03-31 18:40:00 -0500 | [diff] [blame] | 1433 | brq->data.blocks = 1; |
| 1434 | |
| 1435 | if (brq->data.blocks > card->ext_csd.rel_sectors) |
| 1436 | brq->data.blocks = card->ext_csd.rel_sectors; |
| 1437 | else if (brq->data.blocks < card->ext_csd.rel_sectors) |
| 1438 | brq->data.blocks = 1; |
| 1439 | } |
Andrei Warkentin | f4c5522 | 2011-03-31 18:40:00 -0500 | [diff] [blame] | 1440 | } |
| 1441 | |
Russell King - ARM Linux | 4c2b8f2 | 2011-06-20 20:10:49 +0100 | [diff] [blame] | 1442 | #define CMD_ERRORS \ |
| 1443 | (R1_OUT_OF_RANGE | /* Command argument out of range */ \ |
| 1444 | R1_ADDRESS_ERROR | /* Misaligned address */ \ |
| 1445 | R1_BLOCK_LEN_ERROR | /* Transferred block length incorrect */\ |
| 1446 | R1_WP_VIOLATION | /* Tried to write to protected block */ \ |
Wolfram Sang | a04e6ba | 2017-04-08 22:20:05 +0200 | [diff] [blame] | 1447 | R1_CARD_ECC_FAILED | /* Card ECC failed */ \ |
Russell King - ARM Linux | 4c2b8f2 | 2011-06-20 20:10:49 +0100 | [diff] [blame] | 1448 | R1_CC_ERROR | /* Card controller error */ \ |
| 1449 | R1_ERROR) /* General/unknown error */ |
| 1450 | |
Shawn Lin | d83c2db | 2017-08-18 09:16:08 +0800 | [diff] [blame] | 1451 | static void mmc_blk_eval_resp_error(struct mmc_blk_request *brq) |
Wolfram Sang | a04e6ba | 2017-04-08 22:20:05 +0200 | [diff] [blame] | 1452 | { |
Shawn Lin | d83c2db | 2017-08-18 09:16:08 +0800 | [diff] [blame] | 1453 | u32 val; |
Wolfram Sang | a04e6ba | 2017-04-08 22:20:05 +0200 | [diff] [blame] | 1454 | |
Shawn Lin | d83c2db | 2017-08-18 09:16:08 +0800 | [diff] [blame] | 1455 | /* |
| 1456 | * Per the SD specification(physical layer version 4.10)[1], |
| 1457 | * section 4.3.3, it explicitly states that "When the last |
| 1458 | * block of user area is read using CMD18, the host should |
| 1459 | * ignore OUT_OF_RANGE error that may occur even the sequence |
| 1460 | * is correct". And JESD84-B51 for eMMC also has a similar |
| 1461 | * statement on section 6.8.3. |
| 1462 | * |
| 1463 | * Multiple block read/write could be done by either predefined |
| 1464 | * method, namely CMD23, or open-ending mode. For open-ending mode, |
| 1465 | * we should ignore the OUT_OF_RANGE error as it's normal behaviour. |
| 1466 | * |
| 1467 | * However the spec[1] doesn't tell us whether we should also |
| 1468 | * ignore that for predefined method. But per the spec[1], section |
| 1469 | * 4.15 Set Block Count Command, it says"If illegal block count |
| 1470 | * is set, out of range error will be indicated during read/write |
| 1471 | * operation (For example, data transfer is stopped at user area |
| 1472 | * boundary)." In another word, we could expect a out of range error |
| 1473 | * in the response for the following CMD18/25. And if argument of |
| 1474 | * CMD23 + the argument of CMD18/25 exceed the max number of blocks, |
| 1475 | * we could also expect to get a -ETIMEDOUT or any error number from |
| 1476 | * the host drivers due to missing data response(for write)/data(for |
| 1477 | * read), as the cards will stop the data transfer by itself per the |
| 1478 | * spec. So we only need to check R1_OUT_OF_RANGE for open-ending mode. |
| 1479 | */ |
| 1480 | |
| 1481 | if (!brq->stop.error) { |
| 1482 | bool oor_with_open_end; |
| 1483 | /* If there is no error yet, check R1 response */ |
| 1484 | |
| 1485 | val = brq->stop.resp[0] & CMD_ERRORS; |
| 1486 | oor_with_open_end = val & R1_OUT_OF_RANGE && !brq->mrq.sbc; |
| 1487 | |
| 1488 | if (val && !oor_with_open_end) |
| 1489 | brq->stop.error = -EIO; |
| 1490 | } |
Wolfram Sang | a04e6ba | 2017-04-08 22:20:05 +0200 | [diff] [blame] | 1491 | } |
| 1492 | |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 1493 | static enum mmc_blk_status __mmc_blk_err_check(struct mmc_card *card, |
| 1494 | struct mmc_queue_req *mq_mrq) |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 1495 | { |
Per Forlin | ee8a43a | 2011-07-01 18:55:33 +0200 | [diff] [blame] | 1496 | struct mmc_blk_request *brq = &mq_mrq->brq; |
Linus Walleij | 67e69d5 | 2017-05-19 15:37:27 +0200 | [diff] [blame] | 1497 | struct request *req = mmc_queue_req_to_req(mq_mrq); |
Adrian Hunter | b8360a4 | 2015-05-07 13:10:24 +0300 | [diff] [blame] | 1498 | int need_retune = card->host->need_retune; |
Linus Walleij | 2cc6458 | 2016-11-04 11:05:18 +0100 | [diff] [blame] | 1499 | bool ecc_err = false; |
Linus Walleij | c44d6ce | 2016-11-04 11:05:17 +0100 | [diff] [blame] | 1500 | bool gen_err = false; |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 1501 | |
| 1502 | /* |
| 1503 | * sbc.error indicates a problem with the set block count |
| 1504 | * command. No data will have been transferred. |
| 1505 | * |
| 1506 | * cmd.error indicates a problem with the r/w command. No |
| 1507 | * data will have been transferred. |
| 1508 | * |
| 1509 | * stop.error indicates a problem with the stop command. Data |
| 1510 | * may have been transferred, or may still be transferring. |
| 1511 | */ |
Shawn Lin | d83c2db | 2017-08-18 09:16:08 +0800 | [diff] [blame] | 1512 | |
| 1513 | mmc_blk_eval_resp_error(brq); |
| 1514 | |
| 1515 | if (brq->sbc.error || brq->cmd.error || |
| 1516 | brq->stop.error || brq->data.error) { |
KOBAYASHI Yoshitake | c876006 | 2013-07-07 07:35:45 +0900 | [diff] [blame] | 1517 | switch (mmc_blk_cmd_recovery(card, req, brq, &ecc_err, &gen_err)) { |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 1518 | case ERR_RETRY: |
| 1519 | return MMC_BLK_RETRY; |
| 1520 | case ERR_ABORT: |
| 1521 | return MMC_BLK_ABORT; |
Sujit Reddy Thumma | a8ad82cc | 2011-12-08 14:05:50 +0530 | [diff] [blame] | 1522 | case ERR_NOMEDIUM: |
| 1523 | return MMC_BLK_NOMEDIUM; |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 1524 | case ERR_CONTINUE: |
| 1525 | break; |
| 1526 | } |
| 1527 | } |
| 1528 | |
| 1529 | /* |
| 1530 | * Check for errors relating to the execution of the |
| 1531 | * initial command - such as address errors. No data |
| 1532 | * has been transferred. |
| 1533 | */ |
| 1534 | if (brq->cmd.resp[0] & CMD_ERRORS) { |
| 1535 | pr_err("%s: r/w command failed, status = %#x\n", |
| 1536 | req->rq_disk->disk_name, brq->cmd.resp[0]); |
| 1537 | return MMC_BLK_ABORT; |
| 1538 | } |
| 1539 | |
| 1540 | /* |
| 1541 | * Everything else is either success, or a data error of some |
| 1542 | * kind. If it was a write, we may have transitioned to |
| 1543 | * program mode, which we have to wait for it to complete. |
| 1544 | */ |
| 1545 | if (!mmc_host_is_spi(card->host) && rq_data_dir(req) != READ) { |
Ulf Hansson | c49433f | 2014-01-29 11:01:55 +0100 | [diff] [blame] | 1546 | int err; |
Trey Ramsay | 8fee476 | 2012-11-16 09:31:41 -0600 | [diff] [blame] | 1547 | |
KOBAYASHI Yoshitake | c876006 | 2013-07-07 07:35:45 +0900 | [diff] [blame] | 1548 | /* Check stop command response */ |
| 1549 | if (brq->stop.resp[0] & R1_ERROR) { |
| 1550 | pr_err("%s: %s: general error sending stop command, stop cmd response %#x\n", |
| 1551 | req->rq_disk->disk_name, __func__, |
| 1552 | brq->stop.resp[0]); |
Linus Walleij | c44d6ce | 2016-11-04 11:05:17 +0100 | [diff] [blame] | 1553 | gen_err = true; |
KOBAYASHI Yoshitake | c876006 | 2013-07-07 07:35:45 +0900 | [diff] [blame] | 1554 | } |
| 1555 | |
Ulf Hansson | 95a9129 | 2014-01-29 13:11:27 +0100 | [diff] [blame] | 1556 | err = card_busy_detect(card, MMC_BLK_TIMEOUT_MS, false, req, |
| 1557 | &gen_err); |
Ulf Hansson | c49433f | 2014-01-29 11:01:55 +0100 | [diff] [blame] | 1558 | if (err) |
| 1559 | return MMC_BLK_CMD_ERR; |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 1560 | } |
| 1561 | |
KOBAYASHI Yoshitake | c876006 | 2013-07-07 07:35:45 +0900 | [diff] [blame] | 1562 | /* if general error occurs, retry the write operation. */ |
| 1563 | if (gen_err) { |
| 1564 | pr_warn("%s: retrying write for general error\n", |
| 1565 | req->rq_disk->disk_name); |
| 1566 | return MMC_BLK_RETRY; |
| 1567 | } |
| 1568 | |
Wolfram Sang | 9820a5b | 2017-04-08 22:20:06 +0200 | [diff] [blame] | 1569 | /* Some errors (ECC) are flagged on the next commmand, so check stop, too */ |
| 1570 | if (brq->data.error || brq->stop.error) { |
Adrian Hunter | b8360a4 | 2015-05-07 13:10:24 +0300 | [diff] [blame] | 1571 | if (need_retune && !brq->retune_retry_done) { |
Russell King | 09faf61 | 2016-01-29 09:44:00 +0000 | [diff] [blame] | 1572 | pr_debug("%s: retrying because a re-tune was needed\n", |
| 1573 | req->rq_disk->disk_name); |
Adrian Hunter | b8360a4 | 2015-05-07 13:10:24 +0300 | [diff] [blame] | 1574 | brq->retune_retry_done = 1; |
| 1575 | return MMC_BLK_RETRY; |
| 1576 | } |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 1577 | pr_err("%s: error %d transferring data, sector %u, nr %u, cmd response %#x, card status %#x\n", |
Wolfram Sang | 9820a5b | 2017-04-08 22:20:06 +0200 | [diff] [blame] | 1578 | req->rq_disk->disk_name, brq->data.error ?: brq->stop.error, |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 1579 | (unsigned)blk_rq_pos(req), |
| 1580 | (unsigned)blk_rq_sectors(req), |
| 1581 | brq->cmd.resp[0], brq->stop.resp[0]); |
| 1582 | |
| 1583 | if (rq_data_dir(req) == READ) { |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1584 | if (ecc_err) |
| 1585 | return MMC_BLK_ECC_ERR; |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 1586 | return MMC_BLK_DATA_ERR; |
| 1587 | } else { |
| 1588 | return MMC_BLK_CMD_ERR; |
| 1589 | } |
| 1590 | } |
| 1591 | |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1592 | if (!brq->data.bytes_xfered) |
| 1593 | return MMC_BLK_RETRY; |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 1594 | |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 1595 | if (blk_rq_bytes(req) != brq->data.bytes_xfered) |
| 1596 | return MMC_BLK_PARTIAL; |
| 1597 | |
| 1598 | return MMC_BLK_SUCCESS; |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 1599 | } |
| 1600 | |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 1601 | static enum mmc_blk_status mmc_blk_err_check(struct mmc_card *card, |
| 1602 | struct mmc_async_req *areq) |
| 1603 | { |
| 1604 | struct mmc_queue_req *mq_mrq = container_of(areq, struct mmc_queue_req, |
| 1605 | areq); |
| 1606 | |
| 1607 | return __mmc_blk_err_check(card, mq_mrq); |
| 1608 | } |
| 1609 | |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1610 | static void mmc_blk_data_prep(struct mmc_queue *mq, struct mmc_queue_req *mqrq, |
Adrian Hunter | d3377c0 | 2017-09-22 15:36:55 +0300 | [diff] [blame] | 1611 | int disable_multi, bool *do_rel_wr_p, |
| 1612 | bool *do_data_tag_p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | { |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1614 | struct mmc_blk_data *md = mq->blkdata; |
| 1615 | struct mmc_card *card = md->queue.card; |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1616 | struct mmc_blk_request *brq = &mqrq->brq; |
Linus Walleij | 67e69d5 | 2017-05-19 15:37:27 +0200 | [diff] [blame] | 1617 | struct request *req = mmc_queue_req_to_req(mqrq); |
Adrian Hunter | d3377c0 | 2017-09-22 15:36:55 +0300 | [diff] [blame] | 1618 | bool do_rel_wr, do_data_tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | |
Andrei Warkentin | f4c5522 | 2011-03-31 18:40:00 -0500 | [diff] [blame] | 1620 | /* |
| 1621 | * Reliable writes are used to implement Forced Unit Access and |
Luca Porzio | d3df046 | 2015-11-06 15:12:26 +0000 | [diff] [blame] | 1622 | * are supported only on MMCs. |
Andrei Warkentin | f4c5522 | 2011-03-31 18:40:00 -0500 | [diff] [blame] | 1623 | */ |
Adrian Hunter | d3377c0 | 2017-09-22 15:36:55 +0300 | [diff] [blame] | 1624 | do_rel_wr = (req->cmd_flags & REQ_FUA) && |
| 1625 | rq_data_dir(req) == WRITE && |
| 1626 | (md->flags & MMC_BLK_REL_WR); |
Andrei Warkentin | f4c5522 | 2011-03-31 18:40:00 -0500 | [diff] [blame] | 1627 | |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1628 | memset(brq, 0, sizeof(struct mmc_blk_request)); |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1629 | |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1630 | brq->mrq.data = &brq->data; |
Adrian Hunter | 93482b3 | 2017-09-22 15:36:56 +0300 | [diff] [blame] | 1631 | brq->mrq.tag = req->tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1633 | brq->stop.opcode = MMC_STOP_TRANSMISSION; |
| 1634 | brq->stop.arg = 0; |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1635 | |
| 1636 | if (rq_data_dir(req) == READ) { |
| 1637 | brq->data.flags = MMC_DATA_READ; |
| 1638 | brq->stop.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC; |
| 1639 | } else { |
| 1640 | brq->data.flags = MMC_DATA_WRITE; |
| 1641 | brq->stop.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC; |
| 1642 | } |
| 1643 | |
| 1644 | brq->data.blksz = 512; |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1645 | brq->data.blocks = blk_rq_sectors(req); |
Adrian Hunter | 93482b3 | 2017-09-22 15:36:56 +0300 | [diff] [blame] | 1646 | brq->data.blk_addr = blk_rq_pos(req); |
| 1647 | |
| 1648 | /* |
| 1649 | * The command queue supports 2 priorities: "high" (1) and "simple" (0). |
| 1650 | * The eMMC will give "high" priority tasks priority over "simple" |
| 1651 | * priority tasks. Here we always set "simple" priority by not setting |
| 1652 | * MMC_DATA_PRIO. |
| 1653 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1655 | /* |
| 1656 | * The block layer doesn't support all sector count |
| 1657 | * restrictions, so we need to be prepared for too big |
| 1658 | * requests. |
| 1659 | */ |
| 1660 | if (brq->data.blocks > card->host->max_blk_count) |
| 1661 | brq->data.blocks = card->host->max_blk_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | |
Paul Walmsley | 2bf22b3 | 2011-10-06 14:50:33 -0600 | [diff] [blame] | 1663 | if (brq->data.blocks > 1) { |
| 1664 | /* |
| 1665 | * After a read error, we redo the request one sector |
| 1666 | * at a time in order to accurately determine which |
| 1667 | * sectors can be read successfully. |
| 1668 | */ |
| 1669 | if (disable_multi) |
| 1670 | brq->data.blocks = 1; |
| 1671 | |
Kuninori Morimoto | 2e47e84 | 2014-09-02 19:08:53 -0700 | [diff] [blame] | 1672 | /* |
| 1673 | * Some controllers have HW issues while operating |
| 1674 | * in multiple I/O mode |
| 1675 | */ |
| 1676 | if (card->host->ops->multi_io_quirk) |
| 1677 | brq->data.blocks = card->host->ops->multi_io_quirk(card, |
| 1678 | (rq_data_dir(req) == READ) ? |
| 1679 | MMC_DATA_READ : MMC_DATA_WRITE, |
| 1680 | brq->data.blocks); |
Paul Walmsley | 2bf22b3 | 2011-10-06 14:50:33 -0600 | [diff] [blame] | 1681 | } |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1682 | |
Adrian Hunter | 93482b3 | 2017-09-22 15:36:56 +0300 | [diff] [blame] | 1683 | if (do_rel_wr) { |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1684 | mmc_apply_rel_rw(brq, card, req); |
Adrian Hunter | 93482b3 | 2017-09-22 15:36:56 +0300 | [diff] [blame] | 1685 | brq->data.flags |= MMC_DATA_REL_WR; |
| 1686 | } |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1687 | |
| 1688 | /* |
| 1689 | * Data tag is used only during writing meta data to speed |
| 1690 | * up write and any subsequent read of this meta data |
| 1691 | */ |
Adrian Hunter | d3377c0 | 2017-09-22 15:36:55 +0300 | [diff] [blame] | 1692 | do_data_tag = card->ext_csd.data_tag_unit_size && |
| 1693 | (req->cmd_flags & REQ_META) && |
| 1694 | (rq_data_dir(req) == WRITE) && |
| 1695 | ((brq->data.blocks * brq->data.blksz) >= |
| 1696 | card->ext_csd.data_tag_unit_size); |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1697 | |
Adrian Hunter | 93482b3 | 2017-09-22 15:36:56 +0300 | [diff] [blame] | 1698 | if (do_data_tag) |
| 1699 | brq->data.flags |= MMC_DATA_DAT_TAG; |
| 1700 | |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1701 | mmc_set_data_timeout(&brq->data, card); |
| 1702 | |
| 1703 | brq->data.sg = mqrq->sg; |
| 1704 | brq->data.sg_len = mmc_queue_map_sg(mq, mqrq); |
| 1705 | |
| 1706 | /* |
| 1707 | * Adjust the sg list so it is the same size as the |
| 1708 | * request. |
| 1709 | */ |
| 1710 | if (brq->data.blocks != blk_rq_sectors(req)) { |
| 1711 | int i, data_size = brq->data.blocks << 9; |
| 1712 | struct scatterlist *sg; |
| 1713 | |
| 1714 | for_each_sg(brq->data.sg, sg, brq->data.sg_len, i) { |
| 1715 | data_size -= sg->length; |
| 1716 | if (data_size <= 0) { |
| 1717 | sg->length += data_size; |
| 1718 | i++; |
| 1719 | break; |
| 1720 | } |
| 1721 | } |
| 1722 | brq->data.sg_len = i; |
| 1723 | } |
| 1724 | |
| 1725 | mqrq->areq.mrq = &brq->mrq; |
Adrian Hunter | d3377c0 | 2017-09-22 15:36:55 +0300 | [diff] [blame] | 1726 | |
| 1727 | if (do_rel_wr_p) |
| 1728 | *do_rel_wr_p = do_rel_wr; |
| 1729 | |
| 1730 | if (do_data_tag_p) |
| 1731 | *do_data_tag_p = do_data_tag; |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1732 | } |
| 1733 | |
Adrian Hunter | 1e8e55b | 2017-11-29 15:41:04 +0200 | [diff] [blame] | 1734 | #define MMC_CQE_RETRIES 2 |
| 1735 | |
| 1736 | static void mmc_blk_cqe_complete_rq(struct mmc_queue *mq, struct request *req) |
| 1737 | { |
| 1738 | struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req); |
| 1739 | struct mmc_request *mrq = &mqrq->brq.mrq; |
| 1740 | struct request_queue *q = req->q; |
| 1741 | struct mmc_host *host = mq->card->host; |
| 1742 | unsigned long flags; |
| 1743 | bool put_card; |
| 1744 | int err; |
| 1745 | |
| 1746 | mmc_cqe_post_req(host, mrq); |
| 1747 | |
| 1748 | if (mrq->cmd && mrq->cmd->error) |
| 1749 | err = mrq->cmd->error; |
| 1750 | else if (mrq->data && mrq->data->error) |
| 1751 | err = mrq->data->error; |
| 1752 | else |
| 1753 | err = 0; |
| 1754 | |
| 1755 | if (err) { |
| 1756 | if (mqrq->retries++ < MMC_CQE_RETRIES) |
| 1757 | blk_mq_requeue_request(req, true); |
| 1758 | else |
| 1759 | blk_mq_end_request(req, BLK_STS_IOERR); |
| 1760 | } else if (mrq->data) { |
| 1761 | if (blk_update_request(req, BLK_STS_OK, mrq->data->bytes_xfered)) |
| 1762 | blk_mq_requeue_request(req, true); |
| 1763 | else |
| 1764 | __blk_mq_end_request(req, BLK_STS_OK); |
| 1765 | } else { |
| 1766 | blk_mq_end_request(req, BLK_STS_OK); |
| 1767 | } |
| 1768 | |
| 1769 | spin_lock_irqsave(q->queue_lock, flags); |
| 1770 | |
| 1771 | mq->in_flight[mmc_issue_type(mq, req)] -= 1; |
| 1772 | |
| 1773 | put_card = (mmc_tot_in_flight(mq) == 0); |
| 1774 | |
| 1775 | mmc_cqe_check_busy(mq); |
| 1776 | |
| 1777 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 1778 | |
| 1779 | if (!mq->cqe_busy) |
| 1780 | blk_mq_run_hw_queues(q, true); |
| 1781 | |
| 1782 | if (put_card) |
| 1783 | mmc_put_card(mq->card, &mq->ctx); |
| 1784 | } |
| 1785 | |
| 1786 | void mmc_blk_cqe_recovery(struct mmc_queue *mq) |
| 1787 | { |
| 1788 | struct mmc_card *card = mq->card; |
| 1789 | struct mmc_host *host = card->host; |
| 1790 | int err; |
| 1791 | |
| 1792 | pr_debug("%s: CQE recovery start\n", mmc_hostname(host)); |
| 1793 | |
| 1794 | err = mmc_cqe_recovery(host); |
| 1795 | if (err) |
| 1796 | mmc_blk_reset(mq->blkdata, host, MMC_BLK_CQE_RECOVERY); |
| 1797 | else |
| 1798 | mmc_blk_reset_success(mq->blkdata, MMC_BLK_CQE_RECOVERY); |
| 1799 | |
| 1800 | pr_debug("%s: CQE recovery done\n", mmc_hostname(host)); |
| 1801 | } |
| 1802 | |
| 1803 | static void mmc_blk_cqe_req_done(struct mmc_request *mrq) |
| 1804 | { |
| 1805 | struct mmc_queue_req *mqrq = container_of(mrq, struct mmc_queue_req, |
| 1806 | brq.mrq); |
| 1807 | struct request *req = mmc_queue_req_to_req(mqrq); |
| 1808 | struct request_queue *q = req->q; |
| 1809 | struct mmc_queue *mq = q->queuedata; |
| 1810 | |
| 1811 | /* |
| 1812 | * Block layer timeouts race with completions which means the normal |
| 1813 | * completion path cannot be used during recovery. |
| 1814 | */ |
| 1815 | if (mq->in_recovery) |
| 1816 | mmc_blk_cqe_complete_rq(mq, req); |
| 1817 | else |
| 1818 | blk_mq_complete_request(req); |
| 1819 | } |
| 1820 | |
| 1821 | static int mmc_blk_cqe_start_req(struct mmc_host *host, struct mmc_request *mrq) |
| 1822 | { |
| 1823 | mrq->done = mmc_blk_cqe_req_done; |
| 1824 | mrq->recovery_notifier = mmc_cqe_recovery_notifier; |
| 1825 | |
| 1826 | return mmc_cqe_start_req(host, mrq); |
| 1827 | } |
| 1828 | |
| 1829 | static struct mmc_request *mmc_blk_cqe_prep_dcmd(struct mmc_queue_req *mqrq, |
| 1830 | struct request *req) |
| 1831 | { |
| 1832 | struct mmc_blk_request *brq = &mqrq->brq; |
| 1833 | |
| 1834 | memset(brq, 0, sizeof(*brq)); |
| 1835 | |
| 1836 | brq->mrq.cmd = &brq->cmd; |
| 1837 | brq->mrq.tag = req->tag; |
| 1838 | |
| 1839 | return &brq->mrq; |
| 1840 | } |
| 1841 | |
| 1842 | static int mmc_blk_cqe_issue_flush(struct mmc_queue *mq, struct request *req) |
| 1843 | { |
| 1844 | struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req); |
| 1845 | struct mmc_request *mrq = mmc_blk_cqe_prep_dcmd(mqrq, req); |
| 1846 | |
| 1847 | mrq->cmd->opcode = MMC_SWITCH; |
| 1848 | mrq->cmd->arg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) | |
| 1849 | (EXT_CSD_FLUSH_CACHE << 16) | |
| 1850 | (1 << 8) | |
| 1851 | EXT_CSD_CMD_SET_NORMAL; |
| 1852 | mrq->cmd->flags = MMC_CMD_AC | MMC_RSP_R1B; |
| 1853 | |
| 1854 | return mmc_blk_cqe_start_req(mq->card->host, mrq); |
| 1855 | } |
| 1856 | |
| 1857 | static int mmc_blk_cqe_issue_rw_rq(struct mmc_queue *mq, struct request *req) |
| 1858 | { |
| 1859 | struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req); |
| 1860 | |
| 1861 | mmc_blk_data_prep(mq, mqrq, 0, NULL, NULL); |
| 1862 | |
| 1863 | return mmc_blk_cqe_start_req(mq->card->host, &mqrq->brq.mrq); |
| 1864 | } |
| 1865 | |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1866 | static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq, |
| 1867 | struct mmc_card *card, |
| 1868 | int disable_multi, |
| 1869 | struct mmc_queue *mq) |
| 1870 | { |
| 1871 | u32 readcmd, writecmd; |
| 1872 | struct mmc_blk_request *brq = &mqrq->brq; |
Linus Walleij | 67e69d5 | 2017-05-19 15:37:27 +0200 | [diff] [blame] | 1873 | struct request *req = mmc_queue_req_to_req(mqrq); |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1874 | struct mmc_blk_data *md = mq->blkdata; |
| 1875 | bool do_rel_wr, do_data_tag; |
| 1876 | |
| 1877 | mmc_blk_data_prep(mq, mqrq, disable_multi, &do_rel_wr, &do_data_tag); |
| 1878 | |
| 1879 | brq->mrq.cmd = &brq->cmd; |
| 1880 | |
| 1881 | brq->cmd.arg = blk_rq_pos(req); |
| 1882 | if (!mmc_card_blockaddr(card)) |
| 1883 | brq->cmd.arg <<= 9; |
| 1884 | brq->cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC; |
| 1885 | |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1886 | if (brq->data.blocks > 1 || do_rel_wr) { |
| 1887 | /* SPI multiblock writes terminate using a special |
| 1888 | * token, not a STOP_TRANSMISSION request. |
Pierre Ossman | 548d2de | 2009-04-10 17:52:57 +0200 | [diff] [blame] | 1889 | */ |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1890 | if (!mmc_host_is_spi(card->host) || |
| 1891 | rq_data_dir(req) == READ) |
| 1892 | brq->mrq.stop = &brq->stop; |
| 1893 | readcmd = MMC_READ_MULTIPLE_BLOCK; |
| 1894 | writecmd = MMC_WRITE_MULTIPLE_BLOCK; |
| 1895 | } else { |
| 1896 | brq->mrq.stop = NULL; |
| 1897 | readcmd = MMC_READ_SINGLE_BLOCK; |
| 1898 | writecmd = MMC_WRITE_BLOCK; |
| 1899 | } |
Adrian Hunter | ca5717f | 2017-03-13 14:36:41 +0200 | [diff] [blame] | 1900 | brq->cmd.opcode = rq_data_dir(req) == READ ? readcmd : writecmd; |
Saugata Das | 4265900 | 2011-12-21 13:09:17 +0530 | [diff] [blame] | 1901 | |
| 1902 | /* |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1903 | * Pre-defined multi-block transfers are preferable to |
| 1904 | * open ended-ones (and necessary for reliable writes). |
| 1905 | * However, it is not sufficient to just send CMD23, |
| 1906 | * and avoid the final CMD12, as on an error condition |
| 1907 | * CMD12 (stop) needs to be sent anyway. This, coupled |
| 1908 | * with Auto-CMD23 enhancements provided by some |
| 1909 | * hosts, means that the complexity of dealing |
| 1910 | * with this is best left to the host. If CMD23 is |
| 1911 | * supported by card and host, we'll fill sbc in and let |
| 1912 | * the host deal with handling it correctly. This means |
| 1913 | * that for hosts that don't expose MMC_CAP_CMD23, no |
| 1914 | * change of behavior will be observed. |
| 1915 | * |
| 1916 | * N.B: Some MMC cards experience perf degradation. |
| 1917 | * We'll avoid using CMD23-bounded multiblock writes for |
| 1918 | * these, while retaining features like reliable writes. |
| 1919 | */ |
Saugata Das | 4265900 | 2011-12-21 13:09:17 +0530 | [diff] [blame] | 1920 | if ((md->flags & MMC_BLK_CMD23) && mmc_op_multi(brq->cmd.opcode) && |
| 1921 | (do_rel_wr || !(card->quirks & MMC_QUIRK_BLK_NO_CMD23) || |
| 1922 | do_data_tag)) { |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1923 | brq->sbc.opcode = MMC_SET_BLOCK_COUNT; |
| 1924 | brq->sbc.arg = brq->data.blocks | |
Saugata Das | 4265900 | 2011-12-21 13:09:17 +0530 | [diff] [blame] | 1925 | (do_rel_wr ? (1 << 31) : 0) | |
| 1926 | (do_data_tag ? (1 << 29) : 0); |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1927 | brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC; |
| 1928 | brq->mrq.sbc = &brq->sbc; |
| 1929 | } |
Andrei Warkentin | d0c97cf | 2011-05-23 15:06:36 -0500 | [diff] [blame] | 1930 | |
Linus Walleij | 74f5ba3 | 2017-02-01 13:47:55 +0100 | [diff] [blame] | 1931 | mqrq->areq.err_check = mmc_blk_err_check; |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 1932 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 1934 | #define MMC_MAX_RETRIES 5 |
| 1935 | #define MMC_NO_RETRIES (MMC_MAX_RETRIES + 1) |
| 1936 | |
| 1937 | #define MMC_READ_SINGLE_RETRIES 2 |
| 1938 | |
| 1939 | /* Single sector read during recovery */ |
| 1940 | static void mmc_blk_read_single(struct mmc_queue *mq, struct request *req) |
| 1941 | { |
| 1942 | struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req); |
| 1943 | struct mmc_request *mrq = &mqrq->brq.mrq; |
| 1944 | struct mmc_card *card = mq->card; |
| 1945 | struct mmc_host *host = card->host; |
| 1946 | blk_status_t error = BLK_STS_OK; |
| 1947 | int retries = 0; |
| 1948 | |
| 1949 | do { |
| 1950 | u32 status; |
| 1951 | int err; |
| 1952 | |
| 1953 | mmc_blk_rw_rq_prep(mqrq, card, 1, mq); |
| 1954 | |
| 1955 | mmc_wait_for_req(host, mrq); |
| 1956 | |
| 1957 | err = mmc_send_status(card, &status); |
| 1958 | if (err) |
| 1959 | goto error_exit; |
| 1960 | |
| 1961 | if (!mmc_host_is_spi(host) && |
| 1962 | R1_CURRENT_STATE(status) != R1_STATE_TRAN) { |
| 1963 | u32 stop_status = 0; |
| 1964 | bool gen_err = false; |
| 1965 | |
| 1966 | err = send_stop(card, |
| 1967 | DIV_ROUND_UP(mrq->data->timeout_ns, |
| 1968 | 1000000), |
| 1969 | req, &gen_err, &stop_status); |
| 1970 | if (err) |
| 1971 | goto error_exit; |
| 1972 | } |
| 1973 | |
| 1974 | if (mrq->cmd->error && retries++ < MMC_READ_SINGLE_RETRIES) |
| 1975 | continue; |
| 1976 | |
| 1977 | retries = 0; |
| 1978 | |
| 1979 | if (mrq->cmd->error || |
| 1980 | mrq->data->error || |
| 1981 | (!mmc_host_is_spi(host) && |
| 1982 | (mrq->cmd->resp[0] & CMD_ERRORS || status & CMD_ERRORS))) |
| 1983 | error = BLK_STS_IOERR; |
| 1984 | else |
| 1985 | error = BLK_STS_OK; |
| 1986 | |
| 1987 | } while (blk_update_request(req, error, 512)); |
| 1988 | |
| 1989 | return; |
| 1990 | |
| 1991 | error_exit: |
| 1992 | mrq->data->bytes_xfered = 0; |
| 1993 | blk_update_request(req, BLK_STS_IOERR, 512); |
| 1994 | /* Let it try the remaining request again */ |
| 1995 | if (mqrq->retries > MMC_MAX_RETRIES - 1) |
| 1996 | mqrq->retries = MMC_MAX_RETRIES - 1; |
| 1997 | } |
| 1998 | |
| 1999 | static void mmc_blk_mq_rw_recovery(struct mmc_queue *mq, struct request *req) |
| 2000 | { |
| 2001 | int type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE; |
| 2002 | struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req); |
| 2003 | struct mmc_blk_request *brq = &mqrq->brq; |
| 2004 | struct mmc_blk_data *md = mq->blkdata; |
| 2005 | struct mmc_card *card = mq->card; |
| 2006 | static enum mmc_blk_status status; |
| 2007 | |
| 2008 | brq->retune_retry_done = mqrq->retries; |
| 2009 | |
| 2010 | status = __mmc_blk_err_check(card, mqrq); |
| 2011 | |
| 2012 | mmc_retune_release(card->host); |
| 2013 | |
| 2014 | /* |
| 2015 | * Requests are completed by mmc_blk_mq_complete_rq() which sets simple |
| 2016 | * policy: |
| 2017 | * 1. A request that has transferred at least some data is considered |
| 2018 | * successful and will be requeued if there is remaining data to |
| 2019 | * transfer. |
| 2020 | * 2. Otherwise the number of retries is incremented and the request |
| 2021 | * will be requeued if there are remaining retries. |
| 2022 | * 3. Otherwise the request will be errored out. |
| 2023 | * That means mmc_blk_mq_complete_rq() is controlled by bytes_xfered and |
| 2024 | * mqrq->retries. So there are only 4 possible actions here: |
| 2025 | * 1. do not accept the bytes_xfered value i.e. set it to zero |
| 2026 | * 2. change mqrq->retries to determine the number of retries |
| 2027 | * 3. try to reset the card |
| 2028 | * 4. read one sector at a time |
| 2029 | */ |
| 2030 | switch (status) { |
| 2031 | case MMC_BLK_SUCCESS: |
| 2032 | case MMC_BLK_PARTIAL: |
| 2033 | /* Reset success, and accept bytes_xfered */ |
| 2034 | mmc_blk_reset_success(md, type); |
| 2035 | break; |
| 2036 | case MMC_BLK_CMD_ERR: |
| 2037 | /* |
| 2038 | * For SD cards, get bytes written, but do not accept |
| 2039 | * bytes_xfered if that fails. For MMC cards accept |
| 2040 | * bytes_xfered. Then try to reset. If reset fails then |
| 2041 | * error out the remaining request, otherwise retry |
| 2042 | * once (N.B mmc_blk_reset() will not succeed twice in a |
| 2043 | * row). |
| 2044 | */ |
| 2045 | if (mmc_card_sd(card)) { |
| 2046 | u32 blocks; |
| 2047 | int err; |
| 2048 | |
| 2049 | err = mmc_sd_num_wr_blocks(card, &blocks); |
| 2050 | if (err) |
| 2051 | brq->data.bytes_xfered = 0; |
| 2052 | else |
| 2053 | brq->data.bytes_xfered = blocks << 9; |
| 2054 | } |
| 2055 | if (mmc_blk_reset(md, card->host, type)) |
| 2056 | mqrq->retries = MMC_NO_RETRIES; |
| 2057 | else |
| 2058 | mqrq->retries = MMC_MAX_RETRIES - 1; |
| 2059 | break; |
| 2060 | case MMC_BLK_RETRY: |
| 2061 | /* |
| 2062 | * Do not accept bytes_xfered, but retry up to 5 times, |
| 2063 | * otherwise same as abort. |
| 2064 | */ |
| 2065 | brq->data.bytes_xfered = 0; |
| 2066 | if (mqrq->retries < MMC_MAX_RETRIES) |
| 2067 | break; |
| 2068 | /* Fall through */ |
| 2069 | case MMC_BLK_ABORT: |
| 2070 | /* |
| 2071 | * Do not accept bytes_xfered, but try to reset. If |
| 2072 | * reset succeeds, try once more, otherwise error out |
| 2073 | * the request. |
| 2074 | */ |
| 2075 | brq->data.bytes_xfered = 0; |
| 2076 | if (mmc_blk_reset(md, card->host, type)) |
| 2077 | mqrq->retries = MMC_NO_RETRIES; |
| 2078 | else |
| 2079 | mqrq->retries = MMC_MAX_RETRIES - 1; |
| 2080 | break; |
| 2081 | case MMC_BLK_DATA_ERR: { |
| 2082 | int err; |
| 2083 | |
| 2084 | /* |
| 2085 | * Do not accept bytes_xfered, but try to reset. If |
| 2086 | * reset succeeds, try once more. If reset fails with |
| 2087 | * ENODEV which means the partition is wrong, then error |
| 2088 | * out the request. Otherwise attempt to read one sector |
| 2089 | * at a time. |
| 2090 | */ |
| 2091 | brq->data.bytes_xfered = 0; |
| 2092 | err = mmc_blk_reset(md, card->host, type); |
| 2093 | if (!err) { |
| 2094 | mqrq->retries = MMC_MAX_RETRIES - 1; |
| 2095 | break; |
| 2096 | } |
| 2097 | if (err == -ENODEV) { |
| 2098 | mqrq->retries = MMC_NO_RETRIES; |
| 2099 | break; |
| 2100 | } |
| 2101 | /* Fall through */ |
| 2102 | } |
| 2103 | case MMC_BLK_ECC_ERR: |
| 2104 | /* |
| 2105 | * Do not accept bytes_xfered. If reading more than one |
| 2106 | * sector, try reading one sector at a time. |
| 2107 | */ |
| 2108 | brq->data.bytes_xfered = 0; |
| 2109 | /* FIXME: Missing single sector read for large sector size */ |
| 2110 | if (brq->data.blocks > 1 && !mmc_large_sector(card)) { |
| 2111 | /* Redo read one sector at a time */ |
| 2112 | pr_warn("%s: retrying using single block read\n", |
| 2113 | req->rq_disk->disk_name); |
| 2114 | mmc_blk_read_single(mq, req); |
| 2115 | } else { |
| 2116 | mqrq->retries = MMC_NO_RETRIES; |
| 2117 | } |
| 2118 | break; |
| 2119 | case MMC_BLK_NOMEDIUM: |
| 2120 | /* Do not accept bytes_xfered. Error out the request */ |
| 2121 | brq->data.bytes_xfered = 0; |
| 2122 | mqrq->retries = MMC_NO_RETRIES; |
| 2123 | break; |
| 2124 | default: |
| 2125 | /* Do not accept bytes_xfered. Error out the request */ |
| 2126 | brq->data.bytes_xfered = 0; |
| 2127 | mqrq->retries = MMC_NO_RETRIES; |
| 2128 | pr_err("%s: Unhandled return value (%d)", |
| 2129 | req->rq_disk->disk_name, status); |
| 2130 | break; |
| 2131 | } |
| 2132 | } |
| 2133 | |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2134 | static inline bool mmc_blk_rq_error(struct mmc_blk_request *brq) |
| 2135 | { |
| 2136 | mmc_blk_eval_resp_error(brq); |
| 2137 | |
| 2138 | return brq->sbc.error || brq->cmd.error || brq->stop.error || |
| 2139 | brq->data.error || brq->cmd.resp[0] & CMD_ERRORS; |
| 2140 | } |
| 2141 | |
| 2142 | static inline void mmc_blk_rw_reset_success(struct mmc_queue *mq, |
| 2143 | struct request *req) |
| 2144 | { |
| 2145 | int type = rq_data_dir(req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE; |
| 2146 | |
| 2147 | mmc_blk_reset_success(mq->blkdata, type); |
| 2148 | } |
| 2149 | |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2150 | static void mmc_blk_mq_complete_rq(struct mmc_queue *mq, struct request *req) |
| 2151 | { |
| 2152 | struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req); |
| 2153 | unsigned int nr_bytes = mqrq->brq.data.bytes_xfered; |
| 2154 | |
| 2155 | if (nr_bytes) { |
| 2156 | if (blk_update_request(req, BLK_STS_OK, nr_bytes)) |
| 2157 | blk_mq_requeue_request(req, true); |
| 2158 | else |
| 2159 | __blk_mq_end_request(req, BLK_STS_OK); |
| 2160 | } else if (!blk_rq_bytes(req)) { |
| 2161 | __blk_mq_end_request(req, BLK_STS_IOERR); |
| 2162 | } else if (mqrq->retries++ < MMC_MAX_RETRIES) { |
| 2163 | blk_mq_requeue_request(req, true); |
| 2164 | } else { |
| 2165 | if (mmc_card_removed(mq->card)) |
| 2166 | req->rq_flags |= RQF_QUIET; |
| 2167 | blk_mq_end_request(req, BLK_STS_IOERR); |
| 2168 | } |
| 2169 | } |
| 2170 | |
| 2171 | static bool mmc_blk_urgent_bkops_needed(struct mmc_queue *mq, |
| 2172 | struct mmc_queue_req *mqrq) |
| 2173 | { |
| 2174 | return mmc_card_mmc(mq->card) && !mmc_host_is_spi(mq->card->host) && |
| 2175 | (mqrq->brq.cmd.resp[0] & R1_EXCEPTION_EVENT || |
| 2176 | mqrq->brq.stop.resp[0] & R1_EXCEPTION_EVENT); |
| 2177 | } |
| 2178 | |
| 2179 | static void mmc_blk_urgent_bkops(struct mmc_queue *mq, |
| 2180 | struct mmc_queue_req *mqrq) |
| 2181 | { |
| 2182 | if (mmc_blk_urgent_bkops_needed(mq, mqrq)) |
| 2183 | mmc_start_bkops(mq->card, true); |
| 2184 | } |
| 2185 | |
| 2186 | void mmc_blk_mq_complete(struct request *req) |
| 2187 | { |
| 2188 | struct mmc_queue *mq = req->q->queuedata; |
| 2189 | |
Adrian Hunter | 1e8e55b | 2017-11-29 15:41:04 +0200 | [diff] [blame] | 2190 | if (mq->use_cqe) |
| 2191 | mmc_blk_cqe_complete_rq(mq, req); |
| 2192 | else |
| 2193 | mmc_blk_mq_complete_rq(mq, req); |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2194 | } |
| 2195 | |
| 2196 | static void mmc_blk_mq_poll_completion(struct mmc_queue *mq, |
| 2197 | struct request *req) |
| 2198 | { |
| 2199 | struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req); |
| 2200 | |
| 2201 | mmc_blk_mq_rw_recovery(mq, req); |
| 2202 | |
| 2203 | mmc_blk_urgent_bkops(mq, mqrq); |
| 2204 | } |
| 2205 | |
| 2206 | static void mmc_blk_mq_dec_in_flight(struct mmc_queue *mq, struct request *req) |
| 2207 | { |
| 2208 | struct request_queue *q = req->q; |
| 2209 | unsigned long flags; |
| 2210 | bool put_card; |
| 2211 | |
| 2212 | spin_lock_irqsave(q->queue_lock, flags); |
| 2213 | |
| 2214 | mq->in_flight[mmc_issue_type(mq, req)] -= 1; |
| 2215 | |
| 2216 | put_card = (mmc_tot_in_flight(mq) == 0); |
| 2217 | |
| 2218 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 2219 | |
| 2220 | if (put_card) |
| 2221 | mmc_put_card(mq->card, &mq->ctx); |
| 2222 | } |
| 2223 | |
| 2224 | static void mmc_blk_mq_post_req(struct mmc_queue *mq, struct request *req) |
| 2225 | { |
| 2226 | struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req); |
| 2227 | struct mmc_request *mrq = &mqrq->brq.mrq; |
| 2228 | struct mmc_host *host = mq->card->host; |
| 2229 | |
| 2230 | mmc_post_req(host, mrq, 0); |
| 2231 | |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2232 | /* |
| 2233 | * Block layer timeouts race with completions which means the normal |
| 2234 | * completion path cannot be used during recovery. |
| 2235 | */ |
| 2236 | if (mq->in_recovery) |
| 2237 | mmc_blk_mq_complete_rq(mq, req); |
| 2238 | else |
| 2239 | blk_mq_complete_request(req); |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2240 | |
| 2241 | mmc_blk_mq_dec_in_flight(mq, req); |
| 2242 | } |
| 2243 | |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2244 | void mmc_blk_mq_recovery(struct mmc_queue *mq) |
| 2245 | { |
| 2246 | struct request *req = mq->recovery_req; |
| 2247 | struct mmc_host *host = mq->card->host; |
| 2248 | struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req); |
| 2249 | |
| 2250 | mq->recovery_req = NULL; |
| 2251 | mq->rw_wait = false; |
| 2252 | |
| 2253 | if (mmc_blk_rq_error(&mqrq->brq)) { |
| 2254 | mmc_retune_hold_now(host); |
| 2255 | mmc_blk_mq_rw_recovery(mq, req); |
| 2256 | } |
| 2257 | |
| 2258 | mmc_blk_urgent_bkops(mq, mqrq); |
| 2259 | |
| 2260 | mmc_blk_mq_post_req(mq, req); |
| 2261 | } |
| 2262 | |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2263 | static void mmc_blk_mq_complete_prev_req(struct mmc_queue *mq, |
| 2264 | struct request **prev_req) |
| 2265 | { |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2266 | if (mmc_host_done_complete(mq->card->host)) |
| 2267 | return; |
| 2268 | |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2269 | mutex_lock(&mq->complete_lock); |
| 2270 | |
| 2271 | if (!mq->complete_req) |
| 2272 | goto out_unlock; |
| 2273 | |
| 2274 | mmc_blk_mq_poll_completion(mq, mq->complete_req); |
| 2275 | |
| 2276 | if (prev_req) |
| 2277 | *prev_req = mq->complete_req; |
| 2278 | else |
| 2279 | mmc_blk_mq_post_req(mq, mq->complete_req); |
| 2280 | |
| 2281 | mq->complete_req = NULL; |
| 2282 | |
| 2283 | out_unlock: |
| 2284 | mutex_unlock(&mq->complete_lock); |
| 2285 | } |
| 2286 | |
| 2287 | void mmc_blk_mq_complete_work(struct work_struct *work) |
| 2288 | { |
| 2289 | struct mmc_queue *mq = container_of(work, struct mmc_queue, |
| 2290 | complete_work); |
| 2291 | |
| 2292 | mmc_blk_mq_complete_prev_req(mq, NULL); |
| 2293 | } |
| 2294 | |
| 2295 | static void mmc_blk_mq_req_done(struct mmc_request *mrq) |
| 2296 | { |
| 2297 | struct mmc_queue_req *mqrq = container_of(mrq, struct mmc_queue_req, |
| 2298 | brq.mrq); |
| 2299 | struct request *req = mmc_queue_req_to_req(mqrq); |
| 2300 | struct request_queue *q = req->q; |
| 2301 | struct mmc_queue *mq = q->queuedata; |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2302 | struct mmc_host *host = mq->card->host; |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2303 | unsigned long flags; |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2304 | |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2305 | if (!mmc_host_done_complete(host)) { |
| 2306 | bool waiting; |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2307 | |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2308 | /* |
| 2309 | * We cannot complete the request in this context, so record |
| 2310 | * that there is a request to complete, and that a following |
| 2311 | * request does not need to wait (although it does need to |
| 2312 | * complete complete_req first). |
| 2313 | */ |
| 2314 | spin_lock_irqsave(q->queue_lock, flags); |
| 2315 | mq->complete_req = req; |
| 2316 | mq->rw_wait = false; |
| 2317 | waiting = mq->waiting; |
| 2318 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 2319 | |
| 2320 | /* |
| 2321 | * If 'waiting' then the waiting task will complete this |
| 2322 | * request, otherwise queue a work to do it. Note that |
| 2323 | * complete_work may still race with the dispatch of a following |
| 2324 | * request. |
| 2325 | */ |
| 2326 | if (waiting) |
| 2327 | wake_up(&mq->wait); |
| 2328 | else |
| 2329 | kblockd_schedule_work(&mq->complete_work); |
| 2330 | |
| 2331 | return; |
| 2332 | } |
| 2333 | |
| 2334 | /* Take the recovery path for errors or urgent background operations */ |
| 2335 | if (mmc_blk_rq_error(&mqrq->brq) || |
| 2336 | mmc_blk_urgent_bkops_needed(mq, mqrq)) { |
| 2337 | spin_lock_irqsave(q->queue_lock, flags); |
| 2338 | mq->recovery_needed = true; |
| 2339 | mq->recovery_req = req; |
| 2340 | spin_unlock_irqrestore(q->queue_lock, flags); |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2341 | wake_up(&mq->wait); |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2342 | schedule_work(&mq->recovery_work); |
| 2343 | return; |
| 2344 | } |
| 2345 | |
| 2346 | mmc_blk_rw_reset_success(mq, req); |
| 2347 | |
| 2348 | mq->rw_wait = false; |
| 2349 | wake_up(&mq->wait); |
| 2350 | |
| 2351 | mmc_blk_mq_post_req(mq, req); |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2352 | } |
| 2353 | |
| 2354 | static bool mmc_blk_rw_wait_cond(struct mmc_queue *mq, int *err) |
| 2355 | { |
| 2356 | struct request_queue *q = mq->queue; |
| 2357 | unsigned long flags; |
| 2358 | bool done; |
| 2359 | |
| 2360 | /* |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2361 | * Wait while there is another request in progress, but not if recovery |
| 2362 | * is needed. Also indicate whether there is a request waiting to start. |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2363 | */ |
| 2364 | spin_lock_irqsave(q->queue_lock, flags); |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2365 | if (mq->recovery_needed) { |
| 2366 | *err = -EBUSY; |
| 2367 | done = true; |
| 2368 | } else { |
| 2369 | done = !mq->rw_wait; |
| 2370 | } |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2371 | mq->waiting = !done; |
| 2372 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 2373 | |
| 2374 | return done; |
| 2375 | } |
| 2376 | |
| 2377 | static int mmc_blk_rw_wait(struct mmc_queue *mq, struct request **prev_req) |
| 2378 | { |
| 2379 | int err = 0; |
| 2380 | |
| 2381 | wait_event(mq->wait, mmc_blk_rw_wait_cond(mq, &err)); |
| 2382 | |
| 2383 | /* Always complete the previous request if there is one */ |
| 2384 | mmc_blk_mq_complete_prev_req(mq, prev_req); |
| 2385 | |
| 2386 | return err; |
| 2387 | } |
| 2388 | |
| 2389 | static int mmc_blk_mq_issue_rw_rq(struct mmc_queue *mq, |
| 2390 | struct request *req) |
| 2391 | { |
| 2392 | struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req); |
| 2393 | struct mmc_host *host = mq->card->host; |
| 2394 | struct request *prev_req = NULL; |
| 2395 | int err = 0; |
| 2396 | |
| 2397 | mmc_blk_rw_rq_prep(mqrq, mq->card, 0, mq); |
| 2398 | |
| 2399 | mqrq->brq.mrq.done = mmc_blk_mq_req_done; |
| 2400 | |
| 2401 | mmc_pre_req(host, &mqrq->brq.mrq); |
| 2402 | |
| 2403 | err = mmc_blk_rw_wait(mq, &prev_req); |
| 2404 | if (err) |
| 2405 | goto out_post_req; |
| 2406 | |
| 2407 | mq->rw_wait = true; |
| 2408 | |
| 2409 | err = mmc_start_request(host, &mqrq->brq.mrq); |
| 2410 | |
| 2411 | if (prev_req) |
| 2412 | mmc_blk_mq_post_req(mq, prev_req); |
| 2413 | |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2414 | if (err) |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2415 | mq->rw_wait = false; |
Adrian Hunter | 10f21df4 | 2017-11-29 15:41:07 +0200 | [diff] [blame^] | 2416 | |
| 2417 | /* Release re-tuning here where there is no synchronization required */ |
| 2418 | if (err || mmc_host_done_complete(host)) |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2419 | mmc_retune_release(host); |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2420 | |
| 2421 | out_post_req: |
| 2422 | if (err) |
| 2423 | mmc_post_req(host, &mqrq->brq.mrq, err); |
| 2424 | |
| 2425 | return err; |
| 2426 | } |
| 2427 | |
| 2428 | static int mmc_blk_wait_for_idle(struct mmc_queue *mq, struct mmc_host *host) |
| 2429 | { |
Adrian Hunter | 1e8e55b | 2017-11-29 15:41:04 +0200 | [diff] [blame] | 2430 | if (mq->use_cqe) |
| 2431 | return host->cqe_ops->cqe_wait_for_idle(host); |
| 2432 | |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2433 | return mmc_blk_rw_wait(mq, NULL); |
| 2434 | } |
| 2435 | |
| 2436 | enum mmc_issued mmc_blk_mq_issue_rq(struct mmc_queue *mq, struct request *req) |
| 2437 | { |
| 2438 | struct mmc_blk_data *md = mq->blkdata; |
| 2439 | struct mmc_card *card = md->queue.card; |
| 2440 | struct mmc_host *host = card->host; |
| 2441 | int ret; |
| 2442 | |
| 2443 | ret = mmc_blk_part_switch(card, md->part_type); |
| 2444 | if (ret) |
| 2445 | return MMC_REQ_FAILED_TO_START; |
| 2446 | |
| 2447 | switch (mmc_issue_type(mq, req)) { |
| 2448 | case MMC_ISSUE_SYNC: |
| 2449 | ret = mmc_blk_wait_for_idle(mq, host); |
| 2450 | if (ret) |
| 2451 | return MMC_REQ_BUSY; |
| 2452 | switch (req_op(req)) { |
| 2453 | case REQ_OP_DRV_IN: |
| 2454 | case REQ_OP_DRV_OUT: |
| 2455 | mmc_blk_issue_drv_op(mq, req); |
| 2456 | break; |
| 2457 | case REQ_OP_DISCARD: |
| 2458 | mmc_blk_issue_discard_rq(mq, req); |
| 2459 | break; |
| 2460 | case REQ_OP_SECURE_ERASE: |
| 2461 | mmc_blk_issue_secdiscard_rq(mq, req); |
| 2462 | break; |
| 2463 | case REQ_OP_FLUSH: |
| 2464 | mmc_blk_issue_flush(mq, req); |
| 2465 | break; |
| 2466 | default: |
| 2467 | WARN_ON_ONCE(1); |
| 2468 | return MMC_REQ_FAILED_TO_START; |
| 2469 | } |
| 2470 | return MMC_REQ_FINISHED; |
Adrian Hunter | 1e8e55b | 2017-11-29 15:41:04 +0200 | [diff] [blame] | 2471 | case MMC_ISSUE_DCMD: |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2472 | case MMC_ISSUE_ASYNC: |
| 2473 | switch (req_op(req)) { |
Adrian Hunter | 1e8e55b | 2017-11-29 15:41:04 +0200 | [diff] [blame] | 2474 | case REQ_OP_FLUSH: |
| 2475 | ret = mmc_blk_cqe_issue_flush(mq, req); |
| 2476 | break; |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2477 | case REQ_OP_READ: |
| 2478 | case REQ_OP_WRITE: |
Adrian Hunter | 1e8e55b | 2017-11-29 15:41:04 +0200 | [diff] [blame] | 2479 | if (mq->use_cqe) |
| 2480 | ret = mmc_blk_cqe_issue_rw_rq(mq, req); |
| 2481 | else |
| 2482 | ret = mmc_blk_mq_issue_rw_rq(mq, req); |
Adrian Hunter | 8119697 | 2017-11-29 15:41:03 +0200 | [diff] [blame] | 2483 | break; |
| 2484 | default: |
| 2485 | WARN_ON_ONCE(1); |
| 2486 | ret = -EINVAL; |
| 2487 | } |
| 2488 | if (!ret) |
| 2489 | return MMC_REQ_STARTED; |
| 2490 | return ret == -EBUSY ? MMC_REQ_BUSY : MMC_REQ_FAILED_TO_START; |
| 2491 | default: |
| 2492 | WARN_ON_ONCE(1); |
| 2493 | return MMC_REQ_FAILED_TO_START; |
| 2494 | } |
| 2495 | } |
| 2496 | |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2497 | static bool mmc_blk_rw_cmd_err(struct mmc_blk_data *md, struct mmc_card *card, |
| 2498 | struct mmc_blk_request *brq, struct request *req, |
| 2499 | bool old_req_pending) |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2500 | { |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2501 | bool req_pending; |
| 2502 | |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2503 | /* |
| 2504 | * If this is an SD card and we're writing, we can first |
| 2505 | * mark the known good sectors as ok. |
| 2506 | * |
| 2507 | * If the card is not SD, we can still ok written sectors |
| 2508 | * as reported by the controller (which might be less than |
| 2509 | * the real number of written sectors, but never more). |
| 2510 | */ |
| 2511 | if (mmc_card_sd(card)) { |
| 2512 | u32 blocks; |
Linus Walleij | 169f03a | 2017-02-01 13:47:57 +0100 | [diff] [blame] | 2513 | int err; |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2514 | |
Linus Walleij | 169f03a | 2017-02-01 13:47:57 +0100 | [diff] [blame] | 2515 | err = mmc_sd_num_wr_blocks(card, &blocks); |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2516 | if (err) |
| 2517 | req_pending = old_req_pending; |
| 2518 | else |
Adrian Hunter | a7c17d8 | 2017-08-25 15:43:45 +0300 | [diff] [blame] | 2519 | req_pending = blk_end_request(req, BLK_STS_OK, blocks << 9); |
Adrian Hunter | 5dd784d2 | 2016-11-29 12:09:08 +0200 | [diff] [blame] | 2520 | } else { |
Adrian Hunter | a7c17d8 | 2017-08-25 15:43:45 +0300 | [diff] [blame] | 2521 | req_pending = blk_end_request(req, BLK_STS_OK, brq->data.bytes_xfered); |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2522 | } |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2523 | return req_pending; |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2524 | } |
| 2525 | |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2526 | static void mmc_blk_rw_cmd_abort(struct mmc_queue *mq, struct mmc_card *card, |
| 2527 | struct request *req, |
| 2528 | struct mmc_queue_req *mqrq) |
Linus Walleij | 4e1f780 | 2017-01-24 11:17:52 +0100 | [diff] [blame] | 2529 | { |
Linus Walleij | 4e1f780 | 2017-01-24 11:17:52 +0100 | [diff] [blame] | 2530 | if (mmc_card_removed(card)) |
| 2531 | req->rq_flags |= RQF_QUIET; |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 2532 | while (blk_end_request(req, BLK_STS_IOERR, blk_rq_cur_bytes(req))); |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 2533 | mq->qcnt--; |
Linus Walleij | 4e1f780 | 2017-01-24 11:17:52 +0100 | [diff] [blame] | 2534 | } |
| 2535 | |
Linus Walleij | b2928e1 | 2017-02-01 13:47:54 +0100 | [diff] [blame] | 2536 | /** |
| 2537 | * mmc_blk_rw_try_restart() - tries to restart the current async request |
| 2538 | * @mq: the queue with the card and host to restart |
| 2539 | * @req: a new request that want to be started after the current one |
| 2540 | */ |
Adrian Hunter | 8ddfe07 | 2017-03-13 14:36:34 +0200 | [diff] [blame] | 2541 | static void mmc_blk_rw_try_restart(struct mmc_queue *mq, struct request *req, |
| 2542 | struct mmc_queue_req *mqrq) |
Linus Walleij | efb5a05 | 2017-01-24 11:17:53 +0100 | [diff] [blame] | 2543 | { |
| 2544 | if (!req) |
| 2545 | return; |
| 2546 | |
Linus Walleij | b2928e1 | 2017-02-01 13:47:54 +0100 | [diff] [blame] | 2547 | /* |
| 2548 | * If the card was removed, just cancel everything and return. |
| 2549 | */ |
| 2550 | if (mmc_card_removed(mq->card)) { |
Linus Walleij | efb5a05 | 2017-01-24 11:17:53 +0100 | [diff] [blame] | 2551 | req->rq_flags |= RQF_QUIET; |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 2552 | blk_end_request_all(req, BLK_STS_IOERR); |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 2553 | mq->qcnt--; /* FIXME: just set to 0? */ |
Linus Walleij | b2928e1 | 2017-02-01 13:47:54 +0100 | [diff] [blame] | 2554 | return; |
Linus Walleij | efb5a05 | 2017-01-24 11:17:53 +0100 | [diff] [blame] | 2555 | } |
Linus Walleij | b2928e1 | 2017-02-01 13:47:54 +0100 | [diff] [blame] | 2556 | /* Else proceed and try to restart the current async request */ |
Adrian Hunter | 8ddfe07 | 2017-03-13 14:36:34 +0200 | [diff] [blame] | 2557 | mmc_blk_rw_rq_prep(mqrq, mq->card, 0, mq); |
| 2558 | mmc_start_areq(mq->card->host, &mqrq->areq, NULL); |
Linus Walleij | efb5a05 | 2017-01-24 11:17:53 +0100 | [diff] [blame] | 2559 | } |
| 2560 | |
Linus Walleij | acd8dbd | 2017-02-01 13:47:52 +0100 | [diff] [blame] | 2561 | static void mmc_blk_issue_rw_rq(struct mmc_queue *mq, struct request *new_req) |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 2562 | { |
Linus Walleij | 7db3028 | 2016-11-18 13:36:15 +0100 | [diff] [blame] | 2563 | struct mmc_blk_data *md = mq->blkdata; |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 2564 | struct mmc_card *card = md->queue.card; |
Adrian Hunter | 5be8037 | 2016-11-29 12:09:09 +0200 | [diff] [blame] | 2565 | struct mmc_blk_request *brq; |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2566 | int disable_multi = 0, retry = 0, type, retune_retry_done = 0; |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 2567 | enum mmc_blk_status status; |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2568 | struct mmc_queue_req *mqrq_cur = NULL; |
Per Forlin | ee8a43a | 2011-07-01 18:55:33 +0200 | [diff] [blame] | 2569 | struct mmc_queue_req *mq_rq; |
Linus Walleij | acd8dbd | 2017-02-01 13:47:52 +0100 | [diff] [blame] | 2570 | struct request *old_req; |
Linus Walleij | 7d552a4 | 2017-01-24 11:17:56 +0100 | [diff] [blame] | 2571 | struct mmc_async_req *new_areq; |
| 2572 | struct mmc_async_req *old_areq; |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2573 | bool req_pending = true; |
Per Forlin | ee8a43a | 2011-07-01 18:55:33 +0200 | [diff] [blame] | 2574 | |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2575 | if (new_req) { |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 2576 | mqrq_cur = req_to_mmc_queue_req(new_req); |
| 2577 | mq->qcnt++; |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2578 | } |
| 2579 | |
| 2580 | if (!mq->qcnt) |
Linus Walleij | df06158 | 2017-01-24 11:17:57 +0100 | [diff] [blame] | 2581 | return; |
Per Forlin | 54d49d7 | 2011-07-01 18:55:29 +0200 | [diff] [blame] | 2582 | |
| 2583 | do { |
Linus Walleij | acd8dbd | 2017-02-01 13:47:52 +0100 | [diff] [blame] | 2584 | if (new_req) { |
Saugata Das | a5075eb | 2012-05-17 16:32:21 +0530 | [diff] [blame] | 2585 | /* |
| 2586 | * When 4KB native sector is enabled, only 8 blocks |
| 2587 | * multiple read or write is allowed |
| 2588 | */ |
Yuan, Juntao | e87c856 | 2016-05-13 07:59:24 +0000 | [diff] [blame] | 2589 | if (mmc_large_sector(card) && |
Linus Walleij | acd8dbd | 2017-02-01 13:47:52 +0100 | [diff] [blame] | 2590 | !IS_ALIGNED(blk_rq_sectors(new_req), 8)) { |
Saugata Das | a5075eb | 2012-05-17 16:32:21 +0530 | [diff] [blame] | 2591 | pr_err("%s: Transfer size is not 4KB sector size aligned\n", |
Linus Walleij | acd8dbd | 2017-02-01 13:47:52 +0100 | [diff] [blame] | 2592 | new_req->rq_disk->disk_name); |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2593 | mmc_blk_rw_cmd_abort(mq, card, new_req, mqrq_cur); |
Linus Walleij | df06158 | 2017-01-24 11:17:57 +0100 | [diff] [blame] | 2594 | return; |
Saugata Das | a5075eb | 2012-05-17 16:32:21 +0530 | [diff] [blame] | 2595 | } |
Seungwon Jeon | ce39f9d | 2013-02-06 17:02:46 +0900 | [diff] [blame] | 2596 | |
Adrian Hunter | 8ddfe07 | 2017-03-13 14:36:34 +0200 | [diff] [blame] | 2597 | mmc_blk_rw_rq_prep(mqrq_cur, card, 0, mq); |
| 2598 | new_areq = &mqrq_cur->areq; |
Per Forlin | ee8a43a | 2011-07-01 18:55:33 +0200 | [diff] [blame] | 2599 | } else |
Linus Walleij | 7d552a4 | 2017-01-24 11:17:56 +0100 | [diff] [blame] | 2600 | new_areq = NULL; |
| 2601 | |
Linus Walleij | c3399ef | 2017-02-01 13:47:53 +0100 | [diff] [blame] | 2602 | old_areq = mmc_start_areq(card->host, new_areq, &status); |
Linus Walleij | 7d552a4 | 2017-01-24 11:17:56 +0100 | [diff] [blame] | 2603 | if (!old_areq) { |
Linus Walleij | da0dbaf | 2017-01-24 11:17:55 +0100 | [diff] [blame] | 2604 | /* |
| 2605 | * We have just put the first request into the pipeline |
| 2606 | * and there is nothing more to do until it is |
| 2607 | * complete. |
| 2608 | */ |
Linus Walleij | df06158 | 2017-01-24 11:17:57 +0100 | [diff] [blame] | 2609 | return; |
Konstantin Dorfman | 2220eed | 2013-01-14 14:28:17 -0500 | [diff] [blame] | 2610 | } |
Pierre Ossman | 98ccf14 | 2007-05-12 00:26:16 +0200 | [diff] [blame] | 2611 | |
Linus Walleij | da0dbaf | 2017-01-24 11:17:55 +0100 | [diff] [blame] | 2612 | /* |
| 2613 | * An asynchronous request has been completed and we proceed |
| 2614 | * to handle the result of it. |
| 2615 | */ |
Linus Walleij | 74f5ba3 | 2017-02-01 13:47:55 +0100 | [diff] [blame] | 2616 | mq_rq = container_of(old_areq, struct mmc_queue_req, areq); |
Per Forlin | ee8a43a | 2011-07-01 18:55:33 +0200 | [diff] [blame] | 2617 | brq = &mq_rq->brq; |
Linus Walleij | 67e69d5 | 2017-05-19 15:37:27 +0200 | [diff] [blame] | 2618 | old_req = mmc_queue_req_to_req(mq_rq); |
Linus Walleij | acd8dbd | 2017-02-01 13:47:52 +0100 | [diff] [blame] | 2619 | type = rq_data_dir(old_req) == READ ? MMC_BLK_READ : MMC_BLK_WRITE; |
Pierre Ossman | 98ccf14 | 2007-05-12 00:26:16 +0200 | [diff] [blame] | 2620 | |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 2621 | switch (status) { |
| 2622 | case MMC_BLK_SUCCESS: |
| 2623 | case MMC_BLK_PARTIAL: |
| 2624 | /* |
Adrian Hunter | 6d3898a6 | 2017-11-29 15:41:01 +0200 | [diff] [blame] | 2625 | * Reset success, and accept bytes_xfered. For |
| 2626 | * MMC_BLK_PARTIAL re-submit the remaining request. For |
| 2627 | * MMC_BLK_SUCCESS error out the remaining request (it |
| 2628 | * could not be re-submitted anyway if a next request |
| 2629 | * had already begun). |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 2630 | */ |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2631 | mmc_blk_reset_success(md, type); |
Seungwon Jeon | ce39f9d | 2013-02-06 17:02:46 +0900 | [diff] [blame] | 2632 | |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 2633 | req_pending = blk_end_request(old_req, BLK_STS_OK, |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2634 | brq->data.bytes_xfered); |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2635 | /* |
| 2636 | * If the blk_end_request function returns non-zero even |
| 2637 | * though all data has been transferred and no errors |
| 2638 | * were returned by the host controller, it's a bug. |
| 2639 | */ |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2640 | if (status == MMC_BLK_SUCCESS && req_pending) { |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 2641 | pr_err("%s BUG rq_tot %d d_xfer %d\n", |
Linus Walleij | acd8dbd | 2017-02-01 13:47:52 +0100 | [diff] [blame] | 2642 | __func__, blk_rq_bytes(old_req), |
Per Forlin | ee8a43a | 2011-07-01 18:55:33 +0200 | [diff] [blame] | 2643 | brq->data.bytes_xfered); |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2644 | mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq); |
Linus Walleij | df06158 | 2017-01-24 11:17:57 +0100 | [diff] [blame] | 2645 | return; |
Per Forlin | ee8a43a | 2011-07-01 18:55:33 +0200 | [diff] [blame] | 2646 | } |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 2647 | break; |
| 2648 | case MMC_BLK_CMD_ERR: |
Adrian Hunter | 6d3898a6 | 2017-11-29 15:41:01 +0200 | [diff] [blame] | 2649 | /* |
| 2650 | * For SD cards, get bytes written, but do not accept |
| 2651 | * bytes_xfered if that fails. For MMC cards accept |
| 2652 | * bytes_xfered. Then try to reset. If reset fails then |
| 2653 | * error out the remaining request, otherwise retry |
| 2654 | * once (N.B mmc_blk_reset() will not succeed twice in a |
| 2655 | * row). |
| 2656 | */ |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2657 | req_pending = mmc_blk_rw_cmd_err(md, card, brq, old_req, req_pending); |
Linus Walleij | db43550 | 2017-02-01 13:47:51 +0100 | [diff] [blame] | 2658 | if (mmc_blk_reset(md, card->host, type)) { |
Adrian Hunter | 8ecc344 | 2017-03-13 14:36:33 +0200 | [diff] [blame] | 2659 | if (req_pending) |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2660 | mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq); |
| 2661 | else |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 2662 | mq->qcnt--; |
Adrian Hunter | 8ddfe07 | 2017-03-13 14:36:34 +0200 | [diff] [blame] | 2663 | mmc_blk_rw_try_restart(mq, new_req, mqrq_cur); |
Linus Walleij | db43550 | 2017-02-01 13:47:51 +0100 | [diff] [blame] | 2664 | return; |
| 2665 | } |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2666 | if (!req_pending) { |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 2667 | mq->qcnt--; |
Adrian Hunter | 8ddfe07 | 2017-03-13 14:36:34 +0200 | [diff] [blame] | 2668 | mmc_blk_rw_try_restart(mq, new_req, mqrq_cur); |
Linus Walleij | db43550 | 2017-02-01 13:47:51 +0100 | [diff] [blame] | 2669 | return; |
| 2670 | } |
Ding Wang | 29535f7 | 2015-05-18 20:14:15 +0800 | [diff] [blame] | 2671 | break; |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 2672 | case MMC_BLK_RETRY: |
Adrian Hunter | 6d3898a6 | 2017-11-29 15:41:01 +0200 | [diff] [blame] | 2673 | /* |
| 2674 | * Do not accept bytes_xfered, but retry up to 5 times, |
| 2675 | * otherwise same as abort. |
| 2676 | */ |
Adrian Hunter | b8360a4 | 2015-05-07 13:10:24 +0300 | [diff] [blame] | 2677 | retune_retry_done = brq->retune_retry_done; |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 2678 | if (retry++ < 5) |
Russell King - ARM Linux | a01f3cc | 2011-06-20 20:10:28 +0100 | [diff] [blame] | 2679 | break; |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2680 | /* Fall through */ |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 2681 | case MMC_BLK_ABORT: |
Adrian Hunter | 6d3898a6 | 2017-11-29 15:41:01 +0200 | [diff] [blame] | 2682 | /* |
| 2683 | * Do not accept bytes_xfered, but try to reset. If |
| 2684 | * reset succeeds, try once more, otherwise error out |
| 2685 | * the request. |
| 2686 | */ |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2687 | if (!mmc_blk_reset(md, card->host, type)) |
| 2688 | break; |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2689 | mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq); |
Adrian Hunter | 8ddfe07 | 2017-03-13 14:36:34 +0200 | [diff] [blame] | 2690 | mmc_blk_rw_try_restart(mq, new_req, mqrq_cur); |
Linus Walleij | db43550 | 2017-02-01 13:47:51 +0100 | [diff] [blame] | 2691 | return; |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2692 | case MMC_BLK_DATA_ERR: { |
| 2693 | int err; |
| 2694 | |
Adrian Hunter | 6d3898a6 | 2017-11-29 15:41:01 +0200 | [diff] [blame] | 2695 | /* |
| 2696 | * Do not accept bytes_xfered, but try to reset. If |
| 2697 | * reset succeeds, try once more. If reset fails with |
| 2698 | * ENODEV which means the partition is wrong, then error |
| 2699 | * out the request. Otherwise attempt to read one sector |
| 2700 | * at a time. |
| 2701 | */ |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2702 | err = mmc_blk_reset(md, card->host, type); |
| 2703 | if (!err) |
| 2704 | break; |
Linus Walleij | db43550 | 2017-02-01 13:47:51 +0100 | [diff] [blame] | 2705 | if (err == -ENODEV) { |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2706 | mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq); |
Adrian Hunter | 8ddfe07 | 2017-03-13 14:36:34 +0200 | [diff] [blame] | 2707 | mmc_blk_rw_try_restart(mq, new_req, mqrq_cur); |
Linus Walleij | db43550 | 2017-02-01 13:47:51 +0100 | [diff] [blame] | 2708 | return; |
| 2709 | } |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2710 | /* Fall through */ |
| 2711 | } |
| 2712 | case MMC_BLK_ECC_ERR: |
Adrian Hunter | 6d3898a6 | 2017-11-29 15:41:01 +0200 | [diff] [blame] | 2713 | /* |
| 2714 | * Do not accept bytes_xfered. If reading more than one |
| 2715 | * sector, try reading one sector at a time. |
| 2716 | */ |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2717 | if (brq->data.blocks > 1) { |
| 2718 | /* Redo read one sector at a time */ |
Joe Perches | 6606110 | 2014-09-12 14:56:56 -0700 | [diff] [blame] | 2719 | pr_warn("%s: retrying using single block read\n", |
Linus Walleij | acd8dbd | 2017-02-01 13:47:52 +0100 | [diff] [blame] | 2720 | old_req->rq_disk->disk_name); |
Adrian Hunter | 6771632 | 2011-08-29 16:42:15 +0300 | [diff] [blame] | 2721 | disable_multi = 1; |
| 2722 | break; |
| 2723 | } |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 2724 | /* |
| 2725 | * After an error, we redo I/O one sector at a |
| 2726 | * time, so we only reach here after trying to |
| 2727 | * read a single sector. |
| 2728 | */ |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 2729 | req_pending = blk_end_request(old_req, BLK_STS_IOERR, |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2730 | brq->data.blksz); |
| 2731 | if (!req_pending) { |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 2732 | mq->qcnt--; |
Adrian Hunter | 8ddfe07 | 2017-03-13 14:36:34 +0200 | [diff] [blame] | 2733 | mmc_blk_rw_try_restart(mq, new_req, mqrq_cur); |
Linus Walleij | db43550 | 2017-02-01 13:47:51 +0100 | [diff] [blame] | 2734 | return; |
| 2735 | } |
Per Forlin | d78d4a8a | 2011-07-01 18:55:30 +0200 | [diff] [blame] | 2736 | break; |
Sujit Reddy Thumma | a8ad82cc | 2011-12-08 14:05:50 +0530 | [diff] [blame] | 2737 | case MMC_BLK_NOMEDIUM: |
Adrian Hunter | 6d3898a6 | 2017-11-29 15:41:01 +0200 | [diff] [blame] | 2738 | /* Do not accept bytes_xfered. Error out the request */ |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2739 | mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq); |
Adrian Hunter | 8ddfe07 | 2017-03-13 14:36:34 +0200 | [diff] [blame] | 2740 | mmc_blk_rw_try_restart(mq, new_req, mqrq_cur); |
Linus Walleij | db43550 | 2017-02-01 13:47:51 +0100 | [diff] [blame] | 2741 | return; |
Konstantin Dorfman | 2220eed | 2013-01-14 14:28:17 -0500 | [diff] [blame] | 2742 | default: |
Adrian Hunter | 6d3898a6 | 2017-11-29 15:41:01 +0200 | [diff] [blame] | 2743 | /* Do not accept bytes_xfered. Error out the request */ |
Konstantin Dorfman | 2220eed | 2013-01-14 14:28:17 -0500 | [diff] [blame] | 2744 | pr_err("%s: Unhandled return value (%d)", |
Linus Walleij | acd8dbd | 2017-02-01 13:47:52 +0100 | [diff] [blame] | 2745 | old_req->rq_disk->disk_name, status); |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2746 | mmc_blk_rw_cmd_abort(mq, card, old_req, mq_rq); |
Adrian Hunter | 8ddfe07 | 2017-03-13 14:36:34 +0200 | [diff] [blame] | 2747 | mmc_blk_rw_try_restart(mq, new_req, mqrq_cur); |
Linus Walleij | db43550 | 2017-02-01 13:47:51 +0100 | [diff] [blame] | 2748 | return; |
Russell King - ARM Linux | 4c2b8f2 | 2011-06-20 20:10:49 +0100 | [diff] [blame] | 2749 | } |
| 2750 | |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2751 | if (req_pending) { |
Linus Walleij | 03d640a | 2016-11-25 10:35:00 +0100 | [diff] [blame] | 2752 | /* |
| 2753 | * In case of a incomplete request |
| 2754 | * prepare it again and resend. |
| 2755 | */ |
| 2756 | mmc_blk_rw_rq_prep(mq_rq, card, |
| 2757 | disable_multi, mq); |
Linus Walleij | c3399ef | 2017-02-01 13:47:53 +0100 | [diff] [blame] | 2758 | mmc_start_areq(card->host, |
Linus Walleij | 74f5ba3 | 2017-02-01 13:47:55 +0100 | [diff] [blame] | 2759 | &mq_rq->areq, NULL); |
Adrian Hunter | b8360a4 | 2015-05-07 13:10:24 +0300 | [diff] [blame] | 2760 | mq_rq->brq.retune_retry_done = retune_retry_done; |
Per Forlin | ee8a43a | 2011-07-01 18:55:33 +0200 | [diff] [blame] | 2761 | } |
Linus Walleij | 0e65f10 | 2017-02-01 13:47:58 +0100 | [diff] [blame] | 2762 | } while (req_pending); |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2763 | |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 2764 | mq->qcnt--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2765 | } |
| 2766 | |
Linus Walleij | df06158 | 2017-01-24 11:17:57 +0100 | [diff] [blame] | 2767 | void mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req) |
Adrian Hunter | bd788c9 | 2010-08-11 14:17:47 -0700 | [diff] [blame] | 2768 | { |
Andrei Warkentin | 1a258db | 2011-04-11 18:10:24 -0500 | [diff] [blame] | 2769 | int ret; |
Linus Walleij | 7db3028 | 2016-11-18 13:36:15 +0100 | [diff] [blame] | 2770 | struct mmc_blk_data *md = mq->blkdata; |
Andrei Warkentin | 1a258db | 2011-04-11 18:10:24 -0500 | [diff] [blame] | 2771 | struct mmc_card *card = md->queue.card; |
| 2772 | |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2773 | if (req && !mq->qcnt) |
Per Forlin | ee8a43a | 2011-07-01 18:55:33 +0200 | [diff] [blame] | 2774 | /* claim host only for the first request */ |
Adrian Hunter | 6c0cedd | 2017-09-22 15:36:51 +0300 | [diff] [blame] | 2775 | mmc_get_card(card, NULL); |
Per Forlin | ee8a43a | 2011-07-01 18:55:33 +0200 | [diff] [blame] | 2776 | |
Linus Walleij | 1f797ed | 2017-08-20 23:39:10 +0200 | [diff] [blame] | 2777 | ret = mmc_blk_part_switch(card, md->part_type); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2778 | if (ret) { |
Adrian Hunter | 0d7d85c | 2011-09-23 12:48:20 +0300 | [diff] [blame] | 2779 | if (req) { |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 2780 | blk_end_request_all(req, BLK_STS_IOERR); |
Adrian Hunter | 0d7d85c | 2011-09-23 12:48:20 +0300 | [diff] [blame] | 2781 | } |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2782 | goto out; |
| 2783 | } |
Andrei Warkentin | 1a258db | 2011-04-11 18:10:24 -0500 | [diff] [blame] | 2784 | |
Linus Walleij | 614f038 | 2017-05-18 11:29:34 +0200 | [diff] [blame] | 2785 | if (req) { |
| 2786 | switch (req_op(req)) { |
| 2787 | case REQ_OP_DRV_IN: |
| 2788 | case REQ_OP_DRV_OUT: |
| 2789 | /* |
| 2790 | * Complete ongoing async transfer before issuing |
| 2791 | * ioctl()s |
| 2792 | */ |
| 2793 | if (mq->qcnt) |
| 2794 | mmc_blk_issue_rw_rq(mq, NULL); |
Linus Walleij | 02166a0 | 2017-05-19 15:37:28 +0200 | [diff] [blame] | 2795 | mmc_blk_issue_drv_op(mq, req); |
Linus Walleij | 614f038 | 2017-05-18 11:29:34 +0200 | [diff] [blame] | 2796 | break; |
| 2797 | case REQ_OP_DISCARD: |
| 2798 | /* |
| 2799 | * Complete ongoing async transfer before issuing |
| 2800 | * discard. |
| 2801 | */ |
| 2802 | if (mq->qcnt) |
| 2803 | mmc_blk_issue_rw_rq(mq, NULL); |
| 2804 | mmc_blk_issue_discard_rq(mq, req); |
| 2805 | break; |
| 2806 | case REQ_OP_SECURE_ERASE: |
| 2807 | /* |
| 2808 | * Complete ongoing async transfer before issuing |
| 2809 | * secure erase. |
| 2810 | */ |
| 2811 | if (mq->qcnt) |
| 2812 | mmc_blk_issue_rw_rq(mq, NULL); |
| 2813 | mmc_blk_issue_secdiscard_rq(mq, req); |
| 2814 | break; |
| 2815 | case REQ_OP_FLUSH: |
| 2816 | /* |
| 2817 | * Complete ongoing async transfer before issuing |
| 2818 | * flush. |
| 2819 | */ |
| 2820 | if (mq->qcnt) |
| 2821 | mmc_blk_issue_rw_rq(mq, NULL); |
| 2822 | mmc_blk_issue_flush(mq, req); |
| 2823 | break; |
| 2824 | default: |
| 2825 | /* Normal request, just issue it */ |
| 2826 | mmc_blk_issue_rw_rq(mq, req); |
| 2827 | card->host->context_info.is_waiting_last_req = false; |
| 2828 | break; |
Wu Fengguang | 7322238 | 2017-05-23 05:11:33 +0800 | [diff] [blame] | 2829 | } |
Adrian Hunter | 4980454 | 2010-08-11 14:17:50 -0700 | [diff] [blame] | 2830 | } else { |
Linus Walleij | 614f038 | 2017-05-18 11:29:34 +0200 | [diff] [blame] | 2831 | /* No request, flushing the pipeline with NULL */ |
| 2832 | mmc_blk_issue_rw_rq(mq, NULL); |
Adrian Hunter | 2602b74 | 2017-03-13 14:36:32 +0200 | [diff] [blame] | 2833 | card->host->context_info.is_waiting_last_req = false; |
Adrian Hunter | 4980454 | 2010-08-11 14:17:50 -0700 | [diff] [blame] | 2834 | } |
Andrei Warkentin | 1a258db | 2011-04-11 18:10:24 -0500 | [diff] [blame] | 2835 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2836 | out: |
Adrian Hunter | cdf8a6f | 2017-03-13 14:36:35 +0200 | [diff] [blame] | 2837 | if (!mq->qcnt) |
Adrian Hunter | 6c0cedd | 2017-09-22 15:36:51 +0300 | [diff] [blame] | 2838 | mmc_put_card(card, NULL); |
Adrian Hunter | bd788c9 | 2010-08-11 14:17:47 -0700 | [diff] [blame] | 2839 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2841 | static inline int mmc_blk_readonly(struct mmc_card *card) |
| 2842 | { |
| 2843 | return mmc_card_readonly(card) || |
| 2844 | !(card->csd.cmdclass & CCC_BLOCK_WRITE); |
| 2845 | } |
| 2846 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2847 | static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card, |
| 2848 | struct device *parent, |
| 2849 | sector_t size, |
| 2850 | bool default_ro, |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 2851 | const char *subname, |
| 2852 | int area_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2853 | { |
| 2854 | struct mmc_blk_data *md; |
| 2855 | int devidx, ret; |
| 2856 | |
Heiner Kallweit | a04848c | 2017-02-01 19:44:22 +0100 | [diff] [blame] | 2857 | devidx = ida_simple_get(&mmc_blk_ida, 0, max_devices, GFP_KERNEL); |
Shawn Lin | e7b4276 | 2017-08-23 15:38:31 +0800 | [diff] [blame] | 2858 | if (devidx < 0) { |
| 2859 | /* |
| 2860 | * We get -ENOSPC because there are no more any available |
| 2861 | * devidx. The reason may be that, either userspace haven't yet |
| 2862 | * unmounted the partitions, which postpones mmc_blk_release() |
| 2863 | * from being called, or the device has more partitions than |
| 2864 | * what we support. |
| 2865 | */ |
| 2866 | if (devidx == -ENOSPC) |
| 2867 | dev_err(mmc_dev(card->host), |
| 2868 | "no more device IDs available\n"); |
| 2869 | |
Heiner Kallweit | a04848c | 2017-02-01 19:44:22 +0100 | [diff] [blame] | 2870 | return ERR_PTR(devidx); |
Shawn Lin | e7b4276 | 2017-08-23 15:38:31 +0800 | [diff] [blame] | 2871 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2872 | |
Yoann Padioleau | dd00cc4 | 2007-07-19 01:49:03 -0700 | [diff] [blame] | 2873 | md = kzalloc(sizeof(struct mmc_blk_data), GFP_KERNEL); |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2874 | if (!md) { |
| 2875 | ret = -ENOMEM; |
| 2876 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2877 | } |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2878 | |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 2879 | md->area_type = area_type; |
| 2880 | |
Andrei Warkentin | f06c915 | 2011-04-21 22:46:13 -0500 | [diff] [blame] | 2881 | /* |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2882 | * Set the read-only status based on the supported commands |
| 2883 | * and the write protect switch. |
| 2884 | */ |
| 2885 | md->read_only = mmc_blk_readonly(card); |
| 2886 | |
Olof Johansson | 5e71b7a | 2010-09-17 21:19:57 -0400 | [diff] [blame] | 2887 | md->disk = alloc_disk(perdev_minors); |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2888 | if (md->disk == NULL) { |
| 2889 | ret = -ENOMEM; |
| 2890 | goto err_kfree; |
| 2891 | } |
| 2892 | |
| 2893 | spin_lock_init(&md->lock); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2894 | INIT_LIST_HEAD(&md->part); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 2895 | INIT_LIST_HEAD(&md->rpmbs); |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2896 | md->usage = 1; |
| 2897 | |
Adrian Hunter | d09408a | 2011-06-23 13:40:28 +0300 | [diff] [blame] | 2898 | ret = mmc_init_queue(&md->queue, card, &md->lock, subname); |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2899 | if (ret) |
| 2900 | goto err_putdisk; |
| 2901 | |
Linus Walleij | 7db3028 | 2016-11-18 13:36:15 +0100 | [diff] [blame] | 2902 | md->queue.blkdata = md; |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2903 | |
Adrian Hunter | 41e3efd | 2017-11-29 15:40:59 +0200 | [diff] [blame] | 2904 | /* |
| 2905 | * Keep an extra reference to the queue so that we can shutdown the |
| 2906 | * queue (i.e. call blk_cleanup_queue()) while there are still |
| 2907 | * references to the 'md'. The corresponding blk_put_queue() is in |
| 2908 | * mmc_blk_put(). |
| 2909 | */ |
| 2910 | if (!blk_get_queue(md->queue.queue)) { |
| 2911 | mmc_cleanup_queue(&md->queue); |
| 2912 | goto err_putdisk; |
| 2913 | } |
| 2914 | |
Pierre Ossman | fe6b4c8 | 2007-05-14 17:27:29 +0200 | [diff] [blame] | 2915 | md->disk->major = MMC_BLOCK_MAJOR; |
Olof Johansson | 5e71b7a | 2010-09-17 21:19:57 -0400 | [diff] [blame] | 2916 | md->disk->first_minor = devidx * perdev_minors; |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2917 | md->disk->fops = &mmc_bdops; |
| 2918 | md->disk->private_data = md; |
| 2919 | md->disk->queue = md->queue.queue; |
Dan Williams | 307d8e6 | 2016-06-20 10:40:44 -0700 | [diff] [blame] | 2920 | md->parent = parent; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2921 | set_disk_ro(md->disk, md->read_only || default_ro); |
Colin Cross | 382c55f | 2015-10-22 10:00:41 -0700 | [diff] [blame] | 2922 | md->disk->flags = GENHD_FL_EXT_DEVT; |
Ulf Hansson | f5b4d71 | 2014-09-03 11:02:23 +0200 | [diff] [blame] | 2923 | if (area_type & (MMC_BLK_DATA_AREA_RPMB | MMC_BLK_DATA_AREA_BOOT)) |
Loic Pallardy | 53d8f97 | 2012-08-06 17:12:28 +0200 | [diff] [blame] | 2924 | md->disk->flags |= GENHD_FL_NO_PART_SCAN; |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2925 | |
| 2926 | /* |
| 2927 | * As discussed on lkml, GENHD_FL_REMOVABLE should: |
| 2928 | * |
| 2929 | * - be set for removable media with permanent block devices |
| 2930 | * - be unset for removable block devices with permanent media |
| 2931 | * |
| 2932 | * Since MMC block devices clearly fall under the second |
| 2933 | * case, we do not set GENHD_FL_REMOVABLE. Userspace |
| 2934 | * should use the block device creation/destruction hotplug |
| 2935 | * messages to tell when the card is present. |
| 2936 | */ |
| 2937 | |
Andrei Warkentin | f06c915 | 2011-04-21 22:46:13 -0500 | [diff] [blame] | 2938 | snprintf(md->disk->disk_name, sizeof(md->disk->disk_name), |
Ulf Hansson | 9aaf343 | 2016-04-06 16:12:08 +0200 | [diff] [blame] | 2939 | "mmcblk%u%s", card->host->index, subname ? subname : ""); |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2940 | |
Saugata Das | a5075eb | 2012-05-17 16:32:21 +0530 | [diff] [blame] | 2941 | if (mmc_card_mmc(card)) |
| 2942 | blk_queue_logical_block_size(md->queue.queue, |
| 2943 | card->ext_csd.data_sector_size); |
| 2944 | else |
| 2945 | blk_queue_logical_block_size(md->queue.queue, 512); |
| 2946 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2947 | set_capacity(md->disk, size); |
Andrei Warkentin | d0c97cf | 2011-05-23 15:06:36 -0500 | [diff] [blame] | 2948 | |
Andrei Warkentin | f0d8997 | 2011-05-23 15:06:38 -0500 | [diff] [blame] | 2949 | if (mmc_host_cmd23(card->host)) { |
Daniel Glöckner | 0ed50ab | 2016-08-30 14:17:30 +0200 | [diff] [blame] | 2950 | if ((mmc_card_mmc(card) && |
| 2951 | card->csd.mmca_vsn >= CSD_SPEC_VER_3) || |
Andrei Warkentin | f0d8997 | 2011-05-23 15:06:38 -0500 | [diff] [blame] | 2952 | (mmc_card_sd(card) && |
| 2953 | card->scr.cmds & SD_SCR_CMD23_SUPPORT)) |
| 2954 | md->flags |= MMC_BLK_CMD23; |
| 2955 | } |
Andrei Warkentin | d0c97cf | 2011-05-23 15:06:36 -0500 | [diff] [blame] | 2956 | |
| 2957 | if (mmc_card_mmc(card) && |
| 2958 | md->flags & MMC_BLK_CMD23 && |
| 2959 | ((card->ext_csd.rel_param & EXT_CSD_WR_REL_PARAM_EN) || |
| 2960 | card->ext_csd.rel_sectors)) { |
| 2961 | md->flags |= MMC_BLK_REL_WR; |
Jens Axboe | e9d5c74 | 2016-03-30 10:17:20 -0600 | [diff] [blame] | 2962 | blk_queue_write_cache(md->queue.queue, true, true); |
Andrei Warkentin | d0c97cf | 2011-05-23 15:06:36 -0500 | [diff] [blame] | 2963 | } |
| 2964 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2965 | return md; |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2966 | |
| 2967 | err_putdisk: |
| 2968 | put_disk(md->disk); |
| 2969 | err_kfree: |
| 2970 | kfree(md); |
| 2971 | out: |
Heiner Kallweit | a04848c | 2017-02-01 19:44:22 +0100 | [diff] [blame] | 2972 | ida_simple_remove(&mmc_blk_ida, devidx); |
Russell King | a6f6c96 | 2006-01-03 22:38:44 +0000 | [diff] [blame] | 2973 | return ERR_PTR(ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2974 | } |
| 2975 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2976 | static struct mmc_blk_data *mmc_blk_alloc(struct mmc_card *card) |
| 2977 | { |
| 2978 | sector_t size; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2979 | |
| 2980 | if (!mmc_card_sd(card) && mmc_card_blockaddr(card)) { |
| 2981 | /* |
| 2982 | * The EXT_CSD sector count is in number or 512 byte |
| 2983 | * sectors. |
| 2984 | */ |
| 2985 | size = card->ext_csd.sectors; |
| 2986 | } else { |
| 2987 | /* |
| 2988 | * The CSD capacity field is in units of read_blkbits. |
| 2989 | * set_capacity takes units of 512 bytes. |
| 2990 | */ |
Kuninori Morimoto | 087de9e | 2015-05-11 07:35:28 +0000 | [diff] [blame] | 2991 | size = (typeof(sector_t))card->csd.capacity |
| 2992 | << (card->csd.read_blkbits - 9); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2993 | } |
| 2994 | |
Tobias Klauser | 7a30f2a | 2015-01-21 15:56:44 +0100 | [diff] [blame] | 2995 | return mmc_blk_alloc_req(card, &card->dev, size, false, NULL, |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 2996 | MMC_BLK_DATA_AREA_MAIN); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 2997 | } |
| 2998 | |
| 2999 | static int mmc_blk_alloc_part(struct mmc_card *card, |
| 3000 | struct mmc_blk_data *md, |
| 3001 | unsigned int part_type, |
| 3002 | sector_t size, |
| 3003 | bool default_ro, |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 3004 | const char *subname, |
| 3005 | int area_type) |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3006 | { |
| 3007 | char cap_str[10]; |
| 3008 | struct mmc_blk_data *part_md; |
| 3009 | |
| 3010 | part_md = mmc_blk_alloc_req(card, disk_to_dev(md->disk), size, default_ro, |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 3011 | subname, area_type); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3012 | if (IS_ERR(part_md)) |
| 3013 | return PTR_ERR(part_md); |
| 3014 | part_md->part_type = part_type; |
| 3015 | list_add(&part_md->part, &md->part); |
| 3016 | |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 3017 | string_get_size((u64)get_capacity(part_md->disk), 512, STRING_UNITS_2, |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3018 | cap_str, sizeof(cap_str)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 3019 | pr_info("%s: %s %s partition %u %s\n", |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3020 | part_md->disk->disk_name, mmc_card_id(card), |
| 3021 | mmc_card_name(card), part_md->part_type, cap_str); |
| 3022 | return 0; |
| 3023 | } |
| 3024 | |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3025 | /** |
| 3026 | * mmc_rpmb_ioctl() - ioctl handler for the RPMB chardev |
| 3027 | * @filp: the character device file |
| 3028 | * @cmd: the ioctl() command |
| 3029 | * @arg: the argument from userspace |
| 3030 | * |
| 3031 | * This will essentially just redirect the ioctl()s coming in over to |
| 3032 | * the main block device spawning the RPMB character device. |
| 3033 | */ |
| 3034 | static long mmc_rpmb_ioctl(struct file *filp, unsigned int cmd, |
| 3035 | unsigned long arg) |
| 3036 | { |
| 3037 | struct mmc_rpmb_data *rpmb = filp->private_data; |
| 3038 | int ret; |
| 3039 | |
| 3040 | switch (cmd) { |
| 3041 | case MMC_IOC_CMD: |
| 3042 | ret = mmc_blk_ioctl_cmd(rpmb->md, |
| 3043 | (struct mmc_ioc_cmd __user *)arg, |
| 3044 | rpmb); |
| 3045 | break; |
| 3046 | case MMC_IOC_MULTI_CMD: |
| 3047 | ret = mmc_blk_ioctl_multi_cmd(rpmb->md, |
| 3048 | (struct mmc_ioc_multi_cmd __user *)arg, |
| 3049 | rpmb); |
| 3050 | break; |
| 3051 | default: |
| 3052 | ret = -EINVAL; |
| 3053 | break; |
| 3054 | } |
| 3055 | |
| 3056 | return 0; |
| 3057 | } |
| 3058 | |
| 3059 | #ifdef CONFIG_COMPAT |
| 3060 | static long mmc_rpmb_ioctl_compat(struct file *filp, unsigned int cmd, |
| 3061 | unsigned long arg) |
| 3062 | { |
| 3063 | return mmc_rpmb_ioctl(filp, cmd, (unsigned long)compat_ptr(arg)); |
| 3064 | } |
| 3065 | #endif |
| 3066 | |
| 3067 | static int mmc_rpmb_chrdev_open(struct inode *inode, struct file *filp) |
| 3068 | { |
| 3069 | struct mmc_rpmb_data *rpmb = container_of(inode->i_cdev, |
| 3070 | struct mmc_rpmb_data, chrdev); |
| 3071 | |
| 3072 | get_device(&rpmb->dev); |
| 3073 | filp->private_data = rpmb; |
Linus Walleij | 1c87f73 | 2017-10-04 11:10:07 +0200 | [diff] [blame] | 3074 | mmc_blk_get(rpmb->md->disk); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3075 | |
| 3076 | return nonseekable_open(inode, filp); |
| 3077 | } |
| 3078 | |
| 3079 | static int mmc_rpmb_chrdev_release(struct inode *inode, struct file *filp) |
| 3080 | { |
| 3081 | struct mmc_rpmb_data *rpmb = container_of(inode->i_cdev, |
| 3082 | struct mmc_rpmb_data, chrdev); |
| 3083 | |
| 3084 | put_device(&rpmb->dev); |
Linus Walleij | 1c87f73 | 2017-10-04 11:10:07 +0200 | [diff] [blame] | 3085 | mmc_blk_put(rpmb->md); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3086 | |
| 3087 | return 0; |
| 3088 | } |
| 3089 | |
| 3090 | static const struct file_operations mmc_rpmb_fileops = { |
| 3091 | .release = mmc_rpmb_chrdev_release, |
| 3092 | .open = mmc_rpmb_chrdev_open, |
| 3093 | .owner = THIS_MODULE, |
| 3094 | .llseek = no_llseek, |
| 3095 | .unlocked_ioctl = mmc_rpmb_ioctl, |
| 3096 | #ifdef CONFIG_COMPAT |
| 3097 | .compat_ioctl = mmc_rpmb_ioctl_compat, |
| 3098 | #endif |
| 3099 | }; |
| 3100 | |
Linus Walleij | 1c87f73 | 2017-10-04 11:10:07 +0200 | [diff] [blame] | 3101 | static void mmc_blk_rpmb_device_release(struct device *dev) |
| 3102 | { |
| 3103 | struct mmc_rpmb_data *rpmb = dev_get_drvdata(dev); |
| 3104 | |
| 3105 | ida_simple_remove(&mmc_rpmb_ida, rpmb->id); |
| 3106 | kfree(rpmb); |
| 3107 | } |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3108 | |
| 3109 | static int mmc_blk_alloc_rpmb_part(struct mmc_card *card, |
| 3110 | struct mmc_blk_data *md, |
| 3111 | unsigned int part_index, |
| 3112 | sector_t size, |
| 3113 | const char *subname) |
| 3114 | { |
| 3115 | int devidx, ret; |
| 3116 | char rpmb_name[DISK_NAME_LEN]; |
| 3117 | char cap_str[10]; |
| 3118 | struct mmc_rpmb_data *rpmb; |
| 3119 | |
| 3120 | /* This creates the minor number for the RPMB char device */ |
| 3121 | devidx = ida_simple_get(&mmc_rpmb_ida, 0, max_devices, GFP_KERNEL); |
| 3122 | if (devidx < 0) |
| 3123 | return devidx; |
| 3124 | |
| 3125 | rpmb = kzalloc(sizeof(*rpmb), GFP_KERNEL); |
Linus Walleij | 1c87f73 | 2017-10-04 11:10:07 +0200 | [diff] [blame] | 3126 | if (!rpmb) { |
| 3127 | ida_simple_remove(&mmc_rpmb_ida, devidx); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3128 | return -ENOMEM; |
Linus Walleij | 1c87f73 | 2017-10-04 11:10:07 +0200 | [diff] [blame] | 3129 | } |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3130 | |
| 3131 | snprintf(rpmb_name, sizeof(rpmb_name), |
| 3132 | "mmcblk%u%s", card->host->index, subname ? subname : ""); |
| 3133 | |
| 3134 | rpmb->id = devidx; |
| 3135 | rpmb->part_index = part_index; |
| 3136 | rpmb->dev.init_name = rpmb_name; |
| 3137 | rpmb->dev.bus = &mmc_rpmb_bus_type; |
| 3138 | rpmb->dev.devt = MKDEV(MAJOR(mmc_rpmb_devt), rpmb->id); |
| 3139 | rpmb->dev.parent = &card->dev; |
Linus Walleij | 1c87f73 | 2017-10-04 11:10:07 +0200 | [diff] [blame] | 3140 | rpmb->dev.release = mmc_blk_rpmb_device_release; |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3141 | device_initialize(&rpmb->dev); |
| 3142 | dev_set_drvdata(&rpmb->dev, rpmb); |
| 3143 | rpmb->md = md; |
| 3144 | |
| 3145 | cdev_init(&rpmb->chrdev, &mmc_rpmb_fileops); |
| 3146 | rpmb->chrdev.owner = THIS_MODULE; |
| 3147 | ret = cdev_device_add(&rpmb->chrdev, &rpmb->dev); |
| 3148 | if (ret) { |
| 3149 | pr_err("%s: could not add character device\n", rpmb_name); |
Linus Walleij | 1c87f73 | 2017-10-04 11:10:07 +0200 | [diff] [blame] | 3150 | goto out_put_device; |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3151 | } |
| 3152 | |
| 3153 | list_add(&rpmb->node, &md->rpmbs); |
| 3154 | |
| 3155 | string_get_size((u64)size, 512, STRING_UNITS_2, |
| 3156 | cap_str, sizeof(cap_str)); |
| 3157 | |
| 3158 | pr_info("%s: %s %s partition %u %s, chardev (%d:%d)\n", |
| 3159 | rpmb_name, mmc_card_id(card), |
| 3160 | mmc_card_name(card), EXT_CSD_PART_CONFIG_ACC_RPMB, cap_str, |
| 3161 | MAJOR(mmc_rpmb_devt), rpmb->id); |
| 3162 | |
| 3163 | return 0; |
| 3164 | |
Linus Walleij | 1c87f73 | 2017-10-04 11:10:07 +0200 | [diff] [blame] | 3165 | out_put_device: |
| 3166 | put_device(&rpmb->dev); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3167 | return ret; |
| 3168 | } |
| 3169 | |
| 3170 | static void mmc_blk_remove_rpmb_part(struct mmc_rpmb_data *rpmb) |
Linus Walleij | 1c87f73 | 2017-10-04 11:10:07 +0200 | [diff] [blame] | 3171 | |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3172 | { |
| 3173 | cdev_device_del(&rpmb->chrdev, &rpmb->dev); |
Linus Walleij | 1c87f73 | 2017-10-04 11:10:07 +0200 | [diff] [blame] | 3174 | put_device(&rpmb->dev); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3175 | } |
| 3176 | |
Namjae Jeon | e0c368d | 2011-10-06 23:41:38 +0900 | [diff] [blame] | 3177 | /* MMC Physical partitions consist of two boot partitions and |
| 3178 | * up to four general purpose partitions. |
| 3179 | * For each partition enabled in EXT_CSD a block device will be allocatedi |
| 3180 | * to provide access to the partition. |
| 3181 | */ |
| 3182 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3183 | static int mmc_blk_alloc_parts(struct mmc_card *card, struct mmc_blk_data *md) |
| 3184 | { |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3185 | int idx, ret; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3186 | |
| 3187 | if (!mmc_card_mmc(card)) |
| 3188 | return 0; |
| 3189 | |
Namjae Jeon | e0c368d | 2011-10-06 23:41:38 +0900 | [diff] [blame] | 3190 | for (idx = 0; idx < card->nr_parts; idx++) { |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3191 | if (card->part[idx].area_type & MMC_BLK_DATA_AREA_RPMB) { |
| 3192 | /* |
| 3193 | * RPMB partitions does not provide block access, they |
| 3194 | * are only accessed using ioctl():s. Thus create |
| 3195 | * special RPMB block devices that do not have a |
| 3196 | * backing block queue for these. |
| 3197 | */ |
| 3198 | ret = mmc_blk_alloc_rpmb_part(card, md, |
| 3199 | card->part[idx].part_cfg, |
| 3200 | card->part[idx].size >> 9, |
| 3201 | card->part[idx].name); |
| 3202 | if (ret) |
| 3203 | return ret; |
| 3204 | } else if (card->part[idx].size) { |
Namjae Jeon | e0c368d | 2011-10-06 23:41:38 +0900 | [diff] [blame] | 3205 | ret = mmc_blk_alloc_part(card, md, |
| 3206 | card->part[idx].part_cfg, |
| 3207 | card->part[idx].size >> 9, |
| 3208 | card->part[idx].force_ro, |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 3209 | card->part[idx].name, |
| 3210 | card->part[idx].area_type); |
Namjae Jeon | e0c368d | 2011-10-06 23:41:38 +0900 | [diff] [blame] | 3211 | if (ret) |
| 3212 | return ret; |
| 3213 | } |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3214 | } |
| 3215 | |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3216 | return 0; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3217 | } |
| 3218 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3219 | static void mmc_blk_remove_req(struct mmc_blk_data *md) |
| 3220 | { |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 3221 | struct mmc_card *card; |
| 3222 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3223 | if (md) { |
Paul Taysom | fdfa20c | 2013-06-04 14:42:40 -0700 | [diff] [blame] | 3224 | /* |
| 3225 | * Flush remaining requests and free queues. It |
| 3226 | * is freeing the queue that stops new requests |
| 3227 | * from being accepted. |
| 3228 | */ |
Franck Jullien | 8efb83a | 2013-07-24 15:17:48 +0200 | [diff] [blame] | 3229 | card = md->queue.card; |
Paul Taysom | fdfa20c | 2013-06-04 14:42:40 -0700 | [diff] [blame] | 3230 | mmc_cleanup_queue(&md->queue); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3231 | if (md->disk->flags & GENHD_FL_UP) { |
| 3232 | device_remove_file(disk_to_dev(md->disk), &md->force_ro); |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 3233 | if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) && |
| 3234 | card->ext_csd.boot_ro_lockable) |
| 3235 | device_remove_file(disk_to_dev(md->disk), |
| 3236 | &md->power_ro_lock); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3237 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3238 | del_gendisk(md->disk); |
| 3239 | } |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3240 | mmc_blk_put(md); |
| 3241 | } |
| 3242 | } |
| 3243 | |
| 3244 | static void mmc_blk_remove_parts(struct mmc_card *card, |
| 3245 | struct mmc_blk_data *md) |
| 3246 | { |
| 3247 | struct list_head *pos, *q; |
| 3248 | struct mmc_blk_data *part_md; |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3249 | struct mmc_rpmb_data *rpmb; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3250 | |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3251 | /* Remove RPMB partitions */ |
| 3252 | list_for_each_safe(pos, q, &md->rpmbs) { |
| 3253 | rpmb = list_entry(pos, struct mmc_rpmb_data, node); |
| 3254 | list_del(pos); |
| 3255 | mmc_blk_remove_rpmb_part(rpmb); |
| 3256 | } |
| 3257 | /* Remove block partitions */ |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3258 | list_for_each_safe(pos, q, &md->part) { |
| 3259 | part_md = list_entry(pos, struct mmc_blk_data, part); |
| 3260 | list_del(pos); |
| 3261 | mmc_blk_remove_req(part_md); |
| 3262 | } |
| 3263 | } |
| 3264 | |
| 3265 | static int mmc_add_disk(struct mmc_blk_data *md) |
| 3266 | { |
| 3267 | int ret; |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 3268 | struct mmc_card *card = md->queue.card; |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3269 | |
Dan Williams | 307d8e6 | 2016-06-20 10:40:44 -0700 | [diff] [blame] | 3270 | device_add_disk(md->parent, md->disk); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3271 | md->force_ro.show = force_ro_show; |
| 3272 | md->force_ro.store = force_ro_store; |
Rabin Vincent | 641c318 | 2011-04-23 20:52:58 +0530 | [diff] [blame] | 3273 | sysfs_attr_init(&md->force_ro.attr); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3274 | md->force_ro.attr.name = "force_ro"; |
| 3275 | md->force_ro.attr.mode = S_IRUGO | S_IWUSR; |
| 3276 | ret = device_create_file(disk_to_dev(md->disk), &md->force_ro); |
| 3277 | if (ret) |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 3278 | goto force_ro_fail; |
| 3279 | |
| 3280 | if ((md->area_type & MMC_BLK_DATA_AREA_BOOT) && |
| 3281 | card->ext_csd.boot_ro_lockable) { |
Al Viro | 8818739 | 2012-03-20 06:00:24 -0400 | [diff] [blame] | 3282 | umode_t mode; |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 3283 | |
| 3284 | if (card->ext_csd.boot_ro_lock & EXT_CSD_BOOT_WP_B_PWR_WP_DIS) |
| 3285 | mode = S_IRUGO; |
| 3286 | else |
| 3287 | mode = S_IRUGO | S_IWUSR; |
| 3288 | |
| 3289 | md->power_ro_lock.show = power_ro_lock_show; |
| 3290 | md->power_ro_lock.store = power_ro_lock_store; |
Rabin Vincent | 00d9ac0 | 2012-02-01 16:31:56 +0100 | [diff] [blame] | 3291 | sysfs_attr_init(&md->power_ro_lock.attr); |
Johan Rudholm | add710e | 2011-12-02 08:51:06 +0100 | [diff] [blame] | 3292 | md->power_ro_lock.attr.mode = mode; |
| 3293 | md->power_ro_lock.attr.name = |
| 3294 | "ro_lock_until_next_power_on"; |
| 3295 | ret = device_create_file(disk_to_dev(md->disk), |
| 3296 | &md->power_ro_lock); |
| 3297 | if (ret) |
| 3298 | goto power_ro_lock_fail; |
| 3299 | } |
| 3300 | return ret; |
| 3301 | |
| 3302 | power_ro_lock_fail: |
| 3303 | device_remove_file(disk_to_dev(md->disk), &md->force_ro); |
| 3304 | force_ro_fail: |
| 3305 | del_gendisk(md->disk); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3306 | |
| 3307 | return ret; |
| 3308 | } |
| 3309 | |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3310 | #ifdef CONFIG_DEBUG_FS |
| 3311 | |
| 3312 | static int mmc_dbg_card_status_get(void *data, u64 *val) |
| 3313 | { |
| 3314 | struct mmc_card *card = data; |
| 3315 | struct mmc_blk_data *md = dev_get_drvdata(&card->dev); |
| 3316 | struct mmc_queue *mq = &md->queue; |
| 3317 | struct request *req; |
| 3318 | int ret; |
| 3319 | |
| 3320 | /* Ask the block layer about the card status */ |
| 3321 | req = blk_get_request(mq->queue, REQ_OP_DRV_IN, __GFP_RECLAIM); |
Adrian Hunter | fb8e456e | 2017-11-21 15:42:28 +0200 | [diff] [blame] | 3322 | if (IS_ERR(req)) |
| 3323 | return PTR_ERR(req); |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3324 | req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_GET_CARD_STATUS; |
| 3325 | blk_execute_rq(mq->queue, NULL, req, 0); |
| 3326 | ret = req_to_mmc_queue_req(req)->drv_op_result; |
| 3327 | if (ret >= 0) { |
| 3328 | *val = ret; |
| 3329 | ret = 0; |
| 3330 | } |
Adrian Hunter | 34c089e | 2017-11-21 15:42:27 +0200 | [diff] [blame] | 3331 | blk_put_request(req); |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3332 | |
| 3333 | return ret; |
| 3334 | } |
| 3335 | DEFINE_SIMPLE_ATTRIBUTE(mmc_dbg_card_status_fops, mmc_dbg_card_status_get, |
| 3336 | NULL, "%08llx\n"); |
| 3337 | |
| 3338 | /* That is two digits * 512 + 1 for newline */ |
| 3339 | #define EXT_CSD_STR_LEN 1025 |
| 3340 | |
| 3341 | static int mmc_ext_csd_open(struct inode *inode, struct file *filp) |
| 3342 | { |
| 3343 | struct mmc_card *card = inode->i_private; |
| 3344 | struct mmc_blk_data *md = dev_get_drvdata(&card->dev); |
| 3345 | struct mmc_queue *mq = &md->queue; |
| 3346 | struct request *req; |
| 3347 | char *buf; |
| 3348 | ssize_t n = 0; |
| 3349 | u8 *ext_csd; |
| 3350 | int err, i; |
| 3351 | |
| 3352 | buf = kmalloc(EXT_CSD_STR_LEN + 1, GFP_KERNEL); |
| 3353 | if (!buf) |
| 3354 | return -ENOMEM; |
| 3355 | |
| 3356 | /* Ask the block layer for the EXT CSD */ |
| 3357 | req = blk_get_request(mq->queue, REQ_OP_DRV_IN, __GFP_RECLAIM); |
Adrian Hunter | fb8e456e | 2017-11-21 15:42:28 +0200 | [diff] [blame] | 3358 | if (IS_ERR(req)) { |
| 3359 | err = PTR_ERR(req); |
| 3360 | goto out_free; |
| 3361 | } |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3362 | req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_GET_EXT_CSD; |
| 3363 | req_to_mmc_queue_req(req)->drv_op_data = &ext_csd; |
| 3364 | blk_execute_rq(mq->queue, NULL, req, 0); |
| 3365 | err = req_to_mmc_queue_req(req)->drv_op_result; |
Adrian Hunter | 34c089e | 2017-11-21 15:42:27 +0200 | [diff] [blame] | 3366 | blk_put_request(req); |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3367 | if (err) { |
| 3368 | pr_err("FAILED %d\n", err); |
| 3369 | goto out_free; |
| 3370 | } |
| 3371 | |
| 3372 | for (i = 0; i < 512; i++) |
| 3373 | n += sprintf(buf + n, "%02x", ext_csd[i]); |
| 3374 | n += sprintf(buf + n, "\n"); |
| 3375 | |
| 3376 | if (n != EXT_CSD_STR_LEN) { |
| 3377 | err = -EINVAL; |
| 3378 | goto out_free; |
| 3379 | } |
| 3380 | |
| 3381 | filp->private_data = buf; |
| 3382 | kfree(ext_csd); |
| 3383 | return 0; |
| 3384 | |
| 3385 | out_free: |
| 3386 | kfree(buf); |
| 3387 | return err; |
| 3388 | } |
| 3389 | |
| 3390 | static ssize_t mmc_ext_csd_read(struct file *filp, char __user *ubuf, |
| 3391 | size_t cnt, loff_t *ppos) |
| 3392 | { |
| 3393 | char *buf = filp->private_data; |
| 3394 | |
| 3395 | return simple_read_from_buffer(ubuf, cnt, ppos, |
| 3396 | buf, EXT_CSD_STR_LEN); |
| 3397 | } |
| 3398 | |
| 3399 | static int mmc_ext_csd_release(struct inode *inode, struct file *file) |
| 3400 | { |
| 3401 | kfree(file->private_data); |
| 3402 | return 0; |
| 3403 | } |
| 3404 | |
| 3405 | static const struct file_operations mmc_dbg_ext_csd_fops = { |
| 3406 | .open = mmc_ext_csd_open, |
| 3407 | .read = mmc_ext_csd_read, |
| 3408 | .release = mmc_ext_csd_release, |
| 3409 | .llseek = default_llseek, |
| 3410 | }; |
| 3411 | |
Adrian Hunter | f9f0da9 | 2017-11-21 15:42:30 +0200 | [diff] [blame] | 3412 | static int mmc_blk_add_debugfs(struct mmc_card *card, struct mmc_blk_data *md) |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3413 | { |
| 3414 | struct dentry *root; |
| 3415 | |
| 3416 | if (!card->debugfs_root) |
| 3417 | return 0; |
| 3418 | |
| 3419 | root = card->debugfs_root; |
| 3420 | |
| 3421 | if (mmc_card_mmc(card) || mmc_card_sd(card)) { |
Adrian Hunter | f9f0da9 | 2017-11-21 15:42:30 +0200 | [diff] [blame] | 3422 | md->status_dentry = |
| 3423 | debugfs_create_file("status", S_IRUSR, root, card, |
| 3424 | &mmc_dbg_card_status_fops); |
| 3425 | if (!md->status_dentry) |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3426 | return -EIO; |
| 3427 | } |
| 3428 | |
| 3429 | if (mmc_card_mmc(card)) { |
Adrian Hunter | f9f0da9 | 2017-11-21 15:42:30 +0200 | [diff] [blame] | 3430 | md->ext_csd_dentry = |
| 3431 | debugfs_create_file("ext_csd", S_IRUSR, root, card, |
| 3432 | &mmc_dbg_ext_csd_fops); |
| 3433 | if (!md->ext_csd_dentry) |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3434 | return -EIO; |
| 3435 | } |
| 3436 | |
| 3437 | return 0; |
| 3438 | } |
| 3439 | |
Adrian Hunter | f9f0da9 | 2017-11-21 15:42:30 +0200 | [diff] [blame] | 3440 | static void mmc_blk_remove_debugfs(struct mmc_card *card, |
| 3441 | struct mmc_blk_data *md) |
| 3442 | { |
| 3443 | if (!card->debugfs_root) |
| 3444 | return; |
| 3445 | |
| 3446 | if (!IS_ERR_OR_NULL(md->status_dentry)) { |
| 3447 | debugfs_remove(md->status_dentry); |
| 3448 | md->status_dentry = NULL; |
| 3449 | } |
| 3450 | |
| 3451 | if (!IS_ERR_OR_NULL(md->ext_csd_dentry)) { |
| 3452 | debugfs_remove(md->ext_csd_dentry); |
| 3453 | md->ext_csd_dentry = NULL; |
| 3454 | } |
| 3455 | } |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3456 | |
| 3457 | #else |
| 3458 | |
Adrian Hunter | f9f0da9 | 2017-11-21 15:42:30 +0200 | [diff] [blame] | 3459 | static int mmc_blk_add_debugfs(struct mmc_card *card, struct mmc_blk_data *md) |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3460 | { |
| 3461 | return 0; |
| 3462 | } |
| 3463 | |
Adrian Hunter | f9f0da9 | 2017-11-21 15:42:30 +0200 | [diff] [blame] | 3464 | static void mmc_blk_remove_debugfs(struct mmc_card *card, |
| 3465 | struct mmc_blk_data *md) |
| 3466 | { |
| 3467 | } |
| 3468 | |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3469 | #endif /* CONFIG_DEBUG_FS */ |
| 3470 | |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3471 | static int mmc_blk_probe(struct mmc_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3472 | { |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3473 | struct mmc_blk_data *md, *part_md; |
Pierre Ossman | a7bbb57 | 2008-09-06 10:57:57 +0200 | [diff] [blame] | 3474 | char cap_str[10]; |
| 3475 | |
Pierre Ossman | 912490d | 2005-05-21 10:27:02 +0100 | [diff] [blame] | 3476 | /* |
| 3477 | * Check that the card supports the command class(es) we need. |
| 3478 | */ |
| 3479 | if (!(card->csd.cmdclass & CCC_BLOCK_READ)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3480 | return -ENODEV; |
| 3481 | |
Shawn Lin | 8c7cdbf | 2017-02-15 16:36:47 +0800 | [diff] [blame] | 3482 | mmc_fixup_device(card, mmc_blk_fixups); |
Lukas Czerner | 5204d00 | 2014-06-18 13:18:07 +0200 | [diff] [blame] | 3483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3484 | md = mmc_blk_alloc(card); |
Linus Walleij | 304419d | 2017-05-18 11:29:32 +0200 | [diff] [blame] | 3485 | if (IS_ERR(md)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3486 | return PTR_ERR(md); |
| 3487 | |
James Bottomley | b9f28d8 | 2015-03-05 18:47:01 -0800 | [diff] [blame] | 3488 | string_get_size((u64)get_capacity(md->disk), 512, STRING_UNITS_2, |
Pierre Ossman | a7bbb57 | 2008-09-06 10:57:57 +0200 | [diff] [blame] | 3489 | cap_str, sizeof(cap_str)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 3490 | pr_info("%s: %s %s %s %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3491 | md->disk->disk_name, mmc_card_id(card), mmc_card_name(card), |
Pierre Ossman | a7bbb57 | 2008-09-06 10:57:57 +0200 | [diff] [blame] | 3492 | cap_str, md->read_only ? "(ro)" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3493 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3494 | if (mmc_blk_alloc_parts(card, md)) |
| 3495 | goto out; |
| 3496 | |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3497 | dev_set_drvdata(&card->dev, md); |
Andrei Warkentin | 6f60c22 | 2011-04-11 19:11:04 -0400 | [diff] [blame] | 3498 | |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3499 | if (mmc_add_disk(md)) |
| 3500 | goto out; |
| 3501 | |
| 3502 | list_for_each_entry(part_md, &md->part, part) { |
| 3503 | if (mmc_add_disk(part_md)) |
| 3504 | goto out; |
| 3505 | } |
Ulf Hansson | e94cfef | 2013-05-02 14:02:38 +0200 | [diff] [blame] | 3506 | |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3507 | /* Add two debugfs entries */ |
Adrian Hunter | f9f0da9 | 2017-11-21 15:42:30 +0200 | [diff] [blame] | 3508 | mmc_blk_add_debugfs(card, md); |
Linus Walleij | 627c3cc | 2017-08-20 23:39:08 +0200 | [diff] [blame] | 3509 | |
Ulf Hansson | e94cfef | 2013-05-02 14:02:38 +0200 | [diff] [blame] | 3510 | pm_runtime_set_autosuspend_delay(&card->dev, 3000); |
| 3511 | pm_runtime_use_autosuspend(&card->dev); |
| 3512 | |
| 3513 | /* |
| 3514 | * Don't enable runtime PM for SD-combo cards here. Leave that |
| 3515 | * decision to be taken during the SDIO init sequence instead. |
| 3516 | */ |
| 3517 | if (card->type != MMC_TYPE_SD_COMBO) { |
| 3518 | pm_runtime_set_active(&card->dev); |
| 3519 | pm_runtime_enable(&card->dev); |
| 3520 | } |
| 3521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3522 | return 0; |
| 3523 | |
| 3524 | out: |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3525 | mmc_blk_remove_parts(card, md); |
| 3526 | mmc_blk_remove_req(md); |
Ulf Hansson | 5865f28 | 2012-03-22 11:47:26 +0100 | [diff] [blame] | 3527 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3528 | } |
| 3529 | |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3530 | static void mmc_blk_remove(struct mmc_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3531 | { |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3532 | struct mmc_blk_data *md = dev_get_drvdata(&card->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3533 | |
Adrian Hunter | f9f0da9 | 2017-11-21 15:42:30 +0200 | [diff] [blame] | 3534 | mmc_blk_remove_debugfs(card, md); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3535 | mmc_blk_remove_parts(card, md); |
Ulf Hansson | e94cfef | 2013-05-02 14:02:38 +0200 | [diff] [blame] | 3536 | pm_runtime_get_sync(&card->dev); |
Adrian Hunter | ddd6fa7 | 2011-06-23 13:40:26 +0300 | [diff] [blame] | 3537 | mmc_claim_host(card->host); |
Linus Walleij | 1f797ed | 2017-08-20 23:39:10 +0200 | [diff] [blame] | 3538 | mmc_blk_part_switch(card, md->part_type); |
Adrian Hunter | ddd6fa7 | 2011-06-23 13:40:26 +0300 | [diff] [blame] | 3539 | mmc_release_host(card->host); |
Ulf Hansson | e94cfef | 2013-05-02 14:02:38 +0200 | [diff] [blame] | 3540 | if (card->type != MMC_TYPE_SD_COMBO) |
| 3541 | pm_runtime_disable(&card->dev); |
| 3542 | pm_runtime_put_noidle(&card->dev); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3543 | mmc_blk_remove_req(md); |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3544 | dev_set_drvdata(&card->dev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3545 | } |
| 3546 | |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3547 | static int _mmc_blk_suspend(struct mmc_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3548 | { |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3549 | struct mmc_blk_data *part_md; |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3550 | struct mmc_blk_data *md = dev_get_drvdata(&card->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3551 | |
| 3552 | if (md) { |
| 3553 | mmc_queue_suspend(&md->queue); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3554 | list_for_each_entry(part_md, &md->part, part) { |
| 3555 | mmc_queue_suspend(&part_md->queue); |
| 3556 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3557 | } |
| 3558 | return 0; |
| 3559 | } |
| 3560 | |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3561 | static void mmc_blk_shutdown(struct mmc_card *card) |
Ulf Hansson | 7628774 | 2013-06-10 17:03:40 +0200 | [diff] [blame] | 3562 | { |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3563 | _mmc_blk_suspend(card); |
Ulf Hansson | 7628774 | 2013-06-10 17:03:40 +0200 | [diff] [blame] | 3564 | } |
| 3565 | |
Ulf Hansson | 0967edc | 2014-10-06 11:29:42 +0200 | [diff] [blame] | 3566 | #ifdef CONFIG_PM_SLEEP |
| 3567 | static int mmc_blk_suspend(struct device *dev) |
Ulf Hansson | 7628774 | 2013-06-10 17:03:40 +0200 | [diff] [blame] | 3568 | { |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3569 | struct mmc_card *card = mmc_dev_to_card(dev); |
| 3570 | |
| 3571 | return _mmc_blk_suspend(card); |
Ulf Hansson | 7628774 | 2013-06-10 17:03:40 +0200 | [diff] [blame] | 3572 | } |
| 3573 | |
Ulf Hansson | 0967edc | 2014-10-06 11:29:42 +0200 | [diff] [blame] | 3574 | static int mmc_blk_resume(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3575 | { |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3576 | struct mmc_blk_data *part_md; |
Ulf Hansson | fc95e30 | 2014-10-06 14:34:09 +0200 | [diff] [blame] | 3577 | struct mmc_blk_data *md = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | |
| 3579 | if (md) { |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3580 | /* |
| 3581 | * Resume involves the card going into idle state, |
| 3582 | * so current partition is always the main one. |
| 3583 | */ |
| 3584 | md->part_curr = md->part_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3585 | mmc_queue_resume(&md->queue); |
Andrei Warkentin | 371a689 | 2011-04-11 18:10:25 -0500 | [diff] [blame] | 3586 | list_for_each_entry(part_md, &md->part, part) { |
| 3587 | mmc_queue_resume(&part_md->queue); |
| 3588 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3589 | } |
| 3590 | return 0; |
| 3591 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3592 | #endif |
| 3593 | |
Ulf Hansson | 0967edc | 2014-10-06 11:29:42 +0200 | [diff] [blame] | 3594 | static SIMPLE_DEV_PM_OPS(mmc_blk_pm_ops, mmc_blk_suspend, mmc_blk_resume); |
| 3595 | |
Ulf Hansson | 96541ba | 2015-04-14 13:06:12 +0200 | [diff] [blame] | 3596 | static struct mmc_driver mmc_driver = { |
| 3597 | .drv = { |
| 3598 | .name = "mmcblk", |
| 3599 | .pm = &mmc_blk_pm_ops, |
| 3600 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3601 | .probe = mmc_blk_probe, |
| 3602 | .remove = mmc_blk_remove, |
Ulf Hansson | 7628774 | 2013-06-10 17:03:40 +0200 | [diff] [blame] | 3603 | .shutdown = mmc_blk_shutdown, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3604 | }; |
| 3605 | |
| 3606 | static int __init mmc_blk_init(void) |
| 3607 | { |
Akinobu Mita | 9d4e98e | 2008-09-13 19:02:07 +0900 | [diff] [blame] | 3608 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3609 | |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3610 | res = bus_register(&mmc_rpmb_bus_type); |
| 3611 | if (res < 0) { |
| 3612 | pr_err("mmcblk: could not register RPMB bus type\n"); |
| 3613 | return res; |
| 3614 | } |
| 3615 | res = alloc_chrdev_region(&mmc_rpmb_devt, 0, MAX_DEVICES, "rpmb"); |
| 3616 | if (res < 0) { |
| 3617 | pr_err("mmcblk: failed to allocate rpmb chrdev region\n"); |
| 3618 | goto out_bus_unreg; |
| 3619 | } |
| 3620 | |
Olof Johansson | 5e71b7a | 2010-09-17 21:19:57 -0400 | [diff] [blame] | 3621 | if (perdev_minors != CONFIG_MMC_BLOCK_MINORS) |
| 3622 | pr_info("mmcblk: using %d minors per device\n", perdev_minors); |
| 3623 | |
Ben Hutchings | a26eba6 | 2014-11-06 03:35:09 +0000 | [diff] [blame] | 3624 | max_devices = min(MAX_DEVICES, (1 << MINORBITS) / perdev_minors); |
Olof Johansson | 5e71b7a | 2010-09-17 21:19:57 -0400 | [diff] [blame] | 3625 | |
Pierre Ossman | fe6b4c8 | 2007-05-14 17:27:29 +0200 | [diff] [blame] | 3626 | res = register_blkdev(MMC_BLOCK_MAJOR, "mmc"); |
| 3627 | if (res) |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3628 | goto out_chrdev_unreg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3629 | |
Akinobu Mita | 9d4e98e | 2008-09-13 19:02:07 +0900 | [diff] [blame] | 3630 | res = mmc_register_driver(&mmc_driver); |
| 3631 | if (res) |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3632 | goto out_blkdev_unreg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3633 | |
Akinobu Mita | 9d4e98e | 2008-09-13 19:02:07 +0900 | [diff] [blame] | 3634 | return 0; |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3635 | |
| 3636 | out_blkdev_unreg: |
Akinobu Mita | 9d4e98e | 2008-09-13 19:02:07 +0900 | [diff] [blame] | 3637 | unregister_blkdev(MMC_BLOCK_MAJOR, "mmc"); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3638 | out_chrdev_unreg: |
| 3639 | unregister_chrdev_region(mmc_rpmb_devt, MAX_DEVICES); |
| 3640 | out_bus_unreg: |
| 3641 | bus_unregister(&mmc_rpmb_bus_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3642 | return res; |
| 3643 | } |
| 3644 | |
| 3645 | static void __exit mmc_blk_exit(void) |
| 3646 | { |
| 3647 | mmc_unregister_driver(&mmc_driver); |
Pierre Ossman | fe6b4c8 | 2007-05-14 17:27:29 +0200 | [diff] [blame] | 3648 | unregister_blkdev(MMC_BLOCK_MAJOR, "mmc"); |
Linus Walleij | 9754857 | 2017-09-20 10:02:00 +0200 | [diff] [blame] | 3649 | unregister_chrdev_region(mmc_rpmb_devt, MAX_DEVICES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3650 | } |
| 3651 | |
| 3652 | module_init(mmc_blk_init); |
| 3653 | module_exit(mmc_blk_exit); |
| 3654 | |
| 3655 | MODULE_LICENSE("GPL"); |
| 3656 | MODULE_DESCRIPTION("Multimedia Card (MMC) block device driver"); |
| 3657 | |