]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
omap: Don't enable GPMC CS0 with nothing attached
authorAsh Charles <ashcharles@gmail.com>
Fri, 6 Jun 2014 18:27:28 +0000 (11:27 -0700)
committerTom Rini <trini@ti.com>
Thu, 19 Jun 2014 21:53:41 +0000 (17:53 -0400)
If CONFIG_(NAND|NOR|ONENAND) is not defined, no configuration is set
for GPMC on chip select #0---size is 0.  In this case, the GPMC
configuration should be reset but not enabled.  Enabling causes the
Gumstix DuoVero board to hang when entering Linux.

Signed-off-by: Ash Charles <ashcharles@gmail.com>
[trini: Switch to testing base as GPMC_SIZE_256M is 0x0]
Signed-off-by: Tom Rini <trini@ti.com>
arch/arm/cpu/armv7/omap-common/mem-common.c

index 944ef840a16178ec0e513eec501c99cdc57a167a..11be480abdc2205221cb8333fbc02f55e8af0651 100644 (file)
@@ -133,5 +133,6 @@ void gpmc_init(void)
        writel(0, &gpmc_cfg->cs[0].config7);
        sdelay(1000);
        /* enable chip-select specific configurations */
-       enable_gpmc_cs_config(gpmc_regs, &gpmc_cfg->cs[0], base, size);
+       if (base != 0)
+               enable_gpmc_cs_config(gpmc_regs, &gpmc_cfg->cs[0], base, size);
 }