Some checks failed
Basic Checks / license-check (push) Has been cancelled
Basic Checks / include-check (push) Has been cancelled
Basic Checks / style-check (push) Has been cancelled
Basic Checks / docs-check (push) Has been cancelled
Basic Checks / python-tests (push) Has been cancelled
Basic Checks / pin-validation (push) Has been cancelled
Basic Checks / cmake-checks (push) Has been cancelled
Basic Checks / frozen-tools-check (push) Has been cancelled
Publish or Update docker image for head of branch / prepare-tags (push) Has been cancelled
Release or update docker image for a released mbed-os version / prepare-tags (push) Has been cancelled
Publish or Update docker image for head of branch / build-container (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/amd64) (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/arm64) (push) Has been cancelled
Publish or Update docker image for head of branch / deploy-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / build-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/amd64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/arm64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / deploy-container (push) Has been cancelled
Prune temporary docker images / prune-images (push) Has been cancelled
368 lines
11 KiB
C
368 lines
11 KiB
C
/***************************************************************************//**
|
|
* \file cyhal_flash.c
|
|
*
|
|
* Description:
|
|
* Provides a high level interface for interacting with the Cypress Flash. This
|
|
* is wrapper around the lower level PDL API.
|
|
*
|
|
********************************************************************************
|
|
* \copyright
|
|
* Copyright 2018-2021 Cypress Semiconductor Corporation
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*******************************************************************************/
|
|
|
|
#include "cyhal_hwmgr.h"
|
|
#include "cyhal_hw_types.h"
|
|
#include "cyhal_flash.h"
|
|
#include "cy_utils.h"
|
|
#include "cyhal_syspm.h"
|
|
#include <string.h>
|
|
|
|
#if defined(CY_IP_MXS40SRSS) || defined(CY_IP_S8SRSSLT)
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
typedef cy_en_flashdrv_status_t (*_cyhal_flash_operation)(uint32_t rowAddr, const uint32_t* data);
|
|
|
|
static bool _cyhal_flash_pm_callback(cyhal_syspm_callback_state_t state, cyhal_syspm_callback_mode_t mode, void* callback_arg);
|
|
|
|
#if (CY_EM_EEPROM_SIZE > 0)
|
|
#define _CYHAL_INTERNAL_MEMORY_BLOCKS 2
|
|
#else
|
|
#define _CYHAL_INTERNAL_MEMORY_BLOCKS 1
|
|
#endif
|
|
|
|
static const cyhal_flash_block_info_t _CYHAL_FLASH_BLOCKS[_CYHAL_INTERNAL_MEMORY_BLOCKS] =
|
|
{
|
|
// Main Flash
|
|
{
|
|
.start_address = CY_FLASH_BASE,
|
|
.size = CY_FLASH_SIZE,
|
|
.sector_size = CY_FLASH_SIZEOF_ROW,
|
|
.page_size = CY_FLASH_SIZEOF_ROW,
|
|
.erase_value = 0x00U,
|
|
},
|
|
// Working Flash
|
|
#if (CY_EM_EEPROM_SIZE > 0)
|
|
{
|
|
.start_address = CY_EM_EEPROM_BASE,
|
|
.size = CY_EM_EEPROM_SIZE,
|
|
.sector_size = CY_FLASH_SIZEOF_ROW,
|
|
.page_size = CY_FLASH_SIZEOF_ROW,
|
|
.erase_value = 0x00U,
|
|
},
|
|
#endif
|
|
};
|
|
|
|
static uint8_t _cyhal_flash_write_buf[CY_FLASH_SIZEOF_ROW];
|
|
static bool _cyhal_flash_pending_pm_change = false;
|
|
|
|
static uint16_t _cyhal_flash_init_count = 0;
|
|
static cyhal_syspm_callback_data_t _cyhal_flash_internal_pm_cb = {
|
|
.callback = _cyhal_flash_pm_callback,
|
|
.states = (cyhal_syspm_callback_state_t)(CYHAL_SYSPM_CB_CPU_SLEEP | CYHAL_SYSPM_CB_CPU_DEEPSLEEP | CYHAL_SYSPM_CB_SYSTEM_HIBERNATE | CYHAL_SYSPM_CB_SYSTEM_LOW),
|
|
.next = NULL,
|
|
.args = NULL,
|
|
.ignore_modes = CYHAL_SYSPM_BEFORE_TRANSITION,
|
|
};
|
|
|
|
static inline cy_rslt_t _cyhal_flash_convert_status(uint32_t pdl_status)
|
|
{
|
|
if(pdl_status == CY_FLASH_DRV_OPERATION_STARTED)
|
|
{
|
|
return CY_RSLT_SUCCESS;
|
|
}
|
|
else
|
|
{
|
|
return pdl_status;
|
|
}
|
|
}
|
|
|
|
#if defined(CY_IP_S8SRSSLT) && CY_FLASH_NON_BLOCKING_SUPPORTED
|
|
static void _cyhal_flash_irq_handler(void)
|
|
{
|
|
(void) Cy_Flash_ResumeWrite();
|
|
}
|
|
#endif
|
|
|
|
static bool _cyhal_flash_pm_callback(cyhal_syspm_callback_state_t state, cyhal_syspm_callback_mode_t mode, void* callback_arg)
|
|
{
|
|
CY_UNUSED_PARAMETER(state);
|
|
CY_UNUSED_PARAMETER(callback_arg);
|
|
bool allow = true;
|
|
|
|
switch (mode)
|
|
{
|
|
case CYHAL_SYSPM_CHECK_READY:
|
|
#if defined(CY_IP_MXS40SRSS) || CY_FLASH_NON_BLOCKING_SUPPORTED
|
|
if (CY_RSLT_SUCCESS == Cy_Flash_IsOperationComplete())
|
|
_cyhal_flash_pending_pm_change = true;
|
|
else
|
|
allow = false;
|
|
#else
|
|
_cyhal_flash_pending_pm_change = true;
|
|
#endif
|
|
break;
|
|
case CYHAL_SYSPM_AFTER_TRANSITION:
|
|
case CYHAL_SYSPM_CHECK_FAIL:
|
|
_cyhal_flash_pending_pm_change = false;
|
|
break;
|
|
default:
|
|
/* Don't care */
|
|
break;
|
|
}
|
|
|
|
return allow;
|
|
}
|
|
|
|
static inline bool _cyhal_flash_is_flash_address(uint32_t address)
|
|
{
|
|
return
|
|
#if (CY_EM_EEPROM_SIZE > 0)
|
|
((CY_EM_EEPROM_BASE <= address) && (address < (CY_EM_EEPROM_BASE + CY_EM_EEPROM_SIZE))) ||
|
|
#endif
|
|
|
|
#if (CY_FLASH_BASE != 0)
|
|
((CY_FLASH_BASE <= address) && (address < (CY_FLASH_BASE + CY_FLASH_SIZE)));
|
|
#else
|
|
(address < (CY_FLASH_BASE + CY_FLASH_SIZE));
|
|
#endif
|
|
}
|
|
static inline bool _cyhal_flash_is_sram_address(uint32_t address)
|
|
{
|
|
return (CY_SRAM_BASE <= address) && (address < (CY_SRAM_BASE + CY_SRAM_SIZE));
|
|
}
|
|
|
|
static cy_rslt_t _cyhal_flash_run_operation(
|
|
_cyhal_flash_operation operation, uint32_t address, const uint32_t* data, bool clearCache)
|
|
{
|
|
cy_rslt_t status;
|
|
if (_cyhal_flash_pending_pm_change)
|
|
status = CYHAL_SYSPM_RSLT_ERR_PM_PENDING;
|
|
else
|
|
{
|
|
const uint32_t* buffer;
|
|
if (_cyhal_flash_is_sram_address((uint32_t)data))
|
|
{
|
|
buffer = data;
|
|
}
|
|
else
|
|
{
|
|
memcpy(_cyhal_flash_write_buf, (const void *)data, CY_FLASH_SIZEOF_ROW);
|
|
buffer = (const uint32_t*)_cyhal_flash_write_buf;
|
|
}
|
|
|
|
status = (cy_rslt_t)_cyhal_flash_convert_status((cy_rslt_t)operation(address, buffer));
|
|
if (clearCache)
|
|
{
|
|
Cy_SysLib_ClearFlashCacheAndBuffer();
|
|
}
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
cy_rslt_t cyhal_flash_init(cyhal_flash_t *obj)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
#if defined(CY_IP_S8SRSSLT) && CY_FLASH_NON_BLOCKING_SUPPORTED
|
|
/* Configure Flash interrupt */
|
|
cy_stc_sysint_t irqCfg = {cpuss_interrupt_spcif_IRQn, 0u};
|
|
Cy_SysInt_Init(&irqCfg, &_cyhal_flash_irq_handler);
|
|
NVIC_EnableIRQ(irqCfg.intrSrc);
|
|
#endif
|
|
if(_cyhal_flash_init_count == 0)
|
|
_cyhal_syspm_register_peripheral_callback(&_cyhal_flash_internal_pm_cb);
|
|
_cyhal_flash_init_count++;
|
|
return CY_RSLT_SUCCESS;
|
|
}
|
|
|
|
void cyhal_flash_free(cyhal_flash_t *obj)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
#if defined(CY_IP_S8SRSSLT) && CY_FLASH_NON_BLOCKING_SUPPORTED
|
|
NVIC_DisableIRQ(cpuss_interrupt_spcif_IRQn);
|
|
#endif
|
|
CY_ASSERT(_cyhal_flash_init_count > 0);
|
|
_cyhal_flash_init_count--;
|
|
if(_cyhal_flash_init_count == 0)
|
|
_cyhal_syspm_unregister_peripheral_callback(&_cyhal_flash_internal_pm_cb);
|
|
}
|
|
|
|
void cyhal_flash_get_info(const cyhal_flash_t *obj, cyhal_flash_info_t *info)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
info->block_count = _CYHAL_INTERNAL_MEMORY_BLOCKS;
|
|
info->blocks = &_CYHAL_FLASH_BLOCKS[0];
|
|
}
|
|
|
|
cy_rslt_t cyhal_flash_read(cyhal_flash_t *obj, uint32_t address, uint8_t *data, size_t size)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
if (!_cyhal_flash_is_flash_address(address) || !_cyhal_flash_is_flash_address(address + size - 1))
|
|
{
|
|
return CYHAL_FLASH_RSLT_ERR_ADDRESS;
|
|
}
|
|
memcpy(data, (void *)address, size);
|
|
return CY_RSLT_SUCCESS;
|
|
}
|
|
|
|
cy_rslt_t cyhal_flash_erase(cyhal_flash_t *obj, uint32_t address)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
cy_rslt_t status = CYHAL_FLASH_RSLT_ERR_ADDRESS;
|
|
|
|
#if defined(CY_IP_MXS40SRSS)
|
|
if (_cyhal_flash_pending_pm_change)
|
|
status = CYHAL_SYSPM_RSLT_ERR_PM_PENDING;
|
|
else if (_cyhal_flash_is_flash_address(address))
|
|
{
|
|
status = (cy_rslt_t)_cyhal_flash_convert_status(Cy_Flash_EraseRow(address));
|
|
Cy_SysLib_ClearFlashCacheAndBuffer();
|
|
}
|
|
#elif defined(CY_IP_S8SRSSLT)
|
|
CY_UNUSED_PARAMETER(address);
|
|
status = CYHAL_FLASH_RSLT_ERR_NOT_SUPPORTED;
|
|
#else
|
|
#error "Current HW block is not supported"
|
|
#endif
|
|
|
|
return (status);
|
|
}
|
|
|
|
cy_rslt_t cyhal_flash_write(cyhal_flash_t *obj, uint32_t address, const uint32_t* data)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
cy_rslt_t status = _cyhal_flash_is_flash_address(address)
|
|
? _cyhal_flash_run_operation(Cy_Flash_WriteRow, address, data, true)
|
|
: CYHAL_FLASH_RSLT_ERR_ADDRESS;
|
|
|
|
return (status);
|
|
}
|
|
|
|
cy_rslt_t cyhal_flash_program(cyhal_flash_t *obj, uint32_t address, const uint32_t *data)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_MXS40SRSS)
|
|
cy_rslt_t status = _cyhal_flash_is_flash_address(address)
|
|
? _cyhal_flash_run_operation(Cy_Flash_ProgramRow, address, data, true)
|
|
: CYHAL_FLASH_RSLT_ERR_ADDRESS;
|
|
#elif defined(CY_IP_S8SRSSLT)
|
|
cy_rslt_t status = CYHAL_FLASH_RSLT_ERR_NOT_SUPPORTED;
|
|
CY_UNUSED_PARAMETER(address);
|
|
CY_UNUSED_PARAMETER(data);
|
|
#else
|
|
#error "Current HW block is not supported"
|
|
#endif
|
|
|
|
return (status);
|
|
}
|
|
|
|
cy_rslt_t cyhal_flash_start_erase(cyhal_flash_t *obj, uint32_t address)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_MXS40SRSS)
|
|
cy_rslt_t status;
|
|
if (_cyhal_flash_pending_pm_change)
|
|
status = CYHAL_SYSPM_RSLT_ERR_PM_PENDING;
|
|
else
|
|
{
|
|
status = (cy_rslt_t)_cyhal_flash_convert_status(_cyhal_flash_is_flash_address(address)
|
|
? Cy_Flash_StartEraseRow(address)
|
|
: CYHAL_FLASH_RSLT_ERR_ADDRESS);
|
|
}
|
|
#elif defined(CY_IP_S8SRSSLT)
|
|
cy_rslt_t status = CYHAL_FLASH_RSLT_ERR_NOT_SUPPORTED;
|
|
CY_UNUSED_PARAMETER(address);
|
|
#else
|
|
#error "Current HW block is not supported"
|
|
#endif
|
|
|
|
return (status);
|
|
}
|
|
|
|
cy_rslt_t cyhal_flash_start_write(cyhal_flash_t *obj, uint32_t address, const uint32_t* data)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_MXS40SRSS) || CY_FLASH_NON_BLOCKING_SUPPORTED
|
|
cy_rslt_t status = _cyhal_flash_is_flash_address(address)
|
|
? _cyhal_flash_run_operation(Cy_Flash_StartWrite, address, data, false)
|
|
: CYHAL_FLASH_RSLT_ERR_ADDRESS;
|
|
#else
|
|
cy_rslt_t status = CYHAL_FLASH_RSLT_ERR_NOT_SUPPORTED;
|
|
CY_UNUSED_PARAMETER(address);
|
|
CY_UNUSED_PARAMETER(data);
|
|
#endif
|
|
|
|
return (status);
|
|
}
|
|
|
|
cy_rslt_t cyhal_flash_start_program(cyhal_flash_t *obj, uint32_t address, const uint32_t* data)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_MXS40SRSS)
|
|
cy_rslt_t status = _cyhal_flash_is_flash_address(address)
|
|
? _cyhal_flash_run_operation(Cy_Flash_StartProgram, address, data, false)
|
|
: CYHAL_FLASH_RSLT_ERR_ADDRESS;
|
|
#elif defined(CY_IP_S8SRSSLT)
|
|
cy_rslt_t status = CYHAL_FLASH_RSLT_ERR_NOT_SUPPORTED;
|
|
CY_UNUSED_PARAMETER(address);
|
|
CY_UNUSED_PARAMETER(data);
|
|
#else
|
|
#error "Current HW block is not supported"
|
|
#endif
|
|
|
|
return (status);
|
|
}
|
|
|
|
bool cyhal_flash_is_operation_complete(cyhal_flash_t *obj)
|
|
{
|
|
CY_UNUSED_PARAMETER(obj);
|
|
CY_ASSERT(NULL != obj);
|
|
#if defined(CY_IP_MXS40SRSS) || CY_FLASH_NON_BLOCKING_SUPPORTED
|
|
bool complete = (CY_FLASH_DRV_SUCCESS == Cy_Flash_IsOperationComplete());
|
|
if (complete)
|
|
Cy_SysLib_ClearFlashCacheAndBuffer();
|
|
return complete;
|
|
#else
|
|
return true;
|
|
#endif
|
|
}
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* CY_IP_MXS40SRSS */
|