diff options
author | Trevor Woerner <twoerner@gmail.com> | 2020-05-06 08:02:36 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-15 14:47:35 -0400 |
commit | b3d9a8b1857878fd72bf5385d91585fbafe516d6 (patch) | |
tree | fd11b9f6b343aabb33247b4b3fe4ccfde1cc8a6f /arch/arm/cpu/arm926ejs/lpc32xx/dram.c | |
parent | 0ff042d836f2a40b2104d4501111fbb340293c5c (diff) |
arm: lpc32xx: move SoC to mach-lpc32xx
Following the example of most other SoCs in arch/$(ARCH)/cpu/$(CPU)/$(SOC)
move the lpc32xx code from arch/arm/cpu/arm926ejs/lpc32xx to
arch/arm/mach-lpc32xx.
Following the checklist from
commit 01f14456306c ("ARM: prepare for moving SoC sources into mach-*"):
[1] move files from arch/arm/cpu/arm926ejs/lpc32xx to arch/arm/mach-lpx32xx
[2] add machine entry to arch/arm/Makefile
[3] remove "obj-y += ..." from arch/arm/cpu/arm926ejs/Makefile
[4] fix the Kconfig file path in arch/arm/Kconfig
[5] (no MAINTAINERS update)
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Diffstat (limited to 'arch/arm/cpu/arm926ejs/lpc32xx/dram.c')
-rw-r--r-- | arch/arm/cpu/arm926ejs/lpc32xx/dram.c | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/arch/arm/cpu/arm926ejs/lpc32xx/dram.c b/arch/arm/cpu/arm926ejs/lpc32xx/dram.c deleted file mode 100644 index 4f975694fd..0000000000 --- a/arch/arm/cpu/arm926ejs/lpc32xx/dram.c +++ /dev/null @@ -1,73 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * LPC32xx dram init - * - * (C) Copyright 2014 DENX Software Engineering GmbH - * Written-by: Albert ARIBAUD <albert.aribaud@3adev.fr> - * - * This is called by SPL to gain access to the SDR DRAM. - * - * This code runs from SRAM. - */ - -#include <common.h> -#include <netdev.h> -#include <asm/arch/cpu.h> -#include <asm/arch/clk.h> -#include <asm/arch/wdt.h> -#include <asm/arch/emc.h> -#include <asm/io.h> - -static struct clk_pm_regs *clk = (struct clk_pm_regs *)CLK_PM_BASE; -static struct emc_regs *emc = (struct emc_regs *)EMC_BASE; - -void ddr_init(struct emc_dram_settings *dram) -{ - uint32_t ck; - - /* Enable EMC interface and choose little endian mode */ - writel(1, &emc->ctrl); - writel(0, &emc->config); - /* Select maximum EMC Dynamic Memory Refresh Time */ - writel(0x7FF, &emc->refresh); - /* Determine CLK */ - ck = get_sdram_clk_rate(); - /* Configure SDRAM */ - writel(dram->cmddelay, &clk->sdramclk_ctrl); - writel(dram->config0, &emc->config0); - writel(dram->rascas0, &emc->rascas0); - writel(dram->rdconfig, &emc->read_config); - /* Set timings */ - writel((ck / dram->trp) & 0x0000000F, &emc->t_rp); - writel((ck / dram->tras) & 0x0000000F, &emc->t_ras); - writel((ck / dram->tsrex) & 0x0000007F, &emc->t_srex); - writel((ck / dram->twr) & 0x0000000F, &emc->t_wr); - writel((ck / dram->trc) & 0x0000001F, &emc->t_rc); - writel((ck / dram->trfc) & 0x0000001F, &emc->t_rfc); - writel((ck / dram->txsr) & 0x000000FF, &emc->t_xsr); - writel(dram->trrd, &emc->t_rrd); - writel(dram->tmrd, &emc->t_mrd); - writel(dram->tcdlr, &emc->t_cdlr); - /* Dynamic refresh */ - writel((((ck / dram->refresh) >> 4) & 0x7FF), &emc->refresh); - udelay(10); - /* Force all clocks, enable inverted ck, issue NOP command */ - writel(0x00000193, &emc->control); - udelay(100); - /* Keep all clocks enabled, issue a PRECHARGE ALL command */ - writel(0x00000113, &emc->control); - /* Fast dynamic refresh for at least a few SDRAM ck cycles */ - writel((((128) >> 4) & 0x7FF), &emc->refresh); - udelay(10); - /* set correct dynamic refresh timing */ - writel((((ck / dram->refresh) >> 4) & 0x7FF), &emc->refresh); - udelay(10); - /* set normal mode to CAS=3 */ - writel(0x00000093, &emc->control); - readl(EMC_DYCS0_BASE | dram->mode); - /* set extended mode to all zeroes */ - writel(0x00000093, &emc->control); - readl(EMC_DYCS0_BASE | dram->emode); - /* stop forcing clocks, keep inverted clock, issue normal mode */ - writel(0x00000010, &emc->control); -} |