summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR_ARM/System/GCC/src/r_ram_init.c
blob: 0decedda88dccdc81a2cde520be0380a5f7f28b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/***********************************************************************************************************************
* DISCLAIMER
* This software is supplied by Renesas Electronics Corporation and is only
* intended for use with Renesas products. No other uses are authorized. This
* software is owned by Renesas Electronics Corporation and is protected under
* all applicable laws, including copyright laws.
* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
* THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
* LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
* AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
* TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
* ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
* FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
* ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
* BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
* Renesas reserves the right, without notice, to make changes to this software
* and to discontinue the availability of this software. By using this software,
* you agree to the additional terms and conditions found by accessing the
* following link:
* http://www.renesas.com/disclaimer
*
* Copyright (C) 2014 Renesas Electronics Corporation. All rights reserved.
***********************************************************************************************************************/
/***********************************************************************************************************************
* System Name  : RZ/T1 Init program
* File Name    : r_ram_init.c
* Version      : 0.1
* Device       : R7S910018
* Abstract     : API for internal extended RAM function
* Tool-Chain   : GNUARM-NONEv14.02-EABI
* OS           : not use
* H/W Platform : Renesas Starter Kit for RZ/T1(Preliminary)
* Description  : internal extended RAM setting API of RZ/T1
* Limitation   : none
***********************************************************************************************************************/
/***********************************************************************************************************************
* History      : DD.MM.YYYY Version  Description
*              : 21.05.2015 1.00     First Release
***********************************************************************************************************************/

/***********************************************************************************************************************
Includes <System Includes> , "Project Includes"
***********************************************************************************************************************/
#include <stdint.h>
#include "iodefine.h"
#include "r_system.h"
#include "r_ram_init.h"
#include "r_typedefs.h"

/***********************************************************************************************************************
Macro definitions
***********************************************************************************************************************/
#define RAM_ECC_ENABLE (0x00000001)
#define RAM_ECC_DISABLE (0x00000000)
#define RAM_PROTECT (0x00000000)

/***********************************************************************************************************************
Typedef definitions
***********************************************************************************************************************/



/***********************************************************************************************************************
Imported global variables and functions (from other files)
***********************************************************************************************************************/


/***********************************************************************************************************************
Exported global variables and functions (to be accessed by other files)
***********************************************************************************************************************/



/***********************************************************************************************************************
Private variables and functions
***********************************************************************************************************************/

/***********************************************************************************************************************
* Function Name : R_RAM_ECCEnable
* Description   : Enable ECC function for internal extended RAM.
* Arguments    : none
* Return Value : none
***********************************************************************************************************************/
void R_RAM_ECCEnable(void)
{
    /* Enables writing to the protected registers related to RAM function */
    R_RAM_WriteEnable();
  
    /* Enable ECC function */
    ECCRAM.RAMEDC.LONG = RAM_ECC_ENABLE;
    
    /* Disables writing to the protected registers related to RAM function */
    R_RAM_WriteDisable();
    
}

/***********************************************************************************************************************
 End of function R_RAM_ECCEnable
***********************************************************************************************************************/


/***********************************************************************************************************************
* Function Name : R_RAM_WriteEnable
* Description   : Enable writing to the protected registers related to RAM.
*                 And dummy read the register in order to fix the register value.
* Arguments    : none
* Return Value : none
***********************************************************************************************************************/
void R_RAM_WriteEnable(void)
{
    volatile uint32_t dummy=0;

    UNUSED_VARIABLE(dummy);
    
    /* Special sequence for protect release */
    ECCRAM.RAMPCMD.LONG = 0x000000A5;  // Write fixed value 0x000000A5
    ECCRAM.RAMPCMD.LONG = 0x00000001;  // Write expected value 
    ECCRAM.RAMPCMD.LONG = 0x0000FFFE;  // Write inverted value of the expected value
    ECCRAM.RAMPCMD.LONG = 0x00000001;  // Write expected value again
    dummy = ECCRAM.RAMPCMD.LONG;        
    
}

/***********************************************************************************************************************
 End of function R_RAM_WriteEnable
***********************************************************************************************************************/

/***********************************************************************************************************************
* Function Name : R_RAM_WriteDisable
* Description   : Disable writing to the protected registers related to RAM.
*                 And dummy read the register in order to fix the register value.
* Arguments    : none
* Return Value : none
***********************************************************************************************************************/
void R_RAM_WriteDisable(void)
{
    volatile uint32_t dummy=0;

    UNUSED_VARIABLE(dummy);
    
    /* Clear RAMPCMD register to zero */
    ECCRAM.RAMPCMD.LONG = RAM_PROTECT;   
    dummy = ECCRAM.RAMPCMD.LONG; 
    
}

/***********************************************************************************************************************
 End of function R_RAM_WriteDisable
***********************************************************************************************************************/

/* End of File */