Commit be9f0865 authored by Cristian Marussi's avatar Cristian Marussi Committed by Sudeep Holla
Browse files

firmware: arm_scmi: Update various protocols versions



A few protocol versions had been increased with SCMI v3.2.
Update accordingly the supported version define in the kernel stack,
since all the mandatory base commands are indeed already supported.

Signed-off-by: default avatarCristian Marussi <cristian.marussi@arm.com>
Message-Id: <20240812174027.3931160-1-cristian.marussi@arm.com>
Reviewed-by: default avatarDhruva Gole <d-gole@ti.com>
Signed-off-by: default avatarSudeep Holla <sudeep.holla@arm.com>
parent fc789363
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
#include "notify.h"

/* Updated only after ALL the mandatory features for that version are merged */
#define SCMI_PROTOCOL_SUPPORTED_VERSION		0x20000
#define SCMI_PROTOCOL_SUPPORTED_VERSION		0x20001

#define SCMI_BASE_NUM_SOURCES		1
#define SCMI_BASE_MAX_CMD_ERR_COUNT	1024
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
#include "notify.h"

/* Updated only after ALL the mandatory features for that version are merged */
#define SCMI_PROTOCOL_SUPPORTED_VERSION		0x30000
#define SCMI_PROTOCOL_SUPPORTED_VERSION		0x30001

enum scmi_power_protocol_cmd {
	POWER_DOMAIN_ATTRIBUTES = 0x3,
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
#include "notify.h"

/* Updated only after ALL the mandatory features for that version are merged */
#define SCMI_PROTOCOL_SUPPORTED_VERSION		0x30000
#define SCMI_PROTOCOL_SUPPORTED_VERSION		0x30001

enum scmi_reset_protocol_cmd {
	RESET_DOMAIN_ATTRIBUTES = 0x3,
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
#include "notify.h"

/* Updated only after ALL the mandatory features for that version are merged */
#define SCMI_PROTOCOL_SUPPORTED_VERSION		0x30000
#define SCMI_PROTOCOL_SUPPORTED_VERSION		0x30001

#define SCMI_MAX_NUM_SENSOR_AXIS	63
#define	SCMIv2_SENSOR_PROTOCOL		0x10000
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
#include "notify.h"

/* Updated only after ALL the mandatory features for that version are merged */
#define SCMI_PROTOCOL_SUPPORTED_VERSION		0x20000
#define SCMI_PROTOCOL_SUPPORTED_VERSION		0x20001

#define SCMI_SYSTEM_NUM_SOURCES		1

Loading