diff options
| author | AKASHI Takahiro <[email protected]> | 2023-10-16 14:39:44 +0900 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-10-24 17:05:24 -0400 |
| commit | c1d2ed0c63a2650aa62b38f648962baf81b0d0fb (patch) | |
| tree | ba224d4775ae9e30f35d4a2fbad0d4796e19750d /include | |
| parent | fc358b1a760228a61388ac3c17b3850ac8f914dd (diff) | |
power: domain: add SCMI driver
Add power domain driver based on SCMI power domain management protocol.
Signed-off-by: AKASHI Takahiro <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/scmi_agent-uclass.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/scmi_agent-uclass.h b/include/scmi_agent-uclass.h index 35d96069645..33e0e18c30d 100644 --- a/include/scmi_agent-uclass.h +++ b/include/scmi_agent-uclass.h @@ -23,6 +23,7 @@ struct scmi_channel; * @agent_name: Agent name * @agent_id: Identifier of agent * @base_dev: SCMI base protocol device + * @pwdom_dev: SCMI power domain management protocol device * @clock_dev: SCMI clock protocol device * @resetdom_dev: SCMI reset domain protocol device * @voltagedom_dev: SCMI voltage domain protocol device @@ -38,6 +39,7 @@ struct scmi_agent_priv { u8 *agent_name; u32 agent_id; struct udevice *base_dev; + struct udevice *pwdom_dev; struct udevice *clock_dev; struct udevice *resetdom_dev; struct udevice *voltagedom_dev; |
