mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2026-09-08 18:21:29 +01:00
Logging file should be using its own enum and not others.
Fixes: 262571217c ("lib: utils/mpxy: Add RPMI MPXY driver for logging
service group")
Signed-off-by: Ranbir Singh <ranbir.singh@oss.qualcomm.com>
Reviewed-by: Rahul Pathak <rahul.pathak@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20260724080920.1629065-3-ranbir.singh@oss.qualcomm.com
Signed-off-by: Anup Patel <anup@brainfault.org>
52 lines
1.5 KiB
C
52 lines
1.5 KiB
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2026 Qualcomm, Inc
|
|
*
|
|
* Authors:
|
|
* Subrahmanya Lingappa <subrahmanya.lingappa@oss.qualcomm.com>
|
|
*/
|
|
|
|
#include <sbi_utils/mpxy/fdt_mpxy_rpmi_mbox.h>
|
|
|
|
static struct mpxy_rpmi_service_data logging_services[] = {
|
|
[0] = {
|
|
.id = RPMI_LOGGING_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),
|
|
},
|
|
[1] = {
|
|
.id = RPMI_LOGGING_SRV_LOG_DATA,
|
|
.min_tx_len = sizeof(u32) * 2,
|
|
.max_tx_len = sizeof(struct rpmi_logging_log_data_req),
|
|
.min_rx_len = sizeof(struct rpmi_logging_log_data_resp),
|
|
.max_rx_len = sizeof(struct rpmi_logging_log_data_resp),
|
|
},
|
|
/*
|
|
* Keep a local terminator for safe lookup because only service ID 0x02
|
|
* is intentionally exposed by this MPXY service group handler.
|
|
*/
|
|
[2] = {
|
|
.id = RPMI_LOGGING_SRV_MAX_COUNT,
|
|
},
|
|
};
|
|
|
|
static const struct mpxy_rpmi_mbox_data logging_data = {
|
|
.servicegrp_id = RPMI_SRVGRP_LOGGING,
|
|
.num_services = RPMI_LOGGING_SRV_MAX_COUNT,
|
|
.service_data = logging_services,
|
|
};
|
|
|
|
static const struct fdt_match logging_match[] = {
|
|
{ .compatible = "riscv,rpmi-mpxy-logging", .data = &logging_data },
|
|
{ },
|
|
};
|
|
|
|
const struct fdt_driver fdt_mpxy_rpmi_logging = {
|
|
.match_table = logging_match,
|
|
.init = mpxy_rpmi_mbox_init,
|
|
.experimental = true,
|
|
};
|