linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL for 4.1] mem2mem changes for 4.1
@ 2015-04-08 10:07 Kamil Debski
  2015-04-10 13:14 ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 2+ messages in thread
From: Kamil Debski @ 2015-04-08 10:07 UTC (permalink / raw)
  To: linux-media

The following changes since commit c8c7c44b7cf5ef7163e4bd6aedbdeb6f6031ee3e:

  [media] s5p-jpeg: Remove some unused functions (2015-04-07 08:15:15 -0300)

are available in the git repository at:

  git://linuxtv.org/kdebski/media_tree_2.git for-4.1-v2

for you to fetch changes up to 8dae02ffa32db8193513ee0a3c6dcd277e653954:

  coda: Add tracing support (2015-04-08 11:54:12 +0200)

----------------------------------------------------------------
Kamil Debski (4):
      vb2: split the io_flags member of vb2_queue into a bit field
      vb2: add allow_zero_bytesused flag to the vb2_queue struct
      coda: set allow_zero_bytesused flag for vb2_queue_init
      s5p-mfc: set allow_zero_bytesused flag for vb2_queue_init

Peter Seiderer (2):
      coda: check kasprintf return value in coda_open
      coda: fix double call to debugfs_remove

Philipp Zabel (16):
      v4l2-mem2mem: no need to initialize b in v4l2_m2m_next_buf and
v4l2_m2m_buf_remove
      gpu: ipu-v3: Add missing IDMAC channel names
      gpu: ipu-v3: Add mem2mem image conversion support to IC
      gpu: ipu-v3: Register scaler platform device
      coda: bitrate can only be set in kbps steps
      coda: bitstream payload is unsigned
      coda: use strlcpy instead of snprintf
      coda: allocate per-context buffers from REQBUFS
      coda: allocate bitstream buffer from REQBUFS, size depends on the
format
      coda: move parameter buffer in together with context buffer allocation
      coda: remove duplicate error messages for buffer allocations
      coda: fail to start streaming if userspace set invalid formats
      coda: call SEQ_END when the first queue is stopped
      coda: fix fill bitstream errors in nonstreaming case
      coda: drop dma_sync_single_for_device in coda_bitstream_queue
      coda: Add tracing support

Sascha Hauer (2):
      imx-ipu: Add ipu media common code
      imx-ipu: Add i.MX IPUv3 scaler driver

 drivers/gpu/ipu-v3/ipu-common.c             |    2 +
 drivers/gpu/ipu-v3/ipu-ic.c                 |  787 +++++++++++++++++++++++-
 drivers/media/platform/Kconfig              |    2 +
 drivers/media/platform/Makefile             |    1 +
 drivers/media/platform/coda/Makefile        |    2 +
 drivers/media/platform/coda/coda-bit.c      |  205 +++++--
 drivers/media/platform/coda/coda-common.c   |  113 ++--
 drivers/media/platform/coda/coda-jpeg.c     |    1 +
 drivers/media/platform/coda/coda.h          |   18 +-
 drivers/media/platform/coda/trace.h         |  203 +++++++
 drivers/media/platform/imx/Kconfig          |   11 +
 drivers/media/platform/imx/Makefile         |    2 +
 drivers/media/platform/imx/imx-ipu-scaler.c |  869
+++++++++++++++++++++++++++
 drivers/media/platform/imx/imx-ipu.c        |  313 ++++++++++
 drivers/media/platform/imx/imx-ipu.h        |   36 ++
 drivers/media/platform/s5p-mfc/s5p_mfc.c    |    7 +
 drivers/media/v4l2-core/v4l2-mem2mem.c      |    4 +-
 drivers/media/v4l2-core/videobuf2-core.c    |   56 +-
 include/media/videobuf2-core.h              |   20 +-
 include/video/imx-ipu-v3.h                  |   49 +-
 20 files changed, 2535 insertions(+), 166 deletions(-)
 create mode 100644 drivers/media/platform/coda/trace.h
 create mode 100644 drivers/media/platform/imx/Kconfig
 create mode 100644 drivers/media/platform/imx/Makefile
 create mode 100644 drivers/media/platform/imx/imx-ipu-scaler.c
 create mode 100644 drivers/media/platform/imx/imx-ipu.c
 create mode 100644 drivers/media/platform/imx/imx-ipu.h


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

* Re: [GIT PULL for 4.1] mem2mem changes for 4.1
  2015-04-08 10:07 [GIT PULL for 4.1] mem2mem changes for 4.1 Kamil Debski
@ 2015-04-10 13:14 ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 2+ messages in thread
From: Mauro Carvalho Chehab @ 2015-04-10 13:14 UTC (permalink / raw)
  To: Kamil Debski; +Cc: linux-media

Em Wed, 08 Apr 2015 12:07:54 +0200
Kamil Debski <k.debski@samsung.com> escreveu:

> The following changes since commit c8c7c44b7cf5ef7163e4bd6aedbdeb6f6031ee3e:
> 
>   [media] s5p-jpeg: Remove some unused functions (2015-04-07 08:15:15 -0300)
> 
> are available in the git repository at:
> 
>   git://linuxtv.org/kdebski/media_tree_2.git for-4.1-v2
> 
> for you to fetch changes up to 8dae02ffa32db8193513ee0a3c6dcd277e653954:
> 
>   coda: Add tracing support (2015-04-08 11:54:12 +0200)
> 
> ----------------------------------------------------------------
> Kamil Debski (4):
>       vb2: split the io_flags member of vb2_queue into a bit field
>       vb2: add allow_zero_bytesused flag to the vb2_queue struct
>       coda: set allow_zero_bytesused flag for vb2_queue_init
>       s5p-mfc: set allow_zero_bytesused flag for vb2_queue_init
> 
> Peter Seiderer (2):
>       coda: check kasprintf return value in coda_open
>       coda: fix double call to debugfs_remove
> 
> Philipp Zabel (16):
>       v4l2-mem2mem: no need to initialize b in v4l2_m2m_next_buf and
> v4l2_m2m_buf_remove
>       gpu: ipu-v3: Add missing IDMAC channel names
>       gpu: ipu-v3: Add mem2mem image conversion support to IC
>       gpu: ipu-v3: Register scaler platform device

I didn't merge the above patches, as they lack an ack from DRM maintainer.

If the DRM maintainer prefers to merge via his tree, I'm happy to give
my ack as well.

>       coda: bitrate can only be set in kbps steps
>       coda: bitstream payload is unsigned
>       coda: use strlcpy instead of snprintf
>       coda: allocate per-context buffers from REQBUFS
>       coda: allocate bitstream buffer from REQBUFS, size depends on the
> format
>       coda: move parameter buffer in together with context buffer allocation
>       coda: remove duplicate error messages for buffer allocations
>       coda: fail to start streaming if userspace set invalid formats
>       coda: call SEQ_END when the first queue is stopped
>       coda: fix fill bitstream errors in nonstreaming case
>       coda: drop dma_sync_single_for_device in coda_bitstream_queue
>       coda: Add tracing support
> 
> Sascha Hauer (2):
>       imx-ipu: Add ipu media common code
>       imx-ipu: Add i.MX IPUv3 scaler driver
> 
>  drivers/gpu/ipu-v3/ipu-common.c             |    2 +
>  drivers/gpu/ipu-v3/ipu-ic.c                 |  787 +++++++++++++++++++++++-
>  drivers/media/platform/Kconfig              |    2 +
>  drivers/media/platform/Makefile             |    1 +
>  drivers/media/platform/coda/Makefile        |    2 +
>  drivers/media/platform/coda/coda-bit.c      |  205 +++++--
>  drivers/media/platform/coda/coda-common.c   |  113 ++--
>  drivers/media/platform/coda/coda-jpeg.c     |    1 +
>  drivers/media/platform/coda/coda.h          |   18 +-
>  drivers/media/platform/coda/trace.h         |  203 +++++++
>  drivers/media/platform/imx/Kconfig          |   11 +
>  drivers/media/platform/imx/Makefile         |    2 +
>  drivers/media/platform/imx/imx-ipu-scaler.c |  869
> +++++++++++++++++++++++++++
>  drivers/media/platform/imx/imx-ipu.c        |  313 ++++++++++
>  drivers/media/platform/imx/imx-ipu.h        |   36 ++
>  drivers/media/platform/s5p-mfc/s5p_mfc.c    |    7 +
>  drivers/media/v4l2-core/v4l2-mem2mem.c      |    4 +-
>  drivers/media/v4l2-core/videobuf2-core.c    |   56 +-
>  include/media/videobuf2-core.h              |   20 +-
>  include/video/imx-ipu-v3.h                  |   49 +-
>  20 files changed, 2535 insertions(+), 166 deletions(-)
>  create mode 100644 drivers/media/platform/coda/trace.h
>  create mode 100644 drivers/media/platform/imx/Kconfig
>  create mode 100644 drivers/media/platform/imx/Makefile
>  create mode 100644 drivers/media/platform/imx/imx-ipu-scaler.c
>  create mode 100644 drivers/media/platform/imx/imx-ipu.c
>  create mode 100644 drivers/media/platform/imx/imx-ipu.h
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2015-04-10 13:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-08 10:07 [GIT PULL for 4.1] mem2mem changes for 4.1 Kamil Debski
2015-04-10 13:14 ` Mauro Carvalho Chehab

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).