DPDK patches and discussions
 help / color / mirror / Atom feed
From: Thomas Monjalon <thomas@monjalon.net>
To: Jerin Jacob Kollanukkaran <jerinj@marvell.com>,
	"yskoh@mellanox.com" <yskoh@mellanox.com>
Cc: "shahafs@mellanox.com" <shahafs@mellanox.com>,
	"honnappa.nagarahalli@arm.com" <honnappa.nagarahalli@arm.com>,
	"Gavin.Hu@arm.com" <Gavin.Hu@arm.com>,
	"tspeier@qti.qualcomm.com" <tspeier@qti.qualcomm.com>,
	"bluca@debian.org" <bluca@debian.org>,
	"dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [EXT] [PATCH] config: change default cache line size for ARMv8 with meson
Date: Wed, 09 Jan 2019 14:30:53 +0100	[thread overview]
Message-ID: <3649611.6SvQ7ZztEu@xps> (raw)
In-Reply-To: <b660e8fba3474d07602a1b18a74a4c9adba86db6.camel@marvell.com>

09/01/2019 13:47, Jerin Jacob Kollanukkaran:
> On Wed, 2019-01-09 at 12:28 +0100, Thomas Monjalon wrote:
> > 09/01/2019 11:49, Jerin Jacob Kollanukkaran:
> > > On Wed, 2019-01-09 at 10:22 +0000, Yongseok Koh wrote:
> > > > On Jan 9, 2019, at 2:09 AM, Jerin Jacob Kollanukkaran wrote:
> > > > > I think, I way forward is to add
> > > > > config/arm/arm64_a72_linuxapp_gcc
> > > > > for meson. This config can be used for all SoC with A72 armv8 
> > > > > implementation and may have sym link to specfific SoC to avoid
> > > > > confusion to end users.
> > > > 
> > > > Is config/arm/arm64_a72_linuxapp_gcc valid? Others have 
> > > 
> > > Yes. For cross compiling for A72.
> > 
> > Any cross-compilation with meson requires a config file.
> > The default Arm cross-compilation is done with
> > 	config/arm/arm64_armv8_linuxapp_gcc
> > which set implementor_id = 'generic'
> > 
> > For native compilation, implementor_id is detected from
> > /sys/devices/system/cpu/cpu0/regs/identification/midr_el1
> > 
> > So each Arm machine needs 2 things:
> > 	- a cross-compilation file
> > 	- settings based on implementor_id in config/arm/meson.build
> 
> Yes. config/arm/arm64_armv8_linuxapp_gcc sets the implementor_id =
> 'generic' which assumed to generic across all the armv8 platform.
> If tomorrow there is new core from ARM which A100 with armv8.2 specific
> we can not tune the generic params armv8.2 as it will break other 
> CPU.
> 
> 
> > > Having not seperate IMPLEMENTOR ID is a chip design issue.
> > 
> > No I don't think it's a design issue.
> > If the Arm core has no modification, it does not need to be
> > specially identified.
> 
> Thats right. It does not need to be specially identified,
> then should have default config is enough. 
> 
> 
> > 
> > > I think it can work around by creating
> > > config/arm/arm64_<your_soc_name>_linuxapp_gcc
> > > and build on x86 or arm64 through
> > > 
> > > meson build --cross-file
> > > config/arm/arm64_<your_soc_name>_linuxapp_gcc
> > 
> > No, it is a real A72, so it should work with default settings.
> > 
> > The only issue we have is that the default cache line size for
> > Aarch64
> > is set to 128 in config/arm/meson.build, and this is wrong.
> > The default cache line is 64 bits.
> 
> The cache line size as per ARM spec it is IMPLEMENTATION DEFINED.

In A72 spec, it is said
"Returns 0b010 to indicate that the cache line size is 64 bytes."
But I guess we cannot say it is always true for all models.
So let's assume there is no default.

> So no default there. So the default is something work on all platforms.
> Actually Cavium has machine with 64B and 128B CL and same image should
> work on both for generic build.
> 
> > This is already overriden for Cavium machines which have 128-bit
> > cache lines.
> > It may be needed to do the same change for other machines (Qualcomm?)
> > having Arm core modified to 128-bit cache lines.
> 
> Assume you meant 128B here.

Yes, sorry I mixed bits and bytes :)

> Building the image Naively(on 128B CL
> machine) and cross compile (on x86) is not an issue.
> 
> > 
> > The other concern is about running a generic Arm build.
> 
> Yes. That's the ONLY concern.
> 
> > Given 64-bit should be the default, generic builds will have this
> > value.
> > Is it a big issue for running generic 64-bit build on Cavium
> > machines?
> 
> Cavium has both 64B and 128B CL machines. So putting generic form,
> 
> You can run 128B configured image on 64B machine, It will waste some
> memory not beyond that. Other way around will result in HW misbehavior.
> ie Running 64B CL image on 128B target.

Indeed it is the main concern.
Running DPDK tuned for 128 bytes on a core having 64 bytes cache line
will result in lower performances. It is less an issue than HW misbehavior.

If we agree to keep 128 bytes as generic cache line size for Arm,
we need a way to get 64 bytes size for unmodified cores.
In other words, the generic build settings must be different of
the default settings.

Please make a difference between default 'armv8' and 'generic'
as implementor_id in config/arm/meson.build.
I propose arm64_armv8_linuxapp_gcc being the default config (for armv8)
and creating arm64_generic_linuxapp_gcc for the generic build (for distros).

OK?

  reply	other threads:[~2019-01-09 13:31 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-09  9:39 [dpdk-dev] " Yongseok Koh
2019-01-09 10:09 ` [dpdk-dev] [EXT] " Jerin Jacob Kollanukkaran
2019-01-09 10:19   ` Luca Boccassi
2019-01-09 10:52     ` Jerin Jacob Kollanukkaran
2019-01-09 13:14       ` Luca Boccassi
2019-01-09 10:22   ` Yongseok Koh
2019-01-09 10:49     ` Jerin Jacob Kollanukkaran
2019-01-09 11:28       ` Thomas Monjalon
2019-01-09 12:47         ` Jerin Jacob Kollanukkaran
2019-01-09 13:30           ` Thomas Monjalon [this message]
2019-01-09 14:23             ` Jerin Jacob Kollanukkaran
2019-01-09 14:57               ` Thomas Monjalon
2019-01-09 15:34                 ` [dpdk-dev] " Jerin Jacob Kollanukkaran
2019-01-09 15:41                   ` Luca Boccassi
2019-01-09 16:36                     ` [dpdk-dev] [EXT] " Pavan Nikhilesh Bhagavatula
2019-01-09 16:52                       ` Luca Boccassi
2019-01-09 17:01                         ` Pavan Nikhilesh Bhagavatula
2019-01-14  4:32                 ` [dpdk-dev] [EXT] " Yongseok Koh
2019-01-14  7:44                   ` Honnappa Nagarahalli
2019-01-16  2:02                     ` Honnappa Nagarahalli
2019-01-19  7:09                       ` Yongseok Koh
2019-01-22 18:51                         ` Honnappa Nagarahalli
2019-01-23  8:56                           ` Jerin Jacob Kollanukkaran
2019-01-23 16:24                             ` Honnappa Nagarahalli
2019-01-23 17:19                               ` Jerin Jacob Kollanukkaran

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=3649611.6SvQ7ZztEu@xps \
    --to=thomas@monjalon.net \
    --cc=Gavin.Hu@arm.com \
    --cc=bluca@debian.org \
    --cc=dev@dpdk.org \
    --cc=honnappa.nagarahalli@arm.com \
    --cc=jerinj@marvell.com \
    --cc=shahafs@mellanox.com \
    --cc=tspeier@qti.qualcomm.com \
    --cc=yskoh@mellanox.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).