From: Sascha Hauer <sha@pengutronix.de>
To: Stefan Kerkmann <s.kerkmann@pengutronix.de>
Cc: BAREBOX <barebox@lists.infradead.org>,
Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: Re: [PATCH] arm: mach-socfpga: detect workaround for dram controller erratum
Date: Fri, 15 Dec 2023 12:07:48 +0100 [thread overview]
Message-ID: <20231215110748.GO1318922@pengutronix.de> (raw)
In-Reply-To: <20231214-fix-socfpga-dram-errata-workaround-v1-1-abfab95e7f69@pengutronix.de>
On Thu, Dec 14, 2023 at 05:10:31PM +0100, Stefan Kerkmann wrote:
> To work around an erratum, the previous booting stage may have increased the
> amount of rows to fake having 4G of RAM. In that case, we assume the previous
> booting stage will have fixed up a proper memory size into the device tree and
> don't use the calculated dram size. The erratum itself appears to be
> undocumented by Altera/Intel and the workaround was introduced in the Alteras
> fork of U-Boot back in 2014 and ported to mainline later, the linked FogBugz
> issue is unfortunately not accessible.
>
> [1] github.com/altera-opensource/u-boot-socfpga/commit/93815696dce132ff8abc4ab2f4c195339ff821a0
>
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> Signed-off-by: Stefan Kerkmann <s.kerkmann@pengutronix.de>
Applied, thanks
Sascha
> ---
> To work around an erratum in the Altera DRAM controller, the previous
> booting stage may have increased the amount of rows to fake having 4G of
> RAM. In that case, we assume the previous booting stage will have fixed
> up a proper memory size into the device tree and don't use the
> calculated dram size. The erratum itself appears to be undocumented by
> Altera/Intel and the workaround was introduced in the Alteras fork of
> U-Boot back in 2014 and ported to mainline later, the linked FogBugz
> issue is unfortunately not accessible.
>
> [1] github.com/altera-opensource/u-boot-socfpga/commit/93815696dce132ff8abc4ab2f4c195339ff821a0
> ---
> arch/arm/mach-socfpga/cyclone5-generic.c | 17 +++++++++++++----
> 1 file changed, 13 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm/mach-socfpga/cyclone5-generic.c b/arch/arm/mach-socfpga/cyclone5-generic.c
> index ae8142b31c..0cb46b51e9 100644
> --- a/arch/arm/mach-socfpga/cyclone5-generic.c
> +++ b/arch/arm/mach-socfpga/cyclone5-generic.c
> @@ -128,7 +128,8 @@ void socfpga_cyclone5_timer_init(void)
> static int socfpga_detect_sdram(void)
> {
> void __iomem *base = (void *)CYCLONE5_SDR_ADDRESS;
> - uint32_t dramaddrw, ctrlwidth, memsize;
> + uint32_t dramaddrw, ctrlwidth;
> + uint64_t memsize;
> int colbits, rowbits, bankbits;
> int width_bytes;
>
> @@ -153,12 +154,20 @@ static int socfpga_detect_sdram(void)
> break;
> }
>
> - memsize = (1 << colbits) * (1 << rowbits) * (1 << bankbits) * width_bytes;
> + memsize = (1ULL << colbits) * (1ULL << rowbits) * (1ULL << bankbits) *
> + width_bytes;
>
> - pr_debug("%s: colbits: %d rowbits: %d bankbits: %d width: %d => memsize: 0x%08x\n",
> + pr_debug(
> + "%s: colbits: %d rowbits: %d bankbits: %d width: %d => memsize: 0x%08llx\n",
> __func__, colbits, rowbits, bankbits, width_bytes, memsize);
>
> - arm_add_mem_device("ram0", 0x0, memsize);
> + /* To work around an erratum in the dram controller, the previous booting
> + * stage may have increased the amount of rows to fake having 4G of RAM. In
> + * that case, we assume the previous booting stage will have fixed up a
> + * proper memory size into the device tree and don't add a bank here */
> + if (memsize < SZ_4G) {
> + arm_add_mem_device("ram0", 0x0, memsize);
> + }
>
> return 0;
> }
>
> ---
> base-commit: 975acf1bafba2366eb40c5e8d8cb732b53f27aa1
> change-id: 20231214-fix-socfpga-dram-errata-workaround-66cae33d7eed
>
> Best regards,
> --
> Stefan Kerkmann <s.kerkmann@pengutronix.de>
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
prev parent reply other threads:[~2023-12-15 11:08 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-14 16:10 Stefan Kerkmann
2023-12-15 11:07 ` Sascha Hauer [this message]
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=20231215110748.GO1318922@pengutronix.de \
--to=sha@pengutronix.de \
--cc=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=s.kerkmann@pengutronix.de \
/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