Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752597AbdHKGt7 (ORCPT ); Fri, 11 Aug 2017 02:49:59 -0400 Received: from mga09.intel.com ([134.134.136.24]:29073 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751370AbdHKGt4 (ORCPT ); Fri, 11 Aug 2017 02:49:56 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,356,1498546800"; d="scan'208";a="139033257" From: "Hean-Loong, Ong" To: Rob Herring , Dinh Nguyen , Daniel Vetter , Laurent Pinchart , Randy Dunlap Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, dri-devel@lists.freedesktop.org, hean.loong.ong@intel.com, Ong@vger.kernel.org Subject: [PATCHv6 1/3] ARM:dt-bindings Intel FPGA Video and Image Processing Suite Date: Fri, 11 Aug 2017 14:49:45 +0800 Message-Id: <1502434187-6407-2-git-send-email-hean.loong.ong@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1502434187-6407-1-git-send-email-hean.loong.ong@intel.com> References: <1502434187-6407-1-git-send-email-hean.loong.ong@intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3040 Lines: 86 From: Ong Hean Loong Device tree binding for Intel FPGA Video and Image Processing Suite. The binding involved would be generated from the Altera (Intel) Qsys system. The bindings would set the max width, max height, buts per pixel and memory port width. The device tree binding only supports the Intel Arria10 devkit and its variants. Vendor name retained as altr. Signed-off-by: Ong, Hean Loong --- V6: Fix comments for description V5: *Fix comments on description *remove bindings for bits per symbol as it has only one value which is 8 V4: *Fix comments on description V3: *Fix comments on description V2: *Fix comments on description V1: *Fix comments on description --- --- .../devicetree/bindings/display/altr,vip-fb2.txt | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Documentation/devicetree/bindings/display/altr,vip-fb2.txt diff --git a/Documentation/devicetree/bindings/display/altr,vip-fb2.txt b/Documentation/devicetree/bindings/display/altr,vip-fb2.txt new file mode 100644 index 0000000..57d8869 --- /dev/null +++ b/Documentation/devicetree/bindings/display/altr,vip-fb2.txt @@ -0,0 +1,42 @@ +Intel Video and Image Processing(VIP) Frame Buffer II bindings + +Supported hardware: Intel FPGA SoC Arria10 and above with display port IP + +The hardware associated with this device tree is a SoC FPGA. +Where there is an microprocessor and a FPGA device. +The microprocessor would host the OS while the FPGA device runs +on its individual IP firmware. The Intel VIP Frame Buffer II +system would be driving data from the to the FPGA device +programmed with the Frame Buffer II IP to render pixels to be streamed +to the Display Port connector. + +The Frame Buffer II device is a simple frame buffer device. The device +contains the display properties and the bridge or connector register. +The output for this device currently is a dedicated to a single Display Port. +Currently the max resolution supported is 1280 x 720 at 60Hz. + +More information the FPGA video IP component can be acquired from +https://www.altera.com/content/dam/altera-www/global/en_US/pdfs\ +/literature/ug/ug_vip.pdf + +New bindings: +============= +Required properties: +---------------------------- +- compatible: "altr,vip-frame-buffer-2.0" +- reg: Physical base address and length of the framebuffer controller's + registers. +- altr,max-width: The maximum width of the framebuffer in pixels. +- altr,max-height: The maximum height of the framebuffer in pixels. +- altr,mem-port-width: the bus width of the avalon master port + on the frame reader + +Example: +---------------------------- + dp_0_frame_buf: display-controller@100000280 { + compatible = "altr,vip-frame-buffer-2.0"; + reg = <0x00000001 0x00000280 0x00000040>; + altr,max-width = <1280>; + altr,max-height = <720>; + altr,mem-port-width = <128>; + }; -- 2.7.4