Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | /* * Copyright (C) 2014 Linaro Ltd * * Author: Ulf Hansson <ulf.hansson@linaro.org> * * License terms: GNU General Public License (GPL) version 2 * * MMC power sequence management */ #include <linux/kernel.h> #include <linux/platform_device.h> #include <linux/err.h> #include <linux/of.h> #include <linux/of_platform.h> #include <linux/mmc/host.h> #include "pwrseq.h" struct mmc_pwrseq_match { const char *compatible; struct mmc_pwrseq *(*alloc)(struct mmc_host *host, struct device *dev); }; static struct mmc_pwrseq_match pwrseq_match[] = { { .compatible = "mmc-pwrseq-simple", .alloc = mmc_pwrseq_simple_alloc, }, { .compatible = "mmc-pwrseq-emmc", .alloc = mmc_pwrseq_emmc_alloc, }, }; static struct mmc_pwrseq_match *mmc_pwrseq_find(struct device_node *np) { struct mmc_pwrseq_match *match = ERR_PTR(-ENODEV); int i; for (i = 0; i < ARRAY_SIZE(pwrseq_match); i++) { if (of_device_is_compatible(np, pwrseq_match[i].compatible)) { match = &pwrseq_match[i]; break; } } return match; } int mmc_pwrseq_alloc(struct mmc_host *host) { struct platform_device *pdev; struct device_node *np; struct mmc_pwrseq_match *match; struct mmc_pwrseq *pwrseq; int ret = 0; np = of_parse_phandle(host->parent->of_node, "mmc-pwrseq", 0); if (!np) return 0; pdev = of_find_device_by_node(np); if (!pdev) { ret = -ENODEV; goto err; } match = mmc_pwrseq_find(np); if (IS_ERR(match)) { ret = PTR_ERR(match); goto err; } pwrseq = match->alloc(host, &pdev->dev); if (IS_ERR(pwrseq)) { ret = PTR_ERR(pwrseq); goto err; } host->pwrseq = pwrseq; dev_info(host->parent, "allocated mmc-pwrseq\n"); err: of_node_put(np); return ret; } void mmc_pwrseq_pre_power_on(struct mmc_host *host) { struct mmc_pwrseq *pwrseq = host->pwrseq; if (pwrseq && pwrseq->ops && pwrseq->ops->pre_power_on) pwrseq->ops->pre_power_on(host); } void mmc_pwrseq_post_power_on(struct mmc_host *host) { struct mmc_pwrseq *pwrseq = host->pwrseq; if (pwrseq && pwrseq->ops && pwrseq->ops->post_power_on) pwrseq->ops->post_power_on(host); } void mmc_pwrseq_power_off(struct mmc_host *host) { struct mmc_pwrseq *pwrseq = host->pwrseq; if (pwrseq && pwrseq->ops && pwrseq->ops->power_off) pwrseq->ops->power_off(host); } void mmc_pwrseq_free(struct mmc_host *host) { struct mmc_pwrseq *pwrseq = host->pwrseq; if (pwrseq && pwrseq->ops && pwrseq->ops->free) pwrseq->ops->free(host); host->pwrseq = NULL; } |