blob: b07887eadcf587245333ec50308185a938cbf70a [file] [log] [blame]
Graeme Russd47ab0e2011-12-23 16:51:29 +11001/*
2 * (C) Copyright 2011
3 * Graeme Russ, <graeme.russ@gmail.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Graeme Russd47ab0e2011-12-23 16:51:29 +11006 */
7
8#ifndef _INIT_HELPERS_H_
9#define _INIT_HELPERS_H_
10
Graeme Russa1d57b72011-12-23 21:14:22 +110011int calculate_relocation_address(void);
Graeme Russd47ab0e2011-12-23 16:51:29 +110012
Graeme Russa1d57b72011-12-23 21:14:22 +110013int init_cache_f_r(void);
Graeme Russd47ab0e2011-12-23 16:51:29 +110014int init_bd_struct_r(void);
Gabe Black83133152012-11-03 11:41:23 +000015int init_func_spi(void);
Simon Glassf697d522013-02-28 19:26:15 +000016int find_fdt(void);
17int prepare_fdt(void);
Graeme Russd47ab0e2011-12-23 16:51:29 +110018
19#endif /* !_INIT_HELPERS_H_ */