From patchwork Fri Sep 9 22:02:02 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Angus Ainslie X-Patchwork-Id: 4009 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 0112623FA0 for ; Fri, 9 Sep 2011 22:02:18 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id E22F7A18448 for ; Fri, 9 Sep 2011 22:02:18 +0000 (UTC) Received: by fxd18 with SMTP id 18so4325209fxd.11 for ; Fri, 09 Sep 2011 15:02:18 -0700 (PDT) Received: by 10.223.33.19 with SMTP id f19mr287028fad.122.1315605738721; Fri, 09 Sep 2011 15:02:18 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.11.8 with SMTP id m8cs28293lab; Fri, 9 Sep 2011 15:02:18 -0700 (PDT) Received: by 10.150.55.10 with SMTP id d10mr960781yba.62.1315605737676; Fri, 09 Sep 2011 15:02:17 -0700 (PDT) Received: from mail-yx0-f178.google.com (mail-yx0-f178.google.com [209.85.213.178]) by mx.google.com with ESMTPS id o18si5589217ybg.51.2011.09.09.15.02.15 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 09 Sep 2011 15:02:16 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.213.178 is neither permitted nor denied by best guess record for domain of angus.ainslie@linaro.org) client-ip=209.85.213.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.213.178 is neither permitted nor denied by best guess record for domain of angus.ainslie@linaro.org) smtp.mail=angus.ainslie@linaro.org Received: by yxj19 with SMTP id 19so1644446yxj.37 for ; Fri, 09 Sep 2011 15:02:15 -0700 (PDT) Received: by 10.42.144.69 with SMTP id a5mr137798icv.463.1315605735523; Fri, 09 Sep 2011 15:02:15 -0700 (PDT) Received: from builder.akkea.ca (S0106c43dc79ddf87.cg.shawcable.net [70.73.137.251]) by mx.google.com with ESMTPS id d8sm10047908ibl.1.2011.09.09.15.02.13 (version=SSLv3 cipher=OTHER); Fri, 09 Sep 2011 15:02:14 -0700 (PDT) From: angus.ainslie@linaro.org To: u-boot@lists.denx.de Cc: bjlee@samsung.com, linaro-dev@lists.linaro.org, patches@linaro.org, mk7.kang@samsung.com, samsung@lists.linaro.org, Angus Ainslie Subject: [PATCH] ORIGEN : enable device tree support Date: Fri, 9 Sep 2011 16:02:02 -0600 Message-Id: <4e6a8ce6.0853e70a.7d72.24dd@mx.google.com> X-Mailer: git-send-email 1.7.4.1 From: Angus Ainslie Enable passing a flattened device tree to the kernel. Signed-off-by: Angus Ainslie Acked-by: Chander Kashyap --- include/configs/origen.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/origen.h b/include/configs/origen.h index 889d5fc..380ef4f 100644 --- a/include/configs/origen.h +++ b/include/configs/origen.h @@ -165,4 +165,7 @@ #define COPY_BL2_SIZE 0x80000 #define BL2_START_OFFSET ((CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)/512) #define BL2_SIZE_BLOC_COUNT (COPY_BL2_SIZE/512) + +/* Enable devicetree support */ +#define CONFIG_OF_LIBFDT #endif /* __CONFIG_H */