public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: Alice Guo <alice.guo@oss.nxp.com>
Cc: Lukasz Majewski <lukma@denx.de>,
	Sean Anderson <seanga2@gmail.com>, Stefano Babic <sbabic@denx.de>,
	Fabio Estevam <festevam@gmail.com>, Marek Vasut <marex@denx.de>,
	"NXP i.MX U-Boot Team" <uboot-imx@nxp.com>,
	u-boot@lists.denx.de, Alice Guo <alice.guo@nxp.com>
Subject: Re: [PATCH 13/17] imx: Kconfig: IMX8_ROMAPI is not configured for i.MX95
Date: Wed, 16 Oct 2024 12:20:35 -0600	[thread overview]
Message-ID: <20241016182035.GE4959@bill-the-cat> (raw)
In-Reply-To: <20241016-imx95-v1-13-f640c8f3bc1b@oss.nxp.com>

[-- Attachment #1: Type: text/plain, Size: 1243 bytes --]

On Wed, Oct 16, 2024 at 03:18:06PM +0800, Alice Guo wrote:
> From: Alice Guo <alice.guo@nxp.com>
> 
> i.MX95 only supports low power boot, which means A55 is kicked by M33.
> There is no ROM runs on A55 in such case so that deselect IMX8_ROMAPI
> for i.MX95.
> 
> Signed-off-by: Alice Guo <alice.guo@nxp.com>
> ---
>  arch/arm/mach-imx/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig
> index 134e42028c3787d78e28af03d40c41a8b2b1981b..56577b9ade349740b6d98ab933797d7072985de0 100644
> --- a/arch/arm/mach-imx/Kconfig
> +++ b/arch/arm/mach-imx/Kconfig
> @@ -179,7 +179,7 @@ config DDRMC_VF610_CALIBRATION
>  	  the ddrmc_cr_setting on relevant board file.
>  
>  config IMX8_ROMAPI
> -	def_bool y
> +	def_bool y if (!IMX95)
>  	depends on IMX8MN || IMX8MP || IMX8ULP || IMX9
>  
>  config SPL_IMX_ROMAPI_LOADADDR

If we're going to add parens here, it should be:
depends on IMX8MN || IMX8MP || IMX8ULP || (IMX9 && !IMX95)

And if down the line there's more IMX9 exclusions, the i.MX9 family that
does use this needs it own symbol so it can be here just like how all of
the i.MX8 families are spelled out, thanks.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

  reply	other threads:[~2024-10-16 18:20 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-16  7:17 [PATCH 00/17] (no cover subject) Alice Guo
2024-10-16  7:17 ` [PATCH 01/17] mailbox: add i.MX95 Messaging Unit (MU) driver Alice Guo
2024-10-16 18:06   ` Tom Rini
2024-10-16  7:17 ` [PATCH 02/17] firmware: scmi: smt: Interrupt communication enable Alice Guo
2024-10-16  7:17 ` [PATCH 03/17] pinctrl: nxp: add SCMI pin control protocol driver Alice Guo
2024-10-16  7:17 ` [PATCH 04/17] scmi_protocols: add SCMI misc protocol protocol_id and message_id for getting the ROM passover data Alice Guo
2024-10-16  7:17 ` [PATCH 05/17] scmi_protocols: add SCMI Performance domain management protocol message IDs Alice Guo
2024-10-16  7:17 ` [PATCH 06/17] clk: scmi: add the command CLOCK_PARENT_SET Alice Guo
2024-10-16  7:18 ` [PATCH 07/17] clk: scmi: check the clock state/parent/rate control permissions Alice Guo
2024-10-16  7:18 ` [PATCH 08/17] scmi_protocols: update struct scmi_base_discover_list_protocols_out Alice Guo
2024-10-16 18:07   ` Tom Rini
2024-10-31  9:57     ` 回复: [EXT] " Alice Guo (OSS)
2024-10-31 16:56       ` Tom Rini
2024-10-16  7:18 ` [PATCH 09/17] imx9: scmi: add i.MX95 SoC and clock related code Alice Guo
2024-10-16  7:18 ` [PATCH 10/17] imx9: add i.MX95 Kconfig and Makefile Alice Guo
2024-10-16  7:18 ` [PATCH 11/17] imx9: scmi: soc: Override h_spl_load_read with trampoline buffer Alice Guo
2024-10-16  7:18 ` [PATCH 12/17] scmi: add the macro SCMI_MSG Alice Guo
2024-10-16  7:18 ` [PATCH 13/17] imx: Kconfig: IMX8_ROMAPI is not configured for i.MX95 Alice Guo
2024-10-16 18:20   ` Tom Rini [this message]
2024-10-16  7:18 ` [PATCH 14/17] imx95_evk: add i.MX95 19x19 EVK board basic support Alice Guo
2024-10-16 11:36   ` Fabio Estevam
2024-10-16 17:47     ` Tom Rini
2024-11-01  9:43     ` 回复: [EXT] " Alice Guo (OSS)
2024-11-01 13:36       ` Fabio Estevam
2024-11-01 13:58       ` 回复: " Tom Rini
2024-10-16  7:18 ` [PATCH 15/17] imx: add V2X container support on i.MX95 Alice Guo
2024-10-16  7:18 ` [PATCH 16/17] imx: Support loading container image from RAM device Alice Guo
2024-10-16  7:18 ` [PATCH 17/17] imx: Fix ROMAPI driver to load container image Alice Guo
2024-11-04 11:17 ` [PATCH 00/17] (no cover subject) Marek Vasut
2024-11-04 12:20   ` Peng Fan
2024-11-04 12:30     ` Marek Vasut
2024-11-04 12:39       ` Peng Fan
2024-11-04 15:39         ` Marek Vasut

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241016182035.GE4959@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=alice.guo@nxp.com \
    --cc=alice.guo@oss.nxp.com \
    --cc=festevam@gmail.com \
    --cc=lukma@denx.de \
    --cc=marex@denx.de \
    --cc=sbabic@denx.de \
    --cc=seanga2@gmail.com \
    --cc=u-boot@lists.denx.de \
    --cc=uboot-imx@nxp.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox