This series enables a set of miscellaneous features for Billion Capture+ (a handset using the MSM8953 SoC released in 2017): - Panel and GPU - Touchscreen - WiFi + Bluetooth - Hall sensor
Patches 1 and 2 provide a driver for Novatek NT35532 and its corresponding devicetree bindings, required for enabling panel in DTS. The remaining patches are all DTS changes, aimed to enable the features listed above. To: Neil Armstrong <[email protected]> To: Jessica Zhang <[email protected]> To: David Airlie <[email protected]> To: Simona Vetter <[email protected]> To: Maarten Lankhorst <[email protected]> To: Maxime Ripard <[email protected]> To: Thomas Zimmermann <[email protected]> To: Rob Herring <[email protected]> To: Krzysztof Kozlowski <[email protected]> To: Conor Dooley <[email protected]> To: Bjorn Andersson <[email protected]> To: Konrad Dybcio <[email protected]> Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: ~postmarketos/[email protected] Cc: [email protected] Signed-off-by: Cristian Cozzolino <[email protected]> --- Changes in v2: - (patch 1/6): define power supplies in the bindings as per datasheet and update example; - (patch 2/6): add blank lines where required between mipi dsi write sequences in nt35532_on() function and make use of names for mipi dcs commands, instead of hex numbers, to improve readibility (Dmitry); - (patch 3/6): move pinctrl lines ibto panel node and get rid of sleep/reset state, since panel just uses one pinctrl state for default/sleep (Dmitry). Also, update power supplies according to bindings; - (patch 4/6): pick up tags (Konrad,Dmitry); - (patch 6/6): squash hall sensor node into gpio-keys (Dmitry); - Link to v1: https://lore.kernel.org/r/[email protected] --- Cristian Cozzolino (6): dt-bindings: display: panel: Add Novatek NT35532 LCD DSI drm/panel: Add driver for Novatek NT35532 arm64: dts: qcom: msm8953-flipkart-rimob: Enable display and GPU arm64: dts: qcom: msm8953-flipkart-rimob: Enable WiFi/Bluetooth arm64: dts: qcom: msm8953-flipkart-rimob: Enable touchscreen arm64: dts: qcom: msm8953-flipkart-rimob: Enable Hall sensor .../bindings/display/panel/novatek,nt35532.yaml | 80 +++ MAINTAINERS | 6 + .../arm64/boot/dts/qcom/msm8953-flipkart-rimob.dts | 139 +++- drivers/gpu/drm/panel/Kconfig | 11 + drivers/gpu/drm/panel/Makefile | 1 + drivers/gpu/drm/panel/panel-novatek-nt35532.c | 779 +++++++++++++++++++++ 6 files changed, 1015 insertions(+), 1 deletion(-) --- base-commit: 8e5a478b6d6a5bb0a3d52147862b15e4d826af19 change-id: 20260303-rimob-new-features-037944b3a620 Best regards, -- Cristian Cozzolino <[email protected]>

