From: Johan Hovold <johan@kernel.org>
To: Bjorn Andersson <andersson@kernel.org>
Cc: Andy Gross <agross@kernel.org>,
Konrad Dybcio <konrad.dybcio@somainline.org>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Sebastian Reichel <sre@kernel.org>,
linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org
Subject: Re: [PATCH 2/4] soc: qcom: pmic_glink: Introduce base PMIC GLINK driver
Date: Fri, 11 Nov 2022 13:57:27 +0100 [thread overview]
Message-ID: <Y25Gtwaws9wDU4a+@hovoldconsulting.com> (raw)
In-Reply-To: <20220818031512.319310-3-bjorn.andersson@linaro.org>
[ Resending to Bjorn's current address. ]
On Wed, Aug 17, 2022 at 08:15:10PM -0700, Bjorn Andersson wrote:
> The PMIC GLINK service runs on one of the co-processors of some modern
> Qualcomm platforms and implements USB-C and battery managements. It uses
> a message based protocol over GLINK for communication with the OS, hence
> the name.
>
> The driver implemented provides the rpmsg device for communication and
> uses auxilirary bus to spawn off individual devices in respsective
> subsystem. The auxilirary devices are spawned off from a
> platform_device, so that the drm_bridge is available early, to allow the
> DisplayPort driver to probe even before the remoteproc has spun up.
>
> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
> ---
> drivers/soc/qcom/Kconfig | 14 ++
> drivers/soc/qcom/Makefile | 1 +
> drivers/soc/qcom/pmic_glink.c | 336 ++++++++++++++++++++++++++++
> include/linux/soc/qcom/pmic_glink.h | 32 +++
> 4 files changed, 383 insertions(+)
> create mode 100644 drivers/soc/qcom/pmic_glink.c
> create mode 100644 include/linux/soc/qcom/pmic_glink.h
>
> diff --git a/drivers/soc/qcom/Kconfig b/drivers/soc/qcom/Kconfig
> index e0d7a5459562..2289f5e0d5ad 100644
> --- a/drivers/soc/qcom/Kconfig
> +++ b/drivers/soc/qcom/Kconfig
> @@ -91,6 +91,20 @@ config QCOM_PDR_HELPERS
> tristate
> select QCOM_QMI_HELPERS
>
> +config QCOM_PMIC_GLINK
> + tristate "Qualcomm PMIC GLINK driver"
> + depends on RPMSG
> + depends on TYPEC
> + depends on DRM
You should add
select AUXILIARY_BUS
here as this driver will not compile without it. Then you can drop the
corresponding select from the battery driver.
> + select QCOM_PDR_HELPERS
> + help
> + The Qualcomm PMIC GLINK driver provides access, over GLINK, to the
> + USB and battery firmware running on one of the coprocessors in
> + several modern Qualcomm platforms.
> +
> + Say yes here to support USB-C and battery status on modern Qualcomm
> + platforms.
Johan
next prev parent reply other threads:[~2022-11-11 12:58 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-18 3:15 [PATCH 0/4] soc: qcom: Introduce PMIC GLINK Bjorn Andersson
2022-08-18 3:15 ` [PATCH 1/4] dt-bindings: soc: qcom: Introduce PMIC GLINK binding Bjorn Andersson
2022-08-18 7:55 ` Krzysztof Kozlowski
2022-08-22 12:39 ` Rob Herring
2022-08-18 3:15 ` [PATCH 2/4] soc: qcom: pmic_glink: Introduce base PMIC GLINK driver Bjorn Andersson
2022-08-18 8:05 ` Krzysztof Kozlowski
2022-10-24 20:02 ` Andrew Halaney
2022-10-26 19:52 ` Subbaraman Narayanamurthy
2022-11-11 12:56 ` Johan Hovold
2022-11-11 12:57 ` Johan Hovold [this message]
2022-08-18 3:15 ` [PATCH 3/4] soc: qcom: pmic_glink: Introduce altmode support Bjorn Andersson
2022-10-25 8:24 ` Johan Hovold
2022-10-25 8:32 ` Johan Hovold
2022-08-18 3:15 ` [PATCH 4/4] power: supply: Introduce Qualcomm PMIC GLINK power supply Bjorn Andersson
2022-08-30 15:25 ` Johan Hovold
2022-09-20 2:49 ` Steev Klimaszewski
2022-08-18 19:25 ` [PATCH 0/4] soc: qcom: Introduce PMIC GLINK Steev Klimaszewski
2023-02-06 22:30 ` Bjorn Andersson
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=Y25Gtwaws9wDU4a+@hovoldconsulting.com \
--to=johan@kernel.org \
--cc=agross@kernel.org \
--cc=andersson@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=konrad.dybcio@somainline.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=robh+dt@kernel.org \
--cc=sre@kernel.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 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).