2005-04-16 15:20:36 -07: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 07:15:48 +02:00
|
|
|
#include <linux/leds.h>
|
2012-05-01 16:51:38 +02:00
|
|
|
#include <linux/mutex.h>
|
2009-10-07 17:09:06 +04:00
|
|
|
#include <linux/sched.h>
|
2012-01-30 11:46:54 -05:00
|
|
|
#include <linux/device.h>
|
2011-08-19 14:52:37 +02:00
|
|
|
#include <linux/fault-inject.h>
|
2007-09-24 07:15:48 +02:00
|
|
|
|
2007-02-28 15:33:10 +01:00
|
|
|
#include <linux/mmc/core.h>
|
2010-03-05 13:43:31 -08:00
|
|
|
#include <linux/mmc/pm.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
struct mmc_ios {
|
|
|
|
|
unsigned int clock; /* clock rate */
|
|
|
|
|
unsigned short vdd;
|
|
|
|
|
|
2007-03-11 17:15:15 -07:00
|
|
|
/* vdd stores the bit number of the selected voltage range from below. */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
unsigned char bus_mode; /* command output mode */
|
|
|
|
|
|
|
|
|
|
#define MMC_BUSMODE_OPENDRAIN 1
|
|
|
|
|
#define MMC_BUSMODE_PUSHPULL 2
|
|
|
|
|
|
2005-09-03 16:45:02 +01: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-16 15:20:36 -07:00
|
|
|
unsigned char power_mode; /* power supply mode */
|
|
|
|
|
|
|
|
|
|
#define MMC_POWER_OFF 0
|
|
|
|
|
#define MMC_POWER_UP 1
|
|
|
|
|
#define MMC_POWER_ON 2
|
2005-09-06 15:18:55 -07:00
|
|
|
|
|
|
|
|
unsigned char bus_width; /* data bus width */
|
|
|
|
|
|
|
|
|
|
#define MMC_BUS_WIDTH_1 0
|
|
|
|
|
#define MMC_BUS_WIDTH_4 2
|
2008-11-17 14:35:21 +02:00
|
|
|
#define MMC_BUS_WIDTH_8 3
|
2007-02-18 12:07:47 +01: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 19:04:46 +08: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
|
|
|
|
|
#define MMC_TIMING_MMC_HS200 8
|
2010-08-24 13:20:26 +03:00
|
|
|
|
|
|
|
|
#define MMC_SDR_MODE 0
|
2010-10-11 12:43:50 +03:00
|
|
|
#define MMC_1_2V_DDR_MODE 1
|
|
|
|
|
#define MMC_1_8V_DDR_MODE 2
|
2012-01-11 14:04:52 -05:00
|
|
|
#define MMC_1_2V_SDR_MODE 3
|
|
|
|
|
#define MMC_1_8V_SDR_MODE 4
|
2011-05-05 12:18:57 +05:30
|
|
|
|
|
|
|
|
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 11:17:18 +05:30
|
|
|
#define MMC_SIGNAL_VOLTAGE_120 2
|
2011-05-05 12:18:59 +05:30
|
|
|
|
|
|
|
|
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
|
2005-04-16 15:20:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct mmc_host_ops {
|
2009-09-22 16:44:29 -07:00
|
|
|
/*
|
2012-02-29 09:17:21 +02:00
|
|
|
* 'enable' is called when the host is claimed and 'disable' is called
|
|
|
|
|
* when the host is released. 'enable' and 'disable' are deprecated.
|
2009-09-22 16:44:29 -07:00
|
|
|
*/
|
|
|
|
|
int (*enable)(struct mmc_host *host);
|
2012-02-29 09:17:21 +02:00
|
|
|
int (*disable)(struct mmc_host *host);
|
2011-07-01 18:55:22 +02: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 15:35:58 +02: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 18:55:22 +02:00
|
|
|
*/
|
|
|
|
|
void (*post_req)(struct mmc_host *host, struct mmc_request *req,
|
|
|
|
|
int err);
|
|
|
|
|
void (*pre_req)(struct mmc_host *host, struct mmc_request *req,
|
|
|
|
|
bool is_first_req);
|
2005-04-16 15:20:36 -07:00
|
|
|
void (*request)(struct mmc_host *host, struct mmc_request *req);
|
2008-06-17 18:17:15 +04:00
|
|
|
/*
|
|
|
|
|
* Avoid calling these 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!
|
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
|
|
|
|
|
*
|
2008-09-02 10:14:13 +02: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
|
|
|
*/
|
2005-04-16 15:20:36 -07:00
|
|
|
void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
|
2005-09-06 15:18:52 -07:00
|
|
|
int (*get_ro)(struct mmc_host *host);
|
2008-06-17 18:17:15 +04:00
|
|
|
int (*get_cd)(struct mmc_host *host);
|
|
|
|
|
|
2007-07-24 02:09:39 -04:00
|
|
|
void (*enable_sdio_irq)(struct mmc_host *host, int enable);
|
2010-04-01 10:03:25 +02:00
|
|
|
|
|
|
|
|
/* optional callback for HC quirks */
|
|
|
|
|
void (*init_card)(struct mmc_host *host, struct mmc_card *card);
|
2011-05-05 12:18:57 +05:30
|
|
|
|
|
|
|
|
int (*start_signal_voltage_switch)(struct mmc_host *host, struct mmc_ios *ios);
|
2012-01-11 14:04:52 -05:00
|
|
|
|
2013-01-28 15:08:26 +01:00
|
|
|
/* Check if the card is pulling dat[0:3] low */
|
|
|
|
|
int (*card_busy)(struct mmc_host *host);
|
|
|
|
|
|
2012-01-11 14:04:52 -05:00
|
|
|
/* The tuning command opcode value is different for SD and eMMC cards */
|
|
|
|
|
int (*execute_tuning)(struct mmc_host *host, u32 opcode);
|
2011-07-06 08:51:32 -07:00
|
|
|
int (*select_drive_strength)(unsigned int max_dtr, int host_drv, int card_drv);
|
2011-08-29 16:42:11 +03:00
|
|
|
void (*hw_reset)(struct mmc_host *host);
|
2012-12-04 16:51:32 +01:00
|
|
|
void (*card_event)(struct mmc_host *host);
|
2005-04-16 15:20:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct mmc_card;
|
|
|
|
|
struct device;
|
|
|
|
|
|
2011-07-01 18:55:22 +02: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.
|
|
|
|
|
*/
|
|
|
|
|
int (*err_check) (struct mmc_card *, struct mmc_async_req *);
|
|
|
|
|
};
|
|
|
|
|
|
2012-05-01 15:40:15 +02:00
|
|
|
/**
|
|
|
|
|
* struct mmc_slot - MMC slot functions
|
|
|
|
|
*
|
|
|
|
|
* @cd_irq: MMC/SD-card slot hotplug detection IRQ or -EINVAL
|
2012-05-01 16:51:38 +02:00
|
|
|
* @lock: protect the @handler_priv pointer
|
2012-05-01 15:40:15 +02:00
|
|
|
* @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;
|
2012-05-01 16:51:38 +02:00
|
|
|
struct mutex lock;
|
2011-12-25 20:40:03 -05:00
|
|
|
void *handler_priv;
|
|
|
|
|
};
|
|
|
|
|
|
2013-01-14 14:28:17 -05: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
|
|
|
|
|
* @lock lock to protect data fields
|
|
|
|
|
*/
|
|
|
|
|
struct mmc_context_info {
|
|
|
|
|
bool is_done_rcv;
|
|
|
|
|
bool is_new_req;
|
|
|
|
|
bool is_waiting_last_req;
|
|
|
|
|
wait_queue_head_t wait;
|
|
|
|
|
spinlock_t lock;
|
|
|
|
|
};
|
|
|
|
|
|
2012-06-20 02:28:43 -04:00
|
|
|
struct regulator;
|
|
|
|
|
|
|
|
|
|
struct mmc_supply {
|
|
|
|
|
struct regulator *vmmc; /* Card power supply */
|
|
|
|
|
struct regulator *vqmmc; /* Optional Vccq supply */
|
|
|
|
|
};
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
struct mmc_host {
|
2006-09-12 17:00:10 +02:00
|
|
|
struct device *parent;
|
|
|
|
|
struct device class_dev;
|
2005-08-19 09:42:52 +01:00
|
|
|
int index;
|
2006-09-03 06:43:33 -07:00
|
|
|
const struct mmc_host_ops *ops;
|
2005-04-16 15:20:36 -07:00
|
|
|
unsigned int f_min;
|
|
|
|
|
unsigned int f_max;
|
2010-09-06 09:37:19 +08:00
|
|
|
unsigned int f_init;
|
2005-04-16 15:20:36 -07:00
|
|
|
u32 ocr_avail;
|
2010-12-08 10:04:30 +01:00
|
|
|
u32 ocr_avail_sdio; /* SDIO-specific OCR */
|
|
|
|
|
u32 ocr_avail_sd; /* SD-specific OCR */
|
|
|
|
|
u32 ocr_avail_mmc; /* MMC-specific OCR */
|
2010-08-10 18:01:41 -07:00
|
|
|
struct notifier_block pm_notify;
|
2012-07-04 13:31:48 +08:00
|
|
|
u32 max_current_330;
|
|
|
|
|
u32 max_current_300;
|
|
|
|
|
u32 max_current_180;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-03-16 19:39:00 -07:00
|
|
|
#define MMC_VDD_165_195 0x00000080 /* VDD voltage 1.65 - 1.95 */
|
2007-02-09 22:49:31 +01: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 12:35:51 +00:00
|
|
|
u32 caps; /* Host capabilities */
|
2005-09-06 15:18:55 -07:00
|
|
|
|
|
|
|
|
#define MMC_CAP_4_BIT_DATA (1 << 0) /* Can the host do 4 bit transfers */
|
2008-07-06 01:10:27 +02: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 14:35:21 +02:00
|
|
|
#define MMC_CAP_8_BIT_DATA (1 << 6) /* Can the host do 8 bit transfers */
|
2013-05-02 14:02:39 +02:00
|
|
|
#define MMC_CAP_AGGRESSIVE_PM (1 << 7) /* Suspend (e)MMC/SD at idle */
|
2009-09-22 16:44:32 -07:00
|
|
|
#define MMC_CAP_NONREMOVABLE (1 << 8) /* Nonremovable e.g. eMMC */
|
2009-09-22 16:44:34 -07:00
|
|
|
#define MMC_CAP_WAIT_WHILE_BUSY (1 << 9) /* Waits while card is busy */
|
2010-08-11 14:17:46 -07:00
|
|
|
#define MMC_CAP_ERASE (1 << 10) /* Allow erase/trim commands */
|
2010-09-30 17: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 09:29:09 +02:00
|
|
|
#define MMC_CAP_POWER_OFF_CARD (1 << 13) /* Can power off after boot */
|
2010-12-15 08:14:24 +01:00
|
|
|
#define MMC_CAP_BUS_WIDTH_TEST (1 << 14) /* CMD14/CMD19 bus width ok */
|
2011-05-05 12:18:57 +05:30
|
|
|
#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 12:18:59 +05:30
|
|
|
#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 */
|
2011-05-23 15:06:36 -05:00
|
|
|
#define MMC_CAP_CMD23 (1 << 30) /* CMD23 supported. */
|
2011-08-29 16:42:11 +03:00
|
|
|
#define MMC_CAP_HW_RESET (1 << 31) /* Hardware reset */
|
2005-09-06 15:18:55 -07:00
|
|
|
|
2012-11-14 12:35:51 +00:00
|
|
|
u32 caps2; /* More host capabilities */
|
2011-09-23 12:48:21 +03:00
|
|
|
|
|
|
|
|
#define MMC_CAP2_BOOTPART_NOACC (1 << 0) /* Boot partition no access */
|
2011-10-14 14:03:21 +09:00
|
|
|
#define MMC_CAP2_CACHE_CTRL (1 << 1) /* Allow cache control */
|
2013-06-10 17:03:46 +02:00
|
|
|
#define MMC_CAP2_FULL_PWR_CYCLE (1 << 2) /* Can do full power cycle */
|
2011-10-06 14:50:33 -06:00
|
|
|
#define MMC_CAP2_NO_MULTI_READ (1 << 3) /* Multiblock reads don't work */
|
2011-12-19 16:24:19 +01:00
|
|
|
#define MMC_CAP2_NO_SLEEP_CMD (1 << 4) /* Don't allow sleep command */
|
2012-01-11 14:04:52 -05: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-01-16 17:49:01 +09:00
|
|
|
#define MMC_CAP2_BROKEN_VOLTAGE (1 << 7) /* Use the broken voltage */
|
2012-03-13 05:19:13 -04:00
|
|
|
#define MMC_CAP2_HC_ERASE_SZ (1 << 9) /* High-capacity erase size */
|
2012-05-01 15:49:52 +02: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 17:01:43 +09: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 16:41:06 +03:00
|
|
|
#define MMC_CAP2_NO_PRESCAN_POWERUP (1 << 14) /* Don't power up before scan */
|
2013-04-18 15:41:55 +03:00
|
|
|
#define MMC_CAP2_SANITIZE (1 << 15) /* Support Sanitize */
|
2011-09-23 12:48:21 +03:00
|
|
|
|
2010-03-05 13:43:31 -08:00
|
|
|
mmc_pm_flag_t pm_caps; /* supported pm features */
|
|
|
|
|
|
2010-11-08 21:36:50 -05:00
|
|
|
#ifdef CONFIG_MMC_CLKGATE
|
|
|
|
|
int clk_requests; /* internal reference counter */
|
|
|
|
|
unsigned int clk_delay; /* number of MCI clk hold cycles */
|
|
|
|
|
bool clk_gated; /* clock gated */
|
2011-11-14 13:53:29 +05:30
|
|
|
struct delayed_work clk_gate_work; /* delayed clock gate */
|
2010-11-08 21:36:50 -05:00
|
|
|
unsigned int clk_old; /* old clock value cache */
|
|
|
|
|
spinlock_t clk_lock; /* lock for clk fields */
|
2011-05-16 11:32:26 -04:00
|
|
|
struct mutex clk_gate_mutex; /* mutex for clock gating */
|
2011-11-14 13:53:29 +05:30
|
|
|
struct device_attribute clkgate_delay_attr;
|
|
|
|
|
unsigned long clkgate_delay;
|
2010-11-08 21:36:50 -05:00
|
|
|
#endif
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
/* host specific block data */
|
|
|
|
|
unsigned int max_seg_size; /* see blk_queue_max_segment_size */
|
2010-09-10 01:33:59 -04:00
|
|
|
unsigned short max_segs; /* see blk_queue_max_segments */
|
2005-04-16 15:20:36 -07:00
|
|
|
unsigned short unused;
|
2006-11-21 17:55:45 +01:00
|
|
|
unsigned int max_req_size; /* maximum number of bytes in one req */
|
2006-11-21 17:54:23 +01:00
|
|
|
unsigned int max_blk_size; /* maximum size of one mmc block */
|
2006-11-21 17:55:45 +01:00
|
|
|
unsigned int max_blk_count; /* maximum number of blocks in one req */
|
2011-06-28 17:16:02 +03:00
|
|
|
unsigned int max_discard_to; /* max. discard timeout in ms */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
/* private data */
|
2006-12-31 00:11:32 +01:00
|
|
|
spinlock_t lock; /* lock for claim and bus ops */
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
struct mmc_ios ios; /* current io bus settings */
|
|
|
|
|
u32 ocr; /* the current OCR setting */
|
|
|
|
|
|
2007-08-08 09:09:01 -07: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
|
|
|
|
|
|
2010-08-10 18:01:41 -07:00
|
|
|
int rescan_disable; /* disable card detection */
|
2012-08-23 13:40:55 +02:00
|
|
|
int rescan_entered; /* used with nonremovable devices */
|
2009-09-22 16:44:29 -07:00
|
|
|
|
2007-01-03 19:47:29 +01:00
|
|
|
struct mmc_card *card; /* device attached to this host */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
wait_queue_head_t wq;
|
2009-09-22 16:44:30 -07:00
|
|
|
struct task_struct *claimer; /* task that has host claimed */
|
|
|
|
|
int claim_cnt; /* "claim" nesting count */
|
2006-12-26 15:11:23 +01:00
|
|
|
|
2006-11-22 14:57:56 +00:00
|
|
|
struct delayed_work detect;
|
2011-11-28 16:22:00 +02:00
|
|
|
int detect_change; /* card detect flag */
|
2012-05-01 15:40:15 +02:00
|
|
|
struct mmc_slot slot;
|
2005-09-08 22:46:00 +01:00
|
|
|
|
2006-12-31 00:11:32 +01:00
|
|
|
const struct mmc_bus_ops *bus_ops; /* current bus driver */
|
|
|
|
|
unsigned int bus_refs; /* reference counter */
|
|
|
|
|
|
2007-06-30 16:29:41 +02:00
|
|
|
unsigned int sdio_irqs;
|
|
|
|
|
struct task_struct *sdio_irq_thread;
|
2012-04-16 19:16:54 -04:00
|
|
|
bool sdio_irq_pending;
|
2007-06-30 16:29:41 +02:00
|
|
|
atomic_t sdio_irq_thread_abort;
|
|
|
|
|
|
2010-03-05 13:43:31 -08:00
|
|
|
mmc_pm_flag_t pm_flags; /* requested pm features */
|
|
|
|
|
|
2007-09-24 07:15:48 +02:00
|
|
|
struct led_trigger *led; /* activity led */
|
|
|
|
|
|
2010-09-29 01:08:27 -04:00
|
|
|
#ifdef CONFIG_REGULATOR
|
|
|
|
|
bool regulator_enabled; /* regulator state */
|
|
|
|
|
#endif
|
2012-06-20 02:28:43 -04:00
|
|
|
struct mmc_supply supply;
|
2010-09-29 01:08:27 -04:00
|
|
|
|
2008-07-24 14:18:57 +02:00
|
|
|
struct dentry *debugfs_root;
|
|
|
|
|
|
2011-07-01 18:55:22 +02:00
|
|
|
struct mmc_async_req *areq; /* active async req */
|
2013-01-14 14:28:17 -05:00
|
|
|
struct mmc_context_info context_info; /* async synchronization info */
|
2011-07-01 18:55:22 +02:00
|
|
|
|
2011-08-19 14:52:37 +02:00
|
|
|
#ifdef CONFIG_FAIL_MMC_REQUEST
|
|
|
|
|
struct fault_attr fail_mmc_request;
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-11-04 13:53:19 +01:00
|
|
|
unsigned int actual_clock; /* Actual HC clock rate */
|
|
|
|
|
|
2013-03-05 11:24:52 +08:00
|
|
|
unsigned int slotno; /* used for sdio acpi binding */
|
|
|
|
|
|
2005-09-08 22:46:00 +01:00
|
|
|
unsigned long private[0] ____cacheline_aligned;
|
2005-04-16 15:20:36 -07:00
|
|
|
};
|
|
|
|
|
|
2013-02-15 16:13:53 +01: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-09 22:14:11 +02:00
|
|
|
int mmc_of_parse(struct mmc_host *host);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-09-08 22:46:00 +01:00
|
|
|
static inline void *mmc_priv(struct mmc_host *host)
|
|
|
|
|
{
|
|
|
|
|
return (void *)host->private;
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-08 09:09:01 -07:00
|
|
|
#define mmc_host_is_spi(host) ((host)->caps & MMC_CAP_SPI)
|
|
|
|
|
|
2006-09-12 17:00:10 +02:00
|
|
|
#define mmc_dev(x) ((x)->parent)
|
2007-01-14 01:41:45 +01:00
|
|
|
#define mmc_classdev(x) (&(x)->class_dev)
|
2008-11-08 21:37:46 +01:00
|
|
|
#define mmc_hostname(x) (dev_name(&(x)->class_dev))
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2013-02-15 16:13:53 +01:00
|
|
|
int mmc_suspend_host(struct mmc_host *);
|
|
|
|
|
int mmc_resume_host(struct mmc_host *);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2013-02-15 16:13:53 +01:00
|
|
|
int mmc_power_save_host(struct mmc_host *host);
|
|
|
|
|
int mmc_power_restore_host(struct mmc_host *host);
|
2009-09-22 16:44:33 -07:00
|
|
|
|
2013-02-15 16:13:53 +01:00
|
|
|
void mmc_detect_change(struct mmc_host *, unsigned long delay);
|
|
|
|
|
void mmc_request_done(struct mmc_host *, struct mmc_request *);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2013-02-15 16:13:53 +01:00
|
|
|
int mmc_cache_ctrl(struct mmc_host *, u8);
|
2011-10-14 14:03:21 +09:00
|
|
|
|
2007-07-24 02:09:39 -04:00
|
|
|
static inline void mmc_signal_sdio_irq(struct mmc_host *host)
|
|
|
|
|
{
|
|
|
|
|
host->ops->enable_sdio_irq(host, 0);
|
2012-04-16 19:16:54 -04:00
|
|
|
host->sdio_irq_pending = true;
|
2007-07-24 02:09:39 -04:00
|
|
|
wake_up_process(host->sdio_irq_thread);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-29 01:08:27 -04:00
|
|
|
#ifdef CONFIG_REGULATOR
|
2009-03-11 03:30:43 -08:00
|
|
|
int mmc_regulator_get_ocrmask(struct regulator *supply);
|
2010-09-29 01:08:27 -04:00
|
|
|
int mmc_regulator_set_ocr(struct mmc_host *mmc,
|
|
|
|
|
struct regulator *supply,
|
|
|
|
|
unsigned short vdd_bit);
|
2012-06-20 02:28:43 -04:00
|
|
|
int mmc_regulator_get_supply(struct mmc_host *mmc);
|
2010-09-29 01: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;
|
|
|
|
|
}
|
2012-06-20 02:28:43 -04:00
|
|
|
|
|
|
|
|
static inline int mmc_regulator_get_supply(struct mmc_host *mmc)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2010-09-29 01:08:27 -04:00
|
|
|
#endif
|
2009-03-11 03:30:43 -08:00
|
|
|
|
2010-08-10 18:01:41 -07:00
|
|
|
int mmc_pm_notify(struct notifier_block *notify_block, unsigned long, void *);
|
2009-09-22 16:44:29 -07:00
|
|
|
|
2010-09-27 09:42:19 +01:00
|
|
|
/* Module parameter */
|
2012-01-13 09:32:20 +10:30
|
|
|
extern bool mmc_assume_removable;
|
2010-09-27 09:42:19 +01:00
|
|
|
|
|
|
|
|
static inline int mmc_card_is_removable(struct mmc_host *host)
|
|
|
|
|
{
|
|
|
|
|
return !(host->caps & MMC_CAP_NONREMOVABLE) && mmc_assume_removable;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-05 17:43:20 +03:00
|
|
|
static inline int mmc_card_keep_power(struct mmc_host *host)
|
2010-11-28 07:21:29 +02:00
|
|
|
{
|
|
|
|
|
return host->pm_flags & MMC_PM_KEEP_POWER;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-05 17:43:21 +03:00
|
|
|
static inline int mmc_card_wake_sdio_irq(struct mmc_host *host)
|
|
|
|
|
{
|
|
|
|
|
return host->pm_flags & MMC_PM_WAKE_SDIO_IRQ;
|
|
|
|
|
}
|
2011-05-23 15:06:36 -05:00
|
|
|
|
|
|
|
|
static inline int mmc_host_cmd23(struct mmc_host *host)
|
|
|
|
|
{
|
|
|
|
|
return host->caps & MMC_CAP_CMD23;
|
|
|
|
|
}
|
2011-09-23 12:48:21 +03:00
|
|
|
|
|
|
|
|
static inline int mmc_boot_partition_access(struct mmc_host *host)
|
|
|
|
|
{
|
|
|
|
|
return !(host->caps2 & MMC_CAP2_BOOTPART_NOACC);
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-04 17:06:19 +05:30
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-06 17:02:46 +09:00
|
|
|
static inline int mmc_host_packed_wr(struct mmc_host *host)
|
|
|
|
|
{
|
|
|
|
|
return host->caps2 & MMC_CAP2_PACKED_WR;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-04 16:14:50 -05:00
|
|
|
#ifdef CONFIG_MMC_CLKGATE
|
|
|
|
|
void mmc_host_clk_hold(struct mmc_host *host);
|
|
|
|
|
void mmc_host_clk_release(struct mmc_host *host);
|
|
|
|
|
unsigned int mmc_host_clk_rate(struct mmc_host *host);
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
static inline void mmc_host_clk_hold(struct mmc_host *host)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void mmc_host_clk_release(struct mmc_host *host)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline unsigned int mmc_host_clk_rate(struct mmc_host *host)
|
|
|
|
|
{
|
|
|
|
|
return host->ios.clock;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2011-05-27 16:04:03 -04:00
|
|
|
#endif /* LINUX_MMC_HOST_H */
|