Re: [PATCH 2/3] nvme: Retrieve the required IO queue entry size from the controller

From: Benjamin Herrenschmidt
Date: Tue Jul 16 2019 - 02:21:36 EST


On Tue, 2019-07-16 at 08:04 +0200, Christoph Hellwig wrote:
> >
> > + /*
> > + * If our IO queue size isn't the default, update the setting
> > + * in CC:IOSQES.
> > + */
> > + if (ctrl->iosqes != NVME_NVM_IOSQES) {
> > + ctrl->ctrl_config &= ~(0xfu << NVME_CC_IOSQES_SHIFT);
> > + ctrl->ctrl_config |= ctrl->iosqes << NVME_CC_IOSQES_SHIFT;
> > + ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC,
> > + ctrl->ctrl_config);
> > + if (ret) {
> > + dev_err(ctrl->device,
> > + "error updating CC register\n");
> > + goto out_free;
> > + }
> > + }
>
> Actually, this doesn't work on a "real" nvme controller, to change CC
> values the controller needs to be disabled.

Not really. The specs says that MPS, AMD and CSS need to be set before
enabling, but IOCQES and IOSQES can be modified later as long as there
is no IO queue created yet.

This is necessary otherwise there's a chicken and egg problem. You need
the admin queue to do the controller id in order to get the sizes and
for that you need the controller to be enabled.

Note: This is not a huge issue anyway since I only update the register
if the required size isn't 6 which is probably never going to be the
case on non-Apple HW.

> So back to the version
> you circulated to me in private mail that just sets q->sqes and has a
> comment that this is magic for The Apple controller. If/when we get
> standardized large SQE support we'll need to discover that earlier or
> do a disable/enable dance. Sorry for misleading you down this road and
> creating the extra work.

I think it's still ok, let me know...

Ben.