blob: fb689a1065ed366040dd0c74d724ea40670b5640 [file] [log] [blame]
Pierre Ossmanb93931a2007-05-19 14:06:24 +02001/*
2 * linux/drivers/mmc/core/host.h
3 *
4 * Copyright (C) 2003 Russell King, All Rights Reserved.
5 * Copyright 2007 Pierre Ossman
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#ifndef _MMC_CORE_HOST_H
12#define _MMC_CORE_HOST_H
Ulf Hansson066185d2017-01-13 14:14:07 +010013
Ulf Hansson5857b292017-01-13 14:14:15 +010014#include <linux/mmc/host.h>
Pierre Ossmanb93931a2007-05-19 14:06:24 +020015
16int mmc_register_host_class(void);
17void mmc_unregister_host_class(void);
Adrian Hunter8ea926b2009-09-22 16:44:29 -070018
Adrian Hunterdfa13eb2015-05-07 13:10:12 +030019void mmc_retune_enable(struct mmc_host *host);
20void mmc_retune_disable(struct mmc_host *host);
21void mmc_retune_hold(struct mmc_host *host);
22void mmc_retune_release(struct mmc_host *host);
23int mmc_retune(struct mmc_host *host);
Ulf Hansson5857b292017-01-13 14:14:15 +010024void mmc_retune_pause(struct mmc_host *host);
25void mmc_retune_unpause(struct mmc_host *host);
26
Adrian Huntercb39f612017-09-22 15:36:59 +030027static inline void mmc_retune_hold_now(struct mmc_host *host)
28{
29 host->retune_now = 0;
30 host->hold_retune += 1;
31}
32
Ulf Hansson5857b292017-01-13 14:14:15 +010033static inline void mmc_retune_recheck(struct mmc_host *host)
34{
35 if (host->hold_retune <= 1)
36 host->retune_now = 1;
37}
38
39static inline int mmc_host_cmd23(struct mmc_host *host)
40{
41 return host->caps & MMC_CAP_CMD23;
42}
43
44static inline int mmc_boot_partition_access(struct mmc_host *host)
45{
46 return !(host->caps2 & MMC_CAP2_BOOTPART_NOACC);
47}
48
49static inline int mmc_host_uhs(struct mmc_host *host)
50{
51 return host->caps &
52 (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
53 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 |
54 MMC_CAP_UHS_DDR50);
55}
56
57static inline bool mmc_card_hs200(struct mmc_card *card)
58{
59 return card->host->ios.timing == MMC_TIMING_MMC_HS200;
60}
61
62static inline bool mmc_card_ddr52(struct mmc_card *card)
63{
64 return card->host->ios.timing == MMC_TIMING_MMC_DDR52;
65}
66
67static inline bool mmc_card_hs400(struct mmc_card *card)
68{
69 return card->host->ios.timing == MMC_TIMING_MMC_HS400;
70}
71
72static inline bool mmc_card_hs400es(struct mmc_card *card)
73{
74 return card->host->ios.enhanced_strobe;
75}
76
Adrian Hunterdfa13eb2015-05-07 13:10:12 +030077
Pierre Ossmanb93931a2007-05-19 14:06:24 +020078#endif
79