Commit | Line | Data |
---|---|---|
bf9012b8 ÁFR |
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_BCM6348_H | |
8 | #define __CONFIG_BMIPS_BCM6348_H | |
9 | ||
10 | /* CPU */ | |
11 | #define CONFIG_SYS_MIPS_TIMER_FREQ 128000000 | |
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 | #define CONFIG_SYS_FLASH_BASE 0xbfc00000 | |
26 | #define CONFIG_SYS_FLASH_EMPTY_INFO | |
27 | #define CONFIG_SYS_FLASH_PROTECTION | |
28 | #define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1 | |
29 | ||
30 | #endif /* __CONFIG_BMIPS_BCM6348_H */ |