]>
Commit | Line | Data |
---|---|---|
76dd9b6a | 1 | |
0aee53ba | 2 | /* |
540b5af2 | 3 | * Copyright (C) 2012 Samsung Electronics |
0aee53ba | 4 | * |
540b5af2 | 5 | * Configuration settings for the SAMSUNG EXYNOS5250 board. |
0aee53ba | 6 | * |
1a459660 | 7 | * SPDX-License-Identifier: GPL-2.0+ |
0aee53ba CK |
8 | */ |
9 | ||
76dd9b6a RS |
10 | #ifndef __CONFIG_5250_H |
11 | #define __CONFIG_5250_H | |
0aee53ba | 12 | |
ad403e71 | 13 | #define CONFIG_EXYNOS5250 |
0aee53ba | 14 | |
0aee53ba CK |
15 | #define CONFIG_SYS_SDRAM_BASE 0x40000000 |
16 | #define CONFIG_SYS_TEXT_BASE 0x43E00000 | |
17 | ||
0aee53ba CK |
18 | /* MACH_TYPE_SMDK5250 macro will be removed once added to mach-types */ |
19 | #define MACH_TYPE_SMDK5250 3774 | |
20 | #define CONFIG_MACH_TYPE MACH_TYPE_SMDK5250 | |
21 | ||
d2fe10fd AS |
22 | #define CONFIG_SPL_MAX_FOOTPRINT (14 * 1024) |
23 | ||
78fbcc95 | 24 | #define CONFIG_SPL_TEXT_BASE 0x02023400 |
78fbcc95 | 25 | |
0aee53ba CK |
26 | #define CONFIG_IRAM_STACK 0x02050000 |
27 | ||
643be9c0 | 28 | #define CONFIG_SYS_INIT_SP_ADDR CONFIG_IRAM_STACK |
0aee53ba | 29 | |
bf637ea5 SG |
30 | /* USB */ |
31 | #define CONFIG_USB_EHCI | |
32 | #define CONFIG_USB_EHCI_EXYNOS | |
23b479b2 | 33 | |
bf637ea5 SG |
34 | #define CONFIG_USB_HOST_ETHER |
35 | #define CONFIG_USB_ETHER_ASIX | |
36 | #define CONFIG_USB_ETHER_ASIX88179 | |
0cf7e189 MP |
37 | |
38 | /* DRAM Memory Banks */ | |
39 | #define CONFIG_NR_DRAM_BANKS 8 | |
40 | #define SDRAM_BANK_SIZE (256UL << 20UL) /* 256 MB */ | |
41 | ||
76dd9b6a | 42 | #endif /* __CONFIG_5250_H */ |