summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/lpc32xx/misc/emc.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/arm/lpc32xx/misc/emc.c')
-rw-r--r--c/src/lib/libbsp/arm/lpc32xx/misc/emc.c124
1 files changed, 124 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/arm/lpc32xx/misc/emc.c b/c/src/lib/libbsp/arm/lpc32xx/misc/emc.c
new file mode 100644
index 0000000000..0a6d75c5bc
--- /dev/null
+++ b/c/src/lib/libbsp/arm/lpc32xx/misc/emc.c
@@ -0,0 +1,124 @@
+/**
+ * @file
+ *
+ * @ingroup lpc32xx_emc
+ *
+ * @brief EMC support implementation.
+ */
+
+/*
+ * Copyright (c) 2010
+ * embedded brains GmbH
+ * Obere Lagerstr. 30
+ * D-82178 Puchheim
+ * Germany
+ * <rtems@embedded-brains.de>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ */
+
+#include <bsp/emc.h>
+
+#include <bsp.h>
+#include <bsp/mmu.h>
+
+static volatile lpc32xx_emc *const emc = &lpc32xx.emc;
+
+static void set_translation_table_entries(
+ uint32_t begin,
+ uint32_t size
+)
+{
+ uint32_t end = begin + size;
+ uint32_t *ttb = arm_cp15_get_translation_table_base();
+ uint32_t i = ARM_MMU_SECT_GET_INDEX(begin);
+ uint32_t iend = ARM_MMU_SECT_GET_INDEX(ARM_MMU_SECT_MVA_ALIGN_UP(end));
+
+ while (i < iend) {
+ ttb [i] = (i << ARM_MMU_SECT_BASE_SHIFT) | LPC32XX_MMU_READ_WRITE;
+ ++i;
+ }
+}
+
+static void dynamic_init(const lpc32xx_emc_dynamic_config *cfg)
+{
+ uint32_t chip_begin = LPC32XX_BASE_EMC_DYCS_0;
+ uint32_t dynamiccontrol = (cfg->control | EMC_DYN_CTRL_CE | EMC_DYN_CTRL_CS)
+ & ~EMC_DYN_CTRL_I_MASK;
+ size_t i = 0;
+
+ LPC32XX_SDRAMCLK_CTRL = cfg->sdramclk_ctrl;
+
+ emc->dynamicreadconfig = cfg->readconfig;
+
+ /* Timings */
+ emc->dynamictrp = cfg->trp;
+ emc->dynamictras = cfg->tras;
+ emc->dynamictsrex = cfg->tsrex;
+ emc->dynamictwr = cfg->twr;
+ emc->dynamictrc = cfg->trc;
+ emc->dynamictrfc = cfg->trfc;
+ emc->dynamictxsr = cfg->txsr;
+ emc->dynamictrrd = cfg->trrd;
+ emc->dynamictmrd = cfg->tmrd;
+ emc->dynamictcdlr = cfg->tcdlr;
+ for (i = 0; i < EMC_DYN_CHIP_COUNT; ++i) {
+ if (cfg->chip [i].size != 0) {
+ emc->dynamic [i].config = cfg->chip [i].config;
+ emc->dynamic [i].rascas = cfg->chip [i].rascas;
+ }
+ }
+
+ /* NOP period */
+ emc->dynamiccontrol = dynamiccontrol | EMC_DYN_CTRL_I_NOP;
+ lpc32xx_micro_seconds_delay(cfg->nop_time_in_us);
+
+ /* Precharge */
+ emc->dynamiccontrol = dynamiccontrol | EMC_DYN_CTRL_I_PALL;
+ emc->dynamicrefresh = 1;
+ /* FIXME: Why a delay, why this value? */
+ lpc32xx_micro_seconds_delay(10);
+
+ /* Refresh timing */
+ emc->dynamicrefresh = cfg->refresh;
+ /* FIXME: Why a delay, why this value? */
+ lpc32xx_micro_seconds_delay(16);
+
+ /* Set modes */
+ for (i = 0; i < EMC_DYN_CHIP_COUNT; ++i) {
+ if (cfg->chip [i].size != 0) {
+ set_translation_table_entries(chip_begin, cfg->chip [i].size);
+ emc->dynamiccontrol = dynamiccontrol | EMC_DYN_CTRL_I_MODE;
+ *(volatile uint32_t *)(LPC32XX_BASE_EMC_DYCS_0 + cfg->chip [i].mode);
+ emc->dynamiccontrol = dynamiccontrol | EMC_DYN_CTRL_I_MODE;
+ *(volatile uint32_t *)(LPC32XX_BASE_EMC_DYCS_0 + cfg->chip [i].extmode);
+ }
+ chip_begin += 0x20000000;
+ }
+
+ emc->dynamiccontrol = cfg->control;
+}
+
+void lpc32xx_emc_init(const lpc32xx_emc_dynamic_config *dyn_cfg)
+{
+ /* Enable clock */
+ LPC32XX_HCLKDIV_CTRL |= HCLK_DIV_DDRAM_CLK(1);
+
+ /* Enable buffers in AHB ports */
+ emc->ahb [0].control = EMC_AHB_PORT_BUFF_EN;
+ emc->ahb [3].control = EMC_AHB_PORT_BUFF_EN;
+ emc->ahb [4].control = EMC_AHB_PORT_BUFF_EN;
+
+ /* Set AHB port timeouts */
+ emc->ahb [0].timeout = EMC_AHB_TIMEOUT(32);
+ emc->ahb [3].timeout = EMC_AHB_TIMEOUT(32);
+ emc->ahb [4].timeout = EMC_AHB_TIMEOUT(32);
+
+ /* Enable EMC */
+ emc->control = EMC_CTRL_EN,
+ emc->config = 0;
+
+ dynamic_init(dyn_cfg);
+}