]> git.sur5r.net Git - u-boot/blob - cpu/at91rm9200/serial.c
* Patches by Robert Whaley, 29 Nov 2004:
[u-boot] / cpu / at91rm9200 / serial.c
1 /*
2  * (C) Copyright 2002
3  * Lineo, Inc <www.lineo.com>
4  * Bernhard Kuhn <bkuhn@lineo.com>
5  *
6  * (C) Copyright 2002
7  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8  * Marius Groeger <mgroeger@sysgo.de>
9  *
10  * (C) Copyright 2002
11  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
12  * Alex Zuepke <azu@sysgo.de>
13  *
14  * Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
15  *
16  * This program is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation; either version 2 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program; if not, write to the Free Software
28  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
29  *
30  */
31
32 #include <common.h>
33 #include <asm/io.h>
34 #include <asm/arch/hardware.h>
35
36 #if !defined(CONFIG_DBGU) && !defined(CONFIG_USART0) && !defined(CONFIG_USART1)
37 #error must define one of CONFIG_DBGU or CONFIG_USART0 or CONFIG_USART1
38 #endif
39
40 /* ggi thunder */
41 #ifdef CONFIG_DBGU
42 AT91PS_USART us = (AT91PS_USART) AT91C_BASE_DBGU;
43 #endif
44 #ifdef CONFIG_USART0
45 AT91PS_USART us = (AT91PS_USART) AT91C_BASE_US0;
46 #endif
47 #ifdef CONFIG_USART1
48 AT91PS_USART us = (AT91PS_USART) AT91C_BASE_US1;
49 #endif
50
51 void serial_setbrg (void)
52 {
53         DECLARE_GLOBAL_DATA_PTR;
54         int baudrate;
55
56         if ((baudrate = gd->baudrate) <= 0)
57                 baudrate = CONFIG_BAUDRATE;
58         if (baudrate == 0 || baudrate == CONFIG_BAUDRATE)
59                 us->US_BRGR = CFG_AT91C_BRGR_DIVISOR;   /* hardcode so no __divsi3 */
60         else
61                 /* MASTER_CLOCK/(16 * baudrate) */
62                 us->US_BRGR = (AT91C_MASTER_CLOCK >> 4)/baudrate;
63 }
64
65 int serial_init (void)
66 {
67         /* make any port initializations specific to this port */
68 #ifdef CONFIG_DBGU
69         *AT91C_PIOA_PDR = AT91C_PA31_DTXD | AT91C_PA30_DRXD;    /* PA 31 & 30 */
70         *AT91C_PMC_PCER = 1 << AT91C_ID_SYS;    /* enable clock */
71 #endif
72 #ifdef CONFIG_USART0
73         *AT91C_PIOA_PDR = AT91C_PA17_TXD0 | AT91C_PA18_RXD0;
74         *AT91C_PMC_PCER |= 1 << AT91C_ID_USART0;        /* enable clock */
75 #endif
76 #ifdef CONFIG_USART1
77         *AT91C_PIOB_PDR = AT91C_PB21_TXD1 | AT91C_PB20_RXD1;
78         *AT91C_PMC_PCER |= 1 << AT91C_ID_USART1;        /* enable clock */
79 #endif
80         serial_setbrg ();
81
82         us->US_CR = AT91C_US_RSTRX | AT91C_US_RSTTX;
83         us->US_CR = AT91C_US_RXEN | AT91C_US_TXEN;
84         us->US_MR =
85                 (AT91C_US_CLKS_CLOCK | AT91C_US_CHRL_8_BITS |
86                  AT91C_US_PAR_NONE | AT91C_US_NBSTOP_1_BIT);
87         us->US_IMR = ~0ul;
88         return (0);
89 }
90
91 void serial_putc (const char c)
92 {
93         if (c == '\n')
94                 serial_putc ('\r');
95         while ((us->US_CSR & AT91C_US_TXRDY) == 0);
96         us->US_THR = c;
97 }
98
99 void serial_puts (const char *s)
100 {
101         while (*s) {
102                 serial_putc (*s++);
103         }
104 }
105
106 int serial_getc (void)
107 {
108         while ((us->US_CSR & AT91C_US_RXRDY) == 0);
109         return us->US_RHR;
110 }
111
112 int serial_tstc (void)
113 {
114         return ((us->US_CSR & AT91C_US_RXRDY) == AT91C_US_RXRDY);
115 }