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 C4D69C433F5 for ; Sun, 29 May 2022 16:56:49 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 922D884395; Sun, 29 May 2022 18:56:33 +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 6115684211; Sun, 29 May 2022 18:55:38 +0200 (CEST) Received: from mail-qv1-f53.google.com (mail-qv1-f53.google.com [209.85.219.53]) (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 91139841AD for ; Sun, 29 May 2022 18:55:33 +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-qv1-f53.google.com with SMTP id j14so8070868qvo.3 for ; Sun, 29 May 2022 09:55:33 -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:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=z7nTleXdIewHl4eWxSIgFtKR6sX7d9SKABgVRpNuJDQ=; b=cTw9oD4ZISCbYa2R7reLQ2Bed1q2xmpxRgBFtRVOw0g440IWcURO/tXZUbPgRMoesM r6VNOpArL3wGKorfWGuf1s9pJwoKBvmEKLLUBafeGoMqSsK4daX+7mFYiqAw82d00QJX U8eUxCBb2MqoUHlRNgS2uH6BFlOMSbpLU4nKV6nDpP10fgQSdBkFghjO5xIhYxF8Banr ZIN/+Htu3gNYxnX1llGW39zpTjHZpr8sQr8rrBawMP+x3u2ElzOxsKR+nkTIkIVf/Njl KmhfDPyp7pjdr++zsBFU8PeXbbcjlNdWOe4lWpIHUSVJidGcYZ/GjiGNJPBq/1SAdwga CyEg== X-Gm-Message-State: AOAM532xNI75i+q0jfREIte5pplBhVYcHBIcKIHWRTuO85WLzBEzgdQ7 D/pasFtAGldJxS6RY9ROHjdWmUu+jQ== X-Google-Smtp-Source: ABdhPJyNiDkpYYia3l1/Yq0dqK5xybPu38cdB2OQJvmHUR8M7X0i0USkdw8LXtWCyUHVSu3d16smSQ== X-Received: by 2002:ad4:5ca5:0:b0:464:5031:8876 with SMTP id q5-20020ad45ca5000000b0046450318876mr1267427qvh.91.1653843332201; Sun, 29 May 2022 09:55:32 -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.31 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 29 May 2022 09:55:31 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Subject: [PATCH 08/20] Remove CONFIG_SYS_SPL_LEN largely Date: Sun, 29 May 2022 12:55:09 -0400 Message-Id: <20220529165521.912054-8-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 This is mostly unused. In the case where it is currently used, it means the same as CONFIG_SPL_PAD_TO, which is already set for the platform. Signed-off-by: Tom Rini --- include/configs/corvus.h | 2 -- include/configs/gardena-smart-gateway-at91sam.h | 2 -- include/configs/imxrt1020-evk.h | 1 - include/configs/imxrt1050-evk.h | 1 - include/configs/smartweb.h | 2 -- include/configs/stm32f746-disco.h | 3 +-- include/configs/taurus.h | 2 -- 7 files changed, 1 insertion(+), 12 deletions(-) diff --git a/include/configs/corvus.h b/include/configs/corvus.h index 864a79346b7c..698da6b6dac8 100644 --- a/include/configs/corvus.h +++ b/include/configs/corvus.h @@ -71,6 +71,4 @@ #define CONFIG_SYS_MCKR 0x1301 #define CONFIG_SYS_MCKR_CSS 0x1302 -#define CONFIG_SYS_SPL_LEN CONFIG_SPL_PAD_TO - #endif diff --git a/include/configs/gardena-smart-gateway-at91sam.h b/include/configs/gardena-smart-gateway-at91sam.h index c6a84a79e67a..331e9ca8ba19 100644 --- a/include/configs/gardena-smart-gateway-at91sam.h +++ b/include/configs/gardena-smart-gateway-at91sam.h @@ -45,6 +45,4 @@ #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_NAND_U_BOOT_DST CONFIG_SYS_TEXT_BASE -#define CONFIG_SYS_SPL_LEN CONFIG_SPL_PAD_TO - #endif diff --git a/include/configs/imxrt1020-evk.h b/include/configs/imxrt1020-evk.h index ac046b82aa9e..a2c004880a7e 100644 --- a/include/configs/imxrt1020-evk.h +++ b/include/configs/imxrt1020-evk.h @@ -22,7 +22,6 @@ * Configuration of the external SDRAM memory */ -#define CONFIG_SYS_SPL_LEN 0x00008000 #define CONFIG_SYS_UBOOT_START 0x800023FD #endif /* __IMXRT1020_EVK_H */ diff --git a/include/configs/imxrt1050-evk.h b/include/configs/imxrt1050-evk.h index 30b2f5d1efee..e36718dc825b 100644 --- a/include/configs/imxrt1050-evk.h +++ b/include/configs/imxrt1050-evk.h @@ -29,7 +29,6 @@ * Configuration of the external SDRAM memory */ -#define CONFIG_SYS_SPL_LEN 0x00008000 #define CONFIG_SYS_UBOOT_START 0x800023FD #endif /* __IMXRT1050_EVK_H */ diff --git a/include/configs/smartweb.h b/include/configs/smartweb.h index 8667052d3577..cde6abc62611 100644 --- a/include/configs/smartweb.h +++ b/include/configs/smartweb.h @@ -133,6 +133,4 @@ #define CONFIG_SYS_MCKR_CSS (0x02 | CONFIG_SYS_MCKR) #define CONFIG_SYS_AT91_PLLB 0x10483f0e -#define CONFIG_SYS_SPL_LEN CONFIG_SPL_PAD_TO - #endif /* __CONFIG_H */ diff --git a/include/configs/stm32f746-disco.h b/include/configs/stm32f746-disco.h index ac54c5021788..80db425bb7ce 100644 --- a/include/configs/stm32f746-disco.h +++ b/include/configs/stm32f746-disco.h @@ -39,10 +39,9 @@ BOOTENV #define CONFIG_SYS_MONITOR_LEN (512 * 1024) -#define CONFIG_SYS_SPL_LEN 0x00008000 #define CONFIG_SYS_UBOOT_START 0x080083FD #define CONFIG_SYS_UBOOT_BASE (CONFIG_SYS_FLASH_BASE + \ - CONFIG_SYS_SPL_LEN) + CONFIG_SPL_PAD_TO) /* DT blob (fdt) address */ #define CONFIG_SYS_FDT_BASE (CONFIG_SYS_FLASH_BASE + \ diff --git a/include/configs/taurus.h b/include/configs/taurus.h index 2f5a4fd8f4d6..b9285e8cabad 100644 --- a/include/configs/taurus.h +++ b/include/configs/taurus.h @@ -162,6 +162,4 @@ #define CONFIG_SYS_MCKR_CSS (0x02 | CONFIG_SYS_MCKR) #define CONFIG_SYS_AT91_PLLB 0x10193F05 -#define CONFIG_SYS_SPL_LEN CONFIG_SPL_PAD_TO - #endif -- 2.25.1