view loadtools/labaud.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 604648026e9c
children
line wrap: on
line source

/*
 * This module handles the switching of serial baud rates
 * in coordination with loadagent.
 */

#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>
#include "baudrate.h"

extern int target_fd;
extern struct baudrate *current_baud_rate;
extern struct baudrate *find_baudrate_by_name();

loadagent_switch_baud(newbr)
	struct baudrate *newbr;
{
	char *argv[3];
	static char U = 'U';

	printf("Switching loadagent communication to %s baud\n", newbr->name);
	argv[0] = "baud";
	argv[1] = newbr->name;
	argv[2] = 0;
	tpinterf_make_cmd(argv);
	if (tpinterf_send_cmd() < 0)
		return(-1);
	switch_baud_rate(newbr);
	usleep(150000);
	write(target_fd, &U, 1);
	return tpinterf_pass_output(1);
}

cmd_baud(argc, argv)
	char **argv;
{
	struct baudrate *br;

	if (argc < 2) {
		printf("Current baud rate is %s\n", current_baud_rate->name);
		return(0);
	}
	br = find_baudrate_by_name(argv[1]);
	if (!br)
		return(-1);	/* error msg already printed */
	return loadagent_switch_baud(br);
}