]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/stv0991.h
0adab5b599ebd2bfa19ebc19388a551ed7f89707
[people/ms/u-boot.git] / include / configs / stv0991.h
1 /*
2 * (C) Copyright 2014
3 * Vikas Manocha, STMicroelectronics, <vikas.manocha@st.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8 #ifndef __CONFIG_STV0991_H
9 #define __CONFIG_STV0991_H
10 #define CONFIG_SYS_DCACHE_OFF
11 #define CONFIG_SYS_EXCEPTION_VECTORS_HIGH
12
13 #define CONFIG_SYS_CORTEX_R4
14
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
22 #define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
23 #define CONFIG_ENV_OFFSET 0x30000
24 #define CONFIG_ENV_ADDR \
25 (PHYS_SDRAM_1_SIZE - CONFIG_ENV_SIZE)
26 #define CONFIG_SYS_MAXARGS 16
27 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 16 * 1024)
28
29 /* serial port (PL011) configuration */
30 #define CONFIG_PL01X_SERIAL
31
32 /* user interface */
33 #define CONFIG_SYS_CBSIZE 1024
34
35 /* MISC */
36 #define CONFIG_SYS_LOAD_ADDR 0x00000000
37 #define CONFIG_SYS_INIT_RAM_SIZE 0x8000
38 #define CONFIG_SYS_INIT_RAM_ADDR 0x00190000
39 #define CONFIG_SYS_INIT_SP_OFFSET \
40 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
41 /* U-Boot Load Address */
42 #define CONFIG_SYS_TEXT_BASE 0x00010000
43 #define CONFIG_SYS_INIT_SP_ADDR \
44 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
45
46 /* GMAC related configs */
47
48 #define CONFIG_MII
49 #define CONFIG_DW_ALTDESCRIPTOR
50
51 /* Command support defines */
52 #define CONFIG_PHY_RESET_DELAY 10000 /* in usec */
53
54 #define CONFIG_SYS_MEMTEST_START 0x0000
55 #define CONFIG_SYS_MEMTEST_END 1024*1024
56
57 /* Misc configuration */
58 #define CONFIG_SYS_LONGHELP
59 #define CONFIG_CMDLINE_EDITING
60
61 #define CONFIG_BOOTCOMMAND "go 0x40040000"
62
63 /*
64 + * QSPI support
65 + */
66 #ifdef CONFIG_OF_CONTROL /* QSPI is controlled via DT */
67 #define CONFIG_CQSPI_DECODER 0
68 #define CONFIG_CQSPI_REF_CLK ((30/4)/2)*1000*1000
69 #define CONFIG_BOUNCE_BUFFER
70
71 #endif
72
73 #endif /* __CONFIG_H */