blob: 73b14883c3178eb9f3ad2e2bf45d66f437e85b44 [file] [log] [blame]
Philipp Tomsich1620d352017-07-13 01:36:39 +02001/*
2 * Copyright (c) 2017 Theobroma Systems Design und Consulting GmbH
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6#include <common.h>
7#include <dm.h>
8#include <ram.h>
9#include <asm/io.h>
10#include <asm/arch/clock.h>
11#include <asm/arch/grf_rk3368.h>
12#include <asm/arch/timer.h>
13#include <syscon.h>
14
15DECLARE_GLOBAL_DATA_PTR;
16
17int mach_cpu_init(void)
18{
19 return 0;
20}
21
22int board_init(void)
23{
24 return 0;
25}