wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004, Freescale, Inc |
| 3 | * TsiChung Liew, Tsi-Chung.Liew@freescale.com. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | * |
| 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * Minimal serial functions needed to use one of the PSC ports |
| 27 | * as serial console interface. |
| 28 | */ |
| 29 | |
| 30 | #include <common.h> |
| 31 | #include <mpc8220.h> |
| 32 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 33 | DECLARE_GLOBAL_DATA_PTR; |
| 34 | |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 35 | #define PSC_BASE MMAP_PSC1 |
| 36 | |
| 37 | #if defined(CONFIG_PSC_CONSOLE) |
wdenk | 7680c14 | 2005-05-16 15:23:22 +0000 | [diff] [blame] | 38 | int serial_init (void) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 39 | { |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 40 | volatile psc8220_t *psc = (psc8220_t *) PSC_BASE; |
| 41 | u32 counter; |
| 42 | |
| 43 | /* write to SICR: SIM2 = uart mode,dcd does not affect rx */ |
| 44 | psc->cr = 0; |
| 45 | psc->ipcr_acr = 0; |
| 46 | psc->isr_imr = 0; |
| 47 | |
| 48 | /* write to CSR: RX/TX baud rate from timers */ |
| 49 | psc->sr_csr = 0xdd000000; |
| 50 | |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 51 | psc->mr1_2 = PSC_MR1_BITS_CHAR_8 | PSC_MR1_NO_PARITY | PSC_MR2_STOP_BITS_1; |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 52 | |
| 53 | /* Setting up BaudRate */ |
| 54 | counter = ((gd->bus_clk / gd->baudrate)) >> 5; |
| 55 | counter++; |
| 56 | |
| 57 | /* write to CTUR: divide counter upper byte */ |
| 58 | psc->ctur = ((counter & 0xff00) << 16); |
| 59 | /* write to CTLR: divide counter lower byte */ |
| 60 | psc->ctlr = ((counter & 0x00ff) << 24); |
| 61 | |
| 62 | psc->cr = PSC_CR_RST_RX_CMD; |
| 63 | psc->cr = PSC_CR_RST_TX_CMD; |
| 64 | psc->cr = PSC_CR_RST_ERR_STS_CMD; |
| 65 | psc->cr = PSC_CR_RST_BRK_INT_CMD; |
| 66 | psc->cr = PSC_CR_RST_MR_PTR_CMD; |
| 67 | |
| 68 | psc->cr = PSC_CR_RX_ENABLE | PSC_CR_TX_ENABLE; |
| 69 | return (0); |
| 70 | } |
| 71 | |
wdenk | 7680c14 | 2005-05-16 15:23:22 +0000 | [diff] [blame] | 72 | void serial_putc (const char c) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 73 | { |
| 74 | volatile psc8220_t *psc = (psc8220_t *) PSC_BASE; |
| 75 | |
| 76 | if (c == '\n') |
| 77 | serial_putc ('\r'); |
| 78 | |
| 79 | /* Wait for last character to go. */ |
wdenk | 12b43d5 | 2005-04-05 21:57:18 +0000 | [diff] [blame] | 80 | while (!(psc->sr_csr & PSC_SR_TXRDY)); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 81 | |
| 82 | psc->xmitbuf[0] = c; |
| 83 | } |
| 84 | |
wdenk | 7680c14 | 2005-05-16 15:23:22 +0000 | [diff] [blame] | 85 | void serial_puts (const char *s) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 86 | { |
| 87 | while (*s) { |
| 88 | serial_putc (*s++); |
| 89 | } |
| 90 | } |
| 91 | |
wdenk | 7680c14 | 2005-05-16 15:23:22 +0000 | [diff] [blame] | 92 | int serial_getc (void) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 93 | { |
| 94 | volatile psc8220_t *psc = (psc8220_t *) PSC_BASE; |
| 95 | |
| 96 | /* Wait for a character to arrive. */ |
| 97 | while (!(psc->sr_csr & PSC_SR_RXRDY)); |
| 98 | return psc->xmitbuf[2]; |
| 99 | } |
| 100 | |
wdenk | 7680c14 | 2005-05-16 15:23:22 +0000 | [diff] [blame] | 101 | int serial_tstc (void) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 102 | { |
| 103 | volatile psc8220_t *psc = (psc8220_t *) PSC_BASE; |
| 104 | |
| 105 | return (psc->sr_csr & PSC_SR_RXRDY); |
| 106 | } |
| 107 | |
wdenk | 7680c14 | 2005-05-16 15:23:22 +0000 | [diff] [blame] | 108 | void serial_setbrg (void) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 109 | { |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 110 | volatile psc8220_t *psc = (psc8220_t *) PSC_BASE; |
| 111 | u32 counter; |
| 112 | |
| 113 | counter = ((gd->bus_clk / gd->baudrate)) >> 5; |
| 114 | counter++; |
| 115 | |
| 116 | /* write to CTUR: divide counter upper byte */ |
| 117 | psc->ctur = ((counter & 0xff00) << 16); |
| 118 | /* write to CTLR: divide counter lower byte */ |
| 119 | psc->ctlr = ((counter & 0x00ff) << 24); |
| 120 | |
| 121 | psc->cr = PSC_CR_RST_RX_CMD; |
| 122 | psc->cr = PSC_CR_RST_TX_CMD; |
| 123 | |
| 124 | psc->cr = PSC_CR_RX_ENABLE | PSC_CR_TX_ENABLE; |
| 125 | } |
| 126 | #endif /* CONFIG_PSC_CONSOLE */ |