blob: 43f58dc69fc93dca30c0a93324f36389ec6cb230 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/serial/cpm_uart.c
3 *
4 * Driver for CPM (SCC/SMC) serial ports; core driver
5 *
6 * Based on arch/ppc/cpm2_io/uart.c by Dan Malek
7 * Based on ppc8xx.c by Thomas Gleixner
8 * Based on drivers/serial/amba.c by Russell King
9 *
Kumar Gala4c8d3d92005-11-13 16:06:30 -080010 * Maintainer: Kumar Gala (galak@kernel.crashing.org) (CPM2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Pantelis Antoniou (panto@intracom.gr) (CPM1)
Kumar Gala311c4622005-08-09 10:08:00 -070012 *
Scott Wood7ae87032007-07-17 17:59:06 -050013 * Copyright (C) 2004, 2007 Freescale Semiconductor, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * (C) 2004 Intracom, S.A.
Vitaly Bordug6e1976962006-04-29 23:06:00 +040015 * (C) 2005-2006 MontaVista Software, Inc.
Kumar Gala0d844062008-06-12 07:53:48 -050016 * Vitaly Bordug <vbordug@ru.mvista.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 *
32 */
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
35#include <linux/tty.h>
36#include <linux/ioport.h>
37#include <linux/init.h>
38#include <linux/serial.h>
39#include <linux/console.h>
40#include <linux/sysrq.h>
41#include <linux/device.h>
42#include <linux/bootmem.h>
43#include <linux/dma-mapping.h>
Vitaly Borduge27987c2006-04-25 20:26:41 +040044#include <linux/fs_uart_pd.h>
Kumar Gala0b2a2e52008-06-12 08:05:09 -050045#include <linux/of_platform.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include <asm/io.h>
48#include <asm/irq.h>
49#include <asm/delay.h>
Vitaly Bordug3dd0dcb2006-09-21 17:27:15 +040050#include <asm/fs_pd.h>
Scott Wood7ae87032007-07-17 17:59:06 -050051#include <asm/udbg.h>
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#if defined(CONFIG_SERIAL_CPM_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
54#define SUPPORT_SYSRQ
55#endif
56
57#include <linux/serial_core.h>
58#include <linux/kernel.h>
59
60#include "cpm_uart.h"
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/**************************************************************/
64
65static int cpm_uart_tx_pump(struct uart_port *port);
66static void cpm_uart_init_smc(struct uart_cpm_port *pinfo);
67static void cpm_uart_init_scc(struct uart_cpm_port *pinfo);
68static void cpm_uart_initbd(struct uart_cpm_port *pinfo);
69
70/**************************************************************/
71
72/*
Kumar Gala311c4622005-08-09 10:08:00 -070073 * Check, if transmit buffers are processed
Linus Torvalds1da177e2005-04-16 15:20:36 -070074*/
75static unsigned int cpm_uart_tx_empty(struct uart_port *port)
76{
77 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
Scott Woodc1dcfd92007-07-24 15:53:07 -050078 cbd_t __iomem *bdp = pinfo->tx_bd_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 int ret = 0;
80
81 while (1) {
Scott Woodc1dcfd92007-07-24 15:53:07 -050082 if (in_be16(&bdp->cbd_sc) & BD_SC_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 break;
84
Scott Woodc1dcfd92007-07-24 15:53:07 -050085 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 ret = TIOCSER_TEMT;
87 break;
88 }
89 bdp++;
90 }
91
92 pr_debug("CPM uart[%d]:tx_empty: %d\n", port->line, ret);
93
94 return ret;
95}
96
97static void cpm_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
98{
99 /* Whee. Do nothing. */
100}
101
102static unsigned int cpm_uart_get_mctrl(struct uart_port *port)
103{
104 /* Whee. Do nothing. */
105 return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
106}
107
108/*
109 * Stop transmitter
110 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100111static void cpm_uart_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500114 smc_t __iomem *smcp = pinfo->smcp;
115 scc_t __iomem *sccp = pinfo->sccp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 pr_debug("CPM uart[%d]:stop tx\n", port->line);
118
119 if (IS_SMC(pinfo))
Scott Woodc1dcfd92007-07-24 15:53:07 -0500120 clrbits8(&smcp->smc_smcm, SMCM_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 else
Scott Woodc1dcfd92007-07-24 15:53:07 -0500122 clrbits16(&sccp->scc_sccm, UART_SCCM_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
125/*
126 * Start transmitter
127 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100128static void cpm_uart_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500131 smc_t __iomem *smcp = pinfo->smcp;
132 scc_t __iomem *sccp = pinfo->sccp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 pr_debug("CPM uart[%d]:start tx\n", port->line);
135
136 if (IS_SMC(pinfo)) {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500137 if (in_8(&smcp->smc_smcm) & SMCM_TX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return;
139 } else {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500140 if (in_be16(&sccp->scc_sccm) & UART_SCCM_TX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return;
142 }
143
144 if (cpm_uart_tx_pump(port) != 0) {
Kumar Gala311c4622005-08-09 10:08:00 -0700145 if (IS_SMC(pinfo)) {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500146 setbits8(&smcp->smc_smcm, SMCM_TX);
Kumar Gala311c4622005-08-09 10:08:00 -0700147 } else {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500148 setbits16(&sccp->scc_sccm, UART_SCCM_TX);
Kumar Gala311c4622005-08-09 10:08:00 -0700149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151}
152
153/*
Kumar Gala311c4622005-08-09 10:08:00 -0700154 * Stop receiver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
156static void cpm_uart_stop_rx(struct uart_port *port)
157{
158 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500159 smc_t __iomem *smcp = pinfo->smcp;
160 scc_t __iomem *sccp = pinfo->sccp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 pr_debug("CPM uart[%d]:stop rx\n", port->line);
163
164 if (IS_SMC(pinfo))
Scott Woodc1dcfd92007-07-24 15:53:07 -0500165 clrbits8(&smcp->smc_smcm, SMCM_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 else
Scott Woodc1dcfd92007-07-24 15:53:07 -0500167 clrbits16(&sccp->scc_sccm, UART_SCCM_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170/*
171 * Enable Modem status interrupts
172 */
173static void cpm_uart_enable_ms(struct uart_port *port)
174{
175 pr_debug("CPM uart[%d]:enable ms\n", port->line);
176}
177
178/*
Kumar Gala311c4622005-08-09 10:08:00 -0700179 * Generate a break.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 */
181static void cpm_uart_break_ctl(struct uart_port *port, int break_state)
182{
183 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 pr_debug("CPM uart[%d]:break ctrl, break_state: %d\n", port->line,
186 break_state);
187
188 if (break_state)
Scott Wood7ae87032007-07-17 17:59:06 -0500189 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 else
Scott Wood7ae87032007-07-17 17:59:06 -0500191 cpm_line_cr_cmd(pinfo, CPM_CR_RESTART_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194/*
195 * Transmit characters, refill buffer descriptor, if possible
196 */
David Howells7d12e782006-10-05 14:55:46 +0100197static void cpm_uart_int_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 pr_debug("CPM uart[%d]:TX INT\n", port->line);
200
201 cpm_uart_tx_pump(port);
202}
203
204/*
205 * Receive characters
206 */
David Howells7d12e782006-10-05 14:55:46 +0100207static void cpm_uart_int_rx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 int i;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500210 unsigned char ch;
211 u8 *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct tty_struct *tty = port->info->tty;
213 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500214 cbd_t __iomem *bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 u16 status;
216 unsigned int flg;
217
218 pr_debug("CPM uart[%d]:RX INT\n", port->line);
219
220 /* Just loop through the closed BDs and copy the characters into
221 * the buffer.
222 */
223 bdp = pinfo->rx_cur;
224 for (;;) {
225 /* get status */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500226 status = in_be16(&bdp->cbd_sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* If this one is empty, return happy */
228 if (status & BD_SC_EMPTY)
229 break;
230
231 /* get number of characters, and check spce in flip-buffer */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500232 i = in_be16(&bdp->cbd_datlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Kumar Gala311c4622005-08-09 10:08:00 -0700234 /* If we have not enough room in tty flip buffer, then we try
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * later, which will be the next rx-interrupt or a timeout
236 */
Vitaly Bordug76a55432006-02-08 21:40:13 +0000237 if(tty_buffer_request_room(tty, i) < i) {
238 printk(KERN_WARNING "No room in flip buffer\n");
239 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241
242 /* get pointer */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500243 cp = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 /* loop through the buffer */
246 while (i-- > 0) {
247 ch = *cp++;
248 port->icount.rx++;
249 flg = TTY_NORMAL;
250
251 if (status &
252 (BD_SC_BR | BD_SC_FR | BD_SC_PR | BD_SC_OV))
253 goto handle_error;
David Howells7d12e782006-10-05 14:55:46 +0100254 if (uart_handle_sysrq_char(port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 continue;
256
257 error_return:
Vitaly Bordug76a55432006-02-08 21:40:13 +0000258 tty_insert_flip_char(tty, ch, flg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 } /* End while (i--) */
261
262 /* This BD is ready to be used again. Clear status. get next */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500263 clrbits16(&bdp->cbd_sc, BD_SC_BR | BD_SC_FR | BD_SC_PR |
264 BD_SC_OV | BD_SC_ID);
265 setbits16(&bdp->cbd_sc, BD_SC_EMPTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Scott Woodc1dcfd92007-07-24 15:53:07 -0500267 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 bdp = pinfo->rx_bd_base;
269 else
270 bdp++;
Kumar Gala311c4622005-08-09 10:08:00 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 } /* End for (;;) */
273
274 /* Write back buffer pointer */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500275 pinfo->rx_cur = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 /* activate BH processing */
278 tty_flip_buffer_push(tty);
279
280 return;
281
282 /* Error processing */
283
284 handle_error:
285 /* Statistics */
286 if (status & BD_SC_BR)
287 port->icount.brk++;
288 if (status & BD_SC_PR)
289 port->icount.parity++;
290 if (status & BD_SC_FR)
291 port->icount.frame++;
292 if (status & BD_SC_OV)
293 port->icount.overrun++;
294
295 /* Mask out ignored conditions */
296 status &= port->read_status_mask;
297
298 /* Handle the remaining ones */
299 if (status & BD_SC_BR)
300 flg = TTY_BREAK;
301 else if (status & BD_SC_PR)
302 flg = TTY_PARITY;
303 else if (status & BD_SC_FR)
304 flg = TTY_FRAME;
305
306 /* overrun does not affect the current character ! */
307 if (status & BD_SC_OV) {
308 ch = 0;
309 flg = TTY_OVERRUN;
310 /* We skip this buffer */
311 /* CHECK: Is really nothing senseful there */
312 /* ASSUMPTION: it contains nothing valid */
313 i = 0;
314 }
315#ifdef SUPPORT_SYSRQ
316 port->sysrq = 0;
317#endif
318 goto error_return;
319}
320
321/*
322 * Asynchron mode interrupt handler
323 */
David Howells7d12e782006-10-05 14:55:46 +0100324static irqreturn_t cpm_uart_int(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 u8 events;
Jeff Garzik15aafa22008-02-06 01:36:20 -0800327 struct uart_port *port = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500329 smc_t __iomem *smcp = pinfo->smcp;
330 scc_t __iomem *sccp = pinfo->sccp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 pr_debug("CPM uart[%d]:IRQ\n", port->line);
333
334 if (IS_SMC(pinfo)) {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500335 events = in_8(&smcp->smc_smce);
336 out_8(&smcp->smc_smce, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (events & SMCM_BRKE)
338 uart_handle_break(port);
339 if (events & SMCM_RX)
David Howells7d12e782006-10-05 14:55:46 +0100340 cpm_uart_int_rx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (events & SMCM_TX)
David Howells7d12e782006-10-05 14:55:46 +0100342 cpm_uart_int_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 } else {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500344 events = in_be16(&sccp->scc_scce);
345 out_be16(&sccp->scc_scce, events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (events & UART_SCCM_BRKE)
347 uart_handle_break(port);
348 if (events & UART_SCCM_RX)
David Howells7d12e782006-10-05 14:55:46 +0100349 cpm_uart_int_rx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (events & UART_SCCM_TX)
David Howells7d12e782006-10-05 14:55:46 +0100351 cpm_uart_int_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353 return (events) ? IRQ_HANDLED : IRQ_NONE;
354}
355
356static int cpm_uart_startup(struct uart_port *port)
357{
358 int retval;
359 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
360
361 pr_debug("CPM uart[%d]:startup\n", port->line);
362
363 /* Install interrupt handler. */
364 retval = request_irq(port->irq, cpm_uart_int, 0, "cpm_uart", port);
365 if (retval)
366 return retval;
367
368 /* Startup rx-int */
369 if (IS_SMC(pinfo)) {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500370 setbits8(&pinfo->smcp->smc_smcm, SMCM_RX);
371 setbits16(&pinfo->smcp->smc_smcmr, (SMCMR_REN | SMCMR_TEN));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 } else {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500373 setbits16(&pinfo->sccp->scc_sccm, UART_SCCM_RX);
374 setbits32(&pinfo->sccp->scc_gsmrl, (SCC_GSMRL_ENR | SCC_GSMRL_ENT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
Kumar Gala311c4622005-08-09 10:08:00 -0700377 if (!(pinfo->flags & FLAG_CONSOLE))
Scott Wood7ae87032007-07-17 17:59:06 -0500378 cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return 0;
380}
381
Kumar Gala311c4622005-08-09 10:08:00 -0700382inline void cpm_uart_wait_until_send(struct uart_cpm_port *pinfo)
383{
Kumar Gala638861d2005-09-03 15:55:37 -0700384 set_current_state(TASK_UNINTERRUPTIBLE);
385 schedule_timeout(pinfo->wait_closing);
Kumar Gala311c4622005-08-09 10:08:00 -0700386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/*
389 * Shutdown the uart
390 */
391static void cpm_uart_shutdown(struct uart_port *port)
392{
393 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 pr_debug("CPM uart[%d]:shutdown\n", port->line);
396
397 /* free interrupt handler */
398 free_irq(port->irq, port);
399
400 /* If the port is not the console, disable Rx and Tx. */
401 if (!(pinfo->flags & FLAG_CONSOLE)) {
Kumar Gala311c4622005-08-09 10:08:00 -0700402 /* Wait for all the BDs marked sent */
Kumar Gala638861d2005-09-03 15:55:37 -0700403 while(!cpm_uart_tx_empty(port)) {
404 set_current_state(TASK_UNINTERRUPTIBLE);
Kumar Gala311c4622005-08-09 10:08:00 -0700405 schedule_timeout(2);
Kumar Gala638861d2005-09-03 15:55:37 -0700406 }
407
408 if (pinfo->wait_closing)
Kumar Gala311c4622005-08-09 10:08:00 -0700409 cpm_uart_wait_until_send(pinfo);
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 /* Stop uarts */
412 if (IS_SMC(pinfo)) {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500413 smc_t __iomem *smcp = pinfo->smcp;
414 clrbits16(&smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
415 clrbits8(&smcp->smc_smcm, SMCM_RX | SMCM_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 } else {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500417 scc_t __iomem *sccp = pinfo->sccp;
418 clrbits32(&sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
419 clrbits16(&sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
422 /* Shut them really down and reinit buffer descriptors */
Vitaly Bordug61f56572006-04-29 22:32:44 +0400423 if (IS_SMC(pinfo))
Scott Wood7ae87032007-07-17 17:59:06 -0500424 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
Vitaly Bordug61f56572006-04-29 22:32:44 +0400425 else
Scott Wood7ae87032007-07-17 17:59:06 -0500426 cpm_line_cr_cmd(pinfo, CPM_CR_GRA_STOP_TX);
Vitaly Bordug61f56572006-04-29 22:32:44 +0400427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 cpm_uart_initbd(pinfo);
429 }
430}
431
432static void cpm_uart_set_termios(struct uart_port *port,
Scott Wood1bda8f32007-05-08 12:19:21 -0500433 struct ktermios *termios,
434 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 int baud;
437 unsigned long flags;
438 u16 cval, scval, prev_mode;
439 int bits, sbits;
440 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500441 smc_t __iomem *smcp = pinfo->smcp;
442 scc_t __iomem *sccp = pinfo->sccp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 pr_debug("CPM uart[%d]:set_termios\n", port->line);
445
446 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
447
448 /* Character length programmed into the mode register is the
449 * sum of: 1 start bit, number of data bits, 0 or 1 parity bit,
450 * 1 or 2 stop bits, minus 1.
451 * The value 'bits' counts this for us.
452 */
453 cval = 0;
454 scval = 0;
455
456 /* byte size */
457 switch (termios->c_cflag & CSIZE) {
458 case CS5:
459 bits = 5;
460 break;
461 case CS6:
462 bits = 6;
463 break;
464 case CS7:
465 bits = 7;
466 break;
467 case CS8:
468 bits = 8;
469 break;
470 /* Never happens, but GCC is too dumb to figure it out */
471 default:
472 bits = 8;
473 break;
474 }
475 sbits = bits - 5;
476
477 if (termios->c_cflag & CSTOPB) {
478 cval |= SMCMR_SL; /* Two stops */
479 scval |= SCU_PSMR_SL;
480 bits++;
481 }
482
483 if (termios->c_cflag & PARENB) {
484 cval |= SMCMR_PEN;
485 scval |= SCU_PSMR_PEN;
486 bits++;
487 if (!(termios->c_cflag & PARODD)) {
488 cval |= SMCMR_PM_EVEN;
489 scval |= (SCU_PSMR_REVP | SCU_PSMR_TEVP);
490 }
491 }
492
493 /*
494 * Set up parity check flag
495 */
496#define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
497
498 port->read_status_mask = (BD_SC_EMPTY | BD_SC_OV);
499 if (termios->c_iflag & INPCK)
500 port->read_status_mask |= BD_SC_FR | BD_SC_PR;
501 if ((termios->c_iflag & BRKINT) || (termios->c_iflag & PARMRK))
502 port->read_status_mask |= BD_SC_BR;
503
504 /*
505 * Characters to ignore
506 */
507 port->ignore_status_mask = 0;
508 if (termios->c_iflag & IGNPAR)
509 port->ignore_status_mask |= BD_SC_PR | BD_SC_FR;
510 if (termios->c_iflag & IGNBRK) {
511 port->ignore_status_mask |= BD_SC_BR;
512 /*
513 * If we're ignore parity and break indicators, ignore
514 * overruns too. (For real raw support).
515 */
516 if (termios->c_iflag & IGNPAR)
517 port->ignore_status_mask |= BD_SC_OV;
518 }
519 /*
520 * !!! ignore all characters if CREAD is not set
521 */
522 if ((termios->c_cflag & CREAD) == 0)
523 port->read_status_mask &= ~BD_SC_EMPTY;
Kumar Gala311c4622005-08-09 10:08:00 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 spin_lock_irqsave(&port->lock, flags);
526
527 /* Start bit has not been added (so don't, because we would just
528 * subtract it later), and we need to add one for the number of
529 * stops bits (there is always at least one).
530 */
531 bits++;
532 if (IS_SMC(pinfo)) {
533 /* Set the mode register. We want to keep a copy of the
534 * enables, because we want to put them back if they were
535 * present.
536 */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500537 prev_mode = in_be16(&smcp->smc_smcmr);
538 out_be16(&smcp->smc_smcmr, smcr_mk_clen(bits) | cval | SMCMR_SM_UART);
539 setbits16(&smcp->smc_smcmr, (prev_mode & (SMCMR_REN | SMCMR_TEN)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 } else {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500541 out_be16(&sccp->scc_psmr, (sbits << 12) | scval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543
544 cpm_set_brg(pinfo->brg - 1, baud);
545 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
548static const char *cpm_uart_type(struct uart_port *port)
549{
550 pr_debug("CPM uart[%d]:uart_type\n", port->line);
551
552 return port->type == PORT_CPM ? "CPM UART" : NULL;
553}
554
555/*
556 * verify the new serial_struct (for TIOCSSERIAL).
557 */
558static int cpm_uart_verify_port(struct uart_port *port,
559 struct serial_struct *ser)
560{
561 int ret = 0;
562
563 pr_debug("CPM uart[%d]:verify_port\n", port->line);
564
565 if (ser->type != PORT_UNKNOWN && ser->type != PORT_CPM)
566 ret = -EINVAL;
567 if (ser->irq < 0 || ser->irq >= NR_IRQS)
568 ret = -EINVAL;
569 if (ser->baud_base < 9600)
570 ret = -EINVAL;
571 return ret;
572}
573
574/*
575 * Transmit characters, refill buffer descriptor, if possible
576 */
577static int cpm_uart_tx_pump(struct uart_port *port)
578{
Scott Woodc1dcfd92007-07-24 15:53:07 -0500579 cbd_t __iomem *bdp;
580 u8 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 int count;
582 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
583 struct circ_buf *xmit = &port->info->xmit;
584
585 /* Handle xon/xoff */
586 if (port->x_char) {
587 /* Pick next descriptor and fill from buffer */
588 bdp = pinfo->tx_cur;
589
Scott Woodc1dcfd92007-07-24 15:53:07 -0500590 p = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
Kumar Gala311c4622005-08-09 10:08:00 -0700591
Aristeu Sergio Rozanski Filho03929c72005-12-29 19:18:49 -0200592 *p++ = port->x_char;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500593
594 out_be16(&bdp->cbd_datlen, 1);
595 setbits16(&bdp->cbd_sc, BD_SC_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /* Get next BD. */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500597 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 bdp = pinfo->tx_bd_base;
599 else
600 bdp++;
601 pinfo->tx_cur = bdp;
602
603 port->icount.tx++;
604 port->x_char = 0;
605 return 1;
606 }
607
608 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100609 cpm_uart_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return 0;
611 }
612
613 /* Pick next descriptor and fill from buffer */
614 bdp = pinfo->tx_cur;
615
Scott Woodc1dcfd92007-07-24 15:53:07 -0500616 while (!(in_be16(&bdp->cbd_sc) & BD_SC_READY) &&
617 xmit->tail != xmit->head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 count = 0;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500619 p = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 while (count < pinfo->tx_fifosize) {
621 *p++ = xmit->buf[xmit->tail];
622 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
623 port->icount.tx++;
624 count++;
625 if (xmit->head == xmit->tail)
626 break;
627 }
Scott Woodc1dcfd92007-07-24 15:53:07 -0500628 out_be16(&bdp->cbd_datlen, count);
629 setbits16(&bdp->cbd_sc, BD_SC_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /* Get next BD. */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500631 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 bdp = pinfo->tx_bd_base;
633 else
634 bdp++;
635 }
636 pinfo->tx_cur = bdp;
637
638 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
639 uart_write_wakeup(port);
640
641 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100642 cpm_uart_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return 0;
644 }
645
646 return 1;
647}
648
649/*
650 * init buffer descriptors
651 */
652static void cpm_uart_initbd(struct uart_cpm_port *pinfo)
653{
654 int i;
655 u8 *mem_addr;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500656 cbd_t __iomem *bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 pr_debug("CPM uart[%d]:initbd\n", pinfo->port.line);
659
660 /* Set the physical address of the host memory
661 * buffers in the buffer descriptors, and the
662 * virtual address for us to work with.
663 */
664 mem_addr = pinfo->mem_addr;
665 bdp = pinfo->rx_cur = pinfo->rx_bd_base;
666 for (i = 0; i < (pinfo->rx_nrfifos - 1); i++, bdp++) {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500667 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
668 out_be16(&bdp->cbd_sc, BD_SC_EMPTY | BD_SC_INTRPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 mem_addr += pinfo->rx_fifosize;
670 }
Kumar Gala311c4622005-08-09 10:08:00 -0700671
Scott Woodc1dcfd92007-07-24 15:53:07 -0500672 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
673 out_be16(&bdp->cbd_sc, BD_SC_WRAP | BD_SC_EMPTY | BD_SC_INTRPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 /* Set the physical address of the host memory
676 * buffers in the buffer descriptors, and the
677 * virtual address for us to work with.
678 */
679 mem_addr = pinfo->mem_addr + L1_CACHE_ALIGN(pinfo->rx_nrfifos * pinfo->rx_fifosize);
680 bdp = pinfo->tx_cur = pinfo->tx_bd_base;
681 for (i = 0; i < (pinfo->tx_nrfifos - 1); i++, bdp++) {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500682 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
683 out_be16(&bdp->cbd_sc, BD_SC_INTRPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 mem_addr += pinfo->tx_fifosize;
685 }
Kumar Gala311c4622005-08-09 10:08:00 -0700686
Scott Woodc1dcfd92007-07-24 15:53:07 -0500687 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
688 out_be16(&bdp->cbd_sc, BD_SC_WRAP | BD_SC_INTRPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
691static void cpm_uart_init_scc(struct uart_cpm_port *pinfo)
692{
Scott Woodc1dcfd92007-07-24 15:53:07 -0500693 scc_t __iomem *scp;
694 scc_uart_t __iomem *sup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 pr_debug("CPM uart[%d]:init_scc\n", pinfo->port.line);
697
698 scp = pinfo->sccp;
699 sup = pinfo->sccup;
700
701 /* Store address */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500702 out_be16(&pinfo->sccup->scc_genscc.scc_rbase,
703 (u8 __iomem *)pinfo->rx_bd_base - DPRAM_BASE);
704 out_be16(&pinfo->sccup->scc_genscc.scc_tbase,
705 (u8 __iomem *)pinfo->tx_bd_base - DPRAM_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 /* Set up the uart parameters in the
708 * parameter ram.
709 */
710
711 cpm_set_scc_fcr(sup);
712
Scott Woodc1dcfd92007-07-24 15:53:07 -0500713 out_be16(&sup->scc_genscc.scc_mrblr, pinfo->rx_fifosize);
714 out_be16(&sup->scc_maxidl, pinfo->rx_fifosize);
715 out_be16(&sup->scc_brkcr, 1);
716 out_be16(&sup->scc_parec, 0);
717 out_be16(&sup->scc_frmec, 0);
718 out_be16(&sup->scc_nosec, 0);
719 out_be16(&sup->scc_brkec, 0);
720 out_be16(&sup->scc_uaddr1, 0);
721 out_be16(&sup->scc_uaddr2, 0);
722 out_be16(&sup->scc_toseq, 0);
723 out_be16(&sup->scc_char1, 0x8000);
724 out_be16(&sup->scc_char2, 0x8000);
725 out_be16(&sup->scc_char3, 0x8000);
726 out_be16(&sup->scc_char4, 0x8000);
727 out_be16(&sup->scc_char5, 0x8000);
728 out_be16(&sup->scc_char6, 0x8000);
729 out_be16(&sup->scc_char7, 0x8000);
730 out_be16(&sup->scc_char8, 0x8000);
731 out_be16(&sup->scc_rccm, 0xc0ff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 /* Send the CPM an initialize command.
734 */
Scott Wood7ae87032007-07-17 17:59:06 -0500735 cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 /* Set UART mode, 8 bit, no parity, one stop.
738 * Enable receive and transmit.
739 */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500740 out_be32(&scp->scc_gsmrh, 0);
741 out_be32(&scp->scc_gsmrl,
742 SCC_GSMRL_MODE_UART | SCC_GSMRL_TDCR_16 | SCC_GSMRL_RDCR_16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 /* Enable rx interrupts and clear all pending events. */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500745 out_be16(&scp->scc_sccm, 0);
746 out_be16(&scp->scc_scce, 0xffff);
747 out_be16(&scp->scc_dsr, 0x7e7e);
748 out_be16(&scp->scc_psmr, 0x3000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Scott Woodc1dcfd92007-07-24 15:53:07 -0500750 setbits32(&scp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
753static void cpm_uart_init_smc(struct uart_cpm_port *pinfo)
754{
Scott Woodc1dcfd92007-07-24 15:53:07 -0500755 smc_t __iomem *sp;
756 smc_uart_t __iomem *up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 pr_debug("CPM uart[%d]:init_smc\n", pinfo->port.line);
759
760 sp = pinfo->smcp;
761 up = pinfo->smcup;
762
763 /* Store address */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500764 out_be16(&pinfo->smcup->smc_rbase,
765 (u8 __iomem *)pinfo->rx_bd_base - DPRAM_BASE);
766 out_be16(&pinfo->smcup->smc_tbase,
767 (u8 __iomem *)pinfo->tx_bd_base - DPRAM_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769/*
770 * In case SMC1 is being relocated...
771 */
772#if defined (CONFIG_I2C_SPI_SMC1_UCODE_PATCH)
Scott Woodc1dcfd92007-07-24 15:53:07 -0500773 out_be16(&up->smc_rbptr, in_be16(&pinfo->smcup->smc_rbase));
774 out_be16(&up->smc_tbptr, in_be16(&pinfo->smcup->smc_tbase));
775 out_be32(&up->smc_rstate, 0);
776 out_be32(&up->smc_tstate, 0);
777 out_be16(&up->smc_brkcr, 1); /* number of break chars */
778 out_be16(&up->smc_brkec, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779#endif
780
781 /* Set up the uart parameters in the
782 * parameter ram.
783 */
784 cpm_set_smc_fcr(up);
785
786 /* Using idle charater time requires some additional tuning. */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500787 out_be16(&up->smc_mrblr, pinfo->rx_fifosize);
788 out_be16(&up->smc_maxidl, pinfo->rx_fifosize);
789 out_be16(&up->smc_brklen, 0);
790 out_be16(&up->smc_brkec, 0);
791 out_be16(&up->smc_brkcr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Scott Wood7ae87032007-07-17 17:59:06 -0500793 cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 /* Set UART mode, 8 bit, no parity, one stop.
796 * Enable receive and transmit.
797 */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500798 out_be16(&sp->smc_smcmr, smcr_mk_clen(9) | SMCMR_SM_UART);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 /* Enable only rx interrupts clear all pending events. */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500801 out_8(&sp->smc_smcm, 0);
802 out_8(&sp->smc_smce, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Scott Woodc1dcfd92007-07-24 15:53:07 -0500804 setbits16(&sp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
807/*
808 * Initialize port. This is called from early_console stuff
809 * so we have to be careful here !
810 */
811static int cpm_uart_request_port(struct uart_port *port)
812{
813 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
814 int ret;
815
816 pr_debug("CPM uart[%d]:request port\n", port->line);
817
818 if (pinfo->flags & FLAG_CONSOLE)
819 return 0;
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (IS_SMC(pinfo)) {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500822 clrbits8(&pinfo->smcp->smc_smcm, SMCM_RX | SMCM_TX);
823 clrbits16(&pinfo->smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 } else {
Scott Woodc1dcfd92007-07-24 15:53:07 -0500825 clrbits16(&pinfo->sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
826 clrbits32(&pinfo->sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828
829 ret = cpm_uart_allocbuf(pinfo, 0);
830
831 if (ret)
832 return ret;
833
834 cpm_uart_initbd(pinfo);
Kumar Gala311c4622005-08-09 10:08:00 -0700835 if (IS_SMC(pinfo))
836 cpm_uart_init_smc(pinfo);
837 else
838 cpm_uart_init_scc(pinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 return 0;
841}
842
843static void cpm_uart_release_port(struct uart_port *port)
844{
845 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
846
847 if (!(pinfo->flags & FLAG_CONSOLE))
848 cpm_uart_freebuf(pinfo);
849}
850
851/*
852 * Configure/autoconfigure the port.
853 */
854static void cpm_uart_config_port(struct uart_port *port, int flags)
855{
856 pr_debug("CPM uart[%d]:config_port\n", port->line);
857
858 if (flags & UART_CONFIG_TYPE) {
859 port->type = PORT_CPM;
860 cpm_uart_request_port(port);
861 }
862}
863static struct uart_ops cpm_uart_pops = {
864 .tx_empty = cpm_uart_tx_empty,
865 .set_mctrl = cpm_uart_set_mctrl,
866 .get_mctrl = cpm_uart_get_mctrl,
867 .stop_tx = cpm_uart_stop_tx,
868 .start_tx = cpm_uart_start_tx,
869 .stop_rx = cpm_uart_stop_rx,
870 .enable_ms = cpm_uart_enable_ms,
871 .break_ctl = cpm_uart_break_ctl,
872 .startup = cpm_uart_startup,
873 .shutdown = cpm_uart_shutdown,
874 .set_termios = cpm_uart_set_termios,
875 .type = cpm_uart_type,
876 .release_port = cpm_uart_release_port,
877 .request_port = cpm_uart_request_port,
878 .config_port = cpm_uart_config_port,
879 .verify_port = cpm_uart_verify_port,
880};
881
Scott Wood7ae87032007-07-17 17:59:06 -0500882struct uart_cpm_port cpm_uart_ports[UART_NR];
883
Scott Woodc1dcfd92007-07-24 15:53:07 -0500884static int cpm_uart_init_port(struct device_node *np,
885 struct uart_cpm_port *pinfo)
Scott Wood7ae87032007-07-17 17:59:06 -0500886{
887 const u32 *data;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500888 void __iomem *mem, *pram;
Scott Wood7ae87032007-07-17 17:59:06 -0500889 int len;
890 int ret;
891
892 data = of_get_property(np, "fsl,cpm-brg", &len);
893 if (!data || len != 4) {
894 printk(KERN_ERR "CPM UART %s has no/invalid "
895 "fsl,cpm-brg property.\n", np->name);
896 return -EINVAL;
897 }
898 pinfo->brg = *data;
899
900 data = of_get_property(np, "fsl,cpm-command", &len);
901 if (!data || len != 4) {
902 printk(KERN_ERR "CPM UART %s has no/invalid "
903 "fsl,cpm-command property.\n", np->name);
904 return -EINVAL;
905 }
906 pinfo->command = *data;
907
908 mem = of_iomap(np, 0);
909 if (!mem)
910 return -ENOMEM;
911
Scott Wood7ae87032007-07-17 17:59:06 -0500912 if (of_device_is_compatible(np, "fsl,cpm1-scc-uart") ||
913 of_device_is_compatible(np, "fsl,cpm2-scc-uart")) {
914 pinfo->sccp = mem;
Laurent Pinchartd464df22008-04-10 17:01:27 +0200915 pinfo->sccup = pram = cpm_uart_map_pram(pinfo, np);
Scott Wood7ae87032007-07-17 17:59:06 -0500916 } else if (of_device_is_compatible(np, "fsl,cpm1-smc-uart") ||
917 of_device_is_compatible(np, "fsl,cpm2-smc-uart")) {
918 pinfo->flags |= FLAG_SMC;
919 pinfo->smcp = mem;
Laurent Pinchartd464df22008-04-10 17:01:27 +0200920 pinfo->smcup = pram = cpm_uart_map_pram(pinfo, np);
Scott Wood7ae87032007-07-17 17:59:06 -0500921 } else {
922 ret = -ENODEV;
Laurent Pinchartd464df22008-04-10 17:01:27 +0200923 goto out_mem;
924 }
925
926 if (!pram) {
927 ret = -ENOMEM;
928 goto out_mem;
Scott Wood7ae87032007-07-17 17:59:06 -0500929 }
930
931 pinfo->tx_nrfifos = TX_NUM_FIFO;
932 pinfo->tx_fifosize = TX_BUF_SIZE;
933 pinfo->rx_nrfifos = RX_NUM_FIFO;
934 pinfo->rx_fifosize = RX_BUF_SIZE;
935
936 pinfo->port.uartclk = ppc_proc_freq;
937 pinfo->port.mapbase = (unsigned long)mem;
938 pinfo->port.type = PORT_CPM;
939 pinfo->port.ops = &cpm_uart_pops,
940 pinfo->port.iotype = UPIO_MEM;
941 spin_lock_init(&pinfo->port.lock);
942
943 pinfo->port.irq = of_irq_to_resource(np, 0, NULL);
944 if (pinfo->port.irq == NO_IRQ) {
945 ret = -EINVAL;
946 goto out_pram;
947 }
948
949 return cpm_uart_request_port(&pinfo->port);
950
951out_pram:
Laurent Pinchartd464df22008-04-10 17:01:27 +0200952 cpm_uart_unmap_pram(pinfo, pram);
Scott Wood7ae87032007-07-17 17:59:06 -0500953out_mem:
954 iounmap(mem);
955 return ret;
956}
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958#ifdef CONFIG_SERIAL_CPM_CONSOLE
959/*
960 * Print a string to the serial port trying not to disturb
961 * any possible real use of the port...
962 *
963 * Note that this is called with interrupts already disabled
964 */
965static void cpm_uart_console_write(struct console *co, const char *s,
966 u_int count)
967{
Scott Wood7ae87032007-07-17 17:59:06 -0500968 struct uart_cpm_port *pinfo = &cpm_uart_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 unsigned int i;
Scott Woodc1dcfd92007-07-24 15:53:07 -0500970 cbd_t __iomem *bdp, *bdbase;
971 unsigned char *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 /* Get the address of the host memory buffer.
974 */
975 bdp = pinfo->tx_cur;
976 bdbase = pinfo->tx_bd_base;
977
978 /*
979 * Now, do each character. This is not as bad as it looks
980 * since this is a holding FIFO and not a transmitting FIFO.
981 * We could add the complexity of filling the entire transmit
982 * buffer, but we would just wait longer between accesses......
983 */
984 for (i = 0; i < count; i++, s++) {
985 /* Wait for transmitter fifo to empty.
986 * Ready indicates output is ready, and xmt is doing
987 * that, not that it is ready for us to send.
988 */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500989 while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 ;
991
992 /* Send the character out.
993 * If the buffer address is in the CPM DPRAM, don't
994 * convert it.
995 */
Scott Woodc1dcfd92007-07-24 15:53:07 -0500996 cp = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 *cp = *s;
998
Scott Woodc1dcfd92007-07-24 15:53:07 -0500999 out_be16(&bdp->cbd_datlen, 1);
1000 setbits16(&bdp->cbd_sc, BD_SC_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Scott Woodc1dcfd92007-07-24 15:53:07 -05001002 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 bdp = bdbase;
1004 else
1005 bdp++;
1006
1007 /* if a LF, also do CR... */
1008 if (*s == 10) {
Scott Woodc1dcfd92007-07-24 15:53:07 -05001009 while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 ;
1011
Scott Woodc1dcfd92007-07-24 15:53:07 -05001012 cp = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 *cp = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Scott Woodc1dcfd92007-07-24 15:53:07 -05001015 out_be16(&bdp->cbd_datlen, 1);
1016 setbits16(&bdp->cbd_sc, BD_SC_READY);
1017
1018 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 bdp = bdbase;
1020 else
1021 bdp++;
1022 }
1023 }
1024
1025 /*
1026 * Finally, Wait for transmitter & holding register to empty
1027 * and restore the IER
1028 */
Scott Woodc1dcfd92007-07-24 15:53:07 -05001029 while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 ;
1031
Scott Woodc1dcfd92007-07-24 15:53:07 -05001032 pinfo->tx_cur = bdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
Vitaly Borduge27987c2006-04-25 20:26:41 +04001035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036static int __init cpm_uart_console_setup(struct console *co, char *options)
1037{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 int baud = 38400;
1039 int bits = 8;
1040 int parity = 'n';
1041 int flow = 'n';
1042 int ret;
Scott Wood7ae87032007-07-17 17:59:06 -05001043 struct uart_cpm_port *pinfo;
1044 struct uart_port *port;
1045
Scott Wood7ae87032007-07-17 17:59:06 -05001046 struct device_node *np = NULL;
1047 int i = 0;
1048
1049 if (co->index >= UART_NR) {
1050 printk(KERN_ERR "cpm_uart: console index %d too high\n",
1051 co->index);
1052 return -ENODEV;
1053 }
1054
1055 do {
1056 np = of_find_node_by_type(np, "serial");
1057 if (!np)
1058 return -ENODEV;
1059
1060 if (!of_device_is_compatible(np, "fsl,cpm1-smc-uart") &&
1061 !of_device_is_compatible(np, "fsl,cpm1-scc-uart") &&
1062 !of_device_is_compatible(np, "fsl,cpm2-smc-uart") &&
1063 !of_device_is_compatible(np, "fsl,cpm2-scc-uart"))
1064 i--;
1065 } while (i++ != co->index);
1066
1067 pinfo = &cpm_uart_ports[co->index];
1068
1069 pinfo->flags |= FLAG_CONSOLE;
1070 port = &pinfo->port;
1071
1072 ret = cpm_uart_init_port(np, pinfo);
1073 of_node_put(np);
1074 if (ret)
1075 return ret;
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (options) {
1078 uart_parse_options(options, &baud, &parity, &bits, &flow);
1079 } else {
Vitaly Bordug3dd0dcb2006-09-21 17:27:15 +04001080 if ((baud = uart_baudrate()) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 baud = 9600;
1082 }
1083
Scott Wood7ae87032007-07-17 17:59:06 -05001084#ifdef CONFIG_PPC_EARLY_DEBUG_CPM
1085 udbg_putc = NULL;
1086#endif
1087
Scott Woodd948a292007-07-17 18:09:33 -05001088 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (IS_SMC(pinfo)) {
Scott Woodc1dcfd92007-07-24 15:53:07 -05001091 clrbits8(&pinfo->smcp->smc_smcm, SMCM_RX | SMCM_TX);
1092 clrbits16(&pinfo->smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 } else {
Scott Woodc1dcfd92007-07-24 15:53:07 -05001094 clrbits16(&pinfo->sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
1095 clrbits32(&pinfo->sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097
1098 ret = cpm_uart_allocbuf(pinfo, 1);
1099
1100 if (ret)
1101 return ret;
1102
1103 cpm_uart_initbd(pinfo);
1104
1105 if (IS_SMC(pinfo))
1106 cpm_uart_init_smc(pinfo);
1107 else
1108 cpm_uart_init_scc(pinfo);
1109
1110 uart_set_options(port, co, baud, parity, bits, flow);
Scott Woodd948a292007-07-17 18:09:33 -05001111 cpm_line_cr_cmd(pinfo, CPM_CR_RESTART_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 return 0;
1114}
1115
Kumar Gala36d2f5a2005-08-09 10:08:02 -07001116static struct uart_driver cpm_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117static struct console cpm_scc_uart_console = {
Kumar Gala36d2f5a2005-08-09 10:08:02 -07001118 .name = "ttyCPM",
1119 .write = cpm_uart_console_write,
1120 .device = uart_console_device,
1121 .setup = cpm_uart_console_setup,
1122 .flags = CON_PRINTBUFFER,
1123 .index = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 .data = &cpm_reg,
1125};
1126
Scott Woodc1dcfd92007-07-24 15:53:07 -05001127static int __init cpm_uart_console_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Vitaly Borduge27987c2006-04-25 20:26:41 +04001129 register_console(&cpm_scc_uart_console);
1130 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
1133console_initcall(cpm_uart_console_init);
1134
1135#define CPM_UART_CONSOLE &cpm_scc_uart_console
1136#else
1137#define CPM_UART_CONSOLE NULL
1138#endif
1139
1140static struct uart_driver cpm_reg = {
1141 .owner = THIS_MODULE,
1142 .driver_name = "ttyCPM",
1143 .dev_name = "ttyCPM",
1144 .major = SERIAL_CPM_MAJOR,
1145 .minor = SERIAL_CPM_MINOR,
1146 .cons = CPM_UART_CONSOLE,
Scott Wood7ae87032007-07-17 17:59:06 -05001147 .nr = UART_NR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148};
Scott Wood7ae87032007-07-17 17:59:06 -05001149
Scott Wood7ae87032007-07-17 17:59:06 -05001150static int probe_index;
1151
1152static int __devinit cpm_uart_probe(struct of_device *ofdev,
1153 const struct of_device_id *match)
1154{
1155 int index = probe_index++;
1156 struct uart_cpm_port *pinfo = &cpm_uart_ports[index];
1157 int ret;
1158
1159 pinfo->port.line = index;
1160
1161 if (index >= UART_NR)
1162 return -ENODEV;
1163
1164 dev_set_drvdata(&ofdev->dev, pinfo);
1165
1166 ret = cpm_uart_init_port(ofdev->node, pinfo);
1167 if (ret)
1168 return ret;
1169
1170 return uart_add_one_port(&cpm_reg, &pinfo->port);
1171}
1172
1173static int __devexit cpm_uart_remove(struct of_device *ofdev)
1174{
1175 struct uart_cpm_port *pinfo = dev_get_drvdata(&ofdev->dev);
1176 return uart_remove_one_port(&cpm_reg, &pinfo->port);
1177}
1178
1179static struct of_device_id cpm_uart_match[] = {
1180 {
1181 .compatible = "fsl,cpm1-smc-uart",
1182 },
1183 {
1184 .compatible = "fsl,cpm1-scc-uart",
1185 },
1186 {
1187 .compatible = "fsl,cpm2-smc-uart",
1188 },
1189 {
1190 .compatible = "fsl,cpm2-scc-uart",
1191 },
1192 {}
1193};
1194
1195static struct of_platform_driver cpm_uart_driver = {
1196 .name = "cpm_uart",
1197 .match_table = cpm_uart_match,
1198 .probe = cpm_uart_probe,
1199 .remove = cpm_uart_remove,
1200 };
1201
1202static int __init cpm_uart_init(void)
1203{
1204 int ret = uart_register_driver(&cpm_reg);
1205 if (ret)
1206 return ret;
1207
1208 ret = of_register_platform_driver(&cpm_uart_driver);
1209 if (ret)
1210 uart_unregister_driver(&cpm_reg);
1211
1212 return ret;
1213}
1214
1215static void __exit cpm_uart_exit(void)
1216{
1217 of_unregister_platform_driver(&cpm_uart_driver);
1218 uart_unregister_driver(&cpm_reg);
1219}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221module_init(cpm_uart_init);
1222module_exit(cpm_uart_exit);
1223
1224MODULE_AUTHOR("Kumar Gala/Antoniou Pantelis");
1225MODULE_DESCRIPTION("CPM SCC/SMC port driver $Revision: 0.01 $");
1226MODULE_LICENSE("GPL");
1227MODULE_ALIAS_CHARDEV(SERIAL_CPM_MAJOR, SERIAL_CPM_MINOR);