diff options
| author | Dan Carpenter <[email protected]> | 2026-03-11 22:39:35 +0300 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2026-03-23 10:58:20 +0800 |
| commit | 264cbb187180b633130070eeae815d15ea6534dd (patch) | |
| tree | cc7910f576add50dceb366ce82f95b9fa0650415 /include | |
| parent | 80bdc86db5a54730bcc11ce148e25e06f3346553 (diff) | |
scmi: pinctrl: add pinctrl message IDs
Add all the pinctrl message IDs. I renamed SCMI_MSG_PINCTRL_CONFIG_SET
to SCMI_PINCTRL_SETTINGS_CONFIGURE so the naming matches the spec better.
Signed-off-by: Dan Carpenter <[email protected]>
Reviewed-by: Peng Fan <[email protected]>
Reviewed-by: Linus Walleij <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/scmi_protocols.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/scmi_protocols.h b/include/scmi_protocols.h index 555ffa0a61b..e1d788058fb 100644 --- a/include/scmi_protocols.h +++ b/include/scmi_protocols.h @@ -1089,7 +1089,14 @@ struct scmi_voltd_level_get_out { /* SCMI Pinctrl Protocol */ enum scmi_pinctrl_message_id { - SCMI_MSG_PINCTRL_CONFIG_SET = 0x6 + SCMI_PINCTRL_ATTRIBUTES = 0x3, + SCMI_PINCTRL_LIST_ASSOCIATIONS = 0x4, + SCMI_PINCTRL_SETTINGS_GET = 0x5, + SCMI_PINCTRL_SETTINGS_CONFIGURE = 0x6, + SCMI_PINCTRL_REQUEST = 0x7, + SCMI_PINCTRL_RELEASE = 0x8, + SCMI_PINCTRL_NAME_GET = 0x9, + SCMI_PINCTRL_SET_PERMISSIONS = 0xA, }; struct scmi_pin_config { |
