My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

M100.cpp 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #include "../../inc/MarlinConfig.h"
  23. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  24. #include "../gcode.h"
  25. #include "../queue.h"
  26. #include "../../libs/hex_print_routines.h"
  27. #include "../../Marlin.h" // for idle()
  28. /**
  29. * M100 Free Memory Watcher
  30. *
  31. * This code watches the free memory block between the bottom of the heap and the top of the stack.
  32. * This memory block is initialized and watched via the M100 command.
  33. *
  34. * M100 I Initializes the free memory block and prints vitals statistics about the area
  35. *
  36. * M100 F Identifies how much of the free memory block remains free and unused. It also
  37. * detects and reports any corruption within the free memory block that may have
  38. * happened due to errant firmware.
  39. *
  40. * M100 D Does a hex display of the free memory block along with a flag for any errant
  41. * data that does not match the expected value.
  42. *
  43. * M100 C x Corrupts x locations within the free memory block. This is useful to check the
  44. * correctness of the M100 F and M100 D commands.
  45. *
  46. * Also, there are two support functions that can be called from a developer's C code.
  47. *
  48. * uint16_t check_for_free_memory_corruption(PGM_P const ptr);
  49. * void M100_dump_routine(PGM_P const title, const char *start, const char *end);
  50. *
  51. * Initial version by Roxy-3D
  52. */
  53. #define M100_FREE_MEMORY_DUMPER // Enable for the `M100 D` Dump sub-command
  54. #define M100_FREE_MEMORY_CORRUPTOR // Enable for the `M100 C` Corrupt sub-command
  55. #define TEST_BYTE ((char) 0xE5)
  56. extern char* __brkval;
  57. extern size_t __heap_start, __heap_end, __flp;
  58. extern char __bss_end;
  59. //
  60. // Utility functions
  61. //
  62. #define END_OF_HEAP() (__brkval ? __brkval : &__bss_end)
  63. // Location of a variable on its stack frame. Returns a value above
  64. // the stack (once the function returns to the caller).
  65. char* top_of_stack() {
  66. char x;
  67. return &x + 1; // x is pulled on return;
  68. }
  69. // Count the number of test bytes at the specified location.
  70. inline int32_t count_test_bytes(const char * const ptr) {
  71. for (uint32_t i = 0; i < 32000; i++)
  72. if (char(ptr[i]) != TEST_BYTE)
  73. return i - 1;
  74. return -1;
  75. }
  76. //
  77. // M100 sub-commands
  78. //
  79. #if ENABLED(M100_FREE_MEMORY_DUMPER)
  80. /**
  81. * M100 D
  82. * Dump the free memory block from __brkval to the stack pointer.
  83. * malloc() eats memory from the start of the block and the stack grows
  84. * up from the bottom of the block. Solid test bytes indicate nothing has
  85. * used that memory yet. There should not be anything but test bytes within
  86. * the block. If so, it may indicate memory corruption due to a bad pointer.
  87. * Unexpected bytes are flagged in the right column.
  88. */
  89. inline void dump_free_memory(const char *ptr, const char *sp) {
  90. //
  91. // Start and end the dump on a nice 16 byte boundary
  92. // (even though the values are not 16-byte aligned).
  93. //
  94. ptr = (char*)((ptr_int_t)((uint32_t)ptr & 0xFFFFFFF0)); // Align to 16-byte boundary
  95. sp = (char*)((ptr_int_t)((uint32_t)sp | 0x0000000F)); // Align sp to the 15th byte (at or above sp)
  96. // Dump command main loop
  97. while (ptr < sp) {
  98. print_hex_address(ptr); // Print the address
  99. SERIAL_CHAR(':');
  100. for (uint8_t i = 0; i < 16; i++) { // and 16 data bytes
  101. if (i == 8) SERIAL_CHAR('-');
  102. print_hex_byte(ptr[i]);
  103. SERIAL_CHAR(' ');
  104. }
  105. serial_delay(25);
  106. SERIAL_CHAR('|'); // Point out non test bytes
  107. for (uint8_t i = 0; i < 16; i++) {
  108. char ccc = (char)ptr[i]; // cast to char before automatically casting to char on assignment, in case the compiler is broken
  109. if (&ptr[i] >= (const char*)command_queue && &ptr[i] < (const char*)(command_queue + sizeof(command_queue))) { // Print out ASCII in the command buffer area
  110. if (!WITHIN(ccc, ' ', 0x7E)) ccc = ' ';
  111. }
  112. else { // If not in the command buffer area, flag bytes that don't match the test byte
  113. ccc = (ccc == TEST_BYTE) ? ' ' : '?';
  114. }
  115. SERIAL_CHAR(ccc);
  116. }
  117. SERIAL_EOL();
  118. ptr += 16;
  119. serial_delay(25);
  120. idle();
  121. }
  122. }
  123. void M100_dump_routine(PGM_P const title, const char *start, const char *end) {
  124. serialprintPGM(title);
  125. SERIAL_EOL();
  126. //
  127. // Round the start and end locations to produce full lines of output
  128. //
  129. start = (char*)((ptr_int_t)((uint32_t)start & 0xFFFFFFF0)); // Align to 16-byte boundary
  130. end = (char*)((ptr_int_t)((uint32_t)end | 0x0000000F)); // Align sp to the 15th byte (at or above sp)
  131. dump_free_memory(start, end);
  132. }
  133. #endif // M100_FREE_MEMORY_DUMPER
  134. inline int check_for_free_memory_corruption(PGM_P const title) {
  135. serialprintPGM(title);
  136. char *ptr = END_OF_HEAP(), *sp = top_of_stack();
  137. int n = sp - ptr;
  138. SERIAL_ECHOPAIR("\nfmc() n=", n);
  139. SERIAL_ECHOPAIR("\n&__brkval: ", hex_address(&__brkval));
  140. SERIAL_ECHOPAIR("=", hex_address(__brkval));
  141. SERIAL_ECHOPAIR("\n__bss_end: ", hex_address(&__bss_end));
  142. SERIAL_ECHOPAIR(" sp=", hex_address(sp));
  143. if (sp < ptr) {
  144. SERIAL_ECHOPGM(" sp < Heap ");
  145. // SET_INPUT_PULLUP(63); // if the developer has a switch wired up to their controller board
  146. // safe_delay(5); // this code can be enabled to pause the display as soon as the
  147. // while ( READ(63)) // malfunction is detected. It is currently defaulting to a switch
  148. // idle(); // being on pin-63 which is unassigend and available on most controller
  149. // safe_delay(20); // boards.
  150. // while ( !READ(63))
  151. // idle();
  152. serial_delay(20);
  153. #if ENABLED(M100_FREE_MEMORY_DUMPER)
  154. M100_dump_routine(PSTR(" Memory corruption detected with sp<Heap\n"), (char*)0x1B80, (char*)0x21FF);
  155. #endif
  156. }
  157. // Scan through the range looking for the biggest block of 0xE5's we can find
  158. int block_cnt = 0;
  159. for (int i = 0; i < n; i++) {
  160. if (ptr[i] == TEST_BYTE) {
  161. int32_t j = count_test_bytes(ptr + i);
  162. if (j > 8) {
  163. // SERIAL_ECHOPAIR("Found ", j);
  164. // SERIAL_ECHOLNPAIR(" bytes free at ", hex_address(ptr + i));
  165. i += j;
  166. block_cnt++;
  167. SERIAL_ECHOPAIR(" (", block_cnt);
  168. SERIAL_ECHOPAIR(") found=", j);
  169. SERIAL_ECHOPGM(" ");
  170. }
  171. }
  172. }
  173. SERIAL_ECHOPAIR(" block_found=", block_cnt);
  174. if (block_cnt != 1 || __brkval != NULL)
  175. SERIAL_ECHOLNPGM("\nMemory Corruption detected in free memory area.");
  176. if (block_cnt == 0) // Make sure the special case of no free blocks shows up as an
  177. block_cnt = -1; // error to the calling code!
  178. SERIAL_ECHOPGM(" return=");
  179. if (block_cnt == 1) {
  180. SERIAL_CHAR('0'); // if the block_cnt is 1, nothing has broken up the free memory
  181. SERIAL_EOL(); // area and it is appropriate to say 'no corruption'.
  182. return 0;
  183. }
  184. SERIAL_ECHOLNPGM("true");
  185. return block_cnt;
  186. }
  187. /**
  188. * M100 F
  189. * Return the number of free bytes in the memory pool,
  190. * with other vital statistics defining the pool.
  191. */
  192. inline void free_memory_pool_report(char * const ptr, const int32_t size) {
  193. int32_t max_cnt = -1, block_cnt = 0;
  194. char *max_addr = NULL;
  195. // Find the longest block of test bytes in the buffer
  196. for (int32_t i = 0; i < size; i++) {
  197. char *addr = ptr + i;
  198. if (*addr == TEST_BYTE) {
  199. const int32_t j = count_test_bytes(addr);
  200. if (j > 8) {
  201. SERIAL_ECHOPAIR("Found ", j);
  202. SERIAL_ECHOLNPAIR(" bytes free at ", hex_address(addr));
  203. if (j > max_cnt) {
  204. max_cnt = j;
  205. max_addr = addr;
  206. }
  207. i += j;
  208. block_cnt++;
  209. }
  210. }
  211. }
  212. if (block_cnt > 1) {
  213. SERIAL_ECHOLNPGM("\nMemory Corruption detected in free memory area.");
  214. SERIAL_ECHOPAIR("\nLargest free block is ", max_cnt);
  215. SERIAL_ECHOLNPAIR(" bytes at ", hex_address(max_addr));
  216. }
  217. SERIAL_ECHOLNPAIR("check_for_free_memory_corruption() = ", check_for_free_memory_corruption(PSTR("M100 F ")));
  218. }
  219. #if ENABLED(M100_FREE_MEMORY_CORRUPTOR)
  220. /**
  221. * M100 C<num>
  222. * Corrupt <num> locations in the free memory pool and report the corrupt addresses.
  223. * This is useful to check the correctness of the M100 D and the M100 F commands.
  224. */
  225. inline void corrupt_free_memory(char *ptr, const uint32_t size) {
  226. ptr += 8;
  227. const uint32_t near_top = top_of_stack() - ptr - 250, // -250 to avoid interrupt activity that's altered the stack.
  228. j = near_top / (size + 1);
  229. SERIAL_ECHOLNPGM("Corrupting free memory block.\n");
  230. for (uint32_t i = 1; i <= size; i++) {
  231. char * const addr = ptr + i * j;
  232. *addr = i;
  233. SERIAL_ECHOPAIR("\nCorrupting address: ", hex_address(addr));
  234. }
  235. SERIAL_EOL();
  236. }
  237. #endif // M100_FREE_MEMORY_CORRUPTOR
  238. /**
  239. * M100 I
  240. * Init memory for the M100 tests. (Automatically applied on the first M100.)
  241. */
  242. inline void init_free_memory(char *ptr, int32_t size) {
  243. SERIAL_ECHOLNPGM("Initializing free memory block.\n\n");
  244. size -= 250; // -250 to avoid interrupt activity that's altered the stack.
  245. if (size < 0) {
  246. SERIAL_ECHOLNPGM("Unable to initialize.\n");
  247. return;
  248. }
  249. ptr += 8; // move a few bytes away from the heap just because we don't want
  250. // to be altering memory that close to it.
  251. memset(ptr, TEST_BYTE, size);
  252. SERIAL_ECHO(size);
  253. SERIAL_ECHOLNPGM(" bytes of memory initialized.\n");
  254. for (int32_t i = 0; i < size; i++) {
  255. if (ptr[i] != TEST_BYTE) {
  256. SERIAL_ECHOPAIR("? address : ", hex_address(ptr + i));
  257. SERIAL_ECHOLNPAIR("=", hex_byte(ptr[i]));
  258. SERIAL_EOL();
  259. }
  260. }
  261. }
  262. /**
  263. * M100: Free Memory Check
  264. */
  265. void GcodeSuite::M100() {
  266. SERIAL_ECHOPAIR("\n__brkval : ", hex_address(__brkval));
  267. SERIAL_ECHOPAIR("\n__bss_end : ", hex_address(&__bss_end));
  268. char *ptr = END_OF_HEAP(), *sp = top_of_stack();
  269. SERIAL_ECHOPAIR("\nstart of free space : ", hex_address(ptr));
  270. SERIAL_ECHOLNPAIR("\nStack Pointer : ", hex_address(sp));
  271. // Always init on the first invocation of M100
  272. static bool m100_not_initialized = true;
  273. if (m100_not_initialized || parser.seen('I')) {
  274. m100_not_initialized = false;
  275. init_free_memory(ptr, sp - ptr);
  276. }
  277. #if ENABLED(M100_FREE_MEMORY_DUMPER)
  278. if (parser.seen('D'))
  279. return dump_free_memory(ptr, sp);
  280. #endif
  281. if (parser.seen('F'))
  282. return free_memory_pool_report(ptr, sp - ptr);
  283. #if ENABLED(M100_FREE_MEMORY_CORRUPTOR)
  284. if (parser.seen('C'))
  285. return corrupt_free_memory(ptr, parser.value_int());
  286. #endif
  287. }
  288. #endif // M100_FREE_MEMORY_WATCHER