[Freedreno] [PATCH] phy: qcom-qmp: add support for voltage and pre emphesis swing

2021-08-24 Thread Kuogee Hsieh
Add voltage and pre emphesis swing tables so that voltage and pre emphsis swing level can be configured base on link rate. Signed-off-by: Kuogee Hsieh --- drivers/phy/qualcomm/phy-qcom-qmp.c | 95 - 1 file changed, 82 insertions(+), 13 deletions(-) diff

[Freedreno] [PATCH] arm64: dts: qcom: sc7280: Add Display Port node

2021-08-24 Thread Kuogee Hsieh
Add display port supported node for sc7280. Also correct dp-phy node tx/rx/pcs/tx2/rx2 base reg address to fix aux channel read/write failure issue. Signed-off-by: Kuogee Hsieh --- arch/arm64/boot/dts/qcom/sc7280-idp2.dts | 9 +++ arch/arm64/boot/dts/qcom/sc7280.dtsi | 98

Re: [Freedreno] [PATCH v1 2/2] dt-bindings: Add SC7280 compatible string

2021-08-24 Thread Doug Anderson
Hi, On Wed, Aug 11, 2021 at 5:08 PM Sankeerth Billakanti wrote: > > The Qualcomm SC7280 platform supports an eDP controller, add > compatible string for it to msm/binding. > > Signed-off-by: Sankeerth Billakanti > --- > Documentation/devicetree/bindings/display/msm/dp-controller.yaml | 3 +++ >

[Freedreno] [PATCH igt 3/3] msm: Add submit ioctl tests

2021-08-24 Thread Rob Clark
From: Rob Clark Add an initial set of tests for the submit ioctl. Signed-off-by: Rob Clark --- tests/meson.build | 1 + tests/msm_submit.c | 188 + 2 files changed, 189 insertions(+) create mode 100644 tests/msm_submit.c diff --git

[Freedreno] [PATCH igt 2/3] msm: Add helper library

2021-08-24 Thread Rob Clark
From: Rob Clark Handle some of the boilerplate for tests. Signed-off-by: Rob Clark --- lib/igt_msm.c | 163 lib/igt_msm.h | 128 + lib/meson.build | 1 + 3 files changed, 292 insertions(+) create mode

[Freedreno] [PATCH igt 1/3] drmtest: Add DRIVER_MSM support

2021-08-24 Thread Rob Clark
From: Rob Clark Signed-off-by: Rob Clark --- lib/drmtest.c | 3 +++ lib/drmtest.h | 1 + 2 files changed, 4 insertions(+) diff --git a/lib/drmtest.c b/lib/drmtest.c index e1f9b115..29cb3f4c 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -179,6 +179,7 @@ static const struct module { }

[Freedreno] [PATCH igt 0/3] Initial igt tests for drm/msm ioctls

2021-08-24 Thread Rob Clark
From: Rob Clark Add an initial set of tests for the gpu SUBMIT ioctl. There is plenty more we can add, but need to start somewhere. Rob Clark (3): drmtest: Add DRIVER_MSM support msm: Add helper library msm: Add submit ioctl tests lib/drmtest.c | 3 + lib/drmtest.h | 1 +