From: Mario Limonciello <superm1@kernel.org>
To: Lizhi Hou <lizhi.hou@amd.com>,
ogabbay@kernel.org, quic_jhugo@quicinc.com,
dri-devel@lists.freedesktop.org,
maciej.falkowski@linux.intel.com
Cc: David Zhang <yidong.zhang@amd.com>,
linux-kernel@vger.kernel.org, max.zhen@amd.com,
sonal.santan@amd.com, Hayden Laccabue <Hayden.Laccabue@amd.com>
Subject: Re: [PATCH V1 6/6] accel/amdxdna: Add AIE4 power on and off support
Date: Tue, 31 Mar 2026 11:32:20 -0500 [thread overview]
Message-ID: <44436b18-99f1-4eb3-8402-dfd553494a57@kernel.org> (raw)
In-Reply-To: <20260330163705.3153647-7-lizhi.hou@amd.com>
On 3/30/26 11:37, Lizhi Hou wrote:
> From: David Zhang <yidong.zhang@amd.com>
>
> Implement AIE4 power on and off control using the common SMU interfaces.
>
> Co-developed-by: Hayden Laccabue <Hayden.Laccabue@amd.com>
> Signed-off-by: Hayden Laccabue <Hayden.Laccabue@amd.com>
> Signed-off-by: David Zhang <yidong.zhang@amd.com>
> Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
Reviewed-by: Mario Limonciello (AMD) <superm1@kernel.org>
> ---
> drivers/accel/amdxdna/aie4_pci.c | 28 +++++++++++++++++++++++++++-
> drivers/accel/amdxdna/aie4_pci.h | 1 +
> drivers/accel/amdxdna/npu3_regs.c | 17 ++++++++++++++++-
> 3 files changed, 44 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/accel/amdxdna/aie4_pci.c b/drivers/accel/amdxdna/aie4_pci.c
> index e7993b315996..2249b2c9398d 100644
> --- a/drivers/accel/amdxdna/aie4_pci.c
> +++ b/drivers/accel/amdxdna/aie4_pci.c
> @@ -212,11 +212,26 @@ static int aie4_mailbox_init(struct amdxdna_dev *xdna)
> static void aie4_fw_unload(struct amdxdna_dev_hdl *ndev)
> {
> aie_psp_stop(ndev->aie.psp_hdl);
> + aie_smu_fini(ndev->aie.smu_hdl);
> }
>
> static int aie4_fw_load(struct amdxdna_dev_hdl *ndev)
> {
> - return aie_psp_start(ndev->aie.psp_hdl);
> + int ret;
> +
> + ret = aie_smu_init(ndev->aie.smu_hdl);
> + if (ret) {
> + XDNA_ERR(ndev->aie.xdna, "failed to init smu, ret %d", ret);
> + return ret;
> + }
> +
> + ret = aie_psp_start(ndev->aie.psp_hdl);
> + if (ret) {
> + XDNA_ERR(ndev->aie.xdna, "failed to start psp, ret %d", ret);
> + aie_smu_fini(ndev->aie.smu_hdl);
> + }
> +
> + return ret;
> }
>
> static int aie4_hw_start(struct amdxdna_dev *xdna)
> @@ -331,6 +346,7 @@ static int aie4_prepare_firmware(struct amdxdna_dev_hdl *ndev,
> {
> struct amdxdna_dev *xdna = ndev->aie.xdna;
> struct psp_config psp_conf;
> + struct smu_config smu_conf;
> int i;
>
> psp_conf.fw_size = npufw->size;
> @@ -347,6 +363,14 @@ static int aie4_prepare_firmware(struct amdxdna_dev_hdl *ndev,
> return -ENOMEM;
> }
>
> + for (i = 0; i < SMU_MAX_REGS; i++)
> + smu_conf.smu_regs[i] = tbl[SMU_REG_BAR(ndev, i)] + SMU_REG_OFF(ndev, i);
> + ndev->aie.smu_hdl = aiem_smu_create(&xdna->ddev, &smu_conf);
> + if (!ndev->aie.smu_hdl) {
> + XDNA_ERR(xdna, "failed to create smu");
> + return -ENOMEM;
> + }
> +
> return 0;
> }
>
> @@ -374,6 +398,8 @@ static int aie4_pcidev_init(struct amdxdna_dev_hdl *ndev)
>
> for (i = 0; i < PSP_MAX_REGS; i++)
> set_bit(PSP_REG_BAR(ndev, i), &bars);
> + for (i = 0; i < SMU_MAX_REGS; i++)
> + set_bit(SMU_REG_BAR(ndev, i), &bars);
> set_bit(xdna->dev_info->mbox_bar, &bars);
> set_bit(xdna->dev_info->sram_bar, &bars);
>
> diff --git a/drivers/accel/amdxdna/aie4_pci.h b/drivers/accel/amdxdna/aie4_pci.h
> index ee388ccf7196..aa1495c3370b 100644
> --- a/drivers/accel/amdxdna/aie4_pci.h
> +++ b/drivers/accel/amdxdna/aie4_pci.h
> @@ -21,6 +21,7 @@ struct amdxdna_dev_priv {
> u64 mbox_info_off;
>
> struct aie_bar_off_pair psp_regs_off[PSP_MAX_REGS];
> + struct aie_bar_off_pair smu_regs_off[SMU_MAX_REGS];
> };
>
> struct amdxdna_dev_hdl {
> diff --git a/drivers/accel/amdxdna/npu3_regs.c b/drivers/accel/amdxdna/npu3_regs.c
> index fb2bd60b8f00..5a0bbc916094 100644
> --- a/drivers/accel/amdxdna/npu3_regs.c
> +++ b/drivers/accel/amdxdna/npu3_regs.c
> @@ -17,15 +17,23 @@
> /* PCIe BAR Index for NPU3 */
> #define NPU3_REG_BAR_INDEX 0
> #define NPU3_PSP_BAR_INDEX 4
> +#define NPU3_SMU_BAR_INDEX 5
>
> #define MMNPU_APERTURE3_BASE 0x3810000
> +#define MMNPU_APERTURE4_BASE 0x3B10000
> +
> #define NPU3_PSP_BAR_BASE MMNPU_APERTURE3_BASE
> +#define NPU3_SMU_BAR_BASE MMNPU_APERTURE4_BASE
>
> #define MPASP_C2PMSG_123_ALT_1 0x3810AEC
> #define MPASP_C2PMSG_156_ALT_1 0x3810B70
> #define MPASP_C2PMSG_157_ALT_1 0x3810B74
> #define MPASP_C2PMSG_73_ALT_1 0x3810A24
>
> +#define MP1_C2PMSG_59_ALT_1 0x3B109EC
> +#define MP1_C2PMSG_61_ALT_1 0x3B109F4
> +#define MP1_C2PMSG_60_ALT_1 0x3B109F0
> +
> static const struct amdxdna_fw_feature_tbl npu3_fw_feature_table[] = {
> { .major = 5, .min_minor = 10 },
> { 0 }
> @@ -47,13 +55,20 @@ static const struct amdxdna_dev_priv npu3_dev_priv = {
> DEFINE_BAR_OFFSET(PSP_RESP_REG, NPU3_PSP, MPASP_C2PMSG_156_ALT_1),
> /* npu3 doesn't use 8th pwaitmode register */
> },
> -
> + .smu_regs_off = {
> + DEFINE_BAR_OFFSET(SMU_CMD_REG, NPU3_SMU, MP1_C2PMSG_59_ALT_1),
> + DEFINE_BAR_OFFSET(SMU_ARG_REG, NPU3_SMU, MP1_C2PMSG_61_ALT_1),
> + DEFINE_BAR_OFFSET(SMU_INTR_REG, NPU3_SMU, MMNPU_APERTURE4_BASE),
> + DEFINE_BAR_OFFSET(SMU_RESP_REG, NPU3_SMU, MP1_C2PMSG_60_ALT_1),
> + DEFINE_BAR_OFFSET(SMU_OUT_REG, NPU3_SMU, MP1_C2PMSG_61_ALT_1),
> + },
> };
>
> const struct amdxdna_dev_info dev_npu3_pf_info = {
> .mbox_bar = NPU3_MBOX_BAR,
> .sram_bar = NPU3_MBOX_BUFFER_BAR,
> .psp_bar = NPU3_PSP_BAR_INDEX,
> + .smu_bar = NPU3_SMU_BAR_INDEX,
> .vbnv = "RyzenAI-npu3-pf",
> .device_type = AMDXDNA_DEV_TYPE_PF,
> .dev_priv = &npu3_dev_priv,
prev parent reply other threads:[~2026-03-31 16:32 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-30 16:36 [PATCH V1 0/6] accel/amdxdna: Initial support for AIE4 platform Lizhi Hou
2026-03-30 16:37 ` [PATCH V1 1/6] accel/amdxdna: Create shared functions for AIE2 and AIE4 Lizhi Hou
2026-03-31 16:30 ` Mario Limonciello
2026-04-01 17:57 ` Lizhi Hou
2026-03-30 16:37 ` [PATCH V1 2/6] accel/amdxdna: Add basic support for AIE4 devices Lizhi Hou
2026-03-31 16:31 ` Mario Limonciello
2026-03-30 16:37 ` [PATCH V1 3/6] accel/amdxdna: Create common PSP interfaces for AIE2 and AIE4 Lizhi Hou
2026-03-31 16:31 ` Mario Limonciello
2026-03-30 16:37 ` [PATCH V1 4/6] accel/amdxdna: Add AIE4 firmware loading Lizhi Hou
2026-03-30 20:17 ` Mario Limonciello
2026-03-30 20:30 ` yidong Zhang
2026-03-31 2:45 ` Mario Limonciello
2026-03-31 20:29 ` Lizhi Hou
2026-03-31 21:19 ` Mario Limonciello
2026-03-30 16:37 ` [PATCH V1 5/6] accel/amdxdna: Create common SMU interfaces for AIE2 and AIE4 Lizhi Hou
2026-03-31 16:31 ` Mario Limonciello
2026-03-30 16:37 ` [PATCH V1 6/6] accel/amdxdna: Add AIE4 power on and off support Lizhi Hou
2026-03-31 16:32 ` Mario Limonciello [this message]
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=44436b18-99f1-4eb3-8402-dfd553494a57@kernel.org \
--to=superm1@kernel.org \
--cc=Hayden.Laccabue@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lizhi.hou@amd.com \
--cc=maciej.falkowski@linux.intel.com \
--cc=max.zhen@amd.com \
--cc=ogabbay@kernel.org \
--cc=quic_jhugo@quicinc.com \
--cc=sonal.santan@amd.com \
--cc=yidong.zhang@amd.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
all inboxes | Powered by JetHome®