mirror of
https://github.com/espressif/openthread.git
synced 2026-07-07 21:00:20 +00:00
173 lines
5.1 KiB
C
173 lines
5.1 KiB
C
/*
|
|
* Copyright (c) 2017, The OpenThread Authors.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. 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.
|
|
* 3. 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.
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* This file implements the OpenThread platform abstraction for flash.
|
|
*
|
|
*/
|
|
|
|
#include "platform-emsk.h"
|
|
#include <utils/code_utils.h>
|
|
#include <utils/flash.h>
|
|
#include <openthread/config.h>
|
|
#include "openthread/platform/alarm-milli.h"
|
|
|
|
/**
|
|
* EMSK HAS 128 Mbit (16 MB) SPI flash memory (Winbond W25Q128BV).
|
|
* The Winbond W25Q128BV array is organized into 65536 programmable pages of
|
|
* 256-byte each. Up to 256 bytes can be programmed at a time. Pages can be
|
|
* erased in groups of 16 (4KB sector erase).
|
|
*/
|
|
|
|
/**
|
|
* EMSK SPIflash memory map with using embARC
|
|
* FPGA image: from 0x0000 0000
|
|
* Secondary bootloader: from 0x0078 0000
|
|
* Available for OpenThread: from 0x00FF D000 to 0x00FF EFFF
|
|
*/
|
|
#define OPENTHREAD_FLASH_BASE 0x00ffd000
|
|
#define OPENTHREAD_FLASH_SIZE 0x00002000
|
|
|
|
/**
|
|
* Define SETTINGS_CONFIG_BASE_ADDRESS,
|
|
* SETTINGS_CONFIG_PAGE_SIZE, and
|
|
* SETTINGS_CONFIG_PAGE_NUM for EMSK
|
|
*/
|
|
#ifdef SETTINGS_CONFIG_BASE_ADDRESS
|
|
#undef SETTINGS_CONFIG_BASE_ADDRESS
|
|
#endif // SETTINGS_CONFIG_BASE_ADDRESS
|
|
#define SETTINGS_CONFIG_BASE_ADDRESS OPENTHREAD_FLASH_BASE
|
|
|
|
#ifdef SETTINGS_CONFIG_PAGE_SIZE
|
|
#undef SETTINGS_CONFIG_PAGE_SIZE
|
|
#endif // SETTINGS_CONFIG_PAGE_SIZE
|
|
#define SETTINGS_CONFIG_PAGE_SIZE FLASH_SECTOR_SIZE
|
|
|
|
#ifdef SETTINGS_CONFIG_PAGE_NUM
|
|
#undef SETTINGS_CONFIG_PAGE_NUM
|
|
#endif // SETTINGS_CONFIG_PAGE_NUM
|
|
#define SETTINGS_CONFIG_PAGE_NUM 2
|
|
|
|
otError utilsFlashInit(void)
|
|
{
|
|
flash_init();
|
|
return OT_ERROR_NONE;
|
|
}
|
|
|
|
uint32_t utilsFlashGetSize(void)
|
|
{
|
|
return (uint32_t)FLASH_SECTOR_SIZE;
|
|
}
|
|
|
|
otError utilsFlashErasePage(uint32_t aAddress)
|
|
{
|
|
otError error = OT_ERROR_NONE;
|
|
int32_t status;
|
|
|
|
otEXPECT_ACTION((aAddress >= OPENTHREAD_FLASH_BASE) &&
|
|
(aAddress < (OPENTHREAD_FLASH_BASE + OPENTHREAD_FLASH_SIZE - 1)),
|
|
error = OT_ERROR_INVALID_ARGS);
|
|
|
|
/* Use 2 sectors in the implementation, cannot erase the address over the boundry */
|
|
status = flash_erase(aAddress, FLASH_SECTOR_SIZE);
|
|
|
|
otEXPECT_ACTION(status != -1, error = OT_ERROR_FAILED);
|
|
|
|
exit:
|
|
return error;
|
|
}
|
|
|
|
otError utilsFlashStatusWait(uint32_t aTimeout)
|
|
{
|
|
otError error = OT_ERROR_NONE;
|
|
uint32_t start = otPlatAlarmMilliGetNow();
|
|
bool busy = true;
|
|
uint32_t status = 0x01;
|
|
|
|
while (busy && ((otPlatAlarmMilliGetNow() - start) < aTimeout))
|
|
{
|
|
status = flash_read_status();
|
|
busy = status & 0x01;
|
|
}
|
|
|
|
otEXPECT_ACTION(!busy, error = OT_ERROR_BUSY);
|
|
|
|
exit:
|
|
return error;
|
|
}
|
|
|
|
uint32_t utilsFlashWrite(uint32_t aAddress, uint8_t *aData, uint32_t aSize)
|
|
{
|
|
int32_t written_size = 0;
|
|
uint32_t size = 0;
|
|
|
|
otEXPECT_ACTION((aAddress >= OPENTHREAD_FLASH_BASE) &&
|
|
((aAddress + aSize) <= OPENTHREAD_FLASH_BASE + OPENTHREAD_FLASH_SIZE) && (!(aAddress & 3)) &&
|
|
(!(aSize & 3)),
|
|
;);
|
|
|
|
written_size = flash_write(aAddress, aSize, aData);
|
|
|
|
if (written_size < 0)
|
|
{
|
|
size = 0;
|
|
}
|
|
else
|
|
{
|
|
size = (uint32_t)written_size;
|
|
}
|
|
|
|
exit:
|
|
return size;
|
|
}
|
|
|
|
uint32_t utilsFlashRead(uint32_t aAddress, uint8_t *aData, uint32_t aSize)
|
|
{
|
|
int32_t read_size = 0;
|
|
uint32_t size = 0;
|
|
|
|
otEXPECT_ACTION((aAddress >= OPENTHREAD_FLASH_BASE) &&
|
|
((aAddress + aSize) <= OPENTHREAD_FLASH_BASE + OPENTHREAD_FLASH_SIZE),
|
|
;);
|
|
|
|
read_size = flash_read(aAddress, aSize, aData);
|
|
|
|
if (read_size < 0)
|
|
{
|
|
size = 0;
|
|
}
|
|
else
|
|
{
|
|
size = (uint32_t)read_size;
|
|
}
|
|
|
|
exit:
|
|
return size;
|
|
}
|