All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Simon Horman <horms@verge.net.au>
Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>,
	linux-sh@vger.kernel.org, dri-devel@lists.freedesktop.org,
	magnus.damm@gmail.com
Subject: Re: [PATCH 2/3] drm: Renesas R-Car Display Unit DRM driver
Date: Thu, 07 Feb 2013 12:53:13 +0000	[thread overview]
Message-ID: <2347648.XJfvtpGXnM@avalon> (raw)
In-Reply-To: <20130207021551.GA29824@verge.net.au>

Hi Simon,

On Thursday 07 February 2013 11:15:52 Simon Horman wrote:
> On Thu, Jan 31, 2013 at 02:45:02AM +0100, Laurent Pinchart wrote:
> > The R-Car Display Unit (DU) DRM driver supports both superposition
> > processors and all eight planes in RGB and YUV formats without alpha
> > blending.
> > 
> > Only VGA and LVDS encoders and connectors are currently supported.
> > 
> > Signed-off-by: Laurent Pinchart
> > <laurent.pinchart+renesas@ideasonboard.com>
> 
> [snip]
> 
> > diff --git a/drivers/gpu/drm/rcar-du/Kconfig
> > b/drivers/gpu/drm/rcar-du/Kconfig new file mode 100644
> > index 0000000..686486d
> > --- /dev/null
> > +++ b/drivers/gpu/drm/rcar-du/Kconfig
> > @@ -0,0 +1,11 @@
> > +config DRM_RCAR_DU
> > +	tristate "DRM Support for R-Car Display Unit"
> > +	depends on DRM && ARCH_SHMOBILE
> > +	select DRM_KMS_HELPER
> > +	select DRM_KMS_CMA_HELPER
> > +	select DRM_GEM_CMA_HELPER
> > +	select OF
> > +	help
> > +	  Choose this option if you have an R-Car chipset.
> > +	  If M is selected the module will be called rcar-du-drm.
> > +
> 
> Git tells me there is a blank line at EOF here.

And git is right :-) I will fix these blank lines at EOF issues.

> [snip]
> 
> > diff --git a/drivers/gpu/drm/rcar-du/rcar_du_kms.h
> > b/drivers/gpu/drm/rcar-du/rcar_du_kms.h new file mode 100644
> > index 0000000..363ed0b
> > --- /dev/null
> > +++ b/drivers/gpu/drm/rcar-du/rcar_du_kms.h
> > @@ -0,0 +1,34 @@
> > +/*
> > + * rcar_du_kms.h  --  R-Car Display Unit Mode Setting
> > + *
> > + * Copyright (C) 2013 Renesas Corporation
> > + *
> > + * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
> > + *
> > + * 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.
> > + */
> > +
> > +#ifndef __RCAR_DU_KMS_H__
> > +#define __RCAR_DU_KMS_H__
> > +
> > +#include <linux/types.h>
> > +
> > +struct rcar_du_device;
> > +
> > +struct rcar_du_format_info {
> > +	u32 fourcc;
> > +	unsigned int bpp;
> > +	unsigned int planes;
> > +	unsigned int dddf;
> > +	unsigned int edf;
> > +};
> > +
> > +const struct rcar_du_format_info *rcar_du_format_info(u32 fourcc);
> > +
> > +int rcar_du_modeset_init(struct rcar_du_device *rcdu);
> > +
> > +#endif /* __RCAR_DU_KMS_H__ */
> > +
> 
> And here
> 
> [snip]

-- 
Regards,

Laurent Pinchart


WARNING: multiple messages have this Message-ID (diff)
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Simon Horman <horms@verge.net.au>
Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>,
	linux-sh@vger.kernel.org, dri-devel@lists.freedesktop.org,
	magnus.damm@gmail.com
Subject: Re: [PATCH 2/3] drm: Renesas R-Car Display Unit DRM driver
Date: Thu, 07 Feb 2013 13:53:13 +0100	[thread overview]
Message-ID: <2347648.XJfvtpGXnM@avalon> (raw)
In-Reply-To: <20130207021551.GA29824@verge.net.au>

Hi Simon,

On Thursday 07 February 2013 11:15:52 Simon Horman wrote:
> On Thu, Jan 31, 2013 at 02:45:02AM +0100, Laurent Pinchart wrote:
> > The R-Car Display Unit (DU) DRM driver supports both superposition
> > processors and all eight planes in RGB and YUV formats without alpha
> > blending.
> > 
> > Only VGA and LVDS encoders and connectors are currently supported.
> > 
> > Signed-off-by: Laurent Pinchart
> > <laurent.pinchart+renesas@ideasonboard.com>
> 
> [snip]
> 
> > diff --git a/drivers/gpu/drm/rcar-du/Kconfig
> > b/drivers/gpu/drm/rcar-du/Kconfig new file mode 100644
> > index 0000000..686486d
> > --- /dev/null
> > +++ b/drivers/gpu/drm/rcar-du/Kconfig
> > @@ -0,0 +1,11 @@
> > +config DRM_RCAR_DU
> > +	tristate "DRM Support for R-Car Display Unit"
> > +	depends on DRM && ARCH_SHMOBILE
> > +	select DRM_KMS_HELPER
> > +	select DRM_KMS_CMA_HELPER
> > +	select DRM_GEM_CMA_HELPER
> > +	select OF
> > +	help
> > +	  Choose this option if you have an R-Car chipset.
> > +	  If M is selected the module will be called rcar-du-drm.
> > +
> 
> Git tells me there is a blank line at EOF here.

And git is right :-) I will fix these blank lines at EOF issues.

> [snip]
> 
> > diff --git a/drivers/gpu/drm/rcar-du/rcar_du_kms.h
> > b/drivers/gpu/drm/rcar-du/rcar_du_kms.h new file mode 100644
> > index 0000000..363ed0b
> > --- /dev/null
> > +++ b/drivers/gpu/drm/rcar-du/rcar_du_kms.h
> > @@ -0,0 +1,34 @@
> > +/*
> > + * rcar_du_kms.h  --  R-Car Display Unit Mode Setting
> > + *
> > + * Copyright (C) 2013 Renesas Corporation
> > + *
> > + * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
> > + *
> > + * 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.
> > + */
> > +
> > +#ifndef __RCAR_DU_KMS_H__
> > +#define __RCAR_DU_KMS_H__
> > +
> > +#include <linux/types.h>
> > +
> > +struct rcar_du_device;
> > +
> > +struct rcar_du_format_info {
> > +	u32 fourcc;
> > +	unsigned int bpp;
> > +	unsigned int planes;
> > +	unsigned int dddf;
> > +	unsigned int edf;
> > +};
> > +
> > +const struct rcar_du_format_info *rcar_du_format_info(u32 fourcc);
> > +
> > +int rcar_du_modeset_init(struct rcar_du_device *rcdu);
> > +
> > +#endif /* __RCAR_DU_KMS_H__ */
> > +
> 
> And here
> 
> [snip]

-- 
Regards,

Laurent Pinchart


  reply	other threads:[~2013-02-07 12:53 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-31  1:45 [PATCH 0/3] R-Car Display Unit DRM driver Laurent Pinchart
2013-01-31  1:45 ` Laurent Pinchart
2013-01-31  1:45 ` [PATCH 1/3] r8a7779: Add Display Unit clock support Laurent Pinchart
2013-01-31  1:45   ` Laurent Pinchart
2013-01-31  6:35   ` Simon Horman
2013-01-31  6:35     ` Simon Horman
2013-01-31 10:14     ` Laurent Pinchart
2013-01-31 10:14       ` Laurent Pinchart
2013-02-01  0:06       ` Simon Horman
2013-02-01  0:06         ` Simon Horman
2013-02-07  2:20       ` Simon Horman
2013-02-07  2:20         ` Simon Horman
2013-03-12 15:08   ` Laurent Pinchart
2013-03-12 15:52   ` Simon Horman
2013-01-31  1:45 ` [PATCH 2/3] drm: Renesas R-Car Display Unit DRM driver Laurent Pinchart
2013-01-31  1:45   ` Laurent Pinchart
2013-02-07  2:15   ` Simon Horman
2013-02-07  2:15     ` Simon Horman
2013-02-07 12:53     ` Laurent Pinchart [this message]
2013-02-07 12:53       ` Laurent Pinchart
2013-02-07  7:32   ` Simon Horman
2013-02-07  7:32     ` Simon Horman
2013-02-07  8:23     ` Kuninori Morimoto
2013-02-07  8:23       ` Kuninori Morimoto
2013-02-07 16:08       ` Laurent Pinchart
2013-02-07 16:08         ` Laurent Pinchart
2013-02-13 12:28   ` Simon Horman
2013-02-13 12:28     ` Simon Horman
2013-02-13 18:18     ` Laurent Pinchart
2013-02-13 18:18       ` Laurent Pinchart
2013-02-14  0:40       ` Simon Horman
2013-02-14  0:40         ` Simon Horman
2013-01-31  1:45 ` [PATCH 3/3] ARM: shmobile: marzen: Add Display Unit support Laurent Pinchart
2013-01-31  1:45   ` Laurent Pinchart
2013-02-07  4:27   ` Kuninori Morimoto
2013-02-07  4:27     ` Kuninori Morimoto
2013-02-07 12:51     ` Laurent Pinchart
2013-02-07 12:51       ` Laurent Pinchart
2013-02-08  0:17       ` Kuninori Morimoto
2013-02-08  0:17         ` Kuninori Morimoto
2013-01-31  6:38 ` [PATCH 0/3] R-Car Display Unit DRM driver Simon Horman
2013-01-31  6:38   ` Simon Horman
2013-02-01  3:15   ` Laurent Pinchart
2013-02-01  3:15     ` Laurent Pinchart
2013-02-01  3:26     ` Simon Horman
2013-02-01  3:26       ` Simon Horman

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=2347648.XJfvtpGXnM@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=horms@verge.net.au \
    --cc=laurent.pinchart+renesas@ideasonboard.com \
    --cc=linux-sh@vger.kernel.org \
    --cc=magnus.damm@gmail.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.