From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from na01-bl2-obe.outbound.protection.outlook.com (mail-bl2lp0205.outbound.protection.outlook.com [207.46.163.205]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4330F1A0004 for ; Thu, 3 Jul 2014 20:26:32 +1000 (EST) From: Priyanka Jain To: , , Subject: [PATCH] devicetree/binding/powerpc/fsl: Add binding for CPLD Date: Thu, 3 Jul 2014 15:39:45 +0530 Message-ID: <1404382185-2967-1-git-send-email-Priyanka.Jain@freescale.com> MIME-Version: 1.0 Content-Type: text/plain Cc: Priyanka Jain List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Some Freescale boards like T1040RDB have on board CPLD connected on the IFC bus. Add binding for this in board.txt file Signed-off-by: Priyanka Jain --- .../devicetree/bindings/powerpc/fsl/board.txt | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/Documentation/devicetree/bindings/powerpc/fsl/board.txt b/Documentation/devicetree/bindings/powerpc/fsl/board.txt index 700dec4..f35f295 100644 --- a/Documentation/devicetree/bindings/powerpc/fsl/board.txt +++ b/Documentation/devicetree/bindings/powerpc/fsl/board.txt @@ -84,3 +84,22 @@ Example: compatible = "fsl,bsc9132qds-fpga", "fsl,fpga-qixis-i2c"; reg = <0x66>; }; + +* Freescale on-board CPLD + +Some Freescale boards like T1040RDB have on board CPLD connected on +the IFC bus. + +Required properties: +- compatible: Should be a board-specific string like "fsl,-cpld" + Example: + "fsl,T1040RDB-cpld", "fsl,T1042RDB-cpld", "fsl,T1042RDB_PI-cpld" +- reg: Should contain the chip select, address offset and length of the CPLD + +Example: + cpld@3,0 { + #address-cells = <1>; + #size-cells = <1>; + compatible = "fsl,T1040RDB-cpld"; + reg = <3 0 0x300>; + }; -- 1.7.4.1