9
0
Fork 0
barebox/common/console.c

275 lines
5.6 KiB
C
Raw Normal View History

2002-11-03 00:01:44 +00:00
/*
* (C) Copyright 2000
* Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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
*/
2007-07-05 16:01:46 +00:00
#include <config.h>
2002-11-03 00:01:44 +00:00
#include <common.h>
#include <stdarg.h>
#include <malloc.h>
#include <param.h>
2002-11-03 00:01:44 +00:00
#include <console.h>
#include <exports.h>
2007-07-05 16:01:39 +00:00
#include <serial.h>
#include <driver.h>
#include <fs.h>
2002-11-03 00:01:44 +00:00
static struct console_device *first_console;
static int console_std_set(struct device_d *dev, struct param_d *param,
const char *val)
{
struct console_device *cdev = dev->type_data;
unsigned int flag = 0, i = 0;
if (strchr(val, 'i') && cdev->f_caps & CONSOLE_STDIN) {
cdev->active[i++] = 'i';
flag |= CONSOLE_STDIN;
}
if (strchr(val, 'o') && cdev->f_caps & CONSOLE_STDOUT) {
cdev->active[i++] = 'o';
flag |= CONSOLE_STDOUT;
}
if (strchr(val, 'e') && cdev->f_caps & CONSOLE_STDERR) {
cdev->active[i++] = 'e';
flag |= CONSOLE_STDERR;
}
cdev->active[i] = 0;
cdev->f_active = flag;
return 0;
}
static int console_baudrate_set(struct device_d *dev, struct param_d *param,
const char *val)
{
struct console_device *cdev = dev->type_data;
int baudrate;
baudrate = simple_strtoul(val, NULL, 10);
if (cdev->f_active) {
printf("## Switch baudrate to %d bps and press ENTER ...\n",
baudrate);
mdelay(50);
cdev->setbrg(cdev, baudrate);
mdelay(50);
while (getc() != '\r');
} else
cdev->setbrg(cdev, baudrate);
sprintf(cdev->baudrate_string, "%d", baudrate);
return 0;
}
int console_register(struct console_device *newcdev)
2002-11-03 00:01:44 +00:00
{
struct console_device *cdev = first_console;
struct device_d *dev = newcdev->dev;
if (cdev->setbrg) {
newcdev->baudrate_param.set = console_baudrate_set;
newcdev->baudrate_param.name = "baudrate";
sprintf(newcdev->baudrate_string, "%d",
CONFIG_BAUDRATE);
console_baudrate_set(dev, &newcdev->baudrate_param,
newcdev->baudrate_string);
cdev->baudrate_param.value = newcdev->baudrate_string;
dev_add_param(dev, &newcdev->baudrate_param);
}
newcdev->active_param.set = console_std_set;
newcdev->active_param.name = "active";
newcdev->active_param.value = newcdev->active;
dev_add_param(dev, &newcdev->active_param);
#ifdef CONFIG_CONSOLE_ACTIVATE_ALL
console_std_set(dev, &newcdev->active_param, "ioe");
#endif
if (!first_console) {
#ifdef CONFIG_CONSOLE_ACTIVATE_FIRST
console_std_set(dev, &newcdev->active_param, "ioe");
#endif
first_console = newcdev;
return 0;
}
while (1) {
if (!cdev->next) {
cdev->next = newcdev;
return 0;
}
cdev = cdev->next;
}
}
2002-11-03 00:01:44 +00:00
int getc (void)
{
struct console_device *cdev = NULL;
while (1) {
if (!cdev)
cdev = first_console;
if (cdev->f_active & CONSOLE_STDIN && cdev->tstc(cdev))
return cdev->getc(cdev);
cdev = cdev->next;
}
}
2002-11-03 00:01:44 +00:00
int fgetc(int fd)
{
char c;
2002-11-03 00:01:44 +00:00
if (!fd)
return getc();
return read(fd, &c, 1);
2002-11-03 00:01:44 +00:00
}
int tstc(void)
2002-11-03 00:01:44 +00:00
{
struct console_device *cdev = first_console;
while (cdev) {
if (cdev->f_active & CONSOLE_STDIN && cdev->tstc(cdev))
return 1;
cdev = cdev->next;
}
return 0;
2002-11-03 00:01:44 +00:00
}
void console_putc(unsigned int ch, char c)
2002-11-03 00:01:44 +00:00
{
struct console_device *cdev = first_console;
while (cdev) {
if (cdev->f_active & ch) {
cdev->putc(cdev, c);
if (c == '\n')
cdev->putc(cdev, '\r');
}
cdev = cdev->next;
}
2002-11-03 00:01:44 +00:00
}
int fputc(int fd, char c)
2002-11-03 00:01:44 +00:00
{
if (fd == 1)
putc(c);
else if (fd == 2)
eputc(c);
else
return write(fd, &c, 1);
return 0;
2002-11-03 00:01:44 +00:00
}
void console_puts(unsigned int ch, const char *str)
2002-11-03 00:01:44 +00:00
{
struct console_device *cdev = first_console;
while (cdev) {
if (cdev->f_active & ch) {
const char *s = str;
while (*s) {
cdev->putc(cdev, *s);
if (*s == '\n')
cdev->putc(cdev, '\r');
s++;
}
}
cdev = cdev->next;
}
}
int fputs(int fd, const char *s)
{
if (fd == 1)
puts(s);
else if (fd == 2)
eputs(s);
else
return write(fd, s, strlen(s));
return 0;
2002-11-03 00:01:44 +00:00
}
2007-07-05 16:02:03 +00:00
void fprintf (int file, const char *fmt, ...)
{
va_list args;
uint i;
char printbuffer[CFG_PBSIZE];
va_start (args, fmt);
/* For this to work, printbuffer must be larger than
* anything we ever want to print.
*/
i = vsprintf (printbuffer, fmt, args);
va_end (args);
/* Print the string */
fputs (file, printbuffer);
}
2002-11-03 00:01:44 +00:00
void printf (const char *fmt, ...)
{
va_list args;
uint i;
char printbuffer[CFG_PBSIZE];
va_start (args, fmt);
/* For this to work, printbuffer must be larger than
* anything we ever want to print.
*/
i = vsprintf (printbuffer, fmt, args);
va_end (args);
/* Print the string */
puts (printbuffer);
}
2007-07-05 16:02:03 +00:00
Patches by Murray Jensen, 17 Jun 2003: - Hymod board database mods: add "who" field and new xilinx chip types - provide new "init_cmd_timeout()" function so code external to "common/main.c" can use the "reset_cmd_timeout()" function before entering the main loop - add DTT support for adm1021 (new file dtt/adm1021.c; config slightly different. see include/configs/hymod.h for an example (requires CONFIG_DTT_ADM1021, CONFIG_DTT_SENSORS, and CFG_DTT_ADM1021 defined) - add new "eeprom_probe()" function which has similar args and behaves in a similar way to "eeprom_read()" etc. - add 8260 FCC ethernet loopback code (new "eth_loopback_test()" function which is enabled by defining CONFIG_ETHER_LOOPBACK_TEST) - gdbtools copyright update - ensure that set_msr() executes the "sync" and "isync" instructions after the "mtmsr" instruction in cpu/mpc8260/interrupts.c - 8260 I/O ports fix: Open Drain should be set last when configuring - add SIU IRQ defines for 8260 - allow LDSCRIPT override and OBJCFLAGS initialization: change to config.mk to allow board configurations to override the GNU linker script, selected via the LDSCRIPT, make variable, and to give an initial value to the OBJCFLAGS make variable - 8260 i2c enhancement: o correctly extends the timeout depending on the size of all queued messages for both transmit and receive o will not continue with receive if transmit times out o ensures that the error callback is done for all queued tx and rx messages o correctly detects both tx and rx timeouts, only delivers one to the callback, and does not overwrite an earlier error o logic in i2c_probe now correct - add "vprintf()" function so that "panic()" function can be technically correct - many Hymod board changes
2003-06-19 23:40:20 +00:00
void vprintf (const char *fmt, va_list args)
{
uint i;
char printbuffer[CFG_PBSIZE];
/* For this to work, printbuffer must be larger than
* anything we ever want to print.
*/
i = vsprintf (printbuffer, fmt, args);
/* Print the string */
puts (printbuffer);
}
2002-11-03 00:01:44 +00:00
/* test if ctrl-c was pressed */
int ctrlc (void)
{
if (tstc() && getc() == 3)
return 1;
2002-11-03 00:01:44 +00:00
return 0;
}