aboutsummaryrefslogtreecommitdiff
path: root/KSDK_1.2.0/platform/drivers/src/mpu/fsl_mpu_driver.c
blob: ca63f79a28777288b5b0ad3c847e3420a00b390f (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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*
 * Copyright (c) 2013 - 2015, Freescale Semiconductor, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * o Redistributions of source code must retain the above copyright notice, this list
 *   of conditions and the following disclaimer.
 *
 * o 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.
 *
 * o Neither the name of Freescale Semiconductor, Inc. nor the names of its
 *   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 HOLDER 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.
 */

#include <assert.h>
#include <string.h>
#include "fsl_mpu_driver.h"
#include "fsl_clock_manager.h"
#include "fsl_interrupt_manager.h"
#if FSL_FEATURE_SOC_MPU_COUNT

/*******************************************************************************
 * Definitions
 *******************************************************************************/

/*******************************************************************************
 * Variables
 ******************************************************************************/

/*******************************************************************************
 * Code
 *******************************************************************************/

/*FUNCTION**********************************************************************
 *
 * Function Name : MPU_DRV_Init
 * Description   : MPU module init.
 * This function is used to initialize MPU regions.
 *
 *END**************************************************************************/
mpu_status_t MPU_DRV_Init(uint32_t instance, const mpu_user_config_t *userConfigPtr)
{
    assert(instance < MPU_INSTANCE_COUNT);
    MPU_Type * base = g_mpuBase[instance];
    if(!userConfigPtr)
    {
        return kStatus_MPU_NullArgument;
    }
    CLOCK_SYS_EnableMpuClock(instance); 
    MPU_HAL_Init(base);
    while(userConfigPtr)
    {
        MPU_DRV_SetRegionConfig(instance, &(userConfigPtr->regionConfig));
        userConfigPtr = userConfigPtr->next;
    }
    MPU_HAL_Enable(base);
    return kStatus_MPU_Success;
}

/*FUNCTION**********************************************************************
 *
 * Function Name : MPU_DRV_Deinit
 * Description   : MPU module deinit.
 * This function is used to deinit MPU module---disable MPU and disable each region.
 *
 *END**************************************************************************/
void MPU_DRV_Deinit(uint32_t instance)
{
    assert(instance < MPU_INSTANCE_COUNT);
    MPU_Type * base = g_mpuBase[instance];
    MPU_HAL_Init(base);
    CLOCK_SYS_DisableMpuClock(instance);
}

/*FUNCTION**********************************************************************
 *
 * Function Name : MPU_DRV_SetRegionConfig
 * Description   : MPU region init.
 * This function is used to initialize a MPU region.
 * Note: when writing to a region's word0~word3 will caused the region invalid
 * so the region must be set valid by manual.
 *END**************************************************************************/
mpu_status_t MPU_DRV_SetRegionConfig(uint32_t instance, const mpu_region_config_t *regionConfigPtr)
{
    assert(instance < MPU_INSTANCE_COUNT);
    MPU_Type * base = g_mpuBase[instance];
    
    MPU_HAL_SetRegionConfig(base, regionConfigPtr);
    
    return kStatus_MPU_Success;
}

/*FUNCTION**********************************************************************
 *
 * Function Name : MPU_DRV_SetLowMasterAccessRights
 * Description   : Set low master access permission.
 * This function is used to set low master access permission.
 *
 *END**************************************************************************/
mpu_status_t MPU_DRV_SetLowMasterAccessRights(uint32_t instance, mpu_region_num_t regionNum, mpu_master_t masterNum, const mpu_low_masters_access_rights_t *accessRightsPtr)
{
    assert(instance < MPU_INSTANCE_COUNT);
    MPU_Type * base = g_mpuBase[instance];
    if(!accessRightsPtr)
    {
	return kStatus_MPU_NullArgument;
    }
    MPU_HAL_SetLowMasterAccessRightsByAlternateReg(base, regionNum, masterNum, accessRightsPtr);
    
    return kStatus_MPU_Success;
}

/*FUNCTION**********************************************************************
 *
 * Function Name : MPU_DRV_SetHighMasterAccessRights
 * Description   : Set high master access permission.
 * This function is used to set high master access permission.
 *
 *END**************************************************************************/
mpu_status_t MPU_DRV_SetHighMasterAccessRights(uint32_t instance, mpu_region_num_t regionNum, mpu_master_t masterNum, const mpu_high_masters_access_rights_t *accessRightsPtr)
{
    assert(instance < MPU_INSTANCE_COUNT);
    MPU_Type * base = g_mpuBase[instance];
    if(!accessRightsPtr)
    {
	return kStatus_MPU_NullArgument;
    }
    MPU_HAL_SetHighMasterAccessRightsByAlternateReg(base, regionNum, masterNum, accessRightsPtr);
    
    return kStatus_MPU_Success;
}

/*FUNCTION**********************************************************************
 *
 * Function Name : MPU_DRV_SetRegionAddr
 * Description   : Set region start address.
 * This function is used to set region start address.
 *
 *END**************************************************************************/
void MPU_DRV_SetRegionAddr(uint32_t instance, mpu_region_num_t regionNum, uint32_t startAddr, uint32_t endAddr)
{
    assert(instance < MPU_INSTANCE_COUNT);
    MPU_Type * base = g_mpuBase[instance];
    MPU_HAL_SetRegionAddr(base, regionNum, startAddr, endAddr);
}

/*FUNCTION**********************************************************************
 *
 * Function Name : MPU_DRV_SetRegionValidCmd
 * Description   : set a region valid or invalid.
 * This function is used to set a region valid or invalid.
 *
 *END**************************************************************************/
void MPU_DRV_SetRegionValidCmd(uint32_t instance, mpu_region_num_t regionNum, bool enable)
{
    assert(instance < MPU_INSTANCE_COUNT);
    MPU_Type * base = g_mpuBase[instance];
    MPU_HAL_SetRegionValidCmd(base, regionNum, enable);
}

/*FUNCTION**********************************************************************
 *
 * Function Name : MPU_DRV_GetDetailErrorAccessInfo
 * Description   : Gets error access detail information.
 * Attention: It is possible for two masters access error in same cycle, so a array pointer is needed.
 *
 *END**************************************************************************/
mpu_status_t MPU_DRV_GetDetailErrorAccessInfo(uint32_t instance,  mpu_access_err_info_t *errInfoArrayPtr)
{
    assert(instance < MPU_INSTANCE_COUNT);
    MPU_Type * base = g_mpuBase[instance];    
    if(!errInfoArrayPtr)
    {
        return kStatus_MPU_NullArgument;
    }
    MPU_HAL_GetDetailErrorAccessInfo(base, errInfoArrayPtr);
    
    return kStatus_MPU_Success;
}
#endif

/*******************************************************************************
 * EOF
 *******************************************************************************/