board_memories.c
上传用户:jnhtjd
上传日期:2022-07-16
资源大小:403k
文件大小:4k
源码类别:

微处理器开发

开发平台:

C/C++

  1. /* ----------------------------------------------------------------------------
  2.  *         ATMEL Microcontroller Software Support 
  3.  * ----------------------------------------------------------------------------
  4.  * Copyright (c) 2008, Atmel Corporation
  5.  *
  6.  * All rights reserved.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions are met:
  10.  *
  11.  * - Redistributions of source code must retain the above copyright notice,
  12.  * this list of conditions and the disclaimer below.
  13.  *
  14.  * Atmel's name may not be used to endorse or promote products derived from
  15.  * this software without specific prior written permission.
  16.  *
  17.  * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  19.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
  20.  * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  22.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
  23.  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  24.  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  25.  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  26.  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  * ----------------------------------------------------------------------------
  28.  */
  29. //------------------------------------------------------------------------------
  30. //         Headers
  31. //------------------------------------------------------------------------------
  32. #include "board_memories.h"
  33. #include "board.h"
  34. //------------------------------------------------------------------------------
  35. //         Internal definitions
  36. //------------------------------------------------------------------------------
  37. /*
  38.     Constants: Remap types
  39.         BOARD_FLASH - Flash is mirrored in the remap zone.
  40.         BOARD_RAM - RAM is mirrored in the remap zone.
  41. */
  42. #define BOARD_FLASH             0
  43. #define BOARD_RAM               1
  44. //------------------------------------------------------------------------------
  45. //         Internal function
  46. //------------------------------------------------------------------------------
  47. /*
  48.     Function: BOARD_GetRemap
  49.         Returns the current remap (see <Remap types>).
  50. */
  51. static unsigned char BOARD_GetRemap( void )
  52. {
  53.     unsigned int *remap = (unsigned int *) 0;
  54.     unsigned int *ram = (unsigned int *) AT91C_ISRAM;
  55.     // Try to write in 0 and see if this affects the RAM
  56.     unsigned int temp = *ram;
  57.     *ram = temp + 1;
  58.     if (*remap == *ram) {
  59.         *ram = temp;
  60.         return BOARD_RAM;
  61.     }
  62.     else {
  63.         *ram = temp;
  64.         return BOARD_FLASH;
  65.     }
  66. }
  67. //------------------------------------------------------------------------------
  68. //         Exported functions
  69. //------------------------------------------------------------------------------
  70. /*
  71.     Function: BOARD_RemapFlash
  72.         Changes the mapping of the chip so that the remap area mirrors the
  73.         internal flash.
  74. */
  75. void BOARD_RemapFlash( void )
  76. {
  77.     if (BOARD_GetRemap() != BOARD_FLASH) {
  78.         AT91C_BASE_MC->MC_RCR = AT91C_MC_RCB;
  79.     }
  80. }
  81. /*
  82.     Function: BOARD_RemapRam
  83.         Changes the mapping of the chip so that the remap area mirrors the
  84.         internal RAM.
  85. */
  86. void BOARD_RemapRam( void )
  87. {
  88.     if (BOARD_GetRemap() != BOARD_RAM) {
  89.         AT91C_BASE_MC->MC_RCR = AT91C_MC_RCB;
  90.     }
  91. }