mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 21:44:15 +00:00

Move ddr driver code to common directory, so that the same code can be re-used by both R-Car Gen3 and RZ/G2 platforms. Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Reviewed-by: Biju Das <biju.das.jz@bp.renesas.com> Change-Id: I9aef73d3e9a027a127ce7483b72d339559866727
18 lines
414 B
C
18 lines
414 B
C
/*
|
|
* Copyright (c) 2018-2019, Renesas Electronics Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef BOOT_INIT_DRAM_H
|
|
#define BOOT_INIT_DRAM_H
|
|
|
|
extern int32_t rcar_dram_init(void);
|
|
|
|
#define INITDRAM_OK 0
|
|
#define INITDRAM_NG 0xffffffff
|
|
#define INITDRAM_ERR_I 0xffffffff
|
|
#define INITDRAM_ERR_O 0xfffffffe
|
|
#define INITDRAM_ERR_T 0xfffffff0
|
|
|
|
#endif /* BOOT_INIT_DRAM_H */
|