From patchwork Tue May 6 17:10:11 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Beniamino Galvani X-Patchwork-Id: 346264 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 49BD1140172 for ; Wed, 7 May 2014 03:11:11 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751869AbaEFRKv (ORCPT ); Tue, 6 May 2014 13:10:51 -0400 Received: from mail-ee0-f50.google.com ([74.125.83.50]:35858 "EHLO mail-ee0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752045AbaEFRKp (ORCPT ); Tue, 6 May 2014 13:10:45 -0400 Received: by mail-ee0-f50.google.com with SMTP id e51so1942945eek.23 for ; Tue, 06 May 2014 10:10:43 -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; bh=d5wSM1GacSEkxwnn2snheHHqor/TFpQRiQRXNmhVPbs=; b=LAsI/XwuNCHa7jBL7y2Oqg3MQfccryNAPswzcQaPTLBOtzpKksZsRiA6ZrNz6hLlpu l9w/QFvmwCNCwHjQyMf/NwRW19pqPtqAfiF/NQ4dCIWfQkhxgFNn4LxPXvmMtUywSmRl eXLXkmnHupbgcmYhxC1JRoPQqur5uR98L8Pfsq21nyDevsJBM/OL6zly9AtGyZl1paNG AYJV/v8WYSm/U+B1KDGkMaaxO/hni74V7N2/TEsRViIJEpwouFaPc6NqnIdKz2OzkoO6 7/e7A1dcvV6CZ82ouoMphUINHJozQwD9co7AYzzzVrvdAgA3xE4gQ/WxtxgRgDzyvqnb u+Ew== X-Received: by 10.14.109.201 with SMTP id s49mr10553052eeg.88.1399396243801; Tue, 06 May 2014 10:10:43 -0700 (PDT) Received: from sark.local (host237-33-dynamic.5-87-r.retail.telecomitalia.it. [87.5.33.237]) by mx.google.com with ESMTPSA id w46sm40004850eeo.35.2014.05.06.10.10.41 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 06 May 2014 10:10:42 -0700 (PDT) From: Beniamino Galvani To: Heiko Stuebner Cc: Matthias Brugger , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Beniamino Galvani Subject: [PATCH v2 2/2] ARM: dts: rockchip: add root compatible properties Date: Tue, 6 May 2014 19:10:11 +0200 Message-Id: <1399396211-25353-2-git-send-email-b.galvani@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1399396211-25353-1-git-send-email-b.galvani@gmail.com> References: <1399396211-25353-1-git-send-email-b.galvani@gmail.com> Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Add the missing 'compatible' property to device tree root node of - rk3066a-bqcurie2.dts - rk3188-radxarock.dts and document the new values. Signed-off-by: Beniamino Galvani Acked-by: Rob Herring --- v2: - use mundoreader prefix instead of bq as suggested by Heiko Stuebner Documentation/devicetree/bindings/arm/rockchip.txt | 10 ++++++++++ arch/arm/boot/dts/rk3066a-bqcurie2.dts | 1 + arch/arm/boot/dts/rk3188-radxarock.dts | 1 + 3 files changed, 12 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/rockchip.txt diff --git a/Documentation/devicetree/bindings/arm/rockchip.txt b/Documentation/devicetree/bindings/arm/rockchip.txt new file mode 100644 index 0000000..857f126 --- /dev/null +++ b/Documentation/devicetree/bindings/arm/rockchip.txt @@ -0,0 +1,10 @@ +Rockchip platforms device tree bindings +--------------------------------------- + +- bq Curie 2 tablet: + Required root node properties: + - compatible = "mundoreader,bq-curie2", "rockchip,rk3066a"; + +- Radxa Rock board: + Required root node properties: + - compatible = "radxa,rock", "rockchip,rk3188"; diff --git a/arch/arm/boot/dts/rk3066a-bqcurie2.dts b/arch/arm/boot/dts/rk3066a-bqcurie2.dts index 035df40..afb3273 100644 --- a/arch/arm/boot/dts/rk3066a-bqcurie2.dts +++ b/arch/arm/boot/dts/rk3066a-bqcurie2.dts @@ -18,6 +18,7 @@ / { model = "bq Curie 2"; + compatible = "mundoreader,bq-curie2", "rockchip,rk3066a"; memory { reg = <0x60000000 0x40000000>; diff --git a/arch/arm/boot/dts/rk3188-radxarock.dts b/arch/arm/boot/dts/rk3188-radxarock.dts index 3ba1968..a5eee55 100644 --- a/arch/arm/boot/dts/rk3188-radxarock.dts +++ b/arch/arm/boot/dts/rk3188-radxarock.dts @@ -17,6 +17,7 @@ / { model = "Radxa Rock"; + compatible = "radxa,rock", "rockchip,rk3188"; memory { reg = <0x60000000 0x80000000>;