Philippe Reynes | 341032d | 2018-07-16 19:06:14 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (C) 2018 Philippe Reynes <philippe.reynes@softathome.com> |
| 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_BMIPS_BCM6838_H |
| 7 | #define __CONFIG_BMIPS_BCM6838_H |
| 8 | |
Álvaro Fernández Rojas | 55daf1c | 2019-08-30 11:54:27 +0200 | [diff] [blame] | 9 | #include <linux/sizes.h> |
| 10 | |
Philippe Reynes | 341032d | 2018-07-16 19:06:14 +0200 | [diff] [blame] | 11 | /* CPU */ |
| 12 | #define CONFIG_SYS_MIPS_TIMER_FREQ 160000000 |
| 13 | |
| 14 | /* RAM */ |
Philippe Reynes | 341032d | 2018-07-16 19:06:14 +0200 | [diff] [blame] | 15 | #define CONFIG_SYS_SDRAM_BASE 0x80000000 |
| 16 | |
| 17 | /* U-Boot */ |
Álvaro Fernández Rojas | 55daf1c | 2019-08-30 11:54:27 +0200 | [diff] [blame] | 18 | #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M |
Philippe Reynes | 341032d | 2018-07-16 19:06:14 +0200 | [diff] [blame] | 19 | |
| 20 | #if defined(CONFIG_BMIPS_BOOT_RAM) |
| 21 | #define CONFIG_SKIP_LOWLEVEL_INIT |
Álvaro Fernández Rojas | 55daf1c | 2019-08-30 11:54:27 +0200 | [diff] [blame] | 22 | #define CONFIG_SYS_INIT_SP_OFFSET SZ_8K |
Philippe Reynes | 341032d | 2018-07-16 19:06:14 +0200 | [diff] [blame] | 23 | #endif |
| 24 | |
| 25 | #endif /* __CONFIG_BMIPS_BCM6838_H */ |