dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Maxime Ripard <maxime.ripard@free-electrons.com>
To: Chen-Yu Tsai <wens@csie.org>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	dri-devel <dri-devel@lists.freedesktop.org>,
	Rob Herring <robh+dt@kernel.org>,
	linux-sunxi <linux-sunxi@googlegroups.com>,
	Daniel Vetter <daniel.vetter@intel.com>,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 3/7] drm/sun4i: Add SAT and DRC drivers
Date: Mon, 5 Sep 2016 22:27:09 +0200	[thread overview]
Message-ID: <20160905202709.GE8596@lukather> (raw)
In-Reply-To: <CAGb2v65aSJRBxYX8hweYqezQyfTz_AiqqkGv6c=+8QEL3S+uSw@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 1131 bytes --]

Hi,

On Fri, Sep 02, 2016 at 02:45:06PM +0800, Chen-Yu Tsai wrote:
> > +
> > +DRC
> > +---
> > +
> > +The DRC, found in the latest Allwinner SoCs (A31, A23, A33), allows to
> > +do some backlight control to enhance the power consumption.
> > +
> > +Required properties:
> > +  - compatible: value must be one of:
> > +    * allwinner,sun8i-a33-drc
> 
> Since this was first introduced in the A31, maybe using that
> for the compatible is better?
> 
> Or do you want one for each SoC, given these are unknown black
> boxes?

Yeah, I'd prefer to be on the safe side here :/

> > +       drc->mod_clk = devm_clk_get(dev, "mod");
> > +       if (IS_ERR(drc->mod_clk)) {
> > +               dev_err(dev, "Couldn't get our mod clock\n");
> > +               ret = PTR_ERR(drc->mod_clk);
> > +               goto err_disable_bus_clk;
> > +       }
> > +
> > +       return clk_prepare_enable(drc->mod_clk);
> 
> What happens if this fails? No cleanup happens.

Indeed, will fix.

Thanks!
Maxime


-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2016-09-05 20:27 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-01 15:31 [PATCH 0/7] drm/sun4i: Introduce A33 display driver Maxime Ripard
     [not found] ` <20160901153204.11217-1-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2016-09-01 15:31   ` [PATCH 1/7] drm/sun4i: support TCONs without channel 1 Maxime Ripard
     [not found]     ` <20160901153204.11217-2-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2016-09-02  1:47       ` Chen-Yu Tsai
2016-09-01 15:31   ` [PATCH 2/7] drm/sun4i: support A33 tcon Maxime Ripard
     [not found]     ` <20160901153204.11217-3-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2016-09-02  6:02       ` Chen-Yu Tsai
2016-09-05 20:22         ` Maxime Ripard
2016-09-01 15:32   ` [PATCH 3/7] drm/sun4i: Add SAT and DRC drivers Maxime Ripard
     [not found]     ` <20160901153204.11217-4-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2016-09-02  6:45       ` Chen-Yu Tsai
2016-09-05 20:27         ` Maxime Ripard [this message]
2016-09-04 20:03       ` Peter Korsgaard
     [not found]         ` <8737lfwhz9.fsf-D6SC8u56vOOJDPpyT6T3/w@public.gmane.org>
2016-09-06 13:59           ` Maxime Ripard
2016-09-01 15:32   ` [PATCH 5/7] ARM: sun8i: a33: Add display pipeline Maxime Ripard
     [not found]     ` <20160901153204.11217-6-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2016-09-02  6:28       ` Chen-Yu Tsai
     [not found]         ` <CAGb2v66F+i=8SxrCN2+HNrjo5d=zXpCmbe9R=BT2sBxDXXXquw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-05 20:21           ` Maxime Ripard
2016-09-06  2:51             ` Chen-Yu Tsai
2016-09-01 15:32   ` [PATCH 6/7] ARM: sun8i: a33: Add RGB666 pins Maxime Ripard
     [not found]     ` <20160901153204.11217-7-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2016-09-02  1:44       ` Chen-Yu Tsai
2016-09-02  1:30   ` [PATCH 0/7] drm/sun4i: Introduce A33 display driver Icenowy Zheng
     [not found]     ` <18951472779805-LmDkvRuZ8wBuio3avFS2gg@public.gmane.org>
2016-09-02 19:06       ` Maxime Ripard
2016-09-03  1:43         ` Chen-Yu Tsai
2016-09-05 20:37           ` Maxime Ripard
2016-09-06  2:50             ` Chen-Yu Tsai
     [not found]               ` <CAGb2v65Ui5ys_=5fmW4FkfR+oc7sCnwq0cHbgGFt3r-Kgg=k5w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-06 18:54                 ` Maxime Ripard
2016-09-07  4:49                   ` Chen-Yu Tsai
     [not found]                     ` <CAGb2v660je7FAiXfeRb5Ynwtr8=fYDR1JHzrj2Hk+43_J0XRLg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-12  9:56                       ` Maxime Ripard
2016-09-01 15:32 ` [PATCH 4/7] drm/panel: Add Sinlinx SinA33 7" panel Maxime Ripard
2016-09-02  7:01   ` Chen-Yu Tsai
     [not found]   ` <20160901153204.11217-5-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2016-09-04 17:03     ` Icenowy Zheng
2016-09-05 20:02       ` Maxime Ripard
2016-09-06  2:53         ` Chen-Yu Tsai
2016-09-06  9:12         ` Thierry Reding
     [not found]           ` <20160906091224.GC15644-EkSeR96xj6Pcmrwk2tT4+A@public.gmane.org>
2016-09-06 14:33             ` Maxime Ripard
2016-09-01 15:32 ` [PATCH 7/7] ARM: sun8i: sina33: Enable display Maxime Ripard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160905202709.GE8596@lukather \
    --to=maxime.ripard@free-electrons.com \
    --cc=daniel.vetter@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sunxi@googlegroups.com \
    --cc=robh+dt@kernel.org \
    --cc=thomas.petazzoni@free-electrons.com \
    --cc=wens@csie.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).