blob: 7e88f4222189fc736a7790f75dff24e3c5807fa1 [file] [log] [blame]
Jorge Ramirez-Ortiz47503d22018-09-23 09:36:52 +02001/*
2 * Copyright (c) 2015-2017, 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 DRAM_SUB_FUNC_H
8#define DRAM_SUB_FUNC_H
Jorge Ramirez-Ortiz47503d22018-09-23 09:36:52 +02009
10#define DRAM_UPDATE_STATUS_ERR (-1)
11#define DRAM_BOOT_STATUS_COLD (0)
12#define DRAM_BOOT_STATUS_WARM (1)
13
14int32_t rcar_dram_update_boot_status(uint32_t status);
15void rcar_dram_get_boot_status(uint32_t * status);
16
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000017#endif /* DRAM_SUB_FUNC_H */