Newer
Older
/*
* (C) Copyright 2002
* Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
*
* (C) Copyright 2002
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* Marius Groeger <mgroeger@sysgo.de>
*
* (C) Copyright 2002
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* Alex Zuepke <azu@sysgo.de>
*
* Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
*
* 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
*
*/
#include <common.h>
DECLARE_GLOBAL_DATA_PTR;
#define FFUART_INDEX 0
#define BTUART_INDEX 1
#define STUART_INDEX 2
#ifndef CONFIG_SERIAL_MULTI
#if defined (CONFIG_FFUART)
#elif defined (CONFIG_BTUART)
#elif defined (CONFIG_STUART)
#else
#error "Bad: you didn't configure serial ..."
#endif
#endif
void pxa_setbrg_dev (unsigned int uart_index)
{
unsigned int quot = 0;
if (gd->baudrate == 1200)
else if (gd->baudrate == 9600)
quot = 96;
else if (gd->baudrate == 19200)
quot = 48;
else if (gd->baudrate == 38400)
quot = 24;
else if (gd->baudrate == 57600)
quot = 16;
else if (gd->baudrate == 115200)
quot = 8;
else
hang ();
Markus Klotzbcher
committed
#ifdef CONFIG_CPU_MONAHANS
Markus Klotzbcher
committed
#else
Markus Klotzbcher
committed
#endif /* CONFIG_CPU_MONAHANS */
writel(0, FFIER); /* Disable for now */
writel(0, FFFCR); /* No fifos enabled */
writel(LCR_WLS0 | LCR_WLS1 | LCR_DLAB, FFLCR);
writel(quot & 0xff, FFDLL);
writel(quot >> 8, FFDLH);
writel(LCR_WLS0 | LCR_WLS1, FFLCR);
Markus Klotzbcher
committed
#ifdef CONFIG_CPU_MONAHANS
Markus Klotzbcher
committed
#else
Markus Klotzbcher
committed
#endif /* CONFIG_CPU_MONAHANS */
writel(LCR_DLAB, BTLCR);
writel(quot & 0xff, BTDLL);
writel(quot >> 8, BTDLH);
writel(LCR_WLS0 | LCR_WLS1, BTLCR);
Markus Klotzbcher
committed
#ifdef CONFIG_CPU_MONAHANS
Markus Klotzbcher
committed
#else
Markus Klotzbcher
committed
#endif /* CONFIG_CPU_MONAHANS */
writel(LCR_DLAB, STLCR);
writel(quot & 0xff, STDLL);
writel(quot >> 8, STDLH);
writel(LCR_WLS0 | LCR_WLS1, STLCR);
default:
hang();
}
}
/*
* Initialise the serial port with the given baudrate. The settings
* are always 8 data bits, no parity, 1 stop bit, no start bits.
*
*/
int pxa_init_dev (unsigned int uart_index)
pxa_setbrg_dev (uart_index);
return (0);
}
/*
* Output a single byte to the serial port.
*/
void pxa_putc_dev (unsigned int uart_index,const char c)
{
switch (uart_index) {
/* wait for room in the tx FIFO on FFUART */
WATCHDOG_RESET (); /* Reset HW Watchdog, if needed */
WATCHDOG_RESET (); /* Reset HW Watchdog, if needed */
WATCHDOG_RESET (); /* Reset HW Watchdog, if needed */
pxa_putc_dev (uart_index,'\r');
}
/*
* Read a single byte from the serial port. Returns 1 on success, 0
* otherwise. When the function is succesfull, the character read is
* written into its argument c.
*/
int pxa_tstc_dev (unsigned int uart_index)
{
switch (uart_index) {
}
/*
* Read a single byte from the serial port. Returns 1 on success, 0
* otherwise. When the function is succesfull, the character read is
* written into its argument c.
*/
int pxa_getc_dev (unsigned int uart_index)
{
switch (uart_index) {
while (!(readl(FFLSR) & LSR_DR))
/* Reset HW Watchdog, if needed */
WATCHDOG_RESET();
return (char) readl(FFRBR) & 0xff;
while (!(readl(BTLSR) & LSR_DR))
/* Reset HW Watchdog, if needed */
WATCHDOG_RESET();
return (char) readl(BTRBR) & 0xff;
while (!(readl(STLSR) & LSR_DR))
/* Reset HW Watchdog, if needed */
WATCHDOG_RESET();
return (char) readl(STRBR) & 0xff;
pxa_puts_dev (unsigned int uart_index,const char *s)
pxa_putc_dev (uart_index,*s++);
#if defined (CONFIG_FFUART)
static int ffuart_init(void)
{
}
static void ffuart_setbrg(void)
{
}
static void ffuart_putc(const char c)
{
}
static void ffuart_puts(const char *s)
{
}
static int ffuart_getc(void)
{
}
static int ffuart_tstc(void)
{
}
struct serial_device serial_ffuart_device =
{
"serial_ffuart",
ffuart_init,
ffuart_setbrg,
ffuart_getc,
ffuart_tstc,
ffuart_putc,
ffuart_puts,
};
#endif
#if defined (CONFIG_BTUART)
static int btuart_init(void)
{
}
static void btuart_setbrg(void)
{
}
static void btuart_putc(const char c)
{
}
static void btuart_puts(const char *s)
{
}
static int btuart_getc(void)
{
}
static int btuart_tstc(void)
{
}
struct serial_device serial_btuart_device =
{
"serial_btuart",
btuart_init,
btuart_setbrg,
btuart_getc,
btuart_tstc,
btuart_putc,
btuart_puts,
};
#endif
#if defined (CONFIG_STUART)
static int stuart_init(void)
{
}
static void stuart_setbrg(void)
{
}
static void stuart_putc(const char c)
{
}
static void stuart_puts(const char *s)
{
}
static int stuart_getc(void)
{
}
static int stuart_tstc(void)
{
}
struct serial_device serial_stuart_device =
{
"serial_stuart",
stuart_init,
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
stuart_setbrg,
stuart_getc,
stuart_tstc,
stuart_putc,
stuart_puts,
};
#endif
#ifndef CONFIG_SERIAL_MULTI
inline int serial_init(void) {
return (pxa_init_dev(UART_INDEX));
}
void serial_setbrg(void) {
pxa_setbrg_dev(UART_INDEX);
}
int serial_getc(void) {
return(pxa_getc_dev(UART_INDEX));
}
int serial_tstc(void) {
return(pxa_tstc_dev(UART_INDEX));
}
void serial_putc(const char c) {
pxa_putc_dev(UART_INDEX,c);
}
void serial_puts(const char *s) {
pxa_puts_dev(UART_INDEX,s);
}
#endif /* CONFIG_SERIAL_MULTI */