From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753632AbcDAQWD (ORCPT ); Fri, 1 Apr 2016 12:22:03 -0400 Received: from fw-tnat.cambridge.arm.com ([217.140.96.140]:59174 "EHLO cam-smtp0.cambridge.arm.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751859AbcDAQV7 (ORCPT ); Fri, 1 Apr 2016 12:21:59 -0400 From: Liviu Dudau To: Dave Airlie , Daniel Stone , David Brown , Brian Starkey Cc: DRI devel , devicetree@vger.kernel.org, LKML Subject: [RFC][PATCH 0/2] Initial support for ARM Mali Display Processors Date: Fri, 1 Apr 2016 17:21:50 +0100 Message-Id: <1459527712-9488-1-git-send-email-Liviu.Dudau@arm.com> X-Mailer: git-send-email 2.7.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, Here is the public first version of the driver for the Mali Display Processors. Currently, the driver supports the Display Engine found in Mali DP500, DP550 and DP650, with up to 3 planes that can be rotated by the hardware. There are features that the hardware supports that are not currently implemented in the driver, but in the current form it is capable of supporting X11 using fbdev emulation as well as Wayland with pixman rendering. The patchset is submitted as an RFC to gather feedback and to catch early mistakes in the driver. I would appreciate any comments that you might have as well as code reviews if possible. Many thanks, Liviu Liviu Dudau (2): dt/bindings: display: Add DT bindings for Mali Display Processors. drm/arm: Add support for Mali Display Processors .../devicetree/bindings/display/arm,malidp.txt | 65 ++ drivers/gpu/drm/arm/Kconfig | 15 + drivers/gpu/drm/arm/Makefile | 2 + drivers/gpu/drm/arm/malidp_crtc.c | 279 ++++++++ drivers/gpu/drm/arm/malidp_drv.c | 483 +++++++++++++ drivers/gpu/drm/arm/malidp_drv.h | 49 ++ drivers/gpu/drm/arm/malidp_hw.c | 774 +++++++++++++++++++++ drivers/gpu/drm/arm/malidp_hw.h | 192 +++++ drivers/gpu/drm/arm/malidp_planes.c | 339 +++++++++ drivers/gpu/drm/arm/malidp_regs.h | 172 +++++ 10 files changed, 2370 insertions(+) create mode 100644 Documentation/devicetree/bindings/display/arm,malidp.txt create mode 100644 drivers/gpu/drm/arm/malidp_crtc.c create mode 100644 drivers/gpu/drm/arm/malidp_drv.c create mode 100644 drivers/gpu/drm/arm/malidp_drv.h create mode 100644 drivers/gpu/drm/arm/malidp_hw.c create mode 100644 drivers/gpu/drm/arm/malidp_hw.h create mode 100644 drivers/gpu/drm/arm/malidp_planes.c create mode 100644 drivers/gpu/drm/arm/malidp_regs.h -- 2.7.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Liviu Dudau Subject: [RFC][PATCH 0/2] Initial support for ARM Mali Display Processors Date: Fri, 1 Apr 2016 17:21:50 +0100 Message-ID: <1459527712-9488-1-git-send-email-Liviu.Dudau@arm.com> Return-path: Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Dave Airlie , Daniel Stone , David Brown , Brian Starkey Cc: DRI devel , devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, LKML List-Id: devicetree@vger.kernel.org Hello, Here is the public first version of the driver for the Mali Display Processors. Currently, the driver supports the Display Engine found in Mali DP500, DP550 and DP650, with up to 3 planes that can be rotated by the hardware. There are features that the hardware supports that are not currently implemented in the driver, but in the current form it is capable of supporting X11 using fbdev emulation as well as Wayland with pixman rendering. The patchset is submitted as an RFC to gather feedback and to catch early mistakes in the driver. I would appreciate any comments that you might have as well as code reviews if possible. Many thanks, Liviu Liviu Dudau (2): dt/bindings: display: Add DT bindings for Mali Display Processors. drm/arm: Add support for Mali Display Processors .../devicetree/bindings/display/arm,malidp.txt | 65 ++ drivers/gpu/drm/arm/Kconfig | 15 + drivers/gpu/drm/arm/Makefile | 2 + drivers/gpu/drm/arm/malidp_crtc.c | 279 ++++++++ drivers/gpu/drm/arm/malidp_drv.c | 483 +++++++++++++ drivers/gpu/drm/arm/malidp_drv.h | 49 ++ drivers/gpu/drm/arm/malidp_hw.c | 774 +++++++++++++++++++++ drivers/gpu/drm/arm/malidp_hw.h | 192 +++++ drivers/gpu/drm/arm/malidp_planes.c | 339 +++++++++ drivers/gpu/drm/arm/malidp_regs.h | 172 +++++ 10 files changed, 2370 insertions(+) create mode 100644 Documentation/devicetree/bindings/display/arm,malidp.txt create mode 100644 drivers/gpu/drm/arm/malidp_crtc.c create mode 100644 drivers/gpu/drm/arm/malidp_drv.c create mode 100644 drivers/gpu/drm/arm/malidp_drv.h create mode 100644 drivers/gpu/drm/arm/malidp_hw.c create mode 100644 drivers/gpu/drm/arm/malidp_hw.h create mode 100644 drivers/gpu/drm/arm/malidp_planes.c create mode 100644 drivers/gpu/drm/arm/malidp_regs.h -- 2.7.1 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html