Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/drivers/media/platform/mediatek/mdp/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  mtk_mdp_comp.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2016 MediaTek Inc.
 * Author: Ming Hsiu Tsai <minghsiu.tsai@mediatek.com>
 */


#include <linux/clk.h>
#include <linux/device.h>
#include <linux/of.h>

#include "mtk_mdp_comp.h"


void mtk_mdp_comp_clock_on(struct device *dev, struct mtk_mdp_comp *comp)
{
 int i, err;

 for (i = 0; i < ARRAY_SIZE(comp->clk); i++) {
  if (IS_ERR(comp->clk[i]))
   continue;
  err = clk_prepare_enable(comp->clk[i]);
  if (err)
   dev_err(dev,
   "failed to enable clock, err %d. type:%d i:%d\n",
    err, comp->type, i);
 }
}

void mtk_mdp_comp_clock_off(struct device *dev, struct mtk_mdp_comp *comp)
{
 int i;

 for (i = 0; i < ARRAY_SIZE(comp->clk); i++) {
  if (IS_ERR(comp->clk[i]))
   continue;
  clk_disable_unprepare(comp->clk[i]);
 }
}

int mtk_mdp_comp_init(struct device *dev, struct device_node *node,
        struct mtk_mdp_comp *comp,
        enum mtk_mdp_comp_type comp_type)
{
 int ret;
 int i;

 comp->dev_node = of_node_get(node);
 comp->type = comp_type;

 for (i = 0; i < ARRAY_SIZE(comp->clk); i++) {
  comp->clk[i] = of_clk_get(node, i);
  if (IS_ERR(comp->clk[i])) {
   ret = dev_err_probe(dev, PTR_ERR(comp->clk[i]),
         "Failed to get clock\n");
   goto put_dev;
  }

  /* Only RDMA needs two clocks */
  if (comp->type != MTK_MDP_RDMA)
   break;
 }

 return 0;

put_dev:
 of_node_put(comp->dev_node);

 return ret;
}

void mtk_mdp_comp_deinit(struct device *dev, struct mtk_mdp_comp *comp)
{
 of_node_put(comp->dev_node);
}

Messung V0.5
C=97 H=91 G=93

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.