From patchwork Thu Jun 13 03:24:51 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rob Herring X-Patchwork-Id: 250967 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 5EB9A2C00A6 for ; Thu, 13 Jun 2013 13:27:39 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9A5A84A0AF; Thu, 13 Jun 2013 05:26:43 +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 A2gKIawn9ZFF; Thu, 13 Jun 2013 05:26:43 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1FE1C4A0B0; Thu, 13 Jun 2013 05:25:53 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C9EC44A04A for ; Thu, 13 Jun 2013 05:25:39 +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 Sxo9vShK8dEW for ; Thu, 13 Jun 2013 05:25:33 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 BL_NJABL=ERR(-1.5) (only DNSBL check requested) Received: from mail-ob0-f179.google.com (mail-ob0-f179.google.com [209.85.214.179]) by theia.denx.de (Postfix) with ESMTPS id 192A54A029 for ; Thu, 13 Jun 2013 05:25:13 +0200 (CEST) Received: by mail-ob0-f179.google.com with SMTP id xk17so14222681obc.10 for ; Wed, 12 Jun 2013 20:25:12 -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:x-mailer:in-reply-to:references; bh=zBCH2Cofv4LgXiM4ZWQOIQxgs1nndVdBX23Ci5qt8tA=; b=MW/bow3y43wSMh62usEioL2FBdgaK9TyefcTP2FxTRt6caHn+UWEQtkOFl7Ueu6orI K4YxNNlApzViPM5fWqVR3vkKvuOxXBi6Cfk6+mX10H6e3MwK/e02Dhqh3rdNEKSFp76e BP2hiAl6pPqedlxNSLRmPRoIBitBJx7QNaFcCJdwigfdJuJtUGp9nS5f68jWuf6548dK 1EiMRtNW+qeQENwIfxd43yNyYyxLbb0C5IIgUWFh6/7O7xczyzJ250F5nJj1O/zFSN0i QbNAE2liGlM06BjV0PT7W+EMFWzDj4h4tBrKCnZNSiFmdpLR51KWSnTYM7PFVd2ryl9Y 5fcA== X-Received: by 10.182.27.5 with SMTP id p5mr17255096obg.99.1371093912144; Wed, 12 Jun 2013 20:25:12 -0700 (PDT) Received: from rob-laptop.grandenetworks.net (65-36-73-129.dyn.grandenetworks.net. [65.36.73.129]) by mx.google.com with ESMTPSA id oe10sm37501996oeb.6.2013.06.12.20.25.09 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 12 Jun 2013 20:25:11 -0700 (PDT) From: Rob Herring To: u-boot@lists.denx.de, albert.u.boot@aribaud.net, trini@ti.com Date: Wed, 12 Jun 2013 22:24:51 -0500 Message-Id: <1371093894-16424-7-git-send-email-robherring2@gmail.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1371093894-16424-1-git-send-email-robherring2@gmail.com> References: <1371093894-16424-1-git-send-email-robherring2@gmail.com> Cc: Rob Herring Subject: [U-Boot] [PATCH v2 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 --- v2: no change, resend include/configs/highbank.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/highbank.h b/include/configs/highbank.h index 5e5d8e6..9bf56c7 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 */