diff options
author | Lijo Lazar <lijo.lazar@amd.com> | 2023-10-04 18:46:06 +0530 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2023-10-09 16:52:25 -0400 |
commit | b3e73b5a8f8ae3f585abd756416b089f82578ef2 (patch) | |
tree | fdba8bb0d6325fb30a9b8ab4ab57e8a7f2a4be00 /drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c | |
parent | ac6b1f275f17ba9873ec677979ba240d9d952413 (diff) |
Documentation/amdgpu: Add FRU attribute details
Add documentation for the newly added manufacturer and fru_id attributes
in sysfs.
Signed-off-by: Lijo Lazar <lijo.lazar@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c index 5d627d0e19a4..d635e61805ea 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c @@ -321,6 +321,16 @@ static ssize_t amdgpu_fru_serial_number_show(struct device *dev, static DEVICE_ATTR(serial_number, 0444, amdgpu_fru_serial_number_show, NULL); +/** + * DOC: fru_id + * + * The amdgpu driver provides a sysfs API for reporting FRU File Id + * for the device. + * The file fru_id is used for this and returns the File Id value + * as returned from the FRU. + * NOTE: This is only available for certain server cards + */ + static ssize_t amdgpu_fru_id_show(struct device *dev, struct device_attribute *attr, char *buf) { @@ -332,6 +342,15 @@ static ssize_t amdgpu_fru_id_show(struct device *dev, static DEVICE_ATTR(fru_id, 0444, amdgpu_fru_id_show, NULL); +/** + * DOC: manufacturer + * + * The amdgpu driver provides a sysfs API for reporting manufacturer name from + * FRU information. + * The file manufacturer returns the value as returned from the FRU. + * NOTE: This is only available for certain server cards + */ + static ssize_t amdgpu_fru_manufacturer_name_show(struct device *dev, struct device_attribute *attr, char *buf) |