blob: 7ec2930a29748444c624084b0550d681516a5bfa [file] [log] [blame]
Jorge Ramirez-Ortiz47503d22018-09-23 09:36:52 +02001/*
2 * Copyright (c) 2018, Renesas Electronics Corporation. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef __BOOT_INIT_DRAM_
8#define __BOOT_INIT_DRAM_
9
10extern int32_t rcar_dram_init(void);
11
12#define INITDRAM_OK (0)
13#define INITDRAM_NG (0xffffffff)
14#define INITDRAM_ERR_I (0xffffffff)
15#define INITDRAM_ERR_O (0xfffffffe)
16#define INITDRAM_ERR_T (0xfffffff0)
17
18#endif