X86 platform drivers
 help / color / mirror / Atom feed
From: "Hegde, Suma" <Suma.Hegde@amd.com>
To: Hans de Goede <hdegoede@redhat.com>
Cc: platform-driver-x86@vger.kernel.org,
	Naveen Krishna Chatradhi <nchatrad@amd.com>
Subject: Re: [PATCH v2 1/4] platform/x86/amd/hsmp: create plat specific struct
Date: Fri, 15 Sep 2023 17:19:11 +0530	[thread overview]
Message-ID: <b7a40f81-dfae-8315-5b44-ebe59f387a1c@amd.com> (raw)
In-Reply-To: <912ddb30-136c-b066-aae4-8726f8f8d035@redhat.com>

Hi Hans de,

Thank you for your review. I will wait till Monday and respin v3 patches 
addressing your feedback.

Thanks and Regards,

Suma

On 9/13/2023 8:57 PM, Hans de Goede wrote:
> Caution: This message originated from an External Source. Use proper caution when opening attachments, clicking links, or responding.
>
>
> Hi Suma,
>
> Thank you for the patch.
>
> On 9/6/23 09:12, Suma Hegde wrote:
>> From: Suma Hegde <suma.hegde@amd.com>
>>
>> Having a separate platform device structure helps in future, to
>> contain platform specific variables and other data.
>>
>> Signed-off-by: Suma Hegde <suma.hegde@amd.com>
>> Reviewed-by: Naveen Krishna Chatradhi <nchatrad@amd.com>
>> ---
>> Changes since v1:
>> 1. defined HSMP_CDEV_NAME and HSMP_DEVNODE_NAME macros
>>
>>   drivers/platform/x86/amd/hsmp.c | 56 +++++++++++++++++++++------------
>>   1 file changed, 36 insertions(+), 20 deletions(-)
>>
>> diff --git a/drivers/platform/x86/amd/hsmp.c b/drivers/platform/x86/amd/hsmp.c
>> index 31382ef52efb..94c65320bdcd 100644
>> --- a/drivers/platform/x86/amd/hsmp.c
>> +++ b/drivers/platform/x86/amd/hsmp.c
>> @@ -47,9 +47,23 @@
>>   #define HSMP_INDEX_REG               0xc4
>>   #define HSMP_DATA_REG                0xc8
>>
>> -static struct semaphore *hsmp_sem;
>> +#define HSMP_CDEV_NAME               "hsmp_cdev"
>> +#define HSMP_DEVNODE_NAME    "hsmp"
>>
>> -static struct miscdevice hsmp_device;
>> +struct hsmp_socket {
>> +     struct semaphore hsmp_sem;
>> +     u16 sock_ind;
>> +};
>> +
>> +struct hsmp_plat_device {
>> +     struct miscdevice hsmp_device;
>> +     struct hsmp_socket *sock;
>> +     struct device *dev;
>> +};
>> +
>> +static u16 num_sockets;
> Overall this patch looks good to me, but since
> num_sockets indicates the size of the plat_dev.sock array,
> num_sockets should IMHO itself also be part of
> struct hsmp_plat_device.
>
> (and all usages of "num_sockets" should then be replaced by
> "plat_dev.num_sockets")
>
> Other then that this looks good to me.
>
> Regards,
>
> Hans
>
>
>
>
>
>> +
>> +static struct hsmp_plat_device plat_dev;
>>
>>   static int amd_hsmp_rdwr(struct pci_dev *root, u32 address,
>>                         u32 *value, bool write)
>> @@ -188,6 +202,7 @@ static int validate_message(struct hsmp_message *msg)
>>
>>   int hsmp_send_message(struct hsmp_message *msg)
>>   {
>> +     struct hsmp_socket *sock = &plat_dev.sock[msg->sock_ind];
>>        struct amd_northbridge *nb;
>>        int ret;
>>
>> @@ -208,14 +223,13 @@ int hsmp_send_message(struct hsmp_message *msg)
>>         * In SMP system timeout of 100 millisecs should
>>         * be enough for the previous thread to finish the operation
>>         */
>> -     ret = down_timeout(&hsmp_sem[msg->sock_ind],
>> -                        msecs_to_jiffies(HSMP_MSG_TIMEOUT));
>> +     ret = down_timeout(&sock->hsmp_sem, msecs_to_jiffies(HSMP_MSG_TIMEOUT));
>>        if (ret < 0)
>>                return ret;
>>
>>        ret = __hsmp_send_message(nb->root, msg);
>>
>> -     up(&hsmp_sem[msg->sock_ind]);
>> +     up(&sock->hsmp_sem);
>>
>>        return ret;
>>   }
>> @@ -321,28 +335,31 @@ static int hsmp_pltdrv_probe(struct platform_device *pdev)
>>   {
>>        int i;
>>
>> -     hsmp_sem = devm_kzalloc(&pdev->dev,
>> -                             (amd_nb_num() * sizeof(struct semaphore)),
>> -                             GFP_KERNEL);
>> -     if (!hsmp_sem)
>> +     plat_dev.sock = devm_kzalloc(&pdev->dev,
>> +                                  (num_sockets * sizeof(struct hsmp_socket)),
>> +                                  GFP_KERNEL);
>> +     if (!plat_dev.sock)
>>                return -ENOMEM;
>> +     plat_dev.dev = &pdev->dev;
>>
>> -     for (i = 0; i < amd_nb_num(); i++)
>> -             sema_init(&hsmp_sem[i], 1);
>> +     for (i = 0; i < num_sockets; i++) {
>> +             sema_init(&plat_dev.sock[i].hsmp_sem, 1);
>> +             plat_dev.sock[i].sock_ind = i;
>> +     }
>>
>> -     hsmp_device.name        = "hsmp_cdev";
>> -     hsmp_device.minor       = MISC_DYNAMIC_MINOR;
>> -     hsmp_device.fops        = &hsmp_fops;
>> -     hsmp_device.parent      = &pdev->dev;
>> -     hsmp_device.nodename    = "hsmp";
>> -     hsmp_device.mode        = 0644;
>> +     plat_dev.hsmp_device.name       = HSMP_CDEV_NAME;
>> +     plat_dev.hsmp_device.minor      = MISC_DYNAMIC_MINOR;
>> +     plat_dev.hsmp_device.fops       = &hsmp_fops;
>> +     plat_dev.hsmp_device.parent     = &pdev->dev;
>> +     plat_dev.hsmp_device.nodename   = HSMP_DEVNODE_NAME;
>> +     plat_dev.hsmp_device.mode       = 0644;
>>
>> -     return misc_register(&hsmp_device);
>> +     return misc_register(&plat_dev.hsmp_device);
>>   }
>>
>>   static void hsmp_pltdrv_remove(struct platform_device *pdev)
>>   {
>> -     misc_deregister(&hsmp_device);
>> +     misc_deregister(&plat_dev.hsmp_device);
>>   }
>>
>>   static struct platform_driver amd_hsmp_driver = {
>> @@ -358,7 +375,6 @@ static struct platform_device *amd_hsmp_platdev;
>>   static int __init hsmp_plt_init(void)
>>   {
>>        int ret = -ENODEV;
>> -     u16 num_sockets;
>>        int i;
>>
>>        if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD || boot_cpu_data.x86 < 0x19) {

  reply	other threads:[~2023-09-15 11:49 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-06  7:12 [PATCH v2 1/4] platform/x86/amd/hsmp: create plat specific struct Suma Hegde
2023-09-06  7:13 ` [PATCH v2 2/4] platform/x86/amd/hsmp: add support for metrics tbl Suma Hegde
2023-09-06  7:13 ` [PATCH v2 3/4] platform/x86/amd/hsmp: improve the error log Suma Hegde
2023-09-06  7:13 ` [PATCH v2 4/4] Documentation: Add amd_hsmp sysfs file info Suma Hegde
2023-09-13 15:28   ` Hans de Goede
2023-09-13 15:27 ` [PATCH v2 1/4] platform/x86/amd/hsmp: create plat specific struct Hans de Goede
2023-09-15 11:49   ` Hegde, Suma [this message]
2023-09-13 15:28 ` Hans de Goede

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b7a40f81-dfae-8315-5b44-ebe59f387a1c@amd.com \
    --to=suma.hegde@amd.com \
    --cc=hdegoede@redhat.com \
    --cc=nchatrad@amd.com \
    --cc=platform-driver-x86@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox