mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
e4d741f8ab
This converts the following to Kconfig: CONFIG_SYS_MONITOR_BASE Note that for how this is re-used on some PowePC platforms, we introduce CONFIG_SPL_SYS_MONITOR_BASE and CONFIG_TPL_SYS_MONITOR_BASE and use the CONFIG_VAL macro to get the correct value at build time, in the code. Signed-off-by: Tom Rini <trini@konsulko.com>
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2016, Imagination Technologies Ltd.
|
|
*
|
|
* Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
|
|
*
|
|
* Imagination Technologies Ltd. MIPSfpga
|
|
*/
|
|
|
|
#ifndef __XILFPGA_CONFIG_H
|
|
#define __XILFPGA_CONFIG_H
|
|
|
|
/* BootROM + MIG is pretty smart. DDR and Cache initialized */
|
|
|
|
/*--------------------------------------------
|
|
* CPU configuration
|
|
*/
|
|
/* CPU Timer rate */
|
|
#define CONFIG_SYS_MIPS_TIMER_FREQ 50000000
|
|
|
|
/*----------------------------------------------------------------------
|
|
* Memory Layout
|
|
*/
|
|
|
|
/* SDRAM Configuration (for final code, data, stack, heap) */
|
|
#define CONFIG_SYS_SDRAM_BASE 0x80000000
|
|
#define CONFIG_SYS_SDRAM_SIZE 0x08000000 /* 128 Mbytes */
|
|
#define CONFIG_SYS_INIT_SP_ADDR \
|
|
(CONFIG_SYS_SDRAM_BASE + CONFIG_SYS_SDRAM_SIZE - 0x1000)
|
|
|
|
/*----------------------------------------------------------------------
|
|
* Commands
|
|
*/
|
|
|
|
/*------------------------------------------------------------
|
|
* Console Configuration
|
|
*/
|
|
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
|
|
|
|
/* -------------------------------------------------
|
|
* Environment
|
|
*/
|
|
|
|
/* ---------------------------------------------------------------------
|
|
* Board boot configuration
|
|
*/
|
|
|
|
#endif /* __XILFPGA_CONFIG_H */
|