2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
27 static void memProtConfigError(void)
32 void memProtConfigure(mpuRegion_t
*regions
, unsigned regionCount
)
34 MPU_Region_InitTypeDef MPU_InitStruct
;
36 if (regionCount
> MAX_MPU_REGIONS
) {
42 // Setup common members
43 MPU_InitStruct
.Enable
= MPU_REGION_ENABLE
;
44 MPU_InitStruct
.SubRegionDisable
= 0x00;
45 MPU_InitStruct
.TypeExtField
= MPU_TEX_LEVEL0
;
47 for (unsigned number
= 0; number
< regionCount
; number
++) {
48 mpuRegion_t
*region
= ®ions
[number
];
50 if (region
->end
== 0 && region
->size
== 0) {
54 MPU_InitStruct
.Number
= number
;
55 MPU_InitStruct
.BaseAddress
= region
->start
;
58 MPU_InitStruct
.Size
= region
->size
;
60 // Adjust start of the region to align with cache line size.
61 uint32_t start
= region
->start
& ~0x1F;
62 uint32_t length
= region
->end
- start
;
65 // This will also prevent flsl from returning negative (case length == 0)
69 int msbpos
= flsl(length
) - 1;
71 if (length
!= (1U << msbpos
)) {
75 MPU_InitStruct
.Size
= msbpos
;
78 // Copy per region attributes
79 MPU_InitStruct
.AccessPermission
= region
->perm
;
80 MPU_InitStruct
.DisableExec
= region
->exec
;
81 MPU_InitStruct
.IsShareable
= region
->shareable
;
82 MPU_InitStruct
.IsCacheable
= region
->cacheable
;
83 MPU_InitStruct
.IsBufferable
= region
->bufferable
;
85 HAL_MPU_ConfigRegion(&MPU_InitStruct
);
88 HAL_MPU_Enable(MPU_PRIVILEGED_DEFAULT
);
91 void memProtReset(void)
93 MPU_Region_InitTypeDef MPU_InitStruct
;
98 // Disable existing regions
100 for (uint8_t region
= 0; region
<= MAX_MPU_REGIONS
; region
++) {
101 MPU_InitStruct
.Enable
= MPU_REGION_DISABLE
;
102 MPU_InitStruct
.Number
= region
;
103 HAL_MPU_ConfigRegion(&MPU_InitStruct
);
106 HAL_MPU_Enable(MPU_PRIVILEGED_DEFAULT
);