mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
33f19038cc
A board with Hi3798MV200 SoC and various peripherals. Details are in the board README.md. Signed-off-by: Yang Xiwen <forbidden405@outlook.com>
26 lines
466 B
C
26 lines
466 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Board init file for Skyworth HC2910 2AGHD05
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <fdtdec.h>
|
|
#include <init.h>
|
|
#include <asm/system.h>
|
|
#include <linux/io.h>
|
|
|
|
#define HI3798MV200_PERI_CTRL_BASE 0xf8a20000
|
|
#define SDIO0_LDO_OFFSET 0x11c
|
|
|
|
static int sdio0_set_ldo(void)
|
|
{
|
|
// SDIO LDO bypassed, 3.3V
|
|
writel(HI3798MV200_PERI_CTRL_BASE + SDIO0_LDO_OFFSET, 0x60);
|
|
return 0;
|
|
}
|
|
|
|
int board_init(void)
|
|
{
|
|
sdio0_set_ldo();
|
|
return 0;
|
|
}
|