cregit-Linux how code gets into the kernel

Release 4.7 drivers/mmc/core/pwrseq.c

Directory: drivers/mmc/core
/*
 *  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/err.h>
#include <linux/module.h>
#include <linux/of.h>

#include <linux/mmc/host.h>

#include "pwrseq.h"

static DEFINE_MUTEX(pwrseq_list_mutex);
static LIST_HEAD(pwrseq_list);


int mmc_pwrseq_alloc(struct mmc_host *host) { struct device_node *np; struct mmc_pwrseq *p; np = of_parse_phandle(host->parent->of_node, "mmc-pwrseq", 0); if (!np) return 0; mutex_lock(&pwrseq_list_mutex); list_for_each_entry(p, &pwrseq_list, pwrseq_node) { if (p->dev->of_node == np) { if (!try_module_get(p->owner)) dev_err(host->parent, "increasing module refcount failed\n"); else host->pwrseq = p; break; } } of_node_put(np); mutex_unlock(&pwrseq_list_mutex); if (!host->pwrseq) return -EPROBE_DEFER; dev_info(host->parent, "allocated mmc-pwrseq\n"); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
ulf hanssonulf hansson6952.27%250.00%
srinivas kandagatlasrinivas kandagatla5340.15%125.00%
alexandre courbotalexandre courbot107.58%125.00%
Total132100.00%4100.00%


void mmc_pwrseq_pre_power_on(struct mmc_host *host) { struct mmc_pwrseq *pwrseq = host->pwrseq; if (pwrseq && pwrseq->ops->pre_power_on) pwrseq->ops->pre_power_on(host); }

Contributors

PersonTokensPropCommitsCommitProp
ulf hanssonulf hansson38100.00%1100.00%
Total38100.00%1100.00%


void mmc_pwrseq_post_power_on(struct mmc_host *host) { struct mmc_pwrseq *pwrseq = host->pwrseq; if (pwrseq && pwrseq->ops->post_power_on) pwrseq->ops->post_power_on(host); }

Contributors

PersonTokensPropCommitsCommitProp
ulf hanssonulf hansson38100.00%1100.00%
Total38100.00%1100.00%


void mmc_pwrseq_power_off(struct mmc_host *host) { struct mmc_pwrseq *pwrseq = host->pwrseq; if (pwrseq && pwrseq->ops->power_off) pwrseq->ops->power_off(host); }

Contributors

PersonTokensPropCommitsCommitProp
ulf hanssonulf hansson38100.00%1100.00%
Total38100.00%1100.00%


void mmc_pwrseq_free(struct mmc_host *host) { struct mmc_pwrseq *pwrseq = host->pwrseq; if (pwrseq) { module_put(pwrseq->owner); host->pwrseq = NULL; } }

Contributors

PersonTokensPropCommitsCommitProp
ulf hanssonulf hansson2360.53%150.00%
srinivas kandagatlasrinivas kandagatla1539.47%150.00%
Total38100.00%2100.00%


int mmc_pwrseq_register(struct mmc_pwrseq *pwrseq) { if (!pwrseq || !pwrseq->ops || !pwrseq->dev) return -EINVAL; mutex_lock(&pwrseq_list_mutex); list_add(&pwrseq->pwrseq_node, &pwrseq_list); mutex_unlock(&pwrseq_list_mutex); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
srinivas kandagatlasrinivas kandagatla4581.82%150.00%
ulf hanssonulf hansson1018.18%150.00%
Total55100.00%2100.00%

EXPORT_SYMBOL_GPL(mmc_pwrseq_register);
void mmc_pwrseq_unregister(struct mmc_pwrseq *pwrseq) { if (pwrseq) { mutex_lock(&pwrseq_list_mutex); list_del(&pwrseq->pwrseq_node); mutex_unlock(&pwrseq_list_mutex); } }

Contributors

PersonTokensPropCommitsCommitProp
srinivas kandagatlasrinivas kandagatla3391.67%133.33%
alexandre courbotalexandre courbot25.56%133.33%
ulf hanssonulf hansson12.78%133.33%
Total36100.00%3100.00%

EXPORT_SYMBOL_GPL(mmc_pwrseq_unregister);

Overall Contributors

PersonTokensPropCommitsCommitProp
ulf hanssonulf hansson24057.69%250.00%
srinivas kandagatlasrinivas kandagatla16439.42%125.00%
alexandre courbotalexandre courbot122.88%125.00%
Total416100.00%4100.00%
Directory: drivers/mmc/core
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}