From: James Hogan <jhogan@kernel.org>
To: IKEGAMI Tokunori <ikegami@allied-telesis.co.jp>
Cc: "linux-mips@linux-mips.org" <linux-mips@linux-mips.org>,
"PACKHAM Chris" <chris.packham@alliedtelesis.co.nz>,
"Hauke Mehrtens" <hauke@hauke-m.de>,
"Rafał Miłecki" <zajec5@gmail.com>
Subject: Re: MIPS: BCM47XX: Enable MIPS32 74K Core ExternalSync for BCM47XX PCIe erratum
Date: Tue, 24 Apr 2018 12:49:57 +0100 [thread overview]
Message-ID: <20180424114956.GA28813@saruman> (raw)
In-Reply-To: <TY1PR01MB0954C80E15BA87D03E3A6880DC880@TY1PR01MB0954.jpnprd01.prod.outlook.com>
[-- Attachment #1: Type: text/plain, Size: 4897 bytes --]
Hi,
On Tue, Apr 24, 2018 at 07:33:51AM +0000, IKEGAMI Tokunori wrote:
> Let us consult to change MIPS BCM47XX to enable MIPS32 74K Core ExternalSync.
> Can we change the MIPS BCM47XX driver like this?
> If any comment or concern please let us know.
Thanks for the patch.
Please use git-send-email to send patches in future if possible (you can
put additional comments that aren't part of the commit message after a
"---" separator). That should help format it correctly and will put a
[PATCH] prefix etc.
I've also Cc'd Hauke and Rafał who maintain the BCM47XX platform.
Running scripts/get_maintainer.pl on the patch will list some
maintainers who might be worth Cc'ing on a patch.
>
>
> From d6904a5fc90aaf205e982755e4d6cda62ad21273 Mon Sep 17 00:00:00 2001
> From: Tokunori Ikegami <ikegami@allied-telesis.co.jp>
> Date: Thu, 22 Feb 2018 12:02:16 +0900
> Subject: [PATCH 1/2] MIPS: BCM47XX: Enable MIPS32 74K Core ExternalSync for
> BCM47XX PCIe erratum
>
> The erratum and workaround are described by BCM5300X-ES300-RDS.pdf as below.
Is that document accessible anywhere publicly?
>
> R10: PCIe Transactions Periodically Fail
>
> Description: The BCM5300X PCIe does not maintain transaction ordering.
> This may cause PCIe transaction failure.
> Fix Comment: Add a dummy PCIe configuration read after a PCIe
> configuration write to ensure PCIe configuration access
> ordering. Set ES bit of CP0 configu7 register to enable
> sync function so that the sync instruction is functional.
> Resolution: hndpci.c: extpci_write_config()
> hndmips.c: si_mips_init()
> mipsinc.h CONF7_ES
>
> This is fixed by the CFE MIPS bcmsi chipset driver also for BCM47XX.
> Also the dummy PCIe configuration read is already implemented in the Linux
> BCMA driver.
> This patch is just to enable ExternalSync in the Linux driver.
I suggest rewording this line to explain how ES helps, maybe something
along the lines of:
"Enable ExternalSync in Config7 when CONFIG_BCMA_DRIVER_PCI_HOSTMODE=y
too so that the sync instruction is externalised..."
(Best not to refer to "this patch", just say what it does, and in Linux
terminology this is architecture code, not really a driver).
>
> Change-Id: Ifc7a0ce46962933731297ad0c82682e7d39328ff
You can drop this from upstream submissions in future.
You also need a signed-off-by line as described in
Documentation/process/submitting-patches.rst to certify the work as
complying with the "Developer's Certificate of Origin".
> Reviewed-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
> ---
> arch/mips/include/asm/mipsregs.h | 2 ++
> arch/mips/kernel/cpu-probe.c | 7 +++++++
> 2 files changed, 9 insertions(+)
>
> diff --git a/arch/mips/include/asm/mipsregs.h b/arch/mips/include/asm/mipsregs.h
> index 858752dac337..1d1f4416a0f3 100644
> --- a/arch/mips/include/asm/mipsregs.h
> +++ b/arch/mips/include/asm/mipsregs.h
> @@ -680,6 +680,8 @@
> #define MIPS_CONF7_WII (_ULCAST_(1) << 31)
>
> #define MIPS_CONF7_RPS (_ULCAST_(1) << 2)
> +/* ExternalSync */
> +#define MIPS_CONF7_ES (_ULCAST_(1) << 8)
>
> #define MIPS_CONF7_IAR (_ULCAST_(1) << 10)
> #define MIPS_CONF7_AR (_ULCAST_(1) << 16)
> diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
> index cf3fd549e16d..9171928c40dd 100644
> --- a/arch/mips/kernel/cpu-probe.c
> +++ b/arch/mips/kernel/cpu-probe.c
> @@ -429,6 +429,13 @@ static inline void check_errata(void)
> if ((c->processor_id & PRID_REV_MASK) <= PRID_REV_34K_V1_0_2)
> write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS);
> break;
> +#ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE
> + case CPU_74K:
> + /* Enable ExternalSync for sync instruction to take effect */
I think it would be helpful to mention the affected device and any
errata number in this comment.
> + pr_info("ExternalSync has been enabled\n");
> + write_c0_config7(read_c0_config7() | MIPS_CONF7_ES);
(I would have suggested adding:
diff --git a/arch/mips/include/asm/mipsregs.h b/arch/mips/include/asm/mipsregs.h
index f65859784a4c..af6e59cfc763 100644
--- a/arch/mips/include/asm/mipsregs.h
+++ b/arch/mips/include/asm/mipsregs.h
@@ -2760,6 +2760,7 @@ __BUILD_SET_C0(status)
__BUILD_SET_C0(cause)
__BUILD_SET_C0(config)
__BUILD_SET_C0(config5)
+__BUILD_SET_C0(config7)
__BUILD_SET_C0(intcontrol)
__BUILD_SET_C0(intctl)
__BUILD_SET_C0(srsmap)
Then you can just do:
set_c0_config7(MIPS_CONF7_ES);
But I see the write(read() | x) form is already there in that file, so
probably best to remain consistent with that. Using set_c0_config7() can
always be done later as a separate patch.)
Otherwise the change itself looks reasonable to me.
Thanks
James
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2018-04-24 11:50 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-24 7:33 MIPS: BCM47XX: Enable MIPS32 74K Core ExternalSync for BCM47XX PCIe erratum IKEGAMI Tokunori
2018-04-24 11:49 ` James Hogan [this message]
2018-04-24 12:06 ` Matt Redfearn
2018-04-24 12:32 ` James Hogan
2018-04-24 16:39 ` IKEGAMI Tokunori
2018-04-24 16:00 ` IKEGAMI Tokunori
2018-04-24 19:19 ` [PATCH] " smtpuser
2018-04-24 21:42 ` Hauke Mehrtens
2018-04-25 1:28 ` IKEGAMI Tokunori
2018-05-28 0:34 ` IKEGAMI Tokunori
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=20180424114956.GA28813@saruman \
--to=jhogan@kernel.org \
--cc=chris.packham@alliedtelesis.co.nz \
--cc=hauke@hauke-m.de \
--cc=ikegami@allied-telesis.co.jp \
--cc=linux-mips@linux-mips.org \
--cc=zajec5@gmail.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