From fba62e22700490bf46b2885b977399b2b1d21460 Mon Sep 17 00:00:00 2001 From: Maisam Arif Date: Thu, 29 May 2025 18:44:36 -0500 Subject: [PATCH] [SWDEV-534707] Adjust power value documentation Signed-off-by: Maisam Arif Change-Id: I1c4516e403715b9a1fe9c78fae94848c89daa920 --- docs/reference/amdsmi-py-api.md | 4 ++-- include/amd_smi/amdsmi.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/reference/amdsmi-py-api.md b/docs/reference/amdsmi-py-api.md index 9f0b2bbbab..a30f2a1f11 100644 --- a/docs/reference/amdsmi-py-api.md +++ b/docs/reference/amdsmi-py-api.md @@ -703,8 +703,8 @@ Output: Dictionary with fields Field | Description ---|--- -`current_socket_power` | current socket power -`average_socket_power` | average socket power +`current_socket_power` | current socket power; Mi300+ Series Cards +`average_socket_power` | average socket power; Navi + Mi 200 and earlier Series cards `gfx_voltage` | voltage gfx `soc_voltage` | voltage soc `mem_voltage` | voltage mem diff --git a/include/amd_smi/amdsmi.h b/include/amd_smi/amdsmi.h index 2ad4a30e2a..02a0117772 100644 --- a/include/amd_smi/amdsmi.h +++ b/include/amd_smi/amdsmi.h @@ -1026,8 +1026,8 @@ typedef struct { */ typedef struct { uint64_t socket_power; //!< Units in uW {@host}, Host only - uint32_t current_socket_power; //!< Units in W {@linux_bm}, Linux only - uint32_t average_socket_power; //!< Units in W {@linux_bm}, Linux only + uint32_t current_socket_power; //!< Units in W {@linux_bm}, Linux only, Mi 300+ Series cards + uint32_t average_socket_power; //!< Units in W {@linux_bm}, Linux only, Navi + Mi 200 and earlier Series cards uint32_t gfx_voltage; //!< GFX voltage measurement in mV {@linux_bm} or V {@host} uint32_t soc_voltage; //!< SOC voltage measurement in mV {@linux_bm} or V {@host} uint32_t mem_voltage; //!< MEM voltage measurement in mV {@linux_bm} or V {@host}