From: Bjorn Andersson <bjorn.andersson@linaro.org> To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Cc: Andy Gross <agross@kernel.org>, Rob Herring <robh+dt@kernel.org>, Liam Girdwood <lgirdwood@gmail.com>, Mark Brown <broonie@kernel.org>, Marcel Holtmann <marcel@holtmann.org>, Johan Hedberg <johan.hedberg@gmail.com>, Luiz Augusto von Dentz <luiz.dentz@gmail.com>, linux-arm-msm@vger.kernel.org, Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-bluetooth@vger.kernel.org Subject: Re: [PATCH v3 4/7] Bluetooth: hci_qca: merge qca_power into qca_serdev Date: Wed, 14 Jul 2021 12:25:25 -0500 [thread overview] Message-ID: <YO8eBZfLd0vnTy/x@yoga> (raw) In-Reply-To: <20210621223141.1638189-5-dmitry.baryshkov@linaro.org> On Mon 21 Jun 17:31 CDT 2021, Dmitry Baryshkov wrote: > There is no need to allocate separate structure for handling regulators > used by QCA chips, we gain nothing from it. Move all used data fields > directly to struct qca_serdev. > Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Regards, Bjorn > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > --- > drivers/bluetooth/hci_qca.c | 58 ++++++++++++++----------------------- > 1 file changed, 22 insertions(+), 36 deletions(-) > > diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c > index 3704dbadba1d..9cc8a9153d76 100644 > --- a/drivers/bluetooth/hci_qca.c > +++ b/drivers/bluetooth/hci_qca.c > @@ -208,20 +208,15 @@ struct qca_device_data { > /* > * Platform data for the QCA Bluetooth power driver. > */ > -struct qca_power { > - struct device *dev; > - struct regulator_bulk_data *vreg_bulk; > - int num_vregs; > - bool vregs_on; > -}; > - > struct qca_serdev { > struct hci_uart serdev_hu; > struct gpio_desc *bt_en; > struct gpio_desc *sw_ctrl; > struct clk *susclk; > enum qca_btsoc_type btsoc_type; > - struct qca_power *bt_power; > + struct regulator_bulk_data *vreg_bulk; > + int num_vregs; > + bool vregs_on; > u32 init_speed; > u32 oper_speed; > const char *firmware_name; > @@ -1602,7 +1597,7 @@ static int qca_regulator_init(struct hci_uart *hu) > * off the voltage regulator. > */ > qcadev = serdev_device_get_drvdata(hu->serdev); > - if (!qcadev->bt_power->vregs_on) { > + if (!qcadev->vregs_on) { > serdev_device_close(hu->serdev); > ret = qca_regulator_enable(qcadev); > if (ret) > @@ -1945,20 +1940,19 @@ static int qca_power_off(struct hci_dev *hdev) > > static int qca_regulator_enable(struct qca_serdev *qcadev) > { > - struct qca_power *power = qcadev->bt_power; > int ret; > > /* Already enabled */ > - if (power->vregs_on) > + if (qcadev->vregs_on) > return 0; > > - BT_DBG("enabling %d regulators)", power->num_vregs); > + BT_DBG("enabling %d regulators)", qcadev->num_vregs); > > - ret = regulator_bulk_enable(power->num_vregs, power->vreg_bulk); > + ret = regulator_bulk_enable(qcadev->num_vregs, qcadev->vreg_bulk); > if (ret) > return ret; > > - power->vregs_on = true; > + qcadev->vregs_on = true; > > ret = clk_prepare_enable(qcadev->susclk); > if (ret) > @@ -1969,38 +1963,37 @@ static int qca_regulator_enable(struct qca_serdev *qcadev) > > static void qca_regulator_disable(struct qca_serdev *qcadev) > { > - struct qca_power *power; > - > if (!qcadev) > return; > > - power = qcadev->bt_power; > - > /* Already disabled? */ > - if (!power->vregs_on) > + if (!qcadev->vregs_on) > return; > > - regulator_bulk_disable(power->num_vregs, power->vreg_bulk); > - power->vregs_on = false; > + regulator_bulk_disable(qcadev->num_vregs, qcadev->vreg_bulk); > + qcadev->vregs_on = false; > > clk_disable_unprepare(qcadev->susclk); > } > > -static int qca_init_regulators(struct qca_power *qca, > - const struct qca_vreg *vregs, size_t num_vregs) > +static int qca_init_regulators(struct device *dev, struct qca_serdev *qca, > + const struct qca_vreg *vregs, size_t num_vregs) > { > struct regulator_bulk_data *bulk; > int ret; > int i; > > - bulk = devm_kcalloc(qca->dev, num_vregs, sizeof(*bulk), GFP_KERNEL); > + if (!num_vregs) > + return 0; > + > + bulk = devm_kcalloc(dev, num_vregs, sizeof(*bulk), GFP_KERNEL); > if (!bulk) > return -ENOMEM; > > for (i = 0; i < num_vregs; i++) > bulk[i].supply = vregs[i].name; > > - ret = devm_regulator_bulk_get(qca->dev, num_vregs, bulk); > + ret = devm_regulator_bulk_get(dev, num_vregs, bulk); > if (ret < 0) > return ret; > > @@ -2044,21 +2037,15 @@ static int qca_serdev_probe(struct serdev_device *serdev) > if ((qca_is_wcn399x(data->soc_type) || > qca_is_wcn6750(data->soc_type))) { > qcadev->btsoc_type = data->soc_type; > - qcadev->bt_power = devm_kzalloc(&serdev->dev, > - sizeof(struct qca_power), > - GFP_KERNEL); > - if (!qcadev->bt_power) > - return -ENOMEM; > - > - qcadev->bt_power->dev = &serdev->dev; > - err = qca_init_regulators(qcadev->bt_power, data->vregs, > + > + err = qca_init_regulators(&serdev->dev, qcadev, data->vregs, > data->num_vregs); > if (err) { > BT_ERR("Failed to init regulators:%d", err); > return err; > } > > - qcadev->bt_power->vregs_on = false; > + qcadev->vregs_on = false; > > qcadev->bt_en = devm_gpiod_get_optional(&serdev->dev, "enable", > GPIOD_OUT_LOW); > @@ -2139,11 +2126,10 @@ static int qca_serdev_probe(struct serdev_device *serdev) > static void qca_serdev_remove(struct serdev_device *serdev) > { > struct qca_serdev *qcadev = serdev_device_get_drvdata(serdev); > - struct qca_power *power = qcadev->bt_power; > > if ((qca_is_wcn399x(qcadev->btsoc_type) || > qca_is_wcn6750(qcadev->btsoc_type)) && > - power->vregs_on) > + qcadev->vregs_on) > qca_power_shutdown(&qcadev->serdev_hu); > else if (qcadev->susclk) > clk_disable_unprepare(qcadev->susclk); > -- > 2.30.2 >
next prev parent reply other threads:[~2021-07-14 17:25 UTC|newest] Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-06-21 22:31 [PATCH v3 0/7] Add support for Qualcomm QCA639x chips family Dmitry Baryshkov 2021-06-21 22:31 ` [PATCH v3 1/7] dt-bindings: regulator: qcom,qca6390: add binding for QCA6390 device Dmitry Baryshkov 2021-06-21 23:11 ` Add support for Qualcomm QCA639x chips family bluez.test.bot 2021-06-21 22:31 ` [PATCH v3 2/7] regulator: qca6390: add support for QCA639x powerup sequence Dmitry Baryshkov 2021-06-22 11:28 ` Mark Brown 2021-06-22 14:17 ` Dmitry Baryshkov 2021-06-22 14:38 ` Mark Brown 2021-06-22 16:46 ` Dmitry Baryshkov 2021-06-22 17:08 ` Mark Brown 2021-07-06 7:54 ` Ulf Hansson 2021-07-06 11:55 ` Mark Brown 2021-07-08 10:09 ` Ulf Hansson 2021-07-08 11:37 ` Dmitry Baryshkov 2021-07-14 16:47 ` Rob Herring 2021-07-14 17:10 ` Bjorn Andersson 2021-08-10 11:55 ` Ulf Hansson 2021-08-10 16:03 ` Bjorn Andersson 2021-08-12 9:48 ` Ulf Hansson 2021-08-12 11:51 ` Dmitry Baryshkov 2021-07-14 17:23 ` Bjorn Andersson 2021-06-21 22:31 ` [PATCH v3 3/7] Bluetooth: hci_qca: provide default device data Dmitry Baryshkov 2021-07-14 17:27 ` Bjorn Andersson 2021-06-21 22:31 ` [PATCH v3 4/7] Bluetooth: hci_qca: merge qca_power into qca_serdev Dmitry Baryshkov 2021-07-14 17:25 ` Bjorn Andersson [this message] 2021-06-21 22:31 ` [PATCH v3 5/7] Bluetooth: hci_qca: merge wcn & non-wcn code paths Dmitry Baryshkov 2021-06-21 22:31 ` [PATCH v3 6/7] Bluetooth: hci_qca: add power sequencer support to qca6390 Dmitry Baryshkov 2021-06-21 22:31 ` [PATCH v3 7/7] arm64: dts: qcom: qrb5165-rb5: add QCA6391 WiFi+BT SoC Dmitry Baryshkov
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=YO8eBZfLd0vnTy/x@yoga \ --to=bjorn.andersson@linaro.org \ --cc=agross@kernel.org \ --cc=broonie@kernel.org \ --cc=devicetree@vger.kernel.org \ --cc=dmitry.baryshkov@linaro.org \ --cc=johan.hedberg@gmail.com \ --cc=lgirdwood@gmail.com \ --cc=linux-arm-msm@vger.kernel.org \ --cc=linux-bluetooth@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=luiz.dentz@gmail.com \ --cc=manivannan.sadhasivam@linaro.org \ --cc=marcel@holtmann.org \ --cc=robh+dt@kernel.org \ --subject='Re: [PATCH v3 4/7] Bluetooth: hci_qca: merge qca_power into qca_serdev' \ /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
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).