aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial/cpm_uart
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2011-01-13 15:10:18 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-01-13 15:10:18 -0500
commitab4382d27412e7e3e7c936e8d50d8888dfac3df8 (patch)
tree51d96dea2431140358784b6b426715f37f74fd53 /drivers/tty/serial/cpm_uart
parent728674a7e466628df2aeec6d11a2ae1ef968fb67 (diff)
tty: move drivers/serial/ to drivers/tty/serial/
The serial drivers are really just tty drivers, so move them to drivers/tty/ to make things a bit neater overall. This is part of the tty/serial driver movement proceedure as proposed by Arnd Bergmann and approved by everyone involved a number of months ago. Cc: Arnd Bergmann <arnd@arndb.de> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Rogier Wolff <R.E.Wolff@bitwizard.nl> Cc: Michael H. Warfield <mhw@wittsend.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/tty/serial/cpm_uart')
-rw-r--r--drivers/tty/serial/cpm_uart/Makefile11
-rw-r--r--drivers/tty/serial/cpm_uart/cpm_uart.h147
-rw-r--r--drivers/tty/serial/cpm_uart/cpm_uart_core.c1443
-rw-r--r--drivers/tty/serial/cpm_uart/cpm_uart_cpm1.c138
-rw-r--r--drivers/tty/serial/cpm_uart/cpm_uart_cpm1.h34
-rw-r--r--drivers/tty/serial/cpm_uart/cpm_uart_cpm2.c174
-rw-r--r--drivers/tty/serial/cpm_uart/cpm_uart_cpm2.h34
7 files changed, 1981 insertions, 0 deletions
diff --git a/drivers/tty/serial/cpm_uart/Makefile b/drivers/tty/serial/cpm_uart/Makefile
new file mode 100644
index 000000000000..e072724ea754
--- /dev/null
+++ b/drivers/tty/serial/cpm_uart/Makefile
@@ -0,0 +1,11 @@
1#
2# Makefile for the Motorola 8xx FEC ethernet controller
3#
4
5obj-$(CONFIG_SERIAL_CPM) += cpm_uart.o
6
7# Select the correct platform objects.
8cpm_uart-objs-$(CONFIG_CPM2) += cpm_uart_cpm2.o
9cpm_uart-objs-$(CONFIG_8xx) += cpm_uart_cpm1.o
10
11cpm_uart-objs := cpm_uart_core.o $(cpm_uart-objs-y)
diff --git a/drivers/tty/serial/cpm_uart/cpm_uart.h b/drivers/tty/serial/cpm_uart/cpm_uart.h
new file mode 100644
index 000000000000..b754dcf0fda5
--- /dev/null
+++ b/drivers/tty/serial/cpm_uart/cpm_uart.h
@@ -0,0 +1,147 @@
1/*
2 * linux/drivers/serial/cpm_uart.h
3 *
4 * Driver for CPM (SCC/SMC) serial ports
5 *
6 * Copyright (C) 2004 Freescale Semiconductor, Inc.
7 *
8 * 2006 (c) MontaVista Software, Inc.
9 * Vitaly Bordug <vbordug@ru.mvista.com>
10 *
11 * This file is licensed under the terms of the GNU General Public License
12 * version 2. This program is licensed "as is" without any warranty of any
13 * kind, whether express or implied.
14 *
15 */
16#ifndef CPM_UART_H
17#define CPM_UART_H
18
19#include <linux/platform_device.h>
20#include <linux/fs_uart_pd.h>
21
22#if defined(CONFIG_CPM2)
23#include "cpm_uart_cpm2.h"
24#elif defined(CONFIG_8xx)
25#include "cpm_uart_cpm1.h"
26#endif
27
28#define SERIAL_CPM_MAJOR 204
29#define SERIAL_CPM_MINOR 46
30
31#define IS_SMC(pinfo) (pinfo->flags & FLAG_SMC)
32#define IS_DISCARDING(pinfo) (pinfo->flags & FLAG_DISCARDING)
33#define FLAG_DISCARDING 0x00000004 /* when set, don't discard */
34#define FLAG_SMC 0x00000002
35#define FLAG_CONSOLE 0x00000001
36
37#define UART_SMC1 fsid_smc1_uart
38#define UART_SMC2 fsid_smc2_uart
39#define UART_SCC1 fsid_scc1_uart
40#define UART_SCC2 fsid_scc2_uart
41#define UART_SCC3 fsid_scc3_uart
42#define UART_SCC4 fsid_scc4_uart
43
44#define UART_NR fs_uart_nr
45
46#define RX_NUM_FIFO 4
47#define RX_BUF_SIZE 32
48#define TX_NUM_FIFO 4
49#define TX_BUF_SIZE 32
50
51#define SCC_WAIT_CLOSING 100
52
53#define GPIO_CTS 0
54#define GPIO_RTS 1
55#define GPIO_DCD 2
56#define GPIO_DSR 3
57#define GPIO_DTR 4
58#define GPIO_RI 5
59
60#define NUM_GPIOS (GPIO_RI+1)
61
62struct uart_cpm_port {
63 struct uart_port port;
64 u16 rx_nrfifos;
65 u16 rx_fifosize;
66 u16 tx_nrfifos;
67 u16 tx_fifosize;
68 smc_t __iomem *smcp;
69 smc_uart_t __iomem *smcup;
70 scc_t __iomem *sccp;
71 scc_uart_t __iomem *sccup;
72 cbd_t __iomem *rx_bd_base;
73 cbd_t __iomem *rx_cur;
74 cbd_t __iomem *tx_bd_base;
75 cbd_t __iomem *tx_cur;
76 unsigned char *tx_buf;
77 unsigned char *rx_buf;
78 u32 flags;
79 struct clk *clk;
80 u8 brg;
81 uint dp_addr;
82 void *mem_addr;
83 dma_addr_t dma_addr;
84 u32 mem_size;
85 /* wait on close if needed */
86 int wait_closing;
87 /* value to combine with opcode to form cpm command */
88 u32 command;
89 int gpios[NUM_GPIOS];
90};
91
92extern int cpm_uart_nr;
93extern struct uart_cpm_port cpm_uart_ports[UART_NR];
94
95/* these are located in their respective files */
96void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd);
97void __iomem *cpm_uart_map_pram(struct uart_cpm_port *port,
98 struct device_node *np);
99void cpm_uart_unmap_pram(struct uart_cpm_port *port, void __iomem *pram);
100int cpm_uart_init_portdesc(void);
101int cpm_uart_allocbuf(struct uart_cpm_port *pinfo, unsigned int is_con);
102void cpm_uart_freebuf(struct uart_cpm_port *pinfo);
103
104void smc1_lineif(struct uart_cpm_port *pinfo);
105void smc2_lineif(struct uart_cpm_port *pinfo);
106void scc1_lineif(struct uart_cpm_port *pinfo);
107void scc2_lineif(struct uart_cpm_port *pinfo);
108void scc3_lineif(struct uart_cpm_port *pinfo);
109void scc4_lineif(struct uart_cpm_port *pinfo);
110
111/*
112 virtual to phys transtalion
113*/
114static inline unsigned long cpu2cpm_addr(void *addr,
115 struct uart_cpm_port *pinfo)
116{
117 int offset;
118 u32 val = (u32)addr;
119 u32 mem = (u32)pinfo->mem_addr;
120 /* sane check */
121 if (likely(val >= mem && val < mem + pinfo->mem_size)) {
122 offset = val - mem;
123 return pinfo->dma_addr + offset;
124 }
125 /* something nasty happened */
126 BUG();
127 return 0;
128}
129
130static inline void *cpm2cpu_addr(unsigned long addr,
131 struct uart_cpm_port *pinfo)
132{
133 int offset;
134 u32 val = addr;
135 u32 dma = (u32)pinfo->dma_addr;
136 /* sane check */
137 if (likely(val >= dma && val < dma + pinfo->mem_size)) {
138 offset = val - dma;
139 return pinfo->mem_addr + offset;
140 }
141 /* something nasty happened */
142 BUG();
143 return NULL;
144}
145
146
147#endif /* CPM_UART_H */
diff --git a/drivers/tty/serial/cpm_uart/cpm_uart_core.c b/drivers/tty/serial/cpm_uart/cpm_uart_core.c
new file mode 100644
index 000000000000..8692ff98fc07
--- /dev/null
+++ b/drivers/tty/serial/cpm_uart/cpm_uart_core.c
@@ -0,0 +1,1443 @@
1/*
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 *
10 * Maintainer: Kumar Gala (galak@kernel.crashing.org) (CPM2)
11 * Pantelis Antoniou (panto@intracom.gr) (CPM1)
12 *
13 * Copyright (C) 2004, 2007 Freescale Semiconductor, Inc.
14 * (C) 2004 Intracom, S.A.
15 * (C) 2005-2006 MontaVista Software, Inc.
16 * Vitaly Bordug <vbordug@ru.mvista.com>
17 *
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
34#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>
44#include <linux/fs_uart_pd.h>
45#include <linux/of_platform.h>
46#include <linux/gpio.h>
47#include <linux/of_gpio.h>
48#include <linux/clk.h>
49
50#include <asm/io.h>
51#include <asm/irq.h>
52#include <asm/delay.h>
53#include <asm/fs_pd.h>
54#include <asm/udbg.h>
55
56#if defined(CONFIG_SERIAL_CPM_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
57#define SUPPORT_SYSRQ
58#endif
59
60#include <linux/serial_core.h>
61#include <linux/kernel.h>
62
63#include "cpm_uart.h"
64
65
66/**************************************************************/
67
68static int cpm_uart_tx_pump(struct uart_port *port);
69static void cpm_uart_init_smc(struct uart_cpm_port *pinfo);
70static void cpm_uart_init_scc(struct uart_cpm_port *pinfo);
71static void cpm_uart_initbd(struct uart_cpm_port *pinfo);
72
73/**************************************************************/
74
75#define HW_BUF_SPD_THRESHOLD 9600
76
77/*
78 * Check, if transmit buffers are processed
79*/
80static unsigned int cpm_uart_tx_empty(struct uart_port *port)
81{
82 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
83 cbd_t __iomem *bdp = pinfo->tx_bd_base;
84 int ret = 0;
85
86 while (1) {
87 if (in_be16(&bdp->cbd_sc) & BD_SC_READY)
88 break;
89
90 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP) {
91 ret = TIOCSER_TEMT;
92 break;
93 }
94 bdp++;
95 }
96
97 pr_debug("CPM uart[%d]:tx_empty: %d\n", port->line, ret);
98
99 return ret;
100}
101
102static void cpm_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
103{
104 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
105
106 if (pinfo->gpios[GPIO_RTS] >= 0)
107 gpio_set_value(pinfo->gpios[GPIO_RTS], !(mctrl & TIOCM_RTS));
108
109 if (pinfo->gpios[GPIO_DTR] >= 0)
110 gpio_set_value(pinfo->gpios[GPIO_DTR], !(mctrl & TIOCM_DTR));
111}
112
113static unsigned int cpm_uart_get_mctrl(struct uart_port *port)
114{
115 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
116 unsigned int mctrl = TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
117
118 if (pinfo->gpios[GPIO_CTS] >= 0) {
119 if (gpio_get_value(pinfo->gpios[GPIO_CTS]))
120 mctrl &= ~TIOCM_CTS;
121 }
122
123 if (pinfo->gpios[GPIO_DSR] >= 0) {
124 if (gpio_get_value(pinfo->gpios[GPIO_DSR]))
125 mctrl &= ~TIOCM_DSR;
126 }
127
128 if (pinfo->gpios[GPIO_DCD] >= 0) {
129 if (gpio_get_value(pinfo->gpios[GPIO_DCD]))
130 mctrl &= ~TIOCM_CAR;
131 }
132
133 if (pinfo->gpios[GPIO_RI] >= 0) {
134 if (!gpio_get_value(pinfo->gpios[GPIO_RI]))
135 mctrl |= TIOCM_RNG;
136 }
137
138 return mctrl;
139}
140
141/*
142 * Stop transmitter
143 */
144static void cpm_uart_stop_tx(struct uart_port *port)
145{
146 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
147 smc_t __iomem *smcp = pinfo->smcp;
148 scc_t __iomem *sccp = pinfo->sccp;
149
150 pr_debug("CPM uart[%d]:stop tx\n", port->line);
151
152 if (IS_SMC(pinfo))
153 clrbits8(&smcp->smc_smcm, SMCM_TX);
154 else
155 clrbits16(&sccp->scc_sccm, UART_SCCM_TX);
156}
157
158/*
159 * Start transmitter
160 */
161static void cpm_uart_start_tx(struct uart_port *port)
162{
163 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
164 smc_t __iomem *smcp = pinfo->smcp;
165 scc_t __iomem *sccp = pinfo->sccp;
166
167 pr_debug("CPM uart[%d]:start tx\n", port->line);
168
169 if (IS_SMC(pinfo)) {
170 if (in_8(&smcp->smc_smcm) & SMCM_TX)
171 return;
172 } else {
173 if (in_be16(&sccp->scc_sccm) & UART_SCCM_TX)
174 return;
175 }
176
177 if (cpm_uart_tx_pump(port) != 0) {
178 if (IS_SMC(pinfo)) {
179 setbits8(&smcp->smc_smcm, SMCM_TX);
180 } else {
181 setbits16(&sccp->scc_sccm, UART_SCCM_TX);
182 }
183 }
184}
185
186/*
187 * Stop receiver
188 */
189static void cpm_uart_stop_rx(struct uart_port *port)
190{
191 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
192 smc_t __iomem *smcp = pinfo->smcp;
193 scc_t __iomem *sccp = pinfo->sccp;
194
195 pr_debug("CPM uart[%d]:stop rx\n", port->line);
196
197 if (IS_SMC(pinfo))
198 clrbits8(&smcp->smc_smcm, SMCM_RX);
199 else
200 clrbits16(&sccp->scc_sccm, UART_SCCM_RX);
201}
202
203/*
204 * Enable Modem status interrupts
205 */
206static void cpm_uart_enable_ms(struct uart_port *port)
207{
208 pr_debug("CPM uart[%d]:enable ms\n", port->line);
209}
210
211/*
212 * Generate a break.
213 */
214static void cpm_uart_break_ctl(struct uart_port *port, int break_state)
215{
216 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
217
218 pr_debug("CPM uart[%d]:break ctrl, break_state: %d\n", port->line,
219 break_state);
220
221 if (break_state)
222 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
223 else
224 cpm_line_cr_cmd(pinfo, CPM_CR_RESTART_TX);
225}
226
227/*
228 * Transmit characters, refill buffer descriptor, if possible
229 */
230static void cpm_uart_int_tx(struct uart_port *port)
231{
232 pr_debug("CPM uart[%d]:TX INT\n", port->line);
233
234 cpm_uart_tx_pump(port);
235}
236
237#ifdef CONFIG_CONSOLE_POLL
238static int serial_polled;
239#endif
240
241/*
242 * Receive characters
243 */
244static void cpm_uart_int_rx(struct uart_port *port)
245{
246 int i;
247 unsigned char ch;
248 u8 *cp;
249 struct tty_struct *tty = port->state->port.tty;
250 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
251 cbd_t __iomem *bdp;
252 u16 status;
253 unsigned int flg;
254
255 pr_debug("CPM uart[%d]:RX INT\n", port->line);
256
257 /* Just loop through the closed BDs and copy the characters into
258 * the buffer.
259 */
260 bdp = pinfo->rx_cur;
261 for (;;) {
262#ifdef CONFIG_CONSOLE_POLL
263 if (unlikely(serial_polled)) {
264 serial_polled = 0;
265 return;
266 }
267#endif
268 /* get status */
269 status = in_be16(&bdp->cbd_sc);
270 /* If this one is empty, return happy */
271 if (status & BD_SC_EMPTY)
272 break;
273
274 /* get number of characters, and check spce in flip-buffer */
275 i = in_be16(&bdp->cbd_datlen);
276
277 /* If we have not enough room in tty flip buffer, then we try
278 * later, which will be the next rx-interrupt or a timeout
279 */
280 if(tty_buffer_request_room(tty, i) < i) {
281 printk(KERN_WARNING "No room in flip buffer\n");
282 return;
283 }
284
285 /* get pointer */
286 cp = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
287
288 /* loop through the buffer */
289 while (i-- > 0) {
290 ch = *cp++;
291 port->icount.rx++;
292 flg = TTY_NORMAL;
293
294 if (status &
295 (BD_SC_BR | BD_SC_FR | BD_SC_PR | BD_SC_OV))
296 goto handle_error;
297 if (uart_handle_sysrq_char(port, ch))
298 continue;
299#ifdef CONFIG_CONSOLE_POLL
300 if (unlikely(serial_polled)) {
301 serial_polled = 0;
302 return;
303 }
304#endif
305 error_return:
306 tty_insert_flip_char(tty, ch, flg);
307
308 } /* End while (i--) */
309
310 /* This BD is ready to be used again. Clear status. get next */
311 clrbits16(&bdp->cbd_sc, BD_SC_BR | BD_SC_FR | BD_SC_PR |
312 BD_SC_OV | BD_SC_ID);
313 setbits16(&bdp->cbd_sc, BD_SC_EMPTY);
314
315 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
316 bdp = pinfo->rx_bd_base;
317 else
318 bdp++;
319
320 } /* End for (;;) */
321
322 /* Write back buffer pointer */
323 pinfo->rx_cur = bdp;
324
325 /* activate BH processing */
326 tty_flip_buffer_push(tty);
327
328 return;
329
330 /* Error processing */
331
332 handle_error:
333 /* Statistics */
334 if (status & BD_SC_BR)
335 port->icount.brk++;
336 if (status & BD_SC_PR)
337 port->icount.parity++;
338 if (status & BD_SC_FR)
339 port->icount.frame++;
340 if (status & BD_SC_OV)
341 port->icount.overrun++;
342
343 /* Mask out ignored conditions */
344 status &= port->read_status_mask;
345
346 /* Handle the remaining ones */
347 if (status & BD_SC_BR)
348 flg = TTY_BREAK;
349 else if (status & BD_SC_PR)
350 flg = TTY_PARITY;
351 else if (status & BD_SC_FR)
352 flg = TTY_FRAME;
353
354 /* overrun does not affect the current character ! */
355 if (status & BD_SC_OV) {
356 ch = 0;
357 flg = TTY_OVERRUN;
358 /* We skip this buffer */
359 /* CHECK: Is really nothing senseful there */
360 /* ASSUMPTION: it contains nothing valid */
361 i = 0;
362 }
363#ifdef SUPPORT_SYSRQ
364 port->sysrq = 0;
365#endif
366 goto error_return;
367}
368
369/*
370 * Asynchron mode interrupt handler
371 */
372static irqreturn_t cpm_uart_int(int irq, void *data)
373{
374 u8 events;
375 struct uart_port *port = data;
376 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
377 smc_t __iomem *smcp = pinfo->smcp;
378 scc_t __iomem *sccp = pinfo->sccp;
379
380 pr_debug("CPM uart[%d]:IRQ\n", port->line);
381
382 if (IS_SMC(pinfo)) {
383 events = in_8(&smcp->smc_smce);
384 out_8(&smcp->smc_smce, events);
385 if (events & SMCM_BRKE)
386 uart_handle_break(port);
387 if (events & SMCM_RX)
388 cpm_uart_int_rx(port);
389 if (events & SMCM_TX)
390 cpm_uart_int_tx(port);
391 } else {
392 events = in_be16(&sccp->scc_scce);
393 out_be16(&sccp->scc_scce, events);
394 if (events & UART_SCCM_BRKE)
395 uart_handle_break(port);
396 if (events & UART_SCCM_RX)
397 cpm_uart_int_rx(port);
398 if (events & UART_SCCM_TX)
399 cpm_uart_int_tx(port);
400 }
401 return (events) ? IRQ_HANDLED : IRQ_NONE;
402}
403
404static int cpm_uart_startup(struct uart_port *port)
405{
406 int retval;
407 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
408
409 pr_debug("CPM uart[%d]:startup\n", port->line);
410
411 /* If the port is not the console, make sure rx is disabled. */
412 if (!(pinfo->flags & FLAG_CONSOLE)) {
413 /* Disable UART rx */
414 if (IS_SMC(pinfo)) {
415 clrbits16(&pinfo->smcp->smc_smcmr, SMCMR_REN);
416 clrbits8(&pinfo->smcp->smc_smcm, SMCM_RX);
417 } else {
418 clrbits32(&pinfo->sccp->scc_gsmrl, SCC_GSMRL_ENR);
419 clrbits16(&pinfo->sccp->scc_sccm, UART_SCCM_RX);
420 }
421 cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
422 }
423 /* Install interrupt handler. */
424 retval = request_irq(port->irq, cpm_uart_int, 0, "cpm_uart", port);
425 if (retval)
426 return retval;
427
428 /* Startup rx-int */
429 if (IS_SMC(pinfo)) {
430 setbits8(&pinfo->smcp->smc_smcm, SMCM_RX);
431 setbits16(&pinfo->smcp->smc_smcmr, (SMCMR_REN | SMCMR_TEN));
432 } else {
433 setbits16(&pinfo->sccp->scc_sccm, UART_SCCM_RX);
434 setbits32(&pinfo->sccp->scc_gsmrl, (SCC_GSMRL_ENR | SCC_GSMRL_ENT));
435 }
436
437 return 0;
438}
439
440inline void cpm_uart_wait_until_send(struct uart_cpm_port *pinfo)
441{
442 set_current_state(TASK_UNINTERRUPTIBLE);
443 schedule_timeout(pinfo->wait_closing);
444}
445
446/*
447 * Shutdown the uart
448 */
449static void cpm_uart_shutdown(struct uart_port *port)
450{
451 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
452
453 pr_debug("CPM uart[%d]:shutdown\n", port->line);
454
455 /* free interrupt handler */
456 free_irq(port->irq, port);
457
458 /* If the port is not the console, disable Rx and Tx. */
459 if (!(pinfo->flags & FLAG_CONSOLE)) {
460 /* Wait for all the BDs marked sent */
461 while(!cpm_uart_tx_empty(port)) {
462 set_current_state(TASK_UNINTERRUPTIBLE);
463 schedule_timeout(2);
464 }
465
466 if (pinfo->wait_closing)
467 cpm_uart_wait_until_send(pinfo);
468
469 /* Stop uarts */
470 if (IS_SMC(pinfo)) {
471 smc_t __iomem *smcp = pinfo->smcp;
472 clrbits16(&smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
473 clrbits8(&smcp->smc_smcm, SMCM_RX | SMCM_TX);
474 } else {
475 scc_t __iomem *sccp = pinfo->sccp;
476 clrbits32(&sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
477 clrbits16(&sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
478 }
479
480 /* Shut them really down and reinit buffer descriptors */
481 if (IS_SMC(pinfo)) {
482 out_be16(&pinfo->smcup->smc_brkcr, 0);
483 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
484 } else {
485 out_be16(&pinfo->sccup->scc_brkcr, 0);
486 cpm_line_cr_cmd(pinfo, CPM_CR_GRA_STOP_TX);
487 }
488
489 cpm_uart_initbd(pinfo);
490 }
491}
492
493static void cpm_uart_set_termios(struct uart_port *port,
494 struct ktermios *termios,
495 struct ktermios *old)
496{
497 int baud;
498 unsigned long flags;
499 u16 cval, scval, prev_mode;
500 int bits, sbits;
501 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
502 smc_t __iomem *smcp = pinfo->smcp;
503 scc_t __iomem *sccp = pinfo->sccp;
504
505 pr_debug("CPM uart[%d]:set_termios\n", port->line);
506
507 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
508 if (baud <= HW_BUF_SPD_THRESHOLD ||
509 (pinfo->port.state && pinfo->port.state->port.tty->low_latency))
510 pinfo->rx_fifosize = 1;
511 else
512 pinfo->rx_fifosize = RX_BUF_SIZE;
513
514 /* Character length programmed into the mode register is the
515 * sum of: 1 start bit, number of data bits, 0 or 1 parity bit,
516 * 1 or 2 stop bits, minus 1.
517 * The value 'bits' counts this for us.
518 */
519 cval = 0;
520 scval = 0;
521
522 /* byte size */
523 switch (termios->c_cflag & CSIZE) {
524 case CS5:
525 bits = 5;
526 break;
527 case CS6:
528 bits = 6;
529 break;
530 case CS7:
531 bits = 7;
532 break;
533 case CS8:
534 bits = 8;
535 break;
536 /* Never happens, but GCC is too dumb to figure it out */
537 default:
538 bits = 8;
539 break;
540 }
541 sbits = bits - 5;
542
543 if (termios->c_cflag & CSTOPB) {
544 cval |= SMCMR_SL; /* Two stops */
545 scval |= SCU_PSMR_SL;
546 bits++;
547 }
548
549 if (termios->c_cflag & PARENB) {
550 cval |= SMCMR_PEN;
551 scval |= SCU_PSMR_PEN;
552 bits++;
553 if (!(termios->c_cflag & PARODD)) {
554 cval |= SMCMR_PM_EVEN;
555 scval |= (SCU_PSMR_REVP | SCU_PSMR_TEVP);
556 }
557 }
558
559 /*
560 * Update the timeout
561 */
562 uart_update_timeout(port, termios->c_cflag, baud);
563
564 /*
565 * Set up parity check flag
566 */
567#define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
568
569 port->read_status_mask = (BD_SC_EMPTY | BD_SC_OV);
570 if (termios->c_iflag & INPCK)
571 port->read_status_mask |= BD_SC_FR | BD_SC_PR;
572 if ((termios->c_iflag & BRKINT) || (termios->c_iflag & PARMRK))
573 port->read_status_mask |= BD_SC_BR;
574
575 /*
576 * Characters to ignore
577 */
578 port->ignore_status_mask = 0;
579 if (termios->c_iflag & IGNPAR)
580 port->ignore_status_mask |= BD_SC_PR | BD_SC_FR;
581 if (termios->c_iflag & IGNBRK) {
582 port->ignore_status_mask |= BD_SC_BR;
583 /*
584 * If we're ignore parity and break indicators, ignore
585 * overruns too. (For real raw support).
586 */
587 if (termios->c_iflag & IGNPAR)
588 port->ignore_status_mask |= BD_SC_OV;
589 }
590 /*
591 * !!! ignore all characters if CREAD is not set
592 */
593 if ((termios->c_cflag & CREAD) == 0)
594 port->read_status_mask &= ~BD_SC_EMPTY;
595
596 spin_lock_irqsave(&port->lock, flags);
597
598 /* Start bit has not been added (so don't, because we would just
599 * subtract it later), and we need to add one for the number of
600 * stops bits (there is always at least one).
601 */
602 bits++;
603 if (IS_SMC(pinfo)) {
604 /*
605 * MRBLR can be changed while an SMC/SCC is operating only
606 * if it is done in a single bus cycle with one 16-bit move
607 * (not two 8-bit bus cycles back-to-back). This occurs when
608 * the cp shifts control to the next RxBD, so the change does
609 * not take effect immediately. To guarantee the exact RxBD
610 * on which the change occurs, change MRBLR only while the
611 * SMC/SCC receiver is disabled.
612 */
613 out_be16(&pinfo->smcup->smc_mrblr, pinfo->rx_fifosize);
614
615 /* Set the mode register. We want to keep a copy of the
616 * enables, because we want to put them back if they were
617 * present.
618 */
619 prev_mode = in_be16(&smcp->smc_smcmr) & (SMCMR_REN | SMCMR_TEN);
620 /* Output in *one* operation, so we don't interrupt RX/TX if they
621 * were already enabled. */
622 out_be16(&smcp->smc_smcmr, smcr_mk_clen(bits) | cval |
623 SMCMR_SM_UART | prev_mode);
624 } else {
625 out_be16(&pinfo->sccup->scc_genscc.scc_mrblr, pinfo->rx_fifosize);
626 out_be16(&sccp->scc_psmr, (sbits << 12) | scval);
627 }
628
629 if (pinfo->clk)
630 clk_set_rate(pinfo->clk, baud);
631 else
632 cpm_set_brg(pinfo->brg - 1, baud);
633 spin_unlock_irqrestore(&port->lock, flags);
634}
635
636static const char *cpm_uart_type(struct uart_port *port)
637{
638 pr_debug("CPM uart[%d]:uart_type\n", port->line);
639
640 return port->type == PORT_CPM ? "CPM UART" : NULL;
641}
642
643/*
644 * verify the new serial_struct (for TIOCSSERIAL).
645 */
646static int cpm_uart_verify_port(struct uart_port *port,
647 struct serial_struct *ser)
648{
649 int ret = 0;
650
651 pr_debug("CPM uart[%d]:verify_port\n", port->line);
652
653 if (ser->type != PORT_UNKNOWN && ser->type != PORT_CPM)
654 ret = -EINVAL;
655 if (ser->irq < 0 || ser->irq >= nr_irqs)
656 ret = -EINVAL;
657 if (ser->baud_base < 9600)
658 ret = -EINVAL;
659 return ret;
660}
661
662/*
663 * Transmit characters, refill buffer descriptor, if possible
664 */
665static int cpm_uart_tx_pump(struct uart_port *port)
666{
667 cbd_t __iomem *bdp;
668 u8 *p;
669 int count;
670 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
671 struct circ_buf *xmit = &port->state->xmit;
672
673 /* Handle xon/xoff */
674 if (port->x_char) {
675 /* Pick next descriptor and fill from buffer */
676 bdp = pinfo->tx_cur;
677
678 p = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
679
680 *p++ = port->x_char;
681
682 out_be16(&bdp->cbd_datlen, 1);
683 setbits16(&bdp->cbd_sc, BD_SC_READY);
684 /* Get next BD. */
685 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
686 bdp = pinfo->tx_bd_base;
687 else
688 bdp++;
689 pinfo->tx_cur = bdp;
690
691 port->icount.tx++;
692 port->x_char = 0;
693 return 1;
694 }
695
696 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
697 cpm_uart_stop_tx(port);
698 return 0;
699 }
700
701 /* Pick next descriptor and fill from buffer */
702 bdp = pinfo->tx_cur;
703
704 while (!(in_be16(&bdp->cbd_sc) & BD_SC_READY) &&
705 xmit->tail != xmit->head) {
706 count = 0;
707 p = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
708 while (count < pinfo->tx_fifosize) {
709 *p++ = xmit->buf[xmit->tail];
710 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
711 port->icount.tx++;
712 count++;
713 if (xmit->head == xmit->tail)
714 break;
715 }
716 out_be16(&bdp->cbd_datlen, count);
717 setbits16(&bdp->cbd_sc, BD_SC_READY);
718 /* Get next BD. */
719 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
720 bdp = pinfo->tx_bd_base;
721 else
722 bdp++;
723 }
724 pinfo->tx_cur = bdp;
725
726 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
727 uart_write_wakeup(port);
728
729 if (uart_circ_empty(xmit)) {
730 cpm_uart_stop_tx(port);
731 return 0;
732 }
733
734 return 1;
735}
736
737/*
738 * init buffer descriptors
739 */
740static void cpm_uart_initbd(struct uart_cpm_port *pinfo)
741{
742 int i;
743 u8 *mem_addr;
744 cbd_t __iomem *bdp;
745
746 pr_debug("CPM uart[%d]:initbd\n", pinfo->port.line);
747
748 /* Set the physical address of the host memory
749 * buffers in the buffer descriptors, and the
750 * virtual address for us to work with.
751 */
752 mem_addr = pinfo->mem_addr;
753 bdp = pinfo->rx_cur = pinfo->rx_bd_base;
754 for (i = 0; i < (pinfo->rx_nrfifos - 1); i++, bdp++) {
755 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
756 out_be16(&bdp->cbd_sc, BD_SC_EMPTY | BD_SC_INTRPT);
757 mem_addr += pinfo->rx_fifosize;
758 }
759
760 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
761 out_be16(&bdp->cbd_sc, BD_SC_WRAP | BD_SC_EMPTY | BD_SC_INTRPT);
762
763 /* Set the physical address of the host memory
764 * buffers in the buffer descriptors, and the
765 * virtual address for us to work with.
766 */
767 mem_addr = pinfo->mem_addr + L1_CACHE_ALIGN(pinfo->rx_nrfifos * pinfo->rx_fifosize);
768 bdp = pinfo->tx_cur = pinfo->tx_bd_base;
769 for (i = 0; i < (pinfo->tx_nrfifos - 1); i++, bdp++) {
770 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
771 out_be16(&bdp->cbd_sc, BD_SC_INTRPT);
772 mem_addr += pinfo->tx_fifosize;
773 }
774
775 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
776 out_be16(&bdp->cbd_sc, BD_SC_WRAP | BD_SC_INTRPT);
777}
778
779static void cpm_uart_init_scc(struct uart_cpm_port *pinfo)
780{
781 scc_t __iomem *scp;
782 scc_uart_t __iomem *sup;
783
784 pr_debug("CPM uart[%d]:init_scc\n", pinfo->port.line);
785
786 scp = pinfo->sccp;
787 sup = pinfo->sccup;
788
789 /* Store address */
790 out_be16(&pinfo->sccup->scc_genscc.scc_rbase,
791 (u8 __iomem *)pinfo->rx_bd_base - DPRAM_BASE);
792 out_be16(&pinfo->sccup->scc_genscc.scc_tbase,
793 (u8 __iomem *)pinfo->tx_bd_base - DPRAM_BASE);
794
795 /* Set up the uart parameters in the
796 * parameter ram.
797 */
798
799 cpm_set_scc_fcr(sup);
800
801 out_be16(&sup->scc_genscc.scc_mrblr, pinfo->rx_fifosize);
802 out_be16(&sup->scc_maxidl, pinfo->rx_fifosize);
803 out_be16(&sup->scc_brkcr, 1);
804 out_be16(&sup->scc_parec, 0);
805 out_be16(&sup->scc_frmec, 0);
806 out_be16(&sup->scc_nosec, 0);
807 out_be16(&sup->scc_brkec, 0);
808 out_be16(&sup->scc_uaddr1, 0);
809 out_be16(&sup->scc_uaddr2, 0);
810 out_be16(&sup->scc_toseq, 0);
811 out_be16(&sup->scc_char1, 0x8000);
812 out_be16(&sup->scc_char2, 0x8000);
813 out_be16(&sup->scc_char3, 0x8000);
814 out_be16(&sup->scc_char4, 0x8000);
815 out_be16(&sup->scc_char5, 0x8000);
816 out_be16(&sup->scc_char6, 0x8000);
817 out_be16(&sup->scc_char7, 0x8000);
818 out_be16(&sup->scc_char8, 0x8000);
819 out_be16(&sup->scc_rccm, 0xc0ff);
820
821 /* Send the CPM an initialize command.
822 */
823 cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
824
825 /* Set UART mode, 8 bit, no parity, one stop.
826 * Enable receive and transmit.
827 */
828 out_be32(&scp->scc_gsmrh, 0);
829 out_be32(&scp->scc_gsmrl,
830 SCC_GSMRL_MODE_UART | SCC_GSMRL_TDCR_16 | SCC_GSMRL_RDCR_16);
831
832 /* Enable rx interrupts and clear all pending events. */
833 out_be16(&scp->scc_sccm, 0);
834 out_be16(&scp->scc_scce, 0xffff);
835 out_be16(&scp->scc_dsr, 0x7e7e);
836 out_be16(&scp->scc_psmr, 0x3000);
837
838 setbits32(&scp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
839}
840
841static void cpm_uart_init_smc(struct uart_cpm_port *pinfo)
842{
843 smc_t __iomem *sp;
844 smc_uart_t __iomem *up;
845
846 pr_debug("CPM uart[%d]:init_smc\n", pinfo->port.line);
847
848 sp = pinfo->smcp;
849 up = pinfo->smcup;
850
851 /* Store address */
852 out_be16(&pinfo->smcup->smc_rbase,
853 (u8 __iomem *)pinfo->rx_bd_base - DPRAM_BASE);
854 out_be16(&pinfo->smcup->smc_tbase,
855 (u8 __iomem *)pinfo->tx_bd_base - DPRAM_BASE);
856
857/*
858 * In case SMC1 is being relocated...
859 */
860#if defined (CONFIG_I2C_SPI_SMC1_UCODE_PATCH)
861 out_be16(&up->smc_rbptr, in_be16(&pinfo->smcup->smc_rbase));
862 out_be16(&up->smc_tbptr, in_be16(&pinfo->smcup->smc_tbase));
863 out_be32(&up->smc_rstate, 0);
864 out_be32(&up->smc_tstate, 0);
865 out_be16(&up->smc_brkcr, 1); /* number of break chars */
866 out_be16(&up->smc_brkec, 0);
867#endif
868
869 /* Set up the uart parameters in the
870 * parameter ram.
871 */
872 cpm_set_smc_fcr(up);
873
874 /* Using idle character time requires some additional tuning. */
875 out_be16(&up->smc_mrblr, pinfo->rx_fifosize);
876 out_be16(&up->smc_maxidl, pinfo->rx_fifosize);
877 out_be16(&up->smc_brklen, 0);
878 out_be16(&up->smc_brkec, 0);
879 out_be16(&up->smc_brkcr, 1);
880
881 cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
882
883 /* Set UART mode, 8 bit, no parity, one stop.
884 * Enable receive and transmit.
885 */
886 out_be16(&sp->smc_smcmr, smcr_mk_clen(9) | SMCMR_SM_UART);
887
888 /* Enable only rx interrupts clear all pending events. */
889 out_8(&sp->smc_smcm, 0);
890 out_8(&sp->smc_smce, 0xff);
891
892 setbits16(&sp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
893}
894
895/*
896 * Initialize port. This is called from early_console stuff
897 * so we have to be careful here !
898 */
899static int cpm_uart_request_port(struct uart_port *port)
900{
901 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
902 int ret;
903
904 pr_debug("CPM uart[%d]:request port\n", port->line);
905
906 if (pinfo->flags & FLAG_CONSOLE)
907 return 0;
908
909 if (IS_SMC(pinfo)) {
910 clrbits8(&pinfo->smcp->smc_smcm, SMCM_RX | SMCM_TX);
911 clrbits16(&pinfo->smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
912 } else {
913 clrbits16(&pinfo->sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
914 clrbits32(&pinfo->sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
915 }
916
917 ret = cpm_uart_allocbuf(pinfo, 0);
918
919 if (ret)
920 return ret;
921
922 cpm_uart_initbd(pinfo);
923 if (IS_SMC(pinfo))
924 cpm_uart_init_smc(pinfo);
925 else
926 cpm_uart_init_scc(pinfo);
927
928 return 0;
929}
930
931static void cpm_uart_release_port(struct uart_port *port)
932{
933 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
934
935 if (!(pinfo->flags & FLAG_CONSOLE))
936 cpm_uart_freebuf(pinfo);
937}
938
939/*
940 * Configure/autoconfigure the port.
941 */
942static void cpm_uart_config_port(struct uart_port *port, int flags)
943{
944 pr_debug("CPM uart[%d]:config_port\n", port->line);
945
946 if (flags & UART_CONFIG_TYPE) {
947 port->type = PORT_CPM;
948 cpm_uart_request_port(port);
949 }
950}
951
952#if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_CPM_CONSOLE)
953/*
954 * Write a string to the serial port
955 * Note that this is called with interrupts already disabled
956 */
957static void cpm_uart_early_write(struct uart_cpm_port *pinfo,
958 const char *string, u_int count)
959{
960 unsigned int i;
961 cbd_t __iomem *bdp, *bdbase;
962 unsigned char *cpm_outp_addr;
963
964 /* Get the address of the host memory buffer.
965 */
966 bdp = pinfo->tx_cur;
967 bdbase = pinfo->tx_bd_base;
968
969 /*
970 * Now, do each character. This is not as bad as it looks
971 * since this is a holding FIFO and not a transmitting FIFO.
972 * We could add the complexity of filling the entire transmit
973 * buffer, but we would just wait longer between accesses......
974 */
975 for (i = 0; i < count; i++, string++) {
976 /* Wait for transmitter fifo to empty.
977 * Ready indicates output is ready, and xmt is doing
978 * that, not that it is ready for us to send.
979 */
980 while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
981 ;
982
983 /* Send the character out.
984 * If the buffer address is in the CPM DPRAM, don't
985 * convert it.
986 */
987 cpm_outp_addr = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr),
988 pinfo);
989 *cpm_outp_addr = *string;
990
991 out_be16(&bdp->cbd_datlen, 1);
992 setbits16(&bdp->cbd_sc, BD_SC_READY);
993
994 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
995 bdp = bdbase;
996 else
997 bdp++;
998
999 /* if a LF, also do CR... */
1000 if (*string == 10) {
1001 while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
1002 ;
1003
1004 cpm_outp_addr = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr),
1005 pinfo);
1006 *cpm_outp_addr = 13;
1007
1008 out_be16(&bdp->cbd_datlen, 1);
1009 setbits16(&bdp->cbd_sc, BD_SC_READY);
1010
1011 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
1012 bdp = bdbase;
1013 else
1014 bdp++;
1015 }
1016 }
1017
1018 /*
1019 * Finally, Wait for transmitter & holding register to empty
1020 * and restore the IER
1021 */
1022 while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
1023 ;
1024
1025 pinfo->tx_cur = bdp;
1026}
1027#endif
1028
1029#ifdef CONFIG_CONSOLE_POLL
1030/* Serial polling routines for writing and reading from the uart while
1031 * in an interrupt or debug context.
1032 */
1033
1034#define GDB_BUF_SIZE 512 /* power of 2, please */
1035
1036static char poll_buf[GDB_BUF_SIZE];
1037static char *pollp;
1038static int poll_chars;
1039
1040static int poll_wait_key(char *obuf, struct uart_cpm_port *pinfo)
1041{
1042 u_char c, *cp;
1043 volatile cbd_t *bdp;
1044 int i;
1045
1046 /* Get the address of the host memory buffer.
1047 */
1048 bdp = pinfo->rx_cur;
1049 while (bdp->cbd_sc & BD_SC_EMPTY)
1050 ;
1051
1052 /* If the buffer address is in the CPM DPRAM, don't
1053 * convert it.
1054 */
1055 cp = cpm2cpu_addr(bdp->cbd_bufaddr, pinfo);
1056
1057 if (obuf) {
1058 i = c = bdp->cbd_datlen;
1059 while (i-- > 0)
1060 *obuf++ = *cp++;
1061 } else
1062 c = *cp;
1063 bdp->cbd_sc &= ~(BD_SC_BR | BD_SC_FR | BD_SC_PR | BD_SC_OV | BD_SC_ID);
1064 bdp->cbd_sc |= BD_SC_EMPTY;
1065
1066 if (bdp->cbd_sc & BD_SC_WRAP)
1067 bdp = pinfo->rx_bd_base;
1068 else
1069 bdp++;
1070 pinfo->rx_cur = (cbd_t *)bdp;
1071
1072 return (int)c;
1073}
1074
1075static int cpm_get_poll_char(struct uart_port *port)
1076{
1077 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
1078
1079 if (!serial_polled) {
1080 serial_polled = 1;
1081 poll_chars = 0;
1082 }
1083 if (poll_chars <= 0) {
1084 poll_chars = poll_wait_key(poll_buf, pinfo);
1085 pollp = poll_buf;
1086 }
1087 poll_chars--;
1088 return *pollp++;
1089}
1090
1091static void cpm_put_poll_char(struct uart_port *port,
1092 unsigned char c)
1093{
1094 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
1095 static char ch[2];
1096
1097 ch[0] = (char)c;
1098 cpm_uart_early_write(pinfo, ch, 1);
1099}
1100#endif /* CONFIG_CONSOLE_POLL */
1101
1102static struct uart_ops cpm_uart_pops = {
1103 .tx_empty = cpm_uart_tx_empty,
1104 .set_mctrl = cpm_uart_set_mctrl,
1105 .get_mctrl = cpm_uart_get_mctrl,
1106 .stop_tx = cpm_uart_stop_tx,
1107 .start_tx = cpm_uart_start_tx,
1108 .stop_rx = cpm_uart_stop_rx,
1109 .enable_ms = cpm_uart_enable_ms,
1110 .break_ctl = cpm_uart_break_ctl,
1111 .startup = cpm_uart_startup,
1112 .shutdown = cpm_uart_shutdown,
1113 .set_termios = cpm_uart_set_termios,
1114 .type = cpm_uart_type,
1115 .release_port = cpm_uart_release_port,
1116 .request_port = cpm_uart_request_port,
1117 .config_port = cpm_uart_config_port,
1118 .verify_port = cpm_uart_verify_port,
1119#ifdef CONFIG_CONSOLE_POLL
1120 .poll_get_char = cpm_get_poll_char,
1121 .poll_put_char = cpm_put_poll_char,
1122#endif
1123};
1124
1125struct uart_cpm_port cpm_uart_ports[UART_NR];
1126
1127static int cpm_uart_init_port(struct device_node *np,
1128 struct uart_cpm_port *pinfo)
1129{
1130 const u32 *data;
1131 void __iomem *mem, *pram;
1132 int len;
1133 int ret;
1134 int i;
1135
1136 data = of_get_property(np, "clock", NULL);
1137 if (data) {
1138 struct clk *clk = clk_get(NULL, (const char*)data);
1139 if (!IS_ERR(clk))
1140 pinfo->clk = clk;
1141 }
1142 if (!pinfo->clk) {
1143 data = of_get_property(np, "fsl,cpm-brg", &len);
1144 if (!data || len != 4) {
1145 printk(KERN_ERR "CPM UART %s has no/invalid "
1146 "fsl,cpm-brg property.\n", np->name);
1147 return -EINVAL;
1148 }
1149 pinfo->brg = *data;
1150 }
1151
1152 data = of_get_property(np, "fsl,cpm-command", &len);
1153 if (!data || len != 4) {
1154 printk(KERN_ERR "CPM UART %s has no/invalid "
1155 "fsl,cpm-command property.\n", np->name);
1156 return -EINVAL;
1157 }
1158 pinfo->command = *data;
1159
1160 mem = of_iomap(np, 0);
1161 if (!mem)
1162 return -ENOMEM;
1163
1164 if (of_device_is_compatible(np, "fsl,cpm1-scc-uart") ||
1165 of_device_is_compatible(np, "fsl,cpm2-scc-uart")) {
1166 pinfo->sccp = mem;
1167 pinfo->sccup = pram = cpm_uart_map_pram(pinfo, np);
1168 } else if (of_device_is_compatible(np, "fsl,cpm1-smc-uart") ||
1169 of_device_is_compatible(np, "fsl,cpm2-smc-uart")) {
1170 pinfo->flags |= FLAG_SMC;
1171 pinfo->smcp = mem;
1172 pinfo->smcup = pram = cpm_uart_map_pram(pinfo, np);
1173 } else {
1174 ret = -ENODEV;
1175 goto out_mem;
1176 }
1177
1178 if (!pram) {
1179 ret = -ENOMEM;
1180 goto out_mem;
1181 }
1182
1183 pinfo->tx_nrfifos = TX_NUM_FIFO;
1184 pinfo->tx_fifosize = TX_BUF_SIZE;
1185 pinfo->rx_nrfifos = RX_NUM_FIFO;
1186 pinfo->rx_fifosize = RX_BUF_SIZE;
1187
1188 pinfo->port.uartclk = ppc_proc_freq;
1189 pinfo->port.mapbase = (unsigned long)mem;
1190 pinfo->port.type = PORT_CPM;
1191 pinfo->port.ops = &cpm_uart_pops,
1192 pinfo->port.iotype = UPIO_MEM;
1193 pinfo->port.fifosize = pinfo->tx_nrfifos * pinfo->tx_fifosize;
1194 spin_lock_init(&pinfo->port.lock);
1195
1196 pinfo->port.irq = of_irq_to_resource(np, 0, NULL);
1197 if (pinfo->port.irq == NO_IRQ) {
1198 ret = -EINVAL;
1199 goto out_pram;
1200 }
1201
1202 for (i = 0; i < NUM_GPIOS; i++)
1203 pinfo->gpios[i] = of_get_gpio(np, i);
1204
1205#ifdef CONFIG_PPC_EARLY_DEBUG_CPM
1206 udbg_putc = NULL;
1207#endif
1208
1209 return cpm_uart_request_port(&pinfo->port);
1210
1211out_pram:
1212 cpm_uart_unmap_pram(pinfo, pram);
1213out_mem:
1214 iounmap(mem);
1215 return ret;
1216}
1217
1218#ifdef CONFIG_SERIAL_CPM_CONSOLE
1219/*
1220 * Print a string to the serial port trying not to disturb
1221 * any possible real use of the port...
1222 *
1223 * Note that this is called with interrupts already disabled
1224 */
1225static void cpm_uart_console_write(struct console *co, const char *s,
1226 u_int count)
1227{
1228 struct uart_cpm_port *pinfo = &cpm_uart_ports[co->index];
1229 unsigned long flags;
1230 int nolock = oops_in_progress;
1231
1232 if (unlikely(nolock)) {
1233 local_irq_save(flags);
1234 } else {
1235 spin_lock_irqsave(&pinfo->port.lock, flags);
1236 }
1237
1238 cpm_uart_early_write(pinfo, s, count);
1239
1240 if (unlikely(nolock)) {
1241 local_irq_restore(flags);
1242 } else {
1243 spin_unlock_irqrestore(&pinfo->port.lock, flags);
1244 }
1245}
1246
1247
1248static int __init cpm_uart_console_setup(struct console *co, char *options)
1249{
1250 int baud = 38400;
1251 int bits = 8;
1252 int parity = 'n';
1253 int flow = 'n';
1254 int ret;
1255 struct uart_cpm_port *pinfo;
1256 struct uart_port *port;
1257
1258 struct device_node *np = NULL;
1259 int i = 0;
1260
1261 if (co->index >= UART_NR) {
1262 printk(KERN_ERR "cpm_uart: console index %d too high\n",
1263 co->index);
1264 return -ENODEV;
1265 }
1266
1267 do {
1268 np = of_find_node_by_type(np, "serial");
1269 if (!np)
1270 return -ENODEV;
1271
1272 if (!of_device_is_compatible(np, "fsl,cpm1-smc-uart") &&
1273 !of_device_is_compatible(np, "fsl,cpm1-scc-uart") &&
1274 !of_device_is_compatible(np, "fsl,cpm2-smc-uart") &&
1275 !of_device_is_compatible(np, "fsl,cpm2-scc-uart"))
1276 i--;
1277 } while (i++ != co->index);
1278
1279 pinfo = &cpm_uart_ports[co->index];
1280
1281 pinfo->flags |= FLAG_CONSOLE;
1282 port = &pinfo->port;
1283
1284 ret = cpm_uart_init_port(np, pinfo);
1285 of_node_put(np);
1286 if (ret)
1287 return ret;
1288
1289 if (options) {
1290 uart_parse_options(options, &baud, &parity, &bits, &flow);
1291 } else {
1292 if ((baud = uart_baudrate()) == -1)
1293 baud = 9600;
1294 }
1295
1296 if (IS_SMC(pinfo)) {
1297 out_be16(&pinfo->smcup->smc_brkcr, 0);
1298 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
1299 clrbits8(&pinfo->smcp->smc_smcm, SMCM_RX | SMCM_TX);
1300 clrbits16(&pinfo->smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
1301 } else {
1302 out_be16(&pinfo->sccup->scc_brkcr, 0);
1303 cpm_line_cr_cmd(pinfo, CPM_CR_GRA_STOP_TX);
1304 clrbits16(&pinfo->sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
1305 clrbits32(&pinfo->sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
1306 }
1307
1308 ret = cpm_uart_allocbuf(pinfo, 1);
1309
1310 if (ret)
1311 return ret;
1312
1313 cpm_uart_initbd(pinfo);
1314
1315 if (IS_SMC(pinfo))
1316 cpm_uart_init_smc(pinfo);
1317 else
1318 cpm_uart_init_scc(pinfo);
1319
1320 uart_set_options(port, co, baud, parity, bits, flow);
1321 cpm_line_cr_cmd(pinfo, CPM_CR_RESTART_TX);
1322
1323 return 0;
1324}
1325
1326static struct uart_driver cpm_reg;
1327static struct console cpm_scc_uart_console = {
1328 .name = "ttyCPM",
1329 .write = cpm_uart_console_write,
1330 .device = uart_console_device,
1331 .setup = cpm_uart_console_setup,
1332 .flags = CON_PRINTBUFFER,
1333 .index = -1,
1334 .data = &cpm_reg,
1335};
1336
1337static int __init cpm_uart_console_init(void)
1338{
1339 register_console(&cpm_scc_uart_console);
1340 return 0;
1341}
1342
1343console_initcall(cpm_uart_console_init);
1344
1345#define CPM_UART_CONSOLE &cpm_scc_uart_console
1346#else
1347#define CPM_UART_CONSOLE NULL
1348#endif
1349
1350static struct uart_driver cpm_reg = {
1351 .owner = THIS_MODULE,
1352 .driver_name = "ttyCPM",
1353 .dev_name = "ttyCPM",
1354 .major = SERIAL_CPM_MAJOR,
1355 .minor = SERIAL_CPM_MINOR,
1356 .cons = CPM_UART_CONSOLE,
1357 .nr = UART_NR,
1358};
1359
1360static int probe_index;
1361
1362static int __devinit cpm_uart_probe(struct platform_device *ofdev,
1363 const struct of_device_id *match)
1364{
1365 int index = probe_index++;
1366 struct uart_cpm_port *pinfo = &cpm_uart_ports[index];
1367 int ret;
1368
1369 pinfo->port.line = index;
1370
1371 if (index >= UART_NR)
1372 return -ENODEV;
1373
1374 dev_set_drvdata(&ofdev->dev, pinfo);
1375
1376 /* initialize the device pointer for the port */
1377 pinfo->port.dev = &ofdev->dev;
1378
1379 ret = cpm_uart_init_port(ofdev->dev.of_node, pinfo);
1380 if (ret)
1381 return ret;
1382
1383 return uart_add_one_port(&cpm_reg, &pinfo->port);
1384}
1385
1386static int __devexit cpm_uart_remove(struct platform_device *ofdev)
1387{
1388 struct uart_cpm_port *pinfo = dev_get_drvdata(&ofdev->dev);
1389 return uart_remove_one_port(&cpm_reg, &pinfo->port);
1390}
1391
1392static struct of_device_id cpm_uart_match[] = {
1393 {
1394 .compatible = "fsl,cpm1-smc-uart",
1395 },
1396 {
1397 .compatible = "fsl,cpm1-scc-uart",
1398 },
1399 {
1400 .compatible = "fsl,cpm2-smc-uart",
1401 },
1402 {
1403 .compatible = "fsl,cpm2-scc-uart",
1404 },
1405 {}
1406};
1407
1408static struct of_platform_driver cpm_uart_driver = {
1409 .driver = {
1410 .name = "cpm_uart",
1411 .owner = THIS_MODULE,
1412 .of_match_table = cpm_uart_match,
1413 },
1414 .probe = cpm_uart_probe,
1415 .remove = cpm_uart_remove,
1416 };
1417
1418static int __init cpm_uart_init(void)
1419{
1420 int ret = uart_register_driver(&cpm_reg);
1421 if (ret)
1422 return ret;
1423
1424 ret = of_register_platform_driver(&cpm_uart_driver);
1425 if (ret)
1426 uart_unregister_driver(&cpm_reg);
1427
1428 return ret;
1429}
1430
1431static void __exit cpm_uart_exit(void)
1432{
1433 of_unregister_platform_driver(&cpm_uart_driver);
1434 uart_unregister_driver(&cpm_reg);
1435}
1436
1437module_init(cpm_uart_init);
1438module_exit(cpm_uart_exit);
1439
1440MODULE_AUTHOR("Kumar Gala/Antoniou Pantelis");
1441MODULE_DESCRIPTION("CPM SCC/SMC port driver $Revision: 0.01 $");
1442MODULE_LICENSE("GPL");
1443MODULE_ALIAS_CHARDEV(SERIAL_CPM_MAJOR, SERIAL_CPM_MINOR);
diff --git a/drivers/tty/serial/cpm_uart/cpm_uart_cpm1.c b/drivers/tty/serial/cpm_uart/cpm_uart_cpm1.c
new file mode 100644
index 000000000000..3fc1d66e32c6
--- /dev/null
+++ b/drivers/tty/serial/cpm_uart/cpm_uart_cpm1.c
@@ -0,0 +1,138 @@
1/*
2 * linux/drivers/serial/cpm_uart.c
3 *
4 * Driver for CPM (SCC/SMC) serial ports; CPM1 definitions
5 *
6 * Maintainer: Kumar Gala (galak@kernel.crashing.org) (CPM2)
7 * Pantelis Antoniou (panto@intracom.gr) (CPM1)
8 *
9 * Copyright (C) 2004 Freescale Semiconductor, Inc.
10 * (C) 2004 Intracom, S.A.
11 * (C) 2006 MontaVista Software, Inc.
12 * Vitaly Bordug <vbordug@ru.mvista.com>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
28 */
29
30#include <linux/module.h>
31#include <linux/tty.h>
32#include <linux/gfp.h>
33#include <linux/ioport.h>
34#include <linux/init.h>
35#include <linux/serial.h>
36#include <linux/console.h>
37#include <linux/sysrq.h>
38#include <linux/device.h>
39#include <linux/bootmem.h>
40#include <linux/dma-mapping.h>
41
42#include <asm/io.h>
43#include <asm/irq.h>
44#include <asm/fs_pd.h>
45
46#include <linux/serial_core.h>
47#include <linux/kernel.h>
48
49#include <linux/of.h>
50
51#include "cpm_uart.h"
52
53/**************************************************************/
54
55void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd)
56{
57 cpm_command(port->command, cmd);
58}
59
60void __iomem *cpm_uart_map_pram(struct uart_cpm_port *port,
61 struct device_node *np)
62{
63 return of_iomap(np, 1);
64}
65
66void cpm_uart_unmap_pram(struct uart_cpm_port *port, void __iomem *pram)
67{
68 iounmap(pram);
69}
70
71/*
72 * Allocate DP-Ram and memory buffers. We need to allocate a transmit and
73 * receive buffer descriptors from dual port ram, and a character
74 * buffer area from host mem. If we are allocating for the console we need
75 * to do it from bootmem
76 */
77int cpm_uart_allocbuf(struct uart_cpm_port *pinfo, unsigned int is_con)
78{
79 int dpmemsz, memsz;
80 u8 *dp_mem;
81 unsigned long dp_offset;
82 u8 *mem_addr;
83 dma_addr_t dma_addr = 0;
84
85 pr_debug("CPM uart[%d]:allocbuf\n", pinfo->port.line);
86
87 dpmemsz = sizeof(cbd_t) * (pinfo->rx_nrfifos + pinfo->tx_nrfifos);
88 dp_offset = cpm_dpalloc(dpmemsz, 8);
89 if (IS_ERR_VALUE(dp_offset)) {
90 printk(KERN_ERR
91 "cpm_uart_cpm1.c: could not allocate buffer descriptors\n");
92 return -ENOMEM;
93 }
94 dp_mem = cpm_dpram_addr(dp_offset);
95
96 memsz = L1_CACHE_ALIGN(pinfo->rx_nrfifos * pinfo->rx_fifosize) +
97 L1_CACHE_ALIGN(pinfo->tx_nrfifos * pinfo->tx_fifosize);
98 if (is_con) {
99 /* was hostalloc but changed cause it blows away the */
100 /* large tlb mapping when pinning the kernel area */
101 mem_addr = (u8 *) cpm_dpram_addr(cpm_dpalloc(memsz, 8));
102 dma_addr = (u32)cpm_dpram_phys(mem_addr);
103 } else
104 mem_addr = dma_alloc_coherent(pinfo->port.dev, memsz, &dma_addr,
105 GFP_KERNEL);
106
107 if (mem_addr == NULL) {
108 cpm_dpfree(dp_offset);
109 printk(KERN_ERR
110 "cpm_uart_cpm1.c: could not allocate coherent memory\n");
111 return -ENOMEM;
112 }
113
114 pinfo->dp_addr = dp_offset;
115 pinfo->mem_addr = mem_addr; /* virtual address*/
116 pinfo->dma_addr = dma_addr; /* physical address*/
117 pinfo->mem_size = memsz;
118
119 pinfo->rx_buf = mem_addr;
120 pinfo->tx_buf = pinfo->rx_buf + L1_CACHE_ALIGN(pinfo->rx_nrfifos
121 * pinfo->rx_fifosize);
122
123 pinfo->rx_bd_base = (cbd_t __iomem __force *)dp_mem;
124 pinfo->tx_bd_base = pinfo->rx_bd_base + pinfo->rx_nrfifos;
125
126 return 0;
127}
128
129void cpm_uart_freebuf(struct uart_cpm_port *pinfo)
130{
131 dma_free_coherent(pinfo->port.dev, L1_CACHE_ALIGN(pinfo->rx_nrfifos *
132 pinfo->rx_fifosize) +
133 L1_CACHE_ALIGN(pinfo->tx_nrfifos *
134 pinfo->tx_fifosize), pinfo->mem_addr,
135 pinfo->dma_addr);
136
137 cpm_dpfree(pinfo->dp_addr);
138}
diff --git a/drivers/tty/serial/cpm_uart/cpm_uart_cpm1.h b/drivers/tty/serial/cpm_uart/cpm_uart_cpm1.h
new file mode 100644
index 000000000000..10eecd6af6d4
--- /dev/null
+++ b/drivers/tty/serial/cpm_uart/cpm_uart_cpm1.h
@@ -0,0 +1,34 @@
1/*
2 * linux/drivers/serial/cpm_uart/cpm_uart_cpm1.h
3 *
4 * Driver for CPM (SCC/SMC) serial ports
5 *
6 * definitions for cpm1
7 *
8 */
9
10#ifndef CPM_UART_CPM1_H
11#define CPM_UART_CPM1_H
12
13#include <asm/cpm1.h>
14
15static inline void cpm_set_brg(int brg, int baud)
16{
17 cpm_setbrg(brg, baud);
18}
19
20static inline void cpm_set_scc_fcr(scc_uart_t __iomem * sup)
21{
22 out_8(&sup->scc_genscc.scc_rfcr, SMC_EB);
23 out_8(&sup->scc_genscc.scc_tfcr, SMC_EB);
24}
25
26static inline void cpm_set_smc_fcr(smc_uart_t __iomem * up)
27{
28 out_8(&up->smc_rfcr, SMC_EB);
29 out_8(&up->smc_tfcr, SMC_EB);
30}
31
32#define DPRAM_BASE ((u8 __iomem __force *)cpm_dpram_addr(0))
33
34#endif
diff --git a/drivers/tty/serial/cpm_uart/cpm_uart_cpm2.c b/drivers/tty/serial/cpm_uart/cpm_uart_cpm2.c
new file mode 100644
index 000000000000..814ac006393f
--- /dev/null
+++ b/drivers/tty/serial/cpm_uart/cpm_uart_cpm2.c
@@ -0,0 +1,174 @@
1/*
2 * linux/drivers/serial/cpm_uart_cpm2.c
3 *
4 * Driver for CPM (SCC/SMC) serial ports; CPM2 definitions
5 *
6 * Maintainer: Kumar Gala (galak@kernel.crashing.org) (CPM2)
7 * Pantelis Antoniou (panto@intracom.gr) (CPM1)
8 *
9 * Copyright (C) 2004 Freescale Semiconductor, Inc.
10 * (C) 2004 Intracom, S.A.
11 * (C) 2006 MontaVista Software, Inc.
12 * Vitaly Bordug <vbordug@ru.mvista.com>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
28 */
29
30#include <linux/module.h>
31#include <linux/tty.h>
32#include <linux/ioport.h>
33#include <linux/slab.h>
34#include <linux/init.h>
35#include <linux/serial.h>
36#include <linux/console.h>
37#include <linux/sysrq.h>
38#include <linux/device.h>
39#include <linux/bootmem.h>
40#include <linux/dma-mapping.h>
41
42#include <asm/io.h>
43#include <asm/irq.h>
44#include <asm/fs_pd.h>
45#include <asm/prom.h>
46
47#include <linux/serial_core.h>
48#include <linux/kernel.h>
49
50#include "cpm_uart.h"
51
52/**************************************************************/
53
54void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd)
55{
56 cpm_command(port->command, cmd);
57}
58
59void __iomem *cpm_uart_map_pram(struct uart_cpm_port *port,
60 struct device_node *np)
61{
62 void __iomem *pram;
63 unsigned long offset;
64 struct resource res;
65 resource_size_t len;
66
67 /* Don't remap parameter RAM if it has already been initialized
68 * during console setup.
69 */
70 if (IS_SMC(port) && port->smcup)
71 return port->smcup;
72 else if (!IS_SMC(port) && port->sccup)
73 return port->sccup;
74
75 if (of_address_to_resource(np, 1, &res))
76 return NULL;
77
78 len = resource_size(&res);
79 pram = ioremap(res.start, len);
80 if (!pram)
81 return NULL;
82
83 if (!IS_SMC(port))
84 return pram;
85
86 if (len != 2) {
87 printk(KERN_WARNING "cpm_uart[%d]: device tree references "
88 "SMC pram, using boot loader/wrapper pram mapping. "
89 "Please fix your device tree to reference the pram "
90 "base register instead.\n",
91 port->port.line);
92 return pram;
93 }
94
95 offset = cpm_dpalloc(PROFF_SMC_SIZE, 64);
96 out_be16(pram, offset);
97 iounmap(pram);
98 return cpm_muram_addr(offset);
99}
100
101void cpm_uart_unmap_pram(struct uart_cpm_port *port, void __iomem *pram)
102{
103 if (!IS_SMC(port))
104 iounmap(pram);
105}
106
107/*
108 * Allocate DP-Ram and memory buffers. We need to allocate a transmit and
109 * receive buffer descriptors from dual port ram, and a character
110 * buffer area from host mem. If we are allocating for the console we need
111 * to do it from bootmem
112 */
113int cpm_uart_allocbuf(struct uart_cpm_port *pinfo, unsigned int is_con)
114{
115 int dpmemsz, memsz;
116 u8 __iomem *dp_mem;
117 unsigned long dp_offset;
118 u8 *mem_addr;
119 dma_addr_t dma_addr = 0;
120
121 pr_debug("CPM uart[%d]:allocbuf\n", pinfo->port.line);
122
123 dpmemsz = sizeof(cbd_t) * (pinfo->rx_nrfifos + pinfo->tx_nrfifos);
124 dp_offset = cpm_dpalloc(dpmemsz, 8);
125 if (IS_ERR_VALUE(dp_offset)) {
126 printk(KERN_ERR
127 "cpm_uart_cpm.c: could not allocate buffer descriptors\n");
128 return -ENOMEM;
129 }
130
131 dp_mem = cpm_dpram_addr(dp_offset);
132
133 memsz = L1_CACHE_ALIGN(pinfo->rx_nrfifos * pinfo->rx_fifosize) +
134 L1_CACHE_ALIGN(pinfo->tx_nrfifos * pinfo->tx_fifosize);
135 if (is_con) {
136 mem_addr = kzalloc(memsz, GFP_NOWAIT);
137 dma_addr = virt_to_bus(mem_addr);
138 }
139 else
140 mem_addr = dma_alloc_coherent(pinfo->port.dev, memsz, &dma_addr,
141 GFP_KERNEL);
142
143 if (mem_addr == NULL) {
144 cpm_dpfree(dp_offset);
145 printk(KERN_ERR
146 "cpm_uart_cpm.c: could not allocate coherent memory\n");
147 return -ENOMEM;
148 }
149
150 pinfo->dp_addr = dp_offset;
151 pinfo->mem_addr = mem_addr;
152 pinfo->dma_addr = dma_addr;
153 pinfo->mem_size = memsz;
154
155 pinfo->rx_buf = mem_addr;
156 pinfo->tx_buf = pinfo->rx_buf + L1_CACHE_ALIGN(pinfo->rx_nrfifos
157 * pinfo->rx_fifosize);
158
159 pinfo->rx_bd_base = (cbd_t __iomem *)dp_mem;
160 pinfo->tx_bd_base = pinfo->rx_bd_base + pinfo->rx_nrfifos;
161
162 return 0;
163}
164
165void cpm_uart_freebuf(struct uart_cpm_port *pinfo)
166{
167 dma_free_coherent(pinfo->port.dev, L1_CACHE_ALIGN(pinfo->rx_nrfifos *
168 pinfo->rx_fifosize) +
169 L1_CACHE_ALIGN(pinfo->tx_nrfifos *
170 pinfo->tx_fifosize), (void __force *)pinfo->mem_addr,
171 pinfo->dma_addr);
172
173 cpm_dpfree(pinfo->dp_addr);
174}
diff --git a/drivers/tty/serial/cpm_uart/cpm_uart_cpm2.h b/drivers/tty/serial/cpm_uart/cpm_uart_cpm2.h
new file mode 100644
index 000000000000..7194c63dcf5f
--- /dev/null
+++ b/drivers/tty/serial/cpm_uart/cpm_uart_cpm2.h
@@ -0,0 +1,34 @@
1/*
2 * linux/drivers/serial/cpm_uart/cpm_uart_cpm2.h
3 *
4 * Driver for CPM (SCC/SMC) serial ports
5 *
6 * definitions for cpm2
7 *
8 */
9
10#ifndef CPM_UART_CPM2_H
11#define CPM_UART_CPM2_H
12
13#include <asm/cpm2.h>
14
15static inline void cpm_set_brg(int brg, int baud)
16{
17 cpm_setbrg(brg, baud);
18}
19
20static inline void cpm_set_scc_fcr(scc_uart_t __iomem *sup)
21{
22 out_8(&sup->scc_genscc.scc_rfcr, CPMFCR_GBL | CPMFCR_EB);
23 out_8(&sup->scc_genscc.scc_tfcr, CPMFCR_GBL | CPMFCR_EB);
24}
25
26static inline void cpm_set_smc_fcr(smc_uart_t __iomem *up)
27{
28 out_8(&up->smc_rfcr, CPMFCR_GBL | CPMFCR_EB);
29 out_8(&up->smc_tfcr, CPMFCR_GBL | CPMFCR_EB);
30}
31
32#define DPRAM_BASE ((u8 __iomem __force *)cpm_dpram_addr(0))
33
34#endif