i2c: gpio: fault-injector: refactor incomplete transfer
[linux/fpc-iii.git] / drivers / mmc / core / pwrseq.c
blobe3ad30fa8307b09321da31e6138b8fcb728e209c
1 /*
2 * Copyright (C) 2014 Linaro Ltd
4 * Author: Ulf Hansson <ulf.hansson@linaro.org>
6 * License terms: GNU General Public License (GPL) version 2
8 * MMC power sequence management
9 */
10 #include <linux/kernel.h>
11 #include <linux/err.h>
12 #include <linux/module.h>
13 #include <linux/of.h>
15 #include <linux/mmc/host.h>
17 #include "pwrseq.h"
19 static DEFINE_MUTEX(pwrseq_list_mutex);
20 static LIST_HEAD(pwrseq_list);
22 int mmc_pwrseq_alloc(struct mmc_host *host)
24 struct device_node *np;
25 struct mmc_pwrseq *p;
27 np = of_parse_phandle(host->parent->of_node, "mmc-pwrseq", 0);
28 if (!np)
29 return 0;
31 mutex_lock(&pwrseq_list_mutex);
32 list_for_each_entry(p, &pwrseq_list, pwrseq_node) {
33 if (p->dev->of_node == np) {
34 if (!try_module_get(p->owner))
35 dev_err(host->parent,
36 "increasing module refcount failed\n");
37 else
38 host->pwrseq = p;
40 break;
44 of_node_put(np);
45 mutex_unlock(&pwrseq_list_mutex);
47 if (!host->pwrseq)
48 return -EPROBE_DEFER;
50 dev_info(host->parent, "allocated mmc-pwrseq\n");
52 return 0;
55 void mmc_pwrseq_pre_power_on(struct mmc_host *host)
57 struct mmc_pwrseq *pwrseq = host->pwrseq;
59 if (pwrseq && pwrseq->ops->pre_power_on)
60 pwrseq->ops->pre_power_on(host);
63 void mmc_pwrseq_post_power_on(struct mmc_host *host)
65 struct mmc_pwrseq *pwrseq = host->pwrseq;
67 if (pwrseq && pwrseq->ops->post_power_on)
68 pwrseq->ops->post_power_on(host);
71 void mmc_pwrseq_power_off(struct mmc_host *host)
73 struct mmc_pwrseq *pwrseq = host->pwrseq;
75 if (pwrseq && pwrseq->ops->power_off)
76 pwrseq->ops->power_off(host);
79 void mmc_pwrseq_reset(struct mmc_host *host)
81 struct mmc_pwrseq *pwrseq = host->pwrseq;
83 if (pwrseq && pwrseq->ops->reset)
84 pwrseq->ops->reset(host);
87 void mmc_pwrseq_free(struct mmc_host *host)
89 struct mmc_pwrseq *pwrseq = host->pwrseq;
91 if (pwrseq) {
92 module_put(pwrseq->owner);
93 host->pwrseq = NULL;
97 int mmc_pwrseq_register(struct mmc_pwrseq *pwrseq)
99 if (!pwrseq || !pwrseq->ops || !pwrseq->dev)
100 return -EINVAL;
102 mutex_lock(&pwrseq_list_mutex);
103 list_add(&pwrseq->pwrseq_node, &pwrseq_list);
104 mutex_unlock(&pwrseq_list_mutex);
106 return 0;
108 EXPORT_SYMBOL_GPL(mmc_pwrseq_register);
110 void mmc_pwrseq_unregister(struct mmc_pwrseq *pwrseq)
112 if (pwrseq) {
113 mutex_lock(&pwrseq_list_mutex);
114 list_del(&pwrseq->pwrseq_node);
115 mutex_unlock(&pwrseq_list_mutex);
118 EXPORT_SYMBOL_GPL(mmc_pwrseq_unregister);