From: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
To: Bjorn Helgaas <helgaas@kernel.org>
Cc: Vidya Sagar <vidyas@nvidia.com>,
treding@nvidia.com, bhelgaas@google.com,
linux-tegra@vger.kernel.org, linux-pci@vger.kernel.org,
kthota@nvidia.com, swarren@nvidia.com, mmaddireddy@nvidia.com
Subject: Re: [PATCH V3 2/3] PCI: tegra: fixups to avoid unnecessary wakeup from ASPM-L1.2
Date: Tue, 21 Nov 2017 15:08:48 +0000 [thread overview]
Message-ID: <20171121150848.GB14465@red-moon> (raw)
In-Reply-To: <20171120213052.GD16362@bhelgaas-glaptop.roam.corp.google.com>
On Mon, Nov 20, 2017 at 03:30:52PM -0600, Bjorn Helgaas wrote:
[...]
> > static inline struct tegra_msi *to_tegra_msi(struct msi_controller *chip)
> > @@ -2290,6 +2293,16 @@ static void tegra_pcie_apply_sw_fixup(struct tegra_pcie_port *port)
> > (7 << RP_L1_PM_SUBSTATES_CTL_T_PWRN_VAL_SHIFT);
> > writel(value, port->base + RP_L1_PM_SUBSTATES_CTL);
> >
> > + if (soc->l1ss_rp_wake_fixup) {
> > + /* Set CLKREQ asserted delay greater than Power_Off
> > + * time (2us) to avoid RP wakeup in L1.2_ENTRY
> > + */
>
> Use standard multi-line comment formatting (and "L1.2.Entry" as above).
>
> I assume "CLKREQ asserted delay" is a Tegra-internal thing, since it
> doesn't obviously correspond to a timing parameter in the spec.
>
> And I assume it doesn't depend on any of the OS-writable things in the
> L1 PM Substates control registers, since this fixup isn't executed
> during config writes to those registers?
>
> Does this depend on any circuit details outside of Tegra, i.e., should
> it be described via DT?
Yes, I have noticed too that there are lots of hardcoded values in this
driver that may benefit from some Tegra DT bindings instead of
hardcoding everything in the kernel.
Thanks,
Lorenzo
> > + value = readl(port->base + RP_L1_PM_SUBSTATES_1_CTL);
> > + value &= ~RP_L1SS_1_CTL_CLKREQ_ASSERTED_DLY_MASK;
> > + value |= RP_L1SS_1_CTL_CLKREQ_ASSERTED_DLY;
> > + writel(value, port->base + RP_L1_PM_SUBSTATES_1_CTL);
> > + }
> > +
> > /* Following is based on clk_m being 19.2 MHz */
> > value = readl(port->base + RP_L1_PM_SUBSTATES_1_CTL);
> > value &= ~RP_L1_PM_SUBSTATES_1_CTL_PWR_OFF_DLY_MASK;
> > @@ -2446,6 +2459,7 @@ static const struct tegra_pcie_soc tegra20_pcie = {
> > .program_deskew_time = false,
> > .updateFC_threshold = false,
> > .has_aspm_l1ss = false,
> > + .l1ss_rp_wake_fixup = false,
> > };
> >
> > static const struct tegra_pcie_soc tegra30_pcie = {
> > @@ -2468,6 +2482,7 @@ static const struct tegra_pcie_soc tegra30_pcie = {
> > .program_deskew_time = false,
> > .updateFC_threshold = false,
> > .has_aspm_l1ss = false,
> > + .l1ss_rp_wake_fixup = false,
> > };
> >
> > static const struct tegra_pcie_soc tegra124_pcie = {
> > @@ -2489,6 +2504,7 @@ static const struct tegra_pcie_soc tegra124_pcie = {
> > .program_deskew_time = false,
> > .updateFC_threshold = false,
> > .has_aspm_l1ss = false,
> > + .l1ss_rp_wake_fixup = false,
> > };
> >
> > static const struct tegra_pcie_soc tegra210_pcie = {
> > @@ -2518,6 +2534,7 @@ static const struct tegra_pcie_soc tegra210_pcie = {
> > .program_deskew_time = true,
> > .updateFC_threshold = true,
> > .has_aspm_l1ss = true,
> > + .l1ss_rp_wake_fixup = true,
> > };
> >
> > static const struct tegra_pcie_soc tegra186_pcie = {
> > @@ -2540,6 +2557,7 @@ static const struct tegra_pcie_soc tegra186_pcie = {
> > .program_deskew_time = false,
> > .updateFC_threshold = false,
> > .has_aspm_l1ss = true,
> > + .l1ss_rp_wake_fixup = false,
> > };
> >
> > static const struct of_device_id tegra_pcie_of_match[] = {
> > --
> > 2.7.4
> >
next prev parent reply other threads:[~2017-11-21 15:08 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-12 13:17 [PATCH V3 0/3] Add ASPM-L1 Substates support for Tegra Vidya Sagar
2017-11-12 13:17 ` [PATCH V3 1/3] PCI: tegra: Apply sw fixups to support ASPM-L1 Sub-States Vidya Sagar
2017-11-20 21:21 ` Bjorn Helgaas
2017-12-14 16:32 ` Vidya Sagar
2017-12-14 23:39 ` Bjorn Helgaas
2017-11-12 13:17 ` [PATCH V3 2/3] PCI: tegra: fixups to avoid unnecessary wakeup from ASPM-L1.2 Vidya Sagar
2017-11-20 21:30 ` Bjorn Helgaas
2017-11-21 15:08 ` Lorenzo Pieralisi [this message]
2017-12-14 16:32 ` Vidya Sagar
2017-11-12 13:17 ` [PATCH V3 3/3] PCI: tegra: Enable ASPM-L1 capability advertisement Vidya Sagar
2017-11-20 21:37 ` Bjorn Helgaas
2017-12-14 16:31 ` Vidya Sagar
2017-12-14 23:46 ` Bjorn Helgaas
2017-12-14 14:59 ` [PATCH V3 0/3] Add ASPM-L1 Substates support for Tegra Thierry Reding
2017-12-14 16:35 ` Vidya Sagar
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=20171121150848.GB14465@red-moon \
--to=lorenzo.pieralisi@arm.com \
--cc=bhelgaas@google.com \
--cc=helgaas@kernel.org \
--cc=kthota@nvidia.com \
--cc=linux-pci@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=mmaddireddy@nvidia.com \
--cc=swarren@nvidia.com \
--cc=treding@nvidia.com \
--cc=vidyas@nvidia.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).