2008-07-15 10:13:38 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2008
|
|
|
|
* Martha J Marx, Silicon Turnkey Express, mmarx@silicontkx.com
|
|
|
|
* mpc512x I/O pin/pad initialization for the ADS5121 board
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2008-07-15 10:13:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <linux/types.h>
|
2009-05-16 08:47:43 +00:00
|
|
|
#include <asm/io.h>
|
2008-07-15 10:13:38 +00:00
|
|
|
|
|
|
|
void iopin_initialize(iopin_t *ioregs_init, int len)
|
|
|
|
{
|
2008-08-11 22:36:53 +00:00
|
|
|
short i, j, p;
|
2009-05-16 08:47:42 +00:00
|
|
|
u32 *reg;
|
2008-10-16 13:01:15 +00:00
|
|
|
immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
|
2008-07-15 10:13:38 +00:00
|
|
|
|
2009-05-16 08:47:42 +00:00
|
|
|
reg = (u32 *)&(im->io_ctrl);
|
2008-07-15 10:13:38 +00:00
|
|
|
|
|
|
|
if (sizeof(ioregs_init) == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
for (p = 0, j = ioregs_init[i].p_offset / sizeof(u_long);
|
|
|
|
p < ioregs_init[i].nr_pins; p++, j++) {
|
|
|
|
if (ioregs_init[i].bit_or)
|
2009-05-16 08:47:43 +00:00
|
|
|
setbits_be32(reg + j, ioregs_init[i].val);
|
2008-07-15 10:13:38 +00:00
|
|
|
else
|
2009-05-16 08:47:43 +00:00
|
|
|
out_be32 (reg + j, ioregs_init[i].val);
|
2008-07-15 10:13:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2013-02-08 00:03:48 +00:00
|
|
|
|
|
|
|
void iopin_initialize_bits(iopin_t *ioregs_init, int len)
|
|
|
|
{
|
|
|
|
short i, j, p;
|
|
|
|
u32 *reg, mask;
|
|
|
|
immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
|
|
|
|
|
|
|
|
reg = (u32 *)&(im->io_ctrl);
|
|
|
|
|
|
|
|
/* iterate over table entries */
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
/* iterate over pins within a table entry */
|
|
|
|
for (p = 0, j = ioregs_init[i].p_offset / sizeof(u_long);
|
|
|
|
p < ioregs_init[i].nr_pins; p++, j++) {
|
|
|
|
if (ioregs_init[i].bit_or & IO_PIN_OVER_EACH) {
|
|
|
|
/* replace all settings at once */
|
|
|
|
out_be32(reg + j, ioregs_init[i].val);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* only replace individual parts, but
|
|
|
|
* REPLACE them instead of just ORing
|
|
|
|
* them in and "inheriting" previously
|
|
|
|
* set bits which we don't want
|
|
|
|
*/
|
|
|
|
mask = 0;
|
|
|
|
if (ioregs_init[i].bit_or & IO_PIN_OVER_FMUX)
|
|
|
|
mask |= IO_PIN_FMUX(3);
|
|
|
|
|
|
|
|
if (ioregs_init[i].bit_or & IO_PIN_OVER_HOLD)
|
|
|
|
mask |= IO_PIN_HOLD(3);
|
|
|
|
|
|
|
|
if (ioregs_init[i].bit_or & IO_PIN_OVER_PULL)
|
|
|
|
mask |= IO_PIN_PUD(1) | IO_PIN_PUE(1);
|
|
|
|
|
|
|
|
if (ioregs_init[i].bit_or & IO_PIN_OVER_STRIG)
|
|
|
|
mask |= IO_PIN_ST(1);
|
|
|
|
|
|
|
|
if (ioregs_init[i].bit_or & IO_PIN_OVER_DRVSTR)
|
|
|
|
mask |= IO_PIN_DS(3);
|
|
|
|
/*
|
|
|
|
* DON'T do the "mask, then insert"
|
|
|
|
* in place on the register, it may
|
|
|
|
* break access to external hardware
|
|
|
|
* (like boot ROMs) when configuring
|
|
|
|
* LPB related pins, while the code to
|
|
|
|
* configure the pin is read from this
|
|
|
|
* very address region
|
|
|
|
*/
|
|
|
|
clrsetbits_be32(reg + j, mask,
|
|
|
|
ioregs_init[i].val & mask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|