From patchwork Wed May 15 19:56:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rob Herring X-Patchwork-Id: 244170 X-Patchwork-Delegate: albert.aribaud@free.fr Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 6ACE12C009E for ; Thu, 16 May 2013 06:03:53 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2DE9E4A04F; Wed, 15 May 2013 22:03:52 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2ZeIEZ5ozxq8; Wed, 15 May 2013 22:03:52 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 632C44A052; Wed, 15 May 2013 22:03:50 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 365954A08A for ; Wed, 15 May 2013 22:03:48 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id d0vraSBJi4xK for ; Wed, 15 May 2013 22:03:47 +0200 (CEST) X-Greylist: delayed 421 seconds by postgrey-1.27 at theia; Wed, 15 May 2013 22:03:41 CEST X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-ob0-f175.google.com (mail-ob0-f175.google.com [209.85.214.175]) by theia.denx.de (Postfix) with ESMTPS id 55E8E4A04F for ; Wed, 15 May 2013 22:03:41 +0200 (CEST) Received: by mail-ob0-f175.google.com with SMTP id wo10so1051460obc.6 for ; Wed, 15 May 2013 13:03:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=+OyZOmAUa8oEFumtP0iYrUbvkday7mCMjCQNCdkuj14=; b=U5Ru5XZn0wRI3efYwV1YLpqktJshbzWNqKVZlI1SrZ0MmP8wciVy93d2664dJ0z9I1 FjPfULTS9U8gA0LBRSmviUQW0y524F8iEFRQ7Miz08RPBoSmq7PMSwpuXbqJrjzbWGUR a0hLVy1pn4mS+k0Kz6F5jWiE0sprAbEBFWXBKRTBmcq+vMTOmy90Z2mA2/BZwIIWlCpl zyKru2wPPPf1L2ACkOl9nS7t+YS8Ee+PTXzue3hGM0ZQlv7dSphfC7A5al7YR3ZOiY5n L3UerhHQZIqiDLO97frnPzKY3+vrUGO1se3eiA6jlOZNOURTf1Q5rHeYMotQns7Zzwbk Ta0w== X-Received: by 10.60.144.170 with SMTP id sn10mr20412602oeb.40.1368647809778; Wed, 15 May 2013 12:56:49 -0700 (PDT) Received: from rob-laptop.calxeda.com ([173.226.190.126]) by mx.google.com with ESMTPSA id qj8sm4440239oeb.2.2013.05.15.12.56.47 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 15 May 2013 12:56:48 -0700 (PDT) From: Rob Herring To: u-boot@lists.denx.de Date: Wed, 15 May 2013 14:56:13 -0500 Message-Id: <1368647776-12940-7-git-send-email-robherring2@gmail.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1368647776-12940-1-git-send-email-robherring2@gmail.com> References: <1368647776-12940-1-git-send-email-robherring2@gmail.com> Cc: Rob Herring Subject: [U-Boot] [PATCH 07/10] ARM: highbank: enable reset on command timeout X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de From: Rob Herring Enable resetting on command timeout. The timeout is set with environment setting bootretry. Signed-off-by: Rob Herring --- include/configs/highbank.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/highbank.h b/include/configs/highbank.h index d4659cb..978681e 100644 --- a/include/configs/highbank.h +++ b/include/configs/highbank.h @@ -85,6 +85,9 @@ #define CONFIG_MENU #define CONFIG_BOOTDELAY 2 +#define CONFIG_BOOT_RETRY_TIME -1 +#define CONFIG_RESET_TO_RETRY + /* * Miscellaneous configurable options */