]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
9fa32b12 | 2 | /* |
1537d386 PC |
3 | * Copyright (C) 2014, STMicroelectronics - All Rights Reserved |
4 | * Author(s): Vikas Manocha, <[email protected]> for STMicroelectronics. | |
9fa32b12 VM |
5 | */ |
6 | ||
7 | #ifndef __CONFIG_STV0991_H | |
8 | #define __CONFIG_STV0991_H | |
9fa32b12 | 9 | #define CONFIG_SYS_EXCEPTION_VECTORS_HIGH |
2ce4eaf4 | 10 | |
9fa32b12 | 11 | /* ram memory-related information */ |
9fa32b12 VM |
12 | #define PHYS_SDRAM_1 0x00000000 |
13 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 | |
14 | #define PHYS_SDRAM_1_SIZE 0x00198000 | |
15 | ||
9fa32b12 | 16 | /* user interface */ |
c55e7591 | 17 | #define CONFIG_SYS_CBSIZE 1024 |
9fa32b12 VM |
18 | |
19 | /* MISC */ | |
498b7c2e | 20 | #define CONFIG_SYS_INIT_RAM_SIZE 0x8000 |
9fa32b12 VM |
21 | #define CONFIG_SYS_INIT_RAM_ADDR 0x00190000 |
22 | #define CONFIG_SYS_INIT_SP_OFFSET \ | |
23 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) | |
a187559e | 24 | /* U-Boot Load Address */ |
9fa32b12 VM |
25 | #define CONFIG_SYS_INIT_SP_ADDR \ |
26 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) | |
27 | ||
2ce4eaf4 VM |
28 | /* GMAC related configs */ |
29 | ||
2ce4eaf4 | 30 | #define CONFIG_DW_ALTDESCRIPTOR |
2ce4eaf4 | 31 | |
c55e7591 | 32 | /* Misc configuration */ |
c55e7591 | 33 | |
9fa32b12 | 34 | #endif /* __CONFIG_H */ |