forked from OP-TEE/optee_os
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers/scmi-msg: support for clock protocol
Adds SCMI clock protocol support in the SCMI message drivers as defined in SCMI specification v2.0 [1]. Not all the messages defined in the specification are supported. Embedded upon CFG_SCMI_MSG_CLOCK=y. Platform can provide one of the plat_scmi_clock_*() handler for the supported operations set/get state/rate and others. scmi_msg_get_clock_handler() sanitizes the message_id value against any speculative use of clock ID as a index since by SCMI specification, IDs are indices. SCMI resource in this implementation are dumped or inspired by the SCP-firmware implementation [2] of the SCMI protocol, server side. Link: [1] http://infocenter.arm.com/help/topic/com.arm.doc.den0056a/DEN0056A_System_Control_and_Management_Interface.pdf Link: [2] https://github.com/ARM-software/SCP-firmware.git Signed-off-by: Etienne Carriere <[email protected]> Acked-by: Jens Wiklander <[email protected]>
- Loading branch information
1 parent
ae8c806
commit a7a9e3b
Showing
7 changed files
with
623 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,377 @@ | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
/* | ||
* Copyright (c) 2015-2019, Arm Limited and Contributors. All rights reserved. | ||
* Copyright (c) 2019, Linaro Limited | ||
*/ | ||
#include <assert.h> | ||
#include <confine_array_index.h> | ||
#include <drivers/scmi-msg.h> | ||
#include <drivers/scmi.h> | ||
#include <string.h> | ||
#include <util.h> | ||
|
||
#include "clock.h" | ||
#include "common.h" | ||
|
||
static bool message_id_is_supported(unsigned int message_id); | ||
|
||
size_t __weak plat_scmi_clock_count(unsigned int agent_id __unused) | ||
{ | ||
return 0; | ||
} | ||
|
||
const char __weak *plat_scmi_clock_get_name(unsigned int agent_id __unused, | ||
unsigned int scmi_id __unused) | ||
{ | ||
return NULL; | ||
} | ||
|
||
int32_t __weak plat_scmi_clock_rates_array(unsigned int agent_id __unused, | ||
unsigned int scmi_id __unused, | ||
unsigned long *rates __unused, | ||
size_t *nb_elts __unused) | ||
{ | ||
return SCMI_NOT_SUPPORTED; | ||
} | ||
|
||
int32_t __weak plat_scmi_clock_rates_by_step(unsigned int agent_id __unused, | ||
unsigned int scmi_id __unused, | ||
unsigned long *steps __unused) | ||
{ | ||
return SCMI_NOT_SUPPORTED; | ||
} | ||
|
||
unsigned long __weak plat_scmi_clock_get_rate(unsigned int agent_id __unused, | ||
unsigned int scmi_id __unused) | ||
{ | ||
return 0; | ||
} | ||
|
||
int32_t __weak plat_scmi_clock_set_rate(unsigned int agent_id __unused, | ||
unsigned int scmi_id __unused, | ||
unsigned long rate __unused) | ||
{ | ||
return SCMI_NOT_SUPPORTED; | ||
} | ||
|
||
int32_t __weak plat_scmi_clock_get_state(unsigned int agent_id __unused, | ||
unsigned int scmi_id __unused) | ||
{ | ||
return SCMI_NOT_SUPPORTED; | ||
} | ||
|
||
int32_t __weak plat_scmi_clock_set_state(unsigned int agent_id __unused, | ||
unsigned int scmi_id __unused, | ||
bool enable_not_disable __unused) | ||
{ | ||
return SCMI_NOT_SUPPORTED; | ||
} | ||
|
||
static void report_version(struct scmi_msg *msg) | ||
{ | ||
struct scmi_protocol_version_p2a return_values = { | ||
.status = SCMI_SUCCESS, | ||
.version = SCMI_PROTOCOL_VERSION_CLOCK, | ||
}; | ||
|
||
if (msg->in_size) { | ||
scmi_status_response(msg, SCMI_PROTOCOL_ERROR); | ||
return; | ||
} | ||
|
||
scmi_write_response(msg, &return_values, sizeof(return_values)); | ||
} | ||
|
||
static void report_attributes(struct scmi_msg *msg) | ||
{ | ||
size_t agent_count = plat_scmi_clock_count(msg->agent_id); | ||
struct scmi_protocol_attributes_p2a return_values = { | ||
.status = SCMI_SUCCESS, | ||
.attributes = SCMI_CLOCK_PROTOCOL_ATTRIBUTES(1, agent_count), | ||
}; | ||
|
||
if (msg->in_size) { | ||
scmi_status_response(msg, SCMI_PROTOCOL_ERROR); | ||
return; | ||
} | ||
|
||
scmi_write_response(msg, &return_values, sizeof(return_values)); | ||
} | ||
|
||
static void report_message_attributes(struct scmi_msg *msg) | ||
{ | ||
struct scmi_protocol_message_attributes_a2p *in_args = (void *)msg->in; | ||
struct scmi_protocol_message_attributes_p2a return_values = { | ||
.status = SCMI_SUCCESS, | ||
/* For this protocol, attributes shall be zero */ | ||
.attributes = 0, | ||
}; | ||
|
||
if (msg->in_size != sizeof(*in_args)) { | ||
scmi_status_response(msg, SCMI_PROTOCOL_ERROR); | ||
return; | ||
} | ||
|
||
if (!message_id_is_supported(in_args->message_id)) { | ||
scmi_status_response(msg, SCMI_NOT_FOUND); | ||
return; | ||
} | ||
|
||
scmi_write_response(msg, &return_values, sizeof(return_values)); | ||
} | ||
|
||
static void scmi_clock_attributes(struct scmi_msg *msg) | ||
{ | ||
const struct scmi_clock_attributes_a2p *in_args = (void *)msg->in; | ||
struct scmi_clock_attributes_p2a return_values = { | ||
.status = SCMI_SUCCESS, | ||
}; | ||
const char *name = NULL; | ||
unsigned int clock_id = 0; | ||
|
||
if (msg->in_size != sizeof(*in_args)) { | ||
scmi_status_response(msg, SCMI_PROTOCOL_ERROR); | ||
return; | ||
} | ||
|
||
if (in_args->clock_id >= plat_scmi_clock_count(msg->agent_id)) { | ||
scmi_status_response(msg, SCMI_INVALID_PARAMETERS); | ||
return; | ||
} | ||
|
||
clock_id = confine_array_index(in_args->clock_id, | ||
plat_scmi_clock_count(msg->agent_id)); | ||
|
||
name = plat_scmi_clock_get_name(msg->agent_id, clock_id); | ||
if (!name) { | ||
scmi_status_response(msg, SCMI_NOT_FOUND); | ||
return; | ||
} | ||
|
||
COPY_NAME_IDENTIFIER(return_values.clock_name, name); | ||
|
||
return_values.attributes = plat_scmi_clock_get_state(msg->agent_id, | ||
clock_id); | ||
|
||
scmi_write_response(msg, &return_values, sizeof(return_values)); | ||
} | ||
|
||
static void scmi_clock_rate_get(struct scmi_msg *msg) | ||
{ | ||
const struct scmi_clock_rate_get_a2p *in_args = (void *)msg->in; | ||
unsigned long rate = 0; | ||
struct scmi_clock_rate_get_p2a return_values = { }; | ||
unsigned int clock_id = 0; | ||
|
||
if (msg->in_size != sizeof(*in_args)) { | ||
scmi_status_response(msg, SCMI_PROTOCOL_ERROR); | ||
return; | ||
} | ||
|
||
if (in_args->clock_id >= plat_scmi_clock_count(msg->agent_id)) { | ||
scmi_status_response(msg, SCMI_INVALID_PARAMETERS); | ||
return; | ||
} | ||
|
||
clock_id = confine_array_index(in_args->clock_id, | ||
plat_scmi_clock_count(msg->agent_id)); | ||
|
||
rate = plat_scmi_clock_get_rate(msg->agent_id, clock_id); | ||
|
||
reg_pair_from_64(rate, return_values.rate + 1, return_values.rate); | ||
|
||
scmi_write_response(msg, &return_values, sizeof(return_values)); | ||
} | ||
|
||
static void scmi_clock_rate_set(struct scmi_msg *msg) | ||
{ | ||
const struct scmi_clock_rate_set_a2p *in_args = (void *)msg->in; | ||
uint64_t rate_64 = 0; | ||
unsigned long rate = 0; | ||
int32_t status = 0; | ||
unsigned int clock_id = 0; | ||
|
||
if (msg->in_size != sizeof(*in_args)) { | ||
scmi_status_response(msg, SCMI_PROTOCOL_ERROR); | ||
return; | ||
} | ||
|
||
if (in_args->clock_id >= plat_scmi_clock_count(msg->agent_id)) { | ||
scmi_status_response(msg, SCMI_INVALID_PARAMETERS); | ||
return; | ||
} | ||
|
||
clock_id = confine_array_index(in_args->clock_id, | ||
plat_scmi_clock_count(msg->agent_id)); | ||
|
||
rate_64 = reg_pair_to_64(in_args->rate[1], in_args->rate[0]); | ||
rate = rate_64; | ||
|
||
status = plat_scmi_clock_set_rate(msg->agent_id, clock_id, rate); | ||
|
||
scmi_status_response(msg, status); | ||
} | ||
|
||
static void scmi_clock_config_set(struct scmi_msg *msg) | ||
{ | ||
const struct scmi_clock_config_set_a2p *in_args = (void *)msg->in; | ||
int32_t status = SCMI_GENERIC_ERROR; | ||
bool enable = false; | ||
unsigned int clock_id = 0; | ||
|
||
if (msg->in_size != sizeof(*in_args)) { | ||
scmi_status_response(msg, SCMI_PROTOCOL_ERROR); | ||
return; | ||
} | ||
|
||
if (in_args->clock_id >= plat_scmi_clock_count(msg->agent_id)) { | ||
scmi_status_response(msg, SCMI_INVALID_PARAMETERS); | ||
return; | ||
} | ||
|
||
clock_id = confine_array_index(in_args->clock_id, | ||
plat_scmi_clock_count(msg->agent_id)); | ||
|
||
enable = in_args->attributes & SCMI_CLOCK_CONFIG_SET_ENABLE_MASK; | ||
|
||
status = plat_scmi_clock_set_state(msg->agent_id, clock_id, enable); | ||
|
||
scmi_status_response(msg, status); | ||
} | ||
|
||
#define RATES_ARRAY_SIZE_MAX (SCMI_PLAYLOAD_MAX - \ | ||
sizeof(struct scmi_clock_describe_rates_p2a)) | ||
|
||
#define SCMI_RATES_BY_ARRAY(_nb_rates, _rem_rates) \ | ||
SCMI_CLOCK_DESCRIBE_RATES_NUM_RATES_FLAGS((_nb_rates), \ | ||
SCMI_CLOCK_RATE_FORMAT_LIST, \ | ||
(_rem_rates)) | ||
#define SCMI_RATES_BY_STEP \ | ||
SCMI_CLOCK_DESCRIBE_RATES_NUM_RATES_FLAGS(3, \ | ||
SCMI_CLOCK_RATE_FORMAT_RANGE, \ | ||
0) | ||
|
||
#define RATE_DESC_SIZE sizeof(struct scmi_clock_rate) | ||
|
||
static void write_rate_desc_array_in_buffer(char *dest, unsigned long *rates, | ||
size_t nb_elt) | ||
{ | ||
uint32_t *out = NULL; | ||
size_t n = 0; | ||
|
||
assert(ALIGNMENT_IS_OK(dest, uint32_t)); | ||
out = (uint32_t *)(uintptr_t)dest; | ||
|
||
for (n = 0; n < nb_elt; n++) { | ||
uint64_t rate = rates[n]; | ||
|
||
reg_pair_from_64(rate, out + 2 * n + 1, out + 2 * n); | ||
} | ||
} | ||
|
||
static void scmi_clock_describe_rates(struct scmi_msg *msg) | ||
{ | ||
const struct scmi_clock_describe_rates_a2p *in_args = (void *)msg->in; | ||
struct scmi_clock_describe_rates_p2a p2a = { }; | ||
size_t nb_rates = 0; | ||
int32_t status = SCMI_GENERIC_ERROR; | ||
unsigned int clock_id = 0; | ||
|
||
if (msg->in_size != sizeof(*in_args)) { | ||
scmi_status_response(msg, SCMI_PROTOCOL_ERROR); | ||
return; | ||
} | ||
|
||
if (in_args->clock_id >= plat_scmi_clock_count(msg->agent_id)) { | ||
scmi_status_response(msg, SCMI_INVALID_PARAMETERS); | ||
return; | ||
} | ||
|
||
clock_id = confine_array_index(in_args->clock_id, | ||
plat_scmi_clock_count(msg->agent_id)); | ||
|
||
/* Platform may support array rate description */ | ||
status = plat_scmi_clock_rates_array(msg->agent_id, clock_id, NULL, | ||
&nb_rates); | ||
if (status == SCMI_SUCCESS) { | ||
/* Currently 12 cells mex, so it's affordable for the stack */ | ||
unsigned long plat_rates[RATES_ARRAY_SIZE_MAX / RATE_DESC_SIZE]; | ||
size_t max_nb = RATES_ARRAY_SIZE_MAX / RATE_DESC_SIZE; | ||
size_t ret_nb = MIN(nb_rates - in_args->rate_index, max_nb); | ||
size_t rem_nb = nb_rates - in_args->rate_index - ret_nb; | ||
|
||
status = plat_scmi_clock_rates_array(msg->agent_id, clock_id, | ||
plat_rates, &ret_nb); | ||
if (status == SCMI_SUCCESS) { | ||
write_rate_desc_array_in_buffer(msg->out + sizeof(p2a), | ||
plat_rates, ret_nb); | ||
|
||
p2a.num_rates_flags = SCMI_RATES_BY_ARRAY(ret_nb, | ||
rem_nb); | ||
p2a.status = SCMI_SUCCESS; | ||
|
||
memcpy(msg->out, &p2a, sizeof(p2a)); | ||
msg->out_size_out = sizeof(p2a) + | ||
ret_nb * RATE_DESC_SIZE; | ||
} | ||
} else if (status == SCMI_NOT_SUPPORTED) { | ||
unsigned long triplet[3] = { 0, 0, 0 }; | ||
|
||
/* Platform may support min§max/step triplet description */ | ||
status = plat_scmi_clock_rates_by_step(msg->agent_id, clock_id, | ||
triplet); | ||
if (status == SCMI_SUCCESS) { | ||
write_rate_desc_array_in_buffer(msg->out + sizeof(p2a), | ||
triplet, 3); | ||
|
||
p2a.num_rates_flags = SCMI_RATES_BY_STEP; | ||
p2a.status = SCMI_SUCCESS; | ||
|
||
memcpy(msg->out, &p2a, sizeof(p2a)); | ||
msg->out_size_out = sizeof(p2a) + (3 * RATE_DESC_SIZE); | ||
} | ||
} else { | ||
/* Fallthrough generic exit sequence below with error status */ | ||
} | ||
|
||
if (status) { | ||
scmi_status_response(msg, status); | ||
} else { | ||
/* | ||
* Message payload is already writen to msg->out, and | ||
* msg->out_size_out updated. | ||
*/ | ||
} | ||
} | ||
|
||
static const scmi_msg_handler_t scmi_clock_handler_table[] = { | ||
[SCMI_PROTOCOL_VERSION] = report_version, | ||
[SCMI_PROTOCOL_ATTRIBUTES] = report_attributes, | ||
[SCMI_PROTOCOL_MESSAGE_ATTRIBUTES] = report_message_attributes, | ||
[SCMI_CLOCK_ATTRIBUTES] = scmi_clock_attributes, | ||
[SCMI_CLOCK_DESCRIBE_RATES] = scmi_clock_describe_rates, | ||
[SCMI_CLOCK_RATE_SET] = scmi_clock_rate_set, | ||
[SCMI_CLOCK_RATE_GET] = scmi_clock_rate_get, | ||
[SCMI_CLOCK_CONFIG_SET] = scmi_clock_config_set, | ||
}; | ||
|
||
static bool message_id_is_supported(size_t message_id) | ||
{ | ||
return message_id < ARRAY_SIZE(scmi_clock_handler_table) && | ||
scmi_clock_handler_table[message_id]; | ||
} | ||
|
||
scmi_msg_handler_t scmi_msg_get_clock_handler(struct scmi_msg *msg) | ||
{ | ||
const size_t array_size = ARRAY_SIZE(scmi_clock_handler_table); | ||
unsigned int message_id = 0; | ||
|
||
if (msg->message_id >= array_size) { | ||
DMSG("Clock handle not found %u", msg->message_id); | ||
return NULL; | ||
} | ||
|
||
message_id = confine_array_index(msg->message_id, array_size); | ||
|
||
return scmi_clock_handler_table[message_id]; | ||
} |
Oops, something went wrong.