lpc.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. #include <stdlib.h>
  2. #include <string.h>
  3. #include <stdio.h>
  4. #include <stdarg.h>
  5. #include <serial.h>
  6. #include <uucode.h>
  7. #include <lpc.h>
  8. const struct lpc_part lpc_parts[] = {
  9. {"LPC1111/101", 0x041e502b, 2, 8},
  10. {"LPC1111/101 or 102", 0x2516d02b, 2, 8},
  11. {"LPC1111/201", 0x0416502b, 4, 8},
  12. {"LPC1111/201 or 202", 0x2516902b, 4, 8},
  13. {"LPC1112/101", 0x042d502b, 2, 16},
  14. {"LPC1112/101 or 102", 0x2524d02b, 2, 16},
  15. {"LPC1112/201", 0x0425502b, 4, 16},
  16. {"LPC1112/201 or 202", 0x2524902b, 4, 16},
  17. {"LPC1113/201", 0x0434502b, 4, 24},
  18. {"LPC1113/201 or 202", 0x2532902b, 4, 24},
  19. {"LPC1113/301", 0x0434102b, 8, 24},
  20. {"LPC1113/301 or 302", 0x2532102b, 8, 24},
  21. {"LPC1114/201", 0x0444502b, 4, 32},
  22. {"LPC1114/201 or 202", 0x2540902b, 4, 32},
  23. {"LPC1114/301", 0x0444102b, 8, 32},
  24. {"LPC1114/301 or 302", 0x2540102b, 8, 32},
  25. {"LPC11C12/301", 0x1421102b, 8, 16},
  26. {"LPC11C14/301", 0x1440102b, 8, 32},
  27. {"LPC11C22/301", 0x1431102b, 8, 16},
  28. {"LPC11C24/301", 0x1430102b, 8, 32},
  29. {NULL, 0, 0, 0}
  30. };
  31. const struct sprog_family lpc_family = {
  32. .setup = (void*(*)(struct serial_device*)) lpc_setup,
  33. .init = (void(*)(void*)) lpc_init,
  34. .exec = (void(*)(void*, const struct sprog_data*)) lpc_exec,
  35. .write = (void(*)(void*, const struct sprog_data*)) lpc_write,
  36. .close = (void(*)(void*)) lpc_close
  37. };
  38. void lpc_ispmode(struct lpc_device *dev, int state);
  39. void lpc_reset(struct lpc_device *dev, int isp);
  40. int lpc_scanf(struct lpc_device *dev, const char *text, ...);
  41. void lpc_vprintf(struct lpc_device *dev, const char *text, va_list l);
  42. void lpc_printf(struct lpc_device *dev, const char *text, ...);
  43. int lpc_getline(struct lpc_device *dev, char *buf);
  44. int lpc_command(struct lpc_device *dev, const char *text, ...);
  45. int lpc_await_reply(struct lpc_device *dev, ...);
  46. int lpc_read_partid(struct lpc_device *dev);
  47. void lpc_write_ram(struct lpc_device *dev, const struct sprog_data *d, unsigned int addr);
  48. struct lpc_device *lpc_setup(struct serial_device *port) {
  49. struct lpc_device *dev;
  50. dev = malloc(sizeof(struct lpc_device));
  51. dev->port = port;
  52. dev->part = NULL;
  53. lpc_reset(dev, 1);
  54. return dev;
  55. }
  56. void lpc_init(struct lpc_device *dev) {
  57. char buf[4096];
  58. serial_write(dev->port, "?");
  59. if(lpc_await_reply(dev, "Synchronized", NULL)==1) {
  60. sprog_info("Synchronization successful\n");
  61. lpc_printf(dev, "Synchronized\r\n");
  62. if(lpc_await_reply(dev, "OK", NULL)!=1)
  63. sprog_error("Expected OK, received '%s'\n", buf);
  64. lpc_printf(dev, "12000\r\n");
  65. if(lpc_await_reply(dev, "OK", NULL)!=1)
  66. sprog_error("Expected OK, received '%s'\n", buf);
  67. } else {
  68. serial_write(dev->port, "\r\n");
  69. if(lpc_await_reply(dev, "?", NULL)==1)
  70. sprog_info("The device appears to be already synchronized\n");
  71. else
  72. sprog_error("Invalid device response\n");
  73. lpc_getline(dev, buf); /* receive invalid command reply */
  74. }
  75. if(lpc_read_partid(dev)==0)
  76. sprog_info("Found device: %s, %dkB Flash, %dkB RAM\n", dev->part->name, dev->part->flash, dev->part->ram);
  77. }
  78. void lpc_write(struct lpc_device *dev, const struct sprog_data *d) {
  79. static const int chunk_sizes[] = {256, 512, 1024, 4096, 0};
  80. struct sprog_data chunk;
  81. int i;
  82. int offset;
  83. int chunk_size;
  84. int data_size;
  85. offset = 0;
  86. chunk.data = NULL;
  87. i = dev->part->flash/4; /* number of sectors = Flash size / 4kB */
  88. lpc_command(dev, "P 0 %d\r\n", i);
  89. sprog_info("Erasing Flash memory... ");
  90. if(lpc_command(dev, "E 0 %d\r\n", i))
  91. sprog_info("Error\n");
  92. else
  93. sprog_info("OK\n");
  94. i = d->size/4096;
  95. lpc_command(dev, "P 0 %d\r\n", i); /* prepare sectors for write */
  96. while(d->size-offset>0) {
  97. chunk_size = d->size - offset;
  98. for(i=0; chunk_sizes[i]; i++) {
  99. if(chunk_sizes[i]>=chunk_size)
  100. break;
  101. if(chunk_sizes[i]+1024 > dev->part->ram) {
  102. i--;
  103. break;
  104. }
  105. }
  106. chunk_size = chunk_sizes[i];
  107. if(chunk_size==0) chunk_size = chunk_sizes[i-1];
  108. sprog_alloc_data(&chunk, chunk_size);
  109. data_size = chunk_size;
  110. if(data_size > d->size-offset)
  111. data_size = d->size - offset;
  112. for(i=0; i<data_size; i++)
  113. chunk.data[i] = d->data[offset+i];
  114. for(i=data_size; i<chunk_size; i++)
  115. chunk.data[i] = 0;
  116. chunk.size = chunk_size;
  117. lpc_write_ram(dev, &chunk, 0x10000400);
  118. sprog_info("Copying to Flash...\n");
  119. if(lpc_command(dev, "C %d %u %d\r\n", offset, 0x10000400, chunk_size))
  120. sprog_error("Error while copying to flash\n");
  121. else
  122. sprog_info("Done!\n");
  123. offset += data_size;
  124. }
  125. }
  126. void lpc_exec(struct lpc_device *dev, const struct sprog_data *d) {
  127. lpc_write_ram(dev, d, 0x10000400);
  128. lpc_command(dev, "U 23130\r\n");
  129. sprog_info("Executing code... ");
  130. if(lpc_command(dev, "G %u T\r\n", 0x10000400))
  131. sprog_info("Error\n");
  132. else
  133. sprog_info("OK\n");
  134. }
  135. void lpc_write_ram(struct lpc_device *dev, const struct sprog_data *d, unsigned int addr) {
  136. int last_offset;
  137. int last_i;
  138. int offset;
  139. int checksum;
  140. char buf[64];
  141. int i;
  142. int j;
  143. if(d->size & 3)
  144. sprog_error("Invalid data size - should be aligned to 4\n");
  145. lpc_command(dev, "W %u %u\r\n", addr, d->size);
  146. sprog_info("Writing %d bytes\n", d->size);
  147. last_i = 0;
  148. last_offset = 0;
  149. offset = 0;
  150. sprog_progress(offset, d->size);
  151. checksum = 0;
  152. for(i=0; (j = uuencode_line(d, buf, &offset, &checksum)); i++) {
  153. lpc_printf(dev, "%s\r\n", buf);
  154. if(j==2 || (i % 20)==19) {
  155. lpc_printf(dev, "%u\r\n", checksum);
  156. checksum = 0;
  157. switch(lpc_await_reply(dev, "OK", "RESEND", NULL)) {
  158. case 1:
  159. last_offset = offset;
  160. last_i = i;
  161. break;
  162. case 2:
  163. default:
  164. offset = last_offset;
  165. i = last_i;
  166. }
  167. }
  168. sprog_progress(offset, d->size);
  169. }
  170. sprog_info("\n");
  171. }
  172. int lpc_await_reply(struct lpc_device *dev, ...) {
  173. char buf[4096];
  174. int i;
  175. const char *t;
  176. va_list l;
  177. va_start(l, dev);
  178. if(!lpc_getline(dev, buf))
  179. return 0;
  180. for(i=0; buf[i]; i++) {
  181. if(buf[i]=='\n') {
  182. buf[i] = 0;
  183. if(i>0) {
  184. if(buf[i-1]=='\r')
  185. buf[i-1] = 0;
  186. }
  187. break;
  188. }
  189. }
  190. for(i=0; (t = va_arg(l, const char*)); i++) {
  191. if(strcmp(buf, t)==0)
  192. return i+1;
  193. }
  194. return -1;
  195. }
  196. int lpc_getline(struct lpc_device *dev, char *buf) {
  197. if(sprog_waitdata(dev->port, 5000)==0)
  198. return 0;
  199. fgets(buf, 4096, dev->port->f);
  200. return 1;
  201. }
  202. int lpc_scanf(struct lpc_device *dev, const char *text, ...) {
  203. int r;
  204. char buf[4096];
  205. va_list l;
  206. va_start(l, text);
  207. if(!lpc_getline(dev, buf))
  208. return 0;
  209. r = vsscanf(buf, text, l);
  210. va_end(l);
  211. return r;
  212. }
  213. void lpc_vprintf(struct lpc_device *dev, const char *text, va_list l) {
  214. char buf[4096];
  215. vsprintf(buf, text, l);
  216. serial_write(dev->port, buf);
  217. lpc_getline(dev, buf);
  218. }
  219. void lpc_printf(struct lpc_device *dev, const char *text, ...) {
  220. va_list l;
  221. va_start(l, text);
  222. lpc_vprintf(dev, text, l);
  223. va_end(l);
  224. }
  225. int lpc_command(struct lpc_device *dev, const char *text, ...) {
  226. int res;
  227. va_list l;
  228. va_start(l, text);
  229. lpc_vprintf(dev, text, l);
  230. va_end(l);
  231. if(lpc_scanf(dev, "%d", &res)<1)
  232. return -1;
  233. return res;
  234. }
  235. int lpc_read_partid(struct lpc_device *dev) {
  236. int i;
  237. int res;
  238. unsigned int partid;
  239. res = lpc_command(dev, "J\r\n");
  240. if(res!=0)
  241. return res;
  242. lpc_scanf(dev, "%u", &partid);
  243. for(i=0; lpc_parts[i].name; i++)
  244. if(lpc_parts[i].part_id==partid)
  245. break;
  246. if(lpc_parts[i].name)
  247. dev->part = &lpc_parts[i];
  248. else
  249. return -1;
  250. return 0;
  251. }
  252. void lpc_ispmode(struct lpc_device *dev, int state) {
  253. serial_setline(dev->port, SERIAL_DTR, state);
  254. }
  255. void lpc_reset(struct lpc_device *dev, int isp) {
  256. /* TODO: configure the control lines */
  257. serial_setline(dev->port, SERIAL_DTR, 1);
  258. if(isp)
  259. lpc_ispmode(dev, 1);
  260. sprog_sleep(50);
  261. serial_setline(dev->port, SERIAL_DTR, 0);
  262. if(isp) {
  263. sprog_sleep(50);
  264. lpc_ispmode(dev, 0);
  265. }
  266. }
  267. void lpc_close(struct lpc_device *dev) {
  268. serial_close(dev->port);
  269. free(dev);
  270. }