Files
rtems/c/src/lib/libbsp/arm/lpc32xx/include/emc.h
Sebastian Huber 3103d4cbad 2010-06-23 Sebastian Huber <sebastian.huber@embedded-brains.de>
* make/custom/lpc32xx_mzx_boot_int.cfg,
	startup/linkcmds.lpc32xx_mzx_boot_int: Removed files.
	* include/boot.h, include/emc.h, include/i2c.h, include/nand-mlc.h,
	make/custom/lpc32xx_mzx.cfg, make/custom/lpc32xx_mzx_stage_1.cfg,
	make/custom/lpc32xx_mzx_stage_2.cfg, misc/boot.c, misc/emc.c,
	misc/i2c.c, misc/nand-mlc.c, misc/nand-mlc-read-blocks.c,
	misc/nand-mlc-write-blocks.c, misc/restart.c,
	startup/linkcmds.lpc32xx, startup/linkcmds.lpc32xx_mzx,
	startup/linkcmds.lpc32xx_mzx_stage_1,
	startup/linkcmds.lpc32xx_mzx_stage_2: New files.
	* configure.ac, Makefile.am, preinstall.am: Reflect changes above.
	* include/bsp.h, include/lpc32xx.h, irq/irq.c, rtc/rtc-config.c,
	startup/bspstart.c, startup/bspstarthooks.c,
	startup/linkcmds.lpc32xx_phycore: Changes throughout.
2010-06-23 08:27:57 +00:00

232 lines
5.0 KiB
C

/**
* @file
*
* @ingroup lpc32xx_emc
*
* @brief EMC support API.
*/
/*
* 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.
*/
#ifndef LIBBSP_ARM_LPC32XX_EMC_H
#define LIBBSP_ARM_LPC32XX_EMC_H
#include <rtems.h>
#include <bsp/lpc32xx.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/**
* @defgroup lpc32xx_emc EMC Support
*
* @ingroup lpc32xx
*
* @brief EMC Support
*
* @{
*/
/**
* @name SDRAM Clock Control Register (SDRAMCLK_CTRL)
*
* @{
*/
#define SDRAMCLK_CLOCKS_DIS BIT32(0)
#define SDRAMCLK_DDR_MODE BIT32(1)
#define SDRAMCLK_DDR_DQSIN_DELAY(val) FIELD32(val, 2, 6)
#define SDRAMCLK_RTC_TICK_EN BIT32(7)
#define SDRAMCLK_SW_DDR_CAL BIT32(8)
#define SDRAMCLK_CAL_DELAY BIT32(9)
#define SDRAMCLK_SENSITIVITY_FACTOR(val) FIELD32(val, 10, 12)
#define SDRAMCLK_DCA_STATUS BIT32(13)
#define SDRAMCLK_COMMAND_DELAY(val) FIELD32(val, 14, 18)
#define SDRAMCLK_SW_DDR_RESET BIT32(19)
#define SDRAMCLK_PIN_1_FAST BIT32(20)
#define SDRAMCLK_PIN_2_FAST BIT32(21)
#define SDRAMCLK_PIN_3_FAST BIT32(22)
/** @} */
/**
* @name EMC Control Register (EMCControl)
*
* @{
*/
#define EMC_CTRL_EN BIT32(0)
#define EMC_CTRL_LOW_POWER BIT32(2)
/** @} */
/**
* @name EMC Dynamic Memory Control Register (EMCDynamicControl)
*
* @{
*/
#define EMC_DYN_CTRL_CE BIT32(0)
#define EMC_DYN_CTRL_CS BIT32(1)
#define EMC_DYN_CTRL_SR BIT32(2)
#define EMC_DYN_CTRL_SRMCC BIT32(3)
#define EMC_DYN_CTRL_IMCC BIT32(4)
#define EMC_DYN_CTRL_MCC BIT32(5)
#define EMC_DYN_CTRL_I_MASK MASK32(7, 8)
#define EMC_DYN_CTRL_I_NORMAL FIELD32(0x0, 7, 8)
#define EMC_DYN_CTRL_I_MODE FIELD32(0x1, 7, 8)
#define EMC_DYN_CTRL_I_PALL FIELD32(0x2, 7, 8)
#define EMC_DYN_CTRL_I_NOP FIELD32(0x3, 7, 8)
#define EMC_DYN_CTRL_DP BIT32(9)
/** @} */
/**
* @name EMC Dynamic Memory Read Configuration Register (EMCDynamicReadConfig)
*
* @{
*/
#define EMC_DYN_READ_CONFIG_SDR_STRAT(val) FIELD32(val, 0, 1)
#define EMC_DYN_READ_CONFIG_SDR_POL_POS BIT32(4)
#define EMC_DYN_READ_CONFIG_DDR_STRAT(val) FIELD32(val, 8, 9)
#define EMC_DYN_READ_CONFIG_DDR_POL_POS BIT32(12)
/** @} */
/**
* @name EMC Dynamic Memory Configuration N Register (EMCDynamicConfigN)
*
* @{
*/
#define EMC_DYN_CFG_MD(val) FIELD32(val, 0, 2)
#define EMC_DYN_CFG_AM(val) FIELD32(val, 7, 14)
#define EMC_DYN_CFG_P(val) BIT32(20)
/** @} */
/**
* @name EMC Dynamic Memory RAS and CAS Delay N Register (EMCDynamicRasCasN)
*
* @{
*/
#define EMC_DYN_RAS(val) FIELD32(val, 0, 3)
#define EMC_DYN_CAS(val) FIELD32(val, 7, 10)
/** @} */
/**
* @name EMC AHB Control Register (EMCAHBControl)
*
* @{
*/
#define EMC_AHB_PORT_BUFF_EN BIT32(0)
/** @} */
/**
* @name EMC AHB Timeout Register (EMCAHBTimeOut)
*
* @{
*/
#define EMC_AHB_TIMEOUT(val) FIELD32(val, 0, 9)
/** @} */
/**
* @name SDRAM Mode and Extended Mode Registers
*
* @{
*/
#define SDRAM_ADDR_ROW_16MB(val) ((uint32_t) (val) << 10)
#define SDRAM_ADDR_ROW_32MB(val) ((uint32_t) (val) << 11)
#define SDRAM_ADDR_ROW_64MB(val) ((uint32_t) (val) << 11)
#define SDRAM_ADDR_BANK_16MB(ba1, ba0) \
(((uint32_t) (ba1) << 23) | ((uint32_t) (ba0) << 22))
#define SDRAM_ADDR_BANK_32MB(ba1, ba0) \
(((uint32_t) (ba1) << 23) | ((uint32_t) (ba0) << 24))
#define SDRAM_ADDR_BANK_64MB(ba1, ba0) \
(((uint32_t) (ba1) << 25) | ((uint32_t) (ba0) << 24))
#define SDRAM_MODE_16MB(mode) \
(SDRAM_ADDR_BANK_16MB(0, 0) | SDRAM_ADDR_ROW_16MB(mode))
#define SDRAM_MODE_32MB(mode) \
(SDRAM_ADDR_BANK_32MB(0, 0) | SDRAM_ADDR_ROW_32MB(mode))
#define SDRAM_MODE_64MB(mode) \
(SDRAM_ADDR_BANK_64MB(0, 0) | SDRAM_ADDR_ROW_64MB(mode))
#define SDRAM_EXTMODE_16MB(mode) \
(SDRAM_ADDR_BANK_16MB(1, 0) | SDRAM_ADDR_ROW_16MB(mode))
#define SDRAM_EXTMODE_32MB(mode) \
(SDRAM_ADDR_BANK_32MB(1, 0) | SDRAM_ADDR_ROW_32MB(mode))
#define SDRAM_EXTMODE_64MB(mode) \
(SDRAM_ADDR_BANK_64MB(1, 0) | SDRAM_ADDR_ROW_64MB(mode))
#define SDRAM_MODE_BURST_LENGTH(val) FIELD32(val, 0, 2)
#define SDRAM_MODE_BURST_INTERLEAVE BIT32(3)
#define SDRAM_MODE_CAS(val) FIELD32(val, 4, 6)
#define SDRAM_MODE_TEST_MODE(val) FIELD32(val, 7, 8)
#define SDRAM_MODE_WRITE_BURST_SINGLE_BIT BIT32(9)
#define SDRAM_EXTMODE_PASR(val) FIELD32(val, 0, 2)
#define SDRAM_EXTMODE_DRIVER_STRENGTH(val) FIELD32(val, 5, 6)
/** @} */
typedef struct {
uint32_t size;
uint32_t config;
uint32_t rascas;
uint32_t mode;
uint32_t extmode;
} lpc32xx_emc_dynamic_chip_config;
typedef struct {
uint32_t sdramclk_ctrl;
uint32_t nop_time_in_us;
uint32_t control;
uint32_t refresh;
uint32_t readconfig;
uint32_t trp;
uint32_t tras;
uint32_t tsrex;
uint32_t twr;
uint32_t trc;
uint32_t trfc;
uint32_t txsr;
uint32_t trrd;
uint32_t tmrd;
uint32_t tcdlr;
lpc32xx_emc_dynamic_chip_config chip [EMC_DYN_CHIP_COUNT];
} lpc32xx_emc_dynamic_config;
void lpc32xx_emc_init(const lpc32xx_emc_dynamic_config *dyn_cfg);
/** @} */
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* LIBBSP_ARM_LPC32XX_EMC_H */