linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH v8 0/2]  drivers/qcom: add Command DB support
       [not found] <20180410175724.7165-1-ilina@codeaurora.org>
@ 2018-05-09 16:42 ` Lina Iyer
  2018-05-09 21:30   ` Doug Anderson
  0 siblings, 1 reply; 3+ messages in thread
From: Lina Iyer @ 2018-05-09 16:42 UTC (permalink / raw)
  To: andy.gross, david.brown, linux-arm-msm, linux-soc
  Cc: rnayak, bjorn.andersson, linux-kernel, sboyd, evgreen, dianders

Hi Andy, David,

These patches have been reviewed by our peers and have recieved no
further comments in the past few weeks. Would you consider merging this
in your trees?

Thanks,
Lina


On Tue, Apr 10 2018 at 11:57 -0600, Lina Iyer wrote:
>Changes since v7:
>	- Add reviewed-by tags
>	- Fix example
>
>Changes since v6:
>        - Fix 'reg' property
>        - Add reviewed-by tags
>
>Changes since v5:
>        - Remove indirection of command db start address
>        - Rebase on top of 4.16
>
>Changes since v4:
>        - Address comments from Stephen and Bjorn
>
>These patches add support for reading a shared memory database in the newer
>QCOM SoCs called Command DB. With the new architecture on SDM845, shared
>resources like clocks, regulators etc., have dynamic properties. These
>properties may change based on external components, board configurations or
>available feature set. A remote processor detects these parameters and fills up
>the database with the resource and available state information. Platform
>drivers that need these shared resources will need to query this database to
>get the address and properties and vote for the state.
>
>The information in the database is static. The database is read-only memory
>location that is available for Linux. A pre-defined string is used as a key into
>an entry in the database. Generally, platform drivers query the database only
>at init to get the information they need.
>
>[v1]: https://www.spinics.net/lists/linux-arm-msm/msg32462.html
>[v2]: https://lkml.org/lkml/2018/2/8/588
>[v3]: https://lkml.org/lkml/2018/2/16/842
>[v4]: https://patchwork.kernel.org/patch/10242935/
>[v5]: https://lkml.org/lkml/2018/3/14/787
>[v6]: https://lkml.org/lkml/2018/4/5/451
>[v7]: https://lkml.org/lkml/2018/4/6/756
>
>Lina Iyer (2):
>  drivers: qcom: add command DB driver
>  dt-bindings: introduce Command DB for QCOM SoCs
>
> .../bindings/reserved-memory/qcom,cmd-db.txt       |  37 +++
> drivers/of/platform.c                              |   1 +
> drivers/soc/qcom/Kconfig                           |   9 +
> drivers/soc/qcom/Makefile                          |   1 +
> drivers/soc/qcom/cmd-db.c                          | 310 +++++++++++++++++++++
> include/soc/qcom/cmd-db.h                          |  45 +++
> 6 files changed, 403 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/reserved-memory/qcom,cmd-db.txt
> create mode 100644 drivers/soc/qcom/cmd-db.c
> create mode 100644 include/soc/qcom/cmd-db.h
>
>--
>The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
>a Linux Foundation Collaborative Project
>

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

* Re: [PATCH v8 0/2] drivers/qcom: add Command DB support
  2018-05-09 16:42 ` [PATCH v8 0/2] drivers/qcom: add Command DB support Lina Iyer
@ 2018-05-09 21:30   ` Doug Anderson
  2018-05-10 15:40     ` Lina Iyer
  0 siblings, 1 reply; 3+ messages in thread
From: Doug Anderson @ 2018-05-09 21:30 UTC (permalink / raw)
  To: Lina Iyer
  Cc: Andy Gross, David Brown, linux-arm-msm,
	open list:ARM/QUALCOMM SUPPORT, Rajendra Nayak, Bjorn Andersson,
	LKML, Stephen Boyd, Evan Green

Lina

On Wed, May 9, 2018 at 9:42 AM, Lina Iyer <ilina@codeaurora.org> wrote:
> Hi Andy, David,
>
> These patches have been reviewed by our peers and have recieved no
> further comments in the past few weeks. Would you consider merging this
> in your trees?

When I look at:

https://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git/log/?h=for-next

I see both of your patches (plus Stephen Boyd's patch about making
things endian-agnostic).  ...so I think we're good.  :-)

-Doug

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

* Re: [PATCH v8 0/2] drivers/qcom: add Command DB support
  2018-05-09 21:30   ` Doug Anderson
@ 2018-05-10 15:40     ` Lina Iyer
  0 siblings, 0 replies; 3+ messages in thread
From: Lina Iyer @ 2018-05-10 15:40 UTC (permalink / raw)
  To: Doug Anderson
  Cc: Andy Gross, David Brown, linux-arm-msm,
	open list:ARM/QUALCOMM SUPPORT, Rajendra Nayak, Bjorn Andersson,
	LKML, Stephen Boyd, Evan Green

On Wed, May 09 2018 at 15:30 -0600, Doug Anderson wrote:
>Lina
>
>On Wed, May 9, 2018 at 9:42 AM, Lina Iyer <ilina@codeaurora.org> wrote:
>> Hi Andy, David,
>>
>> These patches have been reviewed by our peers and have recieved no
>> further comments in the past few weeks. Would you consider merging this
>> in your trees?
>
>When I look at:
>
>https://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git/log/?h=for-next
>
>I see both of your patches (plus Stephen Boyd's patch about making
>things endian-agnostic).  ...so I think we're good.  :-)
>
Excellent. Thank you.

-- Lina

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

end of thread, other threads:[~2018-05-10 15:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20180410175724.7165-1-ilina@codeaurora.org>
2018-05-09 16:42 ` [PATCH v8 0/2] drivers/qcom: add Command DB support Lina Iyer
2018-05-09 21:30   ` Doug Anderson
2018-05-10 15:40     ` Lina Iyer

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