linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: John Garry <john.garry@huawei.com>
To: Arnd Bergmann <arnd@arndb.de>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Len Brown <lenb@kernel.org>, <jeremy.linton@arm.com>,
	Olof Johansson <olof@lixom.net>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"ACPI Devel Maling List" <linux-acpi@vger.kernel.org>,
	Hanjun Guo <guohanjun@huawei.com>,
	gregkh <gregkh@linuxfoundation.org>
Subject: Re: [PATCH RFC 2/2] soc: Add a basic ACPI generic driver
Date: Tue, 28 Jan 2020 14:46:07 +0000	[thread overview]
Message-ID: <683fc9df-3655-5044-f81c-00e2896a268d@huawei.com> (raw)
In-Reply-To: <CAK8P3a2famGETLM7JgEh+eUJ9HSqm_Fu79uAkU_BPOkDvV2ROg@mail.gmail.com>

On 28/01/2020 12:50, Arnd Bergmann wrote:

Hi Arnd,

> On Tue, Jan 28, 2020 at 12:18 PM John Garry <john.garry@huawei.com> wrote:
>>
>> Add a generic driver for platforms which populate their ACPI PPTT
>> processor package ID Type Structure according to suggestion in the ACPI
>> spec - see ACPI 6.2, section 5.2.29.3 ID structure Type 2.
>>
>> The soc_id is from member LEVEL_2_ID.
>>
>> For this, we need to use a whitelist of platforms which are known to
>> populate the structure as suggested.
>>
>> For now, only the vendor and soc_id fields are exposed.
>>
>> Signed-off-by: John Garry <john.garry@huawei.com>
> 
> Would it be possible to make this the root device for all on-chip devices
> to correctly reflect the hierarchy inside of the soc?

I don't think so. The information about the SoC is got from the PPTT, 
which only describes processors, caches, and physical package 
boundaries. It doesn't include references to on-chip devices.

Having said that (and unrelated to this series), we could add 
/sys/devices/system/soc folder, similar to node folder.

> 
>> +/*
>> + * Known platforms that fill in PPTT package ID structures according to
>> + * ACPI spec examples, that being:
>> + * - Custom driver attribute is in ID Type Structure VENDOR_ID member
>> + * - SoC id is in ID Type Structure LEVEL_2_ID member
>> + *    See ACPI SPEC 6.2 Table 5-154 for PPTT ID Type Structure
>> + */
>> +static struct acpi_platform_list plat_list[] = {
>> +       {"HISI  ", "HIP08   ", 0, ACPI_SIG_PPTT, all_versions},
>> +       { } /* End */
>> +};
> 
> That matches a single machine, right? It doesn't seem very generic
> that way.

Yes :) The problem is that the PPTT ID structure is open to use how the 
implementer wants, so we can't assume everything/anything implemented 
according to the spec examples. Maybe we could call it type1 or 
something like that for platforms which did use the convention in the 
spec example.

> 
>> +struct acpi_generic_soc_struct {
>> +       struct soc_device_attribute dev_attr;
>> +       u32 vendor;
>> +};
>> +
>> +static ssize_t vendor_show(struct device *dev,
>> +                          struct device_attribute *attr,
>> +                          char *buf)
>> +{
>> +       struct acpi_generic_soc_struct *soc = dev_get_drvdata(dev);
>> +       u8 vendor_id[5] = {};
>> +
>> +       *(u32 *)vendor_id = soc->vendor;
>> +
>> +       return sprintf(buf, "%s\n", vendor_id);
>> +}
> 
> I'd rather not see nonstandard attributes in a "generic" driver at
> all. Maybe the
> you can simply concatenate the vendor and  LEVEL_2_ID into a single string
> here?

I actually don't really require the vendor attr. And since "vendor" is 
not in the set of standard soc driver attrs, it can just be omitted.

> 
>> +                       soc = kzalloc(sizeof(*soc), GFP_KERNEL);
>> +                       if (!soc)
>> +                               return -ENOMEM;
>> +
>> +                       soc_dev_attr = &soc->dev_attr;
>> +                       soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%s",
>> +                                                        soc_id);
> 
> On the other hand, it would make sense to fill out additional fields here.
> You have already matched the name of the board from the
> acpi_platform_list, so there are two strings available that could be put
> into the "machine" field, and it would make sense to fill out "family" with
> something that identifies it as coming from ACPI PPTT data.

OK, maybe the ones you suggested could be added. I did just want to 
start out with a minimal sets of files, especially since we don't always 
have a direct mapping between soc driver attrs and this PPTT ID structure.

Thanks,
John

  reply	other threads:[~2020-01-28 15:01 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-28 11:14 [PATCH RFC 0/2] Add basic generic ACPI soc driver John Garry
2020-01-28 11:14 ` [PATCH RFC 1/2] ACPI/PPTT: Add acpi_pptt_get_package_info() API John Garry
2020-01-28 12:34   ` Sudeep Holla
2020-01-28 14:04     ` John Garry
2020-01-28 14:54       ` Sudeep Holla
2020-01-29 11:03         ` John Garry
2020-01-30 11:23     ` Sudeep Holla
2020-01-30 16:12       ` John Garry
2020-01-30 17:41         ` Sudeep Holla
2020-01-31 10:58           ` John Garry
2020-01-28 11:14 ` [PATCH RFC 2/2] soc: Add a basic ACPI generic driver John Garry
2020-01-28 11:56   ` Greg KH
2020-01-28 13:33     ` John Garry
2020-01-28 12:50   ` Arnd Bergmann
2020-01-28 14:46     ` John Garry [this message]
2020-01-28 15:20   ` Sudeep Holla
2020-01-28 15:59     ` John Garry
2020-01-28 16:17       ` Sudeep Holla
2020-01-28 17:51   ` Olof Johansson
2020-01-28 18:22     ` John Garry
2020-01-28 19:11       ` Rafael J. Wysocki
2020-01-28 19:28         ` John Garry
2020-01-28 22:30           ` Rafael J. Wysocki
2020-01-29 10:27             ` John Garry
2020-01-28 20:06       ` Olof Johansson
2020-01-29  9:58         ` John Garry
2020-01-28 16:56 ` [PATCH RFC 0/2] Add basic generic ACPI soc driver Jeremy Linton
2020-01-28 17:28   ` John Garry
2020-01-28 19:04     ` Jeremy Linton
2020-01-28 20:07       ` John Garry

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=683fc9df-3655-5044-f81c-00e2896a268d@huawei.com \
    --to=john.garry@huawei.com \
    --cc=arnd@arndb.de \
    --cc=gregkh@linuxfoundation.org \
    --cc=guohanjun@huawei.com \
    --cc=jeremy.linton@arm.com \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=olof@lixom.net \
    --cc=rjw@rjwysocki.net \
    /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;
as well as URLs for NNTP newsgroup(s).