firmware: arm_scmi: Update various protocols versions
authorCristian Marussi <cristian.marussi@arm.com>
Mon, 12 Aug 2024 17:40:27 +0000 (18:40 +0100)
committerSudeep Holla <sudeep.holla@arm.com>
Fri, 16 Aug 2024 09:26:58 +0000 (10:26 +0100)
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: Cristian Marussi <cristian.marussi@arm.com>
Message-Id: <20240812174027.3931160-1-cristian.marussi@arm.com>
Reviewed-by: Dhruva Gole <d-gole@ti.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
drivers/firmware/arm_scmi/base.c
drivers/firmware/arm_scmi/power.c
drivers/firmware/arm_scmi/reset.c
drivers/firmware/arm_scmi/sensors.c
drivers/firmware/arm_scmi/system.c
drivers/firmware/arm_scmi/voltage.c

index 97254de35ab0d4d59836e8da21f5626088d26960..9939b1d84b7a6d19e83fb8a5c21d2f4107379b02 100644 (file)
@@ -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
index 49666bd1d8ac0c4efcba123aa365416068a3b50c..59aa16444c6432c4e6280e9eac595f3a1fada71b 100644 (file)
@@ -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,
index 1b318316535ec4d5c5dc8c454a0a0d6d15155694..0aa82b96f41b9cb18190828afde65c6ddd37d8b8 100644 (file)
@@ -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,
index 7fc5535ca34c710f7154ff55c5e53b9e655a828e..791efd0f82d7373317d9f8b129d3ac7aa240686e 100644 (file)
@@ -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
index b6358c155f7fcac6df05b3287e7dc95e58f5c6e5..ec3d355d177226b459b9ed25cff013e0f7c69a14 100644 (file)
@@ -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
 
index f1a7c04ae82071f6e852b08323150f5ed13198b9..fda6a1573609b979725cf0a3fadb541ada2c415b 100644 (file)
@@ -11,7 +11,7 @@
 #include "protocols.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 VOLTAGE_DOMS_NUM_MASK          GENMASK(15, 0)
 #define REMAINING_LEVELS_MASK          GENMASK(31, 16)