From: Sascha Hauer <s.hauer@pengutronix.de>
To: "Baeuerle, Florian" <Florian.Baeuerle@allegion.com>
Cc: "barebox@lists.infradead.org" <barebox@lists.infradead.org>
Subject: Re: [PATCH] phycard-imx27: add support for 64MB RAM variants
Date: Mon, 10 Dec 2018 10:19:33 +0100 [thread overview]
Message-ID: <20181210091933.3lrzl5efmrn2v3p3@pengutronix.de> (raw)
In-Reply-To: <20181207161732.16561-1-florian.baeuerle@allegion.com>
On Fri, Dec 07, 2018 at 04:17:53PM +0000, Baeuerle, Florian wrote:
> Some older pca100 boards were available with 64MB RAM. The chips
> require a slightly different sdram controller initialization. Support
> this by building bootloader images for both variants.
>
> Signed-off-by: Florian Bäuerle <florian.baeuerle@allegion.com>
> ---
> arch/arm/boards/phytec-phycard-imx27/lowlevel.c | 52 +++++++++++++++++++------
> images/Makefile.imx | 10 +++--
> 2 files changed, 48 insertions(+), 14 deletions(-)
Applied, thanks
Sascha
>
> diff --git a/arch/arm/boards/phytec-phycard-imx27/lowlevel.c b/arch/arm/boards/phytec-phycard-imx27/lowlevel.c
> index e1132e0..1e96c08 100644
> --- a/arch/arm/boards/phytec-phycard-imx27/lowlevel.c
> +++ b/arch/arm/boards/phytec-phycard-imx27/lowlevel.c
> @@ -15,11 +15,30 @@
> #include <mach/esdctl.h>
> #include <mach/imx-nand.h>
>
> -#define ESDCTL0_VAL (ESDCTL0_SDE | ESDCTL0_ROW13 | ESDCTL0_COL10)
> +enum {
> + PHYCARD_MICRON_64MB,
> + PHYCARD_MICRON_128MB,
> +};
>
> -static void sdram_init(void)
> +#define ESDCTL0_VAL_64MB (ESDCTL0_SDE | ESDCTL0_ROW13 | ESDCTL0_COL9)
> +#define ESDCFG0_VAL_64MB 0x00696429
> +#define ESDCTL0_VAL_128MB (ESDCTL0_SDE | ESDCTL0_ROW13 | ESDCTL0_COL10)
> +#define ESDCFG0_VAL_128MB 0x006ac73a
> +
> +static void sdram_init(int sdram)
> {
> int i;
> + unsigned esdcfg, esdctl;
> +
> + if (sdram == PHYCARD_MICRON_64MB) {
> + esdcfg = ESDCFG0_VAL_64MB;
> + esdctl = ESDCTL0_VAL_64MB;
> + } else if (sdram == PHYCARD_MICRON_128MB) {
> + esdcfg = ESDCFG0_VAL_128MB;
> + esdctl = ESDCTL0_VAL_128MB;
> + } else {
> + hang();
> + }
>
> /*
> * DDR on CSD0
> @@ -36,29 +55,29 @@ static void sdram_init(void)
>
> /* Initial reset */
> writel(0x00000004, MX27_ESDCTL_BASE_ADDR + IMX_ESDMISC);
> - writel(0x006ac73a, MX27_ESDCTL_BASE_ADDR + IMX_ESDCFG0);
> + writel(esdcfg, MX27_ESDCTL_BASE_ADDR + IMX_ESDCFG0);
>
> /* precharge CSD0 all banks */
> - writel(ESDCTL0_VAL | ESDCTL0_SMODE_PRECHARGE,
> + writel(esdctl | ESDCTL0_SMODE_PRECHARGE,
> MX27_ESDCTL_BASE_ADDR + IMX_ESDCTL0);
> writel(0x00000000, 0xa0000f00); /* CSD0 precharge address (A10 = 1) */
> - writel(ESDCTL0_VAL | ESDCTL0_SMODE_AUTO_REFRESH,
> + writel(esdctl | ESDCTL0_SMODE_AUTO_REFRESH,
> MX27_ESDCTL_BASE_ADDR + IMX_ESDCTL0);
>
> for (i = 0; i < 8; i++)
> writel(0, 0xa0000f00);
>
> - writel(ESDCTL0_VAL | ESDCTL0_SMODE_LOAD_MODE,
> + writel(esdctl | ESDCTL0_SMODE_LOAD_MODE,
> MX27_ESDCTL_BASE_ADDR + IMX_ESDCTL0);
> writeb(0xda, 0xa0000033);
> writeb(0xff, 0xa1000000);
>
> - writel(ESDCTL0_VAL | ESDCTL0_DSIZ_31_0 | ESDCTL0_REF4 |
> + writel(esdctl | ESDCTL0_DSIZ_31_0 | ESDCTL0_REF4 |
> ESDCTL0_BL | ESDCTL0_SMODE_NORMAL,
> MX27_ESDCTL_BASE_ADDR + IMX_ESDCTL0);
> }
>
> -void __bare_init __naked phytec_phycard_imx27_common_init(void *fdt)
> +void __bare_init __naked phytec_phycard_imx27_common_init(void *fdt, int sdram)
> {
> unsigned long r;
>
> @@ -96,14 +115,25 @@ void __bare_init __naked phytec_phycard_imx27_common_init(void *fdt)
> MX27_CSCR_SSI1_SEL | MX27_CSCR_H264_SEL |
> MX27_CSCR_MSHC_SEL, MX27_CCM_BASE_ADDR + MX27_CSCR);
>
> - sdram_init();
> + sdram_init(sdram);
>
> imx27_barebox_boot_nand_external(fdt);
> }
>
> extern char __dtb_imx27_phytec_phycard_s_rdk_bb_start[];
>
> -ENTRY_FUNCTION(start_phytec_phycard_imx27, r0, r1, r2)
> +ENTRY_FUNCTION(start_phytec_phycard_imx27_64mb, r0, r1, r2)
> +{
> + void *fdt;
> +
> + arm_setup_stack(MX27_IRAM_BASE_ADDR + MX27_IRAM_SIZE - 12);
> +
> + fdt = __dtb_imx27_phytec_phycard_s_rdk_bb_start + get_runtime_offset();
> +
> + phytec_phycard_imx27_common_init(fdt, PHYCARD_MICRON_64MB);
> +}
> +
> +ENTRY_FUNCTION(start_phytec_phycard_imx27_128mb, r0, r1, r2)
> {
> void *fdt;
>
> @@ -111,5 +141,5 @@ ENTRY_FUNCTION(start_phytec_phycard_imx27, r0, r1, r2)
>
> fdt = __dtb_imx27_phytec_phycard_s_rdk_bb_start + get_runtime_offset();
>
> - phytec_phycard_imx27_common_init(fdt);
> + phytec_phycard_imx27_common_init(fdt, PHYCARD_MICRON_128MB);
> }
> diff --git a/images/Makefile.imx b/images/Makefile.imx
> index 9b5cd57..81df88e 100644
> --- a/images/Makefile.imx
> +++ b/images/Makefile.imx
> @@ -43,9 +43,13 @@ CFG_start_imx25_karo_tx25.pblx.imximg = $(board)/karo-tx25/flash-header-tx25.imx
> FILE_barebox-karo-tx25-internal.img = start_imx25_karo_tx25.pblx.imximg
> image-$(CONFIG_MACH_TX25) += barebox-karo-tx25-internal.img
>
> -pblx-$(CONFIG_MACH_PCA100) += start_phytec_phycard_imx27
> -FILE_barebox-phytec-phycard-imx27.img = start_phytec_phycard_imx27.pblx
> -image-$(CONFIG_MACH_PCA100) += barebox-phytec-phycard-imx27.img
> +pblx-$(CONFIG_MACH_PCA100) += start_phytec_phycard_imx27_64mb
> +FILE_barebox-phytec-phycard-imx27-64mb.img = start_phytec_phycard_imx27_64mb.pblx
> +image-$(CONFIG_MACH_PCA100) += barebox-phytec-phycard-imx27-64mb.img
> +
> +pblx-$(CONFIG_MACH_PCA100) += start_phytec_phycard_imx27_128mb
> +FILE_barebox-phytec-phycard-imx27-128mb.img = start_phytec_phycard_imx27_128mb.pblx
> +image-$(CONFIG_MACH_PCA100) += barebox-phytec-phycard-imx27-128mb.img
>
> pblx-$(CONFIG_MACH_PCM038) += start_phytec_phycore_imx27
> FILE_barebox-phytec-phycore-imx27.img = start_phytec_phycore_imx27.pblx
> --
> 1.8.3.1
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2018-12-10 9:19 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-07 16:17 Baeuerle, Florian
2018-12-10 9:19 ` 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=20181210091933.3lrzl5efmrn2v3p3@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=Florian.Baeuerle@allegion.com \
--cc=barebox@lists.infradead.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