2020-02-18 08:34:48 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Mauro Condarelli <mc5686@mclink.it>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VOCORE2_CONFIG_H__
|
|
|
|
#define __VOCORE2_CONFIG_H__
|
|
|
|
|
|
|
|
/* RAM */
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_BASE 0x80000000
|
2020-02-18 08:34:48 +00:00
|
|
|
|
2022-11-16 18:10:41 +00:00
|
|
|
#define CFG_SYS_INIT_SP_OFFSET 0x400000
|
2020-02-18 08:34:48 +00:00
|
|
|
|
|
|
|
/* SPL */
|
|
|
|
|
2022-11-16 18:10:41 +00:00
|
|
|
#define CFG_SYS_UBOOT_START CONFIG_TEXT_BASE
|
2020-02-18 08:34:48 +00:00
|
|
|
|
|
|
|
/* Dummy value */
|
2022-11-16 18:10:41 +00:00
|
|
|
#define CFG_SYS_UBOOT_BASE 0
|
2020-02-18 08:34:48 +00:00
|
|
|
|
|
|
|
/* Serial SPL */
|
2022-11-16 18:10:28 +00:00
|
|
|
#define CFG_SYS_NS16550_CLK 40000000
|
|
|
|
#define CFG_SYS_NS16550_COM3 0xb0000e00
|
2020-02-18 08:34:48 +00:00
|
|
|
|
|
|
|
/* RAM */
|
|
|
|
|
|
|
|
/* Environment settings */
|
|
|
|
|
|
|
|
#endif //__VOCORE2_CONFIG_H__
|