2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/drivers/serial/cpm_uart_cpm2.c
|
|
|
|
*
|
|
|
|
* Driver for CPM (SCC/SMC) serial ports; CPM2 definitions
|
|
|
|
*
|
2005-11-14 00:06:30 +00:00
|
|
|
* Maintainer: Kumar Gala (galak@kernel.crashing.org) (CPM2)
|
2005-04-16 22:20:36 +00:00
|
|
|
* Pantelis Antoniou (panto@intracom.gr) (CPM1)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Freescale Semiconductor, Inc.
|
|
|
|
* (C) 2004 Intracom, S.A.
|
2006-04-29 19:06:00 +00:00
|
|
|
* (C) 2006 MontaVista Software, Inc.
|
|
|
|
* Vitaly Bordug <vbordug@ru.mvista.com>
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/tty.h>
|
|
|
|
#include <linux/ioport.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/serial.h>
|
|
|
|
#include <linux/console.h>
|
|
|
|
#include <linux/sysrq.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/bootmem.h>
|
|
|
|
#include <linux/dma-mapping.h>
|
|
|
|
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/irq.h>
|
2006-09-21 13:27:15 +00:00
|
|
|
#include <asm/fs_pd.h>
|
2008-04-10 15:01:27 +00:00
|
|
|
#ifdef CONFIG_PPC_CPM_NEW_BINDING
|
|
|
|
#include <asm/prom.h>
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include <linux/serial_core.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
|
|
|
|
#include "cpm_uart.h"
|
|
|
|
|
|
|
|
/**************************************************************/
|
|
|
|
|
2007-07-17 22:59:06 +00:00
|
|
|
#ifdef CONFIG_PPC_CPM_NEW_BINDING
|
|
|
|
void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd)
|
|
|
|
{
|
2007-11-26 17:03:40 +00:00
|
|
|
cpm_command(port->command, cmd);
|
2007-07-17 22:59:06 +00:00
|
|
|
}
|
2008-04-10 15:01:27 +00:00
|
|
|
|
|
|
|
void __iomem *cpm_uart_map_pram(struct uart_cpm_port *port,
|
|
|
|
struct device_node *np)
|
|
|
|
{
|
|
|
|
void __iomem *pram;
|
|
|
|
unsigned long offset;
|
|
|
|
struct resource res;
|
|
|
|
unsigned long len;
|
|
|
|
|
|
|
|
/* Don't remap parameter RAM if it has already been initialized
|
|
|
|
* during console setup.
|
|
|
|
*/
|
|
|
|
if (IS_SMC(port) && port->smcup)
|
|
|
|
return port->smcup;
|
|
|
|
else if (!IS_SMC(port) && port->sccup)
|
|
|
|
return port->sccup;
|
|
|
|
|
|
|
|
if (of_address_to_resource(np, 1, &res))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
len = 1 + res.end - res.start;
|
|
|
|
pram = ioremap(res.start, len);
|
|
|
|
if (!pram)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!IS_SMC(port))
|
|
|
|
return pram;
|
|
|
|
|
|
|
|
if (len != 2) {
|
|
|
|
printk(KERN_WARNING "cpm_uart[%d]: device tree references "
|
|
|
|
"SMC pram, using boot loader/wrapper pram mapping. "
|
|
|
|
"Please fix your device tree to reference the pram "
|
|
|
|
"base register instead.\n",
|
|
|
|
port->port.line);
|
|
|
|
return pram;
|
|
|
|
}
|
|
|
|
|
|
|
|
offset = cpm_dpalloc(PROFF_SMC_SIZE, 64);
|
|
|
|
out_be16(pram, offset);
|
|
|
|
iounmap(pram);
|
|
|
|
return cpm_muram_addr(offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cpm_uart_unmap_pram(struct uart_cpm_port *port, void __iomem *pram)
|
|
|
|
{
|
|
|
|
if (!IS_SMC(port))
|
|
|
|
iounmap(pram);
|
|
|
|
}
|
|
|
|
|
2007-07-17 22:59:06 +00:00
|
|
|
#else
|
|
|
|
void cpm_line_cr_cmd(struct uart_cpm_port *port, int cmd)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
ulong val;
|
2007-07-17 22:59:06 +00:00
|
|
|
int line = port - cpm_uart_ports;
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
switch (line) {
|
|
|
|
case UART_SMC1:
|
|
|
|
val = mk_cr_cmd(CPM_CR_SMC1_PAGE, CPM_CR_SMC1_SBLOCK, 0,
|
|
|
|
cmd) | CPM_CR_FLG;
|
|
|
|
break;
|
|
|
|
case UART_SMC2:
|
|
|
|
val = mk_cr_cmd(CPM_CR_SMC2_PAGE, CPM_CR_SMC2_SBLOCK, 0,
|
|
|
|
cmd) | CPM_CR_FLG;
|
|
|
|
break;
|
|
|
|
case UART_SCC1:
|
|
|
|
val = mk_cr_cmd(CPM_CR_SCC1_PAGE, CPM_CR_SCC1_SBLOCK, 0,
|
|
|
|
cmd) | CPM_CR_FLG;
|
|
|
|
break;
|
|
|
|
case UART_SCC2:
|
|
|
|
val = mk_cr_cmd(CPM_CR_SCC2_PAGE, CPM_CR_SCC2_SBLOCK, 0,
|
|
|
|
cmd) | CPM_CR_FLG;
|
|
|
|
break;
|
|
|
|
case UART_SCC3:
|
|
|
|
val = mk_cr_cmd(CPM_CR_SCC3_PAGE, CPM_CR_SCC3_SBLOCK, 0,
|
|
|
|
cmd) | CPM_CR_FLG;
|
|
|
|
break;
|
|
|
|
case UART_SCC4:
|
|
|
|
val = mk_cr_cmd(CPM_CR_SCC4_PAGE, CPM_CR_SCC4_SBLOCK, 0,
|
|
|
|
cmd) | CPM_CR_FLG;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
cp->cp_cpcr = val;
|
|
|
|
while (cp->cp_cpcr & CPM_CR_FLG) ;
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
|
|
|
|
cpm2_unmap(cp);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void smc1_lineif(struct uart_cpm_port *pinfo)
|
|
|
|
{
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
volatile iop_cpm2_t *io = cpm2_map(im_ioport);
|
|
|
|
volatile cpmux_t *cpmux = cpm2_map(im_cpmux);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* SMC1 is only on port D */
|
|
|
|
io->iop_ppard |= 0x00c00000;
|
|
|
|
io->iop_pdird |= 0x00400000;
|
|
|
|
io->iop_pdird &= ~0x00800000;
|
|
|
|
io->iop_psord &= ~0x00c00000;
|
|
|
|
|
|
|
|
/* Wire BRG1 to SMC1 */
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpmux->cmx_smr &= 0x0f;
|
2005-04-16 22:20:36 +00:00
|
|
|
pinfo->brg = 1;
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
|
|
|
|
cpm2_unmap(cpmux);
|
|
|
|
cpm2_unmap(io);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void smc2_lineif(struct uart_cpm_port *pinfo)
|
|
|
|
{
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
volatile iop_cpm2_t *io = cpm2_map(im_ioport);
|
|
|
|
volatile cpmux_t *cpmux = cpm2_map(im_cpmux);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* SMC2 is only on port A */
|
|
|
|
io->iop_ppara |= 0x00c00000;
|
|
|
|
io->iop_pdira |= 0x00400000;
|
|
|
|
io->iop_pdira &= ~0x00800000;
|
|
|
|
io->iop_psora &= ~0x00c00000;
|
|
|
|
|
|
|
|
/* Wire BRG2 to SMC2 */
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpmux->cmx_smr &= 0xf0;
|
2005-04-16 22:20:36 +00:00
|
|
|
pinfo->brg = 2;
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
|
|
|
|
cpm2_unmap(cpmux);
|
|
|
|
cpm2_unmap(io);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void scc1_lineif(struct uart_cpm_port *pinfo)
|
|
|
|
{
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
volatile iop_cpm2_t *io = cpm2_map(im_ioport);
|
|
|
|
volatile cpmux_t *cpmux = cpm2_map(im_cpmux);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Use Port D for SCC1 instead of other functions. */
|
|
|
|
io->iop_ppard |= 0x00000003;
|
|
|
|
io->iop_psord &= ~0x00000001; /* Rx */
|
|
|
|
io->iop_psord |= 0x00000002; /* Tx */
|
|
|
|
io->iop_pdird &= ~0x00000001; /* Rx */
|
|
|
|
io->iop_pdird |= 0x00000002; /* Tx */
|
|
|
|
|
|
|
|
/* Wire BRG1 to SCC1 */
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpmux->cmx_scr &= 0x00ffffff;
|
|
|
|
cpmux->cmx_scr |= 0x00000000;
|
2005-04-16 22:20:36 +00:00
|
|
|
pinfo->brg = 1;
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
|
|
|
|
cpm2_unmap(cpmux);
|
|
|
|
cpm2_unmap(io);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void scc2_lineif(struct uart_cpm_port *pinfo)
|
|
|
|
{
|
2005-06-22 00:15:22 +00:00
|
|
|
/*
|
|
|
|
* STx GP3 uses the SCC2 secondary option pin assignment
|
|
|
|
* which this driver doesn't account for in the static
|
|
|
|
* pin assignments. This kind of board specific info
|
|
|
|
* really has to get out of the driver so boards can
|
|
|
|
* be supported in a sane fashion.
|
|
|
|
*/
|
2008-01-23 12:36:40 +00:00
|
|
|
volatile cpmux_t *cpmux = cpm2_map(im_cpmux);
|
2005-06-22 00:15:22 +00:00
|
|
|
#ifndef CONFIG_STX_GP3
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
volatile iop_cpm2_t *io = cpm2_map(im_ioport);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
io->iop_pparb |= 0x008b0000;
|
|
|
|
io->iop_pdirb |= 0x00880000;
|
|
|
|
io->iop_psorb |= 0x00880000;
|
|
|
|
io->iop_pdirb &= ~0x00030000;
|
|
|
|
io->iop_psorb &= ~0x00030000;
|
2005-06-22 00:15:22 +00:00
|
|
|
#endif
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpmux->cmx_scr &= 0xff00ffff;
|
|
|
|
cpmux->cmx_scr |= 0x00090000;
|
2005-04-16 22:20:36 +00:00
|
|
|
pinfo->brg = 2;
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
|
|
|
|
cpm2_unmap(cpmux);
|
|
|
|
cpm2_unmap(io);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void scc3_lineif(struct uart_cpm_port *pinfo)
|
|
|
|
{
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
volatile iop_cpm2_t *io = cpm2_map(im_ioport);
|
|
|
|
volatile cpmux_t *cpmux = cpm2_map(im_cpmux);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
io->iop_pparb |= 0x008b0000;
|
|
|
|
io->iop_pdirb |= 0x00880000;
|
|
|
|
io->iop_psorb |= 0x00880000;
|
|
|
|
io->iop_pdirb &= ~0x00030000;
|
|
|
|
io->iop_psorb &= ~0x00030000;
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpmux->cmx_scr &= 0xffff00ff;
|
|
|
|
cpmux->cmx_scr |= 0x00001200;
|
2005-04-16 22:20:36 +00:00
|
|
|
pinfo->brg = 3;
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
|
|
|
|
cpm2_unmap(cpmux);
|
|
|
|
cpm2_unmap(io);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void scc4_lineif(struct uart_cpm_port *pinfo)
|
|
|
|
{
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
volatile iop_cpm2_t *io = cpm2_map(im_ioport);
|
|
|
|
volatile cpmux_t *cpmux = cpm2_map(im_cpmux);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
io->iop_ppard |= 0x00000600;
|
|
|
|
io->iop_psord &= ~0x00000600; /* Tx/Rx */
|
|
|
|
io->iop_pdird &= ~0x00000200; /* Rx */
|
|
|
|
io->iop_pdird |= 0x00000400; /* Tx */
|
|
|
|
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpmux->cmx_scr &= 0xffffff00;
|
|
|
|
cpmux->cmx_scr |= 0x0000001b;
|
2005-04-16 22:20:36 +00:00
|
|
|
pinfo->brg = 4;
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
|
|
|
|
cpm2_unmap(cpmux);
|
|
|
|
cpm2_unmap(io);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2007-07-17 22:59:06 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate DP-Ram and memory buffers. We need to allocate a transmit and
|
|
|
|
* receive buffer descriptors from dual port ram, and a character
|
|
|
|
* buffer area from host mem. If we are allocating for the console we need
|
|
|
|
* to do it from bootmem
|
|
|
|
*/
|
|
|
|
int cpm_uart_allocbuf(struct uart_cpm_port *pinfo, unsigned int is_con)
|
|
|
|
{
|
|
|
|
int dpmemsz, memsz;
|
2007-09-28 19:06:16 +00:00
|
|
|
u8 __iomem *dp_mem;
|
2007-05-08 19:46:36 +00:00
|
|
|
unsigned long dp_offset;
|
2005-04-16 22:20:36 +00:00
|
|
|
u8 *mem_addr;
|
|
|
|
dma_addr_t dma_addr = 0;
|
|
|
|
|
|
|
|
pr_debug("CPM uart[%d]:allocbuf\n", pinfo->port.line);
|
|
|
|
|
|
|
|
dpmemsz = sizeof(cbd_t) * (pinfo->rx_nrfifos + pinfo->tx_nrfifos);
|
|
|
|
dp_offset = cpm_dpalloc(dpmemsz, 8);
|
2007-05-08 19:46:36 +00:00
|
|
|
if (IS_ERR_VALUE(dp_offset)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
printk(KERN_ERR
|
|
|
|
"cpm_uart_cpm.c: could not allocate buffer descriptors\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
dp_mem = cpm_dpram_addr(dp_offset);
|
|
|
|
|
|
|
|
memsz = L1_CACHE_ALIGN(pinfo->rx_nrfifos * pinfo->rx_fifosize) +
|
|
|
|
L1_CACHE_ALIGN(pinfo->tx_nrfifos * pinfo->tx_fifosize);
|
2006-04-25 16:26:46 +00:00
|
|
|
if (is_con) {
|
2005-04-16 22:20:36 +00:00
|
|
|
mem_addr = alloc_bootmem(memsz);
|
2006-05-24 17:40:18 +00:00
|
|
|
dma_addr = virt_to_bus(mem_addr);
|
2006-04-25 16:26:46 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
else
|
|
|
|
mem_addr = dma_alloc_coherent(NULL, memsz, &dma_addr,
|
|
|
|
GFP_KERNEL);
|
|
|
|
|
|
|
|
if (mem_addr == NULL) {
|
|
|
|
cpm_dpfree(dp_offset);
|
|
|
|
printk(KERN_ERR
|
|
|
|
"cpm_uart_cpm.c: could not allocate coherent memory\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
pinfo->dp_addr = dp_offset;
|
|
|
|
pinfo->mem_addr = mem_addr;
|
|
|
|
pinfo->dma_addr = dma_addr;
|
2006-04-25 16:26:46 +00:00
|
|
|
pinfo->mem_size = memsz;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
pinfo->rx_buf = mem_addr;
|
|
|
|
pinfo->tx_buf = pinfo->rx_buf + L1_CACHE_ALIGN(pinfo->rx_nrfifos
|
|
|
|
* pinfo->rx_fifosize);
|
|
|
|
|
2007-09-28 19:06:16 +00:00
|
|
|
pinfo->rx_bd_base = (cbd_t __iomem *)dp_mem;
|
2005-04-16 22:20:36 +00:00
|
|
|
pinfo->tx_bd_base = pinfo->rx_bd_base + pinfo->rx_nrfifos;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cpm_uart_freebuf(struct uart_cpm_port *pinfo)
|
|
|
|
{
|
|
|
|
dma_free_coherent(NULL, L1_CACHE_ALIGN(pinfo->rx_nrfifos *
|
|
|
|
pinfo->rx_fifosize) +
|
|
|
|
L1_CACHE_ALIGN(pinfo->tx_nrfifos *
|
2007-07-24 20:53:07 +00:00
|
|
|
pinfo->tx_fifosize), (void __force *)pinfo->mem_addr,
|
2005-04-16 22:20:36 +00:00
|
|
|
pinfo->dma_addr);
|
|
|
|
|
|
|
|
cpm_dpfree(pinfo->dp_addr);
|
|
|
|
}
|
|
|
|
|
2007-07-17 22:59:06 +00:00
|
|
|
#ifndef CONFIG_PPC_CPM_NEW_BINDING
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Setup any dynamic params in the uart desc */
|
2007-05-10 04:44:58 +00:00
|
|
|
int cpm_uart_init_portdesc(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
#if defined(CONFIG_SERIAL_CPM_SMC1) || defined(CONFIG_SERIAL_CPM_SMC2)
|
2007-02-15 17:43:06 +00:00
|
|
|
u16 *addr;
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
pr_debug("CPM uart[-]:init portdesc\n");
|
|
|
|
|
|
|
|
cpm_uart_nr = 0;
|
|
|
|
#ifdef CONFIG_SERIAL_CPM_SMC1
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpm_uart_ports[UART_SMC1].smcp = (smc_t *) cpm2_map(im_smc[0]);
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SMC1].port.mapbase =
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
(unsigned long)cpm_uart_ports[UART_SMC1].smcp;
|
|
|
|
|
|
|
|
cpm_uart_ports[UART_SMC1].smcup =
|
|
|
|
(smc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SMC1], PROFF_SMC_SIZE);
|
|
|
|
addr = (u16 *)cpm2_map_size(im_dprambase[PROFF_SMC1_BASE], 2);
|
|
|
|
*addr = PROFF_SMC1;
|
|
|
|
cpm2_unmap(addr);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SMC1].smcp->smc_smcm |= (SMCM_RX | SMCM_TX);
|
|
|
|
cpm_uart_ports[UART_SMC1].smcp->smc_smcmr &= ~(SMCMR_REN | SMCMR_TEN);
|
2006-09-21 13:27:15 +00:00
|
|
|
cpm_uart_ports[UART_SMC1].port.uartclk = uart_clock();
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_port_map[cpm_uart_nr++] = UART_SMC1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SERIAL_CPM_SMC2
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpm_uart_ports[UART_SMC2].smcp = (smc_t *) cpm2_map(im_smc[1]);
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SMC2].port.mapbase =
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
(unsigned long)cpm_uart_ports[UART_SMC2].smcp;
|
|
|
|
|
|
|
|
cpm_uart_ports[UART_SMC2].smcup =
|
|
|
|
(smc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SMC2], PROFF_SMC_SIZE);
|
|
|
|
addr = (u16 *)cpm2_map_size(im_dprambase[PROFF_SMC2_BASE], 2);
|
|
|
|
*addr = PROFF_SMC2;
|
|
|
|
cpm2_unmap(addr);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SMC2].smcp->smc_smcm |= (SMCM_RX | SMCM_TX);
|
|
|
|
cpm_uart_ports[UART_SMC2].smcp->smc_smcmr &= ~(SMCMR_REN | SMCMR_TEN);
|
2006-09-21 13:27:15 +00:00
|
|
|
cpm_uart_ports[UART_SMC2].port.uartclk = uart_clock();
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_port_map[cpm_uart_nr++] = UART_SMC2;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SERIAL_CPM_SCC1
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpm_uart_ports[UART_SCC1].sccp = (scc_t *) cpm2_map(im_scc[0]);
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SCC1].port.mapbase =
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
(unsigned long)cpm_uart_ports[UART_SCC1].sccp;
|
|
|
|
cpm_uart_ports[UART_SCC1].sccup =
|
|
|
|
(scc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SCC1], PROFF_SCC_SIZE);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SCC1].sccp->scc_sccm &=
|
|
|
|
~(UART_SCCM_TX | UART_SCCM_RX);
|
|
|
|
cpm_uart_ports[UART_SCC1].sccp->scc_gsmrl &=
|
|
|
|
~(SCC_GSMRL_ENR | SCC_GSMRL_ENT);
|
2006-09-21 13:27:15 +00:00
|
|
|
cpm_uart_ports[UART_SCC1].port.uartclk = uart_clock();
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_port_map[cpm_uart_nr++] = UART_SCC1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SERIAL_CPM_SCC2
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpm_uart_ports[UART_SCC2].sccp = (scc_t *) cpm2_map(im_scc[1]);
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SCC2].port.mapbase =
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
(unsigned long)cpm_uart_ports[UART_SCC2].sccp;
|
|
|
|
cpm_uart_ports[UART_SCC2].sccup =
|
|
|
|
(scc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SCC2], PROFF_SCC_SIZE);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SCC2].sccp->scc_sccm &=
|
|
|
|
~(UART_SCCM_TX | UART_SCCM_RX);
|
|
|
|
cpm_uart_ports[UART_SCC2].sccp->scc_gsmrl &=
|
|
|
|
~(SCC_GSMRL_ENR | SCC_GSMRL_ENT);
|
2006-09-21 13:27:15 +00:00
|
|
|
cpm_uart_ports[UART_SCC2].port.uartclk = uart_clock();
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_port_map[cpm_uart_nr++] = UART_SCC2;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SERIAL_CPM_SCC3
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpm_uart_ports[UART_SCC3].sccp = (scc_t *) cpm2_map(im_scc[2]);
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SCC3].port.mapbase =
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
(unsigned long)cpm_uart_ports[UART_SCC3].sccp;
|
|
|
|
cpm_uart_ports[UART_SCC3].sccup =
|
|
|
|
(scc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SCC3], PROFF_SCC_SIZE);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SCC3].sccp->scc_sccm &=
|
|
|
|
~(UART_SCCM_TX | UART_SCCM_RX);
|
|
|
|
cpm_uart_ports[UART_SCC3].sccp->scc_gsmrl &=
|
|
|
|
~(SCC_GSMRL_ENR | SCC_GSMRL_ENT);
|
2006-09-21 13:27:15 +00:00
|
|
|
cpm_uart_ports[UART_SCC3].port.uartclk = uart_clock();
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_port_map[cpm_uart_nr++] = UART_SCC3;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SERIAL_CPM_SCC4
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
cpm_uart_ports[UART_SCC4].sccp = (scc_t *) cpm2_map(im_scc[3]);
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SCC4].port.mapbase =
|
POWERPC: Get rid of remapping the whole immr
The stuff below cleans up the code attempting to remap the whole cpm2_immr
early, as well as places happily assuming that fact. This is more like the 2.4
legacy stuff, and is at least confusing and unclear now.
To keep the world comfortable, a new mechanism is introduced: before accessing
specific immr register/register set, one needs to map it, using cpm2_map(<reg>),
for instance, access to CPM command register will look like
volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
keeping the code clear, yet without "already defined somewhere" cpm2_immr.
So far, unmapping code is not implemented, but it's not a big deal to add it,
if the whole idea makes sense.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
2006-09-21 18:37:58 +00:00
|
|
|
(unsigned long)cpm_uart_ports[UART_SCC4].sccp;
|
|
|
|
cpm_uart_ports[UART_SCC4].sccup =
|
|
|
|
(scc_uart_t *) cpm2_map_size(im_dprambase[PROFF_SCC4], PROFF_SCC_SIZE);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_ports[UART_SCC4].sccp->scc_sccm &=
|
|
|
|
~(UART_SCCM_TX | UART_SCCM_RX);
|
|
|
|
cpm_uart_ports[UART_SCC4].sccp->scc_gsmrl &=
|
|
|
|
~(SCC_GSMRL_ENR | SCC_GSMRL_ENT);
|
2006-09-21 13:27:15 +00:00
|
|
|
cpm_uart_ports[UART_SCC4].port.uartclk = uart_clock();
|
2005-04-16 22:20:36 +00:00
|
|
|
cpm_uart_port_map[cpm_uart_nr++] = UART_SCC4;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2007-07-17 22:59:06 +00:00
|
|
|
#endif
|