Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Álvaro Fernández Rojas | 23a2168 | 2017-05-16 18:42:42 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> |
Álvaro Fernández Rojas | 23a2168 | 2017-05-16 18:42:42 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_BMIPS_BCM3380_H |
| 7 | #define __CONFIG_BMIPS_BCM3380_H |
| 8 | |
| 9 | /* CPU */ |
| 10 | #define CONFIG_SYS_MIPS_TIMER_FREQ 166500000 |
| 11 | |
| 12 | /* RAM */ |
Álvaro Fernández Rojas | 23a2168 | 2017-05-16 18:42:42 +0200 | [diff] [blame] | 13 | #define CONFIG_SYS_SDRAM_BASE 0x80000000 |
| 14 | |
| 15 | /* U-Boot */ |
| 16 | #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + 0x100000 |
| 17 | |
| 18 | #if defined(CONFIG_BMIPS_BOOT_RAM) |
| 19 | #define CONFIG_SKIP_LOWLEVEL_INIT |
| 20 | #define CONFIG_SYS_INIT_SP_OFFSET 0x2000 |
| 21 | #endif |
| 22 | |
| 23 | #endif /* __CONFIG_BMIPS_BCM3380_H */ |