blob: 4b0a9ebe42ad95ef29c59e8643898c91473adf6c [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
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef BOOT_INIT_DRAM_H
8#define BOOT_INIT_DRAM_H
Jorge Ramirez-Ortiz47503d22018-09-23 09:36:52 +02009
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
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000018#endif /* BOOT_INIT_DRAM_H */