view rvinterf/lowlevel/openport.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 f42854da4563
children
line wrap: on
line source

/*
 * This module takes care of opening the serial port and setting the
 * proper "raw" termios modes, including the baud rate.
 */

#include <sys/types.h>
#include <sys/file.h>
#include <sys/ioctl.h>
#include <termios.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <unistd.h>

int target_fd;
char *baudrate_name = "115200";

static struct baudrate {
	char	*name;
	speed_t	termios_code;
} baud_rate_table[] = {
	{"19200",	B19200},
	{"38400",	B38400},
	{"57600",	B57600},
	{"115200",	B115200},
	/* non-standard high baud rates "remapped" by CP2102 usb2serial IC */
	{"203125",	B230400},
	{"406250",	B460800},
	{"812500",	B921600},
	/* table search terminator */
	{NULL,		B0}
};

static speed_t
get_baud_rate()
{
	struct baudrate *br;

	for (br = baud_rate_table; br->name; br++)
		if (!strcmp(br->name, baudrate_name))
			break;
	if (!br->name) {
		fprintf(stderr, "baud rate \"%s\" unknown/unsupported\n",
			baudrate_name);
		exit(1);
	}
	return br->termios_code;
}

open_target_serial(ttydev)
	char *ttydev;
{
	struct termios target_termios;
	speed_t br_code;

	br_code = get_baud_rate();
	target_fd = open(ttydev, O_RDWR|O_NONBLOCK);
	if (target_fd < 0) {
		perror(ttydev);
		exit(1);
	}
	target_termios.c_iflag = IGNBRK;
	target_termios.c_oflag = 0;
	target_termios.c_cflag = CLOCAL|HUPCL|CREAD|CS8;
	target_termios.c_lflag = 0;
	target_termios.c_cc[VMIN] = 1;
	target_termios.c_cc[VTIME] = 0;
	cfsetispeed(&target_termios, br_code);
	cfsetospeed(&target_termios, br_code);
	if (tcsetattr(target_fd, TCSAFLUSH, &target_termios) < 0) {
		perror("initial tcsetattr on target");
		exit(1);
	}
	return 0;
}

set_serial_nonblock(state)
	int state;
{
	ioctl(target_fd, FIONBIO, &state);
}