| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- #ifndef _ARCH_ARM_AT91_SMC_H_
- #define _ARCH_ARM_AT91_SMC_H_
- /*
- * Copyright (C) 2006 by egnite Software GmbH. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the copyright holders nor the names of
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
- * SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
- * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
- * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- *
- * For additional information see http://www.ethernut.de/
- */
- /*!
- * \file arch/arm/at91_smc.h
- * \brief AT91 static memory controller.
- *
- * \verbatim
- *
- * $Log: at91_smc.h,v $
- * Revision 1.1 2006/08/31 19:10:38 haraldkipp
- * New peripheral register definitions for the AT91SAM9260.
- *
- *
- * \endverbatim
- */
- /*!
- * \addtogroup xgNutArchArmAt91Smc
- */
- /*@{*/
- /*! \name SMC Setup Register */
- /*@{*/
- #define SMC_SETUP(cs) (SMC_BASE + 0x10 * cs + 0x00) /*!< \brief SMC setup register address. */
- #define SMC_NWE_SETUP 0x0000003F /*!< \brief NWE setup length mask. */
- #define SMC_NWE_SETUP_LSB 0 /*!< \brief NWE setup length LSB. */
- #define SMC_NCS_WR_SETUP 0x00003F00 /*!< \brief NCS setup length in write access mask. */
- #define SMC_NCS_WR_SETUP_LSB 8 /*!< \brief NCS setup length in write access LSB. */
- #define SMC_NRD_SETUP 0x003F0000 /*!< \brief NRD setup length mask. */
- #define SMC_NRD_SETUP_LSB 16 /*!< \brief NRD setup length LSB. */
- #define SMC_NCS_RD_SETUP 0x3F000000 /*!< \brief NCS setup length in read access mask. */
- #define SMC_NCS_RD_SETUP_LSB 24 /*!< \brief NCS setup length in read access LSB. */
- /*@}*/
- /*! \name SMC Pulse Register */
- /*@{*/
- #define SMC_PULSE(cs) (SMC_BASE + 0x10 * cs + 0x04) /*!< \brief SMC pulse register address. */
- #define SMC_NWE_PULSE 0x0000003F /*!< \brief NWE pulse length mask. */
- #define SMC_NWE_PULSE_LSB 0 /*!< \brief NWE pulse length LSB. */
- #define SMC_NCS_WR_PULSE 0x00003F00 /*!< \brief NCS pulse length in write access mask. */
- #define SMC_NCS_WR_PULSE_LSB 8 /*!< \brief NCS pulse length in write access LSB. */
- #define SMC_NRD_PULSE 0x003F0000 /*!< \brief NRD pulse length mask. */
- #define SMC_NRD_PULSE_LSB 16 /*!< \brief NRD pulse length LSB. */
- #define SMC_NCS_RD_PULSE 0x3F000000 /*!< \brief NCS pulse length in read access mask. */
- #define SMC_NCS_RD_PULSE_LSB 24 /*!< \brief NCS pulse length in read access LSB. */
- /*@}*/
- /*! \name SMC Cycle Register */
- /*@{*/
- #define SMC_CYCLE(cs) (SMC_BASE + 0x10 * cs + 0x08) /*!< \brief SMC cycle register address. */
- #define SMC_NWE_CYCLE 0x000001FF /*!< \brief Total write cycle length mask. */
- #define SMC_NWE_CYCLE_LSB 0 /*!< \brief Total write cycle length LSB. */
- #define SMC_NRD_CYCLE 0x01FF0000 /*!< \brief Total read cycle length mask. */
- #define SMC_NRD_CYCLE_LSB 16 /*!< \brief Total read cycle length LSB. */
- /*@}*/
- /*! \name SMC Mode Register */
- /*@{*/
- #define SMC_MODE(cs) (SMC_BASE + 0x10 * cs + 0x0C) /*!< \brief SMC mode register address. */
- #define SMC_READ_MODE 0x00000001 /*!< \brief Read operation mode. */
- #define SMC_WRITE_MODE 0x00000002 /*!< \brief Write operation mode. */
- #define SMC_EXNW_MODE 0x00000030 /*!< \brief NWAIT mode mask. */
- #define SMC_EXNW_MODE_DISABLED 0x00000000 /*!< \brief NWAIT mode mask. */
- #define SMC_EXNW_MODE_FROZEN 0x00000020 /*!< \brief NWAIT mode mask. */
- #define SMC_EXNW_MODE_READY 0x00000030 /*!< \brief NWAIT mode mask. */
- #define SMC_BAT 0x00000100 /*!< \brief Byte access mode. */
- #define SMC_DBW 0x00003000 /*!< \brief Data bus width. */
- #define SMC_DBW_8 0x00000000 /*!< \brief 8-bit data bus. */
- #define SMC_DBW_16 0x00001000 /*!< \brief 16-bit data bus. */
- #define SMC_DBW_32 0x00002000 /*!< \brief 32-bit data bus. */
- #define SMC_TDF_CYCLES 0x000F0000 /*!< \brief Data float time mask. */
- #define SMC_TDF_CYCLES_LSB 0x000F0000 /*!< \brief Data float time LSB. */
- #define SMC_TDF_MODE 0x00100000 /*!< \brief TDF optimization. */
- #define SMC_PMEN 0x01000000 /*!< \brief Page mode enable. */
- #define SMC_PS 0x30000000 /*!< \brief Page size mask. */
- #define SMC_PS_4 0x30000000 /*!< \brief 4-byte page. */
- #define SMC_PS_8 0x30000000 /*!< \brief 8-byte page. */
- #define SMC_PS_16 0x30000000 /*!< \brief 16-byte page. */
- #define SMC_PS_32 0x30000000 /*!< \brief 32-byte page. */
- /*@}*/
- /*@} xgNutArchArmAt91Smc */
- #endif /* _ARCH_ARM_AT91_SMC_H_ */
|