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 90B6CC35FFC for ; Sat, 22 Mar 2025 23:31:25 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A23E881C64; Sun, 23 Mar 2025 00:31:16 +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="Fl8nUcHT"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 5830881BC0; Sun, 23 Mar 2025 00:31:16 +0100 (CET) Received: from mout-p-101.mailbox.org (mout-p-101.mailbox.org [80.241.56.151]) (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 6999380C93 for ; Sun, 23 Mar 2025 00:31:14 +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 [10.196.197.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-101.mailbox.org (Postfix) with ESMTPS id 4ZKwYX2Zlwz9sbr; Sun, 23 Mar 2025 00:31:12 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mailbox.org; s=mail20150812; t=1742686272; 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=je8m8CM0E4nWg06RkdQnuR09SQvQfZ2goVbZaVG1G4o=; b=Fl8nUcHToVBg2IZRmw4hjkCz1pgy1eNqI7ud9rNLb0Moxig/rrszVf6MvcDixpnqn5V3n+ PORb+3tYXV0Xpc4O6BB/IQf3wlzLG3yb1cqYgGS+eS8/xUXacyUSYUYQuLtFUKFm6SN0MJ Gmh7XvYInUOhGlwJaUcCdqE2bqAjurTMMH4IoIj3yR/pRZtyvj2X5zlGv/ljl8+SOxhU1Q giJTqNfCkBocE0C10EK6H18rHiDQ5HAYqTJnB8iyfzFeb5USXsannC5UzUwgyfH1fjhvb9 jsDSNIEZ1sPaKeWuJKHL96sHBtWolxUiv/UJxzi445kmTwQ5WEOD+kSv/oSIMw== Message-ID: Date: Sun, 23 Mar 2025 00:29:40 +0100 MIME-Version: 1.0 Subject: Re: [PATCH V3 2/6] imx: imx8m: Imply IMX_TMU 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 , Heiko Schocher , Enrico Leto , Peng Fan , Yannic Moog , Gilles Talis , Marcel Ziswiler , Ye Li , Wadim Egorov , Christoph Stoidner , Hou Zhiqiang , Michael Trimarchi References: <20250322183812.784676-1-aford173@gmail.com> <20250322183812.784676-3-aford173@gmail.com> Content-Language: en-US From: Marek Vasut In-Reply-To: <20250322183812.784676-3-aford173@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-MBO-RS-META: ojx9d56jzhc6uboncwk6c6ftqi3599bn X-MBO-RS-ID: 2828e809cf27c6753d8 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: > If the CPU Information is displayed from imx8_cpu, it displays the > cpu temperature grade and operating temperature if CONFIG_IMX9 is > defined. This behavior is similar to what happens mach-imx/cpu.c, > except that the latter checks for IMX_THERMAL or IMX_TMU. > > In preparation to make imx8_cpu act like the previous implementation > for any CPU, make IMX8M imply IMX_TMU so it will be always displayed > unless a user decides to disable it. > > Signed-off-by: Adam Ford Reviewed-by: Marek Vasut