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 Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 26D24C433EF for ; Sun, 29 May 2022 16:58:00 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id C838D843AD; Sun, 29 May 2022 18:57:05 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=konsulko.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id A0F7D8439F; Sun, 29 May 2022 18:56:34 +0200 (CEST) Received: from mail-qk1-f175.google.com (mail-qk1-f175.google.com [209.85.222.175]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 6775484287 for ; Sun, 29 May 2022 18:55:39 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=konsulko.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=tom.rini@gmail.com Received: by mail-qk1-f175.google.com with SMTP id v11so9212086qkf.1 for ; Sun, 29 May 2022 09:55:39 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=B4Fwt9e3Rd8Q/wu4rygAw+Mg1aPu9rKZMeI/VS/bDic=; b=MqjpW2UZUIoNkeS7DlFbeLZ++HEbxy1v1juXJWazhcAA21+CDB2PAslZ3bjreD42gz 6Z/PlsGeHgcsuSVnwuxTbKCPkP/lxvTfJBSOzkZ7OmpKJvs8IK1+tjjk34oFMsB5jfuO /Nby06V88lvSJ/M8iOUWR+7y0rj5CJs8QwTpbKB75xIFoSxDdGmtnvfA+KVt6+EI3+UG ONXlXjpLNGGbCVqKTYUA9kKS9PDUoo5at99aI5NxOjbSWyI3SAMhhZ7tE3vvVv81ngTw 8x/UytXpbzKjZbt8bguLK4BAlRxfHRX0dpJoYkRW5FBjwnWmi7C36xct3YOqQMBspIHW x3/w== X-Gm-Message-State: AOAM533OYpUWJyKWxQTrwyWgXEu9VLW+ZkhZiPZ5rWsHWwgCT9ytiHvs wr4s4e8s/PZv0cy2njJbbDEJPPoqHQ== X-Google-Smtp-Source: ABdhPJxbMY1kxfZYwhDHRasKToTN5fxyVFNPOumbpNS2X54VRtTjy+P6TyMIaHXmFg+m4leZQuY/uQ== X-Received: by 2002:a05:620a:c52:b0:648:d550:5583 with SMTP id u18-20020a05620a0c5200b00648d5505583mr35940369qki.232.1653843337840; Sun, 29 May 2022 09:55:37 -0700 (PDT) Received: from localhost.localdomain (2603-6081-7b00-25fd-0000-0000-0000-1003.res6.spectrum.com. [2603:6081:7b00:25fd::1003]) by smtp.gmail.com with ESMTPSA id o15-20020ac841cf000000b002f90517bc25sm6130409qtm.41.2022.05.29.09.55.37 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 29 May 2022 09:55:37 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Cc: Rick Chen Subject: [PATCH 15/20] ax25-ae350: Move CONFIG_SYS_FDT_BASE to Kconfig Date: Sun, 29 May 2022 12:55:16 -0400 Message-Id: <20220529165521.912054-15-trini@konsulko.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220529165521.912054-1-trini@konsulko.com> References: <20220529165521.912054-1-trini@konsulko.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean The address where the device tree will be passed in to U-Boot at is now moved to the Kconfig file. If this is user configurable, it needs to be exposed rather than hidden, and should probably be renamed as well. Cc: Rick Chen Signed-off-by: Tom Rini --- board/AndesTech/ax25-ae350/Kconfig | 4 ++++ include/configs/ax25-ae350.h | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/board/AndesTech/ax25-ae350/Kconfig b/board/AndesTech/ax25-ae350/Kconfig index e50f505a2ba2..f8cc8e553dbc 100644 --- a/board/AndesTech/ax25-ae350/Kconfig +++ b/board/AndesTech/ax25-ae350/Kconfig @@ -27,6 +27,10 @@ config SPL_TEXT_BASE config SPL_OPENSBI_LOAD_ADDR default 0x01000000 +config SYS_FDT_BASE + hex + default 0x800f0000 if OF_SEPARATE + config BOARD_SPECIFIC_OPTIONS # dummy def_bool y select RISCV_NDS diff --git a/include/configs/ax25-ae350.h b/include/configs/ax25-ae350.h index 7a1b9dbd0801..754e90961940 100644 --- a/include/configs/ax25-ae350.h +++ b/include/configs/ax25-ae350.h @@ -20,9 +20,6 @@ * Miscellaneous configurable options */ -/* DT blob (fdt) address */ -#define CONFIG_SYS_FDT_BASE 0x800f0000 - /* * Physical Memory Map */ -- 2.25.1