blob: 16ce7700f981456f04d8655e6b281cace7a91122 [file] [log] [blame]
Rafal Jaworowski8993e542007-07-27 14:43:59 +02001/*
Wolfgang Denk843efb12009-05-16 10:47:43 +02002 * (C) Copyright 2000 - 2009
Rafal Jaworowski8993e542007-07-27 14:43:59 +02003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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 * Based ont the MPC5200 PSC driver.
24 * Adapted for MPC512x by Jan Wrobel <wrr@semihalf.com>
25 */
26
27/*
28 * Minimal serial functions needed to use one of the PSC ports
29 * as serial console interface.
30 */
31
32#include <common.h>
Wolfgang Denk843efb12009-05-16 10:47:43 +020033#include <asm/io.h>
34#include <asm/processor.h>
Rafal Jaworowski8993e542007-07-27 14:43:59 +020035
36DECLARE_GLOBAL_DATA_PTR;
37
38#if defined(CONFIG_PSC_CONSOLE)
39
40static void fifo_init (volatile psc512x_t *psc)
41{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020042 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +020043
44 /* reset Rx & Tx fifo slice */
Wolfgang Denk843efb12009-05-16 10:47:43 +020045 out_be32(&psc->rfcmd, PSC_FIFO_RESET_SLICE);
46 out_be32(&psc->tfcmd, PSC_FIFO_RESET_SLICE);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020047
48 /* disable Tx & Rx FIFO interrupts */
Wolfgang Denk843efb12009-05-16 10:47:43 +020049 out_be32(&psc->rfintmask, 0);
50 out_be32(&psc->tfintmask, 0);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020051
Wolfgang Denk843efb12009-05-16 10:47:43 +020052 out_be32(&psc->tfsize, CONSOLE_FIFO_TX_SIZE | (CONSOLE_FIFO_TX_ADDR << 16));
53 out_be32(&psc->rfsize, CONSOLE_FIFO_RX_SIZE | (CONSOLE_FIFO_RX_ADDR << 16));
Rafal Jaworowski8993e542007-07-27 14:43:59 +020054
55 /* enable Tx & Rx FIFO slice */
Wolfgang Denk843efb12009-05-16 10:47:43 +020056 out_be32(&psc->rfcmd, PSC_FIFO_ENABLE_SLICE);
57 out_be32(&psc->tfcmd, PSC_FIFO_ENABLE_SLICE);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020058
Wolfgang Denk843efb12009-05-16 10:47:43 +020059 out_be32(&im->fifoc.fifoc_cmd, FIFOC_DISABLE_CLOCK_GATE);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020060 __asm__ volatile ("sync");
61}
62
63int serial_init(void)
64{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020065 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +020066 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
67 unsigned long baseclk;
68 int div;
69
70 fifo_init (psc);
71
72 /* set MR register to point to MR1 */
Wolfgang Denk843efb12009-05-16 10:47:43 +020073 out_8(&psc->command, PSC_SEL_MODE_REG_1);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020074
75 /* disable Tx/Rx */
Wolfgang Denk843efb12009-05-16 10:47:43 +020076 out_8(&psc->command, PSC_TX_DISABLE | PSC_RX_DISABLE);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020077
78 /* choose the prescaler by 16 for the Tx/Rx clock generation */
Wolfgang Denk843efb12009-05-16 10:47:43 +020079 out_be16(&psc->psc_clock_select, 0xdd00);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020080
81 /* switch to UART mode */
Wolfgang Denk843efb12009-05-16 10:47:43 +020082 out_be32(&psc->sicr, 0);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020083
84 /* mode register points to mr1 */
85 /* configure parity, bit length and so on in mode register 1*/
Wolfgang Denk843efb12009-05-16 10:47:43 +020086 out_8(&psc->mode, PSC_MODE_8_BITS | PSC_MODE_PARNONE);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020087 /* now, mode register points to mr2 */
Wolfgang Denk843efb12009-05-16 10:47:43 +020088 out_8(&psc->mode, PSC_MODE_1_STOPBIT);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020089
90 /* calculate dividor for setting PSC CTUR and CTLR registers */
Grzegorz Bernacki5d49e0e2008-01-11 12:03:43 +010091 baseclk = (gd->ips_clk + 8) / 16;
Rafal Jaworowski8993e542007-07-27 14:43:59 +020092 div = (baseclk + (gd->baudrate / 2)) / gd->baudrate;
93
Wolfgang Denk843efb12009-05-16 10:47:43 +020094 out_8(&psc->ctur, (div >> 8) & 0xff);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020095 /* set baudrate */
Wolfgang Denk843efb12009-05-16 10:47:43 +020096 out_8(&psc->ctlr, div & 0xff);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020097
98 /* disable all interrupts */
Wolfgang Denk843efb12009-05-16 10:47:43 +020099 out_be16(&psc->psc_imr, 0);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200100
101 /* reset and enable Rx/Tx */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200102 out_8(&psc->command, PSC_RST_RX);
103 out_8(&psc->command, PSC_RST_TX);
104 out_8(&psc->command, PSC_RX_ENABLE | PSC_TX_ENABLE);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200105
106 return 0;
107}
108
109void serial_putc (const char c)
110{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200111 volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200112 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
113
114 if (c == '\n')
115 serial_putc ('\r');
116
117 /* Wait for last character to go. */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200118 while (!(in_be16(&psc->psc_status) & PSC_SR_TXEMP))
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200119 ;
120
121 psc->tfdata_8 = c;
122}
123
124void serial_putc_raw (const char c)
125{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200126 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200127 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
128
129 /* Wait for last character to go. */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200130 while (!(in_be16(&psc->psc_status) & PSC_SR_TXEMP))
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200131 ;
132
133 psc->tfdata_8 = c;
134}
135
136
137void serial_puts (const char *s)
138{
139 while (*s) {
140 serial_putc (*s++);
141 }
142}
143
144int serial_getc (void)
145{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200146 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200147 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
148
149 /* Wait for a character to arrive. */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200150 while (in_be32(&psc->rfstat) & PSC_FIFO_EMPTY)
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200151 ;
152
153 return psc->rfdata_8;
154}
155
156int serial_tstc (void)
157{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200158 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200159 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
160
Wolfgang Denk843efb12009-05-16 10:47:43 +0200161 return !(in_be32(&psc->rfstat) & PSC_FIFO_EMPTY);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200162}
163
164void serial_setbrg (void)
165{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200166 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200167 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
168 unsigned long baseclk, div;
169
170 baseclk = (gd->csb_clk + 8) / 16;
171 div = (baseclk + (gd->baudrate / 2)) / gd->baudrate;
172
Wolfgang Denk843efb12009-05-16 10:47:43 +0200173 out_8(&psc->ctur, (div >> 8) & 0xFF);
174 out_8(&psc->ctlr, div & 0xff); /* set baudrate */
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200175}
176
177void serial_setrts(int s)
178{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200179 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200180 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
181
182 if (s) {
183 /* Assert RTS (become LOW) */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200184 out_8(&psc->op1, 0x1);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200185 }
186 else {
187 /* Negate RTS (become HIGH) */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200188 out_8(&psc->op0, 0x1);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200189 }
190}
191
192int serial_getcts(void)
193{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200194 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200195 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
196
Wolfgang Denk843efb12009-05-16 10:47:43 +0200197 return (in_8(&psc->ip) & 0x1) ? 0 : 1;
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200198}
199#endif /* CONFIG_PSC_CONSOLE */