wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 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> |
wdenk | 8dba050 | 2003-03-31 16:34:49 +0000 | [diff] [blame] | 33 | #include <asm/io.h> |
wdenk | bb2d927 | 2003-06-25 22:26:29 +0000 | [diff] [blame] | 34 | #include <asm/arch/hardware.h> |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 35 | |
wdenk | b2fc7e1 | 2004-09-21 23:33:32 +0000 | [diff] [blame^] | 36 | #if !defined(CONFIG_DBGU) && !defined(CONFIG_USART1) |
| 37 | #error must define one of CONFIG_DBGU or CONFIG_USART1 |
| 38 | #endif |
| 39 | |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 40 | /* ggi thunder */ |
wdenk | b2fc7e1 | 2004-09-21 23:33:32 +0000 | [diff] [blame^] | 41 | #ifdef CONFIG_DBGU |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 42 | AT91PS_USART us = (AT91PS_USART) AT91C_BASE_DBGU; |
wdenk | b2fc7e1 | 2004-09-21 23:33:32 +0000 | [diff] [blame^] | 43 | #endif |
| 44 | #ifdef CONFIG_USART1 |
| 45 | AT91PS_USART us = (AT91PS_USART) AT91C_BASE_US1; |
| 46 | #endif |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 47 | |
wdenk | 0ef4946 | 2004-03-15 09:00:01 +0000 | [diff] [blame] | 48 | void serial_setbrg (void) |
| 49 | { |
| 50 | DECLARE_GLOBAL_DATA_PTR; |
| 51 | int baudrate; |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 52 | |
wdenk | 0ef4946 | 2004-03-15 09:00:01 +0000 | [diff] [blame] | 53 | if ((baudrate = gd->bd->bi_baudrate) <= 0) |
| 54 | baudrate = CONFIG_BAUDRATE; |
| 55 | us->US_BRGR = CFG_AT91C_BRGR_DIVISOR; /* hardcode so no __divsi3 */ |
| 56 | } |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 57 | |
wdenk | 0ef4946 | 2004-03-15 09:00:01 +0000 | [diff] [blame] | 58 | int serial_init (void) |
| 59 | { |
| 60 | /* make any port initializations specific to this port */ |
wdenk | b2fc7e1 | 2004-09-21 23:33:32 +0000 | [diff] [blame^] | 61 | #ifdef CONFIG_DBGU |
wdenk | 0ef4946 | 2004-03-15 09:00:01 +0000 | [diff] [blame] | 62 | *AT91C_PIOA_PDR = AT91C_PA31_DTXD | AT91C_PA30_DRXD; /* PA 31 & 30 */ |
| 63 | *AT91C_PMC_PCER = 1 << AT91C_ID_SYS; /* enable clock */ |
wdenk | b2fc7e1 | 2004-09-21 23:33:32 +0000 | [diff] [blame^] | 64 | #endif |
| 65 | #ifdef CONFIG_USART1 |
| 66 | *AT91C_PIOB_PDR = AT91C_PB21_TXD1 | AT91C_PB20_RXD1; |
| 67 | *AT91C_PMC_PCER |= 1 << AT91C_ID_USART1; /* enable clock */ |
| 68 | #endif |
wdenk | 0ef4946 | 2004-03-15 09:00:01 +0000 | [diff] [blame] | 69 | serial_setbrg (); |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 70 | |
wdenk | 0ef4946 | 2004-03-15 09:00:01 +0000 | [diff] [blame] | 71 | us->US_CR = AT91C_US_RSTRX | AT91C_US_RSTTX; |
| 72 | us->US_CR = AT91C_US_RXEN | AT91C_US_TXEN; |
| 73 | us->US_MR = |
| 74 | (AT91C_US_CLKS_CLOCK | AT91C_US_CHRL_8_BITS | |
| 75 | AT91C_US_PAR_NONE | AT91C_US_NBSTOP_1_BIT); |
| 76 | us->US_IMR = ~0ul; |
| 77 | return (0); |
| 78 | } |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 79 | |
wdenk | 0ef4946 | 2004-03-15 09:00:01 +0000 | [diff] [blame] | 80 | void serial_putc (const char c) |
| 81 | { |
| 82 | if (c == '\n') |
| 83 | serial_putc ('\r'); |
| 84 | while ((us->US_CSR & AT91C_US_TXRDY) == 0); |
| 85 | us->US_THR = c; |
| 86 | } |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 87 | |
wdenk | 0ef4946 | 2004-03-15 09:00:01 +0000 | [diff] [blame] | 88 | void serial_puts (const char *s) |
| 89 | { |
| 90 | while (*s) { |
| 91 | serial_putc (*s++); |
| 92 | } |
| 93 | } |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 94 | |
wdenk | 0ef4946 | 2004-03-15 09:00:01 +0000 | [diff] [blame] | 95 | int serial_getc (void) |
| 96 | { |
| 97 | while ((us->US_CSR & AT91C_US_RXRDY) == 0); |
| 98 | return us->US_RHR; |
| 99 | } |
wdenk | c8434db | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 100 | |
wdenk | 0ef4946 | 2004-03-15 09:00:01 +0000 | [diff] [blame] | 101 | int serial_tstc (void) |
| 102 | { |
| 103 | return ((us->US_CSR & AT91C_US_RXRDY) == AT91C_US_RXRDY); |
| 104 | } |