linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Jann Horn <jannh@google.com>
Cc: Lu Baolu <baolu.lu@linux.intel.com>,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
	x86@kernel.org
Subject: Re: [PATCH] USB: early: Handle AMD's spec-compliant identifiers, too
Date: Wed, 1 Apr 2020 09:52:33 +0200	[thread overview]
Message-ID: <20200401075233.GB2020503@kroah.com> (raw)
In-Reply-To: <20200401074619.8024-1-jannh@google.com>

On Wed, Apr 01, 2020 at 09:46:19AM +0200, Jann Horn wrote:
> This fixes a bug that causes the USB3 early console to freeze after
> printing a single line on AMD machines because it can't parse the
> Transfer TRB properly.
> 
> The spec at
> https://www.intel.com/content/dam/www/public/us/en/documents/technical-specifications/extensible-host-controler-interface-usb-xhci.pdf
> says in section "4.5.1 Device Context Index" that the Context Index,
> also known as Endpoint ID according to
> section "1.6 Terms and Abbreviations", is normally computed as
> `DCI = (Endpoint Number * 2) + Direction`, which matches the current
> definitions of XDBC_EPID_OUT and XDBC_EPID_IN.
> 
> However, the numbering in a Debug Capability Context data structure is
> supposed to be different:
> Section "7.6.3.2 Endpoint Contexts and Transfer Rings" explains that a
> Debug Capability Context data structure has the endpoints mapped to indices
> 0 and 1.
> 
> Change XDBC_EPID_OUT/XDBC_EPID_IN to the spec-compliant values, add
> XDBC_EPID_OUT_INTEL/XDBC_EPID_IN_INTEL with Intel's incorrect values, and
> let xdbc_handle_tx_event() handle both.
> 
> I have verified that with this patch applied, the USB3 early console works
> on both an Intel and an AMD machine.
> 
> Fixes: aeb9dd1de98c ("usb/early: Add driver for xhci debug capability")
> Cc: stable@vger.kernel.org
> Signed-off-by: Jann Horn <jannh@google.com>
> ---
>  drivers/usb/early/xhci-dbc.c |  8 ++++----
>  drivers/usb/early/xhci-dbc.h | 18 ++++++++++++++++--
>  2 files changed, 20 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/usb/early/xhci-dbc.c b/drivers/usb/early/xhci-dbc.c
> index cac991173ac0..5a462a1d1896 100644
> --- a/drivers/usb/early/xhci-dbc.c
> +++ b/drivers/usb/early/xhci-dbc.c
> @@ -728,19 +728,19 @@ static void xdbc_handle_tx_event(struct xdbc_trb *evt_trb)
>  	case COMP_USB_TRANSACTION_ERROR:
>  	case COMP_STALL_ERROR:
>  	default:
> -		if (ep_id == XDBC_EPID_OUT)
> +		if (ep_id == XDBC_EPID_OUT || ep_id == XDBC_EPID_OUT_INTEL)
>  			xdbc.flags |= XDBC_FLAGS_OUT_STALL;
> -		if (ep_id == XDBC_EPID_IN)
> +		if (ep_id == XDBC_EPID_IN || ep_id == XDBC_EPID_IN_INTEL)
>  			xdbc.flags |= XDBC_FLAGS_IN_STALL;
>  
>  		xdbc_trace("endpoint %d stalled\n", ep_id);
>  		break;
>  	}
>  
> -	if (ep_id == XDBC_EPID_IN) {
> +	if (ep_id == XDBC_EPID_IN || ep_id == XDBC_EPID_IN_INTEL) {
>  		xdbc.flags &= ~XDBC_FLAGS_IN_PROCESS;
>  		xdbc_bulk_transfer(NULL, XDBC_MAX_PACKET, true);
> -	} else if (ep_id == XDBC_EPID_OUT) {
> +	} else if (ep_id == XDBC_EPID_OUT || ep_id == XDBC_EPID_OUT_INTEL) {
>  		xdbc.flags &= ~XDBC_FLAGS_OUT_PROCESS;
>  	} else {
>  		xdbc_trace("invalid endpoint id %d\n", ep_id);
> diff --git a/drivers/usb/early/xhci-dbc.h b/drivers/usb/early/xhci-dbc.h
> index 673686eeddd7..6e2b7266a695 100644
> --- a/drivers/usb/early/xhci-dbc.h
> +++ b/drivers/usb/early/xhci-dbc.h
> @@ -120,8 +120,22 @@ struct xdbc_ring {
>  	u32			cycle_state;
>  };
>  
> -#define XDBC_EPID_OUT		2
> -#define XDBC_EPID_IN		3
> +/*
> + * These are the "Endpoint ID" (also known as "Context Index") values for the
> + * OUT Transfer Ring and the IN Transfer Ring of a Debug Capability Context data
> + * structure.
> + * According to the "eXtensible Host Controller Interface for Universal Serial
> + * Bus (xHCI)" specification, section "7.6.3.2 Endpoint Contexts and Transfer
> + * Rings", these should be 0 and 1, and those are the values AMD machines give
> + * you; but Intel machines seem to use the formula from section "4.5.1 Device
> + * Context Index", which is supposed to be used for the Device Context only.
> + * Luckily the values from Intel don't overlap with those from AMD, so we can
> + * just test for both.
> + */
> +#define XDBC_EPID_OUT		0
> +#define XDBC_EPID_IN		1
> +#define XDBC_EPID_OUT_INTEL	2
> +#define XDBC_EPID_IN_INTEL	3
>  
>  struct xdbc_state {
>  	u16			vendor;
> -- 
> 2.26.0.rc2.310.g2932bb562d-goog
> 

Thanks for this, I'll queue it up after 5.7-rc1 is out.

greg k-h

      reply	other threads:[~2020-04-01  7:52 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-01  7:46 [PATCH] USB: early: Handle AMD's spec-compliant identifiers, too Jann Horn
2020-04-01  7:52 ` Greg Kroah-Hartman [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=20200401075233.GB2020503@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=baolu.lu@linux.intel.com \
    --cc=jannh@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=x86@kernel.org \
    /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).