linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>
To: Vladimir Stankovic <vladimir.stankovic@displaylink.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
	Petar Kovacevic <petar.kovacevic@displaylink.com>,
	Stefan Lugonjic <stefan.lugonjic@displaylink.com>,
	Nikola Simic <nikola.simic@displaylink.com>,
	Marko Miljkovic <marko.miljkovic@displaylink.com>
Subject: Re: [PATCH 1/1] usb: Add MA USB Host driver
Date: Tue, 11 Feb 2020 08:39:59 -0800	[thread overview]
Message-ID: <20200211163959.GB1931506@kroah.com> (raw)
In-Reply-To: <61e63056-31f9-9d4b-60c1-8cbf0372d34f@displaylink.com>

On Tue, Feb 11, 2020 at 04:21:24PM +0000, Vladimir Stankovic wrote:
> MA-USB Host driver provides USB connectivity over an available
> network, allowing host device to access remote USB devices attached
> to one or more MA USB devices (accessible via network).
> 
> This driver has been developed to enable the host to communicate
> with DisplayLink products supporting MA USB protocol (MA USB device,
> in terms of MA USB Specification).
> 
> MA-USB protocol used by MA-USB Host driver has been implemented in
> accordance with MA USB Specification Release 1.0b.
> 
> This driver depends on the functions provided by DisplayLink's
> user-space driver.
> 
> Signed-off-by: Vladimir Stankovic <vladimir.stankovic@displaylink.com>
> ---
>   drivers/usb/Kconfig                           |    2 +
>   drivers/usb/Makefile                          |    2 +
>   drivers/usb/mausb_host/Kconfig                |   15 +
>   drivers/usb/mausb_host/Makefile               |   30 +
>   .../usb/mausb_host/include/common/ma_usb.h    |  873 +++++++++
>   .../mausb_host/include/common/mausb_address.h |   38 +
>   .../include/common/mausb_driver_status.h      |   21 +
>   .../mausb_host/include/common/mausb_event.h   |  228 +++
>   drivers/usb/mausb_host/include/hcd/hub.h      |  115 ++
>   drivers/usb/mausb_host/include/hcd/vhcd.h     |   79 +
>   .../usb/mausb_host/include/hpal/data_common.h |   66 +
>   drivers/usb/mausb_host/include/hpal/data_in.h |   18 +
>   .../usb/mausb_host/include/hpal/data_out.h    |   22 +
>   drivers/usb/mausb_host/include/hpal/hpal.h    |  184 ++
>   .../usb/mausb_host/include/hpal/isoch_in.h    |   22 +
>   .../usb/mausb_host/include/hpal/isoch_out.h   |   20 +
>   .../mausb_host/include/hpal/mausb_events.h    |   99 +
>   .../include/hpal/network_callbacks.h          |   20 +
>   .../mausb_host/include/link/mausb_ip_link.h   |   87 +
>   .../include/utils/mausb_data_iterator.h       |   52 +
>   .../usb/mausb_host/include/utils/mausb_logs.h |   35 +
>   .../usb/mausb_host/include/utils/mausb_mmap.h |   21 +
>   .../include/utils/mausb_ring_buffer.h         |   67 +
>   .../mausb_host/include/utils/mausb_version.h  |   17 +
>   drivers/usb/mausb_host/src/hcd/hub.c          | 1684 +++++++++++++++++
>   drivers/usb/mausb_host/src/hcd/module_init.c  |  219 +++
>   drivers/usb/mausb_host/src/hcd/vhcd.c         |  291 +++
>   drivers/usb/mausb_host/src/hpal/data_common.c |  141 ++
>   drivers/usb/mausb_host/src/hpal/data_in.c     |   73 +
>   drivers/usb/mausb_host/src/hpal/data_out.c    |  202 ++
>   drivers/usb/mausb_host/src/hpal/hpal.c        | 1306 +++++++++++++
>   drivers/usb/mausb_host/src/hpal/isoch_in.c    |  241 +++
>   drivers/usb/mausb_host/src/hpal/isoch_out.c   |  361 ++++
>   .../usb/mausb_host/src/hpal/mausb_events.c    |  659 +++++++
>   .../mausb_host/src/hpal/network_callbacks.c   |  160 ++
>   .../usb/mausb_host/src/link/mausb_ip_link.c   |  354 ++++
>   .../src/utils/mausb_data_iterator.c           |  295 +++
>   drivers/usb/mausb_host/src/utils/mausb_mmap.c |  381 ++++
>   .../mausb_host/src/utils/mausb_ring_buffer.c  |  168 ++
>   39 files changed, 8668 insertions(+)
>   create mode 100644 drivers/usb/mausb_host/Kconfig
>   create mode 100644 drivers/usb/mausb_host/Makefile
>   create mode 100644 drivers/usb/mausb_host/include/common/ma_usb.h
>   create mode 100644 drivers/usb/mausb_host/include/common/mausb_address.h
>   create mode 100644 
> drivers/usb/mausb_host/include/common/mausb_driver_status.h
>   create mode 100644 drivers/usb/mausb_host/include/common/mausb_event.h
>   create mode 100644 drivers/usb/mausb_host/include/hcd/hub.h
>   create mode 100644 drivers/usb/mausb_host/include/hcd/vhcd.h
>   create mode 100644 drivers/usb/mausb_host/include/hpal/data_common.h
>   create mode 100644 drivers/usb/mausb_host/include/hpal/data_in.h
>   create mode 100644 drivers/usb/mausb_host/include/hpal/data_out.h
>   create mode 100644 drivers/usb/mausb_host/include/hpal/hpal.h
>   create mode 100644 drivers/usb/mausb_host/include/hpal/isoch_in.h
>   create mode 100644 drivers/usb/mausb_host/include/hpal/isoch_out.h
>   create mode 100644 drivers/usb/mausb_host/include/hpal/mausb_events.h
>   create mode 100644 drivers/usb/mausb_host/include/hpal/network_callbacks.h
>   create mode 100644 drivers/usb/mausb_host/include/link/mausb_ip_link.h
>   create mode 100644 
> drivers/usb/mausb_host/include/utils/mausb_data_iterator.h
>   create mode 100644 drivers/usb/mausb_host/include/utils/mausb_logs.h
>   create mode 100644 drivers/usb/mausb_host/include/utils/mausb_mmap.h
>   create mode 100644 
> drivers/usb/mausb_host/include/utils/mausb_ring_buffer.h
>   create mode 100644 drivers/usb/mausb_host/include/utils/mausb_version.h
>   create mode 100644 drivers/usb/mausb_host/src/hcd/hub.c
>   create mode 100644 drivers/usb/mausb_host/src/hcd/module_init.c
>   create mode 100644 drivers/usb/mausb_host/src/hcd/vhcd.c
>   create mode 100644 drivers/usb/mausb_host/src/hpal/data_common.c
>   create mode 100644 drivers/usb/mausb_host/src/hpal/data_in.c
>   create mode 100644 drivers/usb/mausb_host/src/hpal/data_out.c
>   create mode 100644 drivers/usb/mausb_host/src/hpal/hpal.c
>   create mode 100644 drivers/usb/mausb_host/src/hpal/isoch_in.c
>   create mode 100644 drivers/usb/mausb_host/src/hpal/isoch_out.c
>   create mode 100644 drivers/usb/mausb_host/src/hpal/mausb_events.c
>   create mode 100644 drivers/usb/mausb_host/src/hpal/network_callbacks.c
>   create mode 100644 drivers/usb/mausb_host/src/link/mausb_ip_link.c
>   create mode 100644 drivers/usb/mausb_host/src/utils/mausb_data_iterator.c
>   create mode 100644 drivers/usb/mausb_host/src/utils/mausb_mmap.c
>   create mode 100644 drivers/usb/mausb_host/src/utils/mausb_ring_buffer.c
> 
> 

> From 0324b3a49d0ef41480a0a42ab27f70edeb007980 Mon Sep 17 00:00:00 2001
> From: Vladimir Stankovic <vladimir.stankovic@displaylink.com>
> Date: Tue, 11 Feb 2020 16:03:43 +0100
> Subject: [PATCH] usb: Add MA USB Host driver
> 
> MA-USB Host driver provides USB connectivity over an available
> network, allowing host device to access remote USB devices attached
> to one or more MA USB devices (accessible via network).

<snip>

You attached the patch, as well as put the description above in the
email as well, so I couldn't apply this even if I wanted to :(

Please just submit the patch all inline, like all other kernel patches
are.

thanks,

greg k-h

  parent reply	other threads:[~2020-02-11 16:40 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <VI1PR10MB1965B4B61D7A9808B2EA095591180@VI1PR10MB1965.EURPRD10.PROD.OUTLOOK.COM>
2020-02-11 16:21 ` [PATCH 1/1] usb: Add MA USB Host driver Vladimir Stankovic
2020-02-11 16:39   ` gregkh
2020-02-12  9:41     ` [External] " Vladimir Stankovic
2020-02-12 13:22       ` gregkh
2020-02-11 16:39   ` gregkh [this message]
2020-02-11 16:41   ` gregkh
2020-02-12  9:43     ` Vladimir Stankovic

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=20200211163959.GB1931506@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=marko.miljkovic@displaylink.com \
    --cc=nikola.simic@displaylink.com \
    --cc=petar.kovacevic@displaylink.com \
    --cc=stefan.lugonjic@displaylink.com \
    --cc=vladimir.stankovic@displaylink.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).