[GIT PULL] drm: Add Atmel HLCDC driver

2015-01-21 Thread Boris Brezillon
Hi Dave,

Here is the pull request for the Atmel HLCDC driver and its
dependencies (some modifications to drm/core and drm/panel to define
output bus format).
I've added Thierry's acks and rebased on drm-next, let me know if you
need something else.

Best Regards,

Boris

The following changes since commit fc83975348ebce07793e6b9f780edc3cbcffa9fc:

  Merge tag 'imx-drm-next-2015-01-09' of git://git.pengutronix.de/git/pza/linux 
into drm-next (2015-01-21 10:17:16 +1000)

are available in the git repository at:


  https://github.com/bbrezillon/linux-at91.git tags/atmel-hlcdc-drm-3.20

for you to fetch changes up to 5b7e944ec87da878ef828d06094720be8884d33a:

  drm: add DT bindings documentation for atmel-hlcdc-dc driver (2015-01-21 
09:46:02 +0100)


Boris Brezillon (5):
  drm: add bus_formats and num_bus_formats fields to drm_display_info
  drm: panel: simple-panel: add support for bus_format retrieval
  drm: panel: simple-panel: add bus format information for foxlink panel
  drm: add Atmel HLCDC Display Controller support
  drm: add DT bindings documentation for atmel-hlcdc-dc driver

 .../devicetree/bindings/drm/atmel/hlcdc-dc.txt |  53 ++
 drivers/gpu/drm/Kconfig|   2 +
 drivers/gpu/drm/Makefile   |   1 +
 drivers/gpu/drm/atmel-hlcdc/Kconfig|  11 +
 drivers/gpu/drm/atmel-hlcdc/Makefile   |   7 +
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c | 406 ++
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c   | 579 ++
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.h   | 213 +
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.c| 667 
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.h| 398 ++
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c   | 319 
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c| 856 +
 drivers/gpu/drm/drm_crtc.c |  35 +
 drivers/gpu/drm/panel/panel-simple.c   |   6 +
 include/drm/drm_crtc.h |   8 +
 15 files changed, 3561 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/drm/atmel/hlcdc-dc.txt
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/Kconfig
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/Makefile
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.h
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.c
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.h
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c

-- 
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] drm: Add Atmel HLCDC driver

2015-01-20 Thread Dave Airlie
Hi Boris,

can you update with Thierry's acks and send again, I'll pull it then.

Dave.

On 17 January 2015 at 01:09, Thierry Reding  wrote:
> On Fri, Jan 09, 2015 at 04:03:42PM +0100, Boris Brezillon wrote:
>> Dave, Thierry,
>>
>> Here is the pull request for the Atmel HLCDC driver and its
>> dependencies (some modifications to drm/core and drm/panel to define
>> output bus format).
>>
>> I'm sending a pull request for this driver for several reasons:
>>
>>  * The patch series has been around for 6 months (initial version here
>>[3]), and has seen 9 iterations, taking into account comments made
>>by reviewers.
>>
>>  * It has received several Tested-by by various users/developers.
>>
>>  * It has been Reviewed-by Rob Clark.
>>
>>  * There has been no comment whatsoever since more than a month (see
>>[1] and [2] for the last modified version of these series).
>>
>> I'll be happy to take comments into account if any. But if there are no
>> more comments, please merge for 3.20.
>>
>> Best Regards,
>>
>> Boris
>>
>> [1]https://lkml.org/lkml/2014/12/1/717
>> [2]http://thread.gmane.org/gmane.comp.video.dri.devel/118700
>> [3]https://lkml.org/lkml/2014/6/9/487
>>
>> The following changes since commit c93546a5e32bd788c22aefa072385f3784551c13:
>>
>>   Merge tag 'topic/atomic-core-2015-01-05' of 
>> git://anongit.freedesktop.org/drm-intel into drm-next (2015-01-09 09:22:40 
>> +1000)
>>
>> are available in the git repository at:
>>
>>
>>   https://github.com/bbrezillon/linux-at91.git tags/atmel-hlcdc-drm-3.20
>>
>> for you to fetch changes up to e7f6614add3dc7776abd803be7cbe96b6254b3f5:
>>
>>   drm: add DT bindings documentation for atmel-hlcdc-dc driver (2015-01-09 
>> 14:55:08 +0100)
>>
>> 
>> Boris Brezillon (5):
>>   drm: add bus_formats and num_bus_formats fields to drm_display_info
>>   drm: panel: simple-panel: add support for bus_format retrieval
>>   drm: panel: simple-panel: add bus format information for foxlink panel
>>   drm: add Atmel HLCDC Display Controller support
>>   drm: add DT bindings documentation for atmel-hlcdc-dc driver
>
> For patches 1 to 3:
>
> Acked-by: Thierry Reding 
>
> For patches 4 and 5, I don't have the time to properly review them, but
> from a very quick glance I couldn't spot anything completely out of the
> ordinary, so I think it'd be okay to merge these for v3.20.
>
> Thierry
>
> ___
> dri-devel mailing list
> dri-de...@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL] drm: Add Atmel HLCDC driver

2015-01-16 Thread Thierry Reding
On Fri, Jan 09, 2015 at 04:03:42PM +0100, Boris Brezillon wrote:
> Dave, Thierry,
> 
> Here is the pull request for the Atmel HLCDC driver and its
> dependencies (some modifications to drm/core and drm/panel to define
> output bus format).
> 
> I'm sending a pull request for this driver for several reasons:
> 
>  * The patch series has been around for 6 months (initial version here
>[3]), and has seen 9 iterations, taking into account comments made
>by reviewers.
> 
>  * It has received several Tested-by by various users/developers.
> 
>  * It has been Reviewed-by Rob Clark.
> 
>  * There has been no comment whatsoever since more than a month (see
>[1] and [2] for the last modified version of these series).
> 
> I'll be happy to take comments into account if any. But if there are no
> more comments, please merge for 3.20.
> 
> Best Regards,
> 
> Boris
> 
> [1]https://lkml.org/lkml/2014/12/1/717
> [2]http://thread.gmane.org/gmane.comp.video.dri.devel/118700
> [3]https://lkml.org/lkml/2014/6/9/487
> 
> The following changes since commit c93546a5e32bd788c22aefa072385f3784551c13:
> 
>   Merge tag 'topic/atomic-core-2015-01-05' of 
> git://anongit.freedesktop.org/drm-intel into drm-next (2015-01-09 09:22:40 
> +1000)
> 
> are available in the git repository at:
> 
> 
>   https://github.com/bbrezillon/linux-at91.git tags/atmel-hlcdc-drm-3.20
> 
> for you to fetch changes up to e7f6614add3dc7776abd803be7cbe96b6254b3f5:
> 
>   drm: add DT bindings documentation for atmel-hlcdc-dc driver (2015-01-09 
> 14:55:08 +0100)
> 
> 
> Boris Brezillon (5):
>   drm: add bus_formats and num_bus_formats fields to drm_display_info
>   drm: panel: simple-panel: add support for bus_format retrieval
>   drm: panel: simple-panel: add bus format information for foxlink panel
>   drm: add Atmel HLCDC Display Controller support
>   drm: add DT bindings documentation for atmel-hlcdc-dc driver

For patches 1 to 3:

Acked-by: Thierry Reding 

For patches 4 and 5, I don't have the time to properly review them, but
from a very quick glance I couldn't spot anything completely out of the
ordinary, so I think it'd be okay to merge these for v3.20.

Thierry


pgpazhDgGjl5t.pgp
Description: PGP signature


Re: [GIT PULL] drm: Add Atmel HLCDC driver

2015-01-14 Thread Nicolas Ferre
Le 09/01/2015 16:03, Boris Brezillon a wrote :
> Dave, Thierry,

Dave and Thierry,

Is it possible for you to consider this pull-request? We would like to
see it appearing as soon as possible in linux-next.

Furthermore, we are pretty excited to see this long awaited driver
running on our AT91 SoCs with a Mainline kernel. We missed several
kernel releases and as everything seems accepted and well aligned now,
we are looking forward being reassured by an inclusion of this code in
the DRM git tree.

Thanks, bye.
  Nicolas.


> Here is the pull request for the Atmel HLCDC driver and its
> dependencies (some modifications to drm/core and drm/panel to define
> output bus format).
> 
> I'm sending a pull request for this driver for several reasons:
> 
>  * The patch series has been around for 6 months (initial version here
>[3]), and has seen 9 iterations, taking into account comments made
>by reviewers.
> 
>  * It has received several Tested-by by various users/developers.
> 
>  * It has been Reviewed-by Rob Clark.
> 
>  * There has been no comment whatsoever since more than a month (see
>[1] and [2] for the last modified version of these series).
> 
> I'll be happy to take comments into account if any. But if there are no
> more comments, please merge for 3.20.
> 
> Best Regards,
> 
> Boris
> 
> [1]https://lkml.org/lkml/2014/12/1/717
> [2]http://thread.gmane.org/gmane.comp.video.dri.devel/118700
> [3]https://lkml.org/lkml/2014/6/9/487
> 
> The following changes since commit c93546a5e32bd788c22aefa072385f3784551c13:
> 
>   Merge tag 'topic/atomic-core-2015-01-05' of 
> git://anongit.freedesktop.org/drm-intel into drm-next (2015-01-09 09:22:40 
> +1000)
> 
> are available in the git repository at:
> 
> 
>   https://github.com/bbrezillon/linux-at91.git tags/atmel-hlcdc-drm-3.20
> 
> for you to fetch changes up to e7f6614add3dc7776abd803be7cbe96b6254b3f5:
> 
>   drm: add DT bindings documentation for atmel-hlcdc-dc driver (2015-01-09 
> 14:55:08 +0100)
> 
> 
> Boris Brezillon (5):
>   drm: add bus_formats and num_bus_formats fields to drm_display_info
>   drm: panel: simple-panel: add support for bus_format retrieval
>   drm: panel: simple-panel: add bus format information for foxlink panel
>   drm: add Atmel HLCDC Display Controller support
>   drm: add DT bindings documentation for atmel-hlcdc-dc driver
> 
>  .../devicetree/bindings/drm/atmel/hlcdc-dc.txt |  53 ++
>  drivers/gpu/drm/Kconfig|   2 +
>  drivers/gpu/drm/Makefile   |   1 +
>  drivers/gpu/drm/atmel-hlcdc/Kconfig|  11 +
>  drivers/gpu/drm/atmel-hlcdc/Makefile   |   7 +
>  drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c | 406 ++
>  drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c   | 579 ++
>  drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.h   | 213 +
>  drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.c| 667 
>  drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.h| 398 ++
>  drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c   | 319 
>  drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c| 856 
> +
>  drivers/gpu/drm/drm_crtc.c |  35 +
>  drivers/gpu/drm/panel/panel-simple.c   |   6 +
>  include/drm/drm_crtc.h |   8 +
>  15 files changed, 3561 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/drm/atmel/hlcdc-dc.txt
>  create mode 100644 drivers/gpu/drm/atmel-hlcdc/Kconfig
>  create mode 100644 drivers/gpu/drm/atmel-hlcdc/Makefile
>  create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c
>  create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
>  create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.h
>  create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.c
>  create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.h
>  create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c
>  create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c
> 
> 


-- 
Nicolas Ferre

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL] drm: Add Atmel HLCDC driver

2015-01-09 Thread Boris Brezillon
Dave, Thierry,

Here is the pull request for the Atmel HLCDC driver and its
dependencies (some modifications to drm/core and drm/panel to define
output bus format).

I'm sending a pull request for this driver for several reasons:

 * The patch series has been around for 6 months (initial version here
   [3]), and has seen 9 iterations, taking into account comments made
   by reviewers.

 * It has received several Tested-by by various users/developers.

 * It has been Reviewed-by Rob Clark.

 * There has been no comment whatsoever since more than a month (see
   [1] and [2] for the last modified version of these series).

I'll be happy to take comments into account if any. But if there are no
more comments, please merge for 3.20.

Best Regards,

Boris

[1]https://lkml.org/lkml/2014/12/1/717
[2]http://thread.gmane.org/gmane.comp.video.dri.devel/118700
[3]https://lkml.org/lkml/2014/6/9/487

The following changes since commit c93546a5e32bd788c22aefa072385f3784551c13:

  Merge tag 'topic/atomic-core-2015-01-05' of 
git://anongit.freedesktop.org/drm-intel into drm-next (2015-01-09 09:22:40 
+1000)

are available in the git repository at:


  https://github.com/bbrezillon/linux-at91.git tags/atmel-hlcdc-drm-3.20

for you to fetch changes up to e7f6614add3dc7776abd803be7cbe96b6254b3f5:

  drm: add DT bindings documentation for atmel-hlcdc-dc driver (2015-01-09 
14:55:08 +0100)


Boris Brezillon (5):
  drm: add bus_formats and num_bus_formats fields to drm_display_info
  drm: panel: simple-panel: add support for bus_format retrieval
  drm: panel: simple-panel: add bus format information for foxlink panel
  drm: add Atmel HLCDC Display Controller support
  drm: add DT bindings documentation for atmel-hlcdc-dc driver

 .../devicetree/bindings/drm/atmel/hlcdc-dc.txt |  53 ++
 drivers/gpu/drm/Kconfig|   2 +
 drivers/gpu/drm/Makefile   |   1 +
 drivers/gpu/drm/atmel-hlcdc/Kconfig|  11 +
 drivers/gpu/drm/atmel-hlcdc/Makefile   |   7 +
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c | 406 ++
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c   | 579 ++
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.h   | 213 +
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.c| 667 
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.h| 398 ++
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c   | 319 
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c| 856 +
 drivers/gpu/drm/drm_crtc.c |  35 +
 drivers/gpu/drm/panel/panel-simple.c   |   6 +
 include/drm/drm_crtc.h |   8 +
 15 files changed, 3561 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/drm/atmel/hlcdc-dc.txt
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/Kconfig
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/Makefile
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_crtc.c
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.h
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.c
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_layer.h
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c
 create mode 100644 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/