2017-10-24 22:55:23 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
*
|
2018-08-14 01:13:59 +00:00
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
* Copyright (c) 2016 Bob Cousins bobcousins42@googlemail.com
|
|
|
|
* Copyright (c) 2015-2016 Nico Tonnhofer wurstnase.reprap@gmail.com
|
|
|
|
* Copyright (c) 2016 Victor Perez victor_pv@hotmail.com
|
2017-10-24 22:55:23 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2017-08-01 16:19:23 +00:00
|
|
|
#ifdef TARGET_LPC1768
|
2017-06-17 21:19:42 +00:00
|
|
|
|
2018-08-14 06:19:34 +00:00
|
|
|
#include "../../inc/MarlinConfigPre.h"
|
2017-06-17 21:19:42 +00:00
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
2017-06-17 21:19:42 +00:00
|
|
|
|
2018-08-14 22:54:12 +00:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
2018-08-14 06:19:34 +00:00
|
|
|
#include "persistent_store_api.h"
|
|
|
|
|
|
|
|
#if DISABLED(FLASH_EEPROM)
|
2017-08-01 16:19:23 +00:00
|
|
|
|
2018-08-13 22:30:26 +00:00
|
|
|
#include <chanfs/diskio.h>
|
|
|
|
#include <chanfs/ff.h>
|
2017-06-17 21:19:42 +00:00
|
|
|
|
2017-10-04 20:40:54 +00:00
|
|
|
extern uint32_t MSC_Aquire_Lock();
|
|
|
|
extern uint32_t MSC_Release_Lock();
|
|
|
|
|
2017-06-17 21:19:42 +00:00
|
|
|
FATFS fat_fs;
|
|
|
|
FIL eeprom_file;
|
2018-08-13 22:30:26 +00:00
|
|
|
bool eeprom_file_open = false;
|
2017-06-17 21:19:42 +00:00
|
|
|
|
2018-08-13 22:30:26 +00:00
|
|
|
bool PersistentStore::access_start() {
|
2017-10-19 15:44:45 +00:00
|
|
|
const char eeprom_erase_value = 0xFF;
|
2017-10-04 20:40:54 +00:00
|
|
|
MSC_Aquire_Lock();
|
Update LPC persistent store to initialize eeprom.dat with FF
This change initialize any data in eeprom.dat beyond the current file size to FF.
That way if eeprom.dat is deleted and created again, it doesn't take the old values or random ones, but rather starts with FF in all positions as a real brand new or erased eeprom.dat
Currently if you delete eeprom.dat and restart the board, the new file is created in the same sector with the same content, since FAT does not actually delete the data, just marks the sector as free. I tested by deleting the file, and then rebooting the board, and checking the file content.
The change can be tested in the same way, deleting, rebooting the board, and then the new content should be all FF.
If an eeprom file already exist with data on it, but smaller than E2END, it will be padded with FF on first access, so it will not have random or old content appended.
2017-09-28 01:43:43 +00:00
|
|
|
if (f_mount(&fat_fs, "", 1)) {
|
2017-10-04 20:40:54 +00:00
|
|
|
MSC_Release_Lock();
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-17 21:19:42 +00:00
|
|
|
FRESULT res = f_open(&eeprom_file, "eeprom.dat", FA_OPEN_ALWAYS | FA_WRITE | FA_READ);
|
Update LPC persistent store to initialize eeprom.dat with FF
This change initialize any data in eeprom.dat beyond the current file size to FF.
That way if eeprom.dat is deleted and created again, it doesn't take the old values or random ones, but rather starts with FF in all positions as a real brand new or erased eeprom.dat
Currently if you delete eeprom.dat and restart the board, the new file is created in the same sector with the same content, since FAT does not actually delete the data, just marks the sector as free. I tested by deleting the file, and then rebooting the board, and checking the file content.
The change can be tested in the same way, deleting, rebooting the board, and then the new content should be all FF.
If an eeprom file already exist with data on it, but smaller than E2END, it will be padded with FF on first access, so it will not have random or old content appended.
2017-09-28 01:43:43 +00:00
|
|
|
if (res) MSC_Release_Lock();
|
|
|
|
|
|
|
|
if (res == FR_OK) {
|
2017-10-26 18:37:26 +00:00
|
|
|
UINT bytes_written;
|
|
|
|
FSIZE_t file_size = f_size(&eeprom_file);
|
Update LPC persistent store to initialize eeprom.dat with FF
This change initialize any data in eeprom.dat beyond the current file size to FF.
That way if eeprom.dat is deleted and created again, it doesn't take the old values or random ones, but rather starts with FF in all positions as a real brand new or erased eeprom.dat
Currently if you delete eeprom.dat and restart the board, the new file is created in the same sector with the same content, since FAT does not actually delete the data, just marks the sector as free. I tested by deleting the file, and then rebooting the board, and checking the file content.
The change can be tested in the same way, deleting, rebooting the board, and then the new content should be all FF.
If an eeprom file already exist with data on it, but smaller than E2END, it will be padded with FF on first access, so it will not have random or old content appended.
2017-09-28 01:43:43 +00:00
|
|
|
f_lseek(&eeprom_file, file_size);
|
2018-08-13 22:30:26 +00:00
|
|
|
while (file_size < capacity() && res == FR_OK) {
|
2017-10-19 15:44:45 +00:00
|
|
|
res = f_write(&eeprom_file, &eeprom_erase_value, 1, &bytes_written);
|
Update LPC persistent store to initialize eeprom.dat with FF
This change initialize any data in eeprom.dat beyond the current file size to FF.
That way if eeprom.dat is deleted and created again, it doesn't take the old values or random ones, but rather starts with FF in all positions as a real brand new or erased eeprom.dat
Currently if you delete eeprom.dat and restart the board, the new file is created in the same sector with the same content, since FAT does not actually delete the data, just marks the sector as free. I tested by deleting the file, and then rebooting the board, and checking the file content.
The change can be tested in the same way, deleting, rebooting the board, and then the new content should be all FF.
If an eeprom file already exist with data on it, but smaller than E2END, it will be padded with FF on first access, so it will not have random or old content appended.
2017-09-28 01:43:43 +00:00
|
|
|
file_size++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (res == FR_OK) {
|
|
|
|
f_lseek(&eeprom_file, 0);
|
|
|
|
f_sync(&eeprom_file);
|
2018-08-13 22:30:26 +00:00
|
|
|
eeprom_file_open = true;
|
Update LPC persistent store to initialize eeprom.dat with FF
This change initialize any data in eeprom.dat beyond the current file size to FF.
That way if eeprom.dat is deleted and created again, it doesn't take the old values or random ones, but rather starts with FF in all positions as a real brand new or erased eeprom.dat
Currently if you delete eeprom.dat and restart the board, the new file is created in the same sector with the same content, since FAT does not actually delete the data, just marks the sector as free. I tested by deleting the file, and then rebooting the board, and checking the file content.
The change can be tested in the same way, deleting, rebooting the board, and then the new content should be all FF.
If an eeprom file already exist with data on it, but smaller than E2END, it will be padded with FF on first access, so it will not have random or old content appended.
2017-09-28 01:43:43 +00:00
|
|
|
}
|
|
|
|
return res == FR_OK;
|
2017-06-17 21:19:42 +00:00
|
|
|
}
|
|
|
|
|
2018-08-13 22:30:26 +00:00
|
|
|
bool PersistentStore::access_finish() {
|
2017-06-17 21:19:42 +00:00
|
|
|
f_close(&eeprom_file);
|
|
|
|
f_unmount("");
|
2017-10-04 20:40:54 +00:00
|
|
|
MSC_Release_Lock();
|
2018-08-13 22:30:26 +00:00
|
|
|
eeprom_file_open = false;
|
2017-06-17 21:19:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-14 06:19:34 +00:00
|
|
|
// This extra chit-chat goes away soon, but is helpful for now
|
|
|
|
// to see errors that are happening in read_data / write_data
|
|
|
|
static void debug_rw(const bool write, int &pos, const uint8_t *value, const size_t size, const FRESULT s, const size_t total=0) {
|
2018-10-01 04:44:33 +00:00
|
|
|
PGM_P const rw_str = write ? PSTR("write") : PSTR("read");
|
2018-08-14 06:19:34 +00:00
|
|
|
SERIAL_PROTOCOLCHAR(' ');
|
2018-08-14 22:54:12 +00:00
|
|
|
serialprintPGM(rw_str);
|
2018-08-14 06:19:34 +00:00
|
|
|
SERIAL_PROTOCOLPAIR("_data(", pos);
|
|
|
|
SERIAL_PROTOCOLPAIR(",", (int)value);
|
|
|
|
SERIAL_PROTOCOLPAIR(",", (int)size);
|
|
|
|
SERIAL_PROTOCOLLNPGM(", ...)");
|
|
|
|
if (total) {
|
|
|
|
SERIAL_PROTOCOLPGM(" f_");
|
2018-08-14 22:54:12 +00:00
|
|
|
serialprintPGM(rw_str);
|
2018-08-14 06:19:34 +00:00
|
|
|
SERIAL_PROTOCOLPAIR("()=", (int)s);
|
|
|
|
SERIAL_PROTOCOLPAIR("\n size=", size);
|
|
|
|
SERIAL_PROTOCOLPGM("\n bytes_");
|
2018-08-14 22:54:12 +00:00
|
|
|
serialprintPGM(write ? PSTR("written=") : PSTR("read="));
|
2018-08-14 06:19:34 +00:00
|
|
|
SERIAL_PROTOCOLLN(total);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
SERIAL_PROTOCOLLNPAIR(" f_lseek()=", (int)s);
|
|
|
|
}
|
|
|
|
|
|
|
|
// File function return codes for type FRESULT. This goes away soon, but
|
|
|
|
// is helpful right now to see any errors in read_data and write_data.
|
2017-10-18 19:00:29 +00:00
|
|
|
//
|
2017-10-24 22:55:23 +00:00
|
|
|
// typedef enum {
|
|
|
|
// FR_OK = 0, /* (0) Succeeded */
|
|
|
|
// FR_DISK_ERR, /* (1) A hard error occurred in the low level disk I/O layer */
|
|
|
|
// FR_INT_ERR, /* (2) Assertion failed */
|
|
|
|
// FR_NOT_READY, /* (3) The physical drive cannot work */
|
|
|
|
// FR_NO_FILE, /* (4) Could not find the file */
|
|
|
|
// FR_NO_PATH, /* (5) Could not find the path */
|
|
|
|
// FR_INVALID_NAME, /* (6) The path name format is invalid */
|
|
|
|
// FR_DENIED, /* (7) Access denied due to prohibited access or directory full */
|
|
|
|
// FR_EXIST, /* (8) Access denied due to prohibited access */
|
|
|
|
// FR_INVALID_OBJECT, /* (9) The file/directory object is invalid */
|
|
|
|
// FR_WRITE_PROTECTED, /* (10) The physical drive is write protected */
|
|
|
|
// FR_INVALID_DRIVE, /* (11) The logical drive number is invalid */
|
|
|
|
// FR_NOT_ENABLED, /* (12) The volume has no work area */
|
|
|
|
// FR_NO_FILESYSTEM, /* (13) There is no valid FAT volume */
|
|
|
|
// FR_MKFS_ABORTED, /* (14) The f_mkfs() aborted due to any problem */
|
|
|
|
// FR_TIMEOUT, /* (15) Could not get a grant to access the volume within defined period */
|
|
|
|
// FR_LOCKED, /* (16) The operation is rejected according to the file sharing policy */
|
|
|
|
// FR_NOT_ENOUGH_CORE, /* (17) LFN working buffer could not be allocated */
|
|
|
|
// FR_TOO_MANY_OPEN_FILES, /* (18) Number of open files > FF_FS_LOCK */
|
|
|
|
// FR_INVALID_PARAMETER /* (19) Given parameter is invalid */
|
|
|
|
// } FRESULT;
|
2017-10-18 19:00:29 +00:00
|
|
|
|
2018-08-14 01:13:59 +00:00
|
|
|
bool PersistentStore::write_data(int &pos, const uint8_t *value, const size_t size, uint16_t *crc) {
|
|
|
|
if (!eeprom_file_open) return true;
|
2017-10-18 19:00:29 +00:00
|
|
|
FRESULT s;
|
2017-10-26 18:37:26 +00:00
|
|
|
UINT bytes_written = 0;
|
2017-10-24 22:55:23 +00:00
|
|
|
|
2017-10-18 19:00:29 +00:00
|
|
|
s = f_lseek(&eeprom_file, pos);
|
2017-10-24 22:55:23 +00:00
|
|
|
if (s) {
|
2018-08-14 06:19:34 +00:00
|
|
|
debug_rw(true, pos, value, size, s);
|
|
|
|
return s;
|
2017-10-18 19:00:29 +00:00
|
|
|
}
|
2017-10-24 22:55:23 +00:00
|
|
|
|
2018-08-14 01:13:59 +00:00
|
|
|
s = f_write(&eeprom_file, (void*)value, size, &bytes_written);
|
2017-10-24 22:55:23 +00:00
|
|
|
if (s) {
|
2018-08-14 06:19:34 +00:00
|
|
|
debug_rw(true, pos, value, size, s, bytes_written);
|
|
|
|
return s;
|
2017-10-18 19:00:29 +00:00
|
|
|
}
|
2017-06-17 21:19:42 +00:00
|
|
|
crc16(crc, value, size);
|
2018-08-14 06:19:34 +00:00
|
|
|
pos += size;
|
|
|
|
return bytes_written != size; // return true for any error
|
2017-06-17 21:19:42 +00:00
|
|
|
}
|
|
|
|
|
2018-08-14 01:13:59 +00:00
|
|
|
bool PersistentStore::read_data(int &pos, uint8_t* value, const size_t size, uint16_t *crc, const bool writing/*=true*/) {
|
|
|
|
if (!eeprom_file_open) return true;
|
2017-10-26 18:37:26 +00:00
|
|
|
UINT bytes_read = 0;
|
2017-10-18 19:00:29 +00:00
|
|
|
FRESULT s;
|
|
|
|
s = f_lseek(&eeprom_file, pos);
|
2018-08-14 01:13:59 +00:00
|
|
|
|
2018-03-10 09:02:53 +00:00
|
|
|
if (s) {
|
2018-08-14 06:19:34 +00:00
|
|
|
debug_rw(false, pos, value, size, s);
|
|
|
|
return true;
|
2017-10-18 19:00:29 +00:00
|
|
|
}
|
2018-08-14 01:13:59 +00:00
|
|
|
|
2018-01-05 01:51:18 +00:00
|
|
|
if (writing) {
|
2018-08-14 01:13:59 +00:00
|
|
|
s = f_read(&eeprom_file, (void*)value, size, &bytes_read);
|
2018-01-05 01:51:18 +00:00
|
|
|
crc16(crc, value, size);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
uint8_t temp[size];
|
2018-08-14 01:13:59 +00:00
|
|
|
s = f_read(&eeprom_file, (void*)temp, size, &bytes_read);
|
2018-01-05 01:51:18 +00:00
|
|
|
crc16(crc, temp, size);
|
|
|
|
}
|
2018-08-14 01:13:59 +00:00
|
|
|
|
2017-10-24 22:55:23 +00:00
|
|
|
if (s) {
|
2018-08-14 06:19:34 +00:00
|
|
|
debug_rw(false, pos, value, size, s, bytes_read);
|
|
|
|
return true;
|
2017-10-18 19:00:29 +00:00
|
|
|
}
|
2018-08-14 01:13:59 +00:00
|
|
|
|
2018-08-14 06:19:34 +00:00
|
|
|
pos += size;
|
2017-10-18 19:00:29 +00:00
|
|
|
return bytes_read != size; // return true for any error
|
2017-06-17 21:19:42 +00:00
|
|
|
}
|
|
|
|
|
2018-08-14 06:04:11 +00:00
|
|
|
size_t PersistentStore::capacity() { return 4096; } // 4KiB of Emulated EEPROM
|
2017-06-17 21:19:42 +00:00
|
|
|
|
2018-08-14 06:19:34 +00:00
|
|
|
#endif // !FLASH_EEPROM
|
2017-06-17 21:19:42 +00:00
|
|
|
#endif // EEPROM_SETTINGS
|
2017-09-06 11:28:32 +00:00
|
|
|
#endif // TARGET_LPC1768
|