2016-09-02 20:00:30 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "py/obj.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "lib/fatfs/ff.h"
|
|
|
|
#include "extmod/fsusermount.h"
|
|
|
|
|
|
|
|
#include "asf/sam0/drivers/nvm/nvm.h"
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
#include "internal_flash.h"
|
2016-09-02 20:00:30 -04:00
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
#define TOTAL_INTERNAL_FLASH_SIZE 0x010000
|
2016-09-02 20:00:30 -04:00
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
#define INTERNAL_FLASH_MEM_SEG1_START_ADDR (0x00040000 - TOTAL_INTERNAL_FLASH_SIZE)
|
|
|
|
#define INTERNAL_FLASH_PART1_START_BLOCK (0x100)
|
|
|
|
#define INTERNAL_FLASH_PART1_NUM_BLOCKS (TOTAL_INTERNAL_FLASH_SIZE / INTERNAL_FLASH_BLOCK_SIZE)
|
2016-09-02 20:00:30 -04:00
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
static bool internal_flash_is_initialised = false;
|
2016-09-02 20:00:30 -04:00
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
void internal_flash_init(void) {
|
|
|
|
if (!internal_flash_is_initialised) {
|
2016-09-02 20:00:30 -04:00
|
|
|
struct nvm_config config_nvm;
|
|
|
|
nvm_get_config_defaults(&config_nvm);
|
|
|
|
config_nvm.manual_page_write = false;
|
|
|
|
nvm_set_config(&config_nvm);
|
2016-10-13 17:53:31 -04:00
|
|
|
internal_flash_is_initialised = true;
|
2016-09-02 20:00:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
uint32_t internal_flash_get_block_size(void) {
|
|
|
|
return INTERNAL_FLASH_BLOCK_SIZE;
|
2016-09-02 20:00:30 -04:00
|
|
|
}
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
uint32_t internal_flash_get_block_count(void) {
|
|
|
|
return INTERNAL_FLASH_PART1_START_BLOCK + INTERNAL_FLASH_PART1_NUM_BLOCKS;
|
2016-09-02 20:00:30 -04:00
|
|
|
}
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
void internal_flash_flush(void) {
|
2016-09-02 20:00:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void build_partition(uint8_t *buf, int boot, int type, uint32_t start_block, uint32_t num_blocks) {
|
|
|
|
buf[0] = boot;
|
|
|
|
|
|
|
|
if (num_blocks == 0) {
|
|
|
|
buf[1] = 0;
|
|
|
|
buf[2] = 0;
|
|
|
|
buf[3] = 0;
|
|
|
|
} else {
|
|
|
|
buf[1] = 0xff;
|
|
|
|
buf[2] = 0xff;
|
|
|
|
buf[3] = 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[4] = type;
|
|
|
|
|
|
|
|
if (num_blocks == 0) {
|
|
|
|
buf[5] = 0;
|
|
|
|
buf[6] = 0;
|
|
|
|
buf[7] = 0;
|
|
|
|
} else {
|
|
|
|
buf[5] = 0xff;
|
|
|
|
buf[6] = 0xff;
|
|
|
|
buf[7] = 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[8] = start_block;
|
|
|
|
buf[9] = start_block >> 8;
|
|
|
|
buf[10] = start_block >> 16;
|
|
|
|
buf[11] = start_block >> 24;
|
|
|
|
|
|
|
|
buf[12] = num_blocks;
|
|
|
|
buf[13] = num_blocks >> 8;
|
|
|
|
buf[14] = num_blocks >> 16;
|
|
|
|
buf[15] = num_blocks >> 24;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t convert_block_to_flash_addr(uint32_t block) {
|
2016-10-13 17:53:31 -04:00
|
|
|
if (INTERNAL_FLASH_PART1_START_BLOCK <= block && block < INTERNAL_FLASH_PART1_START_BLOCK + INTERNAL_FLASH_PART1_NUM_BLOCKS) {
|
2016-09-02 20:00:30 -04:00
|
|
|
// a block in partition 1
|
2016-10-13 17:53:31 -04:00
|
|
|
block -= INTERNAL_FLASH_PART1_START_BLOCK;
|
|
|
|
return INTERNAL_FLASH_MEM_SEG1_START_ADDR + block * INTERNAL_FLASH_BLOCK_SIZE;
|
2016-09-02 20:00:30 -04:00
|
|
|
}
|
|
|
|
// bad block
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
bool internal_flash_read_block(uint8_t *dest, uint32_t block) {
|
2016-09-02 20:00:30 -04:00
|
|
|
//printf("RD %u\n", block);
|
|
|
|
if (block == 0) {
|
|
|
|
// fake the MBR so we can decide on our own partition table
|
|
|
|
|
|
|
|
for (int i = 0; i < 446; i++) {
|
|
|
|
dest[i] = 0;
|
|
|
|
}
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
build_partition(dest + 446, 0, 0x01 /* FAT12 */, INTERNAL_FLASH_PART1_START_BLOCK, INTERNAL_FLASH_PART1_NUM_BLOCKS);
|
2016-09-02 20:00:30 -04:00
|
|
|
build_partition(dest + 462, 0, 0, 0, 0);
|
|
|
|
build_partition(dest + 478, 0, 0, 0, 0);
|
|
|
|
build_partition(dest + 494, 0, 0, 0, 0);
|
|
|
|
|
|
|
|
dest[510] = 0x55;
|
|
|
|
dest[511] = 0xaa;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// non-MBR block, get data from flash memory
|
|
|
|
uint32_t src = convert_block_to_flash_addr(block);
|
|
|
|
if (src == -1) {
|
|
|
|
// bad block number
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
enum status_code error_code;
|
|
|
|
// A block is made up of multiple pages. Read each page
|
|
|
|
// sequentially.
|
2016-10-13 17:53:31 -04:00
|
|
|
for (int i = 0; i < INTERNAL_FLASH_BLOCK_SIZE / NVMCTRL_PAGE_SIZE; i++) {
|
2016-09-02 20:00:30 -04:00
|
|
|
do
|
|
|
|
{
|
|
|
|
error_code = nvm_read_buffer(src + i * NVMCTRL_PAGE_SIZE,
|
|
|
|
dest + i * NVMCTRL_PAGE_SIZE,
|
|
|
|
NVMCTRL_PAGE_SIZE);
|
|
|
|
} while (error_code == STATUS_BUSY);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
bool internal_flash_write_block(const uint8_t *src, uint32_t block) {
|
2016-09-02 20:00:30 -04:00
|
|
|
if (block == 0) {
|
|
|
|
// can't write MBR, but pretend we did
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// non-MBR block, copy to cache
|
|
|
|
volatile uint32_t dest = convert_block_to_flash_addr(block);
|
|
|
|
if (dest == -1) {
|
|
|
|
// bad block number
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
enum status_code error_code;
|
|
|
|
// A block is formed by two rows of flash. We must erase each row
|
|
|
|
// before we write back to it.
|
|
|
|
do
|
|
|
|
{
|
|
|
|
error_code = nvm_erase_row(dest);
|
|
|
|
} while (error_code == STATUS_BUSY);
|
|
|
|
if (error_code != STATUS_OK) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
do
|
|
|
|
{
|
|
|
|
error_code = nvm_erase_row(dest + NVMCTRL_ROW_SIZE);
|
|
|
|
} while (error_code == STATUS_BUSY);
|
|
|
|
if (error_code != STATUS_OK) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// A block is made up of multiple pages. Write each page
|
|
|
|
// sequentially.
|
2016-10-13 17:53:31 -04:00
|
|
|
for (int i = 0; i < INTERNAL_FLASH_BLOCK_SIZE / NVMCTRL_PAGE_SIZE; i++) {
|
2016-09-02 20:00:30 -04:00
|
|
|
do
|
|
|
|
{
|
|
|
|
error_code = nvm_write_buffer(dest + i * NVMCTRL_PAGE_SIZE,
|
|
|
|
src + i * NVMCTRL_PAGE_SIZE,
|
|
|
|
NVMCTRL_PAGE_SIZE);
|
|
|
|
} while (error_code == STATUS_BUSY);
|
|
|
|
if (error_code != STATUS_OK) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
mp_uint_t internal_flash_read_blocks(uint8_t *dest, uint32_t block_num, uint32_t num_blocks) {
|
2016-09-02 20:00:30 -04:00
|
|
|
for (size_t i = 0; i < num_blocks; i++) {
|
2016-10-13 17:53:31 -04:00
|
|
|
if (!internal_flash_read_block(dest + i * INTERNAL_FLASH_BLOCK_SIZE, block_num + i)) {
|
2016-09-02 20:00:30 -04:00
|
|
|
return 1; // error
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0; // success
|
|
|
|
}
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
mp_uint_t internal_flash_write_blocks(const uint8_t *src, uint32_t block_num, uint32_t num_blocks) {
|
2016-09-02 20:00:30 -04:00
|
|
|
for (size_t i = 0; i < num_blocks; i++) {
|
2016-10-13 17:53:31 -04:00
|
|
|
if (!internal_flash_write_block(src + i * INTERNAL_FLASH_BLOCK_SIZE, block_num + i)) {
|
2016-09-02 20:00:30 -04:00
|
|
|
return 1; // error
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0; // success
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
// MicroPython bindings
|
|
|
|
//
|
|
|
|
// Expose the flash as an object with the block protocol.
|
|
|
|
|
|
|
|
// there is a singleton Flash object
|
2016-10-13 17:53:31 -04:00
|
|
|
STATIC const mp_obj_base_t internal_flash_obj = {&internal_flash_type};
|
2016-09-02 20:00:30 -04:00
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
STATIC mp_obj_t internal_flash_obj_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
2016-09-02 20:00:30 -04:00
|
|
|
// check arguments
|
|
|
|
mp_arg_check_num(n_args, n_kw, 0, 0, false);
|
|
|
|
|
|
|
|
// return singleton object
|
2016-10-13 17:53:31 -04:00
|
|
|
return (mp_obj_t)&internal_flash_obj;
|
2016-09-02 20:00:30 -04:00
|
|
|
}
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
STATIC mp_obj_t internal_flash_obj_readblocks(mp_obj_t self, mp_obj_t block_num, mp_obj_t buf) {
|
2016-09-02 20:00:30 -04:00
|
|
|
mp_buffer_info_t bufinfo;
|
|
|
|
mp_get_buffer_raise(buf, &bufinfo, MP_BUFFER_WRITE);
|
2016-10-13 17:53:31 -04:00
|
|
|
mp_uint_t ret = internal_flash_read_blocks(bufinfo.buf, mp_obj_get_int(block_num), bufinfo.len / FLASH_BLOCK_SIZE);
|
2016-09-02 20:00:30 -04:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(ret);
|
|
|
|
}
|
2016-10-13 17:53:31 -04:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_3(internal_flash_obj_readblocks_obj, internal_flash_obj_readblocks);
|
2016-09-02 20:00:30 -04:00
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
STATIC mp_obj_t internal_flash_obj_writeblocks(mp_obj_t self, mp_obj_t block_num, mp_obj_t buf) {
|
2016-09-02 20:00:30 -04:00
|
|
|
mp_buffer_info_t bufinfo;
|
|
|
|
mp_get_buffer_raise(buf, &bufinfo, MP_BUFFER_READ);
|
2016-10-13 17:53:31 -04:00
|
|
|
mp_uint_t ret = internal_flash_write_blocks(bufinfo.buf, mp_obj_get_int(block_num), bufinfo.len / FLASH_BLOCK_SIZE);
|
2016-09-02 20:00:30 -04:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(ret);
|
|
|
|
}
|
2016-10-13 17:53:31 -04:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_3(internal_flash_obj_writeblocks_obj, internal_flash_obj_writeblocks);
|
2016-09-02 20:00:30 -04:00
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
STATIC mp_obj_t internal_flash_obj_ioctl(mp_obj_t self, mp_obj_t cmd_in, mp_obj_t arg_in) {
|
2016-09-02 20:00:30 -04:00
|
|
|
mp_int_t cmd = mp_obj_get_int(cmd_in);
|
|
|
|
switch (cmd) {
|
2016-10-13 17:53:31 -04:00
|
|
|
case BP_IOCTL_INIT: internal_flash_init(); return MP_OBJ_NEW_SMALL_INT(0);
|
|
|
|
case BP_IOCTL_DEINIT: internal_flash_flush(); return MP_OBJ_NEW_SMALL_INT(0); // TODO properly
|
|
|
|
case BP_IOCTL_SYNC: internal_flash_flush(); return MP_OBJ_NEW_SMALL_INT(0);
|
|
|
|
case BP_IOCTL_SEC_COUNT: return MP_OBJ_NEW_SMALL_INT(internal_flash_get_block_count());
|
|
|
|
case BP_IOCTL_SEC_SIZE: return MP_OBJ_NEW_SMALL_INT(internal_flash_get_block_size());
|
2016-09-02 20:00:30 -04:00
|
|
|
default: return mp_const_none;
|
|
|
|
}
|
|
|
|
}
|
2016-10-13 17:53:31 -04:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_3(internal_flash_obj_ioctl_obj, internal_flash_obj_ioctl);
|
2016-09-02 20:00:30 -04:00
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
STATIC const mp_map_elem_t internal_flash_obj_locals_dict_table[] = {
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_readblocks), (mp_obj_t)&internal_flash_obj_readblocks_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_writeblocks), (mp_obj_t)&internal_flash_obj_writeblocks_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_ioctl), (mp_obj_t)&internal_flash_obj_ioctl_obj },
|
2016-09-02 20:00:30 -04:00
|
|
|
};
|
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
STATIC MP_DEFINE_CONST_DICT(internal_flash_obj_locals_dict, internal_flash_obj_locals_dict_table);
|
2016-09-02 20:00:30 -04:00
|
|
|
|
2016-10-13 17:53:31 -04:00
|
|
|
const mp_obj_type_t internal_flash_type = {
|
2016-09-02 20:00:30 -04:00
|
|
|
{ &mp_type_type },
|
2016-10-13 17:53:31 -04:00
|
|
|
.name = MP_QSTR_InternalFlash,
|
|
|
|
.make_new = internal_flash_obj_make_new,
|
|
|
|
.locals_dict = (mp_obj_t)&internal_flash_obj_locals_dict,
|
2016-09-02 20:00:30 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
void flash_init_vfs(fs_user_mount_t *vfs) {
|
2016-10-21 18:18:05 -04:00
|
|
|
vfs->flags |= FSUSER_NATIVE | FSUSER_HAVE_IOCTL | FSUSER_USB_WRITEABLE;
|
2016-10-13 17:53:31 -04:00
|
|
|
vfs->readblocks[0] = (mp_obj_t)&internal_flash_obj_readblocks_obj;
|
|
|
|
vfs->readblocks[1] = (mp_obj_t)&internal_flash_obj;
|
|
|
|
vfs->readblocks[2] = (mp_obj_t)internal_flash_read_blocks; // native version
|
|
|
|
vfs->writeblocks[0] = (mp_obj_t)&internal_flash_obj_writeblocks_obj;
|
|
|
|
vfs->writeblocks[1] = (mp_obj_t)&internal_flash_obj;
|
|
|
|
vfs->writeblocks[2] = (mp_obj_t)internal_flash_write_blocks; // native version
|
|
|
|
vfs->u.ioctl[0] = (mp_obj_t)&internal_flash_obj_ioctl_obj;
|
|
|
|
vfs->u.ioctl[1] = (mp_obj_t)&internal_flash_obj;
|
2016-09-02 20:00:30 -04:00
|
|
|
}
|