> -----邮件原件----- > 发件人: Lothar Waßmann <l...@karo-electronics.de> > 发送时间: 2025年3月6日 13:42 > 收件人: Alice Guo (OSS) <alice....@oss.nxp.com> > 抄送: Tom Rini <tr...@konsulko.com>; Lukasz Majewski <lu...@denx.de>; > Sean Anderson <sean...@gmail.com>; Simon Glass <s...@chromium.org>; > Stefano Babic <sba...@denx.de>; Fabio Estevam <feste...@gmail.com>; > dl-uboot-imx <uboot-...@nxp.com>; Alper Nebi Yasak > <alpernebiya...@gmail.com>; Alice Guo <alice....@nxp.com>; > ma...@denx.de; u-boot@lists.denx.de; Peng Fan <peng....@nxp.com>; Ye Li > <ye...@nxp.com> > 主题: Re: [PATCH v7 10/19] imx9: scmi: add i.MX95 SoC and clock related code > > [You don't often get email from l...@karo-electronics.de. Learn why this is > important at https://aka.ms/LearnAboutSenderIdentification ] > > Hi, > > On Wed, 05 Mar 2025 21:28:22 +0800 Alice Guo (OSS) wrote: > > From: Peng Fan <peng....@nxp.com> > > > > This patch adds i.MX95 SoC and clock related code. Because they are > > based on SCMI, put them in the scmi subfolder. > > > > Signed-off-by: Ye Li <ye...@nxp.com> > > Signed-off-by: Peng Fan <peng....@nxp.com> > > Signed-off-by: Alice Guo <alice....@nxp.com> > > Reviewed-by: Peng Fan <peng....@nxp.com> > > --- > > arch/arm/include/asm/arch-imx/cpu.h | 2 + > > arch/arm/include/asm/arch-imx9/clock.h | 10 + > > arch/arm/include/asm/arch-imx9/imx-regs.h | 5 + > > arch/arm/include/asm/arch-imx9/sys_proto.h | 1 + > > arch/arm/include/asm/mach-imx/sys_proto.h | 39 ++ > > arch/arm/mach-imx/imx9/scmi/Makefile | 6 + > > arch/arm/mach-imx/imx9/scmi/clock.c | 105 ++++ > > arch/arm/mach-imx/imx9/scmi/clock_scmi.c | 133 +++++ > > arch/arm/mach-imx/imx9/scmi/soc.c | 788 > +++++++++++++++++++++++++++++ > > arch/sandbox/include/asm/scmi_test.h | 2 +- > > 10 files changed, 1090 insertions(+), 1 deletion(-) > > > [...] > > diff --git a/arch/arm/mach-imx/imx9/scmi/clock.c > b/arch/arm/mach-imx/imx9/scmi/clock.c > > new file mode 100644 > > index 0000000000..9ebd380976 > > --- /dev/null > > +++ b/arch/arm/mach-imx/imx9/scmi/clock.c > > @@ -0,0 +1,105 @@ > > +// SPDX-License-Identifier: GPL-2.0+ > > +/* > > + * Copyright 2025 NXP > > + */ > > + > > +#include <asm/arch/clock.h> > > +#include <dm/uclass.h> > > +#include <scmi_agent.h> > > +#include "../../../../../dts/upstream/src/arm64/freescale/imx95-clock.h" > > > "Interesting" include path... > Shouldn't this file be located under dts/upstream/include/dt-bindings/ like > all the > other imx*-clock.h files? > Then the file should be picked up via > #include <dt-bindings/imx95-clock.h>
Hi, imx95-clock.h is not in this directory dts/upstream/include/dt-bindings/. Best Regards, Alice Guo