mirror of https://github.com/ARMmbed/mbed-os.git
283 lines
6.8 KiB
C++
283 lines
6.8 KiB
C++
/* mbed Microcontroller Library
|
|
* Copyright (c) 2017 ARM Limited
|
|
*
|
|
* 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 "ChainingBlockDevice.h"
|
|
#include "mbed_critical.h"
|
|
|
|
|
|
ChainingBlockDevice::ChainingBlockDevice(BlockDevice **bds, size_t bd_count)
|
|
: _bds(bds), _bd_count(bd_count)
|
|
, _read_size(0), _program_size(0), _erase_size(0), _size(0)
|
|
, _erase_value(-1), _init_ref_count(0), _is_initialized(false)
|
|
{
|
|
}
|
|
|
|
static bool is_aligned(uint64_t x, uint64_t alignment)
|
|
{
|
|
return (x / alignment) * alignment == x;
|
|
}
|
|
|
|
int ChainingBlockDevice::init()
|
|
{
|
|
int err;
|
|
uint32_t val = core_util_atomic_incr_u32(&_init_ref_count, 1);
|
|
|
|
if (val != 1) {
|
|
return BD_ERROR_OK;
|
|
}
|
|
|
|
_read_size = 0;
|
|
_program_size = 0;
|
|
_erase_size = 0;
|
|
_erase_value = -1;
|
|
_size = 0;
|
|
|
|
// Initialize children block devices, find all sizes and
|
|
// assert that block sizes are similar. We can't do this in
|
|
// the constructor since some block devices may need to be
|
|
// initialized before they know their block size/count
|
|
for (size_t i = 0; i < _bd_count; i++) {
|
|
err = _bds[i]->init();
|
|
if (err) {
|
|
goto fail;
|
|
}
|
|
|
|
bd_size_t read = _bds[i]->get_read_size();
|
|
if (i == 0 || (read >= _read_size && is_aligned(read, _read_size))) {
|
|
_read_size = read;
|
|
} else {
|
|
MBED_ASSERT(_read_size > read && is_aligned(_read_size, read));
|
|
}
|
|
|
|
bd_size_t program = _bds[i]->get_program_size();
|
|
if (i == 0 || (program >= _program_size && is_aligned(program, _program_size))) {
|
|
_program_size = program;
|
|
} else {
|
|
MBED_ASSERT(_program_size > program && is_aligned(_program_size, program));
|
|
}
|
|
|
|
bd_size_t erase = _bds[i]->get_erase_size();
|
|
if (i == 0 || (erase >= _erase_size && is_aligned(erase, _erase_size))) {
|
|
_erase_size = erase;
|
|
} else {
|
|
MBED_ASSERT(_erase_size > erase && is_aligned(_erase_size, erase));
|
|
}
|
|
|
|
int value = _bds[i]->get_erase_value();
|
|
if (i == 0 || value == _erase_value) {
|
|
_erase_value = value;
|
|
} else {
|
|
_erase_value = -1;
|
|
}
|
|
|
|
_size += _bds[i]->size();
|
|
}
|
|
|
|
_is_initialized = true;
|
|
return BD_ERROR_OK;
|
|
|
|
fail:
|
|
_is_initialized = false;
|
|
_init_ref_count = 0;
|
|
return err;
|
|
}
|
|
|
|
int ChainingBlockDevice::deinit()
|
|
{
|
|
if (!_is_initialized) {
|
|
return BD_ERROR_OK;
|
|
}
|
|
|
|
uint32_t val = core_util_atomic_decr_u32(&_init_ref_count, 1);
|
|
|
|
if (val) {
|
|
return BD_ERROR_OK;
|
|
}
|
|
|
|
for (size_t i = 0; i < _bd_count; i++) {
|
|
int err = _bds[i]->deinit();
|
|
if (err) {
|
|
return err;
|
|
}
|
|
}
|
|
|
|
_is_initialized = false;
|
|
return BD_ERROR_OK;
|
|
}
|
|
|
|
int ChainingBlockDevice::sync()
|
|
{
|
|
if (!_is_initialized) {
|
|
return BD_ERROR_DEVICE_ERROR;
|
|
}
|
|
|
|
for (size_t i = 0; i < _bd_count; i++) {
|
|
int err = _bds[i]->sync();
|
|
if (err) {
|
|
return err;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int ChainingBlockDevice::read(void *b, bd_addr_t addr, bd_size_t size)
|
|
{
|
|
MBED_ASSERT(is_valid_read(addr, size));
|
|
if (!_is_initialized) {
|
|
return BD_ERROR_DEVICE_ERROR;
|
|
}
|
|
|
|
uint8_t *buffer = static_cast<uint8_t*>(b);
|
|
|
|
// Find block devices containing blocks, may span multiple block devices
|
|
for (size_t i = 0; i < _bd_count && size > 0; i++) {
|
|
bd_size_t bdsize = _bds[i]->size();
|
|
|
|
if (addr < bdsize) {
|
|
bd_size_t read = size;
|
|
if (addr + read > bdsize) {
|
|
read = bdsize - addr;
|
|
}
|
|
|
|
int err = _bds[i]->read(buffer, addr, read);
|
|
if (err) {
|
|
return err;
|
|
}
|
|
|
|
buffer += read;
|
|
addr += read;
|
|
size -= read;
|
|
}
|
|
|
|
addr -= bdsize;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int ChainingBlockDevice::program(const void *b, bd_addr_t addr, bd_size_t size)
|
|
{
|
|
MBED_ASSERT(is_valid_program(addr, size));
|
|
if (!_is_initialized) {
|
|
return BD_ERROR_DEVICE_ERROR;
|
|
}
|
|
|
|
const uint8_t *buffer = static_cast<const uint8_t*>(b);
|
|
|
|
// Find block devices containing blocks, may span multiple block devices
|
|
for (size_t i = 0; i < _bd_count && size > 0; i++) {
|
|
bd_size_t bdsize = _bds[i]->size();
|
|
|
|
if (addr < bdsize) {
|
|
bd_size_t program = size;
|
|
if (addr + program > bdsize) {
|
|
program = bdsize - addr;
|
|
}
|
|
|
|
int err = _bds[i]->program(buffer, addr, program);
|
|
if (err) {
|
|
return err;
|
|
}
|
|
|
|
buffer += program;
|
|
addr += program;
|
|
size -= program;
|
|
}
|
|
|
|
addr -= bdsize;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int ChainingBlockDevice::erase(bd_addr_t addr, bd_size_t size)
|
|
{
|
|
MBED_ASSERT(is_valid_erase(addr, size));
|
|
if (!_is_initialized) {
|
|
return BD_ERROR_DEVICE_ERROR;
|
|
}
|
|
|
|
// Find block devices containing blocks, may span multiple block devices
|
|
for (size_t i = 0; i < _bd_count && size > 0; i++) {
|
|
bd_size_t bdsize = _bds[i]->size();
|
|
|
|
if (addr < bdsize) {
|
|
bd_size_t erase = size;
|
|
if (addr + erase > bdsize) {
|
|
erase = bdsize - addr;
|
|
}
|
|
|
|
int err = _bds[i]->erase(addr, erase);
|
|
if (err) {
|
|
return err;
|
|
}
|
|
|
|
addr += erase;
|
|
size -= erase;
|
|
}
|
|
|
|
addr -= bdsize;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
bd_size_t ChainingBlockDevice::get_read_size() const
|
|
{
|
|
return _read_size;
|
|
}
|
|
|
|
bd_size_t ChainingBlockDevice::get_program_size() const
|
|
{
|
|
return _program_size;
|
|
}
|
|
|
|
bd_size_t ChainingBlockDevice::get_erase_size() const
|
|
{
|
|
return _erase_size;
|
|
}
|
|
|
|
bd_size_t ChainingBlockDevice::get_erase_size(bd_addr_t addr) const
|
|
{
|
|
if (!_is_initialized) {
|
|
return BD_ERROR_DEVICE_ERROR;
|
|
}
|
|
|
|
bd_addr_t bd_start_addr = 0;
|
|
for (size_t i = 0; i < _bd_count; i++) {
|
|
bd_size_t bdsize = _bds[i]->size();
|
|
if (addr < (bd_start_addr + bdsize)) {
|
|
return _bds[i]->get_erase_size(addr - bd_start_addr);
|
|
}
|
|
bd_start_addr += bdsize;
|
|
}
|
|
|
|
// Getting here implies an illegal address
|
|
MBED_ASSERT(0);
|
|
return 0; // satisfy compiler
|
|
}
|
|
|
|
int ChainingBlockDevice::get_erase_value() const
|
|
{
|
|
return _erase_value;
|
|
}
|
|
|
|
bd_size_t ChainingBlockDevice::size() const
|
|
{
|
|
return _size;
|
|
}
|