| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- /*
- * 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 THE COPYRIGHT HOLDERS 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 THE
- * COPYRIGHT OWNER 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/dev/at91_efc.c
- * \brief SAM7 embedded flash controller support.
- *
- * \verbatim
- *
- * $Log$
- * Revision 1.4 2009/01/17 11:26:37 haraldkipp
- * Getting rid of two remaining BSD types in favor of stdint.
- * Replaced 'u_int' by 'unsinged int' and 'uptr_t' by 'uintptr_t'.
- *
- * Revision 1.3 2008/08/11 06:59:04 haraldkipp
- * BSD types replaced by stdint types (feature request #1282721).
- *
- * Revision 1.2 2006/10/08 16:48:07 haraldkipp
- * Documentation fixed
- *
- * Revision 1.1 2006/07/26 11:20:57 haraldkipp
- * Added non-volatile configuration memory support for SAM7X, using upper
- * 16k region of on-chip flash.
- *
- *
- * \endverbatim
- */
- #include <cfg/memory.h>
- #include <sys/atom.h>
- #include <dev/nvmem.h>
- #include <stdint.h>
- #include <stdlib.h>
- #include <string.h>
- #include <arch/arm/atmel/at91_efc.h>
- /*!
- * \addtogroup xgAt91Efc
- */
- /*@{*/
- /*! \brief Base address of the flash memory chip.
- */
- #ifndef EFC_CHIP_BASE
- #define EFC_CHIP_BASE 0x00100000
- #endif
- /*! \brief Size handled by each controller.
- */
- #ifndef EFC_CHIP_SIZE
- #define EFC_CHIP_SIZE 0x00040000
- #endif
- /*! \brief Address offset of the configuration sector.
- *
- * Although this is a configurable item, we try to determine
- * a default value for some of the most widely used CPUs.
- *
- * \todo Provide pre-defined flash layouts for all CPUs in
- * one of the architecture specific header files.
- */
- #ifndef FLASH_CONF_SECTOR
- #if defined(MCU_AT91SAM7S512) || defined(MCU_AT91SAM7SE512) || \
- defined(MCU_AT91SAM7X512) || defined(MCU_AT91SAM9XE512)
- #define FLASH_CONF_SECTOR 0x0007FF00
- #else
- #define FLASH_CONF_SECTOR 0x0003FF00
- #endif
- #endif
- /*! \brief Size of the configuration area.
- *
- * During write operations a buffer with this size is allocated
- * from heap and may cause memory problems with large sectors.
- * Thus, this value may be less than the size of the configuration
- * sector, in which case the rest of the sector is unused.
- *
- * Currently only 1 sector can be used for system configurations.
- */
- #ifndef FLASH_CONF_SIZE
- #define FLASH_CONF_SIZE 256
- #endif
- #ifndef EFC_WRITE_WAIT
- #define EFC_WRITE_WAIT 60000
- #endif
- #ifndef EFC_ERASE_WAIT
- #define EFC_ERASE_WAIT 60000
- #endif
- #ifndef EFC_CHIP_ERASE_WAIT
- #define EFC_CHIP_ERASE_WAIT 600000
- #endif
- typedef uint32_t flashdat_t;
- typedef unsigned long flashadr_t;
- typedef volatile flashdat_t *flashptr_t;
- /*!
- * \brief Execute flash controller command.
- *
- * This routine must not be located in internal flash memory.
- *
- */
- RAMFUNC int At91EfcCmdEx(int fci, unsigned int cmd, uint32_t tmo)
- {
- int rc = 0;
- unsigned int fsr;
- /* Make sure that the previous command has finished. */
- while ((inr(fci ? MC_FSR_EFC1: MC_FSR_EFC0) & MC_FRDY) == 0) {
- if (tmo && --tmo < 1) {
- return -1;
- }
- }
- /* IRQ handlers are located in flash. Disable them. */
- NutEnterCritical();
- /* Write command. */
- outr(fci ? MC_FCR_EFC1 : MC_FCR_EFC0, MC_KEY | cmd);
- /* Wait for ready flag set. */
- while (((fsr = inr(fci ? MC_FSR_EFC1 : MC_FSR_EFC0)) & MC_FRDY) == 0) {
- if (tmo && --tmo < 1) {
- rc = -1;
- break;
- }
- }
- /* Flash command finished. Re-enable IRQ handlers. */
- NutExitCritical();
- /* Check result. */
- if (fsr & (MC_LOCKE | MC_PROGE)) {
- rc = -1;
- }
- return rc;
- }
- /*!
- * \brief Execute flash controller command.
- *
- * This routine must not be located in internal flash memory.
- *
- */
- RAMFUNC int At91EfcCmd(unsigned int cmd, uint32_t tmo)
- {
- return At91EfcCmdEx(0, cmd, tmo);
- }
- /*!
- * \brief Read data from flash memory.
- *
- * \param off Start location within the chip, starting at 0.
- * \param data Points to a buffer that receives the data.
- * \param len Number of bytes to read.
- *
- * \return Always 0.
- */
- int At91EfcSectorRead(unsigned int off, void *data, unsigned int len)
- {
- memcpy(data, (void *) (uptr_t) (EFC_CHIP_BASE + off), len);
- return 0;
- }
- /*!
- * \brief Write data into flash memory.
- *
- * The related sector will be automatically erased before writing.
- *
- * \param off Start location within the chip, starting at 0.
- * \param data Points to a buffer that contains the bytes to be written.
- * If this is a NULL pointer, then the sector will be reased.
- * \param len Number of bytes to write, 1 full sector max.
- *
- * \return 0 on success or -1 in case of an error.
- */
- int At91EfcSectorWrite(unsigned int off, const void *data, unsigned int len)
- {
- flashptr_t dp = (flashptr_t) (uptr_t) (EFC_CHIP_BASE + off);
- int rc;
- unsigned int i;
- if (data) {
- flashptr_t sp = (flashptr_t) data;
- /* Copy data to the flash write buffer. */
- for (i = 0; i < len; i += sizeof(flashdat_t)) {
- *dp++ = *sp++;
- }
- }
- else {
- /* All bits set to emulate sector erasing. */
- for (i = 0; i < len; i += sizeof(flashdat_t)) {
- *dp++ = (flashdat_t)(-1);
- }
- }
- if (off < EFC_CHIP_SIZE) {
- /* Clear NEBP in mode register for automatic erasure. */
- outr(MC_FMR, (i = inr(MC_FMR)) & ~MC_NEBP);
- /* Execute page write command. */
- rc = At91EfcCmd((off & MC_PAGEN_MASK) | MC_FCMD_WP, EFC_WRITE_WAIT);
- /* Restore mode register. */
- outr(MC_FMR, i);
- } else {
- /* Clear NEBP in mode register for automatic erasure. */
- outr(MC_FMR_EFC1, (i = inr(MC_FMR_EFC1)) & ~MC_NEBP);
- /* Execute page write command. */
- rc = At91EfcCmdEx(1, ((off - EFC_CHIP_SIZE) & MC_PAGEN_MASK) | MC_FCMD_WP, EFC_WRITE_WAIT);
- /* Restore mode register. */
- outr(MC_FMR_EFC1, i);
- }
- return rc;
- }
- /*!
- * \brief Erase sector at the specified offset.
- */
- int At91EfcSectorErase(unsigned int off)
- {
- return At91EfcSectorWrite(off, NULL, 256);
- }
- /*!
- * \brief Lock specified region.
- *
- * \param off Location within the region to be locked.
- *
- * \return 0 on success or -1 in case of an error.
- */
- int At91EfcRegionLock(unsigned int off)
- {
- if (off < EFC_CHIP_SIZE) {
- return At91EfcCmd((off & MC_PAGEN_MASK) | MC_FCMD_SLB, EFC_WRITE_WAIT);
- }
- off -= EFC_CHIP_SIZE;
- return At91EfcCmdEx(1,(off & MC_PAGEN_MASK) | MC_FCMD_SLB, EFC_WRITE_WAIT);
- }
- /*!
- * \brief Unlock specified region.
- *
- * \param off Location within the region to be unlocked.
- *
- * \return 0 on success or -1 in case of an error.
- */
- int At91EfcRegionUnlock(unsigned int off)
- {
- if (off < EFC_CHIP_SIZE) {
- return At91EfcCmd((off & MC_PAGEN_MASK) | MC_FCMD_CLB, EFC_WRITE_WAIT);
- }
- off -= EFC_CHIP_SIZE;
- return At91EfcCmdEx(1,(off & MC_PAGEN_MASK) | MC_FCMD_CLB, EFC_WRITE_WAIT);
- }
- /*!
- * \brief Load configuration parameters from embedded flash memory.
- *
- * Applications should call NutNvMemLoad().
- *
- * \param pos Start location within configuration sector.
- * \param data Points to a buffer that receives the contents.
- * \param len Number of bytes to read.
- *
- * \return Always 0.
- */
- int At91EfcParamRead(unsigned int pos, void *data, unsigned int len)
- {
- return At91EfcSectorRead(FLASH_CONF_SECTOR + pos, data, len);
- }
- /*!
- * \brief Store configuration parameters in embedded flash memory.
- *
- * Applications should call NutNvMemSave().
- *
- * The region that contains the configuration sector will be automatically
- * locked.
- *
- * \param pos Start location within configuration sector.
- * \param data Points to a buffer that contains the bytes to store.
- * \param len Number of bytes to store.
- *
- * \return 0 on success or -1 in case of an error.
- */
- int At91EfcParamWrite(unsigned int pos, const void *data, unsigned int len)
- {
- int rc = -1;
- uint8_t *buff;
- /* Load the complete configuration area. */
- if ((buff = malloc(FLASH_CONF_SIZE)) != NULL) {
- rc = At91EfcSectorRead(FLASH_CONF_SECTOR, buff, FLASH_CONF_SIZE);
- /* Compare old with new contents. */
- if (memcmp(buff + pos, data, len)) {
- /* New contents differs. Copy it into the sector buffer. */
- memcpy(buff + pos, data, len);
- /* Write back new data. Maintain region lock. */
- if (At91EfcRegionUnlock(FLASH_CONF_SECTOR) == 0) {
- rc = At91EfcSectorWrite(FLASH_CONF_SECTOR, buff, FLASH_CONF_SIZE);
- At91EfcRegionLock(FLASH_CONF_SECTOR);
- }
- }
- free(buff);
- }
- return rc;
- }
- /*@}*/
|