flash_sim_acts.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <device.h>
  7. #include <drivers/flash.h>
  8. #include <init.h>
  9. #include <kernel.h>
  10. #include <sys/util.h>
  11. #include <random/rand32.h>
  12. #include <stats/stats.h>
  13. #include <string.h>
  14. #ifdef CONFIG_ARCH_POSIX
  15. #include <unistd.h>
  16. #include <sys/types.h>
  17. #include <sys/stat.h>
  18. #include <sys/mman.h>
  19. #include <fcntl.h>
  20. #include <errno.h>
  21. #include "cmdline.h"
  22. #include "soc.h"
  23. #endif /* CONFIG_ARCH_POSIX */
  24. #include <board_cfg.h>
  25. #include <linker/linker-defs.h>
  26. #define FLASH_SIMULATOR_BASE_OFFSET 0x0
  27. #define FLASH_SIMULATOR_ERASE_UNIT 0x1000
  28. #define FLASH_SIMULATOR_PROG_UNIT 0x1
  29. #define FLASH_SIMULATOR_FLASH_SIZE CONFIG_SIM_FLASH_SIZE
  30. #define FLASH_SIMULATOR_ERASE_VALUE 0xff
  31. #define FLASH_SIMULATOR_PAGE_COUNT (FLASH_SIMULATOR_FLASH_SIZE / \
  32. FLASH_SIMULATOR_ERASE_UNIT)
  33. #if (FLASH_SIMULATOR_ERASE_UNIT % FLASH_SIMULATOR_PROG_UNIT)
  34. #error "Erase unit must be a multiple of program unit"
  35. #endif
  36. #define MOCK_FLASH(addr) (mock_flash + (addr) - FLASH_SIMULATOR_BASE_OFFSET)
  37. /* maximum number of pages that can be tracked by the stats module */
  38. #define STATS_PAGE_COUNT_THRESHOLD 256
  39. #define STATS_SECT_EC(N, _) STATS_SECT_ENTRY32(erase_cycles_unit##N)
  40. #define STATS_NAME_EC(N, _) STATS_NAME(flash_sim_stats, erase_cycles_unit##N)
  41. #define STATS_SECT_DIRTYR(N, _) STATS_SECT_ENTRY32(dirty_read_unit##N)
  42. #define STATS_NAME_DIRTYR(N, _) STATS_NAME(flash_sim_stats, dirty_read_unit##N)
  43. #ifdef CONFIG_FLASH_SIMULATOR_STATS
  44. /* increment a unit erase cycles counter */
  45. #define ERASE_CYCLES_INC(U) \
  46. do { \
  47. if (U < STATS_PAGE_COUNT_THRESHOLD) { \
  48. (*(&flash_sim_stats.erase_cycles_unit0 + (U)) += 1); \
  49. } \
  50. } while (0)
  51. #if (CONFIG_FLASH_SIMULATOR_STAT_PAGE_COUNT > STATS_PAGE_COUNT_THRESHOLD)
  52. /* Limitation above is caused by used UTIL_REPEAT */
  53. /* Using FLASH_SIMULATOR_FLASH_PAGE_COUNT allows to avoid terrible */
  54. /* error logg at the output and work with the stats module partially */
  55. #define FLASH_SIMULATOR_FLASH_PAGE_COUNT STATS_PAGE_COUNT_THRESHOLD
  56. #else
  57. #define FLASH_SIMULATOR_FLASH_PAGE_COUNT CONFIG_FLASH_SIMULATOR_STAT_PAGE_COUNT
  58. #endif
  59. /* simulator statistics */
  60. STATS_SECT_START(flash_sim_stats)
  61. STATS_SECT_ENTRY32(bytes_read) /* total bytes read */
  62. STATS_SECT_ENTRY32(bytes_written) /* total bytes written */
  63. STATS_SECT_ENTRY32(double_writes) /* num. of writes to non-erased units */
  64. STATS_SECT_ENTRY32(flash_read_calls) /* calls to flash_read() */
  65. STATS_SECT_ENTRY32(flash_read_time_us) /* time spent in flash_read() */
  66. STATS_SECT_ENTRY32(flash_write_calls) /* calls to flash_write() */
  67. STATS_SECT_ENTRY32(flash_write_time_us) /* time spent in flash_write() */
  68. STATS_SECT_ENTRY32(flash_erase_calls) /* calls to flash_erase() */
  69. STATS_SECT_ENTRY32(flash_erase_time_us) /* time spent in flash_erase() */
  70. /* -- per-unit statistics -- */
  71. /* erase cycle count for unit */
  72. UTIL_EVAL(UTIL_REPEAT(FLASH_SIMULATOR_FLASH_PAGE_COUNT, STATS_SECT_EC))
  73. /* number of read operations on worn out erase units */
  74. UTIL_EVAL(UTIL_REPEAT(FLASH_SIMULATOR_FLASH_PAGE_COUNT, STATS_SECT_DIRTYR))
  75. STATS_SECT_END;
  76. STATS_SECT_DECL(flash_sim_stats) flash_sim_stats;
  77. STATS_NAME_START(flash_sim_stats)
  78. STATS_NAME(flash_sim_stats, bytes_read)
  79. STATS_NAME(flash_sim_stats, bytes_written)
  80. STATS_NAME(flash_sim_stats, double_writes)
  81. STATS_NAME(flash_sim_stats, flash_read_calls)
  82. STATS_NAME(flash_sim_stats, flash_read_time_us)
  83. STATS_NAME(flash_sim_stats, flash_write_calls)
  84. STATS_NAME(flash_sim_stats, flash_write_time_us)
  85. STATS_NAME(flash_sim_stats, flash_erase_calls)
  86. STATS_NAME(flash_sim_stats, flash_erase_time_us)
  87. UTIL_EVAL(UTIL_REPEAT(FLASH_SIMULATOR_FLASH_PAGE_COUNT, STATS_NAME_EC))
  88. UTIL_EVAL(UTIL_REPEAT(FLASH_SIMULATOR_FLASH_PAGE_COUNT, STATS_NAME_DIRTYR))
  89. STATS_NAME_END(flash_sim_stats);
  90. /* simulator dynamic thresholds */
  91. STATS_SECT_START(flash_sim_thresholds)
  92. STATS_SECT_ENTRY32(max_write_calls)
  93. STATS_SECT_ENTRY32(max_erase_calls)
  94. STATS_SECT_ENTRY32(max_len)
  95. STATS_SECT_END;
  96. STATS_SECT_DECL(flash_sim_thresholds) flash_sim_thresholds;
  97. STATS_NAME_START(flash_sim_thresholds)
  98. STATS_NAME(flash_sim_thresholds, max_write_calls)
  99. STATS_NAME(flash_sim_thresholds, max_erase_calls)
  100. STATS_NAME(flash_sim_thresholds, max_len)
  101. STATS_NAME_END(flash_sim_thresholds);
  102. #define FLASH_SIM_STATS_INC(group__, var__) STATS_INC(group__, var__)
  103. #define FLASH_SIM_STATS_INCN(group__, var__, n__) STATS_INCN(group__, var__, n__)
  104. #define FLASH_SIM_STATS_INIT_AND_REG(group__, size__, name__) \
  105. STATS_INIT_AND_REG(group__, size__, name__)
  106. #else
  107. #define ERASE_CYCLES_INC(U) do {} while (0)
  108. #define FLASH_SIM_STATS_INC(group__, var__)
  109. #define FLASH_SIM_STATS_INCN(group__, var__, n__)
  110. #define FLASH_SIM_STATS_INIT_AND_REG(group__, size__, name__)
  111. #endif /* CONFIG_FLASH_SIMULATOR_STATS */
  112. #ifdef CONFIG_ARCH_POSIX
  113. static uint8_t *mock_flash;
  114. static int flash_fd = -1;
  115. static const char *flash_file_path;
  116. static const char default_flash_file_path[] = "flash.bin";
  117. #else
  118. static uint8_t mock_flash[FLASH_SIMULATOR_FLASH_SIZE] __in_section_unique(sram.noinit.actlog);
  119. #endif /* CONFIG_ARCH_POSIX */
  120. static const struct flash_driver_api flash_sim_api;
  121. static const struct flash_parameters flash_sim_parameters = {
  122. .write_block_size = 0x1000,
  123. .erase_value = FLASH_SIMULATOR_ERASE_VALUE
  124. };
  125. void print_buffer1(const uint8_t *addr, int width, int count, int linelen, unsigned long disp_addr);
  126. int mock_flash_checksum_get(void)
  127. {
  128. int i, checksum = 0;
  129. //print_buffer1(mock_flash, 4, 0x1000, 16, -1);
  130. uint32_t *pdata = (uint32_t *)mock_flash;
  131. for(i = 0; i < (FLASH_SIMULATOR_FLASH_SIZE / 4); i++){
  132. checksum += *pdata;
  133. pdata++;
  134. }
  135. return checksum;
  136. }
  137. static int flash_range_is_valid(const struct device *dev, uint64_t offset,
  138. uint64_t len)
  139. {
  140. ARG_UNUSED(dev);
  141. if ((offset + len > FLASH_SIMULATOR_FLASH_SIZE +
  142. FLASH_SIMULATOR_BASE_OFFSET) ||
  143. (offset < FLASH_SIMULATOR_BASE_OFFSET)) {
  144. return 0;
  145. }
  146. return 1;
  147. }
  148. static int flash_sim_read(const struct device *dev, const uint64_t offset,
  149. void *data,
  150. const uint64_t len)
  151. {
  152. ARG_UNUSED(dev);
  153. if (!flash_range_is_valid(dev, offset, len)) {
  154. return -EINVAL;
  155. }
  156. if (!IS_ENABLED(CONFIG_FLASH_SIMULATOR_UNALIGNED_READ)) {
  157. if ((offset % FLASH_SIMULATOR_PROG_UNIT) ||
  158. (len % FLASH_SIMULATOR_PROG_UNIT)) {
  159. return -EINVAL;
  160. }
  161. }
  162. FLASH_SIM_STATS_INC(flash_sim_stats, flash_read_calls);
  163. memcpy(data, MOCK_FLASH(offset), len);
  164. FLASH_SIM_STATS_INCN(flash_sim_stats, bytes_read, len);
  165. #ifdef CONFIG_FLASH_SIMULATOR_SIMULATE_TIMING
  166. k_busy_wait(CONFIG_FLASH_SIMULATOR_MIN_READ_TIME_US);
  167. FLASH_SIM_STATS_INCN(flash_sim_stats, flash_read_time_us,
  168. CONFIG_FLASH_SIMULATOR_MIN_READ_TIME_US);
  169. #endif
  170. return 0;
  171. }
  172. static int flash_sim_write(const struct device *dev, const uint64_t offset,
  173. const void *data, const uint64_t len)
  174. {
  175. uint8_t buf[FLASH_SIMULATOR_PROG_UNIT];
  176. ARG_UNUSED(dev);
  177. if (!flash_range_is_valid(dev, offset, len)) {
  178. return -EINVAL;
  179. }
  180. if ((offset % FLASH_SIMULATOR_PROG_UNIT) ||
  181. (len % FLASH_SIMULATOR_PROG_UNIT)) {
  182. return -EINVAL;
  183. }
  184. FLASH_SIM_STATS_INC(flash_sim_stats, flash_write_calls);
  185. /* check if any unit has been already programmed */
  186. memset(buf, FLASH_SIMULATOR_ERASE_VALUE, sizeof(buf));
  187. for (uint32_t i = 0; i < len; i += FLASH_SIMULATOR_PROG_UNIT) {
  188. if (memcmp(buf, MOCK_FLASH(offset + i), sizeof(buf))) {
  189. FLASH_SIM_STATS_INC(flash_sim_stats, double_writes);
  190. #if !CONFIG_FLASH_SIMULATOR_DOUBLE_WRITES
  191. return -EIO;
  192. #endif
  193. }
  194. }
  195. #ifdef CONFIG_FLASH_SIMULATOR_STATS
  196. bool data_part_ignored = false;
  197. if (flash_sim_thresholds.max_write_calls != 0) {
  198. if (flash_sim_stats.flash_write_calls >
  199. flash_sim_thresholds.max_write_calls) {
  200. return 0;
  201. } else if (flash_sim_stats.flash_write_calls ==
  202. flash_sim_thresholds.max_write_calls) {
  203. if (flash_sim_thresholds.max_len == 0) {
  204. return 0;
  205. }
  206. data_part_ignored = true;
  207. }
  208. }
  209. #endif
  210. for (uint32_t i = 0; i < len; i++) {
  211. #ifdef CONFIG_FLASH_SIMULATOR_STATS
  212. if (data_part_ignored) {
  213. if (i >= flash_sim_thresholds.max_len) {
  214. return 0;
  215. }
  216. }
  217. #endif /* CONFIG_FLASH_SIMULATOR_STATS */
  218. /* only pull bits to zero */
  219. #if FLASH_SIMULATOR_ERASE_VALUE == 0xFF
  220. *(MOCK_FLASH(offset + i)) &= *((uint8_t *)data + i);
  221. #else
  222. *(MOCK_FLASH(offset + i)) = *((uint8_t *)data + i);
  223. #endif
  224. }
  225. FLASH_SIM_STATS_INCN(flash_sim_stats, bytes_written, len);
  226. #ifdef CONFIG_FLASH_SIMULATOR_SIMULATE_TIMING
  227. /* wait before returning */
  228. k_busy_wait(CONFIG_FLASH_SIMULATOR_MIN_WRITE_TIME_US);
  229. FLASH_SIM_STATS_INCN(flash_sim_stats, flash_write_time_us,
  230. CONFIG_FLASH_SIMULATOR_MIN_WRITE_TIME_US);
  231. #endif
  232. return 0;
  233. }
  234. static void unit_erase(const uint32_t unit)
  235. {
  236. const off_t unit_addr = FLASH_SIMULATOR_BASE_OFFSET +
  237. (unit * FLASH_SIMULATOR_ERASE_UNIT);
  238. /* erase the memory unit by setting it to erase value */
  239. memset(MOCK_FLASH(unit_addr), FLASH_SIMULATOR_ERASE_VALUE,
  240. FLASH_SIMULATOR_ERASE_UNIT);
  241. }
  242. static int flash_sim_erase(const struct device *dev, const uint64_t offset,
  243. const uint64_t len)
  244. {
  245. ARG_UNUSED(dev);
  246. if (!flash_range_is_valid(dev, offset, len)) {
  247. return -EINVAL;
  248. }
  249. /* erase operation must be aligned to the erase unit boundary */
  250. if ((offset % FLASH_SIMULATOR_ERASE_UNIT) ||
  251. (len % FLASH_SIMULATOR_ERASE_UNIT)) {
  252. return -EINVAL;
  253. }
  254. FLASH_SIM_STATS_INC(flash_sim_stats, flash_erase_calls);
  255. #ifdef CONFIG_FLASH_SIMULATOR_STATS
  256. if ((flash_sim_thresholds.max_erase_calls != 0) &&
  257. (flash_sim_stats.flash_erase_calls >=
  258. flash_sim_thresholds.max_erase_calls)){
  259. return 0;
  260. }
  261. #endif
  262. /* the first unit to be erased */
  263. uint32_t unit_start = (offset - FLASH_SIMULATOR_BASE_OFFSET) /
  264. FLASH_SIMULATOR_ERASE_UNIT;
  265. /* erase as many units as necessary and increase their erase counter */
  266. for (uint32_t i = 0; i < len / FLASH_SIMULATOR_ERASE_UNIT; i++) {
  267. ERASE_CYCLES_INC(unit_start + i);
  268. unit_erase(unit_start + i);
  269. }
  270. #ifdef CONFIG_FLASH_SIMULATOR_SIMULATE_TIMING
  271. /* wait before returning */
  272. k_busy_wait(CONFIG_FLASH_SIMULATOR_MIN_ERASE_TIME_US);
  273. FLASH_SIM_STATS_INCN(flash_sim_stats, flash_erase_time_us,
  274. CONFIG_FLASH_SIMULATOR_MIN_ERASE_TIME_US);
  275. #endif
  276. return 0;
  277. }
  278. #ifdef CONFIG_FLASH_PAGE_LAYOUT
  279. static const struct flash_pages_layout flash_sim_pages_layout = {
  280. .pages_count = FLASH_SIMULATOR_PAGE_COUNT,
  281. .pages_size = FLASH_SIMULATOR_ERASE_UNIT,
  282. };
  283. static void flash_sim_page_layout(const struct device *dev,
  284. const struct flash_pages_layout **layout,
  285. size_t *layout_size)
  286. {
  287. *layout = &flash_sim_pages_layout;
  288. *layout_size = 1;
  289. }
  290. #endif
  291. static const struct flash_parameters *
  292. flash_sim_get_parameters(const struct device *dev)
  293. {
  294. ARG_UNUSED(dev);
  295. return &flash_sim_parameters;
  296. }
  297. static const struct flash_driver_api flash_sim_api = {
  298. .read = flash_sim_read,
  299. .write = flash_sim_write,
  300. .erase = flash_sim_erase,
  301. .get_parameters = flash_sim_get_parameters,
  302. #ifdef CONFIG_FLASH_PAGE_LAYOUT
  303. .page_layout = flash_sim_page_layout,
  304. #endif
  305. };
  306. #ifdef CONFIG_ARCH_POSIX
  307. static int flash_mock_init(const struct device *dev)
  308. {
  309. struct stat f_stat;
  310. int rc;
  311. if (flash_file_path == NULL) {
  312. flash_file_path = default_flash_file_path;
  313. }
  314. flash_fd = open(flash_file_path, O_RDWR | O_CREAT, (mode_t)0600);
  315. if (flash_fd == -1) {
  316. posix_print_warning("Failed to open flash device file "
  317. "%s: %s\n",
  318. flash_file_path, strerror(errno));
  319. return -EIO;
  320. }
  321. rc = fstat(flash_fd, &f_stat);
  322. if (rc) {
  323. posix_print_warning("Failed to get status of flash device file "
  324. "%s: %s\n",
  325. flash_file_path, strerror(errno));
  326. return -EIO;
  327. }
  328. if (ftruncate(flash_fd, FLASH_SIMULATOR_FLASH_SIZE) == -1) {
  329. posix_print_warning("Failed to resize flash device file "
  330. "%s: %s\n",
  331. flash_file_path, strerror(errno));
  332. return -EIO;
  333. }
  334. mock_flash = mmap(NULL, FLASH_SIMULATOR_FLASH_SIZE,
  335. PROT_WRITE | PROT_READ, MAP_SHARED, flash_fd, 0);
  336. if (mock_flash == MAP_FAILED) {
  337. posix_print_warning("Failed to mmap flash device file "
  338. "%s: %s\n",
  339. flash_file_path, strerror(errno));
  340. return -EIO;
  341. }
  342. if (f_stat.st_size == 0) {
  343. /* erase the memory unit by pulling all bits to one */
  344. (void)memset(mock_flash, FLASH_SIMULATOR_ERASE_VALUE,
  345. FLASH_SIMULATOR_FLASH_SIZE);
  346. }
  347. return 0;
  348. }
  349. #else
  350. static int flash_mock_init(const struct device *dev)
  351. {
  352. unsigned int val = 0;
  353. soc_pstore_get(SOC_PSTORE_TAG_SYS_PANIC,&val);
  354. printk("panic=%d, flash data checksum %x\n", val, mock_flash_checksum_get());
  355. if(!val){
  356. memset(mock_flash, FLASH_SIMULATOR_ERASE_VALUE, ARRAY_SIZE(mock_flash));
  357. }
  358. printk("flash init data checksum %x\n", mock_flash_checksum_get());
  359. return 0;
  360. }
  361. #endif /* CONFIG_ARCH_POSIX */
  362. static int flash_init(const struct device *dev)
  363. {
  364. FLASH_SIM_STATS_INIT_AND_REG(flash_sim_stats, STATS_SIZE_32, "flash_sim_stats");
  365. FLASH_SIM_STATS_INIT_AND_REG(flash_sim_thresholds, STATS_SIZE_32,
  366. "flash_sim_thresholds");
  367. return flash_mock_init(dev);
  368. }
  369. DEVICE_DEFINE(sim_flash_acts, CONFIG_SIM_FLASH_NAME, flash_init, NULL,
  370. NULL, NULL, PRE_KERNEL_2, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, &flash_sim_api);
  371. #ifdef CONFIG_ARCH_POSIX
  372. static void flash_native_posix_cleanup(void)
  373. {
  374. if ((mock_flash != MAP_FAILED) && (mock_flash != NULL)) {
  375. munmap(mock_flash, FLASH_SIMULATOR_FLASH_SIZE);
  376. }
  377. if (flash_fd != -1) {
  378. close(flash_fd);
  379. }
  380. }
  381. static void flash_native_posix_options(void)
  382. {
  383. static struct args_struct_t flash_options[] = {
  384. { .manual = false,
  385. .is_mandatory = false,
  386. .is_switch = false,
  387. .option = "flash",
  388. .name = "path",
  389. .type = 's',
  390. .dest = (void *)&flash_file_path,
  391. .call_when_found = NULL,
  392. .descript = "Path to binary file to be used as flash" },
  393. ARG_TABLE_ENDMARKER
  394. };
  395. native_add_command_line_opts(flash_options);
  396. }
  397. NATIVE_TASK(flash_native_posix_options, PRE_BOOT_1, 1);
  398. NATIVE_TASK(flash_native_posix_cleanup, ON_EXIT, 1);
  399. #endif /* CONFIG_ARCH_POSIX */
  400. /* Extension to generic flash driver API */
  401. void *z_impl_flash_simulator_get_memory(const struct device *dev,
  402. size_t *mock_size)
  403. {
  404. ARG_UNUSED(dev);
  405. *mock_size = FLASH_SIMULATOR_FLASH_SIZE;
  406. return mock_flash;
  407. }
  408. #ifdef CONFIG_USERSPACE
  409. #include <syscall_handler.h>
  410. void *z_vrfy_flash_simulator_get_memory(const struct device *dev,
  411. size_t *mock_size)
  412. {
  413. Z_OOPS(Z_SYSCALL_SPECIFIC_DRIVER(dev, K_OBJ_DRIVER_FLASH, &flash_sim_api));
  414. return z_impl_flash_simulator_get_memory(dev, mock_size);
  415. }
  416. #include <syscalls/flash_simulator_get_memory_mrsh.c>
  417. #endif /* CONFIG_USERSPACE */