devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 00/12] Venus new features
@ 2020-01-06 15:49 Stanimir Varbanov
  2020-01-06 15:49 ` [PATCH v4 01/12] venus: redesign clocks and pm domains control Stanimir Varbanov
                   ` (11 more replies)
  0 siblings, 12 replies; 27+ messages in thread
From: Stanimir Varbanov @ 2020-01-06 15:49 UTC (permalink / raw)
  To: linux-arm-msm, linux-kernel, linux-media, devicetree
  Cc: Vikash Garodia, dikshita, Stanimir Varbanov

Hello,

Changes since v3:

  - Dropped quotes in compatibles and fixed the number of iommu items
  - Made iommus property required for video-firmware subnode

v3 can be found at [1].

regards,
Stan

[1] https://lkml.org/lkml/2019/12/23/184

Aniket Masule (2):
  media: venus: introduce core selection
  media: venus: vdec: handle 10bit bitstreams

Stanimir Varbanov (10):
  venus: redesign clocks and pm domains control
  venus: venc: blacklist two encoder properties
  v4l: Add source event change for bit-depth
  dt-bindings: media: venus: Convert msm8916 to DT schema
  dt-bindings: media: venus: Convert msm8996 to DT schema
  dt-bindings: media: venus: Convert sdm845 to DT schema
  dt-bindings: media: venus: Add sdm845v2 DT schema
  venus: core: add sdm845-v2 DT compatible and resource struct
  arm64: dts: sdm845: follow venus-sdm845v2 DT binding
  dt-bindings: media: venus: delete old binding document

 .../bindings/media/qcom,msm8916-venus.yaml    | 119 +++
 .../bindings/media/qcom,msm8996-venus.yaml    | 153 +++
 .../bindings/media/qcom,sdm845-venus-v2.yaml  | 140 +++
 .../bindings/media/qcom,sdm845-venus.yaml     | 156 +++
 .../devicetree/bindings/media/qcom,venus.txt  | 120 ---
 .../media/uapi/v4l/vidioc-dqevent.rst         |   8 +-
 .../media/videodev2.h.rst.exceptions          |   1 +
 arch/arm64/boot/dts/qcom/sdm845.dtsi          |  25 +-
 drivers/media/platform/qcom/venus/Makefile    |   2 +-
 drivers/media/platform/qcom/venus/core.c      | 122 ++-
 drivers/media/platform/qcom/venus/core.h      |  31 +-
 drivers/media/platform/qcom/venus/helpers.c   | 435 ++------
 drivers/media/platform/qcom/venus/helpers.h   |   4 -
 drivers/media/platform/qcom/venus/hfi_cmds.c  |   2 +
 .../media/platform/qcom/venus/hfi_helper.h    |   6 +
 .../media/platform/qcom/venus/hfi_parser.h    |   5 +
 .../media/platform/qcom/venus/pm_helpers.c    | 964 ++++++++++++++++++
 .../media/platform/qcom/venus/pm_helpers.h    |  65 ++
 drivers/media/platform/qcom/venus/vdec.c      |  88 +-
 drivers/media/platform/qcom/venus/venc.c      |  75 +-
 include/uapi/linux/videodev2.h                |   1 +
 21 files changed, 1875 insertions(+), 647 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/media/qcom,msm8916-venus.yaml
 create mode 100644 Documentation/devicetree/bindings/media/qcom,msm8996-venus.yaml
 create mode 100644 Documentation/devicetree/bindings/media/qcom,sdm845-venus-v2.yaml
 create mode 100644 Documentation/devicetree/bindings/media/qcom,sdm845-venus.yaml
 delete mode 100644 Documentation/devicetree/bindings/media/qcom,venus.txt
 create mode 100644 drivers/media/platform/qcom/venus/pm_helpers.c
 create mode 100644 drivers/media/platform/qcom/venus/pm_helpers.h

-- 
2.17.1


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

end of thread, other threads:[~2020-04-15 14:34 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-06 15:49 [PATCH v4 00/12] Venus new features Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 01/12] venus: redesign clocks and pm domains control Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 02/12] media: venus: introduce core selection Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 03/12] venus: venc: blacklist two encoder properties Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 04/12] v4l: Add source event change for bit-depth Stanimir Varbanov
2020-01-08 16:09   ` Hans Verkuil
2020-01-08 16:43     ` Stanimir Varbanov
2020-01-09  7:41     ` Stanimir Varbanov
2020-01-09  8:57       ` Hans Verkuil
2020-01-10 10:54         ` Stanimir Varbanov
2020-01-15 15:03           ` Hans Verkuil
2020-04-15 14:34             ` Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 05/12] media: venus: vdec: handle 10bit bitstreams Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 06/12] dt-bindings: media: venus: Convert msm8916 to DT schema Stanimir Varbanov
2020-01-06 22:04   ` Rob Herring
2020-01-08 16:17     ` Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 07/12] dt-bindings: media: venus: Convert msm8996 " Stanimir Varbanov
2020-01-06 22:05   ` Rob Herring
2020-01-06 15:49 ` [PATCH v4 08/12] dt-bindings: media: venus: Convert sdm845 " Stanimir Varbanov
2020-01-06 22:06   ` Rob Herring
2020-01-06 15:49 ` [PATCH v4 09/12] dt-bindings: media: venus: Add sdm845v2 " Stanimir Varbanov
2020-01-06 22:07   ` Rob Herring
2020-01-06 15:49 ` [PATCH v4 10/12] venus: core: add sdm845-v2 DT compatible and resource struct Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 11/12] arm64: dts: sdm845: follow venus-sdm845v2 DT binding Stanimir Varbanov
2020-02-27 22:38   ` Stanimir Varbanov
2020-02-28  5:59     ` Bjorn Andersson
2020-01-06 15:49 ` [PATCH v4 12/12] dt-bindings: media: venus: delete old binding document Stanimir Varbanov

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