mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 17:41:08 +00:00
f6e7f07c17
In the Linux coding style, it is recommended to include <linux/io.h> rather than <asm/io.h>. Follow this trend. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
18 lines
338 B
C
18 lines
338 B
C
/*
|
|
* Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <linux/io.h>
|
|
#include <mach/sg-regs.h>
|
|
|
|
void sg_init(void)
|
|
{
|
|
u32 tmp;
|
|
|
|
/* Input ports must be enabled before deasserting reset of cores */
|
|
tmp = readl(SG_IECTRL);
|
|
tmp |= 0x1;
|
|
writel(tmp, SG_IECTRL);
|
|
}
|