All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: Marek Vasut <marex@denx.de>
Cc: Tim Harvey <tharvey@gateworks.com>,
	Alice Guo <alice.guo@oss.nxp.com>, Stefano Babic <sbabic@denx.de>,
	Fabio Estevam <festevam@gmail.com>,
	"NXP i.MX U-Boot Team" <uboot-imx@nxp.com>,
	Lukasz Majewski <lukma@denx.de>,
	Sean Anderson <seanga2@gmail.com>, Simon Glass <sjg@chromium.org>,
	Alper Nebi Yasak <alpernebiyasak@gmail.com>,
	u-boot@lists.denx.de, Alice Guo <alice.guo@nxp.com>,
	Ye Li <ye.li@nxp.com>, Peng Fan <peng.fan@nxp.com>
Subject: Re: [PATCH v4 20/20] imx95_evk: add i.MX95 19x19 EVK board basic support
Date: Thu, 16 Jan 2025 14:05:00 -0600	[thread overview]
Message-ID: <20250116200500.GL3476@bill-the-cat> (raw)
In-Reply-To: <788bf415-6110-4811-8a91-1949ad42252b@denx.de>

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

On Thu, Jan 16, 2025 at 09:03:35PM +0100, Marek Vasut wrote:
> On 1/16/25 8:42 PM, Tim Harvey wrote:
> > On Thu, Jan 16, 2025 at 11:38 AM Tim Harvey <tharvey@gateworks.com> wrote:
> > > 
> > > On Wed, Jan 15, 2025 at 5:30 AM Alice Guo <alice.guo@oss.nxp.com> wrote:
> > > > 
> > > > From: Ye Li <ye.li@nxp.com>
> > > > 
> > > > This patch adds i.MX95 19x19 EVK board basic support.
> > > > 
> > > > Messaging unit for EdgeLock Secure Enclave, messaging unit for System
> > > > Manager, uSDHC for SD Card, gpio, lpuart are supported now.
> > > > 
> > > > Signed-off-by: Ye Li <ye.li@nxp.com>
> > > > Signed-off-by: Alice Guo <alice.guo@nxp.com>
> > > > Reviewed-by: Peng Fan <peng.fan@nxp.com>
> > > > ---
> > > <snip...>
> > > > diff --git a/board/freescale/imx95_evk/imx95_evk.c b/board/freescale/imx95_evk/imx95_evk.c
> > > > new file mode 100644
> > > > index 0000000000000000000000000000000000000000..1ed15ca47b157067a7376b0b32101dc7f9899f4f
> > > > --- /dev/null
> > > > +++ b/board/freescale/imx95_evk/imx95_evk.c
> > > > @@ -0,0 +1,54 @@
> > > > +// SPDX-License-Identifier: GPL-2.0+
> > > > +/*
> > > > + * Copyright 2025 NXP
> > > > + */
> > > > +
> > > > +#include <env.h>
> > > > +#include <init.h>
> > > > +#include <asm/global_data.h>
> > > > +#include <asm/arch-imx9/ccm_regs.h>
> > > > +#include <asm/arch/clock.h>
> > > > +#include <fdt_support.h>
> > > > +#include <asm/io.h>
> > > > +#include <linux/bitfield.h>
> > > > +#include <linux/bitops.h>
> > > > +#include <linux/delay.h>
> > > > +#include <miiphy.h>
> > > > +#include <netdev.h>
> > > > +#include <asm/gpio.h>
> > > > +#include <asm/mach-imx/sys_proto.h>
> > > > +#include <scmi_agent.h>
> > > > +#include <scmi_protocols.h>
> > > > +#include "../../../dts/upstream/src/arm64/freescale/imx95-clock.h"
> > > > +#include "../../../dts/upstream/src/arm64/freescale/imx95-power.h"
> > > 
> > > Hi Alice,
> > > 
> > > Most of the above are not needed (and should be alphabetized anyway)
> > > 
> > > The only ones needed are:
> > > #include <asm/arch/clock.h>
> > > #include <asm/gpio.h>
> > > #include <asm/mach-imx/sys_proto.h>
> > > 
> > > > +
> > > > +DECLARE_GLOBAL_DATA_PTR;
> > > 
> > > not needed as you don't use gd
> > > 
> > > Best Regards,
> > > 
> > > Tim
> > 
> > Hi Alic,
> > 
> > One more thing to do for next series. Refresh your
> > imx95_19x19_evk_defconfig as its very out of sync:
> > 
> > make imx95_19x19_evk_defconfig
> > make savedefconfig
> > cp defconfig configs/imx95_19x19_evk_defconfig
> And please enable CONFIG_FIT and CONFIG_FIT_VERBOSE .

Which should already be there if using bootstd to boot and not distro
boot scripts, another thing that should be done now and not later.

-- 
Tom

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

  reply	other threads:[~2025-01-16 20:05 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-15 13:28 [PATCH v4 00/20] imx: add i.MX95 support Alice Guo
2025-01-15 13:28 ` [PATCH v4 01/20] mailbox: add i.MX95 Messaging Unit (MU) driver Alice Guo
2025-01-24 10:58   ` Marek Vasut
2025-01-15 13:28 ` [PATCH v4 02/20] firmware: scmi: smt: Interrupt communication enable Alice Guo
2025-01-24 11:06   ` Marek Vasut
2025-01-15 13:28 ` [PATCH v4 03/20] pinctrl: nxp: add a pin controller driver based on SCMI pin control protocol Alice Guo
2025-01-24 14:58   ` Marek Vasut
2025-01-15 13:28 ` [PATCH v4 04/20] firmware: scmi: add pin control protocol support to SCMI agent Alice Guo
2025-01-24 13:55   ` Marek Vasut
2025-02-18 11:53     ` 回复: " Alice Guo (OSS)
2025-02-20 22:34       ` Marek Vasut
2025-02-21  1:47         ` 回复: " Alice Guo (OSS)
2025-02-21 17:55           ` Marek Vasut
2025-02-24  2:45             ` Peng Fan
2025-02-28 18:58               ` Marek Vasut
2025-03-03  8:04                 ` 回复: " Alice Guo (OSS)
2025-03-03 20:52                   ` Marek Vasut
2025-03-05 13:36                     ` 回复: " Alice Guo (OSS)
2025-03-10  0:09                       ` Marek Vasut
2025-03-20  2:28                         ` 回复: " Alice Guo (OSS)
2025-03-20  4:03                           ` Marek Vasut
2025-03-21  7:29                             ` 回复: " Alice Guo (OSS)
2025-01-15 13:28 ` [PATCH v4 05/20] scmi_protocols: add SCMI misc protocol protocol_id and message_id for getting the ROM passover data Alice Guo
2025-01-24 13:57   ` Marek Vasut
2025-02-21  9:39     ` 回复: [EXT] " Alice Guo (OSS)
2025-02-21 17:53       ` Marek Vasut
2025-01-15 13:28 ` [PATCH v4 06/20] scmi_protocols: add SCMI Performance domain management protocol message IDs Alice Guo
2025-01-15 13:28 ` [PATCH v4 07/20] clk: scmi: add the command CLOCK_PARENT_SET Alice Guo
2025-01-15 13:28 ` [PATCH v4 08/20] clk: scmi: check the clock state/parent/rate control permissions Alice Guo
2025-01-24 14:14   ` Marek Vasut
2025-01-15 13:28 ` [PATCH v4 09/20] sandbox: add SCMI clock control permissions to sandbox Alice Guo
2025-01-15 13:28 ` [PATCH v4 10/20] scmi_protocols: update struct scmi_base_discover_list_protocols_out Alice Guo
2025-01-24 14:38   ` Marek Vasut
2025-03-03 10:37     ` 回复: [EXT] " Alice Guo (OSS)
2025-03-03 20:18       ` Marek Vasut
2025-03-04  9:04         ` 回复: " Alice Guo (OSS)
2025-03-10  0:08           ` Marek Vasut
2025-01-15 13:28 ` [PATCH v4 11/20] scmi: add the macro SCMI_MSG Alice Guo
2025-01-24 14:40   ` Marek Vasut
2025-01-15 13:28 ` [PATCH v4 12/20] imx9: scmi: add i.MX95 SoC and clock related code Alice Guo
2025-01-24 15:07   ` Marek Vasut
2025-01-15 13:29 ` [PATCH v4 13/20] spl: imx: use trampoline buffer to load images to secure region Alice Guo
2025-01-24 14:42   ` Marek Vasut
2025-01-15 13:29 ` [PATCH v4 14/20] imx9: add i.MX95 Kconfig and Makefile Alice Guo
2025-01-24 14:43   ` Marek Vasut
2025-01-15 13:29 ` [PATCH v4 15/20] imx: Kconfig: IMX8_ROMAPI is not configured for i.MX95 Alice Guo
2025-01-24 14:44   ` Marek Vasut
2025-01-15 13:29 ` [PATCH v4 16/20] binman: add a new entry type for packing DDR PHY firmware images Alice Guo
2025-01-15 13:29 ` [PATCH v4 17/20] tools: imx8image: add i.MX95 support Alice Guo
2025-01-24 15:00   ` Marek Vasut
2025-01-15 13:29 ` [PATCH v4 18/20] imx: add V2X container support on i.MX95 Alice Guo
2025-01-15 13:29 ` [PATCH v4 19/20] doc: imx: add document for i.MX95 Image Container Format Alice Guo
2025-01-15 13:29 ` [PATCH v4 20/20] imx95_evk: add i.MX95 19x19 EVK board basic support Alice Guo
2025-01-16 19:38   ` Tim Harvey
2025-01-16 19:42     ` Tim Harvey
2025-01-16 20:03       ` Marek Vasut
2025-01-16 20:05         ` Tom Rini [this message]
2025-01-16 22:47       ` Tim Harvey
2025-01-17  1:57         ` 回复: [EXT] " Alice Guo (OSS)
2025-01-24 15:14   ` 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=20250116200500.GL3476@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=alice.guo@nxp.com \
    --cc=alice.guo@oss.nxp.com \
    --cc=alpernebiyasak@gmail.com \
    --cc=festevam@gmail.com \
    --cc=lukma@denx.de \
    --cc=marex@denx.de \
    --cc=peng.fan@nxp.com \
    --cc=sbabic@denx.de \
    --cc=seanga2@gmail.com \
    --cc=sjg@chromium.org \
    --cc=tharvey@gateworks.com \
    --cc=u-boot@lists.denx.de \
    --cc=uboot-imx@nxp.com \
    --cc=ye.li@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.