From: Lorenzo Bianconi <lorenzo@kernel.org>
To: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Cc: linux-pci@vger.kernel.org, ryder.lee@mediatek.com,
lpieralisi@kernel.org, kw@linux.com, robh@kernel.org,
bhelgaas@google.com, linux-mediatek@lists.infradead.org,
lorenzo.bianconi83@gmail.com,
linux-arm-kernel@lists.infradead.org,
krzysztof.kozlowski+dt@linaro.org, devicetree@vger.kernel.org,
nbd@nbd.name, dd@embedd.com, upstream@airoha.com
Subject: Re: [PATCH 3/4] PCI: mediatek-gen3: rely on reset_bulk APIs for phy reset lines
Date: Thu, 27 Jun 2024 09:03:35 +0200 [thread overview]
Message-ID: <Zn0Ox8HTfNLQddsR@lore-desk> (raw)
In-Reply-To: <ee7ef59d-a698-41ba-a3a6-1e9e32313e2d@collabora.com>
[-- Attachment #1: Type: text/plain, Size: 5656 bytes --]
> Il 21/06/24 16:48, Lorenzo Bianconi ha scritto:
> > Use reset_bulk APIs to manage phy reset lines. This is a preliminary
> > patch in order to add Airoha EN7581 pcie support.
> >
> > Tested-by: Zhengping Zhang <zhengping.zhang@airoha.com>
> > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > ---
> > drivers/pci/controller/pcie-mediatek-gen3.c | 49 ++++++++++++++++-----
> > 1 file changed, 37 insertions(+), 12 deletions(-)
> >
> > diff --git a/drivers/pci/controller/pcie-mediatek-gen3.c b/drivers/pci/controller/pcie-mediatek-gen3.c
> > index 4859bd875bc4..9842617795a9 100644
> > --- a/drivers/pci/controller/pcie-mediatek-gen3.c
> > +++ b/drivers/pci/controller/pcie-mediatek-gen3.c
> > @@ -100,14 +100,21 @@
> > #define PCIE_ATR_TLP_TYPE_MEM PCIE_ATR_TLP_TYPE(0)
> > #define PCIE_ATR_TLP_TYPE_IO PCIE_ATR_TLP_TYPE(2)
> > +#define MAX_NUM_PHY_RSTS 1
> > +
> > struct mtk_gen3_pcie;
> > /**
> > * struct mtk_pcie_soc - differentiate between host generations
> > * @power_up: pcie power_up callback
> > + * @phy_resets: phy reset lines SoC data.
> > */
> > struct mtk_pcie_soc {
> > int (*power_up)(struct mtk_gen3_pcie *pcie);
> > + struct {
> > + const char *id[MAX_NUM_PHY_RSTS];
> > + int num_rsts;
>
> Well, it's just two chars after all, so "num_resets" looks better imo.
ack, fine. Naming is always hard :)
>
> > + } phy_resets;
> > };
> > /**
> > @@ -128,7 +135,7 @@ struct mtk_msi_set {
> > * @base: IO mapped register base
> > * @reg_base: physical register base
> > * @mac_reset: MAC reset control
> > - * @phy_reset: PHY reset control
> > + * @phy_resets: PHY reset controllers
> > * @phy: PHY controller block
> > * @clks: PCIe clocks
> > * @num_clks: PCIe clocks count for this port
> > @@ -148,7 +155,7 @@ struct mtk_gen3_pcie {
> > void __iomem *base;
> > phys_addr_t reg_base;
> > struct reset_control *mac_reset;
> > - struct reset_control *phy_reset;
> > + struct reset_control_bulk_data phy_resets[MAX_NUM_PHY_RSTS];
> > struct phy *phy;
> > struct clk_bulk_data *clks;
> > int num_clks;
> > @@ -790,8 +797,8 @@ static int mtk_pcie_parse_port(struct mtk_gen3_pcie *pcie)
> > {
> > struct device *dev = pcie->dev;
> > struct platform_device *pdev = to_platform_device(dev);
> > + int i, ret, num_rsts = pcie->soc->phy_resets.num_rsts; > struct resource *regs;
> > - int ret;
> > regs = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pcie-mac");
> > if (!regs)
> > @@ -804,12 +811,13 @@ static int mtk_pcie_parse_port(struct mtk_gen3_pcie *pcie)
> > pcie->reg_base = regs->start;
> > - pcie->phy_reset = devm_reset_control_get_optional_exclusive(dev, "phy");
> > - if (IS_ERR(pcie->phy_reset)) {
> > - ret = PTR_ERR(pcie->phy_reset);
> > - if (ret != -EPROBE_DEFER)
> > - dev_err(dev, "failed to get PHY reset\n");
> > + for (i = 0; i < num_rsts; i++)
> > + pcie->phy_resets[i].id = pcie->soc->phy_resets.id[i];
> > + ret = devm_reset_control_bulk_get_optional_shared(dev, num_rsts,
> > + pcie->phy_resets);
>
> 92 columns is ok, you can use one line for that.
I usually prefer to stay below 79 column limit, but I do not have a strong
opinion about it. I will fix it and even all below.
Regards,
Lorenzo
>
> > + if (ret) {
> > + dev_err(dev, "failed to get PHY bulk reset\n");
> > return ret;
> > }
> > @@ -846,7 +854,12 @@ static int mtk_pcie_power_up(struct mtk_gen3_pcie *pcie)
> > int err;
> > /* PHY power on and enable pipe clock */
> > - reset_control_deassert(pcie->phy_reset);
> > + err = reset_control_bulk_deassert(pcie->soc->phy_resets.num_rsts,
> > + pcie->phy_resets);
> > + if (err) {
> > + dev_err(dev, "failed to deassert PHYs\n");
> > + return err;
> > + }
> > err = phy_init(pcie->phy);
> > if (err) {
> > @@ -882,7 +895,8 @@ static int mtk_pcie_power_up(struct mtk_gen3_pcie *pcie)
> > err_phy_on:
> > phy_exit(pcie->phy);
> > err_phy_init:
> > - reset_control_assert(pcie->phy_reset);
> > + reset_control_bulk_assert(pcie->soc->phy_resets.num_rsts,
> > + pcie->phy_resets);
>
> same here
>
> > return err;
> > }
> > @@ -897,7 +911,8 @@ static void mtk_pcie_power_down(struct mtk_gen3_pcie *pcie)
> > phy_power_off(pcie->phy);
> > phy_exit(pcie->phy);
> > - reset_control_assert(pcie->phy_reset);
> > + reset_control_bulk_assert(pcie->soc->phy_resets.num_rsts,
> > + pcie->phy_resets);
>
> ditto
>
> > }
> > static int mtk_pcie_setup(struct mtk_gen3_pcie *pcie)
> > @@ -912,7 +927,13 @@ static int mtk_pcie_setup(struct mtk_gen3_pcie *pcie)
> > * The controller may have been left out of reset by the bootloader
> > * so make sure that we get a clean start by asserting resets here.
> > */
> > - reset_control_assert(pcie->phy_reset);
> > + reset_control_bulk_deassert(pcie->soc->phy_resets.num_rsts,
> > + pcie->phy_resets);
>
> and again...
>
> > + usleep_range(5000, 10000);
> > + reset_control_bulk_assert(pcie->soc->phy_resets.num_rsts,
> > + pcie->phy_resets);
>
> .... :-)
>
> Cheers,
> Angelo
>
> > + msleep(100);
> > +
> > reset_control_assert(pcie->mac_reset);
> > usleep_range(10, 20);
> > @@ -1090,6 +1111,10 @@ static const struct dev_pm_ops mtk_pcie_pm_ops = {
> > static const struct mtk_pcie_soc mtk_pcie_soc_mt8192 = {
> > .power_up = mtk_pcie_power_up,
> > + .phy_resets = {
> > + .id[0] = "phy",
> > + .num_rsts = 1,
> > + },
> > };
> > static const struct of_device_id mtk_pcie_of_match[] = {
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2024-06-27 7:03 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-21 14:48 [PATCH 0/4] Add Airoha EN7581 PCIE support Lorenzo Bianconi
2024-06-21 14:48 ` [PATCH 1/4] dt-bindings: PCI: mediatek-gen3: add support for Airoha EN7581 Lorenzo Bianconi
2024-06-22 12:04 ` Conor Dooley
2024-06-23 9:31 ` Lorenzo Bianconi
2024-06-21 14:48 ` [PATCH 2/4] PCI: mediatek-gen3: Add mtk_pcie_soc data structure Lorenzo Bianconi
2024-06-24 7:57 ` AngeloGioacchino Del Regno
2024-06-27 6:50 ` Lorenzo Bianconi
2024-06-21 14:48 ` [PATCH 3/4] PCI: mediatek-gen3: rely on reset_bulk APIs for phy reset lines Lorenzo Bianconi
2024-06-21 17:51 ` Bjorn Helgaas
2024-06-21 21:43 ` Lorenzo Bianconi
2024-06-24 8:01 ` AngeloGioacchino Del Regno
2024-06-27 7:03 ` Lorenzo Bianconi [this message]
2024-06-21 14:48 ` [PATCH 4/4] PCI: mediatek-gen3: Add Airoha EN7581 support Lorenzo Bianconi
2024-06-21 18:02 ` Bjorn Helgaas
2024-06-21 22:03 ` Lorenzo Bianconi
2024-06-24 7:55 ` AngeloGioacchino Del Regno
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=Zn0Ox8HTfNLQddsR@lore-desk \
--to=lorenzo@kernel.org \
--cc=angelogioacchino.delregno@collabora.com \
--cc=bhelgaas@google.com \
--cc=dd@embedd.com \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=kw@linux.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-pci@vger.kernel.org \
--cc=lorenzo.bianconi83@gmail.com \
--cc=lpieralisi@kernel.org \
--cc=nbd@nbd.name \
--cc=robh@kernel.org \
--cc=ryder.lee@mediatek.com \
--cc=upstream@airoha.com \
/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).