linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/18] MHI changes for v5.10
@ 2020-09-21 16:07 Manivannan Sadhasivam
  2020-09-21 16:07 ` [PATCH] bus: mhi: core: Fix the building of MHI module Manivannan Sadhasivam
                   ` (18 more replies)
  0 siblings, 19 replies; 25+ messages in thread
From: Manivannan Sadhasivam @ 2020-09-21 16:07 UTC (permalink / raw)
  To: gregkh
  Cc: hemantk, jhugo, bbhatt, linux-arm-msm, linux-kernel,
	Manivannan Sadhasivam

Hi Greg,

Here is the MHI series for v5.10 cycle. Most of the patches are cleanups
in the MHI stack. Notable changes are below:

* Saving the client device hardware information obtained through the BHI
  protocol. This information will be exposed through sysfs to make use in
  the userland applications.
* Introduce sysfs entries to read the serial number and OEM PK hash values
  of the client device obtained from BHI protocol. Relevant API documentation
  is also added.
* Introduce debugfs entries to show MHI states, events, channels, register
  state etc... to aid debug.
* Fix the warning reported by Kbuild bot by using append (+=) Kbuild rule
  to the mhi/core Makefile.
* Removed the requirement to have a dedicated IRQ for each event ring.
  The MHI controllers can now use a single IRQ for all event rings.

Please consider merging!

Thanks,
Mani

Bhaumik Bhatt (12):
  bus: mhi: core: Remove double occurrence for mhi_ctrl_ev_task()
    declaration
  bus: mhi: core: Abort suspends due to outgoing pending packets
  bus: mhi: core: Use helper API to trigger a non-blocking host resume
  bus: mhi: core: Trigger host resume if suspended during
    mhi_device_get()
  bus: mhi: core: Use generic name field for an MHI device
  bus: mhi: core: Introduce helper function to check device state
  bus: mhi: core: Introduce counters to track MHI device state
    transitions
  bus: mhi: core: Read and save device hardware information from BHI
  bus: mhi: core: Introduce APIs to allocate and free the MHI controller
  bus: mhi: Fix entries based on Kconfig coding style
  bus: mhi: core: Introduce debugfs entries for MHI
  bus: mhi: core: Introduce sysfs entries for MHI

Clark Williams (1):
  bus: mhi: Remove include of rwlock_types.h

Hemant Kumar (1):
  bus: mhi: core: Add const qualifier to MHI config information

Loic Poulain (2):
  bus: mhi: core: Allow shared IRQ for event rings
  bus: mhi: Remove unused nr_irqs_req variable

Manivannan Sadhasivam (1):
  bus: mhi: core: Fix the building of MHI module

Randy Dunlap (1):
  bus: mhi: fix doubled words and struct image_info kernel-doc

 Documentation/ABI/stable/sysfs-bus-mhi |  21 ++
 MAINTAINERS                            |   1 +
 drivers/bus/mhi/Kconfig                |  20 +-
 drivers/bus/mhi/core/Makefile          |   3 +-
 drivers/bus/mhi/core/boot.c            |  17 +-
 drivers/bus/mhi/core/debugfs.c         | 410 +++++++++++++++++++++++++
 drivers/bus/mhi/core/init.c            | 103 ++++++-
 drivers/bus/mhi/core/internal.h        |  37 ++-
 drivers/bus/mhi/core/main.c            |  27 +-
 drivers/bus/mhi/core/pm.c              |  28 +-
 include/linux/mhi.h                    |  51 ++-
 11 files changed, 654 insertions(+), 64 deletions(-)
 create mode 100644 Documentation/ABI/stable/sysfs-bus-mhi
 create mode 100644 drivers/bus/mhi/core/debugfs.c

-- 
2.17.1


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

end of thread, other threads:[~2020-09-28  3:45 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-21 16:07 [PATCH 00/18] MHI changes for v5.10 Manivannan Sadhasivam
2020-09-21 16:07 ` [PATCH] bus: mhi: core: Fix the building of MHI module Manivannan Sadhasivam
2020-09-21 16:13   ` Manivannan Sadhasivam
2020-09-21 16:07 ` [PATCH 01/18] bus: mhi: fix doubled words and struct image_info kernel-doc Manivannan Sadhasivam
2020-09-21 16:07 ` [PATCH 02/18] bus: mhi: core: Remove double occurrence for mhi_ctrl_ev_task() declaration Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 03/18] bus: mhi: core: Abort suspends due to outgoing pending packets Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 04/18] bus: mhi: core: Use helper API to trigger a non-blocking host resume Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 05/18] bus: mhi: core: Trigger host resume if suspended during mhi_device_get() Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 06/18] bus: mhi: core: Use generic name field for an MHI device Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 07/18] bus: mhi: core: Introduce helper function to check device state Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 08/18] bus: mhi: core: Introduce counters to track MHI device state transitions Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 09/18] bus: mhi: core: Read and save device hardware information from BHI Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 10/18] bus: mhi: core: Introduce APIs to allocate and free the MHI controller Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 11/18] bus: mhi: core: Add const qualifier to MHI config information Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 12/18] bus: mhi: Remove include of rwlock_types.h Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 13/18] bus: mhi: Fix entries based on Kconfig coding style Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 14/18] bus: mhi: core: Introduce debugfs entries for MHI Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 15/18] bus: mhi: core: Introduce sysfs " Manivannan Sadhasivam
2020-09-27 10:26   ` Greg KH
2020-09-28  3:44     ` Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 16/18] bus: mhi: core: Allow shared IRQ for event rings Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 17/18] bus: mhi: Remove unused nr_irqs_req variable Manivannan Sadhasivam
2020-09-21 16:08 ` [PATCH 18/18] bus: mhi: core: Fix the building of MHI module Manivannan Sadhasivam
2020-09-27 10:22   ` Greg KH
2020-09-28  3:45     ` Manivannan Sadhasivam

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).