]>
Commit | Line | Data |
---|---|---|
9fa32b12 | 1 | /* |
1537d386 PC |
2 | * Copyright (C) 2014, STMicroelectronics - All Rights Reserved |
3 | * Author(s): Vikas Manocha, <[email protected]> for STMicroelectronics. | |
9fa32b12 VM |
4 | * |
5 | * SPDX-License-Identifier: GPL-2.0+ | |
6 | */ | |
7 | ||
8 | #ifndef __CONFIG_STV0991_H | |
9 | #define __CONFIG_STV0991_H | |
9fa32b12 | 10 | #define CONFIG_SYS_DCACHE_OFF |
9fa32b12 | 11 | #define CONFIG_SYS_EXCEPTION_VECTORS_HIGH |
2ce4eaf4 | 12 | |
9fa32b12 VM |
13 | #define CONFIG_SYS_CORTEX_R4 |
14 | ||
9fa32b12 VM |
15 | /* ram memory-related information */ |
16 | #define CONFIG_NR_DRAM_BANKS 1 | |
17 | #define PHYS_SDRAM_1 0x00000000 | |
18 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 | |
19 | #define PHYS_SDRAM_1_SIZE 0x00198000 | |
20 | ||
21 | #define CONFIG_ENV_SIZE 0x10000 | |
137d5b91 VM |
22 | #define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE |
23 | #define CONFIG_ENV_OFFSET 0x30000 | |
9fa32b12 VM |
24 | #define CONFIG_ENV_ADDR \ |
25 | (PHYS_SDRAM_1_SIZE - CONFIG_ENV_SIZE) | |
9fa32b12 VM |
26 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 16 * 1024) |
27 | ||
9fa32b12 | 28 | /* user interface */ |
c55e7591 | 29 | #define CONFIG_SYS_CBSIZE 1024 |
9fa32b12 VM |
30 | |
31 | /* MISC */ | |
32 | #define CONFIG_SYS_LOAD_ADDR 0x00000000 | |
498b7c2e | 33 | #define CONFIG_SYS_INIT_RAM_SIZE 0x8000 |
9fa32b12 VM |
34 | #define CONFIG_SYS_INIT_RAM_ADDR 0x00190000 |
35 | #define CONFIG_SYS_INIT_SP_OFFSET \ | |
36 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) | |
a187559e | 37 | /* U-Boot Load Address */ |
9fa32b12 VM |
38 | #define CONFIG_SYS_INIT_SP_ADDR \ |
39 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) | |
40 | ||
2ce4eaf4 VM |
41 | /* GMAC related configs */ |
42 | ||
43 | #define CONFIG_MII | |
2ce4eaf4 | 44 | #define CONFIG_DW_ALTDESCRIPTOR |
2ce4eaf4 VM |
45 | |
46 | /* Command support defines */ | |
2ce4eaf4 VM |
47 | #define CONFIG_PHY_RESET_DELAY 10000 /* in usec */ |
48 | ||
c55e7591 VM |
49 | #define CONFIG_SYS_MEMTEST_START 0x0000 |
50 | #define CONFIG_SYS_MEMTEST_END 1024*1024 | |
c55e7591 VM |
51 | |
52 | /* Misc configuration */ | |
53 | #define CONFIG_SYS_LONGHELP | |
54 | #define CONFIG_CMDLINE_EDITING | |
55 | ||
c55e7591 | 56 | #define CONFIG_BOOTCOMMAND "go 0x40040000" |
d126e016 | 57 | |
e67abcaa VM |
58 | /* |
59 | + * QSPI support | |
60 | + */ | |
61 | #ifdef CONFIG_OF_CONTROL /* QSPI is controlled via DT */ | |
e67abcaa | 62 | #define CONFIG_CQSPI_REF_CLK ((30/4)/2)*1000*1000 |
e67abcaa | 63 | |
e67abcaa VM |
64 | #endif |
65 | ||
9fa32b12 | 66 | #endif /* __CONFIG_H */ |