u-boot-brain/arch/arm/mach-stm32/stm32f7/soc.c

28 lines
325 B
C
Raw Normal View History

/*
* (C) Copyright 2015
* Kamil Lulko, <kamil.lulko@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <asm/io.h>
#include <asm/armv7m.h>
#include <asm/arch/stm32.h>
u32 get_cpu_rev(void)
{
return 0;
}
int arch_cpu_init(void)
{
configure_clocks();
return 0;
}
void s_init(void)
{
}