From: Madhavan Srinivasan <maddy@linux.vnet.ibm.com>
To: Daniel Axtens <dja@axtens.net>
Cc: linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
Stephane Eranian <eranian@google.com>,
Paul Mackerras <paulus@samba.org>,
Anton Blanchard <anton@samba.org>,
Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>,
Anshuman Khandual <khandual@linux.vnet.ibm.com>
Subject: Re: [PATCH v5 3/7] powerpc/powernv: Nest PMU detection and device tree parser
Date: Thu, 23 Jul 2015 11:24:58 +0530 [thread overview]
Message-ID: <55B081B2.4050001@linux.vnet.ibm.com> (raw)
In-Reply-To: <1437536981.30906.9.camel@axtens.net>
On Wednesday 22 July 2015 09:19 AM, Daniel Axtens wrote:
> Hi,
>
>> +static struct perchip_nest_info p8_nest_perchip_info[P8_NEST_MAX_CHIPS];
>> +
>> +static int nest_ima_dt_parser(void)
>> +{
>> + const __be32 *gcid;
>> + const __be64 *chip_ima_reg;
>> + const __be64 *chip_ima_size;
>> + struct device_node *dev;
>> + struct perchip_nest_info *p8ni;
>> + int idx;
>> +
>> + /*
>> + * "nest-ima" folder contains two things,
>> + * a) per-chip reserved memory region for Nest PMU Counter data
>> + * b) Support Nest PMU units and their event files
>> + */
>> + for_each_node_with_property(dev, "ibm,ima-chip") {
>> + gcid = of_get_property(dev, "ibm,chip-id", NULL);
>> + chip_ima_reg = of_get_property(dev, "reg", NULL);
>> + chip_ima_size = of_get_property(dev, "size", NULL);
>> +
>> + if ((!gcid) || (!chip_ima_reg) || (!chip_ima_size)) {
>> + pr_err("Nest_PMU: device %s missing property\n",
>> + dev->full_name);
>> + return -ENODEV;
>> + }
>> +
>> + /* chip id to save reserve memory region */
>> + idx = (uint32_t)be32_to_cpup(gcid);
> So be32_to_cpup returns a __u32. You're casting to a uint32_t and then
> assigning to an int.
> - Do you need the intermediate cast?
> - Should idx be an unsigned type?
my bad, sorry abt type case of uint to int.
And your are right, idx can be __u32 (__u32 and uint32_t are same i
guess).
>> +
>> + /*
>> + * Using a local variable to make it compact and
>> + * easier to read
>> + */
> We probably don't need this comment. But a better variable name would be
> helpful!
I dont want a long name since i end up with 80 char limit warning.
but let me see.
>> + p8ni = &p8_nest_perchip_info[idx];
>> + p8ni->pbase = be64_to_cpup(chip_ima_reg);
>> + p8ni->size = be64_to_cpup(chip_ima_size);
>> + p8ni->vbase = (uint64_t) phys_to_virt(p8ni->pbase);
>> + }
>> +
>> + return 0;
>> +}
>> +
>> +static int __init nest_pmu_init(void)
>> +{
>> + int ret = -ENODEV;
>> +
>> + /*
>> + * Lets do this only if we are hypervisor
>> + */
>> + if (!cur_cpu_spec->oprofile_cpu_type ||
>> + !(strcmp(cur_cpu_spec->oprofile_cpu_type, "ppc64/power8") == 0) ||
>> + !cpu_has_feature(CPU_FTR_HVMODE))
>> + return ret;
>> +
> I'm still really uncomfortable with doing this via oprofile_cpu_type.
> If the kernel is compiled without oprofile support, will that get
> populated?
I checked the per thread pmu register code and it all does the name.
But that should not stop nest pmu to enable. So probability,
I can carry only the HV mode check and drop the oprofile check.
>
> I'm also curious about why we need checking for power8 at all. We
> already know we're not going to run on hardware without a nest PMU
> because of the device tree check below.
> What happens if there's a future generation of chip that supports nest
> PMUs?
>
> If it's really important to check versions in this function, maybe you
> could put a version property in the ibm,ima-chip node?
True. I should not checkout power8 now, since we enable based on device tree
entries for Nest pmu.
>> + /*
>> + * Nest PMU information is grouped under "nest-ima" node
>> + * of the top-level device-tree directory. Detect Nest PMU
>> + * by the "ibm,ima-chip" property.
>> + */
>> + if (!of_find_node_with_property(NULL, "ibm,ima-chip"))
>> + return ret;
>> +
>> + /*
>> + * Parse device-tree for Nest PMU information
>> + */
>> + ret = nest_ima_dt_parser();
>> + if (ret)
>> + return ret;
>> +
>> + return 0;
>> +}
>> +device_initcall(nest_pmu_init);
next prev parent reply other threads:[~2015-07-23 5:55 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-16 11:13 [PATCH v5 0/7]powerpc/powernv: Nest Instrumentation support Madhavan Srinivasan
2015-07-16 11:13 ` [PATCH v5 1/7] powerpc/powernv: Data structure and macros definition Madhavan Srinivasan
2015-07-16 11:13 ` [PATCH v5 2/7] powerpc/powernv: Add OPAL support for Nest PMU Madhavan Srinivasan
2015-07-16 11:13 ` [PATCH v5 3/7] powerpc/powernv: Nest PMU detection and device tree parser Madhavan Srinivasan
2015-07-22 3:49 ` Daniel Axtens
2015-07-23 5:54 ` Madhavan Srinivasan [this message]
2015-07-23 9:16 ` Michael Ellerman
2015-07-23 9:26 ` Madhavan Srinivasan
2015-07-16 11:13 ` [PATCH v5 4/7] powerpc/powernv: detect supported nest pmus and its events Madhavan Srinivasan
2015-07-22 4:07 ` Daniel Axtens
2015-07-23 6:03 ` Madhavan Srinivasan
2015-07-23 9:11 ` Michael Ellerman
2015-07-23 9:23 ` Madhavan Srinivasan
2015-07-16 11:13 ` [PATCH v5 5/7] powerpc/powernv: add event attribute and group to nest pmu Madhavan Srinivasan
2015-07-22 4:44 ` Daniel Axtens
2015-07-23 6:32 ` Madhavan Srinivasan
2015-07-16 11:13 ` [PATCH v5 6/7] powerpc/powernv: generic nest pmu event functions Madhavan Srinivasan
2015-07-22 4:56 ` Daniel Axtens
2015-07-23 6:44 ` Madhavan Srinivasan
2015-07-23 9:04 ` Michael Ellerman
2015-07-23 9:22 ` Madhavan Srinivasan
2015-07-16 11:13 ` [PATCH v5 7/7] powerpc/powernv: nest pmu cpumask and cpu hotplug support Madhavan Srinivasan
2015-07-22 5:03 ` Daniel Axtens
2015-07-23 6:48 ` Madhavan Srinivasan
2015-07-23 6:49 ` Daniel Axtens
2015-07-23 7:25 ` Madhavan Srinivasan
2015-07-20 18:43 ` [PATCH v5 0/7]powerpc/powernv: Nest Instrumentation support Sukadev Bhattiprolu
2015-07-23 6:44 ` Madhavan Srinivasan
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=55B081B2.4050001@linux.vnet.ibm.com \
--to=maddy@linux.vnet.ibm.com \
--cc=anton@samba.org \
--cc=dja@axtens.net \
--cc=eranian@google.com \
--cc=khandual@linux.vnet.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=paulus@samba.org \
--cc=sukadev@linux.vnet.ibm.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.