2006-09-21 18:18:53 +00:00
|
|
|
/*
|
|
|
|
* General Purpose functions for the global management of the
|
|
|
|
* 8260 Communication Processor Module.
|
|
|
|
* Copyright (c) 1999-2001 Dan Malek <dan@embeddedalley.com>
|
|
|
|
* Copyright (c) 2000 MontaVista Software, Inc (source@mvista.com)
|
|
|
|
* 2.3.99 Updates
|
|
|
|
*
|
|
|
|
* 2006 (c) MontaVista Software, Inc.
|
|
|
|
* Vitaly Bordug <vbordug@ru.mvista.com>
|
|
|
|
* Merged to arch/powerpc from arch/ppc/syslib/cpm2_common.c
|
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public License
|
|
|
|
* version 2. This program is licensed "as is" without any warranty of any
|
|
|
|
* kind, whether express or implied.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* In addition to the individual control of the communication
|
|
|
|
* channels, there are a few functions that globally affect the
|
|
|
|
* communication processor.
|
|
|
|
*
|
|
|
|
* Buffer descriptors must be allocated from the dual ported memory
|
|
|
|
* space. The allocator for that is here. When the communication
|
|
|
|
* process is reset, we reclaim the memory available. There is
|
|
|
|
* currently no deallocator for this memory.
|
|
|
|
*/
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/param.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/module.h>
|
2007-09-14 20:30:44 +00:00
|
|
|
#include <linux/of.h>
|
|
|
|
|
2006-09-21 18:18:53 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/irq.h>
|
|
|
|
#include <asm/mpc8260.h>
|
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/cpm2.h>
|
|
|
|
#include <asm/rheap.h>
|
|
|
|
#include <asm/fs_pd.h>
|
|
|
|
|
|
|
|
#include <sysdev/fsl_soc.h>
|
|
|
|
|
2007-09-14 20:30:44 +00:00
|
|
|
cpm_cpm2_t __iomem *cpmp; /* Pointer to comm processor space */
|
2006-09-21 18:18:53 +00:00
|
|
|
|
|
|
|
/* We allocate this here because it is used almost exclusively for
|
|
|
|
* the communication processor devices.
|
|
|
|
*/
|
2007-09-14 20:30:44 +00:00
|
|
|
cpm2_map_t __iomem *cpm2_immr;
|
2009-03-19 04:21:23 +00:00
|
|
|
EXPORT_SYMBOL(cpm2_immr);
|
2006-09-21 18:18:53 +00:00
|
|
|
|
|
|
|
#define CPM_MAP_SIZE (0x40000) /* 256k - the PQ3 reserve this amount
|
|
|
|
of space for CPM as it is larger
|
|
|
|
than on PQ2 */
|
|
|
|
|
2007-12-12 22:54:32 +00:00
|
|
|
void __init cpm2_reset(void)
|
2006-09-21 18:18:53 +00:00
|
|
|
{
|
2007-09-14 20:30:44 +00:00
|
|
|
#ifdef CONFIG_PPC_85xx
|
2009-04-22 18:44:24 +00:00
|
|
|
cpm2_immr = ioremap(get_immrbase() + 0x80000, CPM_MAP_SIZE);
|
2007-09-14 20:30:44 +00:00
|
|
|
#else
|
|
|
|
cpm2_immr = ioremap(get_immrbase(), CPM_MAP_SIZE);
|
|
|
|
#endif
|
2006-09-21 18:18:53 +00:00
|
|
|
|
|
|
|
/* Reclaim the DP memory for our use.
|
|
|
|
*/
|
2007-09-28 19:06:16 +00:00
|
|
|
cpm_muram_init();
|
2006-09-21 18:18:53 +00:00
|
|
|
|
|
|
|
/* Tell everyone where the comm processor resides.
|
|
|
|
*/
|
|
|
|
cpmp = &cpm2_immr->im_cpm;
|
2008-04-10 15:02:38 +00:00
|
|
|
|
|
|
|
#ifndef CONFIG_PPC_EARLY_DEBUG_CPM
|
|
|
|
/* Reset the CPM.
|
|
|
|
*/
|
|
|
|
cpm_command(CPM_CR_RST, 0);
|
|
|
|
#endif
|
2006-09-21 18:18:53 +00:00
|
|
|
}
|
|
|
|
|
2007-11-26 17:03:40 +00:00
|
|
|
static DEFINE_SPINLOCK(cmd_lock);
|
|
|
|
|
|
|
|
#define MAX_CR_CMD_LOOPS 10000
|
|
|
|
|
|
|
|
int cpm_command(u32 command, u8 opcode)
|
|
|
|
{
|
|
|
|
int i, ret;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&cmd_lock, flags);
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
out_be32(&cpmp->cp_cpcr, command | opcode | CPM_CR_FLG);
|
|
|
|
for (i = 0; i < MAX_CR_CMD_LOOPS; i++)
|
|
|
|
if ((in_be32(&cpmp->cp_cpcr) & CPM_CR_FLG) == 0)
|
|
|
|
goto out;
|
|
|
|
|
2008-03-28 21:21:07 +00:00
|
|
|
printk(KERN_ERR "%s(): Not able to issue CPM command\n", __func__);
|
2007-11-26 17:03:40 +00:00
|
|
|
ret = -EIO;
|
|
|
|
out:
|
|
|
|
spin_unlock_irqrestore(&cmd_lock, flags);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(cpm_command);
|
|
|
|
|
2006-09-21 18:18:53 +00:00
|
|
|
/* Set a baud rate generator. This needs lots of work. There are
|
|
|
|
* eight BRGs, which can be connected to the CPM channels or output
|
|
|
|
* as clocks. The BRGs are in two different block of internal
|
|
|
|
* memory mapped space.
|
|
|
|
* The baud rate clock is the system clock divided by something.
|
|
|
|
* It was set up long ago during the initial boot phase and is
|
|
|
|
* is given to us.
|
|
|
|
* Baud rate clocks are zero-based in the driver code (as that maps
|
|
|
|
* to port numbers). Documentation uses 1-based numbering.
|
|
|
|
*/
|
2008-07-22 16:00:43 +00:00
|
|
|
void __cpm2_setbrg(uint brg, uint rate, uint clk, int div16, int src)
|
2006-09-21 18:18:53 +00:00
|
|
|
{
|
2007-09-14 20:30:44 +00:00
|
|
|
u32 __iomem *bp;
|
2008-07-22 16:00:43 +00:00
|
|
|
u32 val;
|
2006-09-21 18:18:53 +00:00
|
|
|
|
|
|
|
/* This is good enough to get SMCs running.....
|
|
|
|
*/
|
|
|
|
if (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
|
|
|
bp = cpm2_map_size(im_brgc1, 16);
|
2006-09-21 18:18:53 +00:00
|
|
|
} else {
|
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
|
|
|
bp = cpm2_map_size(im_brgc5, 16);
|
2006-09-21 18:18:53 +00:00
|
|
|
brg -= 4;
|
|
|
|
}
|
|
|
|
bp += brg;
|
2008-11-20 12:32:23 +00:00
|
|
|
/* Round the clock divider to the nearest integer. */
|
|
|
|
val = (((clk * 2 / rate) - 1) & ~1) | CPM_BRG_EN | src;
|
2006-09-21 18:18:53 +00:00
|
|
|
if (div16)
|
2007-09-14 20:30:44 +00:00
|
|
|
val |= CPM_BRG_DIV16;
|
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
|
|
|
|
2007-09-14 20:30:44 +00:00
|
|
|
out_be32(bp, val);
|
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(bp);
|
2006-09-21 18:18:53 +00:00
|
|
|
}
|
2008-07-22 16:00:43 +00:00
|
|
|
EXPORT_SYMBOL(__cpm2_setbrg);
|
2006-09-21 18:18:53 +00:00
|
|
|
|
2006-09-21 18:38:05 +00:00
|
|
|
int cpm2_clk_setup(enum cpm_clk_target target, int clock, int mode)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
int shift;
|
|
|
|
int i, bits = 0;
|
2007-09-14 20:30:44 +00:00
|
|
|
cpmux_t __iomem *im_cpmux;
|
|
|
|
u32 __iomem *reg;
|
2006-09-21 18:38:05 +00:00
|
|
|
u32 mask = 7;
|
2007-07-16 18:26:35 +00:00
|
|
|
|
|
|
|
u8 clk_map[][3] = {
|
2006-09-21 18:38:05 +00:00
|
|
|
{CPM_CLK_FCC1, CPM_BRG5, 0},
|
|
|
|
{CPM_CLK_FCC1, CPM_BRG6, 1},
|
|
|
|
{CPM_CLK_FCC1, CPM_BRG7, 2},
|
|
|
|
{CPM_CLK_FCC1, CPM_BRG8, 3},
|
|
|
|
{CPM_CLK_FCC1, CPM_CLK9, 4},
|
|
|
|
{CPM_CLK_FCC1, CPM_CLK10, 5},
|
|
|
|
{CPM_CLK_FCC1, CPM_CLK11, 6},
|
|
|
|
{CPM_CLK_FCC1, CPM_CLK12, 7},
|
|
|
|
{CPM_CLK_FCC2, CPM_BRG5, 0},
|
|
|
|
{CPM_CLK_FCC2, CPM_BRG6, 1},
|
|
|
|
{CPM_CLK_FCC2, CPM_BRG7, 2},
|
|
|
|
{CPM_CLK_FCC2, CPM_BRG8, 3},
|
|
|
|
{CPM_CLK_FCC2, CPM_CLK13, 4},
|
|
|
|
{CPM_CLK_FCC2, CPM_CLK14, 5},
|
|
|
|
{CPM_CLK_FCC2, CPM_CLK15, 6},
|
|
|
|
{CPM_CLK_FCC2, CPM_CLK16, 7},
|
|
|
|
{CPM_CLK_FCC3, CPM_BRG5, 0},
|
|
|
|
{CPM_CLK_FCC3, CPM_BRG6, 1},
|
|
|
|
{CPM_CLK_FCC3, CPM_BRG7, 2},
|
|
|
|
{CPM_CLK_FCC3, CPM_BRG8, 3},
|
|
|
|
{CPM_CLK_FCC3, CPM_CLK13, 4},
|
|
|
|
{CPM_CLK_FCC3, CPM_CLK14, 5},
|
|
|
|
{CPM_CLK_FCC3, CPM_CLK15, 6},
|
2007-07-16 18:26:35 +00:00
|
|
|
{CPM_CLK_FCC3, CPM_CLK16, 7},
|
|
|
|
{CPM_CLK_SCC1, CPM_BRG1, 0},
|
|
|
|
{CPM_CLK_SCC1, CPM_BRG2, 1},
|
|
|
|
{CPM_CLK_SCC1, CPM_BRG3, 2},
|
|
|
|
{CPM_CLK_SCC1, CPM_BRG4, 3},
|
|
|
|
{CPM_CLK_SCC1, CPM_CLK11, 4},
|
|
|
|
{CPM_CLK_SCC1, CPM_CLK12, 5},
|
|
|
|
{CPM_CLK_SCC1, CPM_CLK3, 6},
|
|
|
|
{CPM_CLK_SCC1, CPM_CLK4, 7},
|
|
|
|
{CPM_CLK_SCC2, CPM_BRG1, 0},
|
|
|
|
{CPM_CLK_SCC2, CPM_BRG2, 1},
|
|
|
|
{CPM_CLK_SCC2, CPM_BRG3, 2},
|
|
|
|
{CPM_CLK_SCC2, CPM_BRG4, 3},
|
|
|
|
{CPM_CLK_SCC2, CPM_CLK11, 4},
|
|
|
|
{CPM_CLK_SCC2, CPM_CLK12, 5},
|
|
|
|
{CPM_CLK_SCC2, CPM_CLK3, 6},
|
|
|
|
{CPM_CLK_SCC2, CPM_CLK4, 7},
|
|
|
|
{CPM_CLK_SCC3, CPM_BRG1, 0},
|
|
|
|
{CPM_CLK_SCC3, CPM_BRG2, 1},
|
|
|
|
{CPM_CLK_SCC3, CPM_BRG3, 2},
|
|
|
|
{CPM_CLK_SCC3, CPM_BRG4, 3},
|
|
|
|
{CPM_CLK_SCC3, CPM_CLK5, 4},
|
|
|
|
{CPM_CLK_SCC3, CPM_CLK6, 5},
|
|
|
|
{CPM_CLK_SCC3, CPM_CLK7, 6},
|
|
|
|
{CPM_CLK_SCC3, CPM_CLK8, 7},
|
|
|
|
{CPM_CLK_SCC4, CPM_BRG1, 0},
|
|
|
|
{CPM_CLK_SCC4, CPM_BRG2, 1},
|
|
|
|
{CPM_CLK_SCC4, CPM_BRG3, 2},
|
|
|
|
{CPM_CLK_SCC4, CPM_BRG4, 3},
|
|
|
|
{CPM_CLK_SCC4, CPM_CLK5, 4},
|
|
|
|
{CPM_CLK_SCC4, CPM_CLK6, 5},
|
|
|
|
{CPM_CLK_SCC4, CPM_CLK7, 6},
|
|
|
|
{CPM_CLK_SCC4, CPM_CLK8, 7},
|
|
|
|
};
|
2006-09-21 18:38:05 +00:00
|
|
|
|
|
|
|
im_cpmux = cpm2_map(im_cpmux);
|
|
|
|
|
|
|
|
switch (target) {
|
|
|
|
case CPM_CLK_SCC1:
|
|
|
|
reg = &im_cpmux->cmx_scr;
|
|
|
|
shift = 24;
|
2008-04-02 14:46:31 +00:00
|
|
|
break;
|
2006-09-21 18:38:05 +00:00
|
|
|
case CPM_CLK_SCC2:
|
|
|
|
reg = &im_cpmux->cmx_scr;
|
|
|
|
shift = 16;
|
|
|
|
break;
|
|
|
|
case CPM_CLK_SCC3:
|
|
|
|
reg = &im_cpmux->cmx_scr;
|
|
|
|
shift = 8;
|
|
|
|
break;
|
|
|
|
case CPM_CLK_SCC4:
|
|
|
|
reg = &im_cpmux->cmx_scr;
|
|
|
|
shift = 0;
|
|
|
|
break;
|
|
|
|
case CPM_CLK_FCC1:
|
|
|
|
reg = &im_cpmux->cmx_fcr;
|
|
|
|
shift = 24;
|
|
|
|
break;
|
|
|
|
case CPM_CLK_FCC2:
|
|
|
|
reg = &im_cpmux->cmx_fcr;
|
|
|
|
shift = 16;
|
|
|
|
break;
|
|
|
|
case CPM_CLK_FCC3:
|
|
|
|
reg = &im_cpmux->cmx_fcr;
|
|
|
|
shift = 8;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printk(KERN_ERR "cpm2_clock_setup: invalid clock target\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2007-07-16 18:26:35 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(clk_map); i++) {
|
2006-09-21 18:38:05 +00:00
|
|
|
if (clk_map[i][0] == target && clk_map[i][1] == clock) {
|
|
|
|
bits = clk_map[i][2];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-07-16 18:26:35 +00:00
|
|
|
if (i == ARRAY_SIZE(clk_map))
|
2006-09-21 18:38:05 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
|
|
|
|
bits <<= shift;
|
|
|
|
mask <<= shift;
|
2007-07-16 18:26:35 +00:00
|
|
|
|
2010-04-03 14:11:43 +00:00
|
|
|
if (mode == CPM_CLK_RTX) {
|
|
|
|
bits |= bits << 3;
|
|
|
|
mask |= mask << 3;
|
|
|
|
} else if (mode == CPM_CLK_RX) {
|
|
|
|
bits <<= 3;
|
|
|
|
mask <<= 3;
|
|
|
|
}
|
|
|
|
|
2006-09-21 18:38:05 +00:00
|
|
|
out_be32(reg, (in_be32(reg) & ~mask) | bits);
|
|
|
|
|
|
|
|
cpm2_unmap(im_cpmux);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-07-16 18:26:35 +00:00
|
|
|
int cpm2_smc_clk_setup(enum cpm_clk_target target, int clock)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
int shift;
|
|
|
|
int i, bits = 0;
|
|
|
|
cpmux_t __iomem *im_cpmux;
|
|
|
|
u8 __iomem *reg;
|
|
|
|
u8 mask = 3;
|
|
|
|
|
|
|
|
u8 clk_map[][3] = {
|
|
|
|
{CPM_CLK_SMC1, CPM_BRG1, 0},
|
|
|
|
{CPM_CLK_SMC1, CPM_BRG7, 1},
|
|
|
|
{CPM_CLK_SMC1, CPM_CLK7, 2},
|
|
|
|
{CPM_CLK_SMC1, CPM_CLK9, 3},
|
|
|
|
{CPM_CLK_SMC2, CPM_BRG2, 0},
|
|
|
|
{CPM_CLK_SMC2, CPM_BRG8, 1},
|
|
|
|
{CPM_CLK_SMC2, CPM_CLK4, 2},
|
|
|
|
{CPM_CLK_SMC2, CPM_CLK15, 3},
|
|
|
|
};
|
|
|
|
|
|
|
|
im_cpmux = cpm2_map(im_cpmux);
|
|
|
|
|
|
|
|
switch (target) {
|
|
|
|
case CPM_CLK_SMC1:
|
|
|
|
reg = &im_cpmux->cmx_smr;
|
|
|
|
mask = 3;
|
|
|
|
shift = 4;
|
|
|
|
break;
|
|
|
|
case CPM_CLK_SMC2:
|
|
|
|
reg = &im_cpmux->cmx_smr;
|
|
|
|
mask = 3;
|
|
|
|
shift = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printk(KERN_ERR "cpm2_smc_clock_setup: invalid clock target\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(clk_map); i++) {
|
|
|
|
if (clk_map[i][0] == target && clk_map[i][1] == clock) {
|
|
|
|
bits = clk_map[i][2];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == ARRAY_SIZE(clk_map))
|
|
|
|
ret = -EINVAL;
|
|
|
|
|
|
|
|
bits <<= shift;
|
|
|
|
mask <<= shift;
|
|
|
|
|
|
|
|
out_8(reg, (in_8(reg) & ~mask) | bits);
|
|
|
|
|
|
|
|
cpm2_unmap(im_cpmux);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-07-16 18:32:24 +00:00
|
|
|
struct cpm2_ioports {
|
|
|
|
u32 dir, par, sor, odr, dat;
|
|
|
|
u32 res[3];
|
|
|
|
};
|
|
|
|
|
|
|
|
void cpm2_set_pin(int port, int pin, int flags)
|
|
|
|
{
|
|
|
|
struct cpm2_ioports __iomem *iop =
|
|
|
|
(struct cpm2_ioports __iomem *)&cpm2_immr->im_ioport;
|
|
|
|
|
|
|
|
pin = 1 << (31 - pin);
|
|
|
|
|
|
|
|
if (flags & CPM_PIN_OUTPUT)
|
|
|
|
setbits32(&iop[port].dir, pin);
|
|
|
|
else
|
|
|
|
clrbits32(&iop[port].dir, pin);
|
|
|
|
|
|
|
|
if (!(flags & CPM_PIN_GPIO))
|
|
|
|
setbits32(&iop[port].par, pin);
|
|
|
|
else
|
|
|
|
clrbits32(&iop[port].par, pin);
|
|
|
|
|
|
|
|
if (flags & CPM_PIN_SECONDARY)
|
|
|
|
setbits32(&iop[port].sor, pin);
|
|
|
|
else
|
|
|
|
clrbits32(&iop[port].sor, pin);
|
|
|
|
|
|
|
|
if (flags & CPM_PIN_OPENDRAIN)
|
|
|
|
setbits32(&iop[port].odr, pin);
|
|
|
|
else
|
|
|
|
clrbits32(&iop[port].odr, pin);
|
|
|
|
}
|
2008-07-28 08:43:22 +00:00
|
|
|
|
|
|
|
static int cpm_init_par_io(void)
|
|
|
|
{
|
|
|
|
struct device_node *np;
|
|
|
|
|
|
|
|
for_each_compatible_node(np, NULL, "fsl,cpm2-pario-bank")
|
|
|
|
cpm2_gpiochip_add32(np);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
arch_initcall(cpm_init_par_io);
|
|
|
|
|