Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/drivers/serial/cpm_uart_cpm2.c |
| 3 | * |
| 4 | * Driver for CPM (SCC/SMC) serial ports; CPM2 definitions |
| 5 | * |
Kumar Gala | 4c8d3d9 | 2005-11-13 16:06:30 -0800 | [diff] [blame] | 6 | * Maintainer: Kumar Gala (galak@kernel.crashing.org) (CPM2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Pantelis Antoniou (panto@intracom.gr) (CPM1) |
| 8 | * |
| 9 | * Copyright (C) 2004 Freescale Semiconductor, Inc. |
| 10 | * (C) 2004 Intracom, S.A. |
Vitaly Bordug | 6e197696 | 2006-04-29 23:06:00 +0400 | [diff] [blame] | 11 | * (C) 2006 MontaVista Software, Inc. |
| 12 | * Vitaly Bordug <vbordug@ru.mvista.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/module.h> |
| 31 | #include <linux/tty.h> |
| 32 | #include <linux/ioport.h> |
| 33 | #include <linux/init.h> |
| 34 | #include <linux/serial.h> |
| 35 | #include <linux/console.h> |
| 36 | #include <linux/sysrq.h> |
| 37 | #include <linux/device.h> |
| 38 | #include <linux/bootmem.h> |
| 39 | #include <linux/dma-mapping.h> |
| 40 | |
| 41 | #include <asm/io.h> |
| 42 | #include <asm/irq.h> |
Vitaly Bordug | 3dd0dcb | 2006-09-21 17:27:15 +0400 | [diff] [blame] | 43 | #include <asm/fs_pd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | #include <linux/serial_core.h> |
| 46 | #include <linux/kernel.h> |
| 47 | |
| 48 | #include "cpm_uart.h" |
| 49 | |
| 50 | /**************************************************************/ |
| 51 | |
Scott Wood | 7ae8703 | 2007-07-17 17:59:06 -0500 | [diff] [blame] | 52 | #ifdef CONFIG_PPC_CPM_NEW_BINDING |
| 53 | void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd) |
| 54 | { |
| 55 | cpm_cpm2_t __iomem *cp = cpm2_map(im_cpm); |
| 56 | |
| 57 | out_be32(&cp->cp_cpcr, port->command | cmd | CPM_CR_FLG); |
| 58 | while (in_be32(&cp->cp_cpcr) & CPM_CR_FLG) |
| 59 | ; |
| 60 | |
| 61 | cpm2_unmap(cp); |
| 62 | } |
| 63 | #else |
| 64 | void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | ulong val; |
Scott Wood | 7ae8703 | 2007-07-17 17:59:06 -0500 | [diff] [blame] | 67 | int line = port - cpm_uart_ports; |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 68 | volatile cpm_cpm2_t *cp = cpm2_map(im_cpm); |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | switch (line) { |
| 72 | case UART_SMC1: |
| 73 | val = mk_cr_cmd(CPM_CR_SMC1_PAGE, CPM_CR_SMC1_SBLOCK, 0, |
| 74 | cmd) | CPM_CR_FLG; |
| 75 | break; |
| 76 | case UART_SMC2: |
| 77 | val = mk_cr_cmd(CPM_CR_SMC2_PAGE, CPM_CR_SMC2_SBLOCK, 0, |
| 78 | cmd) | CPM_CR_FLG; |
| 79 | break; |
| 80 | case UART_SCC1: |
| 81 | val = mk_cr_cmd(CPM_CR_SCC1_PAGE, CPM_CR_SCC1_SBLOCK, 0, |
| 82 | cmd) | CPM_CR_FLG; |
| 83 | break; |
| 84 | case UART_SCC2: |
| 85 | val = mk_cr_cmd(CPM_CR_SCC2_PAGE, CPM_CR_SCC2_SBLOCK, 0, |
| 86 | cmd) | CPM_CR_FLG; |
| 87 | break; |
| 88 | case UART_SCC3: |
| 89 | val = mk_cr_cmd(CPM_CR_SCC3_PAGE, CPM_CR_SCC3_SBLOCK, 0, |
| 90 | cmd) | CPM_CR_FLG; |
| 91 | break; |
| 92 | case UART_SCC4: |
| 93 | val = mk_cr_cmd(CPM_CR_SCC4_PAGE, CPM_CR_SCC4_SBLOCK, 0, |
| 94 | cmd) | CPM_CR_FLG; |
| 95 | break; |
| 96 | default: |
| 97 | return; |
| 98 | |
| 99 | } |
| 100 | cp->cp_cpcr = val; |
| 101 | while (cp->cp_cpcr & CPM_CR_FLG) ; |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 102 | |
| 103 | cpm2_unmap(cp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | void smc1_lineif(struct uart_cpm_port *pinfo) |
| 107 | { |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 108 | volatile iop_cpm2_t *io = cpm2_map(im_ioport); |
| 109 | volatile cpmux_t *cpmux = cpm2_map(im_cpmux); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | /* SMC1 is only on port D */ |
| 112 | io->iop_ppard |= 0x00c00000; |
| 113 | io->iop_pdird |= 0x00400000; |
| 114 | io->iop_pdird &= ~0x00800000; |
| 115 | io->iop_psord &= ~0x00c00000; |
| 116 | |
| 117 | /* Wire BRG1 to SMC1 */ |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 118 | cpmux->cmx_smr &= 0x0f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | pinfo->brg = 1; |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 120 | |
| 121 | cpm2_unmap(cpmux); |
| 122 | cpm2_unmap(io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | void smc2_lineif(struct uart_cpm_port *pinfo) |
| 126 | { |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 127 | volatile iop_cpm2_t *io = cpm2_map(im_ioport); |
| 128 | volatile cpmux_t *cpmux = cpm2_map(im_cpmux); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | /* SMC2 is only on port A */ |
| 131 | io->iop_ppara |= 0x00c00000; |
| 132 | io->iop_pdira |= 0x00400000; |
| 133 | io->iop_pdira &= ~0x00800000; |
| 134 | io->iop_psora &= ~0x00c00000; |
| 135 | |
| 136 | /* Wire BRG2 to SMC2 */ |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 137 | cpmux->cmx_smr &= 0xf0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | pinfo->brg = 2; |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 139 | |
| 140 | cpm2_unmap(cpmux); |
| 141 | cpm2_unmap(io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | void scc1_lineif(struct uart_cpm_port *pinfo) |
| 145 | { |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 146 | volatile iop_cpm2_t *io = cpm2_map(im_ioport); |
| 147 | volatile cpmux_t *cpmux = cpm2_map(im_cpmux); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
| 149 | /* Use Port D for SCC1 instead of other functions. */ |
| 150 | io->iop_ppard |= 0x00000003; |
| 151 | io->iop_psord &= ~0x00000001; /* Rx */ |
| 152 | io->iop_psord |= 0x00000002; /* Tx */ |
| 153 | io->iop_pdird &= ~0x00000001; /* Rx */ |
| 154 | io->iop_pdird |= 0x00000002; /* Tx */ |
| 155 | |
| 156 | /* Wire BRG1 to SCC1 */ |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 157 | cpmux->cmx_scr &= 0x00ffffff; |
| 158 | cpmux->cmx_scr |= 0x00000000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | pinfo->brg = 1; |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 160 | |
| 161 | cpm2_unmap(cpmux); |
| 162 | cpm2_unmap(io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | void scc2_lineif(struct uart_cpm_port *pinfo) |
| 166 | { |
Matt Porter | a1604f9 | 2005-06-21 17:15:22 -0700 | [diff] [blame] | 167 | /* |
| 168 | * STx GP3 uses the SCC2 secondary option pin assignment |
| 169 | * which this driver doesn't account for in the static |
| 170 | * pin assignments. This kind of board specific info |
| 171 | * really has to get out of the driver so boards can |
| 172 | * be supported in a sane fashion. |
| 173 | */ |
| 174 | #ifndef CONFIG_STX_GP3 |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 175 | volatile iop_cpm2_t *io = cpm2_map(im_ioport); |
| 176 | volatile cpmux_t *cpmux = cpm2_map(im_cpmux); |
| 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | io->iop_pparb |= 0x008b0000; |
| 179 | io->iop_pdirb |= 0x00880000; |
| 180 | io->iop_psorb |= 0x00880000; |
| 181 | io->iop_pdirb &= ~0x00030000; |
| 182 | io->iop_psorb &= ~0x00030000; |
Matt Porter | a1604f9 | 2005-06-21 17:15:22 -0700 | [diff] [blame] | 183 | #endif |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 184 | cpmux->cmx_scr &= 0xff00ffff; |
| 185 | cpmux->cmx_scr |= 0x00090000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | pinfo->brg = 2; |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 187 | |
| 188 | cpm2_unmap(cpmux); |
| 189 | cpm2_unmap(io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | void scc3_lineif(struct uart_cpm_port *pinfo) |
| 193 | { |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 194 | volatile iop_cpm2_t *io = cpm2_map(im_ioport); |
| 195 | volatile cpmux_t *cpmux = cpm2_map(im_cpmux); |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | io->iop_pparb |= 0x008b0000; |
| 198 | io->iop_pdirb |= 0x00880000; |
| 199 | io->iop_psorb |= 0x00880000; |
| 200 | io->iop_pdirb &= ~0x00030000; |
| 201 | io->iop_psorb &= ~0x00030000; |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 202 | cpmux->cmx_scr &= 0xffff00ff; |
| 203 | cpmux->cmx_scr |= 0x00001200; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | pinfo->brg = 3; |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 205 | |
| 206 | cpm2_unmap(cpmux); |
| 207 | cpm2_unmap(io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | void scc4_lineif(struct uart_cpm_port *pinfo) |
| 211 | { |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 212 | volatile iop_cpm2_t *io = cpm2_map(im_ioport); |
| 213 | volatile cpmux_t *cpmux = cpm2_map(im_cpmux); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | io->iop_ppard |= 0x00000600; |
| 216 | io->iop_psord &= ~0x00000600; /* Tx/Rx */ |
| 217 | io->iop_pdird &= ~0x00000200; /* Rx */ |
| 218 | io->iop_pdird |= 0x00000400; /* Tx */ |
| 219 | |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 220 | cpmux->cmx_scr &= 0xffffff00; |
| 221 | cpmux->cmx_scr |= 0x0000001b; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | pinfo->brg = 4; |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 223 | |
| 224 | cpm2_unmap(cpmux); |
| 225 | cpm2_unmap(io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
Scott Wood | 7ae8703 | 2007-07-17 17:59:06 -0500 | [diff] [blame] | 227 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
| 229 | /* |
| 230 | * Allocate DP-Ram and memory buffers. We need to allocate a transmit and |
| 231 | * receive buffer descriptors from dual port ram, and a character |
| 232 | * buffer area from host mem. If we are allocating for the console we need |
| 233 | * to do it from bootmem |
| 234 | */ |
| 235 | int cpm_uart_allocbuf(struct uart_cpm_port *pinfo, unsigned int is_con) |
| 236 | { |
| 237 | int dpmemsz, memsz; |
| 238 | u8 *dp_mem; |
Timur Tabi | 4c35630 | 2007-05-08 14:46:36 -0500 | [diff] [blame] | 239 | unsigned long dp_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | u8 *mem_addr; |
| 241 | dma_addr_t dma_addr = 0; |
| 242 | |
| 243 | pr_debug("CPM uart[%d]:allocbuf\n", pinfo->port.line); |
| 244 | |
| 245 | dpmemsz = sizeof(cbd_t) * (pinfo->rx_nrfifos + pinfo->tx_nrfifos); |
| 246 | dp_offset = cpm_dpalloc(dpmemsz, 8); |
Timur Tabi | 4c35630 | 2007-05-08 14:46:36 -0500 | [diff] [blame] | 247 | if (IS_ERR_VALUE(dp_offset)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | printk(KERN_ERR |
| 249 | "cpm_uart_cpm.c: could not allocate buffer descriptors\n"); |
| 250 | return -ENOMEM; |
| 251 | } |
| 252 | |
| 253 | dp_mem = cpm_dpram_addr(dp_offset); |
| 254 | |
| 255 | memsz = L1_CACHE_ALIGN(pinfo->rx_nrfifos * pinfo->rx_fifosize) + |
| 256 | L1_CACHE_ALIGN(pinfo->tx_nrfifos * pinfo->tx_fifosize); |
Vitaly Bordug | 09b03b6 | 2006-04-25 20:26:46 +0400 | [diff] [blame] | 257 | if (is_con) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | mem_addr = alloc_bootmem(memsz); |
Vitaly Bordug | 8e30a9a | 2006-05-24 21:40:18 +0400 | [diff] [blame] | 259 | dma_addr = virt_to_bus(mem_addr); |
Vitaly Bordug | 09b03b6 | 2006-04-25 20:26:46 +0400 | [diff] [blame] | 260 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | else |
| 262 | mem_addr = dma_alloc_coherent(NULL, memsz, &dma_addr, |
| 263 | GFP_KERNEL); |
| 264 | |
| 265 | if (mem_addr == NULL) { |
| 266 | cpm_dpfree(dp_offset); |
| 267 | printk(KERN_ERR |
| 268 | "cpm_uart_cpm.c: could not allocate coherent memory\n"); |
| 269 | return -ENOMEM; |
| 270 | } |
| 271 | |
| 272 | pinfo->dp_addr = dp_offset; |
| 273 | pinfo->mem_addr = mem_addr; |
| 274 | pinfo->dma_addr = dma_addr; |
Vitaly Bordug | 09b03b6 | 2006-04-25 20:26:46 +0400 | [diff] [blame] | 275 | pinfo->mem_size = memsz; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
| 277 | pinfo->rx_buf = mem_addr; |
| 278 | pinfo->tx_buf = pinfo->rx_buf + L1_CACHE_ALIGN(pinfo->rx_nrfifos |
| 279 | * pinfo->rx_fifosize); |
| 280 | |
Scott Wood | c1dcfd9 | 2007-07-24 15:53:07 -0500 | [diff] [blame^] | 281 | pinfo->rx_bd_base = (cbd_t __iomem __force *)dp_mem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | pinfo->tx_bd_base = pinfo->rx_bd_base + pinfo->rx_nrfifos; |
| 283 | |
| 284 | return 0; |
| 285 | } |
| 286 | |
| 287 | void cpm_uart_freebuf(struct uart_cpm_port *pinfo) |
| 288 | { |
| 289 | dma_free_coherent(NULL, L1_CACHE_ALIGN(pinfo->rx_nrfifos * |
| 290 | pinfo->rx_fifosize) + |
| 291 | L1_CACHE_ALIGN(pinfo->tx_nrfifos * |
Scott Wood | c1dcfd9 | 2007-07-24 15:53:07 -0500 | [diff] [blame^] | 292 | pinfo->tx_fifosize), (void __force *)pinfo->mem_addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | pinfo->dma_addr); |
| 294 | |
| 295 | cpm_dpfree(pinfo->dp_addr); |
| 296 | } |
| 297 | |
Scott Wood | 7ae8703 | 2007-07-17 17:59:06 -0500 | [diff] [blame] | 298 | #ifndef CONFIG_PPC_CPM_NEW_BINDING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | /* Setup any dynamic params in the uart desc */ |
Kumar Gala | 32a56eb | 2007-05-09 23:44:58 -0500 | [diff] [blame] | 300 | int cpm_uart_init_portdesc(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 302 | #if defined(CONFIG_SERIAL_CPM_SMC1) || defined(CONFIG_SERIAL_CPM_SMC2) |
Paul Gortmaker | 0f9ec0a | 2007-02-15 12:43:06 -0500 | [diff] [blame] | 303 | u16 *addr; |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 304 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | pr_debug("CPM uart[-]:init portdesc\n"); |
| 306 | |
| 307 | cpm_uart_nr = 0; |
| 308 | #ifdef CONFIG_SERIAL_CPM_SMC1 |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 309 | cpm_uart_ports[UART_SMC1].smcp = (smc_t *) cpm2_map(im_smc[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | cpm_uart_ports[UART_SMC1].port.mapbase = |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 311 | (unsigned long)cpm_uart_ports[UART_SMC1].smcp; |
| 312 | |
| 313 | cpm_uart_ports[UART_SMC1].smcup = |
| 314 | (smc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SMC1], PROFF_SMC_SIZE); |
| 315 | addr = (u16 *)cpm2_map_size(im_dprambase[PROFF_SMC1_BASE], 2); |
| 316 | *addr = PROFF_SMC1; |
| 317 | cpm2_unmap(addr); |
| 318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | cpm_uart_ports[UART_SMC1].smcp->smc_smcm |= (SMCM_RX | SMCM_TX); |
| 320 | cpm_uart_ports[UART_SMC1].smcp->smc_smcmr &= ~(SMCMR_REN | SMCMR_TEN); |
Vitaly Bordug | 3dd0dcb | 2006-09-21 17:27:15 +0400 | [diff] [blame] | 321 | cpm_uart_ports[UART_SMC1].port.uartclk = uart_clock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | cpm_uart_port_map[cpm_uart_nr++] = UART_SMC1; |
| 323 | #endif |
| 324 | |
| 325 | #ifdef CONFIG_SERIAL_CPM_SMC2 |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 326 | cpm_uart_ports[UART_SMC2].smcp = (smc_t *) cpm2_map(im_smc[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | cpm_uart_ports[UART_SMC2].port.mapbase = |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 328 | (unsigned long)cpm_uart_ports[UART_SMC2].smcp; |
| 329 | |
| 330 | cpm_uart_ports[UART_SMC2].smcup = |
| 331 | (smc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SMC2], PROFF_SMC_SIZE); |
| 332 | addr = (u16 *)cpm2_map_size(im_dprambase[PROFF_SMC2_BASE], 2); |
| 333 | *addr = PROFF_SMC2; |
| 334 | cpm2_unmap(addr); |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | cpm_uart_ports[UART_SMC2].smcp->smc_smcm |= (SMCM_RX | SMCM_TX); |
| 337 | cpm_uart_ports[UART_SMC2].smcp->smc_smcmr &= ~(SMCMR_REN | SMCMR_TEN); |
Vitaly Bordug | 3dd0dcb | 2006-09-21 17:27:15 +0400 | [diff] [blame] | 338 | cpm_uart_ports[UART_SMC2].port.uartclk = uart_clock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | cpm_uart_port_map[cpm_uart_nr++] = UART_SMC2; |
| 340 | #endif |
| 341 | |
| 342 | #ifdef CONFIG_SERIAL_CPM_SCC1 |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 343 | cpm_uart_ports[UART_SCC1].sccp = (scc_t *) cpm2_map(im_scc[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | cpm_uart_ports[UART_SCC1].port.mapbase = |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 345 | (unsigned long)cpm_uart_ports[UART_SCC1].sccp; |
| 346 | cpm_uart_ports[UART_SCC1].sccup = |
| 347 | (scc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SCC1], PROFF_SCC_SIZE); |
| 348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | cpm_uart_ports[UART_SCC1].sccp->scc_sccm &= |
| 350 | ~(UART_SCCM_TX | UART_SCCM_RX); |
| 351 | cpm_uart_ports[UART_SCC1].sccp->scc_gsmrl &= |
| 352 | ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT); |
Vitaly Bordug | 3dd0dcb | 2006-09-21 17:27:15 +0400 | [diff] [blame] | 353 | cpm_uart_ports[UART_SCC1].port.uartclk = uart_clock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | cpm_uart_port_map[cpm_uart_nr++] = UART_SCC1; |
| 355 | #endif |
| 356 | |
| 357 | #ifdef CONFIG_SERIAL_CPM_SCC2 |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 358 | cpm_uart_ports[UART_SCC2].sccp = (scc_t *) cpm2_map(im_scc[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | cpm_uart_ports[UART_SCC2].port.mapbase = |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 360 | (unsigned long)cpm_uart_ports[UART_SCC2].sccp; |
| 361 | cpm_uart_ports[UART_SCC2].sccup = |
| 362 | (scc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SCC2], PROFF_SCC_SIZE); |
| 363 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | cpm_uart_ports[UART_SCC2].sccp->scc_sccm &= |
| 365 | ~(UART_SCCM_TX | UART_SCCM_RX); |
| 366 | cpm_uart_ports[UART_SCC2].sccp->scc_gsmrl &= |
| 367 | ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT); |
Vitaly Bordug | 3dd0dcb | 2006-09-21 17:27:15 +0400 | [diff] [blame] | 368 | cpm_uart_ports[UART_SCC2].port.uartclk = uart_clock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | cpm_uart_port_map[cpm_uart_nr++] = UART_SCC2; |
| 370 | #endif |
| 371 | |
| 372 | #ifdef CONFIG_SERIAL_CPM_SCC3 |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 373 | cpm_uart_ports[UART_SCC3].sccp = (scc_t *) cpm2_map(im_scc[2]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | cpm_uart_ports[UART_SCC3].port.mapbase = |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 375 | (unsigned long)cpm_uart_ports[UART_SCC3].sccp; |
| 376 | cpm_uart_ports[UART_SCC3].sccup = |
| 377 | (scc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SCC3], PROFF_SCC_SIZE); |
| 378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | cpm_uart_ports[UART_SCC3].sccp->scc_sccm &= |
| 380 | ~(UART_SCCM_TX | UART_SCCM_RX); |
| 381 | cpm_uart_ports[UART_SCC3].sccp->scc_gsmrl &= |
| 382 | ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT); |
Vitaly Bordug | 3dd0dcb | 2006-09-21 17:27:15 +0400 | [diff] [blame] | 383 | cpm_uart_ports[UART_SCC3].port.uartclk = uart_clock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | cpm_uart_port_map[cpm_uart_nr++] = UART_SCC3; |
| 385 | #endif |
| 386 | |
| 387 | #ifdef CONFIG_SERIAL_CPM_SCC4 |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 388 | cpm_uart_ports[UART_SCC4].sccp = (scc_t *) cpm2_map(im_scc[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | cpm_uart_ports[UART_SCC4].port.mapbase = |
Vitaly Bordug | fc8e50e | 2006-09-21 22:37:58 +0400 | [diff] [blame] | 390 | (unsigned long)cpm_uart_ports[UART_SCC4].sccp; |
| 391 | cpm_uart_ports[UART_SCC4].sccup = |
| 392 | (scc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SCC4], PROFF_SCC_SIZE); |
| 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | cpm_uart_ports[UART_SCC4].sccp->scc_sccm &= |
| 395 | ~(UART_SCCM_TX | UART_SCCM_RX); |
| 396 | cpm_uart_ports[UART_SCC4].sccp->scc_gsmrl &= |
| 397 | ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT); |
Vitaly Bordug | 3dd0dcb | 2006-09-21 17:27:15 +0400 | [diff] [blame] | 398 | cpm_uart_ports[UART_SCC4].port.uartclk = uart_clock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | cpm_uart_port_map[cpm_uart_nr++] = UART_SCC4; |
| 400 | #endif |
| 401 | |
| 402 | return 0; |
| 403 | } |
Scott Wood | 7ae8703 | 2007-07-17 17:59:06 -0500 | [diff] [blame] | 404 | #endif |