Newer
Older
/***************************************************************************
* Copyright (C) 2007-2008 by Øyvind Harboe *
* *
* 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. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "log.h"
#include "types.h"
#include "jtag.h"
#include "target.h"
#include "flash.h"
#include "nand.h"
#include "pld.h"
#include "server.h"
#include "telnet_server.h"
#include "gdb_server.h"
#include <time_support.h>
#include <sys/time.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <cyg/io/flash.h>
#include <pkgconf/fs_jffs2.h> // Address of JFFS2
#include <network.h>
#include <sys/stat.h>
#include <cyg/fileio/fileio.h>
#include <dirent.h>
#include <cyg/athttpd/http.h>
#include <cyg/athttpd/socket.h>
#include <cyg/athttpd/handler.h>
#include <cyg/athttpd/cgi.h>
#include <cyg/athttpd/forms.h>
#include <cyg/io/serialio.h>
#include <cyg/io/io.h>
#include <netinet/tcp.h>
#include "rom.h"
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <net/if.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#define MAX_IFS 64
#if defined(CYGPKG_NET_FREEBSD_STACK)
#include <tftp_support.h>
/* posix compatibility broken*/
struct tftpd_fileops fileops =
{
(int (*)(const char *, int))open,
close,
(int (*)(int, const void *, int))write,
};
#endif
void diag_write(char *buf, int len)
{
int j;
for (j = 0; j < len; j++)
{
diag_printf("%c", buf[j]);
}
}
static bool serialLog = true;
static bool writeLog = true;
extern struct flash_driver *flash_drivers[];
extern target_type_t *target_types[];
#ifdef CYGPKG_PROFILE_GPROF
#include <cyg/profile/profile.h>
extern char _stext, _etext; // Defined by the linker
static char *start_of_code=&_stext;
static char *end_of_code=&_etext;
void start_profile(void)
{
// This starts up the system-wide profiling, gathering
// profile information on all of the code, with a 16 byte
// "bucket" size, at a rate of 100us/profile hit.
// Note: a bucket size of 16 will give pretty good function
// resolution. Much smaller and the buffer becomes
// much too large for very little gain.
// Note: a timer period of 100us is also a reasonable
// compromise. Any smaller and the overhead of
// handling the timter (profile) interrupt could
// swamp the system. A fast processor might get
// by with a smaller value, but a slow one could
// even be swamped by this value. If the value is
// too large, the usefulness of the profile is reduced.
// no more interrupts than 1/10ms.
//profile_on((void *)0, (void *)0x40000, 16, 10000); // SRAM

oharboe
committed
// profile_on(0, &_etext, 16, 10000); // SRAM & DRAM
profile_on(start_of_code, end_of_code, 16, 10000); // Nios DRAM
}
#endif
static FILE *log;
static char reboot_stack[2048];

oharboe
committed
static void zylinjtag_reboot(cyg_addrword_t data)

oharboe
committed
diag_printf("Rebooting in 500 ticks..\n");
cyg_thread_delay(500);
diag_printf("Unmounting /config..\n");
umount("/config");
diag_printf("Rebooting..\n");
HAL_PLATFORM_RESET();
}
static cyg_thread zylinjtag_thread_object;
static cyg_handle_t zylinjtag_thread_handle;
void reboot(void)
{

oharboe
committed
cyg_thread_create(1, zylinjtag_reboot, (cyg_addrword_t) 0, "reboot Thread",
(void *) reboot_stack, sizeof(reboot_stack),
&zylinjtag_thread_handle, &zylinjtag_thread_object);
cyg_thread_resume(zylinjtag_thread_handle);
}
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
static char zylinjtag_reboot_port_stack[2048];
static cyg_thread zylinjtag_reboot_port_thread_object;
static cyg_handle_t zylinjtag_reboot_port_thread_handle;
static void zylinjtag_reboot_port_task(cyg_addrword_t data)
{
int so_reuseaddr_option = 1;
int fd;
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
{
LOG_ERROR("error creating socket: %s", strerror(errno));
exit(-1);
}
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void*) &so_reuseaddr_option,
sizeof(int));
struct sockaddr_in sin;
unsigned int address_size;
address_size = sizeof(sin);
memset(&sin, 0, sizeof(sin));
sin.sin_family = AF_INET;
sin.sin_addr.s_addr = INADDR_ANY;
sin.sin_port = htons(1234);
if (bind(fd, (struct sockaddr *) &sin, sizeof(sin)) == -1)
{
LOG_ERROR("couldn't bind to socket: %s", strerror(errno));
exit(-1);
}
if (listen(fd, 1) == -1)
{
LOG_ERROR("couldn't listen on socket: %s", strerror(errno));
exit(-1);
}
// socket_nonblock(fd);
accept(fd, (struct sockaddr *) &sin, &address_size);
diag_printf("Got reboot signal on port 1234");
reboot();
}
void reboot_port(void)
{
cyg_thread_create(1, zylinjtag_reboot_port_task, (cyg_addrword_t) 0, "wait for reboot signal on port 1234",
(void *) zylinjtag_reboot_port_stack, sizeof(zylinjtag_reboot_port_stack),
&zylinjtag_reboot_port_thread_handle, &zylinjtag_reboot_port_thread_object);
cyg_thread_resume(zylinjtag_reboot_port_thread_handle);
}

oharboe
committed
int configuration_output_handler(struct command_context_s *context,
const char* line)
{
diag_printf("%s", line);
return ERROR_OK;
}

oharboe
committed
int zy1000_configuration_output_handler_log(struct command_context_s *context,
const char* line)
{
LOG_USER_N("%s", line);
return ERROR_OK;
}
#ifdef CYGPKG_PROFILE_GPROF
int eCosBoard_handle_eCosBoard_profile_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
{
command_print(cmd_ctx, "Profiling started");
start_profile();
return ERROR_OK;
}
#endif
externC void phi_init_all_network_interfaces(void);
command_context_t *cmd_ctx;
static bool webRunning = false;
void keep_webserver(void)
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
{
// Target initialisation is only attempted at startup, so we sleep forever and
// let the http server bail us out(i.e. get config files set up).
diag_printf("OpenOCD has invoked exit().\n"
"Use web server to correct any configuration settings and reboot.\n");
if (!webRunning)
reboot();
// exit() will terminate the current thread and we we'll then sleep eternally or
// we'll have a reboot scheduled.
}
extern void printDccChar(char c);
static char logBuffer[128 * 1024];
static const int logSize = sizeof(logBuffer);
int writePtr = 0;
int logCount = 0;
void _zylinjtag_diag_write_char(char c, void **param)
{
if (writeLog)
{
logBuffer[writePtr] = c;
writePtr = (writePtr + 1) % logSize;
logCount++;
}
if (serialLog)
{
if (c == '\n')
{
HAL_DIAG_WRITE_CHAR('\r');
}
HAL_DIAG_WRITE_CHAR(c);
}

oharboe
committed
void copyfile(char *name2, char *name1);

oharboe
committed
void copydir(char *name, char *destdir);
void openocd_sleep_prelude(void)
{
cyg_mutex_unlock(&httpstate.jim_lock);
}
void openocd_sleep_postlude(void)
{
cyg_mutex_lock(&httpstate.jim_lock);
}
#ifdef CYGDAT_IO_FLASH_BLOCK_DEVICE_NAME_1
diag_printf("Formatting JFFS2...\n");
cyg_io_handle_t handle;
Cyg_ErrNo err;
err = cyg_io_lookup(CYGDAT_IO_FLASH_BLOCK_DEVICE_NAME_1, &handle);
if (err != ENOERR)
{
diag_printf("Flash Error cyg_io_lookup: %d\n", err);
reboot();
}
cyg_uint32 len;
cyg_io_flash_getconfig_devsize_t ds;

oharboe
committed
len = sizeof(ds);
err = cyg_io_get_config(handle, CYG_IO_GET_CONFIG_FLASH_DEVSIZE, &ds, &len);
if (err != ENOERR)
{
diag_printf("Flash error cyg_io_get_config %d\n", err);
reboot();
}
cyg_io_flash_getconfig_erase_t e;

oharboe
committed
len = sizeof(e);
diag_printf("Formatting 0x%08x bytes\n", (int)ds.dev_size);

oharboe
committed
err = cyg_io_get_config(handle, CYG_IO_GET_CONFIG_FLASH_ERASE, &e, &len);
diag_printf("Flash erase error %d offset 0x%08x\n", err, e.err_address);

oharboe
committed
static int zylinjtag_Jim_Command_format_jffs2(Jim_Interp *interp, int argc,
Jim_Obj * const *argv)
{
if (argc != 1)
{
return JIM_ERR;
}
format();

oharboe
committed
for (;;)
;
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
static int zylinjtag_Jim_Command_threads(Jim_Interp *interp, int argc,
Jim_Obj * const *argv)
{
cyg_handle_t thread = 0;
cyg_uint16 id = 0;
Jim_Obj *threads = Jim_NewListObj(interp, NULL, 0);
/* Loop over the threads, and generate a table row for
* each.
*/
while (cyg_thread_get_next(&thread, &id))
{
Jim_Obj *threadObj = Jim_NewListObj(interp, NULL, 0);
cyg_thread_info info;
char *state_string;
cyg_thread_get_info(thread, id, &info);
if (info.name == NULL)
info.name = "<no name>";
Jim_ListAppendElement(interp, threadObj, Jim_NewStringObj(interp,
info.name, strlen(info.name)));
/* Translate the state into a string.
*/
if (info.state == 0)
state_string = "RUN";
else if (info.state & 0x04)
state_string = "SUSP";
else
switch (info.state & 0x1b)
{
case 0x01:
state_string = "SLEEP";
break;
case 0x02:
state_string = "CNTSLEEP";
break;
case 0x08:
state_string = "CREATE";
break;
case 0x10:
state_string = "EXIT";
break;
default:
state_string = "????";
break;
}
Jim_ListAppendElement(interp, threadObj, Jim_NewStringObj(interp,
state_string, strlen(state_string)));

oharboe
committed
Jim_ListAppendElement(interp, threadObj, Jim_NewIntObj(interp, id));
Jim_ListAppendElement(interp, threadObj, Jim_NewIntObj(interp,
info.set_pri));
Jim_ListAppendElement(interp, threadObj, Jim_NewIntObj(interp,
info.cur_pri));
Jim_ListAppendElement(interp, threads, threadObj);
}

oharboe
committed
Jim_SetResult(interp, threads);

oharboe
committed
static int zylinjtag_Jim_Command_log(Jim_Interp *interp, int argc,
Jim_Obj * const *argv)
{
Jim_Obj *tclOutput = Jim_NewStringObj(interp, "", 0);
if (logCount >= logSize)
{

oharboe
committed
Jim_AppendString(httpstate.jim_interp, tclOutput, logBuffer + logCount
% logSize, logSize - logCount % logSize);
}
Jim_AppendString(httpstate.jim_interp, tclOutput, logBuffer, writePtr);
Jim_SetResult(interp, tclOutput);
return JIM_OK;
}

oharboe
committed
static int zylinjtag_Jim_Command_reboot(Jim_Interp *interp, int argc,
Jim_Obj * const *argv)
{
reboot();
return JIM_OK;
}
static void zylinjtag_startNetwork(void)
{
// Bring TCP/IP up immediately before we're ready to accept commands.
//
// That is as soon as a PING responds, we're accepting telnet sessions.
#if defined(CYGPKG_NET_FREEBSD_STACK)
phi_init_all_network_interfaces();
#else
lwip_init();
#endif
if (!eth0_up)
{
diag_printf("Network not up and running\n");
exit(-1);
}
/* very first thing we want is a reboot capability */
reboot_port();
#if defined(CYGPKG_NET_FREEBSD_STACK)
/*start TFTP*/
tftpd_start(69, &fileops);
#endif
cyg_httpd_init_tcl_interpreter();
interp = httpstate.jim_interp;

oharboe
committed
Jim_CreateCommand(httpstate.jim_interp, "log", zylinjtag_Jim_Command_log,
NULL, NULL);
Jim_CreateCommand(httpstate.jim_interp, "zy1000_reboot",

oharboe
committed
zylinjtag_Jim_Command_reboot, NULL, NULL);
Jim_CreateCommand(httpstate.jim_interp, "threads",
zylinjtag_Jim_Command_threads, NULL, NULL);
Jim_CreateCommand(httpstate.jim_interp, "format_jffs2",
zylinjtag_Jim_Command_format_jffs2, NULL, NULL);
cyg_httpd_start();
webRunning = true;
diag_printf("Web server running\n");
int s;
struct ifreq ifr;
s = socket(AF_INET, SOCK_DGRAM, 0);
if (s >= 0)
{
strcpy(ifr.ifr_name, "eth0");
int res;
res = ioctl(s, SIOCGIFHWADDR, &ifr);
close(s);
if (res < 0)
{
diag_printf("Can't obtain MAC address\n");
reboot();
}
}
sprintf(hwaddr, "%02x:%02x:%02x:%02x:%02x:%02x",
(int) ((unsigned char *) &ifr.ifr_hwaddr.sa_data)[0],
(int) ((unsigned char *) &ifr.ifr_hwaddr.sa_data)[1],
(int) ((unsigned char *) &ifr.ifr_hwaddr.sa_data)[2],
(int) ((unsigned char *) &ifr.ifr_hwaddr.sa_data)[3],
(int) ((unsigned char *) &ifr.ifr_hwaddr.sa_data)[4],
(int) ((unsigned char *) &ifr.ifr_hwaddr.sa_data)[5]);

oharboe
committed
discover_message
= alloc_printf("ZY1000 Zylin JTAG debugger MAC %s", hwaddr);

oharboe
committed
static void print_exception_handler(cyg_addrword_t data, cyg_code_t exception,
cyg_addrword_t info)
{
writeLog = false;
serialLog = true;
char *infoStr = "unknown";
switch (exception)
{
case CYGNUM_HAL_VECTOR_UNDEF_INSTRUCTION:

oharboe
committed
infoStr = "undefined instruction";
break;
case CYGNUM_HAL_VECTOR_SOFTWARE_INTERRUPT:

oharboe
committed
infoStr = "software interrupt";
break;
case CYGNUM_HAL_VECTOR_ABORT_PREFETCH:

oharboe
committed
infoStr = "abort prefetch";
break;

oharboe
committed
infoStr = "abort data";
break;
default:
break;
}
diag_printf("Exception: %08x(%s) %08x\n", exception, infoStr, info);
diag_printf("Dumping log\n---\n");
if (logCount >= logSize)
{
diag_write(logBuffer + logCount % logSize, logSize - logCount % logSize);
}
diag_write(logBuffer, writePtr);
diag_printf("---\nLogdump complete.\n");
diag_printf("Exception: %08x(%s) %08x\n", exception, infoStr, info);
diag_printf("\n---\nRebooting\n");
HAL_PLATFORM_RESET();
}
static void setHandler(cyg_code_t exception)
{
cyg_exception_handler_t *old_handler;
cyg_addrword_t old_data;

oharboe
committed
cyg_exception_set_handler(exception, print_exception_handler, 0,
&old_handler, &old_data);
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
static cyg_thread zylinjtag_uart_thread_object;
static cyg_handle_t zylinjtag_uart_thread_handle;
static char uart_stack[4096];
static char forwardBuffer[1024]; // NB! must be smaller than a TCP/IP packet!!!!!
static char backwardBuffer[1024];
void setNoDelay(int session, int flag)
{
#if 1
// This decreases latency dramatically for e.g. GDB load which
// does not have a sliding window protocol
//
// Can cause *lots* of TCP/IP packets to be sent and it would have
// to be enabled/disabled on the fly to avoid the CPU being
// overloaded...
setsockopt(session, /* socket affected */
IPPROTO_TCP, /* set option at TCP level */
TCP_NODELAY, /* name of option */
(char *) &flag, /* the cast is historical
cruft */
sizeof(int)); /* length of option value */
#endif
}
#define TEST_TCPIP() 0
#if TEST_TCPIP
struct
{
int req;
int actual;
int req2;
int actual2;
} tcpipSent[512 * 1024];
int cur;

oharboe
committed
static void zylinjtag_uart(cyg_addrword_t data)
{
int so_reuseaddr_option = 1;
int fd;
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
{
LOG_ERROR("error creating socket: %s", strerror(errno));
exit(-1);
}

oharboe
committed
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void*) &so_reuseaddr_option,
sizeof(int));
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
struct sockaddr_in sin;
unsigned int address_size;
address_size = sizeof(sin);
memset(&sin, 0, sizeof(sin));
sin.sin_family = AF_INET;
sin.sin_addr.s_addr = INADDR_ANY;
sin.sin_port = htons(5555);
if (bind(fd, (struct sockaddr *) &sin, sizeof(sin)) == -1)
{
LOG_ERROR("couldn't bind to socket: %s", strerror(errno));
exit(-1);
}
if (listen(fd, 1) == -1)
{
LOG_ERROR("couldn't listen on socket: %s", strerror(errno));
exit(-1);
}
// socket_nonblock(fd);
for (;;)
{
int session = accept(fd, (struct sockaddr *) &sin, &address_size);
if (session < 0)
{
continue;
}
setNoDelay(session, 1);
int oldopts = fcntl(session, F_GETFL, 0);
fcntl(session, F_SETFL, oldopts | O_NONBLOCK); //
int serHandle = open("/dev/ser0", O_RDWR | O_NONBLOCK);
if (serHandle < 0)
{
close(session);
continue;
}
size_t actual = 0;
size_t actual2 = 0;
size_t pos, pos2;
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
for (;;)
{
fd_set write_fds;
fd_set read_fds;
FD_ZERO(&write_fds);
FD_ZERO(&read_fds);
int fd_max = -1;
FD_SET(session, &read_fds);
fd_max = session;
FD_SET(serHandle, &read_fds);
if (serHandle > fd_max)
{
fd_max = serHandle;
}
/* Wait... */
cyg_thread_delay(5); // 50ms fixed delay to wait for data to be sent/received
if ((actual == 0) && (actual2 == 0))
{
int retval = select(fd_max + 1, &read_fds, NULL, NULL, NULL);
if (retval <= 0)
{
break;
}
}
if (actual2 <= 0)
{
memset(backwardBuffer, 's', sizeof(backwardBuffer));

oharboe
committed
sizeof(backwardBuffer));
{
if (errno != EAGAIN)
{
goto closeSession;
}
actual2 = 0;
}
pos2 = 0;
}
if (actual2 > 0)
{
int written = write(session, backwardBuffer + pos2, actual2);
if (written <= 0)
goto closeSession;
actual2 -= written;
pos2 += written;
y = written;
}

oharboe
committed
if (FD_ISSET(session, &read_fds)
&& (sizeof(forwardBuffer) > actual))
{
// NB! Here it is important that we empty the TCP/IP read buffer
// to make transmission tick right
memmove(forwardBuffer, forwardBuffer + pos, actual);
pos = 0;
int t;
// this will block if there is no data at all

oharboe
committed
t = read_socket(session, forwardBuffer + actual,
sizeof(forwardBuffer) - actual);
if (t <= 0)
{
goto closeSession;
}
actual += t;
}
int y2 = 0;
if (actual > 0)
{
/* Do not put things into the serial buffer if it has something to send
* as that can cause a single byte to be sent at the time.
*
*
*/
int written = write(serHandle, forwardBuffer + pos, actual);
if (written < 0)
{
if (errno != EAGAIN)
{
goto closeSession;
}
// The serial buffer is full
written = 0;

oharboe
committed
}
else
{
actual -= written;
pos += written;
}
y2 = written;
}
if (cur < 1024)
{
tcpipSent[cur].req = x;
tcpipSent[cur].actual = y;
tcpipSent[cur].req2 = x2;
tcpipSent[cur].actual2 = y2;
cur++;
}

oharboe
committed
closeSession: close(session);
int i;
for (i = 0; i < 1024; i++)
{

oharboe
committed
diag_printf("%d %d %d %d\n", tcpipSent[i].req, tcpipSent[i].actual,
tcpipSent[i].req2, tcpipSent[i].actual2);
}
close(fd);
}
void startUart(void)
{

oharboe
committed
cyg_thread_create(1, zylinjtag_uart, (cyg_addrword_t) 0, "uart thread",
(void *) uart_stack, sizeof(uart_stack),
&zylinjtag_uart_thread_handle, &zylinjtag_uart_thread_object);
cyg_thread_set_priority(zylinjtag_uart_thread_handle, 1); // low priority as it sits in a busy loop
cyg_thread_resume(zylinjtag_uart_thread_handle);
}

oharboe
committed
int handle_uart_command(struct command_context_s *cmd_ctx, char *cmd,
char **args, int argc)
static int current_baud = 38400;
if (argc == 0)
{
command_print(cmd_ctx, "%d", current_baud);
return ERROR_OK;

oharboe
committed
}
else if (argc != 1)
{
return ERROR_INVALID_ARGUMENTS;
}
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
{
case 9600:
baud = CYGNUM_SERIAL_BAUD_9600;
break;
case 19200:
baud = CYGNUM_SERIAL_BAUD_19200;
break;
case 38400:
baud = CYGNUM_SERIAL_BAUD_38400;
break;
case 57600:
baud = CYGNUM_SERIAL_BAUD_57600;
break;
case 115200:
baud = CYGNUM_SERIAL_BAUD_115200;
break;
case 230400:
baud = CYGNUM_SERIAL_BAUD_230400;
break;
default:
command_print(cmd_ctx, "unsupported baudrate");
return ERROR_INVALID_ARGUMENTS;
}
cyg_serial_info_t buf;
cyg_uint32 len = 1;
//get existing serial configuration
len = sizeof(cyg_serial_info_t);
int err;
cyg_io_handle_t serial_handle;
err = cyg_io_lookup("/dev/ser0", &serial_handle);
if (err != ENOERR)
{
LOG_ERROR("/dev/ser0 not found\n");
return ERROR_FAIL;
}

oharboe
committed
err = cyg_io_get_config(serial_handle,
CYG_IO_GET_CONFIG_SERIAL_OUTPUT_DRAIN, &buf, &len);
err = cyg_io_get_config(serial_handle, CYG_IO_GET_CONFIG_SERIAL_INFO, &buf,
&len);
if (err != ENOERR)
{
command_print(cmd_ctx, "Failed to get serial port settings %d", err);
return ERROR_OK;
}
buf.baud = baud;

oharboe
committed
err = cyg_io_set_config(serial_handle, CYG_IO_SET_CONFIG_SERIAL_INFO, &buf,
&len);
if (err != ENOERR)
{
command_print(cmd_ctx, "Failed to set serial port settings %d", err);
return ERROR_OK;
}
return ERROR_OK;
}
bool logAllToSerial = false;

oharboe
committed
int boolParam(char *var);
command_context_t *setup_command_handler(void);
static const char *zylin_config_dir="/config/settings";

oharboe
committed
static int add_default_dirs(void)

oharboe
committed
add_script_search_dir(zylin_config_dir);
add_script_search_dir("/rom/lib/openocd");
add_script_search_dir("/rom");
return ERROR_OK;
}
int ioutil_init(struct command_context_s *cmd_ctx);
int main(int argc, char *argv[])
{
/* ramblockdevice will be the same address every time. The deflate app uses a buffer 16mBytes out, so we
* need to allocate towards the end of the heap. */
setHandler(CYGNUM_HAL_VECTOR_UNDEF_INSTRUCTION);
setHandler(CYGNUM_HAL_VECTOR_ABORT_PREFETCH);
setHandler(CYGNUM_HAL_VECTOR_ABORT_DATA);
int err;
atexit(keep_webserver);

oharboe
committed
diag_init_putc(_zylinjtag_diag_write_char);
// We want this in the log.
diag_printf("Zylin ZY1000.\n");
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
err = mount("", "/ram", "ramfs");
if (err < 0)
{
diag_printf("unable to mount ramfs\n");
}
chdir("/ram");
char address[16];
sprintf(address, "%p", &filedata[0]);
err = mount(address, "/rom", "romfs");
if (err < 0)
{
diag_printf("unable to mount /rom\n");
}
err = mount("", "/log", "logfs");
if (err < 0)
{
diag_printf("unable to mount logfs\n");
}
err = mount("", "/tftp", "tftpfs");
if (err < 0)
{
diag_printf("unable to mount logfs\n");
}
log = fopen("/log/log", "w");
if (log == NULL)
{
diag_printf("Could not open log file /ram/log\n");
exit(-1);
}
copydir("/rom", "/ram/cgi");
err = mount("/dev/flash1", "/config", "jffs2");
if (err < 0)
{