Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

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 in Prozent
C=91 H=96 G=93

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet am  2026-06-06) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=434850
#Domains=655579