DPDK patches and discussions
 help / color / mirror / Atom feed
From: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
To: Jerin Jacob <jerin.jacob@caviumnetworks.com>
Cc: dev@dpdk.org, harry.van.haaren@intel.com, bruce.richardson@intel.com
Subject: Re: [dpdk-dev] [PATCH v3] eal/x86: implement x86 specific tsc hz
Date: Mon, 2 Oct 2017 12:27:28 +0100	[thread overview]
Message-ID: <82b7e8fd-c614-fd1c-2bc6-5da8cce33ceb@intel.com> (raw)
In-Reply-To: <20171002112403.GA13389@jerin>

On 02/10/2017 12:24, Jerin Jacob wrote:
> -----Original Message-----
>> Date: Mon, 2 Oct 2017 12:17:38 +0100
>> From: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
>> To: dev@dpdk.org
>> CC: harry.van.haaren@intel.com, bruce.richardson@intel.com
>> Subject: [dpdk-dev] [PATCH v3] eal/x86: implement x86 specific tsc hz
>> X-Mailer: git-send-email 2.9.5
>>
>> First, try to use CPUID Time Stamp Counter and Nominal Core Crystal
>> Clock Information Leaf to determine the tsc hz on platforms that
>> supports it (does not require privileged user).
>>
>> If the CPUID leaf is not available, then try to determine the tsc hz by
>> reading the MSR 0xCE (requires privileged user).
>>
>> Default to the tsc hz estimation if both methods fail.
>>
>> Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
>> Acked-by: Harry van Haaren <harry.van.haaren@intel.com>
>> Tested-by: Bruce Richardson <bruce.richardson@intel.com>
>> ---
>> DEPENDS on:
>> http://dpdk.org/dev/patchwork/patch/29086/
>>
>> v3:
>>   - acked-by and tested-by tags
>>
>> v2:
>>   - fix misspelled word in commit message
>>   - address comment for more clear code
>>
>>   lib/librte_eal/common/arch/x86/rte_cycles.c        | 142 +++++++++++++++++++++
>>   .../common/include/arch/x86/rte_cycles.h           |   7 +-
>>   lib/librte_eal/linuxapp/eal/Makefile               |   1 +
>>   3 files changed, 145 insertions(+), 5 deletions(-)
>>   create mode 100644 lib/librte_eal/common/arch/x86/rte_cycles.c
>> +
>> +static uint32_t
>> +check_model_wsm_nhm(uint8_t model)
>> +{
>> +	switch (model) {
>> +	/* Westmere */
>> +	case 0x25:
>> +	case 0x2C:
>> +	case 0x2F:
>> +	/* Nehalem */
>> +	case 0x1E:
>> +	case 0x1F:
>> +	case 0x1A:
> See next comment.
>
>> +	case 0x2E:
>> +		return 1;
>> +	}
>> +
>> +	return 0;
>> +}
>> +
>> +static uint32_t
>> +check_model_gdm_dnv(uint8_t model)
>> +{
>> +	switch (model) {
>> +	/* Goldmont */
>> +	case 0x5C:
>> +	/* Denverton */
> Not adding "/* fall-through */" may break gcc 7 build.

See Bruce's comment on:
http://dpdk.org/ml/archives/dev/2017-September/074259.html

Thanks,
Sergio

      reply	other threads:[~2017-10-02 11:27 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-23 15:00 [dpdk-dev] [PATCH] " Sergio Gonzalez Monroy
2017-08-23 15:00 ` [dpdk-dev] [PATCH] eal/x86: use cpuid builtin Sergio Gonzalez Monroy
2017-10-04 23:39   ` Ferruh Yigit
2017-10-11 20:00     ` Thomas Monjalon
2017-09-04  9:38 ` [dpdk-dev] [PATCH] eal/x86: implement x86 specific tsc hz Van Haaren, Harry
2017-09-04 10:24   ` Bruce Richardson
2017-09-04 10:32     ` Bruce Richardson
2017-10-02 10:09 ` [dpdk-dev] [PATCH v2] " Sergio Gonzalez Monroy
2017-10-02 11:17   ` [dpdk-dev] [PATCH v3] " Sergio Gonzalez Monroy
2017-10-02 11:24     ` Jerin Jacob
2017-10-02 11:27       ` Sergio Gonzalez Monroy [this message]

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=82b7e8fd-c614-fd1c-2bc6-5da8cce33ceb@intel.com \
    --to=sergio.gonzalez.monroy@intel.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=harry.van.haaren@intel.com \
    --cc=jerin.jacob@caviumnetworks.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 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).