All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stephen Boyd <sboyd@kernel.org>
To: Abel Vesa <abel.vesa@linaro.org>,
	AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	Bjorn Andersson <andersson@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
	Konrad Dybcio <konrad.dybcio@linaro.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Rob Herring <robh@kernel.org>
Cc: Srini Kandagatla <srinivas.kandagatla@linaro.org>,
	Johan Hovold <johan@kernel.org>,
	David Collins <quic_collinsd@quicinc.com>,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-arm-msm@vger.kernel.org,
	linux-mediatek@lists.infradead.org, devicetree@vger.kernel.org,
	Abel Vesa <abel.vesa@linaro.org>
Subject: Re: [PATCH v10 5/7] spmi: pmic-arb: Make core resources acquiring a version operation
Date: Fri, 19 Apr 2024 18:47:57 -0700	[thread overview]
Message-ID: <492aa42a333063a4d148d1ce9398b106.sboyd@kernel.org> (raw)
In-Reply-To: <20240417-spmi-multi-master-support-v10-5-5bc6d322e266@linaro.org>

Quoting Abel Vesa (2024-04-17 13:00:57)
> Rather than setting up the core, obsrv and chnls in probe by using
> version specific conditionals, add a dedicated "get_core_resources"
> version specific op and move the acquiring in there. Since there are
> no current users of the second bus yet, drop the comment about why
> devm_platform_ioremap_resource can't be used in case of "core",
> as it is not applicable anymore.
> Don't switch to devm_platform_ioremap_resource though as we need
> to keep track of core size.
> 
> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
> Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
> ---

Applied to spmi-next

WARNING: multiple messages have this Message-ID (diff)
From: Stephen Boyd <sboyd@kernel.org>
To: Abel Vesa <abel.vesa@linaro.org>,
	AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	Bjorn Andersson <andersson@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
	Konrad Dybcio <konrad.dybcio@linaro.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Rob Herring <robh@kernel.org>
Cc: Srini Kandagatla <srinivas.kandagatla@linaro.org>,
	Johan Hovold <johan@kernel.org>,
	David Collins <quic_collinsd@quicinc.com>,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-arm-msm@vger.kernel.org,
	linux-mediatek@lists.infradead.org, devicetree@vger.kernel.org,
	Abel Vesa <abel.vesa@linaro.org>
Subject: Re: [PATCH v10 5/7] spmi: pmic-arb: Make core resources acquiring a version operation
Date: Fri, 19 Apr 2024 18:47:57 -0700	[thread overview]
Message-ID: <492aa42a333063a4d148d1ce9398b106.sboyd@kernel.org> (raw)
In-Reply-To: <20240417-spmi-multi-master-support-v10-5-5bc6d322e266@linaro.org>

Quoting Abel Vesa (2024-04-17 13:00:57)
> Rather than setting up the core, obsrv and chnls in probe by using
> version specific conditionals, add a dedicated "get_core_resources"
> version specific op and move the acquiring in there. Since there are
> no current users of the second bus yet, drop the comment about why
> devm_platform_ioremap_resource can't be used in case of "core",
> as it is not applicable anymore.
> Don't switch to devm_platform_ioremap_resource though as we need
> to keep track of core size.
> 
> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
> Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
> ---

Applied to spmi-next

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2024-04-20  1:47 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-17 20:00 [PATCH v10 0/7] spmi: pmic-arb: Add support for multiple buses Abel Vesa
2024-04-17 20:00 ` Abel Vesa
2024-04-17 20:00 ` [PATCH v10 1/7] dt-bindings: spmi: Add X1E80100 SPMI PMIC ARB schema Abel Vesa
2024-04-17 20:00   ` Abel Vesa
2024-04-20  1:47   ` Stephen Boyd
2024-04-20  1:47     ` Stephen Boyd
2024-04-17 20:00 ` [PATCH v10 2/7] dt-bindings: spmi: Deprecate qcom,bus-id Abel Vesa
2024-04-17 20:00   ` Abel Vesa
2024-04-20  1:47   ` Stephen Boyd
2024-04-20  1:47     ` Stephen Boyd
2024-04-17 20:00 ` [PATCH v10 3/7] spmi: pmic-arb: Fix some compile warnings about members not being described Abel Vesa
2024-04-17 20:00   ` Abel Vesa
2024-04-20  1:47   ` Stephen Boyd
2024-04-20  1:47     ` Stephen Boyd
2024-04-17 20:00 ` [PATCH v10 4/7] spmi: pmic-arb: Make the APID init a version operation Abel Vesa
2024-04-17 20:00   ` Abel Vesa
2024-04-20  1:47   ` Stephen Boyd
2024-04-20  1:47     ` Stephen Boyd
2024-04-17 20:00 ` [PATCH v10 5/7] spmi: pmic-arb: Make core resources acquiring " Abel Vesa
2024-04-17 20:00   ` Abel Vesa
2024-04-20  1:47   ` Stephen Boyd [this message]
2024-04-20  1:47     ` Stephen Boyd
2024-04-17 20:00 ` [PATCH v10 6/7] spmi: pmic-arb: Register controller for bus instead of arbiter Abel Vesa
2024-04-17 20:00   ` Abel Vesa
2024-04-20  1:48   ` Stephen Boyd
2024-04-20  1:48     ` Stephen Boyd
2024-04-17 20:00 ` [PATCH v10 7/7] spmi: pmic-arb: Add multi bus support Abel Vesa
2024-04-17 20:00   ` Abel Vesa
2024-04-20  1:48   ` Stephen Boyd
2024-04-20  1:48     ` Stephen Boyd

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=492aa42a333063a4d148d1ce9398b106.sboyd@kernel.org \
    --to=sboyd@kernel.org \
    --cc=abel.vesa@linaro.org \
    --cc=andersson@kernel.org \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.baryshkov@linaro.org \
    --cc=johan@kernel.org \
    --cc=konrad.dybcio@linaro.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=matthias.bgg@gmail.com \
    --cc=neil.armstrong@linaro.org \
    --cc=quic_collinsd@quicinc.com \
    --cc=robh@kernel.org \
    --cc=srinivas.kandagatla@linaro.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.