1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2016, Imagination Technologies Ltd.
4 *
5 * Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6 *
7 * Imagination Technologies Ltd. MIPSfpga
8 */
9
10#ifndef __XILFPGA_CONFIG_H
11#define __XILFPGA_CONFIG_H
12
13/* BootROM + MIG is pretty smart. DDR and Cache initialized */
14
15/*--------------------------------------------
16 * CPU configuration
17 */
18
19/*----------------------------------------------------------------------
20 * Memory Layout
21 */
22
23/* SDRAM Configuration (for final code, data, stack, heap) */
24#define CFG_SYS_SDRAM_BASE		0x80000000
25#define CFG_SYS_SDRAM_SIZE		0x08000000	/* 128 Mbytes */
26
27/*----------------------------------------------------------------------
28 * Commands
29 */
30
31/*------------------------------------------------------------
32 * Console Configuration
33 */
34
35/* -------------------------------------------------
36 * Environment
37 */
38
39/* ---------------------------------------------------------------------
40 * Board boot configuration
41 */
42
43#endif	/* __XILFPGA_CONFIG_H */
44