All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/14] drm/msm/hdmi: YAML-ify schema and cleanup some platform properties
@ 2022-06-09 12:23 ` Dmitry Baryshkov
  0 siblings, 0 replies; 44+ messages in thread
From: Dmitry Baryshkov @ 2022-06-09 12:23 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Rob Clark, Sean Paul, Abhinav Kumar,
	Rob Herring, Krzysztof Kozlowski
  Cc: Stephen Boyd, David Airlie, Daniel Vetter, linux-arm-msm,
	devicetree, dri-devel, freedreno

As agreed with David, this is a continuation of his work started at [1].

Changes since v2:
- Deprecated usage of phy-names for HDMI node, added two patches to
  remove this property from DT files,
- Fixed the uninitialized variable access in hpd_gpio code.

Changes since v1:
- Dropped quotes in $id/$schema
- Sorted out compat strings alphabetically
- Removed obvious descriptions
- Removed undocumented qcom,hdmi-tx-ddc-* properties
- Switched to additionalProperties
- Fixed IRQ and GPIO flags in the schema example
- Added 8084 and 8660 variants to qcom,hdmi-phy-other.yaml conditional

- Marked hdmi-mux-supply as deprecated (and dropped it from
  apq8064-ifc6410.dtsi)
- Reused 8960 regulator/clock configs for 8x60 (verified against msm-3.4
  kernel)

Changes since David's patches:
HDMI schema:
- Dropped generic pinctrl properties
- Dropped data-lanes property, which is not supported by the HDMI driver
- Switched to unevaluatedProperties
- Moved clocks/regulators/supplies to condition clauses
- Specified phy-names as used by existing DT files
- Dropped #phy-cells
- Dropped power-domains property (which is not used by the device trees)
- Marked old GPIO properties as deprecated (in a separate patch)

HDMI PHY schema:
- Split into QMP (msm8996) and non-QMP (other) PHY schemas
- Added proper clocks/clock-names/reg/reg-names descriptions

The rest of the patches consist of the new work. They further cleanup
the platform configs, remove unused supplies, etc.

[1]: https://patchwork.freedesktop.org/series/98353/

Dmitry Baryshkov (14):
  dt-bindings: display/msm: hdmi: split and convert to yaml
  dt-bindings: display/msm: hdmi: mark old GPIO properties as deprecated
  dt-bindings: display/msm: hdmi: mark hdmi-mux-supply as deprecated
  ARM: dts: qcom: apq8064-ifc6410: drop hdmi-mux-supply
  drm/msm/hdmi: drop the hdmi-mux support
  drm/msm/hdmi: drop unused GPIO support
  drm/msm/hdmi: enable core-vcc/core-vdda-supply for 8996 platform
  drm/msm/hdmi: drop empty 'none' regulator lists
  drm/msm/hdmi: drop hpd_regs usage on 8x74/8084
  drm/msm/hdmi: merge platform config for 8974/8084/8994/8996
  drm/msm/hdmi: reuse MSM8960's config for MSM8660
  drm/msm/hdmi-phy: populate 8x60 HDMI PHY requirements
  ARM: dts: qcom: apq8064: drop phy-names from HDMI device node
  arm64: dts: qcom: msm8996: drop phy-names from HDMI device node

 .../devicetree/bindings/display/msm/hdmi.txt  |  99 --------
 .../devicetree/bindings/display/msm/hdmi.yaml | 232 ++++++++++++++++++
 .../bindings/phy/qcom,hdmi-phy-other.yaml     | 104 ++++++++
 .../bindings/phy/qcom,hdmi-phy-qmp.yaml       |  85 +++++++
 arch/arm/boot/dts/qcom-apq8064-ifc6410.dts    |   1 -
 arch/arm/boot/dts/qcom-apq8064.dtsi           |   1 -
 arch/arm64/boot/dts/qcom/msm8996.dtsi         |   1 -
 drivers/gpu/drm/msm/hdmi/hdmi.c               | 109 ++------
 drivers/gpu/drm/msm/hdmi/hdmi.h               |  13 +-
 drivers/gpu/drm/msm/hdmi/hdmi_hpd.c           |  62 +----
 drivers/gpu/drm/msm/hdmi/hdmi_phy_8x60.c      |  12 +
 11 files changed, 459 insertions(+), 260 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/display/msm/hdmi.txt
 create mode 100644 Documentation/devicetree/bindings/display/msm/hdmi.yaml
 create mode 100644 Documentation/devicetree/bindings/phy/qcom,hdmi-phy-other.yaml
 create mode 100644 Documentation/devicetree/bindings/phy/qcom,hdmi-phy-qmp.yaml


base-commit: f2906aa863381afb0015a9eb7fefad885d4e5a56
prerequisite-patch-id: 89e074537a1d17a955ba626431104040577c0bec
-- 
2.35.1


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

end of thread, other threads:[~2022-07-04 16:16 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-09 12:23 [PATCH v3 00/14] drm/msm/hdmi: YAML-ify schema and cleanup some platform properties Dmitry Baryshkov
2022-06-09 12:23 ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 01/14] dt-bindings: display/msm: hdmi: split and convert to yaml Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-15 21:18   ` Krzysztof Kozlowski
2022-06-15 21:18     ` Krzysztof Kozlowski
2022-06-09 12:23 ` [PATCH v3 02/14] dt-bindings: display/msm: hdmi: mark old GPIO properties as deprecated Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 03/14] dt-bindings: display/msm: hdmi: mark hdmi-mux-supply " Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 04/14] ARM: dts: qcom: apq8064-ifc6410: drop hdmi-mux-supply Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 05/14] drm/msm/hdmi: drop the hdmi-mux support Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 06/14] drm/msm/hdmi: drop unused GPIO support Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-10 20:46   ` Stephen Boyd
2022-06-10 20:46     ` Stephen Boyd
2022-06-10 20:47     ` Dmitry Baryshkov
2022-06-10 20:47       ` Dmitry Baryshkov
2022-06-16  6:37       ` Dmitry Baryshkov
2022-06-16  6:37         ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 07/14] drm/msm/hdmi: enable core-vcc/core-vdda-supply for 8996 platform Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-16  7:44   ` Stephen Boyd
2022-06-16  7:44     ` Stephen Boyd
2022-06-09 12:23 ` [PATCH v3 08/14] drm/msm/hdmi: drop empty 'none' regulator lists Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 09/14] drm/msm/hdmi: drop hpd_regs usage on 8x74/8084 Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 10/14] drm/msm/hdmi: merge platform config for 8974/8084/8994/8996 Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 11/14] drm/msm/hdmi: reuse MSM8960's config for MSM8660 Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 12/14] drm/msm/hdmi-phy: populate 8x60 HDMI PHY requirements Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 13/14] ARM: dts: qcom: apq8064: drop phy-names from HDMI device node Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-06-09 12:23 ` [PATCH v3 14/14] arm64: dts: qcom: msm8996: " Dmitry Baryshkov
2022-06-09 12:23   ` Dmitry Baryshkov
2022-07-03  3:56   ` (subset) " Bjorn Andersson
2022-07-03  3:56     ` Bjorn Andersson
2022-07-03  3:56 ` (subset) [PATCH v3 00/14] drm/msm/hdmi: YAML-ify schema and cleanup some platform properties Bjorn Andersson
2022-07-03  3:56   ` Bjorn Andersson

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.