linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL for 4.20] META_OUTPUT buffer type and the ipu3 staging driver
@ 2018-12-10 21:08 sakari.ailus
  2018-12-10 21:10 ` sakari.ailus
  0 siblings, 1 reply; 2+ messages in thread
From: sakari.ailus @ 2018-12-10 21:08 UTC (permalink / raw)
  To: linux-media

Hi Mauro,

Here's the ipu3 staging driver plus the META_OUTPUT buffer type needed to
pass the parameters for the device. If you think this there's still time to
get this to 4.20, then please pull. The non-staging patches have been
around for more than half a year and they're relatively simple.

I'll soon post the refreshed patches for v4l2-compliance.


The following changes since commit e159b6074c82fe31b79aad672e02fa204dbbc6d8:

  media: vimc: fix start stream when link is disabled (2018-12-07 13:08:41 -0500)

are available in the git repository at:

  ssh://linuxtv.org/git/sailus/media_tree.git tags/ipu3-v8-4.20-1-sign

for you to fetch changes up to c3dbe400969918d7f694af6b29beebdbbc3b7d92:

  ipu3-imgu: Fix compiler warnings (2018-12-10 14:21:29 +0200)

----------------------------------------------------------------
ipu3 staging driver for 4.20

----------------------------------------------------------------
Cao,Bing Bu (1):
      media: staging/intel-ipu3: Add dual pipe support

Sakari Ailus (3):
      v4l: Add support for V4L2_BUF_TYPE_META_OUTPUT
      docs-rst: v4l: Document V4L2_BUF_TYPE_META_OUTPUT interface
      ipu3-imgu: Fix compiler warnings

Tomasz Figa (2):
      media: staging/intel-ipu3: mmu: Implement driver
      media: staging/intel-ipu3: Implement DMA mapping functions

Yong Zhi (11):
      media: staging/intel-ipu3: abi: Add register definitions and enum
      media: staging/intel-ipu3: abi: Add structs
      media: staging/intel-ipu3: css: Add dma buff pool utility functions
      media: staging/intel-ipu3: css: Add support for firmware management
      media: staging/intel-ipu3: css: Add static settings for image pipeline
      media: staging/intel-ipu3: css: Compute and program ccs
      media: staging/intel-ipu3: css: Initialize css hardware
      media: staging/intel-ipu3: Add css pipeline programming
      media: staging/intel-ipu3: Add v4l2 driver based on media framework
      media: staging/intel-ipu3: Add imgu top level pci device driver
      media: staging/intel-ipu3: Add Intel IPU3 meta data uAPI

 Documentation/media/uapi/v4l/buffer.rst          |    3 +
 Documentation/media/uapi/v4l/dev-meta.rst        |   33 +-
 Documentation/media/uapi/v4l/vidioc-querycap.rst |    3 +
 Documentation/media/videodev2.h.rst.exceptions   |    2 +
 drivers/media/common/videobuf2/videobuf2-v4l2.c  |    1 +
 drivers/media/v4l2-core/v4l2-compat-ioctl32.c    |    2 +
 drivers/media/v4l2-core/v4l2-dev.c               |   12 +-
 drivers/media/v4l2-core/v4l2-ioctl.c             |   23 +
 drivers/staging/media/Kconfig                    |    2 +
 drivers/staging/media/Makefile                   |    1 +
 drivers/staging/media/ipu3/Kconfig               |   14 +
 drivers/staging/media/ipu3/Makefile              |   11 +
 drivers/staging/media/ipu3/TODO                  |   23 +
 drivers/staging/media/ipu3/include/intel-ipu3.h  | 2785 +++++++
 drivers/staging/media/ipu3/ipu3-abi.h            | 2011 +++++
 drivers/staging/media/ipu3/ipu3-css-fw.c         |  265 +
 drivers/staging/media/ipu3/ipu3-css-fw.h         |  188 +
 drivers/staging/media/ipu3/ipu3-css-params.c     | 2943 +++++++
 drivers/staging/media/ipu3/ipu3-css-params.h     |   28 +
 drivers/staging/media/ipu3/ipu3-css-pool.c       |  100 +
 drivers/staging/media/ipu3/ipu3-css-pool.h       |   55 +
 drivers/staging/media/ipu3/ipu3-css.c            | 2391 ++++++
 drivers/staging/media/ipu3/ipu3-css.h            |  213 +
 drivers/staging/media/ipu3/ipu3-dmamap.c         |  270 +
 drivers/staging/media/ipu3/ipu3-dmamap.h         |   22 +
 drivers/staging/media/ipu3/ipu3-mmu.c            |  561 ++
 drivers/staging/media/ipu3/ipu3-mmu.h            |   35 +
 drivers/staging/media/ipu3/ipu3-tables.c         | 9609 ++++++++++++++++++++++
 drivers/staging/media/ipu3/ipu3-tables.h         |   66 +
 drivers/staging/media/ipu3/ipu3-v4l2.c           | 1419 ++++
 drivers/staging/media/ipu3/ipu3.c                |  830 ++
 drivers/staging/media/ipu3/ipu3.h                |  168 +
 include/media/v4l2-ioctl.h                       |   17 +
 include/uapi/linux/videodev2.h                   |    2 +
 34 files changed, 24091 insertions(+), 17 deletions(-)
 create mode 100644 drivers/staging/media/ipu3/Kconfig
 create mode 100644 drivers/staging/media/ipu3/Makefile
 create mode 100644 drivers/staging/media/ipu3/TODO
 create mode 100644 drivers/staging/media/ipu3/include/intel-ipu3.h
 create mode 100644 drivers/staging/media/ipu3/ipu3-abi.h
 create mode 100644 drivers/staging/media/ipu3/ipu3-css-fw.c
 create mode 100644 drivers/staging/media/ipu3/ipu3-css-fw.h
 create mode 100644 drivers/staging/media/ipu3/ipu3-css-params.c
 create mode 100644 drivers/staging/media/ipu3/ipu3-css-params.h
 create mode 100644 drivers/staging/media/ipu3/ipu3-css-pool.c
 create mode 100644 drivers/staging/media/ipu3/ipu3-css-pool.h
 create mode 100644 drivers/staging/media/ipu3/ipu3-css.c
 create mode 100644 drivers/staging/media/ipu3/ipu3-css.h
 create mode 100644 drivers/staging/media/ipu3/ipu3-dmamap.c
 create mode 100644 drivers/staging/media/ipu3/ipu3-dmamap.h
 create mode 100644 drivers/staging/media/ipu3/ipu3-mmu.c
 create mode 100644 drivers/staging/media/ipu3/ipu3-mmu.h
 create mode 100644 drivers/staging/media/ipu3/ipu3-tables.c
 create mode 100644 drivers/staging/media/ipu3/ipu3-tables.h
 create mode 100644 drivers/staging/media/ipu3/ipu3-v4l2.c
 create mode 100644 drivers/staging/media/ipu3/ipu3.c
 create mode 100644 drivers/staging/media/ipu3/ipu3.h

-- 
Sakari Ailus

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

* Re: [GIT PULL for 4.20] META_OUTPUT buffer type and the ipu3 staging driver
  2018-12-10 21:08 [GIT PULL for 4.20] META_OUTPUT buffer type and the ipu3 staging driver sakari.ailus
@ 2018-12-10 21:10 ` sakari.ailus
  0 siblings, 0 replies; 2+ messages in thread
From: sakari.ailus @ 2018-12-10 21:10 UTC (permalink / raw)
  To: linux-media

On Mon, Dec 10, 2018 at 11:08:43PM +0200, sakari.ailus@iki.fi wrote:
> Hi Mauro,
> 
> Here's the ipu3 staging driver plus the META_OUTPUT buffer type needed to
> pass the parameters for the device. If you think this there's still time to
> get this to 4.20, then please pull. The non-staging patches have been
> around for more than half a year and they're relatively simple.

s/4\.20/4.21/g

-- 
Sakari Ailus

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

end of thread, other threads:[~2018-12-10 21:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-10 21:08 [GIT PULL for 4.20] META_OUTPUT buffer type and the ipu3 staging driver sakari.ailus
2018-12-10 21:10 ` sakari.ailus

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