Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 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 |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 10 | #define CONFIG_SYS_DCACHE_OFF |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 11 | #define CONFIG_SYS_EXCEPTION_VECTORS_HIGH |
Vikas Manocha | 2ce4eaf | 2014-11-18 10:42:23 -0800 | [diff] [blame] | 12 | |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 13 | #define CONFIG_SYS_CORTEX_R4 |
| 14 | |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 15 | #define CONFIG_SYS_NO_FLASH |
| 16 | |
| 17 | /* ram memory-related information */ |
| 18 | #define CONFIG_NR_DRAM_BANKS 1 |
| 19 | #define PHYS_SDRAM_1 0x00000000 |
| 20 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 |
| 21 | #define PHYS_SDRAM_1_SIZE 0x00198000 |
| 22 | |
| 23 | #define CONFIG_ENV_SIZE 0x10000 |
Vikas Manocha | 137d5b9 | 2015-07-02 18:29:37 -0700 | [diff] [blame] | 24 | #define CONFIG_ENV_IS_IN_SPI_FLASH |
| 25 | #define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE |
| 26 | #define CONFIG_ENV_OFFSET 0x30000 |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 27 | #define CONFIG_ENV_ADDR \ |
| 28 | (PHYS_SDRAM_1_SIZE - CONFIG_ENV_SIZE) |
| 29 | #define CONFIG_SYS_MAXARGS 16 |
| 30 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 16 * 1024) |
| 31 | |
| 32 | /* serial port (PL011) configuration */ |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 33 | #define CONFIG_BAUDRATE 115200 |
Vikas Manocha | 39e4795 | 2014-12-01 12:27:54 -0800 | [diff] [blame] | 34 | #define CONFIG_PL01X_SERIAL |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 35 | |
| 36 | /* user interface */ |
Vikas Manocha | c55e759 | 2014-11-18 10:42:24 -0800 | [diff] [blame] | 37 | #define CONFIG_SYS_CBSIZE 1024 |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 38 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \ |
| 39 | +sizeof(CONFIG_SYS_PROMPT) + 16) |
| 40 | |
| 41 | /* MISC */ |
| 42 | #define CONFIG_SYS_LOAD_ADDR 0x00000000 |
Vikas Manocha | 498b7c2 | 2014-12-01 12:27:53 -0800 | [diff] [blame] | 43 | #define CONFIG_SYS_INIT_RAM_SIZE 0x8000 |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 44 | #define CONFIG_SYS_INIT_RAM_ADDR 0x00190000 |
| 45 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
| 46 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
Bin Meng | a187559 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 47 | /* U-Boot Load Address */ |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 48 | #define CONFIG_SYS_TEXT_BASE 0x00010000 |
| 49 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 50 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) |
| 51 | |
Vikas Manocha | 2ce4eaf | 2014-11-18 10:42:23 -0800 | [diff] [blame] | 52 | /* GMAC related configs */ |
| 53 | |
| 54 | #define CONFIG_MII |
Vikas Manocha | 2ce4eaf | 2014-11-18 10:42:23 -0800 | [diff] [blame] | 55 | #define CONFIG_DW_ALTDESCRIPTOR |
| 56 | #define CONFIG_PHY_MICREL |
| 57 | |
| 58 | /* Command support defines */ |
Vikas Manocha | 2ce4eaf | 2014-11-18 10:42:23 -0800 | [diff] [blame] | 59 | #define CONFIG_PHY_RESET_DELAY 10000 /* in usec */ |
| 60 | |
Vikas Manocha | c55e759 | 2014-11-18 10:42:24 -0800 | [diff] [blame] | 61 | #define CONFIG_SYS_MEMTEST_START 0x0000 |
| 62 | #define CONFIG_SYS_MEMTEST_END 1024*1024 |
Vikas Manocha | c55e759 | 2014-11-18 10:42:24 -0800 | [diff] [blame] | 63 | |
| 64 | /* Misc configuration */ |
| 65 | #define CONFIG_SYS_LONGHELP |
| 66 | #define CONFIG_CMDLINE_EDITING |
| 67 | |
Vikas Manocha | c55e759 | 2014-11-18 10:42:24 -0800 | [diff] [blame] | 68 | #define CONFIG_BOOTCOMMAND "go 0x40040000" |
Stefan Roese | d126e01 | 2015-05-18 14:08:23 +0200 | [diff] [blame] | 69 | |
Vikas Manocha | e67abca | 2015-07-02 18:29:41 -0700 | [diff] [blame] | 70 | /* |
| 71 | + * QSPI support |
| 72 | + */ |
| 73 | #ifdef CONFIG_OF_CONTROL /* QSPI is controlled via DT */ |
Vikas Manocha | e67abca | 2015-07-02 18:29:41 -0700 | [diff] [blame] | 74 | #define CONFIG_CQSPI_DECODER 0 |
| 75 | #define CONFIG_CQSPI_REF_CLK ((30/4)/2)*1000*1000 |
Vignesh R | 57897c1 | 2016-12-21 10:42:32 +0530 | [diff] [blame] | 76 | #define CONFIG_BOUNCE_BUFFER |
Vikas Manocha | e67abca | 2015-07-02 18:29:41 -0700 | [diff] [blame] | 77 | |
Vikas Manocha | e67abca | 2015-07-02 18:29:41 -0700 | [diff] [blame] | 78 | #endif |
| 79 | |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 80 | #endif /* __CONFIG_H */ |