* [PATCH 0/4] Initial support for the Pixel 3
@ 2022-07-18 21:20 Caleb Connolly
2022-07-18 21:21 ` [PATCH 1/4] Documentation: dt-bindings: arm: qcom: add google,blueline Caleb Connolly
0 siblings, 1 reply; 3+ messages in thread
From: Caleb Connolly @ 2022-07-18 21:20 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Thierry Reding, Sam Ravnborg, David Airlie,
Daniel Vetter, Sumit Semwal, Stephen Boyd, Caleb Connolly,
linux-arm-msm, devicetree, linux-kernel, dri-devel, phone-devel,
~postmarketos/upstreaming, Amit Pundir
This series adds an initial DTS and display panel driver
for the Pixel 3. The Pixel 3 display uses DSC (Display
Stream Compression) which has been supported in mainline
for some time now.
Functionality includes:
- Display, GPU, venus video transcoder
- Modem/WiFi/Bluetooth - ModemManager seems to fail
The touchscreen uses some HEFTY downstream driver, hopefully
we'll come up with an upstreamable solution for it soon and
make this a bit more usable.
Amit Pundir (1):
arm64: dts: qcom: add sdm845-google-blueline (Pixel 3)
Caleb Connolly (1):
Documentation: dt-bindings: arm: qcom: add google,blueline
Sumit Semwal (2):
dt-bindings: panel: Add LG SW43408 MIPI-DSI panel
drm: panel: Add lg sw43408 panel driver
.../devicetree/bindings/arm/qcom.yaml | 1 +
.../bindings/display/panel/lg,43408.yaml | 41 ++
.../display/panel/panel-simple-dsi.yaml | 2 +
MAINTAINERS | 8 +
arch/arm64/boot/dts/qcom/Makefile | 1 +
.../boot/dts/qcom/sdm845-google-blueline.dts | 652 ++++++++++++++++++
drivers/gpu/drm/panel/Kconfig | 11 +
drivers/gpu/drm/panel/Makefile | 1 +
drivers/gpu/drm/panel/panel-lg-sw43408.c | 586 ++++++++++++++++
9 files changed, 1303 insertions(+)
create mode 100644 Documentation/devicetree/bindings/display/panel/lg,43408.yaml
create mode 100644 arch/arm64/boot/dts/qcom/sdm845-google-blueline.dts
create mode 100644 drivers/gpu/drm/panel/panel-lg-sw43408.c
--
2.36.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/4] Documentation: dt-bindings: arm: qcom: add google,blueline
2022-07-18 21:20 [PATCH 0/4] Initial support for the Pixel 3 Caleb Connolly
@ 2022-07-18 21:21 ` Caleb Connolly
0 siblings, 0 replies; 3+ messages in thread
From: Caleb Connolly @ 2022-07-18 21:21 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Thierry Reding, Sam Ravnborg, David Airlie,
Daniel Vetter, Sumit Semwal, Stephen Boyd, Caleb Connolly,
linux-arm-msm, devicetree, linux-kernel, dri-devel, phone-devel,
~postmarketos/upstreaming
Document the bindings for the Pixel 3
Based on https://lore.kernel.org/all/20220521164550.91115-7-krzysztof.kozlowski@linaro.org/
Signed-off-by: Caleb Connolly <caleb@connolly.tech>
---
Documentation/devicetree/bindings/arm/qcom.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/arm/qcom.yaml b/Documentation/devicetree/bindings/arm/qcom.yaml
index b727467e86c6..b3e1004673c7 100644
--- a/Documentation/devicetree/bindings/arm/qcom.yaml
+++ b/Documentation/devicetree/bindings/arm/qcom.yaml
@@ -320,6 +320,7 @@ properties:
- items:
- enum:
+ - google,blueline
- lenovo,yoga-c630
- oneplus,enchilada
- oneplus,fajita
--
2.36.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 0/4] Initial support for the Pixel 3
@ 2022-07-18 21:30 Caleb Connolly
0 siblings, 0 replies; 3+ messages in thread
From: Caleb Connolly @ 2022-07-18 21:30 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Thierry Reding, Sam Ravnborg, David Airlie,
Daniel Vetter, Sumit Semwal, Caleb Connolly, linux-arm-msm,
devicetree, linux-kernel, dri-devel, phone-devel,
~postmarketos/upstreaming, Amit Pundir
This series adds an initial DTS and display panel driver
for the Pixel 3. The Pixel 3 display uses DSC (Display
Stream Compression) which has been supported in mainline
for some time now.
Functionality includes:
- Display, GPU, venus video transcoder
- Modem/WiFi/Bluetooth - ModemManager seems to fail
The touchscreen uses some HEFTY downstream driver, hopefully
we'll come up with an upstreamable solution for it soon and
make this a bit more usable.
Amit Pundir (1):
arm64: dts: qcom: add sdm845-google-blueline (Pixel 3)
Caleb Connolly (1):
Documentation: dt-bindings: arm: qcom: add google,blueline
Sumit Semwal (2):
dt-bindings: panel: Add LG SW43408 MIPI-DSI panel
drm: panel: Add lg sw43408 panel driver
.../devicetree/bindings/arm/qcom.yaml | 1 +
.../bindings/display/panel/lg,43408.yaml | 41 ++
.../display/panel/panel-simple-dsi.yaml | 2 +
MAINTAINERS | 8 +
arch/arm64/boot/dts/qcom/Makefile | 1 +
.../boot/dts/qcom/sdm845-google-blueline.dts | 652 ++++++++++++++++++
drivers/gpu/drm/panel/Kconfig | 11 +
drivers/gpu/drm/panel/Makefile | 1 +
drivers/gpu/drm/panel/panel-lg-sw43408.c | 586 ++++++++++++++++
9 files changed, 1303 insertions(+)
create mode 100644 Documentation/devicetree/bindings/display/panel/lg,43408.yaml
create mode 100644 arch/arm64/boot/dts/qcom/sdm845-google-blueline.dts
create mode 100644 drivers/gpu/drm/panel/panel-lg-sw43408.c
--
2.36.1
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-07-18 21:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-18 21:20 [PATCH 0/4] Initial support for the Pixel 3 Caleb Connolly
2022-07-18 21:21 ` [PATCH 1/4] Documentation: dt-bindings: arm: qcom: add google,blueline Caleb Connolly
-- strict thread matches above, loose matches on Subject: below --
2022-07-18 21:30 [PATCH 0/4] Initial support for the Pixel 3 Caleb Connolly
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).