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