cregit-Linux how code gets into the kernel

Release 4.11 drivers/gpu/drm/fsl-dcu/fsl_tcon.c

/*
 * Copyright 2015 Toradex AG
 *
 * Stefan Agner <stefan@agner.ch>
 *
 * Freescale TCON device driver
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#include <linux/clk.h>
#include <linux/io.h>
#include <linux/mm.h>
#include <linux/of_address.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>

#include "fsl_tcon.h"


void fsl_tcon_bypass_disable(struct fsl_tcon *tcon) { regmap_update_bits(tcon->regs, FSL_TCON_CTRL1, FSL_TCON_CTRL1_TCON_BYPASS, 0); }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Agner23100.00%1100.00%
Total23100.00%1100.00%


void fsl_tcon_bypass_enable(struct fsl_tcon *tcon) { regmap_update_bits(tcon->regs, FSL_TCON_CTRL1, FSL_TCON_CTRL1_TCON_BYPASS, FSL_TCON_CTRL1_TCON_BYPASS); }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Agner23100.00%1100.00%
Total23100.00%1100.00%

static struct regmap_config fsl_tcon_regmap_config = { .reg_bits = 32, .reg_stride = 4, .val_bits = 32, .name = "tcon", };
static int fsl_tcon_init_regmap(struct device *dev, struct fsl_tcon *tcon, struct device_node *np) { struct resource res; void __iomem *regs; if (of_address_to_resource(np, 0, &res)) return -EINVAL; regs = devm_ioremap_resource(dev, &res); if (IS_ERR(regs)) return PTR_ERR(regs); tcon->regs = devm_regmap_init_mmio(dev, regs, &fsl_tcon_regmap_config); return PTR_ERR_OR_ZERO(tcon->regs); }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Agner9098.90%150.00%
Wei Yongjun11.10%150.00%
Total91100.00%2100.00%


struct fsl_tcon *fsl_tcon_init(struct device *dev) { struct fsl_tcon *tcon; struct device_node *np; int ret; /* TCON node is not mandatory, some devices do not provide TCON */ np = of_parse_phandle(dev->of_node, "fsl,tcon", 0); if (!np) return NULL; tcon = devm_kzalloc(dev, sizeof(*tcon), GFP_KERNEL); if (!tcon) goto err_node_put; ret = fsl_tcon_init_regmap(dev, tcon, np); if (ret) { dev_err(dev, "Couldn't create the TCON regmap\n"); goto err_node_put; } tcon->ipg_clk = of_clk_get_by_name(np, "ipg"); if (IS_ERR(tcon->ipg_clk)) { dev_err(dev, "Couldn't get the TCON bus clock\n"); goto err_node_put; } ret = clk_prepare_enable(tcon->ipg_clk); if (ret) { dev_err(dev, "Couldn't enable the TCON clock\n"); goto err_node_put; } of_node_put(np); dev_info(dev, "Using TCON in bypass mode\n"); return tcon; err_node_put: of_node_put(np); return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Agner15687.15%150.00%
Fabio Estevam2312.85%150.00%
Total179100.00%2100.00%


void fsl_tcon_free(struct fsl_tcon *tcon) { clk_disable_unprepare(tcon->ipg_clk); clk_put(tcon->ipg_clk); }

Contributors

PersonTokensPropCommitsCommitProp
Stefan Agner24100.00%1100.00%
Total24100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Stefan Agner36593.83%133.33%
Fabio Estevam235.91%133.33%
Wei Yongjun10.26%133.33%
Total389100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.