|
@@ -3,6 +3,7 @@
|
|
|
#include <stdio.h>
|
|
|
#include <stdarg.h>
|
|
|
#include <serial.h>
|
|
|
+#include <uucode.h>
|
|
|
#include <lpc.h>
|
|
|
|
|
|
const struct lpc_part lpc_parts[] = {
|
|
@@ -36,6 +37,7 @@ const struct lpc_part lpc_parts[] = {
|
|
|
const struct sprog_family lpc_family = {
|
|
|
.setup = (void*(*)(struct serial_device*)) lpc_setup,
|
|
|
.init = (void(*)(void*)) lpc_init,
|
|
|
+ .exec = (void(*)(void*, const struct sprog_data*)) lpc_exec,
|
|
|
.close = (void(*)(void*)) lpc_close
|
|
|
};
|
|
|
|
|
@@ -43,8 +45,13 @@ const struct sprog_family lpc_family = {
|
|
|
|
|
|
void lpc_ispmode(struct lpc_device *dev, int state);
|
|
|
void lpc_reset(struct lpc_device *dev);
|
|
|
-int lpc_command(char *text, ...);
|
|
|
+void lpc_vprintf(const char *text, va_list l);
|
|
|
+void lpc_printf(const char *text, ...);
|
|
|
+int lpc_getline(char *buf);
|
|
|
+int lpc_command(const char *text, ...);
|
|
|
int lpc_read_partid(struct lpc_device *dev);
|
|
|
+void lpc_write_ram(struct lpc_device *dev, const struct sprog_data *d, unsigned int addr);
|
|
|
+
|
|
|
|
|
|
struct lpc_device *lpc_setup(struct serial_device *port) {
|
|
|
struct lpc_device *dev;
|
|
@@ -60,58 +67,125 @@ void lpc_init(struct lpc_device *dev) {
|
|
|
char buf[4096];
|
|
|
printf("?");
|
|
|
fflush(stdout);
|
|
|
- if(sprog_waitdata(500)==0) {
|
|
|
- printf("\r\n");
|
|
|
- fflush(stdout);
|
|
|
- fgets(buf, sizeof(buf), stdin);
|
|
|
- if(strcmp(buf, "?\r\n")==0)
|
|
|
- sprog_error("The device appears to be already synchronized\n");
|
|
|
- fgets(buf, sizeof(buf), stdin); /* deny invalid command reply */
|
|
|
- } else {
|
|
|
- fgets(buf, sizeof(buf), stdin);
|
|
|
+ if(lpc_getline(buf)) {
|
|
|
if(strcmp(buf, "Synchronized\r\n")==0)
|
|
|
sprog_error("Synchronization successful\n");
|
|
|
- printf("Synchronized\r\n");
|
|
|
- fflush(stdout);
|
|
|
- fgets(buf, sizeof(buf), stdin); /* deny echoed line */
|
|
|
- fgets(buf, sizeof(buf), stdin);
|
|
|
+ lpc_printf("Synchronized\r\n");
|
|
|
+ lpc_getline(buf);
|
|
|
if(strcmp(buf, "OK\r\n")!=0)
|
|
|
sprog_error("Expected OK, received '%s'\n", buf);
|
|
|
sprog_error("Sending clock frequency\n");
|
|
|
- printf("12000\r\n");
|
|
|
- fflush(stdout);
|
|
|
- fgets(buf, sizeof(buf), stdin); /* deny echoed line */
|
|
|
- fgets(buf, sizeof(buf), stdin);
|
|
|
+ lpc_printf("12000\r\n");
|
|
|
+ lpc_getline(buf);
|
|
|
if(strcmp(buf, "OK\r\n")!=0)
|
|
|
sprog_error("Expected OK, received '%s'\n", buf);
|
|
|
+ } else {
|
|
|
+ printf("\r\n");
|
|
|
+ if(lpc_getline(buf))
|
|
|
+ if(strcmp(buf, "?\r\n")==0)
|
|
|
+ sprog_error("The device appears to be already synchronized\n");
|
|
|
+ lpc_getline(buf); /* deny invalid command reply */
|
|
|
}
|
|
|
sprog_error("Reading part ID\n");
|
|
|
if(lpc_read_partid(dev)==0)
|
|
|
sprog_error("Found device: %s, %dkB Flash, %dkB RAM\n", dev->part->name, dev->part->flash, dev->part->ram);
|
|
|
}
|
|
|
|
|
|
-int lpc_command(char *text, ...) {
|
|
|
+void lpc_exec(struct lpc_device *dev, const struct sprog_data *d) {
|
|
|
+ lpc_write_ram(dev, d, 0x10000400);
|
|
|
+ lpc_command("U 23130\r\n");
|
|
|
+ sprog_error("Executing code... ");
|
|
|
+ if(lpc_command("G %u T\r\n", 0x10000400))
|
|
|
+ sprog_error("Error\n");
|
|
|
+ else
|
|
|
+ sprog_error("OK\n");
|
|
|
+}
|
|
|
+
|
|
|
+void lpc_write_ram(struct lpc_device *dev, const struct sprog_data *d, unsigned int addr) {
|
|
|
+ char reply_buf[4096];
|
|
|
+ int last_offset;
|
|
|
+ int last_i;
|
|
|
+ int offset;
|
|
|
+ int checksum;
|
|
|
+ char buf[64];
|
|
|
+ int i;
|
|
|
+
|
|
|
+ if(d->size & 3)
|
|
|
+ sprog_error("Invalid data size - should be aligned to 4\n");
|
|
|
+
|
|
|
+ lpc_command("W %u %u\r\n", addr, d->size);
|
|
|
+ sprog_error("Writing %d bytes\n", d->size);
|
|
|
+
|
|
|
+ last_offset = 0;
|
|
|
+ offset = 0;
|
|
|
+ sprog_progress((offset*100)/d->size);
|
|
|
+ checksum = 0;
|
|
|
+
|
|
|
+ for(i=0; uuencode_line(d, buf, &offset, &checksum); i++) {
|
|
|
+ if((i % 20)==19)
|
|
|
+ lpc_printf("%u\r\n", checksum);
|
|
|
+ sprog_progress((offset*100)/d->size);
|
|
|
+
|
|
|
+ if(lpc_getline(reply_buf)) {
|
|
|
+ if(strcmp(reply_buf, "OK\r\n")==0) {
|
|
|
+ last_offset = offset;
|
|
|
+ last_i = i;
|
|
|
+ } else {
|
|
|
+ offset = last_offset;
|
|
|
+ i = last_i;
|
|
|
+ }
|
|
|
+ } else
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ if(offset!=d->size)
|
|
|
+ sprog_error("Error while writing to RAM\n");
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+int lpc_getline(char *buf) {
|
|
|
+ if(sprog_waitdata(500)==0)
|
|
|
+ return 0;
|
|
|
+ fgets(buf, 4096, stdin);
|
|
|
+ return 1;
|
|
|
+}
|
|
|
+
|
|
|
+void lpc_vprintf(const char *text, va_list l) {
|
|
|
+ char buf[4096];
|
|
|
+ vprintf(text, l);
|
|
|
+ lpc_getline(buf);
|
|
|
+}
|
|
|
+
|
|
|
+void lpc_printf(const char *text, ...) {
|
|
|
+ va_list l;
|
|
|
+ va_start(l, text);
|
|
|
+ lpc_vprintf(text, l);
|
|
|
+ va_end(l);
|
|
|
+}
|
|
|
+
|
|
|
+int lpc_command(const char *text, ...) {
|
|
|
char buf[4096];
|
|
|
int res;
|
|
|
va_list l;
|
|
|
va_start(l, text);
|
|
|
- vprintf(text, l);
|
|
|
- fflush(stdout);
|
|
|
- fgets(buf, sizeof(buf), stdin); /* deny echoed line */
|
|
|
- if(scanf("%d", &res)<1)
|
|
|
- return -1;
|
|
|
+ lpc_vprintf(text, l);
|
|
|
va_end(l);
|
|
|
+ lpc_getline(buf);
|
|
|
+ if(sscanf(buf, "%d", &res)<1)
|
|
|
+ return -1;
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
int lpc_read_partid(struct lpc_device *dev) {
|
|
|
+ char buf[4096];
|
|
|
int i;
|
|
|
int res;
|
|
|
unsigned int partid;
|
|
|
res = lpc_command("J\r\n");
|
|
|
if(res!=0)
|
|
|
return res;
|
|
|
- scanf("%u", &partid);
|
|
|
+ lpc_getline(buf);
|
|
|
+ sscanf(buf, "%u", &partid);
|
|
|
for(i=0; lpc_parts[i].name; i++)
|
|
|
if(lpc_parts[i].part_id==partid)
|
|
|
break;
|