From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 821F5C282DA for ; Wed, 17 Apr 2019 17:00:22 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 4DFE82173C for ; Wed, 17 Apr 2019 17:00:22 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="KrH1bDVV" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 4DFE82173C Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=tkos.co.il Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date: In-reply-to:Subject:To:From:References:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Owner; bh=v11K74ZnnaCoICWj24j1RTvz2Qc9sUecC+H0AWIiXEQ=; b=KrH1bDVVUHTnPJnkRGD9B3YfjG sONvTcAm9z+i11cM482cddRJMPVXapXYShhvtKQ7OY/f5Gobi4vus1bLoXFMuR2El739tjRJMFyQh h/srx5HfUITuEX1+6QBJd4tFWDB8JNul1g0QCQNzr71Syb2ZwMO5zaZtUmyLD4twCOl08vfcIXAaI fMk6zJlzASklcrlEDi4Jt5oP5Yoenw0SY952G0Hgs4OqYU6yGd7XpZN/VS2npFAavy55jXPsiSrMu RdSRNsa6/uVnF6docUNuUFwqFay81EcEqDu+b8n/Dme2UzVHEvu2/nvthh4GwZyELqrDfjkv3aj+M TjXSi1ww==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1hGnuz-0007bM-LP; Wed, 17 Apr 2019 17:00:17 +0000 Received: from guitar.tcltek.co.il ([192.115.133.116] helo=mx.tkos.co.il) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1hGnuv-0007Dn-Vh for linux-arm-kernel@lists.infradead.org; Wed, 17 Apr 2019 17:00:16 +0000 Received: from tarshish (unknown [10.0.8.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPS id C80244406EA; Wed, 17 Apr 2019 20:00:10 +0300 (IDT) References: <20190417151348.100050-1-arnd@arndb.de> User-agent: mu4e 1.0; emacs 26.1 From: Baruch Siach To: Arnd Bergmann Subject: Re: [PATCH v3] ARM: debug-ll: add default address for digicolor In-reply-to: <20190417151348.100050-1-arnd@arndb.de> Date: Wed, 17 Apr 2019 20:00:10 +0300 Message-ID: <87y348h8it.fsf@tarshish> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190417_100014_355467_26EC3B6C X-CRM114-Status: GOOD ( 14.49 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: arm@kernel.org, Russell King , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Arnd, On Wed, Apr 17 2019, Arnd Bergmann wrote: > The digicolor platform has three UARTs, but the Kconfig.debug > file explicitly lists port zero as the one to be used for the > console, while not providing any default values. > > This can get an automated randconfig build stuck in a loop > waiting for the user to input the number. As we already know > the physical address, this patch provides that number as > default, along with a reasonable default value for the virtual > address. > > Cc: Baruch Siach > Signed-off-by: Arnd Bergmann Reviewed-by: Baruch Siach Thanks, baruch > --- > arch/arm/Kconfig.debug | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug > index a8a1e14f20ab..3e33753bd60c 100644 > --- a/arch/arm/Kconfig.debug > +++ b/arch/arm/Kconfig.debug > @@ -1676,6 +1676,7 @@ config DEBUG_UART_PHYS > default 0xe6e68000 if DEBUG_RCAR_GEN2_SCIF1 > default 0xe6ee0000 if DEBUG_RCAR_GEN2_SCIF4 > default 0xe8008000 if DEBUG_R7S72100_SCIF2 > + default 0xf0000000 if DEBUG_DIGICOLOR_UA0 > default 0xf0000be0 if ARCH_EBSA110 > default 0xf1012000 if DEBUG_MVEBU_UART0_ALTERNATE > default 0xf1012100 if DEBUG_MVEBU_UART1_ALTERNATE > @@ -1728,6 +1729,7 @@ config DEBUG_UART_VIRT > default 0xe0010fe0 if ARCH_RPC > default 0xf0000be0 if ARCH_EBSA110 > default 0xf0010000 if DEBUG_ASM9260_UART > + default 0xf0100000 if DEBUG_DIGICOLOR_UA0 > default 0xf01fb000 if DEBUG_NOMADIK_UART > default 0xf0201000 if DEBUG_BCM2835 || DEBUG_BCM2836 > default 0xf1000300 if DEBUG_BCM_5301X -- http://baruch.siach.name/blog/ ~. .~ Tk Open Systems =}------------------------------------------------ooO--U--Ooo------------{= - baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il - _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel