2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2017-05-16 16:42:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_BMIPS_BCM3380_H
|
|
|
|
#define __CONFIG_BMIPS_BCM3380_H
|
|
|
|
|
2019-08-30 09:54:27 +00:00
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
2017-05-16 16:42:42 +00:00
|
|
|
/* CPU */
|
|
|
|
#define CONFIG_SYS_MIPS_TIMER_FREQ 166500000
|
|
|
|
|
|
|
|
/* RAM */
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0x80000000
|
|
|
|
|
|
|
|
/* U-Boot */
|
2019-08-30 09:54:27 +00:00
|
|
|
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
|
2017-05-16 16:42:42 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_BMIPS_BOOT_RAM)
|
|
|
|
#define CONFIG_SKIP_LOWLEVEL_INIT
|
2019-08-30 09:54:27 +00:00
|
|
|
#define CONFIG_SYS_INIT_SP_OFFSET SZ_8K
|
2017-05-16 16:42:42 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __CONFIG_BMIPS_BCM3380_H */
|