view rvinterf/etmsync/fdcmd.c @ 923:10b4bed10192

gsm-fw/L1: fix for the DSP patch corruption bug The L1 code we got from the LoCosto fw contains a feature for DSP CPU load measurement. This feature is a LoCosto-ism, i.e., not applicable to earlier DBB chips (Calypso) with their respective earlier DSP ROMs. Most of the code dealing with that feature is conditionalized as #if (DSP >= 38), but one spot was missed, and the MCU code was writing into an API word dealing with this feature. In TCS211 this DSP API word happens to be used by the DSP code patch, hence that write was corrupting the patched DSP code.
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Mon, 19 Oct 2015 17:13:56 +0000
parents 69e8ae2b5ba2
children
line wrap: on
line source

/*
 * File descriptor debug commands
 */

#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "etm.h"
#include "ffs.h"
#include "tmffs2.h"
#include "limits.h"
#include "localtypes.h"
#include "localstruct.h"
#include "cmdtab.h"
#include "exitcodes.h"

cmd_fd_open(argc, argv)
	char **argv;
{
	int rc, fd;

	rc = fd_open(argv[1], strtoul(argv[2], 0, 16), &fd);
	if (rc)
		return(rc);
	printf("%d\n", fd);
	return(0);
}

cmd_fd_read(argc, argv)
	char **argv;
{
	u_char databuf[MAX_READ_DATA];
	int rc, sz, off, l;

	rc = fd_read(strtoul(argv[1], 0, 0), databuf, strtoul(argv[2], 0, 0),
			&sz);
	if (rc)
		return(rc);
	printf("%d bytes read\n", sz);
	for (off = 0; off < sz; off += 16) {
		l = sz - off;
		if (l > 16)
			l = 16;
		hexdump_line(off, databuf + off, l);
	}
	return(0);
}

cmd_fd_close(argc, argv)
	char **argv;
{
	return fd_close(strtoul(argv[1], 0, 0));
}

struct cmdtab fd_cmds[] = {
	{"close", 1, 1, cmd_fd_close},
	{"open", 2, 2, cmd_fd_open},
	{"read", 2, 2, cmd_fd_read},
	{0, 0, 0, 0}
};

cmd_fd(argc, argv)
	char **argv;
{
	struct cmdtab *tp;
	int extargs;

	for (tp = fd_cmds; tp->cmd; tp++)
		if (!strcmp(tp->cmd, argv[1]))
			break;
	if (!tp->func) {
		fprintf(stderr, "error: no such fd command\n");
		return(ERROR_USAGE);
	}
	extargs = argc - 2;
	if (extargs > tp->maxargs) {
		fprintf(stderr, "error: too many arguments\n");
		return(ERROR_USAGE);
	}
	if (extargs < tp->minargs) {
		fprintf(stderr, "error: too few arguments\n");
		return(ERROR_USAGE);
	}
	return tp->func(argc - 1, argv + 1);
}