blob: 3b61a4104d72b39c1da23d891f166b71ab8750b4 [file] [log] [blame]
Simon Glass14e27ab2014-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 Glass14e27ab2014-10-07 22:01:45 -060019#define CONFIG_ARCH_CPU_INIT
Simon Glass14e27ab2014-10-07 22:01:45 -060020#define CONFIG_SKIP_LOWLEVEL_INIT
21#define CONFIG_BOARD_EARLY_INIT_F
22
Przemyslaw Marczakfd291912015-03-04 14:01:21 +010023#define CONFIG_USE_ARCH_MEMCPY
24#define CONFIG_USE_ARCH_MEMSET
25
Simon Glass14e27ab2014-10-07 22:01:45 -060026/* Keep L2 Cache Disabled */
Simon Glass14e27ab2014-10-07 22:01:45 -060027
28/* input clock of PLL: 24MHz input clock */
29#define CONFIG_SYS_CLK_FREQ 24000000
Alexander Grafd20df4c2016-03-10 14:18:44 +010030#define CONFIG_TIMER_CLK_FREQ CONFIG_SYS_CLK_FREQ
Simon Glass14e27ab2014-10-07 22:01:45 -060031
32#define CONFIG_SETUP_MEMORY_TAGS
33#define CONFIG_CMDLINE_TAG
34#define CONFIG_INITRD_TAG
Simon Glass14e27ab2014-10-07 22:01:45 -060035#define CONFIG_ENV_OVERWRITE
36
Simon Glass86f0bce2014-10-07 22:01:52 -060037/* Size of malloc() pool before and after relocation */
Simon Glass86f0bce2014-10-07 22:01:52 -060038#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 << 20))
Simon Glass14e27ab2014-10-07 22:01:45 -060039
40/* select serial console configuration */
41#define CONFIG_BAUDRATE 115200
42
43/* SD/MMC configuration */
44#define CONFIG_GENERIC_MMC
45#define CONFIG_MMC
46#define CONFIG_S5P_SDHCI
47#define CONFIG_SDHCI
48#define CONFIG_DWMMC
49#define CONFIG_EXYNOS_DWMMC
50#define CONFIG_BOUNCE_BUFFER
51
Simon Glass14e27ab2014-10-07 22:01:45 -060052/* PWM */
53#define CONFIG_PWM
54
55/* Command definition*/
Simon Glass14e27ab2014-10-07 22:01:45 -060056#define CONFIG_FAT_WRITE
Simon Glass14e27ab2014-10-07 22:01:45 -060057
Simon Glass14e27ab2014-10-07 22:01:45 -060058#define CONFIG_CMD_PART
59#define CONFIG_PARTITION_UUIDS
60
61/* Miscellaneous configurable options */
Ian Campbellaf36fc32014-11-09 10:44:33 +000062#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
63#define CONFIG_SYS_PBSIZE 1024 /* Print Buffer Size */
Simon Glass14e27ab2014-10-07 22:01:45 -060064#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
65
66/* Boot Argument Buffer Size */
67#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
68
69/* FLASH and environment organization */
70#define CONFIG_SYS_NO_FLASH
Simon Glass14e27ab2014-10-07 22:01:45 -060071
Ian Campbellde097272014-11-09 10:44:31 +000072#include <config_distro_defaults.h>
73
Simon Glass14e27ab2014-10-07 22:01:45 -060074#endif /* __CONFIG_H */