From patchwork Fri Mar 1 15:41:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Pargmann X-Patchwork-Id: 2201961 Return-Path: X-Original-To: patchwork-linux-fbdev@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 3E74E3FCF6 for ; Fri, 1 Mar 2013 15:41:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751201Ab3CAPl6 (ORCPT ); Fri, 1 Mar 2013 10:41:58 -0500 Received: from metis.ext.pengutronix.de ([92.198.50.35]:47089 "EHLO metis.ext.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751076Ab3CAPl6 (ORCPT ); Fri, 1 Mar 2013 10:41:58 -0500 Received: from dude.hi.pengutronix.de ([2001:6f8:1178:2:21e:67ff:fe11:9c5c]) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1UBS5W-0004cG-VS; Fri, 01 Mar 2013 16:41:34 +0100 Received: from mpa by dude.hi.pengutronix.de with local (Exim 4.80) (envelope-from ) id 1UBS5V-0007v8-UG; Fri, 01 Mar 2013 16:41:33 +0100 From: Markus Pargmann To: Sascha Hauer Cc: Florian Tobias Schandinat , Grant Likely , Rob Herring , linux-fbdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Markus Pargmann Subject: [PATCH 2/2] video: imxfb: Add DT support Date: Fri, 1 Mar 2013 16:41:07 +0100 Message-Id: <1362152467-27998-3-git-send-email-mpa@pengutronix.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1362152467-27998-1-git-send-email-mpa@pengutronix.de> References: <1362152467-27998-1-git-send-email-mpa@pengutronix.de> X-SA-Exim-Connect-IP: 2001:6f8:1178:2:21e:67ff:fe11:9c5c X-SA-Exim-Mail-From: mpa@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-fbdev@vger.kernel.org Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org Add devicetree support for imx framebuffer driver. It uses the generic display bindings and helper functions. Signed-off-by: Markus Pargmann --- .../devicetree/bindings/video/fsl,imx-fb.txt | 30 ++++ drivers/video/imxfb.c | 176 +++++++++++++++++---- 2 files changed, 173 insertions(+), 33 deletions(-) create mode 100644 Documentation/devicetree/bindings/video/fsl,imx-fb.txt diff --git a/Documentation/devicetree/bindings/video/fsl,imx-fb.txt b/Documentation/devicetree/bindings/video/fsl,imx-fb.txt new file mode 100644 index 0000000..fd88d26 --- /dev/null +++ b/Documentation/devicetree/bindings/video/fsl,imx-fb.txt @@ -0,0 +1,30 @@ +Freescale imx21 Framebuffer + +This framebuffer driver supports chips imx1 and imx21. + +Required properties: +- compatible : "fsl,-fb" +- reg : Should contain 1 register ranges(address and length) +- interrupts : One interrupt of the fb dev + +Required nodes: +- display: a display node is required to initialize the lcd panel + This should be in the board dts. See definition in + Documentation/devicetree/bindings/video/via,vt8500-fb.txt +- default-mode: a videomode node as specified in + Documentation/devicetree/bindings/video/via,vt8500-fb.txt + +Optional properties: +- pwmr: Address of pwmr register +- lscr1: Address of lscr1 register +- dmacr: Address of dmacr register + +Example: + + imxfb: fb@10021000 { + compatible = "fsl,imx27-fb", "fsl,imx21-fb"; + interrupts = <61>; + reg = <0x10021000 0x1000>; + display = <&display0>; + default-mode = <&mode0>; + }; diff --git a/drivers/video/imxfb.c b/drivers/video/imxfb.c index ef2b587..6f1b04c 100644 --- a/drivers/video/imxfb.c +++ b/drivers/video/imxfb.c @@ -32,6 +32,12 @@ #include #include #include +#include +#include + +#include