From: Greg Kroah-Hartman <gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>
To: srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org
Cc: Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org,
sdharia-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>,
Jonathan Corbet <corbet-T1hC0tSOHrs@public.gmane.org>,
pombredanne-od1rfyK75/E@public.gmane.org,
j.neuschaefer-hi6Y0CQ0nG0@public.gmane.org,
linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v10 00/13] Introduce framework for SLIMbus device driver
Date: Wed, 13 Dec 2017 10:25:02 +0100 [thread overview]
Message-ID: <20171213092502.GA12631@kroah.com> (raw)
In-Reply-To: <20171211234307.14465-1-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
On Mon, Dec 11, 2017 at 11:42:54PM +0000, srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org wrote:
> From: Srinivas Kandagatla <srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
>
> SLIMbus (Serial Low Power Interchip Media Bus) is a specification
> developed by MIPI (Mobile Industry Processor Interface) alliance.
> SLIMbus is a 2-wire implementation, which is used to communicate with
> peripheral components like audio-codec.
> SLIMbus uses Time-Division-Multiplexing to accommodate multiple data
> channels, and control channel. Control channel has messages to do
> device-enumeration, messages to send/receive control-data to/from
> SLIMbus devices, messages for port/channel management, and messages to
> do bandwidth allocation.
> Framework is introduced to support multiple instances of the bus
> (1 controller per bus), and multiple slave devices per controller.
> SPI and I2C frameworks, and comments from last time when I submitted
> the patches were referred-to while working on this framework.
>
> These patchsets introduce device-management, OF helpers, and messaging
> APIs, controller driver for Qualcomm's SLIMbus controller, and
> clock-pause feature for entering/exiting low-power mode for SLIMbus.
> Framework patches to do channel, port and bandwidth
> management are work-in-progress and will be sent out once these
> initial patches are accepted.
>
> These patchsets were tested on IFC6410 board with Qualcomm APQ8064
> processor using the controller driver, and a WCD9310 codec.
>
> v9: https://lkml.org/lkml/2017/12/7/289
>
> Changes from v9 to v10:
> * Added kernel-doc reference into slimbus driver api doc suggested by
> Jonathan Corbet
These all look good to me. I can take this through my tree if I get the
ack from Mark for the regmap changes.
thanks,
greg k-h
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: srinivas.kandagatla@linaro.org
Cc: Mark Brown <broonie@kernel.org>,
alsa-devel@alsa-project.org, sdharia@codeaurora.org,
Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Jonathan Corbet <corbet@lwn.net>,
pombredanne@nexb.com, j.neuschaefer@gmx.net,
linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org
Subject: Re: [PATCH v10 00/13] Introduce framework for SLIMbus device driver
Date: Wed, 13 Dec 2017 10:25:02 +0100 [thread overview]
Message-ID: <20171213092502.GA12631@kroah.com> (raw)
In-Reply-To: <20171211234307.14465-1-srinivas.kandagatla@linaro.org>
On Mon, Dec 11, 2017 at 11:42:54PM +0000, srinivas.kandagatla@linaro.org wrote:
> From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
>
> SLIMbus (Serial Low Power Interchip Media Bus) is a specification
> developed by MIPI (Mobile Industry Processor Interface) alliance.
> SLIMbus is a 2-wire implementation, which is used to communicate with
> peripheral components like audio-codec.
> SLIMbus uses Time-Division-Multiplexing to accommodate multiple data
> channels, and control channel. Control channel has messages to do
> device-enumeration, messages to send/receive control-data to/from
> SLIMbus devices, messages for port/channel management, and messages to
> do bandwidth allocation.
> Framework is introduced to support multiple instances of the bus
> (1 controller per bus), and multiple slave devices per controller.
> SPI and I2C frameworks, and comments from last time when I submitted
> the patches were referred-to while working on this framework.
>
> These patchsets introduce device-management, OF helpers, and messaging
> APIs, controller driver for Qualcomm's SLIMbus controller, and
> clock-pause feature for entering/exiting low-power mode for SLIMbus.
> Framework patches to do channel, port and bandwidth
> management are work-in-progress and will be sent out once these
> initial patches are accepted.
>
> These patchsets were tested on IFC6410 board with Qualcomm APQ8064
> processor using the controller driver, and a WCD9310 codec.
>
> v9: https://lkml.org/lkml/2017/12/7/289
>
> Changes from v9 to v10:
> * Added kernel-doc reference into slimbus driver api doc suggested by
> Jonathan Corbet
These all look good to me. I can take this through my tree if I get the
ack from Mark for the regmap changes.
thanks,
greg k-h
next prev parent reply other threads:[~2017-12-13 9:25 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-11 23:42 [PATCH v10 00/13] Introduce framework for SLIMbus device driver srinivas.kandagatla
2017-12-11 23:42 ` [PATCH v10 01/13] Documentation: Add SLIMbus summary srinivas.kandagatla
2017-12-11 23:42 ` srinivas.kandagatla
2017-12-11 23:42 ` [PATCH v10 02/13] dt-bindings: Add SLIMbus bindings srinivas.kandagatla
2017-12-11 23:42 ` srinivas.kandagatla
2017-12-11 23:42 ` [PATCH v10 03/13] slimbus: Add SLIMbus bus type srinivas.kandagatla
2017-12-11 23:42 ` [PATCH v10 04/13] slimbus: core: Add slim controllers support srinivas.kandagatla
2017-12-11 23:42 ` [PATCH v10 05/13] slimbus: core: add support to device tree helper srinivas.kandagatla
2017-12-11 23:42 ` srinivas.kandagatla
2017-12-11 23:43 ` [PATCH v10 06/13] slimbus: Add messaging APIs to slimbus framework srinivas.kandagatla
2017-12-11 23:43 ` srinivas.kandagatla
2017-12-11 23:43 ` [PATCH v10 07/13] slimbus: Add support for 'clock-pause' feature srinivas.kandagatla
2017-12-11 23:43 ` srinivas.kandagatla
2017-12-11 23:43 ` [PATCH v10 08/13] regmap: add SLIMbus support srinivas.kandagatla
2017-12-11 23:43 ` srinivas.kandagatla
2017-12-13 9:25 ` Greg Kroah-Hartman
2017-12-13 12:24 ` Mark Brown
2017-12-13 12:24 ` Mark Brown
2017-12-13 16:06 ` Mark Brown
2017-12-13 16:06 ` Mark Brown
2017-12-14 5:17 ` Vinod Koul
2017-12-14 5:17 ` [alsa-devel] " Vinod Koul
2017-12-14 8:19 ` Takashi Iwai
2017-12-14 13:16 ` Srinivas Kandagatla
2017-12-14 17:27 ` Mark Brown
2017-12-14 17:27 ` Mark Brown
2017-12-11 23:43 ` [PATCH v10 09/13] slimbus: core: add common defines required for controllers srinivas.kandagatla
2017-12-11 23:43 ` srinivas.kandagatla
2017-12-11 23:43 ` [PATCH v10 10/13] dt-bindings: Add qcom slimbus controller bindings srinivas.kandagatla
2017-12-11 23:43 ` srinivas.kandagatla
2017-12-11 23:43 ` [PATCH v10 11/13] slimbus: qcom: Add Qualcomm Slimbus controller driver srinivas.kandagatla
2017-12-21 17:26 ` Arnd Bergmann
2017-12-11 23:43 ` [PATCH v10 12/13] slimbus: qcom: Add runtime-pm support using clock-pause srinivas.kandagatla
2017-12-11 23:43 ` [PATCH v10 13/13] MAINTAINERS: Add SLIMbus maintainer srinivas.kandagatla
[not found] ` <20171211234307.14465-1-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2017-12-13 9:25 ` Greg Kroah-Hartman [this message]
2017-12-13 9:25 ` [PATCH v10 00/13] Introduce framework for SLIMbus device driver Greg Kroah-Hartman
2017-12-14 13:18 ` Srinivas Kandagatla
2017-12-14 13:18 ` Srinivas Kandagatla
2017-12-14 17:25 ` Mark Brown
2017-12-14 17:25 ` Mark Brown
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=20171213092502.GA12631@kroah.com \
--to=gregkh-hqyy1w1ycw8ekmwlsbkhg0b+6bgklq7r@public.gmane.org \
--cc=alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org \
--cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=corbet-T1hC0tSOHrs@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=j.neuschaefer-hi6Y0CQ0nG0@public.gmane.org \
--cc=linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=pombredanne-od1rfyK75/E@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=sdharia-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
--cc=srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.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 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.