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 43B88C433F5 for ; Mon, 2 May 2022 16:29:45 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 0F49A83F05; Mon, 2 May 2022 18:29:43 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="tzlysWbS"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 8AB2583F0A; Mon, 2 May 2022 18:29:40 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 37CA883E4C for ; Mon, 2 May 2022 18:29:38 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id DE320B81909; Mon, 2 May 2022 16:29:37 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6C99FC385A4; Mon, 2 May 2022 16:29:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1651508976; bh=40sn+2pdGtvgxqPqrfK1OoBxVW6SlFcwt0b1ECGsIF4=; h=From:To:Cc:Subject:Date:From; b=tzlysWbSaHip+KDIxuJ6KpwExsFx/2H/jvheTA1bpXdGuWVBrNJhSv5kWNgIekpg2 k6qVlL1LIBDcddQZCB8BqlDVQnPBJyReVYbjn5SKX/qIB6zaaid2bDZ8LKuQWnTywZ LyV2LbFVdR6B9yvNu4yn9EC1DtTCu1CX0F6W/oW0SHzPOVwKhrcXfdD6gh+l9LZejl fPP8U2oYx7NLKUmQguUtItO6/A7J0iXgxW7rkfp/gHvgQb2G+3t6qYE5NZL3MwdJ7Z KCbG+aEUJzdk3o1nnTRyHhtuztjlxcnDKYUjwP2G/xSi9TgIPYr3Ge2Mh+04KaBoTW v6l1VWLZoYnWQ== Received: by pali.im (Postfix) id 9F9EEE79; Mon, 2 May 2022 18:29:33 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Priyanka Jain , Simon Glass Cc: u-boot@lists.denx.de Subject: [PATCH] powerpc: mpc85xx: Set default SYS_IMMR value for P1/P2 CPUs Date: Mon, 2 May 2022 18:29:25 +0200 Message-Id: <20220502162925.10629-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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 reduce usage of per-board custom settings. Signed-off-by: Pali Rohár --- arch/Kconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/Kconfig b/arch/Kconfig index 7ecb375b6b5a..920dadea5dcc 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -369,6 +369,9 @@ config SYS_IMMR default 0xF0000000 if ARCH_MPC8313 default 0xE0000000 if MPC83xx && !ARCH_MPC8313 default 0x01000000 if ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3 + default 0xFFE00000 if ARCH_P1010 || ARCH_P1011 || ARCH_P1020 || \ + ARCH_P1021 || ARCH_P1024 || ARCH_P1025 || \ + ARCH_P2020 default SYS_CCSRBAR_DEFAULT help Address for the Internal Memory-Mapped Registers (IMMR) window used -- 2.20.1