<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div>
<div>
<div dir="ltr" style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
Then the application would need to issue the ioctl and then open a sysfs file to get all the information it needs. It makes little sense from a programming perspective to add an incomplete interface in my opinion </div>
</div>
<div><br>
</div>
<div class="ms-outlook-ios-signature"></div>
</div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>From:</b> Gu, JiaWei (Will) <JiaWei.Gu@amd.com><br>
<b>Sent:</b> Monday, May 10, 2021 12:13:07 AM<br>
<b>To:</b> Nieto, David M <David.Nieto@amd.com><br>
<b>Cc:</b> Alex Deucher <alexdeucher@gmail.com>; amd-gfx list <amd-gfx@lists.freedesktop.org>; Kees Cook <keescook@chromium.org>; Deng, Emily <Emily.Deng@amd.com><br>
<b>Subject:</b> RE: [PATCH] drm/amdgpu: Align serial size in drm_amdgpu_info_vbios</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">[AMD Official Use Only - Internal Distribution Only]<br>
<br>
Hi David,<br>
<br>
What I meant is to ONLY delete the serial[16] from drm_amdgpu_info_vbios, not the whole struct.<br>
<br>
struct drm_amdgpu_info_vbios {<br>
        __u8 name[64];<br>
        __u32 dbdf;<br>
        __u8 vbios_pn[64];<br>
        __u32 version;<br>
        __u8 date[32];<br>
        __u8 serial[16]; // jiawei: shall we delete this<br>
        __u32 dev_id;<br>
        __u32 rev_id;<br>
        __u32 sub_dev_id;<br>
        __u32 sub_ved_id;<br>
};<br>
<br>
serial[16] in drm_amdgpu_info_vbios  copied from adev->serial, but there's already a sysfs named serial_number, which exposes it already.<br>
<br>
static ssize_t amdgpu_device_get_serial_number(struct device *dev,<br>
                struct device_attribute *attr, char *buf)<br>
{<br>
        struct drm_device *ddev = dev_get_drvdata(dev);<br>
        struct amdgpu_device *adev = ddev->dev_private;<br>
<br>
        return snprintf(buf, PAGE_SIZE, "%s\n", adev->serial);<br>
}<br>
<br>
Thanks,<br>
Jiawei<br>
<br>
<br>
-----Original Message-----<br>
From: Nieto, David M <David.Nieto@amd.com> <br>
Sent: Monday, May 10, 2021 2:53 PM<br>
To: Gu, JiaWei (Will) <JiaWei.Gu@amd.com><br>
Cc: Alex Deucher <alexdeucher@gmail.com>; amd-gfx list <amd-gfx@lists.freedesktop.org>; Kees Cook <keescook@chromium.org>; Deng, Emily <Emily.Deng@amd.com><br>
Subject: Re: [PATCH] drm/amdgpu: Align serial size in drm_amdgpu_info_vbios<br>
<br>
No, this structure contains all the details of the vbios: date, serial number, name, etc.<br>
<br>
The sysfs node only contains the vbios name string<br>
<br>
> On May 9, 2021, at 23:33, Gu, JiaWei (Will) <JiaWei.Gu@amd.com> wrote:<br>
> <br>
> [AMD Official Use Only - Internal Distribution Only]<br>
> <br>
> With a second thought,<br>
> __u8 serial[16] in drm_amdgpu_info_vbios is a bit redundant, sysfs serial_number already exposes it.<br>
> <br>
> Is it fine to abandon it from drm_amdgpu_info_vbios struct? @Alex <br>
> Deucher @Nieto, David M<br>
> <br>
> Best regards,<br>
> Jiawei<br>
> <br>
> -----Original Message-----<br>
> From: Alex Deucher <alexdeucher@gmail.com><br>
> Sent: Sunday, May 9, 2021 11:59 PM<br>
> To: Gu, JiaWei (Will) <JiaWei.Gu@amd.com><br>
> Cc: amd-gfx list <amd-gfx@lists.freedesktop.org>; Kees Cook <br>
> <keescook@chromium.org><br>
> Subject: Re: [PATCH] drm/amdgpu: Align serial size in <br>
> drm_amdgpu_info_vbios<br>
> <br>
>> On Sat, May 8, 2021 at 2:48 AM Jiawei Gu <Jiawei.Gu@amd.com> wrote:<br>
>> <br>
>> 20 should be serial char size now instead of 16.<br>
>> <br>
>> Signed-off-by: Jiawei Gu <Jiawei.Gu@amd.com><br>
> <br>
> Please make sure this keeps proper 64 bit alignment in the structure.<br>
> <br>
> Alex<br>
> <br>
> <br>
>> ---<br>
>> include/uapi/drm/amdgpu_drm.h | 2 +-<br>
>> 1 file changed, 1 insertion(+), 1 deletion(-)<br>
>> <br>
>> diff --git a/include/uapi/drm/amdgpu_drm.h <br>
>> b/include/uapi/drm/amdgpu_drm.h index 2b487a8d2727..1c20721f90da<br>
>> 100644<br>
>> --- a/include/uapi/drm/amdgpu_drm.h<br>
>> +++ b/include/uapi/drm/amdgpu_drm.h<br>
>> @@ -957,7 +957,7 @@ struct drm_amdgpu_info_vbios {<br>
>>        __u8 vbios_pn[64];<br>
>>        __u32 version;<br>
>>        __u8 date[32];<br>
>> -       __u8 serial[16];<br>
>> +       __u8 serial[20];<br>
>>        __u32 dev_id;<br>
>>        __u32 rev_id;<br>
>>        __u32 sub_dev_id;<br>
>> --<br>
>> 2.17.1<br>
>> <br>
>> _______________________________________________<br>
>> amd-gfx mailing list<br>
>> amd-gfx@lists.freedesktop.org<br>
>> <a href="https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flis">
https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flis</a><br>
>> t <br>
>> s.freedesktop.org%2Fmailman%2Flistinfo%2Famd-gfx&amp;data=04%7C01%7CJ<br>
>> i<br>
>> awei.Gu%40amd.com%7Ccea31833184c41e8574508d9130360cc%7C3dd8961fe4884e<br>
>> 6 <br>
>> 08e11a82d994e183d%7C0%7C0%7C637561727523880356%7CUnknown%7CTWFpbGZsb3<br>
>> d <br>
>> 8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7<br>
>> C <br>
>> 1000&amp;sdata=kAJiC6WoJUTeExwk6ftrLfMoY2OTAwg9X7mGgJT3kLk%3D&amp;res<br>
>> e<br>
>> rved=0<br>
</div>
</span></font></div>
</body>
</html>