From: Alison Schofield <alison.schofield@intel.com>
To: Dave Jiang <dave.jiang@intel.com>
Cc: Davidlohr Bueso <dave@stgolabs.net>,
Jonathan Cameron <jonathan.cameron@huawei.com>,
Vishal Verma <vishal.l.verma@intel.com>,
Ira Weiny <ira.weiny@intel.com>,
Dan Williams <dan.j.williams@intel.com>,
linux-cxl@vger.kernel.org
Subject: Re: [PATCH] cxl/region: Refactor granularity select in cxl_port_setup_targets()
Date: Mon, 14 Aug 2023 17:17:05 -0700 [thread overview]
Message-ID: <ZNrEAfT/4wXTNHjT@aschofie-mobl2> (raw)
In-Reply-To: <6a944c93-6ad6-c934-afa5-276277d4757d@intel.com>
On Wed, Aug 09, 2023 at 03:28:36PM -0700, Dave Jiang wrote:
>
>
> On 8/4/23 16:27, alison.schofield@intel.com wrote:
> > From: Alison Schofield <alison.schofield@intel.com>
> >
> > In cxl_port_setup_targets() the region driver validates the
> > configuration of auto-discovered region decoders, as well
> > as decoders the driver is preparing to program.
> >
> > The existing calculations use the encrypted interleave granularity
>
> s/encrypted/encoded/
Thanks. I'll clean up the language around this to use encoded & normal.
>
> > value, the eig, to create an interleave granularity that properly
> > fans out when routing an x1 interleave to a greater than x1 interleave.
> >
> > That all worked well, until this config came along:
> > Host Bridge: 2 way at 256 granularity
> > Switch Decoder_A: 1 way at 512
> > Endpoint_X: 2 way at 512
> > Switch Decoder_B: 1 way at 512
> > Endpoint_Y: 2 way at 512
> >
> > When the Host Bridge interleave is greater that 1, and the root
> > decoder interleave is exactly 1, the region driver needs to
> > consider the number of targets in the region when calculating
> > the expected granularity.
> >
> > While examining the existing logic, and trying to cover the case
> > above, a couple of simplifications appeared, hence this proposed
> > refactoring.
> >
> > The first simplicfication is to apply the logic to the unencrypted
> s/simplicfication/simplification/
> s/unencrypted/normal?/
Got it.
>
>
> > values and use the existing helper function granularity_to_eig() to
> > translate the desired granularity to the encrypted form. This means
>
> s/encrypted/encoded/
Got it.
>
> > the comment and code regarding setting address bits is discarded.
> > Although that logic was not wrong, it adds a level of complexity that
> > is not required in the granularity selection. The eig and eiw are
> > indeed part of the routing instructions programmed into the decoders.
> > Up-level the discussion to plain ways and granularity for clearer
> > analysis.
> >
> > The second simplification reduces the logic to a single granularity
> > calculation that works for all cases. The new calculation doesn't
> > care if parent_iw => 1, because parent_iw is used as a multiplier.
> >
> > The refactor cleans up a useless assignment of eiw, made after the iw
> > is already calculated.
> >
> > Regression testing included an examination of all of the ways and
> > granularity selections made during a run of the cxl_test unit tests.
> > There were no differences in selections before and after this patch.
> >
> > Signed-off-by: Alison Schofield <alison.schofield@intel.com>
> > ---
> > drivers/cxl/core/region.c | 17 ++++++++---------
> > 1 file changed, 8 insertions(+), 9 deletions(-)
> >
> > diff --git a/drivers/cxl/core/region.c b/drivers/cxl/core/region.c
> > index e115ba382e04..5a1cc59cca99 100644
> > --- a/drivers/cxl/core/region.c
> > +++ b/drivers/cxl/core/region.c
> > @@ -1154,16 +1154,15 @@ static int cxl_port_setup_targets(struct cxl_port *port,
> > }
> > /*
> > - * If @parent_port is masking address bits, pick the next unused address
> > - * bit to route @port's targets.
> > + * Interleave granularity is a multiple of @parent_port granularity.
> > + * Multiplier is the parent port interleave ways.
> > */
> > - if (parent_iw > 1 && cxl_rr->nr_targets > 1) {
> > - u32 address_bit = max(peig + peiw, eiw + peig);
> > -
> > - eig = address_bit - eiw + 1;
> > - } else {
> > - eiw = peiw;
> > - eig = peig;
> > + rc = granularity_to_eig(parent_ig * parent_iw, &eig);
> > + if (rc) {
> > + dev_dbg(&cxlr->dev,
> > + "%s: invalid granularity calculation (%d * %d)\n",
> > + dev_name(&parent_port->dev), parent_ig, parent_iw);
> > + return rc;
> > }
> > rc = eig_to_granularity(eig, &ig);
> >
> > base-commit: fe77cc2e5a6a7c85f5c6ef8a39d7694ffc7f41c9
prev parent reply other threads:[~2023-08-15 0:17 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-04 23:27 [PATCH] cxl/region: Refactor granularity select in cxl_port_setup_targets() alison.schofield
2023-08-05 2:49 ` Dan Williams
2023-08-15 0:27 ` Alison Schofield
2023-08-07 13:26 ` Jonathan Cameron
2023-08-15 0:23 ` Alison Schofield
2023-08-09 22:28 ` Dave Jiang
2023-08-15 0:17 ` Alison Schofield [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=ZNrEAfT/4wXTNHjT@aschofie-mobl2 \
--to=alison.schofield@intel.com \
--cc=dan.j.williams@intel.com \
--cc=dave.jiang@intel.com \
--cc=dave@stgolabs.net \
--cc=ira.weiny@intel.com \
--cc=jonathan.cameron@huawei.com \
--cc=linux-cxl@vger.kernel.org \
--cc=vishal.l.verma@intel.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