diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-11 13:56:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-11 13:56:48 -0500 |
commit | aa7ed01f93ff7e149cad46f13f66b269d59c9bc0 (patch) | |
tree | ab46a44f3c83c75e1c81f211acd0d68ffe60dd7c /drivers/mmc/core/core.h | |
parent | 7796c11c728ad40ba4151d559a949c002deffb9a (diff) | |
parent | 017210d1c0dc2e2d3b142985cb31d90b98dc0f0f (diff) |
Merge tag 'mmc-v3.20-1' of git://git.linaro.org/people/ulf.hansson/mmc
Pull MMC updates from Ulf Hansson:
"MMC core:
- Support for MMC power sequences.
- SDIO function devicetree subnode parsing.
- Refactor the hardware reset routines and enable it for SD cards.
- Various code quality improvements, especially for slot-gpio.
MMC host:
- dw_mmc: Various fixes and cleanups.
- dw_mmc: Convert to mmc_send_tuning().
- moxart: Fix probe logic.
- sdhci: Various fixes and cleanups
- sdhci: Asynchronous request handling support.
- sdhci-pxav3: Various fixes and cleanups.
- sdhci-tegra: Fixes for T114, T124 and T132.
- rtsx: Various fixes and cleanups.
- rtsx: Support for SDIO.
- sdhi/tmio: Refactor and cleanup of header files.
- omap_hsmmc: Use slot-gpio and common MMC DT parser.
- Make all hosts to deal with errors from mmc_of_parse().
- sunxi: Various fixes and cleanups.
- sdhci: Support for Fujitsu SDHCI controller f_sdh30"
* tag 'mmc-v3.20-1' of git://git.linaro.org/people/ulf.hansson/mmc: (117 commits)
mmc: sdhci-s3c: solve problem with sleeping in atomic context
mmc: pwrseq: add driver for emmc hardware reset
mmc: moxart: fix probe logic
mmc: core: Invoke mmc_pwrseq_post_power_on() prior MMC_POWER_ON state
mmc: pwrseq_simple: Add optional reference clock support
mmc: pwrseq: Document optional clock for the simple power sequence
mmc: pwrseq_simple: Extend to support more pins
mmc: pwrseq: Document that simple sequence support more than one GPIO
mmc: Add hardware dependencies for sdhci-pxav3 and sdhci-pxav2
mmc: sdhci-pxav3: Modify clock settings for the SDR50 and DDR50 modes
mmc: sdhci-pxav3: Extend binding with SDIO3 conf reg for the Armada 38x
mmc: sdhci-pxav3: Fix Armada 38x controller's caps according to erratum ERR-7878951
mmc: sdhci-pxav3: Fix SDR50 and DDR50 capabilities for the Armada 38x flavor
mmc: sdhci: switch voltage before sdhci_set_ios in runtime resume
mmc: tegra: Write xfer_mode, CMD regs in together
mmc: Resolve BKOPS compatability issue
mmc: sdhci-pxav3: fix setting of pdata->clk_delay_cycles
mmc: dw_mmc: rockchip: remove incorrect __exit_p()
mmc: dw_mmc: exynos: remove incorrect __exit_p()
mmc: Fix menuconfig alignment of MMC_SDHCI_* options
...
Diffstat (limited to 'drivers/mmc/core/core.h')
-rw-r--r-- | drivers/mmc/core/core.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/mmc/core/core.h b/drivers/mmc/core/core.h index d76597c65e3a..cfba3c05aab1 100644 --- a/drivers/mmc/core/core.h +++ b/drivers/mmc/core/core.h | |||
@@ -27,11 +27,15 @@ struct mmc_bus_ops { | |||
27 | int (*power_restore)(struct mmc_host *); | 27 | int (*power_restore)(struct mmc_host *); |
28 | int (*alive)(struct mmc_host *); | 28 | int (*alive)(struct mmc_host *); |
29 | int (*shutdown)(struct mmc_host *); | 29 | int (*shutdown)(struct mmc_host *); |
30 | int (*reset)(struct mmc_host *); | ||
30 | }; | 31 | }; |
31 | 32 | ||
32 | void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops); | 33 | void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops); |
33 | void mmc_detach_bus(struct mmc_host *host); | 34 | void mmc_detach_bus(struct mmc_host *host); |
34 | 35 | ||
36 | struct device_node *mmc_of_find_child_device(struct mmc_host *host, | ||
37 | unsigned func_num); | ||
38 | |||
35 | void mmc_init_erase(struct mmc_card *card); | 39 | void mmc_init_erase(struct mmc_card *card); |
36 | 40 | ||
37 | void mmc_set_chip_select(struct mmc_host *host, int mode); | 41 | void mmc_set_chip_select(struct mmc_host *host, int mode); |
@@ -82,5 +86,8 @@ void mmc_add_card_debugfs(struct mmc_card *card); | |||
82 | void mmc_remove_card_debugfs(struct mmc_card *card); | 86 | void mmc_remove_card_debugfs(struct mmc_card *card); |
83 | 87 | ||
84 | void mmc_init_context_info(struct mmc_host *host); | 88 | void mmc_init_context_info(struct mmc_host *host); |
89 | |||
90 | int mmc_execute_tuning(struct mmc_card *card); | ||
91 | |||
85 | #endif | 92 | #endif |
86 | 93 | ||