From: Florian Fainelli <f.fainelli@gmail.com>
To: Philipp Zabel <p.zabel@pengutronix.de>, linux-kernel@vger.kernel.org
Cc: Jim Quinlan <jim2101024@gmail.com>,
Jim Quinlan <im2101024@gmail.com>, Rob Herring <robh@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
"maintainer:BROADCOM BCM7XXX ARM ARCHITECTURE"
<bcm-kernel-feedback-list@broadcom.com>,
"open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS"
<devicetree@vger.kernel.org>,
"moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 2/2] reset: Add Broadcom STB RESCAL reset controller
Date: Wed, 11 Dec 2019 10:12:15 -0800 [thread overview]
Message-ID: <469c7b73-b028-1691-d5f0-0ceb3007da1c@gmail.com> (raw)
In-Reply-To: <89d2d00058e34e7571fc0f50ce487cf54414cd49.camel@pengutronix.de>
On 12/11/2019 1:48 AM, Philipp Zabel wrote:
>> +#define BRCM_RESCAL_START 0
>> +#define BRCM_RESCAL_START_BIT BIT(0)
>> +#define BRCM_RESCAL_CTRL 4
>> +#define BRCM_RESCAL_STATUS 8
>> +#define BRCM_RESCAL_STATUS_BIT BIT(0)
>
> Is there any reason the start bit is indented but the status bit is not?
This is a convention we have tried to adopt to denote the definition
from a register word address/offset versus the definition for bits
within that register word.
>
>> +
>> +struct brcm_rescal_reset {
>> + void __iomem *base;
>> + struct device *dev;
>> + struct reset_controller_dev rcdev;
>> +};
>> +
>> +static int brcm_rescal_reset_assert(struct reset_controller_dev *rcdev,
>> + unsigned long id)
>> +{
>> + return 0;
>> +}
>
> Please do not implement the assert operation if it doesn't cause a reset
> line to be asserted afterwards.
> The reset core will return 0 from reset_control_assert() for shared
> reset controls if .assert is not implemented.
OK, will drop it.
>
>> +
>> +static int brcm_rescal_reset_deassert(struct reset_controller_dev *rcdev,
>> + unsigned long id)
>> +{
>> + struct brcm_rescal_reset *data =
>> + container_of(rcdev, struct brcm_rescal_reset, rcdev);
>> + void __iomem *base = data->base;
>> + const int NUM_RETRIES = 10;
>> + u32 reg;
>> + int i;
>> +
>> + reg = readl(base + BRCM_RESCAL_START);
>> + writel(reg | BRCM_RESCAL_START_BIT, base + BRCM_RESCAL_START);
>> + reg = readl(base + BRCM_RESCAL_START);
>
> Are there any other fields beside the START_BIT in this register?
This is the only bit actually.
>
>> + if (!(reg & BRCM_RESCAL_START_BIT)) {
>> + dev_err(data->dev, "failed to start sata/pcie rescal\n");
>> + return -EIO;
>> + }
>> +
>> + reg = readl(base + BRCM_RESCAL_STATUS);
>> + for (i = NUM_RETRIES; i >= 0 && !(reg & BRCM_RESCAL_STATUS_BIT); i--) {
>> + udelay(100);
>> + reg = readl(base + BRCM_RESCAL_STATUS);
>> + }
>
> This timeout loop should be replaced by a single readl_poll_timeout().
> At 100 µs waits per iteration this could use the sleeping variant.
OK, will do.
>
>> + if (!(reg & BRCM_RESCAL_STATUS_BIT)) {
>> + dev_err(data->dev, "timedout on sata/pcie rescal\n");
>> + return -ETIMEDOUT;
>> + }
>> +
>> + reg = readl(base + BRCM_RESCAL_START);
>> + writel(reg ^ BRCM_RESCAL_START_BIT, base + BRCM_RESCAL_START);
>
> Please use &= ~BRCM_RESCAL_START_BIT instead.
>
I think the idea was to avoid unconditionally clearing it, but based on
the documentation, I don't see this being harmful, Jim?
>> + reg = readl(base + BRCM_RESCAL_START);
>> + dev_dbg(data->dev, "sata/pcie rescal success\n");
>> +
>> + return 0;
>> +}
>
> This whole function looks a lot like it doesn't just deassert a reset
> line, but actually issues a complete reset procedure of some kind. Do
> you have some insight on what actually happens in the hardware when the
> start bit is triggered? I suspect this should be implemented with the
> .reset operation.
This hardware block is controlling the reset and calibration process of
the SATA/PCIe combo PHY analog front end, but is not technically part of
the PCIe or SATA PHY proper, it stands on its own, both functionally and
from a register space perspective. The motivation for modelling this as
a reset controller is that it does a reset (and a calibration) and this
is a shared reset line among 2/3 instances of another block. If you
think we should model this differently, please let us know.
--
Florian
next prev parent reply other threads:[~2019-12-11 18:12 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-10 19:59 [PATCH 0/2] " Florian Fainelli
2019-12-10 19:59 ` [PATCH 1/2] dt-bindings: reset: Document BCM7216 " Florian Fainelli
2019-12-19 20:40 ` Rob Herring
2019-12-19 20:52 ` Florian Fainelli
2019-12-10 19:59 ` [PATCH 2/2] reset: Add Broadcom STB " Florian Fainelli
2019-12-11 9:48 ` Philipp Zabel
2019-12-11 18:12 ` Florian Fainelli [this message]
2019-12-12 10:01 ` Philipp Zabel
2019-12-30 19:05 ` Florian Fainelli
2020-01-02 11:23 ` Philipp Zabel
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=469c7b73-b028-1691-d5f0-0ceb3007da1c@gmail.com \
--to=f.fainelli@gmail.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=devicetree@vger.kernel.org \
--cc=im2101024@gmail.com \
--cc=jim2101024@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=p.zabel@pengutronix.de \
--cc=robh@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
all inboxes | Powered by JetHome®