1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2020 Synopsys, Inc. All rights reserved.
4 * Author: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
7 #ifndef _CONFIG_HSDK_H_
8 #define _CONFIG_HSDK_H_
10 #include <linux/sizes.h>
16 #define ARC_PERIPHERAL_BASE 0xF0000000
17 #define ARC_DWMMC_BASE (ARC_PERIPHERAL_BASE + 0xA000)
18 #define ARC_DWGMAC_BASE (ARC_PERIPHERAL_BASE + 0x18000)
21 * Memory configuration
23 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
25 #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000
26 #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
27 #define CONFIG_SYS_SDRAM_SIZE SZ_1G
29 #define CONFIG_SYS_INIT_SP_ADDR \
30 (CONFIG_SYS_SDRAM_BASE + 0x1000 - GENERATED_GBL_DATA_SIZE)
32 #define CONFIG_SYS_BOOTM_LEN SZ_128M
37 #define CONFIG_SYS_NS16550_SERIAL
38 #define CONFIG_SYS_NS16550_CLK 33330000
39 #define CONFIG_SYS_NS16550_MEM32
42 * Ethernet PHY configuration
46 * USB 1.1 configuration
48 #define CONFIG_USB_OHCI_NEW
49 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 1
52 * Environment settings
54 #define CONFIG_EXTRA_ENV_SETTINGS \
55 "upgrade=if mmc rescan && " \
56 "fatload mmc 0:1 ${loadaddr} u-boot-update.scr && " \
57 "iminfo ${loadaddr} && source ${loadaddr}; then; else echo " \
58 "\"Fail to upgrade.\n" \
59 "Do you have u-boot-update.scr and u-boot.head on first (FAT) SD card partition?\"" \
62 "hsdk_hs45d=setenv core_mask 0x2; setenv haps_apb_location 0x1; \
63 setenv l2_cache_ena 0x0; setenv icache_ena 0x0; setenv csm_location 0x10; \
64 setenv dcache_ena 0x0; setenv core_iccm_1 0x7; \
65 setenv core_dccm_1 0x8; setenv non_volatile_limit 0xF;\0" \
66 "hsdk_hs47d=setenv core_mask 0x1; setenv haps_apb_location 0x1; \
67 setenv l2_cache_ena 0x0; setenv icache_ena 0x1; setenv csm_location 0x10; \
68 setenv dcache_ena 0x1; setenv core_iccm_0 0x10; \
69 setenv core_dccm_0 0x10; setenv non_volatile_limit 0xF;\0" \
70 "hsdk_hs47d_ccm=setenv core_mask 0x2; setenv haps_apb_location 0x1; \
71 setenv l2_cache_ena 0x0; setenv icache_ena 0x1; setenv csm_location 0x10; \
72 setenv dcache_ena 0x1; setenv core_iccm_1 0x7; \
73 setenv core_dccm_1 0x8; setenv non_volatile_limit 0xF;\0" \
74 "hsdk_hs48=setenv core_mask 0x1; setenv haps_apb_location 0x1; \
75 setenv l2_cache_ena 0x1; setenv icache_ena 0x1; setenv csm_location 0x10; \
76 setenv dcache_ena 0x1; setenv core_iccm_0 0x10; \
77 setenv core_dccm_0 0x10; setenv non_volatile_limit 0xF;\0" \
78 "hsdk_hs48_ccm=setenv core_mask 0x2; setenv haps_apb_location 0x1; \
79 setenv l2_cache_ena 0x1; setenv icache_ena 0x1; setenv csm_location 0x10; \
80 setenv dcache_ena 0x1; setenv core_iccm_1 0x7; \
81 setenv core_dccm_1 0x8; setenv non_volatile_limit 0xF;\0" \
82 "hsdk_hs48x2=run hsdk_hs47dx2;\0" \
83 "hsdk_hs47dx2=setenv core_mask 0x3; setenv haps_apb_location 0x1; \
84 setenv l2_cache_ena 0x1; setenv icache_ena 0x1; setenv csm_location 0x10; \
85 setenv dcache_ena 0x1; setenv core_iccm_0 0x10; \
86 setenv core_dccm_0 0x10; setenv non_volatile_limit 0xF; \
87 setenv core_iccm_1 0x6; setenv core_dccm_1 0x6;\0" \
88 "hsdk_hs48x3=run hsdk_hs47dx3;\0" \
89 "hsdk_hs47dx3=setenv core_mask 0x7; setenv haps_apb_location 0x1; \
90 setenv l2_cache_ena 0x1; setenv icache_ena 0x1; setenv csm_location 0x10; \
91 setenv dcache_ena 0x1; setenv core_iccm_0 0x10; \
92 setenv core_dccm_0 0x10; setenv non_volatile_limit 0xF; \
93 setenv core_iccm_1 0x6; setenv core_dccm_1 0x6; \
94 setenv core_iccm_2 0x10; setenv core_dccm_2 0x10;\0" \
95 "hsdk_hs48x4=run hsdk_hs47dx4;\0" \
96 "hsdk_hs47dx4=setenv core_mask 0xF; setenv haps_apb_location 0x1; \
97 setenv l2_cache_ena 0x1; setenv icache_ena 0x1; setenv csm_location 0x10; \
98 setenv dcache_ena 0x1; setenv core_iccm_0 0x10; \
99 setenv core_dccm_0 0x10; setenv non_volatile_limit 0xF; \
100 setenv core_iccm_1 0x6; setenv core_dccm_1 0x6; \
101 setenv core_iccm_2 0x10; setenv core_dccm_2 0x10; \
102 setenv core_iccm_3 0x6; setenv core_dccm_3 0x6;\0"
105 * Environment configuration
107 #define CONFIG_BOOTFILE "uImage"
109 /* Cli configuration */
110 #define CONFIG_SYS_CBSIZE SZ_2K
113 * Callback configuration
116 #endif /* _CONFIG_HSDK_H_ */