blob: cf520b699ed55a2b56ed8fd1fee14b5ae981ad24 [file] [log] [blame]
wdenk2d5b5612003-10-14 19:43:55 +00001/*
2 * (C) Copyright 2002
3 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
9 * (C) Copyright 2002
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Alex Zuepke <azu@sysgo.de>
12 *
13 * Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 *
29 */
30
31#include <common.h>
32#include <asm/arch/ixp425.h>
33
Jean-Christophe PLAGNIOL-VILLARD7b74ebe2007-12-08 16:34:08 +010034/*
35 * 14.7456 MHz
36 * Baud Rate = --------------
37 * 16 x Divisor
38 */
Wolfgang Denk07eb0262008-01-09 13:43:38 +010039#define SERIAL_CLOCK 921600
Jean-Christophe PLAGNIOL-VILLARD7b74ebe2007-12-08 16:34:08 +010040
Wolfgang Denkd87080b2006-03-31 18:32:53 +020041DECLARE_GLOBAL_DATA_PTR;
42
wdenk2d5b5612003-10-14 19:43:55 +000043void serial_setbrg (void)
44{
wdenk2d5b5612003-10-14 19:43:55 +000045 unsigned int quot = 0;
46 int uart = CFG_IXP425_CONSOLE;
Wolfgang Denk07eb0262008-01-09 13:43:38 +010047
Jean-Christophe PLAGNIOL-VILLARD7b74ebe2007-12-08 16:34:08 +010048 if ((gd->baudrate <= SERIAL_CLOCK) && (SERIAL_CLOCK % gd->baudrate == 0))
49 quot = SERIAL_CLOCK / gd->baudrate;
wdenk2d5b5612003-10-14 19:43:55 +000050 else
51 hang ();
52
53 IER(uart) = 0; /* Disable for now */
54 FCR(uart) = 0; /* No fifos enabled */
55
56 /* set baud rate */
57 LCR(uart) = LCR_WLS0 | LCR_WLS1 | LCR_DLAB;
58 DLL(uart) = quot & 0xff;
59 DLH(uart) = quot >> 8;
60 LCR(uart) = LCR_WLS0 | LCR_WLS1;
61
62 IER(uart) = IER_UUE;
63}
64
wdenk2d5b5612003-10-14 19:43:55 +000065/*
66 * Initialise the serial port with the given baudrate. The settings
67 * are always 8 data bits, no parity, 1 stop bit, no start bits.
68 *
69 */
70int serial_init (void)
71{
72 serial_setbrg ();
73
74 return (0);
75}
76
77
78/*
79 * Output a single byte to the serial port.
80 */
81void serial_putc (const char c)
82{
83 /* wait for room in the tx FIFO on UART */
84 while ((LSR(CFG_IXP425_CONSOLE) & LSR_TEMT) == 0);
85
86 THR(CFG_IXP425_CONSOLE) = c;
87
88 /* If \n, also do \r */
89 if (c == '\n')
90 serial_putc ('\r');
91}
92
93/*
94 * Read a single byte from the serial port. Returns 1 on success, 0
95 * otherwise. When the function is succesfull, the character read is
96 * written into its argument c.
97 */
98int serial_tstc (void)
99{
100 return LSR(CFG_IXP425_CONSOLE) & LSR_DR;
101}
102
103/*
104 * Read a single byte from the serial port. Returns 1 on success, 0
105 * otherwise. When the function is succesfull, the character read is
106 * written into its argument c.
107 */
108int serial_getc (void)
109{
110 while (!(LSR(CFG_IXP425_CONSOLE) & LSR_DR));
111
112 return (char) RBR(CFG_IXP425_CONSOLE) & 0xff;
113}
114
115void
116serial_puts (const char *s)
117{
118 while (*s) {
119 serial_putc (*s++);
120 }
121}