blob: 852829c344c5c1538812db1eb2a33db5187bb0bb [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 Glassb8809e62014-10-20 19:48:40 -060019
Simon Glass5ea01ab2014-10-07 22:01:45 -060020#define CONFIG_ARCH_CPU_INIT
21#define CONFIG_DISPLAY_CPUINFO
22#define CONFIG_DISPLAY_BOARDINFO
Simon Glass5ea01ab2014-10-07 22:01:45 -060023#define CONFIG_SKIP_LOWLEVEL_INIT
24#define CONFIG_BOARD_EARLY_INIT_F
25
Przemyslaw Marczak929d9a22015-03-04 14:01:21 +010026#define CONFIG_USE_ARCH_MEMCPY
27#define CONFIG_USE_ARCH_MEMSET
28
Simon Glass5ea01ab2014-10-07 22:01:45 -060029/* Keep L2 Cache Disabled */
30#define CONFIG_CMD_CACHE
31
32/* input clock of PLL: 24MHz input clock */
33#define CONFIG_SYS_CLK_FREQ 24000000
34
35#define CONFIG_SETUP_MEMORY_TAGS
36#define CONFIG_CMDLINE_TAG
37#define CONFIG_INITRD_TAG
Simon Glass5ea01ab2014-10-07 22:01:45 -060038#define CONFIG_ENV_OVERWRITE
39
Simon Glass2ecd7792014-10-07 22:01:52 -060040/* Size of malloc() pool before and after relocation */
Simon Glass2ecd7792014-10-07 22:01:52 -060041#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 << 20))
Simon Glass5ea01ab2014-10-07 22:01:45 -060042
43/* select serial console configuration */
44#define CONFIG_BAUDRATE 115200
45
46/* SD/MMC configuration */
47#define CONFIG_GENERIC_MMC
48#define CONFIG_MMC
49#define CONFIG_S5P_SDHCI
50#define CONFIG_SDHCI
51#define CONFIG_DWMMC
52#define CONFIG_EXYNOS_DWMMC
53#define CONFIG_BOUNCE_BUFFER
54
Simon Glass5ea01ab2014-10-07 22:01:45 -060055#define CONFIG_ZERO_BOOTDELAY_CHECK
56
57/* PWM */
58#define CONFIG_PWM
59
60/* Command definition*/
Simon Glass5ea01ab2014-10-07 22:01:45 -060061#define CONFIG_CMD_MMC
Simon Glass5ea01ab2014-10-07 22:01:45 -060062#define CONFIG_CMD_EXT4_WRITE
Simon Glass5ea01ab2014-10-07 22:01:45 -060063#define CONFIG_FAT_WRITE
Przemyslaw Marczak4367c712014-10-24 17:44:57 +020064#define CONFIG_CMD_FS_GENERIC
Simon Glass5ea01ab2014-10-07 22:01:45 -060065
Simon Glass5ea01ab2014-10-07 22:01:45 -060066#define CONFIG_CMD_PART
67#define CONFIG_PARTITION_UUIDS
68
69/* Miscellaneous configurable options */
Ian Campbellcf3c03b2014-11-09 10:44:33 +000070#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
71#define CONFIG_SYS_PBSIZE 1024 /* Print Buffer Size */
Simon Glass5ea01ab2014-10-07 22:01:45 -060072#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
73
74/* Boot Argument Buffer Size */
75#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
76
77/* FLASH and environment organization */
78#define CONFIG_SYS_NO_FLASH
Simon Glass5ea01ab2014-10-07 22:01:45 -060079
Ian Campbelladc7d202014-11-09 10:44:31 +000080#include <config_distro_defaults.h>
81
Simon Glass5ea01ab2014-10-07 22:01:45 -060082#endif /* __CONFIG_H */