blob: 38298a200c4232574d8ac897c495a12b85e07279 [file] [log] [blame]
Simon Glass5ea01ab2014-10-07 22:01:45 -06001/*
2 * Copyright (C) 2013 Samsung Electronics
3 *
4 * Common configuration settings for the SAMSUNG EXYNOS boards.
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef __EXYNOS_COMMON_H
10#define __EXYNOS_COMMON_H
11
12/* High Level Configuration Options */
13#define CONFIG_SAMSUNG /* in a SAMSUNG core */
14#define CONFIG_S5P /* S5P Family */
15
16#include <asm/arch/cpu.h> /* get chip and board defs */
17#include <linux/sizes.h>
18
Simon Glass5ea01ab2014-10-07 22:01:45 -060019#define CONFIG_ARCH_CPU_INIT
20#define CONFIG_DISPLAY_CPUINFO
21#define CONFIG_DISPLAY_BOARDINFO
Simon Glass5ea01ab2014-10-07 22:01:45 -060022#define CONFIG_SKIP_LOWLEVEL_INIT
23#define CONFIG_BOARD_EARLY_INIT_F
24
Przemyslaw Marczak929d9a22015-03-04 14:01:21 +010025#define CONFIG_USE_ARCH_MEMCPY
26#define CONFIG_USE_ARCH_MEMSET
27
Simon Glass5ea01ab2014-10-07 22:01:45 -060028/* Keep L2 Cache Disabled */
Simon Glass5ea01ab2014-10-07 22:01:45 -060029
30/* input clock of PLL: 24MHz input clock */
31#define CONFIG_SYS_CLK_FREQ 24000000
Alexander Graf4ecad8a2016-03-10 14:18:44 +010032#define CONFIG_TIMER_CLK_FREQ CONFIG_SYS_CLK_FREQ
Simon Glass5ea01ab2014-10-07 22:01:45 -060033
34#define CONFIG_SETUP_MEMORY_TAGS
35#define CONFIG_CMDLINE_TAG
36#define CONFIG_INITRD_TAG
Simon Glass5ea01ab2014-10-07 22:01:45 -060037#define CONFIG_ENV_OVERWRITE
38
Simon Glass2ecd7792014-10-07 22:01:52 -060039/* Size of malloc() pool before and after relocation */
Simon Glass2ecd7792014-10-07 22:01:52 -060040#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 << 20))
Simon Glass5ea01ab2014-10-07 22:01:45 -060041
42/* select serial console configuration */
43#define CONFIG_BAUDRATE 115200
44
45/* SD/MMC configuration */
46#define CONFIG_GENERIC_MMC
47#define CONFIG_MMC
48#define CONFIG_S5P_SDHCI
49#define CONFIG_SDHCI
50#define CONFIG_DWMMC
51#define CONFIG_EXYNOS_DWMMC
52#define CONFIG_BOUNCE_BUFFER
53
Simon Glass5ea01ab2014-10-07 22:01:45 -060054/* PWM */
55#define CONFIG_PWM
56
57/* Command definition*/
Simon Glass5ea01ab2014-10-07 22:01:45 -060058#define CONFIG_FAT_WRITE
Simon Glass5ea01ab2014-10-07 22:01:45 -060059
Simon Glass5ea01ab2014-10-07 22:01:45 -060060#define CONFIG_CMD_PART
61#define CONFIG_PARTITION_UUIDS
62
63/* Miscellaneous configurable options */
Ian Campbellcf3c03b2014-11-09 10:44:33 +000064#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
65#define CONFIG_SYS_PBSIZE 1024 /* Print Buffer Size */
Simon Glass5ea01ab2014-10-07 22:01:45 -060066#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
67
68/* Boot Argument Buffer Size */
69#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
70
71/* FLASH and environment organization */
72#define CONFIG_SYS_NO_FLASH
Simon Glass5ea01ab2014-10-07 22:01:45 -060073
Ian Campbelladc7d202014-11-09 10:44:31 +000074#include <config_distro_defaults.h>
75
Simon Glass5ea01ab2014-10-07 22:01:45 -060076#endif /* __CONFIG_H */