From patchwork Mon Sep 7 08:21:38 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sanchayan Maity X-Patchwork-Id: 515003 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 486EE140321 for ; Mon, 7 Sep 2015 18:25:50 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=cX28CVz7; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754016AbbIGIZp (ORCPT ); Mon, 7 Sep 2015 04:25:45 -0400 Received: from mail-pa0-f52.google.com ([209.85.220.52]:36291 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753941AbbIGIZc (ORCPT ); Mon, 7 Sep 2015 04:25:32 -0400 Received: by padhk3 with SMTP id hk3so5634693pad.3; Mon, 07 Sep 2015 01:25:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=HZoJPX0DqHwDnJTPowlcCifv8BysRhaL7Z3dtB40JIw=; b=cX28CVz7L7t5082aiSrDu9srPw/427gkLTAjuyBrkwB6jy/zVakDKw+bhlwxrmG3Dt um3ry7kfMeINT8I8UUJAhWUrtu4Qah2uQ5NifH8gJWdrz2jH7jAgltefleo1hKZRPAGx 6UjCkbdas6ZCmBIAmJboClJKBdKEnJ8RHzsruKP7424vqVbracvsd9y0/dbu0wqFDnS9 ohyj20XA7jPSDl5P7EGLyJiSySotJR2yrsfz1c3NJ5hCNWk9Iv3iZDLPJfk6GhcIBH9r p7t21VH/OixPTFb2zmE1rpp/9AZXqw2v2zAsEBTEhKMGdraBXrs5JD7mmiFwTbMsM7dl uSrw== X-Received: by 10.66.249.166 with SMTP id yv6mr43434651pac.126.1441614331557; Mon, 07 Sep 2015 01:25:31 -0700 (PDT) Received: from localhost ([115.115.225.206]) by smtp.gmail.com with ESMTPSA id uk6sm11079912pac.27.2015.09.07.01.25.30 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 07 Sep 2015 01:25:30 -0700 (PDT) From: Sanchayan Maity To: srinivas.kandagatla@linaro.org, gregkh@linuxfoundation.org Cc: maxime.ripard@free-electrons.com, devicetree@vger.kernel.org, linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, stefan@agner.ch, shawnguo@kernel.org, kernel@pengutronix.de, Sanchayan Maity Subject: [PATCH v10 4/4] nvmem: Add DT binding documentation for Vybrid OCOTP driver Date: Mon, 7 Sep 2015 13:51:38 +0530 Message-Id: <1cec2239c020d4519aad38f42f09bf26b3d2854a.1441609625.git.maitysanchayan@gmail.com> X-Mailer: git-send-email 2.5.1 In-Reply-To: References: In-Reply-To: References: Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Add the devicetree bindings for the Freescale Vybrid On-Chip OTP driver. Signed-off-by: Sanchayan Maity Acked-by: Srinivas Kandagatla --- .../devicetree/bindings/nvmem/vf610-ocotp.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt diff --git a/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt b/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt new file mode 100644 index 0000000..56ed481 --- /dev/null +++ b/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt @@ -0,0 +1,19 @@ +On-Chip OTP Memory for Freescale Vybrid + +Required Properties: + compatible: + - "fsl,vf610-ocotp" for VF5xx/VF6xx + #address-cells : Should be 1 + #size-cells : Should be 1 + reg : Address and length of OTP controller and fuse map registers + clocks : ipg clock we associate with the OCOTP peripheral + +Example for Vybrid VF5xx/VF6xx: + + ocotp: ocotp@400a5000 { + compatible = "fsl,vf610-ocotp"; + #address-cells = <1>; + #size-cells = <1>; + reg = <0x400a5000 0xCF0>; + clocks = <&clks VF610_CLK_OCOTP>; + };