mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
55 lines
1.3 KiB
C
55 lines
1.3 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2010
|
|
* Marvell Semiconductor <www.marvell.com>
|
|
* Written-by: Prafulla Wadaskar <prafulla@marvell.com>,
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <asm/io.h>
|
|
#include <mvmfp.h>
|
|
#include <asm/arch/mfp.h>
|
|
|
|
/*
|
|
* mfp_config
|
|
*
|
|
* On most of Marvell SoCs (ex. ARMADA100) there is Multi-Funtion-Pin
|
|
* configuration registers to configure each GPIO/Function pin on the
|
|
* SoC.
|
|
*
|
|
* This function reads the array of values for
|
|
* MFPR_X registers and programms them into respective
|
|
* Multi-Function Pin registers.
|
|
* It supports - Alternate Function Selection programming.
|
|
*
|
|
* Whereas,
|
|
* The Configureation value is constructed using MFP()
|
|
* array consists of 32bit values as defined in MFP(xx,xx..) macro
|
|
*/
|
|
void mfp_config(u32 *mfp_cfgs)
|
|
{
|
|
u32 *p_mfpr = NULL;
|
|
u32 cfg_val, val;
|
|
|
|
do {
|
|
cfg_val = *mfp_cfgs++;
|
|
/* exit if End of configuration table detected */
|
|
if (cfg_val == MFP_EOC)
|
|
break;
|
|
|
|
p_mfpr = (u32 *)(MV_MFPR_BASE
|
|
+ MFP_REG_GET_OFFSET(cfg_val));
|
|
|
|
/* Write a mfg register as per configuration */
|
|
val = 0;
|
|
if (cfg_val & MFP_VALUE_MASK)
|
|
val |= cfg_val & MFP_VALUE_MASK;
|
|
|
|
writel(val, p_mfpr);
|
|
} while (1);
|
|
/*
|
|
* perform a read-back of any MFPR register to make sure the
|
|
* previous writings are finished
|
|
*/
|
|
readl(p_mfpr);
|
|
}
|