Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752385AbdFOUnN (ORCPT ); Thu, 15 Jun 2017 16:43:13 -0400 Received: from anholt.net ([50.246.234.109]:57166 "EHLO anholt.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752478AbdFOUlh (ORCPT ); Thu, 15 Jun 2017 16:41:37 -0400 From: Eric Anholt To: dri-devel@lists.freedesktop.org, Archit Taneja , Andrzej Hajda , Laurent Pinchart , Thierry Reding , Rob Herring , Mark Rutland , devicetree@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Eric Anholt Subject: [PATCH 0/7] RPi touchscreen as a panel driver again Date: Thu, 15 Jun 2017 13:41:23 -0700 Message-Id: <20170615204130.19255-1-eric@anholt.net> X-Mailer: git-send-email 2.11.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1745 Lines: 34 After splitting the panel driver out into a panel and bridge due to panel review, the feedback from bridge maintainers was that it didn't make sense as a bridge. I completely agree with them. This series returns the driver to being a panel, but this time probing as an i2c client rather than a DSI device (due to review from bridge submission). Eric Anholt (7): drm/bridge: Support hotplugging panel-bridge. drm/vc4: Fix DSI T_INIT timing. drm/vc4: Fix misleading name of the continuous flag. drm/vc4: Use drm_mode_vrefresh() in DSI fixup, in case vrefresh is 0. dt-bindings: Document the Raspberry Pi Touchscreen nodes. drm/panel: Add support for the Raspberry Pi 7" Touchscreen. ARM: dts: bcm2835: Enable the Raspberry Pi touchscreen panel. .../panel/raspberrypi,7inch-touchscreen.txt | 49 ++ arch/arm/boot/dts/bcm2835-rpi-b-plus.dts | 5 + arch/arm/boot/dts/bcm2835-rpi-b-rev2.dts | 5 + arch/arm/boot/dts/bcm2835-rpi-b.dts | 5 + arch/arm/boot/dts/bcm2836-rpi-2-b.dts | 5 + arch/arm/boot/dts/bcm283x.dtsi | 30 +- arch/arm64/boot/dts/broadcom/bcm2837-rpi-3-b.dts | 5 + drivers/gpu/drm/bridge/panel.c | 3 + drivers/gpu/drm/panel/Kconfig | 8 + drivers/gpu/drm/panel/Makefile | 1 + .../gpu/drm/panel/panel-raspberrypi-touchscreen.c | 507 +++++++++++++++++++++ drivers/gpu/drm/vc4/vc4_dsi.c | 24 +- 12 files changed, 640 insertions(+), 7 deletions(-) create mode 100644 Documentation/devicetree/bindings/display/panel/raspberrypi,7inch-touchscreen.txt create mode 100644 drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c -- 2.11.0