All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next v4 0/5] Add MBIM over MHI support
@ 2021-02-08  8:00 Loic Poulain
  2021-02-08  8:00 ` [PATCH net-next v4 1/5] net: mhi: Add protocol support Loic Poulain
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Loic Poulain @ 2021-02-08  8:00 UTC (permalink / raw)
  Cc: netdev, bjorn, dcbw, carl.yin, mpearson, cchen50, jwjiang,
	ivan.zhang, naveen.kumar, ivan.mikhanchuk, Loic Poulain

This patch adds MBIM decoding/encoding support to mhi-net, using
mhi-net rx and tx_fixup 'proto' callbacks introduced in the series.

v2:
   - net.c: mhi_net_dev as rx/tx_fixup parameter
   - mbim: Check nth size/sequence in nth16_verify
   - mbim: Add netif_dbg message for verbose error
   - mbim: Add inline comment for MHI MBIM limitation (no DSS)
   - mbim: Fix copyright issue
   - mbim: Reword commit message

v3:
   - net: dedicated commit for mhi.h
   - net: add rx_length_errors stat change
   - net: rename rx_fixup to rx
   - net: proto rx returns void
   - mbim: remove all unnecessary parenthesis
   - mbim: report errors and rx_length_errors
   - mbim: rate_limited errors in rx/tx path
   - mbim: create define for NDP signature mask
   - mbim: switch-case to if for signature check
   - mbim: skb_cow_head() to fix headroom if necessary

v4:
   - remove one extra useless parens pair

*** BLURB HERE ***

Loic Poulain (5):
  net: mhi: Add protocol support
  net: mhi: Add dedicated folder
  net: mhi: Create mhi.h
  net: mhi: Add rx_length_errors stat
  net: mhi: Add mbim proto

 drivers/net/Makefile         |   2 +-
 drivers/net/mhi/Makefile     |   3 +
 drivers/net/mhi/mhi.h        |  40 +++++
 drivers/net/mhi/net.c        | 408 +++++++++++++++++++++++++++++++++++++++++++
 drivers/net/mhi/proto_mbim.c | 293 +++++++++++++++++++++++++++++++
 drivers/net/mhi_net.c        | 384 ----------------------------------------
 6 files changed, 745 insertions(+), 385 deletions(-)
 create mode 100644 drivers/net/mhi/Makefile
 create mode 100644 drivers/net/mhi/mhi.h
 create mode 100644 drivers/net/mhi/net.c
 create mode 100644 drivers/net/mhi/proto_mbim.c
 delete mode 100644 drivers/net/mhi_net.c

-- 
2.7.4


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-02-08 21:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-08  8:00 [PATCH net-next v4 0/5] Add MBIM over MHI support Loic Poulain
2021-02-08  8:00 ` [PATCH net-next v4 1/5] net: mhi: Add protocol support Loic Poulain
2021-02-08  8:00 ` [PATCH net-next v4 2/5] net: mhi: Add dedicated folder Loic Poulain
2021-02-08  8:00 ` [PATCH net-next v4 3/5] net: mhi: Create mhi.h Loic Poulain
2021-02-08  8:00 ` [PATCH net-next v4 4/5] net: mhi: Add rx_length_errors stat Loic Poulain
2021-02-08  8:00 ` [PATCH net-next v4 5/5] net: mhi: Add mbim proto Loic Poulain
2021-02-08 21:12   ` Jakub Kicinski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.