From c2671bb69f17722a537b2b0403cf2d70639af346 Mon Sep 17 00:00:00 2001 From: Rahul Pathak Date: Wed, 18 Jun 2025 11:08:54 +0530 Subject: [PATCH] lib: rpmi: Make RPMI drivers as non-experimental As RPMI v1.0 specification is frozen, disable the experimental tag for such RPMI drivers. Signed-off-by: Rahul Pathak Reviewed-by: Anup Patel Link: https://lore.kernel.org/r/20250618053854.2577299-2-rpathak@ventanamicro.com Signed-off-by: Anup Patel --- lib/utils/cppc/fdt_cppc_rpmi.c | 1 - lib/utils/hsm/fdt_hsm_rpmi.c | 1 - lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c | 1 - lib/utils/mpxy/fdt_mpxy_rpmi_clock.c | 1 - lib/utils/mpxy/fdt_mpxy_rpmi_sysmsi.c | 1 - lib/utils/reset/fdt_reset_rpmi.c | 1 - lib/utils/suspend/fdt_suspend_rpmi.c | 1 - 7 files changed, 7 deletions(-) diff --git a/lib/utils/cppc/fdt_cppc_rpmi.c b/lib/utils/cppc/fdt_cppc_rpmi.c index efcea652..7bd3b0f9 100644 --- a/lib/utils/cppc/fdt_cppc_rpmi.c +++ b/lib/utils/cppc/fdt_cppc_rpmi.c @@ -370,5 +370,4 @@ static const struct fdt_match rpmi_cppc_match[] = { const struct fdt_driver fdt_cppc_rpmi = { .match_table = rpmi_cppc_match, .init = rpmi_cppc_cold_init, - .experimental = true, }; diff --git a/lib/utils/hsm/fdt_hsm_rpmi.c b/lib/utils/hsm/fdt_hsm_rpmi.c index 09d0c91d..0caad8bc 100644 --- a/lib/utils/hsm/fdt_hsm_rpmi.c +++ b/lib/utils/hsm/fdt_hsm_rpmi.c @@ -359,5 +359,4 @@ static const struct fdt_match rpmi_hsm_match[] = { const struct fdt_driver fdt_hsm_rpmi = { .match_table = rpmi_hsm_match, .init = rpmi_hsm_cold_init, - .experimental = true, }; diff --git a/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c b/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c index fdb04915..521e0673 100644 --- a/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c +++ b/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c @@ -819,7 +819,6 @@ struct fdt_mailbox fdt_mailbox_rpmi_shmem = { .driver = { .match_table = rpmi_shmem_mbox_match, .init = rpmi_shmem_mbox_init, - .experimental = true, }, .xlate = fdt_mailbox_simple_xlate, }; diff --git a/lib/utils/mpxy/fdt_mpxy_rpmi_clock.c b/lib/utils/mpxy/fdt_mpxy_rpmi_clock.c index 7d2b4a20..585c2bf3 100644 --- a/lib/utils/mpxy/fdt_mpxy_rpmi_clock.c +++ b/lib/utils/mpxy/fdt_mpxy_rpmi_clock.c @@ -83,5 +83,4 @@ static const struct fdt_match clock_match[] = { const struct fdt_driver fdt_mpxy_rpmi_clock = { .match_table = clock_match, .init = mpxy_rpmi_mbox_init, - .experimental = true, }; diff --git a/lib/utils/mpxy/fdt_mpxy_rpmi_sysmsi.c b/lib/utils/mpxy/fdt_mpxy_rpmi_sysmsi.c index b4bab85a..94a5af8c 100644 --- a/lib/utils/mpxy/fdt_mpxy_rpmi_sysmsi.c +++ b/lib/utils/mpxy/fdt_mpxy_rpmi_sysmsi.c @@ -205,5 +205,4 @@ static const struct fdt_match sysmsi_match[] = { const struct fdt_driver fdt_mpxy_rpmi_sysmsi = { .match_table = sysmsi_match, .init = mpxy_rpmi_mbox_init, - .experimental = true, }; diff --git a/lib/utils/reset/fdt_reset_rpmi.c b/lib/utils/reset/fdt_reset_rpmi.c index 81b21d0f..edc53932 100644 --- a/lib/utils/reset/fdt_reset_rpmi.c +++ b/lib/utils/reset/fdt_reset_rpmi.c @@ -138,5 +138,4 @@ static const struct fdt_match rpmi_reset_match[] = { const struct fdt_driver fdt_reset_rpmi = { .match_table = rpmi_reset_match, .init = rpmi_reset_init, - .experimental = true, }; diff --git a/lib/utils/suspend/fdt_suspend_rpmi.c b/lib/utils/suspend/fdt_suspend_rpmi.c index f9baa23c..055ab2ff 100644 --- a/lib/utils/suspend/fdt_suspend_rpmi.c +++ b/lib/utils/suspend/fdt_suspend_rpmi.c @@ -135,5 +135,4 @@ static const struct fdt_match rpmi_suspend_match[] = { const struct fdt_driver fdt_suspend_rpmi = { .match_table = rpmi_suspend_match, .init = rpmi_suspend_init, - .experimental = true, };