]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
35546f6f PM |
2 | /* |
3 | * Copyright (C) 2014 Marek Vasut <[email protected]> | |
4 | * Copyright (C) 2016 Pavel Machek <[email protected]> | |
35546f6f PM |
5 | */ |
6 | #ifndef __CONFIG_SOCFPGA_IS1_H__ | |
7 | #define __CONFIG_SOCFPGA_IS1_H__ | |
8 | ||
9 | #include <asm/arch/base_addr_ac5.h> | |
10 | ||
35546f6f PM |
11 | /* Memory configurations */ |
12 | #define PHYS_SDRAM_1_SIZE 0x10000000 | |
13 | ||
14 | /* Booting Linux */ | |
35546f6f | 15 | #define CONFIG_BOOTFILE "zImage" |
72d81360 | 16 | #define CONFIG_SYS_LOAD_ADDR 0x01000000 |
35546f6f PM |
17 | |
18 | /* Ethernet on SoC (EMAC) */ | |
19 | #if defined(CONFIG_CMD_NET) | |
20 | #define CONFIG_ARP_TIMEOUT 500UL | |
35546f6f PM |
21 | #endif |
22 | ||
23 | /* The rest of the configuration is shared */ | |
24 | #include <configs/socfpga_common.h> | |
25 | ||
26 | /* | |
27 | * Bootcounter | |
28 | */ | |
35546f6f PM |
29 | #define CONFIG_SYS_BOOTCOUNT_BE |
30 | ||
31 | #endif /* __CONFIG_SOCFPGA_IS1_H__ */ |