All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 0/5] media: rockchip: Add the rkvdec driver
@ 2020-03-30  1:46 Ezequiel Garcia
  2020-03-30  1:46   ` Ezequiel Garcia
                   ` (4 more replies)
  0 siblings, 5 replies; 14+ messages in thread
From: Ezequiel Garcia @ 2020-03-30  1:46 UTC (permalink / raw)
  To: linux-media, devicetree, linux-rockchip, linux-kernel
  Cc: Rob Herring, Tomasz Figa, Nicolas Dufresne, kernel,
	Paul Kocialkowski, Jonas Karlman, Heiko Stuebner,
	Boris Brezillon, Hans Verkuil, Alexandre Courbot,
	Jeffrey Kardatzke, Mark Rutland, Ezequiel Garcia

Hello,

This is v7 of Boris' rkvdec driver, to support H264
decoding on Rockchip RK3399 SoCs.

Support for VP9 is planned, but not covered by this
patchset.

This series addresses Mauro's reviews on the h264 helpers,
and hopefully this time it's ready for merge.

However, everyone is encourage to take another look,
provide feedback and of course do some testing.

Thanks,
Ezequiel

Boris Brezillon (5):
  media: v4l2-core: Add helpers to build the H264 P/B0/B1 reflists
  media: hantro: h264: Use the generic H264 reflist builder
  media: dt-bindings: rockchip: Document RK3399 Video Decoder bindings
  media: rkvdec: Add the rkvdec driver
  arm64: dts: rockchip: rk3399: Define the rockchip Video Decoder node

 .../bindings/media/rockchip,vdec.yaml         |   73 ++
 MAINTAINERS                                   |    7 +
 arch/arm64/boot/dts/rockchip/rk3399.dtsi      |   14 +-
 drivers/media/v4l2-core/Kconfig               |    4 +
 drivers/media/v4l2-core/Makefile              |    1 +
 drivers/media/v4l2-core/v4l2-h264.c           |  270 ++++
 drivers/staging/media/Kconfig                 |    2 +
 drivers/staging/media/Makefile                |    1 +
 drivers/staging/media/hantro/Kconfig          |    1 +
 drivers/staging/media/hantro/hantro_h264.c    |  237 +---
 drivers/staging/media/rkvdec/Kconfig          |   15 +
 drivers/staging/media/rkvdec/Makefile         |    3 +
 drivers/staging/media/rkvdec/TODO             |   11 +
 drivers/staging/media/rkvdec/rkvdec-h264.c    | 1156 +++++++++++++++++
 drivers/staging/media/rkvdec/rkvdec-regs.h    |  223 ++++
 drivers/staging/media/rkvdec/rkvdec.c         | 1111 ++++++++++++++++
 drivers/staging/media/rkvdec/rkvdec.h         |  121 ++
 include/media/h264-ctrls.h                    |    8 +-
 include/media/v4l2-h264.h                     |   85 ++
 19 files changed, 3112 insertions(+), 231 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/media/rockchip,vdec.yaml
 create mode 100644 drivers/media/v4l2-core/v4l2-h264.c
 create mode 100644 drivers/staging/media/rkvdec/Kconfig
 create mode 100644 drivers/staging/media/rkvdec/Makefile
 create mode 100644 drivers/staging/media/rkvdec/TODO
 create mode 100644 drivers/staging/media/rkvdec/rkvdec-h264.c
 create mode 100644 drivers/staging/media/rkvdec/rkvdec-regs.h
 create mode 100644 drivers/staging/media/rkvdec/rkvdec.c
 create mode 100644 drivers/staging/media/rkvdec/rkvdec.h
 create mode 100644 include/media/v4l2-h264.h

-- 
2.26.0.rc2


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

end of thread, other threads:[~2020-03-30 12:27 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-30  1:46 [PATCH v7 0/5] media: rockchip: Add the rkvdec driver Ezequiel Garcia
2020-03-30  1:46 ` [PATCH v7 1/5] media: v4l2-core: Add helpers to build the H264 P/B0/B1 reflists Ezequiel Garcia
2020-03-30  1:46   ` Ezequiel Garcia
2020-03-30  1:46 ` [PATCH v7 2/5] media: hantro: h264: Use the generic H264 reflist builder Ezequiel Garcia
2020-03-30  1:46   ` Ezequiel Garcia
2020-03-30  1:46 ` [PATCH v7 3/5] media: dt-bindings: rockchip: Document RK3399 Video Decoder bindings Ezequiel Garcia
2020-03-30  1:46   ` Ezequiel Garcia
2020-03-30  1:46 ` [PATCH v7 4/5] media: rkvdec: Add the rkvdec driver Ezequiel Garcia
2020-03-30  1:46   ` Ezequiel Garcia
2020-03-30  5:20   ` Andriy Gelman
2020-03-30 12:26     ` Ezequiel Garcia
2020-03-30 12:26       ` Ezequiel Garcia
2020-03-30  1:46 ` [PATCH v7 5/5] arm64: dts: rockchip: rk3399: Define the rockchip Video Decoder node Ezequiel Garcia
2020-03-30  1:46   ` Ezequiel Garcia

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.