All of lore.kernel.org
 help / color / mirror / Atom feed
* "[PULL] video_visstrim for 3.6"
@ 2012-07-26  9:36 Javier Martin
  2012-07-30 22:42 ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 6+ messages in thread
From: Javier Martin @ 2012-07-26  9:36 UTC (permalink / raw)
  To: mchehab; +Cc: linux-media

Hi Mauro,
this pull request is composed of two series that provide support for two mem2mem devices:
- 'm2m-deinterlace' video deinterlacer
- 'coda video codec'
I've included platform support for them too.


The following changes since commit 6887a4131da3adaab011613776d865f4bcfb5678:

  Linux 3.5-rc5 (2012-06-30 16:08:57 -0700)

are available in the git repository at:

  https://github.com/jmartinc/video_visstrim.git for_3.6

for you to fetch changes up to 9bb10266da63ae7f8f198573e099580e9f98f4e8:

  i.MX27: Visstrim_M10: Add support for deinterlacing driver. (2012-07-26 10:57:30 +0200)

----------------------------------------------------------------
Javier Martin (5):
      i.MX: coda: Add platform support for coda in i.MX27.
      media: coda: Add driver for Coda video codec.
      Visstrim M10: Add support for Coda.
      media: Add mem2mem deinterlacing driver.
      i.MX27: Visstrim_M10: Add support for deinterlacing driver.

 arch/arm/mach-imx/clk-imx27.c                   |    4 +-
 arch/arm/mach-imx/devices-imx27.h               |    4 +
 arch/arm/mach-imx/mach-imx27_visstrim_m10.c     |   49 +-
 arch/arm/plat-mxc/devices/Kconfig               |    6 +-
 arch/arm/plat-mxc/devices/Makefile              |    1 +
 arch/arm/plat-mxc/devices/platform-imx27-coda.c |   37 +
 arch/arm/plat-mxc/include/mach/devices-common.h |    8 +
 drivers/media/video/Kconfig                     |   17 +
 drivers/media/video/Makefile                    |    3 +
 drivers/media/video/coda.c                      | 1848 +++++++++++++++++++++++
 drivers/media/video/coda.h                      |  216 +++
 drivers/media/video/m2m-deinterlace.c           | 1119 ++++++++++++++
 12 files changed, 3305 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/plat-mxc/devices/platform-imx27-coda.c
 create mode 100644 drivers/media/video/coda.c
 create mode 100644 drivers/media/video/coda.h
 create mode 100644 drivers/media/video/m2m-deinterlace.c

Thanks,
Javier.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: "[PULL] video_visstrim for 3.6"
  2012-07-26  9:36 "[PULL] video_visstrim for 3.6" Javier Martin
@ 2012-07-30 22:42 ` Mauro Carvalho Chehab
  2012-07-31  6:13   ` javier Martin
  0 siblings, 1 reply; 6+ messages in thread
From: Mauro Carvalho Chehab @ 2012-07-30 22:42 UTC (permalink / raw)
  To: Javier Martin; +Cc: linux-media

Em 26-07-2012 06:36, Javier Martin escreveu:
> Hi Mauro,
> this pull request is composed of two series that provide support for two mem2mem devices:
> - 'm2m-deinterlace' video deinterlacer
> - 'coda video codec'
> I've included platform support for them too.
> 
> 
> The following changes since commit 6887a4131da3adaab011613776d865f4bcfb5678:
> 
>    Linux 3.5-rc5 (2012-06-30 16:08:57 -0700)
> 
> are available in the git repository at:
> 
>    https://github.com/jmartinc/video_visstrim.git for_3.6
> 
> for you to fetch changes up to 9bb10266da63ae7f8f198573e099580e9f98f4e8:
> 
>    i.MX27: Visstrim_M10: Add support for deinterlacing driver. (2012-07-26 10:57:30 +0200)
> 
> ----------------------------------------------------------------
> Javier Martin (5):
>        i.MX: coda: Add platform support for coda in i.MX27.
>        media: coda: Add driver for Coda video codec.
>        Visstrim M10: Add support for Coda.
>        media: Add mem2mem deinterlacing driver.
>        i.MX27: Visstrim_M10: Add support for deinterlacing driver.
> 
>   arch/arm/mach-imx/clk-imx27.c                   |    4 +-
>   arch/arm/mach-imx/devices-imx27.h               |    4 +
>   arch/arm/mach-imx/mach-imx27_visstrim_m10.c     |   49 +-
>   arch/arm/plat-mxc/devices/Kconfig               |    6 +-
>   arch/arm/plat-mxc/devices/Makefile              |    1 +
>   arch/arm/plat-mxc/devices/platform-imx27-coda.c |   37 +
>   arch/arm/plat-mxc/include/mach/devices-common.h |    8 +

I need ARM maintainer's ack for the patches that touch the above files.

Regards,
Mauro

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: "[PULL] video_visstrim for 3.6"
  2012-07-30 22:42 ` Mauro Carvalho Chehab
@ 2012-07-31  6:13   ` javier Martin
  2012-07-31 11:05     ` javier Martin
  2012-07-31 13:05     ` Sascha Hauer
  0 siblings, 2 replies; 6+ messages in thread
From: javier Martin @ 2012-07-31  6:13 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: linux-media, Sascha Hauer, Russell King

On 31 July 2012 00:42, Mauro Carvalho Chehab <mchehab@redhat.com> wrote:
> Em 26-07-2012 06:36, Javier Martin escreveu:
>> Hi Mauro,
>> this pull request is composed of two series that provide support for two mem2mem devices:
>> - 'm2m-deinterlace' video deinterlacer
>> - 'coda video codec'
>> I've included platform support for them too.
>>
>>
>> The following changes since commit 6887a4131da3adaab011613776d865f4bcfb5678:
>>
>>    Linux 3.5-rc5 (2012-06-30 16:08:57 -0700)
>>
>> are available in the git repository at:
>>
>>    https://github.com/jmartinc/video_visstrim.git for_3.6
>>
>> for you to fetch changes up to 9bb10266da63ae7f8f198573e099580e9f98f4e8:
>>
>>    i.MX27: Visstrim_M10: Add support for deinterlacing driver. (2012-07-26 10:57:30 +0200)
>>
>> ----------------------------------------------------------------
>> Javier Martin (5):
>>        i.MX: coda: Add platform support for coda in i.MX27.
>>        media: coda: Add driver for Coda video codec.
>>        Visstrim M10: Add support for Coda.
>>        media: Add mem2mem deinterlacing driver.
>>        i.MX27: Visstrim_M10: Add support for deinterlacing driver.
>>
>>   arch/arm/mach-imx/clk-imx27.c                   |    4 +-
>>   arch/arm/mach-imx/devices-imx27.h               |    4 +
>>   arch/arm/mach-imx/mach-imx27_visstrim_m10.c     |   49 +-
>>   arch/arm/plat-mxc/devices/Kconfig               |    6 +-
>>   arch/arm/plat-mxc/devices/Makefile              |    1 +
>>   arch/arm/plat-mxc/devices/platform-imx27-coda.c |   37 +
>>   arch/arm/plat-mxc/include/mach/devices-common.h |    8 +
>
> I need ARM maintainer's ack for the patches that touch the above files.
>
> Regards,
> Mauro

Sascha or Russell,
could you please give me an ACK for the following patches?

i.MX27: Visstrim_M10: Add support for deinterlacing driver.
(http://www.spinics.net/lists/linux-media/msg50223.html)
Visstrim M10: Add support for Coda.. (http://patchwork.linuxtv.org/patch/13286/)

Regards.
-- 
Javier Martin
Vista Silicon S.L.
CDTUC - FASE C - Oficina S-345
Avda de los Castros s/n
39005- Santander. Cantabria. Spain
+34 942 25 32 60
www.vista-silicon.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: "[PULL] video_visstrim for 3.6"
  2012-07-31  6:13   ` javier Martin
@ 2012-07-31 11:05     ` javier Martin
  2012-07-31 13:05     ` Sascha Hauer
  1 sibling, 0 replies; 6+ messages in thread
From: javier Martin @ 2012-07-31 11:05 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: linux-media, Sascha Hauer, Russell King, Philipp Zabel

Hi Mauro,
just in case Sascha's ACK doesn't make it on time. Could you just
merge the following  patches and drop the rest?
.
      media: coda: Add driver for Coda video codec.
      media: Add mem2mem deinterlacing driver.

We did a great effort to push Coda driver for 3.6 and it would be a
pity we finally missed that deadline.

Regards.
-- 
Javier Martin
Vista Silicon S.L.
CDTUC - FASE C - Oficina S-345
Avda de los Castros s/n
39005- Santander. Cantabria. Spain
+34 942 25 32 60
www.vista-silicon.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: "[PULL] video_visstrim for 3.6"
  2012-07-31  6:13   ` javier Martin
  2012-07-31 11:05     ` javier Martin
@ 2012-07-31 13:05     ` Sascha Hauer
  2012-08-01  6:17       ` javier Martin
  1 sibling, 1 reply; 6+ messages in thread
From: Sascha Hauer @ 2012-07-31 13:05 UTC (permalink / raw)
  To: javier Martin; +Cc: Mauro Carvalho Chehab, linux-media, Russell King

On Tue, Jul 31, 2012 at 08:13:59AM +0200, javier Martin wrote:
> On 31 July 2012 00:42, Mauro Carvalho Chehab <mchehab@redhat.com> wrote:
> > Em 26-07-2012 06:36, Javier Martin escreveu:
> >> Hi Mauro,
> >> this pull request is composed of two series that provide support for two mem2mem devices:
> >> - 'm2m-deinterlace' video deinterlacer
> >> - 'coda video codec'
> >> I've included platform support for them too.
> >>
> >>
> >> The following changes since commit 6887a4131da3adaab011613776d865f4bcfb5678:
> >>
> >>    Linux 3.5-rc5 (2012-06-30 16:08:57 -0700)
> >>
> >> are available in the git repository at:
> >>
> >>    https://github.com/jmartinc/video_visstrim.git for_3.6
> >>
> >> for you to fetch changes up to 9bb10266da63ae7f8f198573e099580e9f98f4e8:
> >>
> >>    i.MX27: Visstrim_M10: Add support for deinterlacing driver. (2012-07-26 10:57:30 +0200)
> >>
> >> ----------------------------------------------------------------
> >> Javier Martin (5):
> >>        i.MX: coda: Add platform support for coda in i.MX27.
> >>        media: coda: Add driver for Coda video codec.
> >>        Visstrim M10: Add support for Coda.
> >>        media: Add mem2mem deinterlacing driver.
> >>        i.MX27: Visstrim_M10: Add support for deinterlacing driver.
> >>
> >>   arch/arm/mach-imx/clk-imx27.c                   |    4 +-
> >>   arch/arm/mach-imx/devices-imx27.h               |    4 +
> >>   arch/arm/mach-imx/mach-imx27_visstrim_m10.c     |   49 +-
> >>   arch/arm/plat-mxc/devices/Kconfig               |    6 +-
> >>   arch/arm/plat-mxc/devices/Makefile              |    1 +
> >>   arch/arm/plat-mxc/devices/platform-imx27-coda.c |   37 +
> >>   arch/arm/plat-mxc/include/mach/devices-common.h |    8 +
> >
> > I need ARM maintainer's ack for the patches that touch the above files.

Generally:

Acked-by: Sascha Hauer <s.hauer@pengutronix.de>

I think that these are quite late for this merge window though. The pull
request should have been out before the 3.5 Release.

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: "[PULL] video_visstrim for 3.6"
  2012-07-31 13:05     ` Sascha Hauer
@ 2012-08-01  6:17       ` javier Martin
  0 siblings, 0 replies; 6+ messages in thread
From: javier Martin @ 2012-08-01  6:17 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: Mauro Carvalho Chehab, linux-media, Russell King

On 31 July 2012 15:05, Sascha Hauer <s.hauer@pengutronix.de> wrote:
> On Tue, Jul 31, 2012 at 08:13:59AM +0200, javier Martin wrote:
>> On 31 July 2012 00:42, Mauro Carvalho Chehab <mchehab@redhat.com> wrote:
>> > Em 26-07-2012 06:36, Javier Martin escreveu:
>> >> Hi Mauro,
>> >> this pull request is composed of two series that provide support for two mem2mem devices:
>> >> - 'm2m-deinterlace' video deinterlacer
>> >> - 'coda video codec'
>> >> I've included platform support for them too.
>> >>
>> >>
>> >> The following changes since commit 6887a4131da3adaab011613776d865f4bcfb5678:
>> >>
>> >>    Linux 3.5-rc5 (2012-06-30 16:08:57 -0700)
>> >>
>> >> are available in the git repository at:
>> >>
>> >>    https://github.com/jmartinc/video_visstrim.git for_3.6
>> >>
>> >> for you to fetch changes up to 9bb10266da63ae7f8f198573e099580e9f98f4e8:
>> >>
>> >>    i.MX27: Visstrim_M10: Add support for deinterlacing driver. (2012-07-26 10:57:30 +0200)
>> >>
>> >> ----------------------------------------------------------------
>> >> Javier Martin (5):
>> >>        i.MX: coda: Add platform support for coda in i.MX27.
>> >>        media: coda: Add driver for Coda video codec.
>> >>        Visstrim M10: Add support for Coda.
>> >>        media: Add mem2mem deinterlacing driver.
>> >>        i.MX27: Visstrim_M10: Add support for deinterlacing driver.
>> >>
>> >>   arch/arm/mach-imx/clk-imx27.c                   |    4 +-
>> >>   arch/arm/mach-imx/devices-imx27.h               |    4 +
>> >>   arch/arm/mach-imx/mach-imx27_visstrim_m10.c     |   49 +-
>> >>   arch/arm/plat-mxc/devices/Kconfig               |    6 +-
>> >>   arch/arm/plat-mxc/devices/Makefile              |    1 +
>> >>   arch/arm/plat-mxc/devices/platform-imx27-coda.c |   37 +
>> >>   arch/arm/plat-mxc/include/mach/devices-common.h |    8 +
>> >
>> > I need ARM maintainer's ack for the patches that touch the above files.
>
> Generally:
>
> Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
>
> I think that these are quite late for this merge window though. The pull
> request should have been out before the 3.5 Release.

Hi,
these patches have been publicly discussed for 4 weeks, since July the
4th. The pull request is only meant to make things easier for Mauro.

Regards.
-- 
Javier Martin
Vista Silicon S.L.
CDTUC - FASE C - Oficina S-345
Avda de los Castros s/n
39005- Santander. Cantabria. Spain
+34 942 25 32 60
www.vista-silicon.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-08-01  6:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-26  9:36 "[PULL] video_visstrim for 3.6" Javier Martin
2012-07-30 22:42 ` Mauro Carvalho Chehab
2012-07-31  6:13   ` javier Martin
2012-07-31 11:05     ` javier Martin
2012-07-31 13:05     ` Sascha Hauer
2012-08-01  6:17       ` javier Martin

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.