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 5B5B0C35FFC for ; Sat, 22 Mar 2025 23:31:52 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 902C981D25; Sun, 23 Mar 2025 00:31:24 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=reject dis=none) header.from=mailbox.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; secure) header.d=mailbox.org header.i=@mailbox.org header.b="YfVxIIx/"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id CBA0681D5A; Sun, 23 Mar 2025 00:31:22 +0100 (CET) Received: from mout-p-103.mailbox.org (mout-p-103.mailbox.org [IPv6:2001:67c:2050:0:465::103]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 989CB81DAB for ; Sun, 23 Mar 2025 00:31:20 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=reject dis=none) header.from=mailbox.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=marek.vasut@mailbox.org Received: from smtp102.mailbox.org (smtp102.mailbox.org [IPv6:2001:67c:2050:b231:465::102]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-103.mailbox.org (Postfix) with ESMTPS id 4ZKwYf41hfz9skV; Sun, 23 Mar 2025 00:31:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mailbox.org; s=mail20150812; t=1742686278; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=X/7SD/K2t+93ebA6fLxTEa1ZgqRP+tEKZUOZVl6Znp0=; b=YfVxIIx/0gucFQFzvGz0YmvQo08H4PHSNsM0ORj4gcfwAqp1wDA9KjeY15Hl4Wsm+uZmq+ bDlKe+tndtH5TjV60SBZBjSl+VXxnvKeqU+xUeqGGa86GUN/0Y7qD/miPDsoecoyW+m+YZ 5KhIGioIiXFB7t5YWw6g76gUavb7pWMirxJESL8wN6b6ecgY0YKV/lNRcpFjnhJPjvcOzW 5J2RqdxuVQz45DjxC12FZ9T/aWasCkYqAIrcHh5bXaoKGtRD5Iz00dDlKofJqBYxbkN3CN i32KEgjt0H/Su44VqdIrqwVe5RaJgVZI9s61TZ4mUZ1xnN3wExCTwupVXF1quQ== Message-ID: Date: Sun, 23 Mar 2025 00:30:48 +0100 MIME-Version: 1.0 Subject: Re: [PATCH V3 5/6] imx: imx8: Imply CPU_IMX by default To: Adam Ford , u-boot@lists.denx.de Cc: aford@beaconembedded.com, festevam@gmail.com, Stefano Babic , "NXP i.MX U-Boot Team" , Tom Rini , Enrico Leto , Heiko Schocher , Peng Fan , Yannic Moog , Gilles Talis , Patrick Barsanti , Ye Li , Christoph Stoidner , Wadim Egorov , Hou Zhiqiang , Michael Trimarchi References: <20250322183812.784676-1-aford173@gmail.com> <20250322183812.784676-6-aford173@gmail.com> Content-Language: en-US From: Marek Vasut In-Reply-To: <20250322183812.784676-6-aford173@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-MBO-RS-ID: ff29c0f4783f9ea919d X-MBO-RS-META: em9ka3yderr8d1hh6wtqd9s8wiypcfsc 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.8 at phobos.denx.de X-Virus-Status: Clean On 3/22/25 7:38 PM, Adam Ford wrote: > The imx8_cpu driver is a CPU Driver that supports the i.MX8Q > family. When it is enabled, it acts as an alternative to > arch/arm/mach-imx/cpu.c, but the imx8_cpu supports the driver > model where cpu.c does not. Imply this newer driver by default. > > Signed-off-by: Adam Ford > --- > arch/arm/mach-imx/imx8/Kconfig | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/arm/mach-imx/imx8/Kconfig b/arch/arm/mach-imx/imx8/Kconfig > index 9a43beda6fa..257c14e61b6 100644 > --- a/arch/arm/mach-imx/imx8/Kconfig > +++ b/arch/arm/mach-imx/imx8/Kconfig > @@ -9,6 +9,8 @@ config AHAB_BOOT > config IMX8 > bool > select HAS_CAAM > + imply CPU > + imply CPU_IMX Shouldn't CPU_IMX select CPU ?