linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lu Baolu <baolu.lu@linux.intel.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v7 00/10] usb: early: add support for early printk through USB3 debug port
Date: Tue, 2 Feb 2016 22:34:34 +0800	[thread overview]
Message-ID: <56B0BE7A.6070201@linux.intel.com> (raw)
In-Reply-To: <1453813096-6991-1-git-send-email-baolu.lu@linux.intel.com>



On 01/26/2016 08:58 PM, Lu Baolu wrote:
> Hi,
>
> This patch series adds support for early printk through USB3 debug port.
> USB3 debug port is described in xHCI specification as an optional extended
> capability.
>
> Patch 1 to 9 add the driver for xHCI debug capability. It interfaces with
> the register set and provides the required ops (read/write/control) to upper
> layers. Early printk is one consumer of these ops. The hooks for early printk
> are introduced in patch 8. This design is similar to what we have done in
> drivers/usb/early/ehci-dbgp.c.
>
> Patch 10 is the design document and user guide.
>
> Change log:
> v1->v2:
> (1) Patch 1 re-implemented. "debugfs" has been replaced with sysfs.
>     The scope reduced from all extended capabilities to debug port
>     specific.
> (2) Patch 11 changed. Removed unnecessary .bulk_out_size setting.
>
> v2->v3:
> (1) Patch 11 got acked by Johan Hovold.
>
> v3->v4:
> (1) Patch 1 code refactored by using xhci_find_ext_cap_by_id() helper.
> (2) Patch 3 "bus hung state" changed to "port hung state" in commit message.
> (3) Patch 12 added verified platform information.
>
> v4->v5:
> (1) Patch 1 & 3 code refactored by using xhci_find_next_ext_cap() helper.
> (2) Patch 12 updated with more user guide information.
> (3) All patches rebased to the new usb-next branch which contains commit
>     d5ddcdf(xhci: rework xhci extended capability list parsing functions).
>
> v5->v6:
> (1) refresh the patches against 4.5-rc1.
> (2) change "usb: xhci: dbc" to "usb: dbc" in the patch titles as they
>     are not part of xhci driver.
>
> v6->v7:
> (1) two patches removed from the patch series. One belongs to xHCI host
>     controller driver, and another belongs to usb/serial.
> (2) add fix for 0-DAY kernel test warning:
>     drivers/usb/early/xhci-dbc.c:917:6-10: WARNING:
>     Unsigned expression compared with zero: size > 0
> (3) add fix for 0-DAY kernel test error:
>     arch/x86/built-in.o: In function `setup_early_printk':
>     early_printk.c:(.init.text+0xceba): undefined reference to `early_xdbc_init'
>     early_printk.c:(.init.text+0xcec8): undefined reference to `early_xdbc_console'
>
> Lu Baolu (10):
>   x86: fixmap: add permanent fixmap for xhci debug port
>   usb: dbc: probe and setup xhci debug capability
>   usb: dbc: add support for Intel xHCI dbc quirk
>   usb: dbc: add debug buffer
>   usb: dbc: add bulk out and bulk in interfaces
>   usb: dbc: handle dbc-configured exit
>   usb: dbc: handle endpoint stall
>   x86: early_printk: add USB3 debug port earlyprintk support
>   usb: dbc: add handshake between debug target and host
>   usb: doc: add document for xHCI DbC driver

Hi Greg,

I removed two patches from this series which belong to usb/xhci and usb/serial.
The remaining patches are all for usb3 debug port driver. Will you queue this
for usb-next? Or, do you want me to do anything else?

Thanks,
Baolu

>
>  Documentation/kernel-parameters.txt |    1 +
>  Documentation/usb/xhci-dbc.txt      |  350 +++++++++
>  MAINTAINERS                         |    8 +
>  arch/x86/Kconfig.debug              |   14 +
>  arch/x86/include/asm/fixmap.h       |    4 +
>  arch/x86/kernel/early_printk.c      |    5 +
>  drivers/usb/Kconfig                 |    3 +
>  drivers/usb/Makefile                |    2 +-
>  drivers/usb/early/Makefile          |    1 +
>  drivers/usb/early/xhci-dbc.c        | 1394 +++++++++++++++++++++++++++++++++++
>  include/linux/usb/xhci-dbc.h        |  224 ++++++
>  11 files changed, 2005 insertions(+), 1 deletion(-)
>  create mode 100644 Documentation/usb/xhci-dbc.txt
>  create mode 100644 drivers/usb/early/xhci-dbc.c
>  create mode 100644 include/linux/usb/xhci-dbc.h
>

  parent reply	other threads:[~2016-02-02 14:34 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-26 12:58 [PATCH v7 00/10] usb: early: add support for early printk through USB3 debug port Lu Baolu
2016-01-26 12:58 ` [PATCH v7 01/10] x86: fixmap: add permanent fixmap for xhci " Lu Baolu
2016-01-26 12:58 ` [PATCH v7 02/10] usb: dbc: probe and setup xhci debug capability Lu Baolu
2016-02-16 14:19   ` Mathias Nyman
2016-02-17  8:45     ` Lu Baolu
2016-01-26 12:58 ` [PATCH v7 03/10] usb: dbc: add support for Intel xHCI dbc quirk Lu Baolu
2016-01-26 12:58 ` [PATCH v7 04/10] usb: dbc: add debug buffer Lu Baolu
2016-02-18 11:43   ` Mathias Nyman
2016-02-19  6:35     ` Lu Baolu
2016-01-26 12:58 ` [PATCH v7 05/10] usb: dbc: add bulk out and bulk in interfaces Lu Baolu
2016-02-18 13:32   ` Mathias Nyman
2016-02-19  7:09     ` Lu Baolu
2016-01-26 12:58 ` [PATCH v7 06/10] usb: dbc: handle dbc-configured exit Lu Baolu
2016-01-26 12:58 ` [PATCH v7 07/10] usb: dbc: handle endpoint stall Lu Baolu
2016-03-02 12:58   ` Mathias Nyman
2016-03-02 12:58     ` Felipe Balbi
2016-03-03  6:12       ` Lu Baolu
2016-03-03  6:00     ` Lu Baolu
2016-01-26 12:58 ` [PATCH v7 08/10] x86: early_printk: add USB3 debug port earlyprintk support Lu Baolu
2016-01-26 12:58 ` [PATCH v7 09/10] usb: dbc: add handshake between debug target and host Lu Baolu
2016-01-26 12:58 ` [PATCH v7 10/10] usb: doc: add document for xHCI DbC driver Lu Baolu
2016-02-02 14:34 ` Lu Baolu [this message]
2016-02-03 21:43   ` [PATCH v7 00/10] usb: early: add support for early printk through USB3 debug port Greg Kroah-Hartman
2016-02-03 23:52     ` Lu Baolu

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=56B0BE7A.6070201@linux.intel.com \
    --to=baolu.lu@linux.intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.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).