1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-10-01 12:54:09 +03:00
ben-blinkenlights/lpc111x-isp/lpc111x.c

247 lines
4.5 KiB
C

/*
* lpc111x-isp/lpc111x.c - LPC111x/LPC11Cxx ISP programmer
*
* Written 2012 by Werner Almesberger
* Copyright 2012 Werner Almesberger
*
* 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 2 of the License, or
* (at your option) any later version.
*/
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <alloca.h>
#include <ubb/ubb.h>
#include <ubb/swuart.h>
#define TGT_nRESET UBB_CMD
#define TGT_nISP UBB_DAT1
#define TGT_TX UBB_DAT3
#define TGT_RX UBB_DAT2
#define HOST_RX TGT_TX
#define HOST_TX TGT_RX
#define AUTOBAUD_TRIES 10
#define SYNC "Synchronized"
#define TRACE_ECHO (verbose > 3)
#define TRACE_PROGRESS (verbose > 2)
#define TRACE_RETRY (verbose > 1)
#define TRACE_FATAL (verbose > 0)
static int verbose = 0;
/* ----- Debugging and tracing --------------------------------------------- */
static void trace(const char *label, const uint8_t *s, int len)
{
const uint8_t *end = s+len;
if (label)
printf("%s ", label);
for (end = s+len; s != end; s++) {
if (*s >= ' ' && *s <= '~')
printf("%c", *s);
else if (*s == 10)
printf(s+1 == end ? "\n" : "\\n");
else if (*s == 13)
;
else
printf("\\%02o", *s);
}
if (len && end[-1] != '\n')
printf("...\n");
}
static void trace_out(const void *s, int len)
{
trace(">>>", s, len);
}
static void trace_in(const uint8_t *s, int len)
{
trace("<<<", s, len);
}
/* ----- Dialog functions -------------------------------------------------- */
static int dialog(const char *cmd, void *buf, int buf_len, int idle)
{
int cmd_len = strlen(cmd);
char *tx_buf = alloca(cmd_len+3);
uint8_t *rx_buf = alloca(cmd_len+2+buf_len);
int got;
memcpy(tx_buf, cmd, cmd_len);
memcpy(tx_buf+cmd_len, "\r\n", 2);
if (TRACE_PROGRESS)
trace_out(tx_buf, cmd_len+2);
got = swuart_trx(tx_buf, cmd_len+2, rx_buf, cmd_len+2+buf_len,
idle, idle);
if (got < cmd_len+2) {
if (TRACE_FATAL)
trace_in(rx_buf, got);
fprintf(stderr, "response too short for echo\n");
exit(1);
}
if (memcmp(rx_buf, cmd, cmd_len) ||
rx_buf[cmd_len] != '\r' || rx_buf[cmd_len+1] != '\n') {
if (TRACE_FATAL)
trace_in(rx_buf, got);
fprintf(stderr, "echo mismatch\n");
exit(1);
}
if (TRACE_ECHO)
trace_in(rx_buf, cmd_len+2);
got -= cmd_len+2;
memcpy(buf, rx_buf+cmd_len+2, got);
return got;
}
static int autobaud(void)
{
uint8_t reply[100];
int i, got;
for (i = 0; i != AUTOBAUD_TRIES; i++) {
CLR(TGT_nRESET);
usleep(10); /* DS Table 9 pg 29 says min 50 ns */
SET(TGT_nRESET);
usleep(5*1000); /* UM 26.3.1 pg 408 says max 3 ms */
got = swuart_trx("?", 1, reply, sizeof(reply), 1000, 100);
if (got != strlen(SYNC)+2 || memcmp(reply, SYNC "\r\n", got)) {
if (TRACE_RETRY)
trace_in(reply, got);
continue;
}
if (TRACE_PROGRESS)
trace_in(reply, got);
got = dialog(SYNC, reply, sizeof(reply), 100);
if (got == 4 && !memcmp(reply, "OK\r\n", 4)) {
if (TRACE_PROGRESS)
trace_in(reply, got);
return 1;
}
if (TRACE_RETRY)
trace_in(reply, got);
}
return 0;
}
/* ----- ISP session ------------------------------------------------------- */
static void at_exit(void)
{
ubb_close(0);
}
static void start_isp(void)
{
uint8_t reply[1000];
int got;
if (ubb_open(0) < 0) {
perror("ubb_open");
exit(1);
}
atexit(at_exit);
ubb_power(1);
usleep(100*1000);
SET(TGT_nRESET);
OUT(TGT_nRESET);
CLR(TGT_nISP);
OUT(TGT_nISP);
swuart_open(HOST_TX, HOST_RX, 115200);
if (!autobaud()) {
fprintf(stderr, "target is not responding\n");
exit(1);
}
got = dialog("12000", reply, sizeof(reply), 100);
if (got != 4 || memcmp(reply, "OK\r\n", 4)) {
if (TRACE_FATAL)
trace_in(reply, got);
fprintf(stderr, "cannot set clock rate\n");
exit(1);
}
if (TRACE_PROGRESS)
trace_in(reply, got);
}
/* ----- Command-line processing ------------------------------------------- */
static void usage(const char *name)
{
fprintf(stderr,
"usage: %s [-v ...]\n\n"
" -v increase verbosity level (nothing; errors; retry; progress; echo)\n"
, name);
exit(1);
}
int main(int argc, char **argv)
{
uint8_t reply[1000];
int c, got;
while ((c = getopt(argc, argv, "v")) != EOF)
switch (c) {
case 'v':
verbose++;
break;
default:
usage(*argv);
}
switch (argc-optind) {
case 0:
break;
default:
usage(*argv);
}
start_isp();
got = dialog("J", reply, sizeof(reply), 100);
trace_in(reply, got);
return 0;
}