mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 15:31:22 +01:00

As RPMI v1.0 specification is frozen, disable the experimental tag for such RPMI drivers. Signed-off-by: Rahul Pathak <rpathak@ventanamicro.com> Reviewed-by: Anup Patel <anup@brainfault.org> Link: https://lore.kernel.org/r/20250618053854.2577299-2-rpathak@ventanamicro.com Signed-off-by: Anup Patel <anup@brainfault.org>
87 lines
2.8 KiB
C
87 lines
2.8 KiB
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2024 Ventana Micro Systems Inc.
|
|
*
|
|
* Authors:
|
|
* Rahul Pathak <rpathak@ventanamicro.com>
|
|
* Anup Patel <apatel@ventanamicro.com>
|
|
*/
|
|
|
|
#include <sbi_utils/mpxy/fdt_mpxy_rpmi_mbox.h>
|
|
|
|
static struct mpxy_rpmi_service_data clock_services[] = {
|
|
{
|
|
.id = RPMI_CLOCK_SRV_ENABLE_NOTIFICATION,
|
|
.min_tx_len = sizeof(struct rpmi_enable_notification_req),
|
|
.max_tx_len = sizeof(struct rpmi_enable_notification_req),
|
|
.min_rx_len = sizeof(struct rpmi_enable_notification_resp),
|
|
.max_rx_len = sizeof(struct rpmi_enable_notification_resp),
|
|
},
|
|
{
|
|
.id = RPMI_CLOCK_SRV_GET_NUM_CLOCKS,
|
|
.min_tx_len = 0,
|
|
.max_tx_len = 0,
|
|
.min_rx_len = sizeof(struct rpmi_clock_get_num_clocks_resp),
|
|
.max_rx_len = sizeof(struct rpmi_clock_get_num_clocks_resp),
|
|
},
|
|
{
|
|
.id = RPMI_CLOCK_SRV_GET_ATTRIBUTES,
|
|
.min_tx_len = sizeof(struct rpmi_clock_get_attributes_req),
|
|
.max_tx_len = sizeof(struct rpmi_clock_get_attributes_req),
|
|
.min_rx_len = sizeof(struct rpmi_clock_get_attributes_resp),
|
|
.max_rx_len = sizeof(struct rpmi_clock_get_attributes_resp),
|
|
},
|
|
{
|
|
.id = RPMI_CLOCK_SRV_GET_SUPPORTED_RATES,
|
|
.min_tx_len = sizeof(struct rpmi_clock_get_supported_rates_req),
|
|
.max_tx_len = sizeof(struct rpmi_clock_get_supported_rates_req),
|
|
.min_rx_len = sizeof(struct rpmi_clock_get_supported_rates_resp),
|
|
.max_rx_len = -1U,
|
|
},
|
|
{
|
|
.id = RPMI_CLOCK_SRV_SET_CONFIG,
|
|
.min_tx_len = sizeof(struct rpmi_clock_set_config_req),
|
|
.max_tx_len = sizeof(struct rpmi_clock_set_config_req),
|
|
.min_rx_len = sizeof(struct rpmi_clock_set_config_resp),
|
|
.max_rx_len = sizeof(struct rpmi_clock_set_config_resp),
|
|
},
|
|
{
|
|
.id = RPMI_CLOCK_SRV_GET_CONFIG,
|
|
.min_tx_len = sizeof(struct rpmi_clock_get_config_req),
|
|
.max_tx_len = sizeof(struct rpmi_clock_get_config_req),
|
|
.min_rx_len = sizeof(struct rpmi_clock_get_config_resp),
|
|
.max_rx_len = sizeof(struct rpmi_clock_get_config_resp),
|
|
},
|
|
{
|
|
.id = RPMI_CLOCK_SRV_SET_RATE,
|
|
.min_tx_len = sizeof(struct rpmi_clock_set_rate_req),
|
|
.max_tx_len = sizeof(struct rpmi_clock_set_rate_req),
|
|
.min_rx_len = sizeof(struct rpmi_clock_set_rate_resp),
|
|
.max_rx_len = sizeof(struct rpmi_clock_set_rate_resp),
|
|
},
|
|
{
|
|
.id = RPMI_CLOCK_SRV_GET_RATE,
|
|
.min_tx_len = sizeof(struct rpmi_clock_get_rate_req),
|
|
.max_tx_len = sizeof(struct rpmi_clock_get_rate_req),
|
|
.min_rx_len = sizeof(struct rpmi_clock_get_rate_resp),
|
|
.max_rx_len = sizeof(struct rpmi_clock_get_rate_resp),
|
|
},
|
|
};
|
|
|
|
static const struct mpxy_rpmi_mbox_data clock_data = {
|
|
.servicegrp_id = RPMI_SRVGRP_CLOCK,
|
|
.num_services = RPMI_CLOCK_SRV_MAX_COUNT,
|
|
.service_data = clock_services,
|
|
};
|
|
|
|
static const struct fdt_match clock_match[] = {
|
|
{ .compatible = "riscv,rpmi-mpxy-clock", .data = &clock_data },
|
|
{ },
|
|
};
|
|
|
|
const struct fdt_driver fdt_mpxy_rpmi_clock = {
|
|
.match_table = clock_match,
|
|
.init = mpxy_rpmi_mbox_init,
|
|
};
|