1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (c) 2017 Theobroma Systems Design und Consulting GmbH 4 */ 5 #include <common.h> 6 #include <dm.h> 7 #include <ram.h> 8 #include <asm/io.h> 9 #include <asm/arch/clock.h> 10 #include <asm/arch/grf_rk3368.h> 11 #include <asm/arch/timer.h> 12 #include <syscon.h> 13 14 int mach_cpu_init(void) 15 { 16 return 0; 17 } 18 19 int board_init(void) 20 { 21 return 0; 22 } 23