Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1198580

[PATCH V3 0/6] Introduce framework for SLIMbus device drivers

From Sagar Dharia <sdharia@codeaurora.org>
Newsgroups linux.kernel
Subject [PATCH V3 0/6] Introduce framework for SLIMbus device drivers
Date 2015-08-03 09:10 +0200
Message-ID <pTi2J-4dX-3@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Changes since V2:
* Multiple files to represent corresponding functionality of the
  framework per Srini's suggestion
* Documentation/slimbus/summary to capture documentation
* register_controller now adds slave devices as well for that
  controller (rather than additional step) per Mark's suggestion
* Changed framework to make sure synchronous transactions are waited-
  for in framework itself per Mark's suggestion
* Addressed other inline comments.

Sagar Dharia (6):
  SLIMbus: Device management on SLIMbus
  of/slimbus: OF helper for SLIMbus
  slimbus: Add messaging APIs to slimbus framework
  slim: qcom: Add Qualcomm Slimbus controller driver
  slimbus: Add support for 'clock-pause' feature
  slim: qcom: Add runtime-pm support using clock-pause feature

 Documentation/devicetree/bindings/slimbus/bus.txt  |  46 ++
 .../devicetree/bindings/slimbus/slim-qcom-ctrl.txt |  42 +
 drivers/Kconfig                                    |   2 +
 drivers/Makefile                                   |   1 +
 drivers/slimbus/Kconfig                            |  21 +
 drivers/slimbus/Makefile                           |   5 +
 drivers/slimbus/slim-core.c                        | 855 +++++++++++++++++++++
 drivers/slimbus/slim-messaging.c                   | 378 +++++++++
 drivers/slimbus/slim-qcom-ctrl.c                   | 734 ++++++++++++++++++
 drivers/slimbus/slim-qcom.h                        |  66 ++
 drivers/slimbus/slim-sched.c                       | 121 +++
 include/linux/mod_devicetable.h                    |  13 +
 include/linux/slimbus.h                            | 678 ++++++++++++++++
 13 files changed, 2962 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/slimbus/bus.txt
 create mode 100644 Documentation/devicetree/bindings/slimbus/slim-qcom-ctrl.txt
 create mode 100644 drivers/slimbus/Kconfig
 create mode 100644 drivers/slimbus/Makefile
 create mode 100644 drivers/slimbus/slim-core.c
 create mode 100644 drivers/slimbus/slim-messaging.c
 create mode 100644 drivers/slimbus/slim-qcom-ctrl.c
 create mode 100644 drivers/slimbus/slim-qcom.h
 create mode 100644 drivers/slimbus/slim-sched.c
 create mode 100644 include/linux/slimbus.h

-- 
1.8.2.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH V3 0/6] Introduce framework for SLIMbus device drivers Sagar Dharia <sdharia@codeaurora.org> - 2015-08-03 09:10 +0200
  [PATCH V3 2/6] of/slimbus: OF helper for SLIMbus Sagar Dharia <sdharia@codeaurora.org> - 2015-08-03 09:10 +0200
    Re: [PATCH V3 2/6] of/slimbus: OF helper for SLIMbus Rob Herring <robherring2@gmail.com> - 2015-08-03 18:20 +0200
  [PATCH V3 5/6] slimbus: Add support for 'clock-pause' feature Sagar Dharia <sdharia@codeaurora.org> - 2015-08-03 09:10 +0200
  [PATCH V3 3/6] slimbus: Add messaging APIs to slimbus framework Sagar Dharia <sdharia@codeaurora.org> - 2015-08-03 09:10 +0200
  [PATCH V3 1/6] SLIMbus: Device management on SLIMbus Sagar Dharia <sdharia@codeaurora.org> - 2015-08-03 09:10 +0200

csiph-web