2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* linux/include/linux/mmc/host.h
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Host driver specific definitions.
|
|
|
|
*/
|
|
|
|
#ifndef LINUX_MMC_HOST_H
|
|
|
|
#define LINUX_MMC_HOST_H
|
|
|
|
|
2007-09-24 09:15:48 +04:00
|
|
|
#include <linux/leds.h>
|
2012-05-01 18:51:38 +04:00
|
|
|
#include <linux/mutex.h>
|
2015-05-07 13:10:12 +03:00
|
|
|
#include <linux/timer.h>
|
2009-10-07 17:09:06 +04:00
|
|
|
#include <linux/sched.h>
|
2012-01-30 20:46:54 +04:00
|
|
|
#include <linux/device.h>
|
2011-08-19 16:52:37 +04:00
|
|
|
#include <linux/fault-inject.h>
|
2007-09-24 09:15:48 +04:00
|
|
|
|
2007-02-28 17:33:10 +03:00
|
|
|
#include <linux/mmc/core.h>
|
2014-04-23 12:07:35 +04:00
|
|
|
#include <linux/mmc/card.h>
|
2016-05-26 04:56:22 +03:00
|
|
|
#include <linux/mmc/mmc.h>
|
2010-03-06 00:43:31 +03:00
|
|
|
#include <linux/mmc/pm.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
struct mmc_ios {
|
|
|
|
unsigned int clock; /* clock rate */
|
|
|
|
unsigned short vdd;
|
|
|
|
|
2007-03-12 03:15:15 +03:00
|
|
|
/* vdd stores the bit number of the selected voltage range from below. */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
unsigned char bus_mode; /* command output mode */
|
|
|
|
|
|
|
|
#define MMC_BUSMODE_OPENDRAIN 1
|
|
|
|
#define MMC_BUSMODE_PUSHPULL 2
|
|
|
|
|
2005-09-03 19:45:02 +04:00
|
|
|
unsigned char chip_select; /* SPI chip select */
|
|
|
|
|
|
|
|
#define MMC_CS_DONTCARE 0
|
|
|
|
#define MMC_CS_HIGH 1
|
|
|
|
#define MMC_CS_LOW 2
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned char power_mode; /* power supply mode */
|
|
|
|
|
|
|
|
#define MMC_POWER_OFF 0
|
|
|
|
#define MMC_POWER_UP 1
|
|
|
|
#define MMC_POWER_ON 2
|
2014-09-24 13:07:13 +04:00
|
|
|
#define MMC_POWER_UNDEFINED 3
|
2005-09-07 02:18:55 +04:00
|
|
|
|
|
|
|
unsigned char bus_width; /* data bus width */
|
|
|
|
|
|
|
|
#define MMC_BUS_WIDTH_1 0
|
|
|
|
#define MMC_BUS_WIDTH_4 2
|
2008-11-17 15:35:21 +03:00
|
|
|
#define MMC_BUS_WIDTH_8 3
|
2007-02-18 14:07:47 +03:00
|
|
|
|
|
|
|
unsigned char timing; /* timing specification used */
|
|
|
|
|
|
|
|
#define MMC_TIMING_LEGACY 0
|
|
|
|
#define MMC_TIMING_MMC_HS 1
|
|
|
|
#define MMC_TIMING_SD_HS 2
|
2012-10-17 15:04:46 +04:00
|
|
|
#define MMC_TIMING_UHS_SDR12 3
|
|
|
|
#define MMC_TIMING_UHS_SDR25 4
|
|
|
|
#define MMC_TIMING_UHS_SDR50 5
|
|
|
|
#define MMC_TIMING_UHS_SDR104 6
|
|
|
|
#define MMC_TIMING_UHS_DDR50 7
|
2014-03-14 16:11:56 +04:00
|
|
|
#define MMC_TIMING_MMC_DDR52 8
|
|
|
|
#define MMC_TIMING_MMC_HS200 9
|
2014-04-23 12:14:58 +04:00
|
|
|
#define MMC_TIMING_MMC_HS400 10
|
2010-08-24 14:20:26 +04:00
|
|
|
|
mmc: sd: add support for signal voltage switch procedure
Host Controller v3.00 adds another Capabilities register. Apart
from other things, this new register indicates whether the Host
Controller supports SDR50, SDR104, and DDR50 UHS-I modes. The spec
doesn't mention about explicit support for SDR12 and SDR25 UHS-I
modes, so the Host Controller v3.00 should support them by default.
Also if the controller supports SDR104 mode, it will also support
SDR50 mode as well. So depending on the host support, we set the
corresponding MMC_CAP_* flags. One more new register. Host Control2
is added in v3.00, which is used during Signal Voltage Switch
procedure described below.
Since as per v3.00 spec, UHS-I supported hosts should set S18R
to 1, we set S18R (bit 24) of OCR before sending ACMD41. We also
need to set XPC (bit 28) of OCR in case the host can supply >150mA.
This support is indicated by the Maximum Current Capabilities
register of the Host Controller.
If the response of ACMD41 has both CCS and S18A set, we start the
signal voltage switch procedure, which if successfull, will switch
the card from 3.3V signalling to 1.8V signalling. Signal voltage
switch procedure adds support for a new command CMD11 in the
Physical Layer Spec v3.01. As part of this procedure, we need to
set 1.8V Signalling Enable (bit 3) of Host Control2 register, which
if remains set after 5ms, means the switch to 1.8V signalling is
successfull. Otherwise, we clear bit 24 of OCR and retry the
initialization sequence. When we remove the card, and insert the
same or another card, we need to make sure that we start with 3.3V
signalling voltage. So we call mmc_set_signal_voltage() with
MMC_SIGNAL_VOLTAGE_330 set so that we are back to 3.3V signalling
voltage before we actually start initializing the card.
Tested by Zhangfei Gao with a Toshiba uhs card and general hs card,
on mmp2 in SDMA mode.
Signed-off-by: Arindam Nath <arindam.nath@amd.com>
Reviewed-by: Philip Rakity <prakity@marvell.com>
Tested-by: Philip Rakity <prakity@marvell.com>
Acked-by: Zhangfei Gao <zhangfei.gao@marvell.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
2011-05-05 10:48:57 +04:00
|
|
|
unsigned char signal_voltage; /* signalling voltage (1.8V or 3.3V) */
|
|
|
|
|
|
|
|
#define MMC_SIGNAL_VOLTAGE_330 0
|
|
|
|
#define MMC_SIGNAL_VOLTAGE_180 1
|
2011-05-13 09:47:18 +04:00
|
|
|
#define MMC_SIGNAL_VOLTAGE_120 2
|
2011-05-05 10:48:59 +04:00
|
|
|
|
|
|
|
unsigned char drv_type; /* driver type (A, B, C, D) */
|
|
|
|
|
|
|
|
#define MMC_SET_DRIVER_TYPE_B 0
|
|
|
|
#define MMC_SET_DRIVER_TYPE_A 1
|
|
|
|
#define MMC_SET_DRIVER_TYPE_C 2
|
|
|
|
#define MMC_SET_DRIVER_TYPE_D 3
|
2016-05-26 04:56:22 +03:00
|
|
|
|
|
|
|
bool enhanced_strobe; /* hs400es selection */
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct mmc_host_ops {
|
2011-07-01 20:55:22 +04:00
|
|
|
/*
|
|
|
|
* It is optional for the host to implement pre_req and post_req in
|
|
|
|
* order to support double buffering of requests (prepare one
|
|
|
|
* request while another request is active).
|
2011-08-29 17:35:58 +04:00
|
|
|
* pre_req() must always be followed by a post_req().
|
|
|
|
* To undo a call made to pre_req(), call post_req() with
|
|
|
|
* a nonzero err condition.
|
2011-07-01 20:55:22 +04:00
|
|
|
*/
|
|
|
|
void (*post_req)(struct mmc_host *host, struct mmc_request *req,
|
|
|
|
int err);
|
2016-11-23 13:02:24 +03:00
|
|
|
void (*pre_req)(struct mmc_host *host, struct mmc_request *req);
|
2005-04-17 02:20:36 +04:00
|
|
|
void (*request)(struct mmc_host *host, struct mmc_request *req);
|
2016-04-01 18:44:36 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Avoid calling the next three functions too often or in a "fast
|
|
|
|
* path", since underlaying controller might implement them in an
|
|
|
|
* expensive and/or slow way. Also note that these functions might
|
|
|
|
* sleep, so don't call them in the atomic contexts!
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Notes to the set_ios callback:
|
|
|
|
* ios->clock might be 0. For some controllers, setting 0Hz
|
|
|
|
* as any other frequency works. However, some controllers
|
|
|
|
* explicitly need to disable the clock. Otherwise e.g. voltage
|
|
|
|
* switching might fail because the SDCLK is not really quiet.
|
|
|
|
*/
|
|
|
|
void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
|
|
|
|
|
2008-06-17 18:17:15 +04:00
|
|
|
/*
|
2008-06-17 18:17:39 +04:00
|
|
|
* Return values for the get_ro callback should be:
|
|
|
|
* 0 for a read/write card
|
|
|
|
* 1 for a read-only card
|
|
|
|
* -ENOSYS when not supported (equal to NULL callback)
|
|
|
|
* or a negative errno value when something bad happened
|
2016-04-01 18:44:36 +03:00
|
|
|
*/
|
|
|
|
int (*get_ro)(struct mmc_host *host);
|
|
|
|
|
|
|
|
/*
|
2008-09-02 12:14:13 +04:00
|
|
|
* Return values for the get_cd callback should be:
|
2008-06-17 18:17:39 +04:00
|
|
|
* 0 for a absent card
|
|
|
|
* 1 for a present card
|
|
|
|
* -ENOSYS when not supported (equal to NULL callback)
|
|
|
|
* or a negative errno value when something bad happened
|
2008-06-17 18:17:15 +04:00
|
|
|
*/
|
|
|
|
int (*get_cd)(struct mmc_host *host);
|
|
|
|
|
2007-07-24 10:09:39 +04:00
|
|
|
void (*enable_sdio_irq)(struct mmc_host *host, int enable);
|
2010-04-01 12:03:25 +04:00
|
|
|
|
|
|
|
/* optional callback for HC quirks */
|
|
|
|
void (*init_card)(struct mmc_host *host, struct mmc_card *card);
|
mmc: sd: add support for signal voltage switch procedure
Host Controller v3.00 adds another Capabilities register. Apart
from other things, this new register indicates whether the Host
Controller supports SDR50, SDR104, and DDR50 UHS-I modes. The spec
doesn't mention about explicit support for SDR12 and SDR25 UHS-I
modes, so the Host Controller v3.00 should support them by default.
Also if the controller supports SDR104 mode, it will also support
SDR50 mode as well. So depending on the host support, we set the
corresponding MMC_CAP_* flags. One more new register. Host Control2
is added in v3.00, which is used during Signal Voltage Switch
procedure described below.
Since as per v3.00 spec, UHS-I supported hosts should set S18R
to 1, we set S18R (bit 24) of OCR before sending ACMD41. We also
need to set XPC (bit 28) of OCR in case the host can supply >150mA.
This support is indicated by the Maximum Current Capabilities
register of the Host Controller.
If the response of ACMD41 has both CCS and S18A set, we start the
signal voltage switch procedure, which if successfull, will switch
the card from 3.3V signalling to 1.8V signalling. Signal voltage
switch procedure adds support for a new command CMD11 in the
Physical Layer Spec v3.01. As part of this procedure, we need to
set 1.8V Signalling Enable (bit 3) of Host Control2 register, which
if remains set after 5ms, means the switch to 1.8V signalling is
successfull. Otherwise, we clear bit 24 of OCR and retry the
initialization sequence. When we remove the card, and insert the
same or another card, we need to make sure that we start with 3.3V
signalling voltage. So we call mmc_set_signal_voltage() with
MMC_SIGNAL_VOLTAGE_330 set so that we are back to 3.3V signalling
voltage before we actually start initializing the card.
Tested by Zhangfei Gao with a Toshiba uhs card and general hs card,
on mmp2 in SDMA mode.
Signed-off-by: Arindam Nath <arindam.nath@amd.com>
Reviewed-by: Philip Rakity <prakity@marvell.com>
Tested-by: Philip Rakity <prakity@marvell.com>
Acked-by: Zhangfei Gao <zhangfei.gao@marvell.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
2011-05-05 10:48:57 +04:00
|
|
|
|
|
|
|
int (*start_signal_voltage_switch)(struct mmc_host *host, struct mmc_ios *ios);
|
2012-01-11 23:04:52 +04:00
|
|
|
|
2013-01-28 18:08:26 +04:00
|
|
|
/* Check if the card is pulling dat[0:3] low */
|
|
|
|
int (*card_busy)(struct mmc_host *host);
|
|
|
|
|
2012-01-11 23:04:52 +04:00
|
|
|
/* The tuning command opcode value is different for SD and eMMC cards */
|
|
|
|
int (*execute_tuning)(struct mmc_host *host, u32 opcode);
|
2014-04-23 12:14:58 +04:00
|
|
|
|
|
|
|
/* Prepare HS400 target operating frequency depending host driver */
|
|
|
|
int (*prepare_hs400_tuning)(struct mmc_host *host, struct mmc_ios *ios);
|
2016-05-26 04:56:22 +03:00
|
|
|
/* Prepare enhanced strobe depending host driver */
|
|
|
|
void (*hs400_enhanced_strobe)(struct mmc_host *host,
|
|
|
|
struct mmc_ios *ios);
|
2015-02-06 15:12:54 +03:00
|
|
|
int (*select_drive_strength)(struct mmc_card *card,
|
|
|
|
unsigned int max_dtr, int host_drv,
|
2015-02-06 15:12:52 +03:00
|
|
|
int card_drv, int *drv_type);
|
2011-08-29 17:42:11 +04:00
|
|
|
void (*hw_reset)(struct mmc_host *host);
|
2012-12-04 19:51:32 +04:00
|
|
|
void (*card_event)(struct mmc_host *host);
|
2014-09-03 06:08:53 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Optional callback to support controllers with HW issues for multiple
|
|
|
|
* I/O. Returns the number of supported blocks for the request.
|
|
|
|
*/
|
|
|
|
int (*multi_io_quirk)(struct mmc_card *card,
|
|
|
|
unsigned int direction, int blk_size);
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct mmc_card;
|
|
|
|
struct device;
|
|
|
|
|
2011-07-01 20:55:22 +04:00
|
|
|
struct mmc_async_req {
|
|
|
|
/* active mmc request */
|
|
|
|
struct mmc_request *mrq;
|
|
|
|
/*
|
|
|
|
* Check error status of completed mmc request.
|
|
|
|
* Returns 0 if success otherwise non zero.
|
|
|
|
*/
|
2016-11-04 13:05:19 +03:00
|
|
|
enum mmc_blk_status (*err_check)(struct mmc_card *, struct mmc_async_req *);
|
2011-07-01 20:55:22 +04:00
|
|
|
};
|
|
|
|
|
2012-05-01 17:40:15 +04:00
|
|
|
/**
|
|
|
|
* struct mmc_slot - MMC slot functions
|
|
|
|
*
|
|
|
|
* @cd_irq: MMC/SD-card slot hotplug detection IRQ or -EINVAL
|
|
|
|
* @handler_priv: MMC/SD-card slot context
|
|
|
|
*
|
|
|
|
* Some MMC/SD host controllers implement slot-functions like card and
|
|
|
|
* write-protect detection natively. However, a large number of controllers
|
|
|
|
* leave these functions to the CPU. This struct provides a hook to attach
|
|
|
|
* such slot-function drivers.
|
|
|
|
*/
|
|
|
|
struct mmc_slot {
|
|
|
|
int cd_irq;
|
2011-12-26 05:40:03 +04:00
|
|
|
void *handler_priv;
|
|
|
|
};
|
|
|
|
|
2013-01-14 23:28:17 +04:00
|
|
|
/**
|
|
|
|
* mmc_context_info - synchronization details for mmc context
|
|
|
|
* @is_done_rcv wake up reason was done request
|
|
|
|
* @is_new_req wake up reason was new request
|
|
|
|
* @is_waiting_last_req mmc context waiting for single running request
|
|
|
|
* @wait wait queue
|
|
|
|
*/
|
|
|
|
struct mmc_context_info {
|
|
|
|
bool is_done_rcv;
|
|
|
|
bool is_new_req;
|
|
|
|
bool is_waiting_last_req;
|
|
|
|
wait_queue_head_t wait;
|
|
|
|
};
|
|
|
|
|
2012-06-20 10:28:43 +04:00
|
|
|
struct regulator;
|
2014-11-28 16:38:36 +03:00
|
|
|
struct mmc_pwrseq;
|
2012-06-20 10:28:43 +04:00
|
|
|
|
|
|
|
struct mmc_supply {
|
|
|
|
struct regulator *vmmc; /* Card power supply */
|
|
|
|
struct regulator *vqmmc; /* Optional Vccq supply */
|
|
|
|
};
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
struct mmc_host {
|
2006-09-12 19:00:10 +04:00
|
|
|
struct device *parent;
|
|
|
|
struct device class_dev;
|
2005-08-19 12:42:52 +04:00
|
|
|
int index;
|
2006-09-03 17:43:33 +04:00
|
|
|
const struct mmc_host_ops *ops;
|
2014-11-28 16:38:36 +03:00
|
|
|
struct mmc_pwrseq *pwrseq;
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned int f_min;
|
|
|
|
unsigned int f_max;
|
2010-09-06 05:37:19 +04:00
|
|
|
unsigned int f_init;
|
2005-04-17 02:20:36 +04:00
|
|
|
u32 ocr_avail;
|
2010-12-08 12:04:30 +03:00
|
|
|
u32 ocr_avail_sdio; /* SDIO-specific OCR */
|
|
|
|
u32 ocr_avail_sd; /* SD-specific OCR */
|
|
|
|
u32 ocr_avail_mmc; /* MMC-specific OCR */
|
2015-11-05 18:11:12 +03:00
|
|
|
#ifdef CONFIG_PM_SLEEP
|
mmc: fix all hangs related to mmc/sd card insert/removal during suspend/resume
If you don't use CONFIG_MMC_UNSAFE_RESUME, as soon as you attempt to
suspend, the card will be removed, therefore this patch doesn't change the
behavior of this option.
However the removal will be done by pm notifier, which runs while
userspace is still not frozen and thus can freely use del_gendisk, without
the risk of deadlock which would happen otherwise.
Card detect workqueue is now disabled while userspace is frozen, Therefore
if you do use CONFIG_MMC_UNSAFE_RESUME, and remove the card during
suspend, the removal will be detected as soon as userspace is unfrozen,
again at the moment it is safe to call del_gendisk.
Tested with and without CONFIG_MMC_UNSAFE_RESUME with suspend and hibernate.
[akpm@linux-foundation.org: clean up function prototype]
[akpm@linux-foundation.org: fix CONFIG_PM-n linkage, small cleanups]
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Maxim Levitsky <maximlevitsky@gmail.com>
Cc: David Brownell <david-b@pacbell.net>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: <linux-mmc@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2010-08-11 05:01:41 +04:00
|
|
|
struct notifier_block pm_notify;
|
2015-11-05 18:11:12 +03:00
|
|
|
#endif
|
2012-07-04 09:31:48 +04:00
|
|
|
u32 max_current_330;
|
|
|
|
u32 max_current_300;
|
|
|
|
u32 max_current_180;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-03-17 05:39:00 +03:00
|
|
|
#define MMC_VDD_165_195 0x00000080 /* VDD voltage 1.65 - 1.95 */
|
2007-02-10 00:49:31 +03:00
|
|
|
#define MMC_VDD_20_21 0x00000100 /* VDD voltage 2.0 ~ 2.1 */
|
|
|
|
#define MMC_VDD_21_22 0x00000200 /* VDD voltage 2.1 ~ 2.2 */
|
|
|
|
#define MMC_VDD_22_23 0x00000400 /* VDD voltage 2.2 ~ 2.3 */
|
|
|
|
#define MMC_VDD_23_24 0x00000800 /* VDD voltage 2.3 ~ 2.4 */
|
|
|
|
#define MMC_VDD_24_25 0x00001000 /* VDD voltage 2.4 ~ 2.5 */
|
|
|
|
#define MMC_VDD_25_26 0x00002000 /* VDD voltage 2.5 ~ 2.6 */
|
|
|
|
#define MMC_VDD_26_27 0x00004000 /* VDD voltage 2.6 ~ 2.7 */
|
|
|
|
#define MMC_VDD_27_28 0x00008000 /* VDD voltage 2.7 ~ 2.8 */
|
|
|
|
#define MMC_VDD_28_29 0x00010000 /* VDD voltage 2.8 ~ 2.9 */
|
|
|
|
#define MMC_VDD_29_30 0x00020000 /* VDD voltage 2.9 ~ 3.0 */
|
|
|
|
#define MMC_VDD_30_31 0x00040000 /* VDD voltage 3.0 ~ 3.1 */
|
|
|
|
#define MMC_VDD_31_32 0x00080000 /* VDD voltage 3.1 ~ 3.2 */
|
|
|
|
#define MMC_VDD_32_33 0x00100000 /* VDD voltage 3.2 ~ 3.3 */
|
|
|
|
#define MMC_VDD_33_34 0x00200000 /* VDD voltage 3.3 ~ 3.4 */
|
|
|
|
#define MMC_VDD_34_35 0x00400000 /* VDD voltage 3.4 ~ 3.5 */
|
|
|
|
#define MMC_VDD_35_36 0x00800000 /* VDD voltage 3.5 ~ 3.6 */
|
|
|
|
|
2012-11-14 16:35:51 +04:00
|
|
|
u32 caps; /* Host capabilities */
|
2005-09-07 02:18:55 +04:00
|
|
|
|
|
|
|
#define MMC_CAP_4_BIT_DATA (1 << 0) /* Can the host do 4 bit transfers */
|
2008-07-06 03:10:27 +04:00
|
|
|
#define MMC_CAP_MMC_HIGHSPEED (1 << 1) /* Can do MMC high-speed timing */
|
|
|
|
#define MMC_CAP_SD_HIGHSPEED (1 << 2) /* Can do SD high-speed timing */
|
|
|
|
#define MMC_CAP_SDIO_IRQ (1 << 3) /* Can signal pending SDIO IRQs */
|
|
|
|
#define MMC_CAP_SPI (1 << 4) /* Talks only SPI protocols */
|
|
|
|
#define MMC_CAP_NEEDS_POLL (1 << 5) /* Needs polling for card-detection */
|
2008-11-17 15:35:21 +03:00
|
|
|
#define MMC_CAP_8_BIT_DATA (1 << 6) /* Can the host do 8 bit transfers */
|
2013-05-02 16:02:39 +04:00
|
|
|
#define MMC_CAP_AGGRESSIVE_PM (1 << 7) /* Suspend (e)MMC/SD at idle */
|
2009-09-23 03:44:32 +04:00
|
|
|
#define MMC_CAP_NONREMOVABLE (1 << 8) /* Nonremovable e.g. eMMC */
|
2009-09-23 03:44:34 +04:00
|
|
|
#define MMC_CAP_WAIT_WHILE_BUSY (1 << 9) /* Waits while card is busy */
|
mmc: add erase, secure erase, trim and secure trim operations
SD/MMC cards tend to support an erase operation. In addition, eMMC v4.4
cards can support secure erase, trim and secure trim operations that are
all variants of the basic erase command.
SD/MMC device attributes "erase_size" and "preferred_erase_size" have been
added.
"erase_size" is the minimum size, in bytes, of an erase operation. For
MMC, "erase_size" is the erase group size reported by the card. Note that
"erase_size" does not apply to trim or secure trim operations where the
minimum size is always one 512 byte sector. For SD, "erase_size" is 512
if the card is block-addressed, 0 otherwise.
SD/MMC cards can erase an arbitrarily large area up to and
including the whole card. When erasing a large area it may
be desirable to do it in smaller chunks for three reasons:
1. A single erase command will make all other I/O on the card
wait. This is not a problem if the whole card is being erased, but
erasing one partition will make I/O for another partition on the
same card wait for the duration of the erase - which could be a
several minutes.
2. To be able to inform the user of erase progress.
3. The erase timeout becomes too large to be very useful.
Because the erase timeout contains a margin which is multiplied by
the size of the erase area, the value can end up being several
minutes for large areas.
"erase_size" is not the most efficient unit to erase (especially for SD
where it is just one sector), hence "preferred_erase_size" provides a good
chunk size for erasing large areas.
For MMC, "preferred_erase_size" is the high-capacity erase size if a card
specifies one, otherwise it is based on the capacity of the card.
For SD, "preferred_erase_size" is the allocation unit size specified by
the card.
"preferred_erase_size" is in bytes.
Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
Acked-by: Jens Axboe <axboe@kernel.dk>
Cc: Kyungmin Park <kmpark@infradead.org>
Cc: Madhusudhan Chikkature <madhu.cr@ti.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Ben Gardiner <bengardiner@nanometrics.ca>
Cc: <linux-mmc@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2010-08-12 01:17:46 +04:00
|
|
|
#define MMC_CAP_ERASE (1 << 10) /* Allow erase/trim commands */
|
2010-10-01 01:37:23 +04:00
|
|
|
#define MMC_CAP_1_8V_DDR (1 << 11) /* can support */
|
|
|
|
/* DDR mode at 1.8V */
|
|
|
|
#define MMC_CAP_1_2V_DDR (1 << 12) /* can support */
|
|
|
|
/* DDR mode at 1.2V */
|
2010-11-19 10:29:09 +03:00
|
|
|
#define MMC_CAP_POWER_OFF_CARD (1 << 13) /* Can power off after boot */
|
2010-12-15 10:14:24 +03:00
|
|
|
#define MMC_CAP_BUS_WIDTH_TEST (1 << 14) /* CMD14/CMD19 bus width ok */
|
mmc: sd: add support for signal voltage switch procedure
Host Controller v3.00 adds another Capabilities register. Apart
from other things, this new register indicates whether the Host
Controller supports SDR50, SDR104, and DDR50 UHS-I modes. The spec
doesn't mention about explicit support for SDR12 and SDR25 UHS-I
modes, so the Host Controller v3.00 should support them by default.
Also if the controller supports SDR104 mode, it will also support
SDR50 mode as well. So depending on the host support, we set the
corresponding MMC_CAP_* flags. One more new register. Host Control2
is added in v3.00, which is used during Signal Voltage Switch
procedure described below.
Since as per v3.00 spec, UHS-I supported hosts should set S18R
to 1, we set S18R (bit 24) of OCR before sending ACMD41. We also
need to set XPC (bit 28) of OCR in case the host can supply >150mA.
This support is indicated by the Maximum Current Capabilities
register of the Host Controller.
If the response of ACMD41 has both CCS and S18A set, we start the
signal voltage switch procedure, which if successfull, will switch
the card from 3.3V signalling to 1.8V signalling. Signal voltage
switch procedure adds support for a new command CMD11 in the
Physical Layer Spec v3.01. As part of this procedure, we need to
set 1.8V Signalling Enable (bit 3) of Host Control2 register, which
if remains set after 5ms, means the switch to 1.8V signalling is
successfull. Otherwise, we clear bit 24 of OCR and retry the
initialization sequence. When we remove the card, and insert the
same or another card, we need to make sure that we start with 3.3V
signalling voltage. So we call mmc_set_signal_voltage() with
MMC_SIGNAL_VOLTAGE_330 set so that we are back to 3.3V signalling
voltage before we actually start initializing the card.
Tested by Zhangfei Gao with a Toshiba uhs card and general hs card,
on mmp2 in SDMA mode.
Signed-off-by: Arindam Nath <arindam.nath@amd.com>
Reviewed-by: Philip Rakity <prakity@marvell.com>
Tested-by: Philip Rakity <prakity@marvell.com>
Acked-by: Zhangfei Gao <zhangfei.gao@marvell.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
2011-05-05 10:48:57 +04:00
|
|
|
#define MMC_CAP_UHS_SDR12 (1 << 15) /* Host supports UHS SDR12 mode */
|
|
|
|
#define MMC_CAP_UHS_SDR25 (1 << 16) /* Host supports UHS SDR25 mode */
|
|
|
|
#define MMC_CAP_UHS_SDR50 (1 << 17) /* Host supports UHS SDR50 mode */
|
|
|
|
#define MMC_CAP_UHS_SDR104 (1 << 18) /* Host supports UHS SDR104 mode */
|
|
|
|
#define MMC_CAP_UHS_DDR50 (1 << 19) /* Host supports UHS DDR50 mode */
|
2011-05-05 10:48:59 +04:00
|
|
|
#define MMC_CAP_DRIVER_TYPE_A (1 << 23) /* Host supports Driver Type A */
|
|
|
|
#define MMC_CAP_DRIVER_TYPE_C (1 << 24) /* Host supports Driver Type C */
|
|
|
|
#define MMC_CAP_DRIVER_TYPE_D (1 << 25) /* Host supports Driver Type D */
|
mmc: core: Add support for sending commands during data transfer
A host controller driver exposes its capability using caps flag
MMC_CAP_CMD_DURING_TFR. A driver with that capability can accept requests
that are marked mrq->cap_cmd_during_tfr = true. Then the driver informs the
upper layers when the command line is available for further commands by
calling mmc_command_done(). Because of that, the driver will not then
automatically send STOP commands, and it is the responsibility of the upper
layer to send a STOP command if it is required.
For requests submitted through the mmc_wait_for_req() interface, the caller
sets mrq->cap_cmd_during_tfr = true which causes mmc_wait_for_req() in fact
not to wait. The caller can then send commands that do not use the data
lines. Finally the caller can wait for the transfer to complete by calling
mmc_wait_for_req_done() which is now exported.
For requests submitted through the mmc_start_req() interface, the caller
again sets mrq->cap_cmd_during_tfr = true, but mmc_start_req() anyway does
not wait. The caller can then send commands that do not use the data
lines. Finally the caller can wait for the transfer to complete in the
normal way i.e. calling mmc_start_req() again.
Irrespective of how a cap_cmd_during_tfr request is started,
mmc_is_req_done() can be called if the upper layer needs to determine if
the request is done. However the appropriate waiting function (either
mmc_wait_for_req_done() or mmc_start_req()) must still be called.
The implementation consists primarily of a new completion
mrq->cmd_completion which notifies when the command line is available for
further commands. That completion is completed by mmc_command_done().
When there is an ongoing data transfer, calls to mmc_wait_for_req() will
automatically wait on that completion, so the caller does not have to do
anything special.
Note, in the case of errors, the driver may call mmc_request_done() without
calling mmc_command_done() because mmc_request_done() always calls
mmc_command_done().
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
2016-08-16 13:44:11 +03:00
|
|
|
#define MMC_CAP_CMD_DURING_TFR (1 << 29) /* Commands during data transfer */
|
2011-05-24 00:06:36 +04:00
|
|
|
#define MMC_CAP_CMD23 (1 << 30) /* CMD23 supported. */
|
2011-08-29 17:42:11 +04:00
|
|
|
#define MMC_CAP_HW_RESET (1 << 31) /* Hardware reset */
|
2005-09-07 02:18:55 +04:00
|
|
|
|
2012-11-14 16:35:51 +04:00
|
|
|
u32 caps2; /* More host capabilities */
|
2011-09-23 13:48:21 +04:00
|
|
|
|
|
|
|
#define MMC_CAP2_BOOTPART_NOACC (1 << 0) /* Boot partition no access */
|
2013-06-10 19:03:46 +04:00
|
|
|
#define MMC_CAP2_FULL_PWR_CYCLE (1 << 2) /* Can do full power cycle */
|
2012-01-11 23:04:52 +04:00
|
|
|
#define MMC_CAP2_HS200_1_8V_SDR (1 << 5) /* can support */
|
|
|
|
#define MMC_CAP2_HS200_1_2V_SDR (1 << 6) /* can support */
|
|
|
|
#define MMC_CAP2_HS200 (MMC_CAP2_HS200_1_8V_SDR | \
|
|
|
|
MMC_CAP2_HS200_1_2V_SDR)
|
2012-03-13 13:19:13 +04:00
|
|
|
#define MMC_CAP2_HC_ERASE_SZ (1 << 9) /* High-capacity erase size */
|
2012-05-01 17:49:52 +04:00
|
|
|
#define MMC_CAP2_CD_ACTIVE_HIGH (1 << 10) /* Card-detect signal active high */
|
|
|
|
#define MMC_CAP2_RO_ACTIVE_HIGH (1 << 11) /* Write-protect signal active high */
|
2013-02-06 12:01:43 +04:00
|
|
|
#define MMC_CAP2_PACKED_RD (1 << 12) /* Allow packed read */
|
|
|
|
#define MMC_CAP2_PACKED_WR (1 << 13) /* Allow packed write */
|
|
|
|
#define MMC_CAP2_PACKED_CMD (MMC_CAP2_PACKED_RD | \
|
|
|
|
MMC_CAP2_PACKED_WR)
|
2013-04-04 17:41:06 +04:00
|
|
|
#define MMC_CAP2_NO_PRESCAN_POWERUP (1 << 14) /* Don't power up before scan */
|
2014-04-23 12:14:58 +04:00
|
|
|
#define MMC_CAP2_HS400_1_8V (1 << 15) /* Can support HS400 1.8V */
|
|
|
|
#define MMC_CAP2_HS400_1_2V (1 << 16) /* Can support HS400 1.2V */
|
|
|
|
#define MMC_CAP2_HS400 (MMC_CAP2_HS400_1_8V | \
|
|
|
|
MMC_CAP2_HS400_1_2V)
|
2014-11-06 16:19:05 +03:00
|
|
|
#define MMC_CAP2_HSX00_1_2V (MMC_CAP2_HS200_1_2V_SDR | MMC_CAP2_HS400_1_2V)
|
2014-04-25 15:55:30 +04:00
|
|
|
#define MMC_CAP2_SDIO_IRQ_NOTHREAD (1 << 17)
|
2015-05-06 21:31:19 +03:00
|
|
|
#define MMC_CAP2_NO_WRITE_PROTECT (1 << 18) /* No physical write protect pin, assume that card is always read-write */
|
2015-11-25 17:39:51 +03:00
|
|
|
#define MMC_CAP2_NO_SDIO (1 << 19) /* Do not send SDIO commands during initialization */
|
2016-05-26 04:56:12 +03:00
|
|
|
#define MMC_CAP2_HS400_ES (1 << 20) /* Host supports enhanced strobe */
|
2016-06-21 16:12:46 +03:00
|
|
|
#define MMC_CAP2_NO_SD (1 << 21) /* Do not send SD commands during initialization */
|
2016-07-01 10:45:28 +03:00
|
|
|
#define MMC_CAP2_NO_MMC (1 << 22) /* Do not send (e)MMC commands during initialization */
|
2011-09-23 13:48:21 +04:00
|
|
|
|
2010-03-06 00:43:31 +03:00
|
|
|
mmc_pm_flag_t pm_caps; /* supported pm features */
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* host specific block data */
|
|
|
|
unsigned int max_seg_size; /* see blk_queue_max_segment_size */
|
2010-09-10 09:33:59 +04:00
|
|
|
unsigned short max_segs; /* see blk_queue_max_segments */
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned short unused;
|
2006-11-21 19:55:45 +03:00
|
|
|
unsigned int max_req_size; /* maximum number of bytes in one req */
|
2006-11-21 19:54:23 +03:00
|
|
|
unsigned int max_blk_size; /* maximum size of one mmc block */
|
2006-11-21 19:55:45 +03:00
|
|
|
unsigned int max_blk_count; /* maximum number of blocks in one req */
|
2013-12-18 12:57:38 +04:00
|
|
|
unsigned int max_busy_timeout; /* max busy timeout in ms */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* private data */
|
2006-12-31 02:11:32 +03:00
|
|
|
spinlock_t lock; /* lock for claim and bus ops */
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
struct mmc_ios ios; /* current io bus settings */
|
|
|
|
|
2007-08-08 20:09:01 +04:00
|
|
|
/* group bitfields together to minimize padding */
|
|
|
|
unsigned int use_spi_crc:1;
|
|
|
|
unsigned int claimed:1; /* host exclusively claimed */
|
|
|
|
unsigned int bus_dead:1; /* bus has been released */
|
|
|
|
#ifdef CONFIG_MMC_DEBUG
|
|
|
|
unsigned int removed:1; /* host is being removed */
|
|
|
|
#endif
|
2015-05-07 13:10:12 +03:00
|
|
|
unsigned int can_retune:1; /* re-tuning can be used */
|
|
|
|
unsigned int doing_retune:1; /* re-tuning in progress */
|
|
|
|
unsigned int retune_now:1; /* do re-tuning at next req */
|
2016-05-16 15:35:24 +03:00
|
|
|
unsigned int retune_paused:1; /* re-tuning is temporarily disabled */
|
2007-08-08 20:09:01 +04:00
|
|
|
|
mmc: fix all hangs related to mmc/sd card insert/removal during suspend/resume
If you don't use CONFIG_MMC_UNSAFE_RESUME, as soon as you attempt to
suspend, the card will be removed, therefore this patch doesn't change the
behavior of this option.
However the removal will be done by pm notifier, which runs while
userspace is still not frozen and thus can freely use del_gendisk, without
the risk of deadlock which would happen otherwise.
Card detect workqueue is now disabled while userspace is frozen, Therefore
if you do use CONFIG_MMC_UNSAFE_RESUME, and remove the card during
suspend, the removal will be detected as soon as userspace is unfrozen,
again at the moment it is safe to call del_gendisk.
Tested with and without CONFIG_MMC_UNSAFE_RESUME with suspend and hibernate.
[akpm@linux-foundation.org: clean up function prototype]
[akpm@linux-foundation.org: fix CONFIG_PM-n linkage, small cleanups]
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Maxim Levitsky <maximlevitsky@gmail.com>
Cc: David Brownell <david-b@pacbell.net>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: <linux-mmc@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2010-08-11 05:01:41 +04:00
|
|
|
int rescan_disable; /* disable card detection */
|
2012-08-23 15:40:55 +04:00
|
|
|
int rescan_entered; /* used with nonremovable devices */
|
2009-09-23 03:44:29 +04:00
|
|
|
|
2015-05-07 13:10:12 +03:00
|
|
|
int need_retune; /* re-tuning is needed */
|
|
|
|
int hold_retune; /* hold off re-tuning */
|
|
|
|
unsigned int retune_period; /* re-tuning period in secs */
|
|
|
|
struct timer_list retune_timer; /* for periodic re-tuning */
|
|
|
|
|
2014-04-09 02:19:43 +04:00
|
|
|
bool trigger_card_event; /* card_event necessary */
|
|
|
|
|
2007-01-03 21:47:29 +03:00
|
|
|
struct mmc_card *card; /* device attached to this host */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
wait_queue_head_t wq;
|
2009-09-23 03:44:30 +04:00
|
|
|
struct task_struct *claimer; /* task that has host claimed */
|
|
|
|
int claim_cnt; /* "claim" nesting count */
|
2006-12-26 17:11:23 +03:00
|
|
|
|
2006-11-22 17:57:56 +03:00
|
|
|
struct delayed_work detect;
|
2011-11-28 18:22:00 +04:00
|
|
|
int detect_change; /* card detect flag */
|
2012-05-01 17:40:15 +04:00
|
|
|
struct mmc_slot slot;
|
2005-09-09 01:46:00 +04:00
|
|
|
|
2006-12-31 02:11:32 +03:00
|
|
|
const struct mmc_bus_ops *bus_ops; /* current bus driver */
|
|
|
|
unsigned int bus_refs; /* reference counter */
|
|
|
|
|
2007-06-30 18:29:41 +04:00
|
|
|
unsigned int sdio_irqs;
|
|
|
|
struct task_struct *sdio_irq_thread;
|
2012-04-17 03:16:54 +04:00
|
|
|
bool sdio_irq_pending;
|
2007-06-30 18:29:41 +04:00
|
|
|
atomic_t sdio_irq_thread_abort;
|
|
|
|
|
2010-03-06 00:43:31 +03:00
|
|
|
mmc_pm_flag_t pm_flags; /* requested pm features */
|
|
|
|
|
2007-09-24 09:15:48 +04:00
|
|
|
struct led_trigger *led; /* activity led */
|
|
|
|
|
2010-09-29 09:08:27 +04:00
|
|
|
#ifdef CONFIG_REGULATOR
|
|
|
|
bool regulator_enabled; /* regulator state */
|
|
|
|
#endif
|
2012-06-20 10:28:43 +04:00
|
|
|
struct mmc_supply supply;
|
2010-09-29 09:08:27 +04:00
|
|
|
|
2008-07-24 16:18:57 +04:00
|
|
|
struct dentry *debugfs_root;
|
|
|
|
|
2011-07-01 20:55:22 +04:00
|
|
|
struct mmc_async_req *areq; /* active async req */
|
2013-01-14 23:28:17 +04:00
|
|
|
struct mmc_context_info context_info; /* async synchronization info */
|
2011-07-01 20:55:22 +04:00
|
|
|
|
mmc: core: Add support for sending commands during data transfer
A host controller driver exposes its capability using caps flag
MMC_CAP_CMD_DURING_TFR. A driver with that capability can accept requests
that are marked mrq->cap_cmd_during_tfr = true. Then the driver informs the
upper layers when the command line is available for further commands by
calling mmc_command_done(). Because of that, the driver will not then
automatically send STOP commands, and it is the responsibility of the upper
layer to send a STOP command if it is required.
For requests submitted through the mmc_wait_for_req() interface, the caller
sets mrq->cap_cmd_during_tfr = true which causes mmc_wait_for_req() in fact
not to wait. The caller can then send commands that do not use the data
lines. Finally the caller can wait for the transfer to complete by calling
mmc_wait_for_req_done() which is now exported.
For requests submitted through the mmc_start_req() interface, the caller
again sets mrq->cap_cmd_during_tfr = true, but mmc_start_req() anyway does
not wait. The caller can then send commands that do not use the data
lines. Finally the caller can wait for the transfer to complete in the
normal way i.e. calling mmc_start_req() again.
Irrespective of how a cap_cmd_during_tfr request is started,
mmc_is_req_done() can be called if the upper layer needs to determine if
the request is done. However the appropriate waiting function (either
mmc_wait_for_req_done() or mmc_start_req()) must still be called.
The implementation consists primarily of a new completion
mrq->cmd_completion which notifies when the command line is available for
further commands. That completion is completed by mmc_command_done().
When there is an ongoing data transfer, calls to mmc_wait_for_req() will
automatically wait on that completion, so the caller does not have to do
anything special.
Note, in the case of errors, the driver may call mmc_request_done() without
calling mmc_command_done() because mmc_request_done() always calls
mmc_command_done().
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
2016-08-16 13:44:11 +03:00
|
|
|
/* Ongoing data transfer that allows commands during transfer */
|
|
|
|
struct mmc_request *ongoing_mrq;
|
|
|
|
|
2011-08-19 16:52:37 +04:00
|
|
|
#ifdef CONFIG_FAIL_MMC_REQUEST
|
|
|
|
struct fault_attr fail_mmc_request;
|
|
|
|
#endif
|
|
|
|
|
2011-11-04 16:53:19 +04:00
|
|
|
unsigned int actual_clock; /* Actual HC clock rate */
|
|
|
|
|
2013-03-05 07:24:52 +04:00
|
|
|
unsigned int slotno; /* used for sdio acpi binding */
|
|
|
|
|
2014-08-19 12:45:51 +04:00
|
|
|
int dsr_req; /* DSR value is valid */
|
|
|
|
u32 dsr; /* optional driver stage (DSR) value */
|
|
|
|
|
2005-09-09 01:46:00 +04:00
|
|
|
unsigned long private[0] ____cacheline_aligned;
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
2013-02-15 19:13:53 +04:00
|
|
|
struct mmc_host *mmc_alloc_host(int extra, struct device *);
|
|
|
|
int mmc_add_host(struct mmc_host *);
|
|
|
|
void mmc_remove_host(struct mmc_host *);
|
|
|
|
void mmc_free_host(struct mmc_host *);
|
2013-06-10 00:14:11 +04:00
|
|
|
int mmc_of_parse(struct mmc_host *host);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-09 01:46:00 +04:00
|
|
|
static inline void *mmc_priv(struct mmc_host *host)
|
|
|
|
{
|
|
|
|
return (void *)host->private;
|
|
|
|
}
|
|
|
|
|
2007-08-08 20:09:01 +04:00
|
|
|
#define mmc_host_is_spi(host) ((host)->caps & MMC_CAP_SPI)
|
|
|
|
|
2006-09-12 19:00:10 +04:00
|
|
|
#define mmc_dev(x) ((x)->parent)
|
2007-01-14 03:41:45 +03:00
|
|
|
#define mmc_classdev(x) (&(x)->class_dev)
|
2008-11-08 23:37:46 +03:00
|
|
|
#define mmc_hostname(x) (dev_name(&(x)->class_dev))
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2013-02-15 19:13:53 +04:00
|
|
|
int mmc_power_save_host(struct mmc_host *host);
|
|
|
|
int mmc_power_restore_host(struct mmc_host *host);
|
2009-09-23 03:44:33 +04:00
|
|
|
|
2013-02-15 19:13:53 +04:00
|
|
|
void mmc_detect_change(struct mmc_host *, unsigned long delay);
|
|
|
|
void mmc_request_done(struct mmc_host *, struct mmc_request *);
|
mmc: core: Add support for sending commands during data transfer
A host controller driver exposes its capability using caps flag
MMC_CAP_CMD_DURING_TFR. A driver with that capability can accept requests
that are marked mrq->cap_cmd_during_tfr = true. Then the driver informs the
upper layers when the command line is available for further commands by
calling mmc_command_done(). Because of that, the driver will not then
automatically send STOP commands, and it is the responsibility of the upper
layer to send a STOP command if it is required.
For requests submitted through the mmc_wait_for_req() interface, the caller
sets mrq->cap_cmd_during_tfr = true which causes mmc_wait_for_req() in fact
not to wait. The caller can then send commands that do not use the data
lines. Finally the caller can wait for the transfer to complete by calling
mmc_wait_for_req_done() which is now exported.
For requests submitted through the mmc_start_req() interface, the caller
again sets mrq->cap_cmd_during_tfr = true, but mmc_start_req() anyway does
not wait. The caller can then send commands that do not use the data
lines. Finally the caller can wait for the transfer to complete in the
normal way i.e. calling mmc_start_req() again.
Irrespective of how a cap_cmd_during_tfr request is started,
mmc_is_req_done() can be called if the upper layer needs to determine if
the request is done. However the appropriate waiting function (either
mmc_wait_for_req_done() or mmc_start_req()) must still be called.
The implementation consists primarily of a new completion
mrq->cmd_completion which notifies when the command line is available for
further commands. That completion is completed by mmc_command_done().
When there is an ongoing data transfer, calls to mmc_wait_for_req() will
automatically wait on that completion, so the caller does not have to do
anything special.
Note, in the case of errors, the driver may call mmc_request_done() without
calling mmc_command_done() because mmc_request_done() always calls
mmc_command_done().
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
2016-08-16 13:44:11 +03:00
|
|
|
void mmc_command_done(struct mmc_host *host, struct mmc_request *mrq);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-07-24 10:09:39 +04:00
|
|
|
static inline void mmc_signal_sdio_irq(struct mmc_host *host)
|
|
|
|
{
|
|
|
|
host->ops->enable_sdio_irq(host, 0);
|
2012-04-17 03:16:54 +04:00
|
|
|
host->sdio_irq_pending = true;
|
2015-07-10 06:36:45 +03:00
|
|
|
if (host->sdio_irq_thread)
|
|
|
|
wake_up_process(host->sdio_irq_thread);
|
2007-07-24 10:09:39 +04:00
|
|
|
}
|
|
|
|
|
2014-04-25 15:55:30 +04:00
|
|
|
void sdio_run_irqs(struct mmc_host *host);
|
|
|
|
|
2010-09-29 09:08:27 +04:00
|
|
|
#ifdef CONFIG_REGULATOR
|
2009-03-11 14:30:43 +03:00
|
|
|
int mmc_regulator_get_ocrmask(struct regulator *supply);
|
2010-09-29 09:08:27 +04:00
|
|
|
int mmc_regulator_set_ocr(struct mmc_host *mmc,
|
|
|
|
struct regulator *supply,
|
|
|
|
unsigned short vdd_bit);
|
2015-10-12 15:48:25 +03:00
|
|
|
int mmc_regulator_set_vqmmc(struct mmc_host *mmc, struct mmc_ios *ios);
|
2010-09-29 09:08:27 +04:00
|
|
|
#else
|
|
|
|
static inline int mmc_regulator_get_ocrmask(struct regulator *supply)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int mmc_regulator_set_ocr(struct mmc_host *mmc,
|
|
|
|
struct regulator *supply,
|
|
|
|
unsigned short vdd_bit)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2015-10-12 15:48:25 +03:00
|
|
|
|
|
|
|
static inline int mmc_regulator_set_vqmmc(struct mmc_host *mmc,
|
|
|
|
struct mmc_ios *ios)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2010-09-29 09:08:27 +04:00
|
|
|
#endif
|
2009-03-11 14:30:43 +03:00
|
|
|
|
2014-05-07 02:57:01 +04:00
|
|
|
int mmc_regulator_get_supply(struct mmc_host *mmc);
|
|
|
|
|
2010-09-27 12:42:19 +04:00
|
|
|
static inline int mmc_card_is_removable(struct mmc_host *host)
|
|
|
|
{
|
2013-10-30 04:00:18 +04:00
|
|
|
return !(host->caps & MMC_CAP_NONREMOVABLE);
|
2010-09-27 12:42:19 +04:00
|
|
|
}
|
|
|
|
|
2011-04-05 18:43:20 +04:00
|
|
|
static inline int mmc_card_keep_power(struct mmc_host *host)
|
2010-11-28 08:21:29 +03:00
|
|
|
{
|
|
|
|
return host->pm_flags & MMC_PM_KEEP_POWER;
|
|
|
|
}
|
|
|
|
|
2011-04-05 18:43:21 +04:00
|
|
|
static inline int mmc_card_wake_sdio_irq(struct mmc_host *host)
|
|
|
|
{
|
|
|
|
return host->pm_flags & MMC_PM_WAKE_SDIO_IRQ;
|
|
|
|
}
|
2011-05-24 00:06:36 +04:00
|
|
|
|
|
|
|
static inline int mmc_host_cmd23(struct mmc_host *host)
|
|
|
|
{
|
|
|
|
return host->caps & MMC_CAP_CMD23;
|
|
|
|
}
|
2011-09-23 13:48:21 +04:00
|
|
|
|
|
|
|
static inline int mmc_boot_partition_access(struct mmc_host *host)
|
|
|
|
{
|
|
|
|
return !(host->caps2 & MMC_CAP2_BOOTPART_NOACC);
|
|
|
|
}
|
|
|
|
|
2012-12-04 15:36:19 +04:00
|
|
|
static inline int mmc_host_uhs(struct mmc_host *host)
|
|
|
|
{
|
|
|
|
return host->caps &
|
|
|
|
(MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
|
|
|
|
MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 |
|
|
|
|
MMC_CAP_UHS_DDR50);
|
|
|
|
}
|
|
|
|
|
2014-04-23 12:07:35 +04:00
|
|
|
static inline int mmc_card_hs(struct mmc_card *card)
|
|
|
|
{
|
|
|
|
return card->host->ios.timing == MMC_TIMING_SD_HS ||
|
|
|
|
card->host->ios.timing == MMC_TIMING_MMC_HS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int mmc_card_uhs(struct mmc_card *card)
|
|
|
|
{
|
|
|
|
return card->host->ios.timing >= MMC_TIMING_UHS_SDR12 &&
|
|
|
|
card->host->ios.timing <= MMC_TIMING_UHS_DDR50;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool mmc_card_hs200(struct mmc_card *card)
|
|
|
|
{
|
|
|
|
return card->host->ios.timing == MMC_TIMING_MMC_HS200;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool mmc_card_ddr52(struct mmc_card *card)
|
|
|
|
{
|
|
|
|
return card->host->ios.timing == MMC_TIMING_MMC_DDR52;
|
|
|
|
}
|
2014-04-23 12:14:58 +04:00
|
|
|
|
|
|
|
static inline bool mmc_card_hs400(struct mmc_card *card)
|
|
|
|
{
|
|
|
|
return card->host->ios.timing == MMC_TIMING_MMC_HS400;
|
|
|
|
}
|
|
|
|
|
2016-05-26 04:56:22 +03:00
|
|
|
static inline bool mmc_card_hs400es(struct mmc_card *card)
|
|
|
|
{
|
|
|
|
return card->host->ios.enhanced_strobe;
|
|
|
|
}
|
|
|
|
|
2015-05-07 13:10:12 +03:00
|
|
|
void mmc_retune_timer_stop(struct mmc_host *host);
|
|
|
|
|
|
|
|
static inline void mmc_retune_needed(struct mmc_host *host)
|
|
|
|
{
|
|
|
|
if (host->can_retune)
|
|
|
|
host->need_retune = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void mmc_retune_recheck(struct mmc_host *host)
|
|
|
|
{
|
|
|
|
if (host->hold_retune <= 1)
|
|
|
|
host->retune_now = 1;
|
|
|
|
}
|
|
|
|
|
2016-11-03 17:15:59 +03:00
|
|
|
static inline bool mmc_can_retune(struct mmc_host *host)
|
|
|
|
{
|
|
|
|
return host->can_retune == 1;
|
|
|
|
}
|
|
|
|
|
2016-05-16 15:35:24 +03:00
|
|
|
void mmc_retune_pause(struct mmc_host *host);
|
|
|
|
void mmc_retune_unpause(struct mmc_host *host);
|
|
|
|
|
2011-05-28 00:04:03 +04:00
|
|
|
#endif /* LINUX_MMC_HOST_H */
|