250 lines
9.9 KiB
C
250 lines
9.9 KiB
C
/*
|
|
* Copyright (c) 2015 - 2016, Freescale Semiconductor, Inc.
|
|
* Copyright 2016-2017 NXP
|
|
*
|
|
* 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 the copyright holder 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 "fsl_sysmpu.h"
|
|
|
|
/*******************************************************************************
|
|
* Variables
|
|
******************************************************************************/
|
|
|
|
#if !(defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL)
|
|
const clock_ip_name_t g_sysmpuClock[FSL_FEATURE_SOC_SYSMPU_COUNT] = SYSMPU_CLOCKS;
|
|
#endif /* FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL */
|
|
|
|
/*******************************************************************************
|
|
* Codes
|
|
******************************************************************************/
|
|
|
|
void SYSMPU_Init(SYSMPU_Type *base, const sysmpu_config_t *config)
|
|
{
|
|
assert(config);
|
|
uint8_t count;
|
|
|
|
#if !(defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL)
|
|
/* Un-gate SYSMPU clock */
|
|
CLOCK_EnableClock(g_sysmpuClock[0]);
|
|
#endif /* FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL */
|
|
|
|
/* Initializes the regions. */
|
|
for (count = 1; count < FSL_FEATURE_SYSMPU_DESCRIPTOR_COUNT; count++)
|
|
{
|
|
base->WORD[count][3] = 0; /* VLD/VID+PID. */
|
|
base->WORD[count][0] = 0; /* Start address. */
|
|
base->WORD[count][1] = 0; /* End address. */
|
|
base->WORD[count][2] = 0; /* Access rights. */
|
|
base->RGDAAC[count] = 0; /* Alternate access rights. */
|
|
}
|
|
|
|
/* SYSMPU configure. */
|
|
while (config)
|
|
{
|
|
SYSMPU_SetRegionConfig(base, &(config->regionConfig));
|
|
config = config->next;
|
|
}
|
|
/* Enable SYSMPU. */
|
|
SYSMPU_Enable(base, true);
|
|
}
|
|
|
|
void SYSMPU_Deinit(SYSMPU_Type *base)
|
|
{
|
|
/* Disable SYSMPU. */
|
|
SYSMPU_Enable(base, false);
|
|
|
|
#if !(defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL)
|
|
/* Gate the clock. */
|
|
CLOCK_DisableClock(g_sysmpuClock[0]);
|
|
#endif /* FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL */
|
|
}
|
|
|
|
void SYSMPU_GetHardwareInfo(SYSMPU_Type *base, sysmpu_hardware_info_t *hardwareInform)
|
|
{
|
|
assert(hardwareInform);
|
|
|
|
uint32_t cesReg = base->CESR;
|
|
|
|
hardwareInform->hardwareRevisionLevel = (cesReg & SYSMPU_CESR_HRL_MASK) >> SYSMPU_CESR_HRL_SHIFT;
|
|
hardwareInform->slavePortsNumbers = (cesReg & SYSMPU_CESR_NSP_MASK) >> SYSMPU_CESR_NSP_SHIFT;
|
|
hardwareInform->regionsNumbers = (sysmpu_region_total_num_t)((cesReg & SYSMPU_CESR_NRGD_MASK) >> SYSMPU_CESR_NRGD_SHIFT);
|
|
}
|
|
|
|
void SYSMPU_SetRegionConfig(SYSMPU_Type *base, const sysmpu_region_config_t *regionConfig)
|
|
{
|
|
assert(regionConfig);
|
|
assert(regionConfig->regionNum < FSL_FEATURE_SYSMPU_DESCRIPTOR_COUNT);
|
|
|
|
uint32_t wordReg = 0;
|
|
uint8_t msPortNum;
|
|
uint8_t regNumber = regionConfig->regionNum;
|
|
|
|
/* The start and end address of the region descriptor. */
|
|
base->WORD[regNumber][0] = regionConfig->startAddress;
|
|
base->WORD[regNumber][1] = regionConfig->endAddress;
|
|
|
|
/* Set the privilege rights for master 0 ~ master 3. */
|
|
for (msPortNum = 0; msPortNum < SYSMPU_MASTER_RWATTRIBUTE_START_PORT; msPortNum++)
|
|
{
|
|
wordReg |= SYSMPU_REGION_RWXRIGHTS_MASTER(
|
|
msPortNum, (((uint32_t)regionConfig->accessRights1[msPortNum].superAccessRights << 3U) |
|
|
(uint32_t)regionConfig->accessRights1[msPortNum].userAccessRights));
|
|
|
|
#if FSL_FEATURE_SYSMPU_HAS_PROCESS_IDENTIFIER
|
|
wordReg |=
|
|
SYSMPU_REGION_RWXRIGHTS_MASTER_PE(msPortNum, regionConfig->accessRights1[msPortNum].processIdentifierEnable);
|
|
#endif /* FSL_FEATURE_SYSMPU_HAS_PROCESS_IDENTIFIER */
|
|
}
|
|
|
|
#if FSL_FEATURE_SYSMPU_MASTER_COUNT > SYSMPU_MASTER_RWATTRIBUTE_START_PORT
|
|
/* Set the normal read write rights for master 4 ~ master 7. */
|
|
for (msPortNum = SYSMPU_MASTER_RWATTRIBUTE_START_PORT; msPortNum < FSL_FEATURE_SYSMPU_MASTER_COUNT;
|
|
msPortNum++)
|
|
{
|
|
wordReg |= SYSMPU_REGION_RWRIGHTS_MASTER(msPortNum,
|
|
((uint32_t)regionConfig->accessRights2[msPortNum - SYSMPU_MASTER_RWATTRIBUTE_START_PORT].readEnable << 1U |
|
|
(uint32_t)regionConfig->accessRights2[msPortNum - SYSMPU_MASTER_RWATTRIBUTE_START_PORT].writeEnable));
|
|
}
|
|
#endif /* FSL_FEATURE_SYSMPU_MASTER_COUNT > SYSMPU_MASTER_RWATTRIBUTE_START_PORT */
|
|
|
|
/* Set region descriptor access rights. */
|
|
base->WORD[regNumber][2] = wordReg;
|
|
|
|
wordReg = SYSMPU_WORD_VLD(1);
|
|
#if FSL_FEATURE_SYSMPU_HAS_PROCESS_IDENTIFIER
|
|
wordReg |= SYSMPU_WORD_PID(regionConfig->processIdentifier) | SYSMPU_WORD_PIDMASK(regionConfig->processIdMask);
|
|
#endif /* FSL_FEATURE_SYSMPU_HAS_PROCESS_IDENTIFIER */
|
|
|
|
base->WORD[regNumber][3] = wordReg;
|
|
}
|
|
|
|
void SYSMPU_SetRegionAddr(SYSMPU_Type *base, uint32_t regionNum, uint32_t startAddr, uint32_t endAddr)
|
|
{
|
|
assert(regionNum < FSL_FEATURE_SYSMPU_DESCRIPTOR_COUNT);
|
|
|
|
base->WORD[regionNum][0] = startAddr;
|
|
base->WORD[regionNum][1] = endAddr;
|
|
}
|
|
|
|
void SYSMPU_SetRegionRwxMasterAccessRights(SYSMPU_Type *base,
|
|
uint32_t regionNum,
|
|
uint32_t masterNum,
|
|
const sysmpu_rwxrights_master_access_control_t *accessRights)
|
|
{
|
|
assert(accessRights);
|
|
assert(regionNum < FSL_FEATURE_SYSMPU_DESCRIPTOR_COUNT);
|
|
assert(masterNum < SYSMPU_MASTER_RWATTRIBUTE_START_PORT);
|
|
|
|
uint32_t mask = SYSMPU_REGION_RWXRIGHTS_MASTER_MASK(masterNum);
|
|
uint32_t right = base->RGDAAC[regionNum];
|
|
|
|
#if FSL_FEATURE_SYSMPU_HAS_PROCESS_IDENTIFIER
|
|
mask |= SYSMPU_REGION_RWXRIGHTS_MASTER_PE_MASK(masterNum);
|
|
#endif
|
|
|
|
/* Build rights control value. */
|
|
right &= ~mask;
|
|
right |= SYSMPU_REGION_RWXRIGHTS_MASTER(
|
|
masterNum, ((uint32_t)(accessRights->superAccessRights << 3U) | accessRights->userAccessRights));
|
|
#if FSL_FEATURE_SYSMPU_HAS_PROCESS_IDENTIFIER
|
|
right |= SYSMPU_REGION_RWXRIGHTS_MASTER_PE(masterNum, accessRights->processIdentifierEnable);
|
|
#endif /* FSL_FEATURE_SYSMPU_HAS_PROCESS_IDENTIFIER */
|
|
|
|
/* Set low master region access rights. */
|
|
base->RGDAAC[regionNum] = right;
|
|
}
|
|
|
|
#if FSL_FEATURE_SYSMPU_MASTER_COUNT > 4
|
|
void SYSMPU_SetRegionRwMasterAccessRights(SYSMPU_Type *base,
|
|
uint32_t regionNum,
|
|
uint32_t masterNum,
|
|
const sysmpu_rwrights_master_access_control_t *accessRights)
|
|
{
|
|
assert(accessRights);
|
|
assert(regionNum < FSL_FEATURE_SYSMPU_DESCRIPTOR_COUNT);
|
|
assert(masterNum >= SYSMPU_MASTER_RWATTRIBUTE_START_PORT);
|
|
assert(masterNum <= (FSL_FEATURE_SYSMPU_MASTER_COUNT - 1));
|
|
|
|
uint32_t mask = SYSMPU_REGION_RWRIGHTS_MASTER_MASK(masterNum);
|
|
uint32_t right = base->RGDAAC[regionNum];
|
|
|
|
/* Build rights control value. */
|
|
right &= ~mask;
|
|
right |=
|
|
SYSMPU_REGION_RWRIGHTS_MASTER(masterNum, (((uint32_t)accessRights->readEnable << 1U) | accessRights->writeEnable));
|
|
/* Set low master region access rights. */
|
|
base->RGDAAC[regionNum] = right;
|
|
}
|
|
#endif /* FSL_FEATURE_SYSMPU_MASTER_COUNT > 4 */
|
|
|
|
bool SYSMPU_GetSlavePortErrorStatus(SYSMPU_Type *base, sysmpu_slave_t slaveNum)
|
|
{
|
|
uint8_t sperr;
|
|
|
|
sperr = ((base->CESR & SYSMPU_CESR_SPERR_MASK) >> SYSMPU_CESR_SPERR_SHIFT) & (0x1U << (FSL_FEATURE_SYSMPU_SLAVE_COUNT - slaveNum - 1));
|
|
|
|
return (sperr != 0) ? true : false;
|
|
}
|
|
|
|
void SYSMPU_GetDetailErrorAccessInfo(SYSMPU_Type *base, sysmpu_slave_t slaveNum, sysmpu_access_err_info_t *errInform)
|
|
{
|
|
assert(errInform);
|
|
|
|
uint16_t value;
|
|
uint32_t cesReg;
|
|
|
|
/* Error address. */
|
|
errInform->address = base->SP[slaveNum].EAR;
|
|
|
|
/* Error detail information. */
|
|
value = (base->SP[slaveNum].EDR & SYSMPU_EDR_EACD_MASK) >> SYSMPU_EDR_EACD_SHIFT;
|
|
if (!value)
|
|
{
|
|
errInform->accessControl = kSYSMPU_NoRegionHit;
|
|
}
|
|
else if (!(value & (uint16_t)(value - 1)))
|
|
{
|
|
errInform->accessControl = kSYSMPU_NoneOverlappRegion;
|
|
}
|
|
else
|
|
{
|
|
errInform->accessControl = kSYSMPU_OverlappRegion;
|
|
}
|
|
|
|
value = base->SP[slaveNum].EDR;
|
|
errInform->master = (uint32_t)((value & SYSMPU_EDR_EMN_MASK) >> SYSMPU_EDR_EMN_SHIFT);
|
|
errInform->attributes = (sysmpu_err_attributes_t)((value & SYSMPU_EDR_EATTR_MASK) >> SYSMPU_EDR_EATTR_SHIFT);
|
|
errInform->accessType = (sysmpu_err_access_type_t)((value & SYSMPU_EDR_ERW_MASK) >> SYSMPU_EDR_ERW_SHIFT);
|
|
#if FSL_FEATURE_SYSMPU_HAS_PROCESS_IDENTIFIER
|
|
errInform->processorIdentification = (uint8_t)((value & SYSMPU_EDR_EPID_MASK) >> SYSMPU_EDR_EPID_SHIFT);
|
|
#endif
|
|
|
|
/* Clears error slave port bit. */
|
|
cesReg = (base->CESR & ~SYSMPU_CESR_SPERR_MASK) | ((0x1U << (FSL_FEATURE_SYSMPU_SLAVE_COUNT - slaveNum - 1)) << SYSMPU_CESR_SPERR_SHIFT);
|
|
base->CESR = cesReg;
|
|
}
|