From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756148AbbFPH2i (ORCPT ); Tue, 16 Jun 2015 03:28:38 -0400 Received: from mail-pd0-f173.google.com ([209.85.192.173]:34334 "EHLO mail-pd0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755977AbbFPH23 (ORCPT ); Tue, 16 Jun 2015 03:28:29 -0400 From: Caesar Wang To: heiko@sntech.de Cc: devicetree@vger.kernel.org, jay.xu@rock-chips.com, linus.walleij@linaro.org, galak@codeaurora.org, linux-kernel@vger.kernel.org, ijc+devicetree@hellion.org.uk, linux-rockchip@lists.infradead.org, robh+dt@kernel.org, matthias.bgg@gmail.com, pawel.moll@arm.com, mark.rutland@arm.com, linux@arm.linux.org.uk, linux-arm-kernel@lists.infradead.org, wxt@rock-chips.com Subject: [PATCH v2 1/3] soc/rockchip: Add efuse bindings for Rockchip SoC efuse driver Date: Tue, 16 Jun 2015 15:27:43 +0800 Message-Id: <1434439665-27781-2-git-send-email-wxt@rock-chips.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1434439665-27781-1-git-send-email-wxt@rock-chips.com> References: <1434439665-27781-1-git-send-email-wxt@rock-chips.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add efuse bindings for RK3066, RK3188, RK3288 and RK3368. Signed-off-by: Jianqun Xu Signed-off-by: Caesar Wang --- Changes in v2: - Change the document decription. .../devicetree/bindings/fuse/rockchip,rockchip-efuse.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Documentation/devicetree/bindings/fuse/rockchip,rockchip-efuse.txt diff --git a/Documentation/devicetree/bindings/fuse/rockchip,rockchip-efuse.txt b/Documentation/devicetree/bindings/fuse/rockchip,rockchip-efuse.txt new file mode 100644 index 0000000..f1f338e --- /dev/null +++ b/Documentation/devicetree/bindings/fuse/rockchip,rockchip-efuse.txt @@ -0,0 +1,14 @@ +ROCKCHIP RK3066/RK3188/RK3288/RK3368 efuse block. + +Required properties: +- compatible : should be: "rockchip,-efuse" + "rockchip,rk3066-efuse": found on RK3066,RK3188,RK3288 and RK3368. +- reg: Should contain 1 entry: the entry gives the physical address and length + of the fuse registers. + +Example: + + efuse: efuse@ffb40000 { + compatible = "rockchip,rk3066-efuse"; + reg = <0xffb40000 0x10000>; + }; -- 1.9.1