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

Hello,

Here is v2 with the following changes:

 - added patches for dt-bindings conversion to DT schema, and
delete the obsoleted .txt document

 - introduced qcom,sdm845-venus-v2 compatible and resources to
better describe the ability for dynamic core assignment and also
cover SoCs with one vcodec

 - 01/12 - move all clock and pmdomains names in venus resource
structure

 - 02/12 - fixed locking issues when deciding on which core to run
current instance

The previous version is at [1].

regards,
Stan

[1] https://lkml.org/lkml/2019/12/9/121

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,venus-msm8916.yaml    | 115 +++
 .../bindings/media/qcom,venus-msm8996.yaml    | 139 +++
 .../bindings/media/qcom,venus-sdm845-v2.yaml  | 137 +++
 .../bindings/media/qcom,venus-sdm845.yaml     | 151 +++
 .../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, 1849 insertions(+), 647 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/media/qcom,venus-msm8916.yaml
 create mode 100644 Documentation/devicetree/bindings/media/qcom,venus-msm8996.yaml
 create mode 100644 Documentation/devicetree/bindings/media/qcom,venus-sdm845-v2.yaml
 create mode 100644 Documentation/devicetree/bindings/media/qcom,venus-sdm845.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] 15+ messages in thread

end of thread, other threads:[~2019-12-19 14:11 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-18 13:22 [PATCH v2 00/12] Venus new features Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 01/12] venus: redesign clocks and pm domains control Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 02/12] media: venus: introduce core selection Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 03/12] venus: venc: blacklist two encoder properties Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 04/12] v4l: Add source event change for bit-depth Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 05/12] media: venus: vdec: handle 10bit bitstreams Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 06/12] dt-bindings: media: venus: Convert msm8916 to DT schema Stanimir Varbanov
2019-12-18 22:51   ` Rob Herring
2019-12-19 14:11     ` Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 07/12] dt-bindings: media: venus: Convert msm8996 " Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 08/12] dt-bindings: media: venus: Convert sdm845 " Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 09/12] dt-bindings: media: venus: Add sdm845v2 " Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 10/12] venus: core: add sdm845-v2 DT compatible and resource struct Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 11/12] arm64: dts: sdm845: follow venus-sdm845v2 DT binding Stanimir Varbanov
2019-12-18 13:22 ` [PATCH v2 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).