blob: 09a3df4016215c62ebae83a3e0e9ed5b964034cd [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>
Michael Schwingen009e4642011-05-22 23:59:59 +020033#include <watchdog.h>
Marek Vasutb6cd0fe2012-09-14 22:35:14 +020034#include <serial.h>
35#include <linux/compiler.h>
wdenk2d5b5612003-10-14 19:43:55 +000036
Jean-Christophe PLAGNIOL-VILLARD7b74ebe2007-12-08 16:34:08 +010037/*
38 * 14.7456 MHz
39 * Baud Rate = --------------
40 * 16 x Divisor
41 */
Wolfgang Denk07eb0262008-01-09 13:43:38 +010042#define SERIAL_CLOCK 921600
Jean-Christophe PLAGNIOL-VILLARD7b74ebe2007-12-08 16:34:08 +010043
Wolfgang Denkd87080b2006-03-31 18:32:53 +020044DECLARE_GLOBAL_DATA_PTR;
45
Marek Vasutb6cd0fe2012-09-14 22:35:14 +020046static void ixp_serial_setbrg(void)
wdenk2d5b5612003-10-14 19:43:55 +000047{
wdenk2d5b5612003-10-14 19:43:55 +000048 unsigned int quot = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020049 int uart = CONFIG_SYS_IXP425_CONSOLE;
Wolfgang Denk07eb0262008-01-09 13:43:38 +010050
Jean-Christophe PLAGNIOL-VILLARD7b74ebe2007-12-08 16:34:08 +010051 if ((gd->baudrate <= SERIAL_CLOCK) && (SERIAL_CLOCK % gd->baudrate == 0))
52 quot = SERIAL_CLOCK / gd->baudrate;
wdenk2d5b5612003-10-14 19:43:55 +000053 else
54 hang ();
55
56 IER(uart) = 0; /* Disable for now */
57 FCR(uart) = 0; /* No fifos enabled */
58
59 /* set baud rate */
60 LCR(uart) = LCR_WLS0 | LCR_WLS1 | LCR_DLAB;
61 DLL(uart) = quot & 0xff;
62 DLH(uart) = quot >> 8;
63 LCR(uart) = LCR_WLS0 | LCR_WLS1;
Michael Schwingen96bd4622008-01-10 14:59:46 +010064#ifdef CONFIG_SERIAL_RTS_ACTIVE
65 MCR(uart) = MCR_RTS; /* set RTS active */
66#else
67 MCR(uart) = 0; /* set RTS inactive */
68#endif
wdenk2d5b5612003-10-14 19:43:55 +000069 IER(uart) = IER_UUE;
70}
71
wdenk2d5b5612003-10-14 19:43:55 +000072/*
73 * Initialise the serial port with the given baudrate. The settings
74 * are always 8 data bits, no parity, 1 stop bit, no start bits.
75 *
76 */
Marek Vasutb6cd0fe2012-09-14 22:35:14 +020077static int ixp_serial_init(void)
wdenk2d5b5612003-10-14 19:43:55 +000078{
79 serial_setbrg ();
80
81 return (0);
82}
83
84
85/*
86 * Output a single byte to the serial port.
87 */
Marek Vasutb6cd0fe2012-09-14 22:35:14 +020088static void ixp_serial_putc(const char c)
wdenk2d5b5612003-10-14 19:43:55 +000089{
90 /* wait for room in the tx FIFO on UART */
Michael Schwingen009e4642011-05-22 23:59:59 +020091 while ((LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_TEMT) == 0)
92 WATCHDOG_RESET(); /* Reset HW Watchdog, if needed */
wdenk2d5b5612003-10-14 19:43:55 +000093
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020094 THR(CONFIG_SYS_IXP425_CONSOLE) = c;
wdenk2d5b5612003-10-14 19:43:55 +000095
96 /* If \n, also do \r */
97 if (c == '\n')
98 serial_putc ('\r');
99}
100
101/*
102 * Read a single byte from the serial port. Returns 1 on success, 0
103 * otherwise. When the function is succesfull, the character read is
104 * written into its argument c.
105 */
Marek Vasutb6cd0fe2012-09-14 22:35:14 +0200106static int ixp_serial_tstc(void)
wdenk2d5b5612003-10-14 19:43:55 +0000107{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200108 return LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_DR;
wdenk2d5b5612003-10-14 19:43:55 +0000109}
110
111/*
112 * Read a single byte from the serial port. Returns 1 on success, 0
113 * otherwise. When the function is succesfull, the character read is
114 * written into its argument c.
115 */
Marek Vasutb6cd0fe2012-09-14 22:35:14 +0200116static int ixp_serial_getc(void)
wdenk2d5b5612003-10-14 19:43:55 +0000117{
Michael Schwingen009e4642011-05-22 23:59:59 +0200118 while (!(LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_DR))
119 WATCHDOG_RESET(); /* Reset HW Watchdog, if needed */
wdenk2d5b5612003-10-14 19:43:55 +0000120
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200121 return (char) RBR(CONFIG_SYS_IXP425_CONSOLE) & 0xff;
wdenk2d5b5612003-10-14 19:43:55 +0000122}
123
Marek Vasutb6cd0fe2012-09-14 22:35:14 +0200124static struct serial_device ixp_serial_drv = {
125 .name = "ixp_serial",
126 .start = ixp_serial_init,
127 .stop = NULL,
128 .setbrg = ixp_serial_setbrg,
129 .putc = ixp_serial_putc,
Marek Vasutec3fd682012-10-06 14:07:02 +0000130 .puts = default_serial_puts,
Marek Vasutb6cd0fe2012-09-14 22:35:14 +0200131 .getc = ixp_serial_getc,
132 .tstc = ixp_serial_tstc,
133};
134
135void ixp_serial_initialize(void)
136{
137 serial_register(&ixp_serial_drv);
138}
139
140__weak struct serial_device *default_serial_console(void)
141{
142 return &ixp_serial_drv;
143}