blob: ade66a43309d8ee5fe5135515e10962a336f36cf [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
Simon Glass5ea01ab2014-10-07 22:01:45 -060020#define CONFIG_SKIP_LOWLEVEL_INIT
Simon Glass5ea01ab2014-10-07 22:01:45 -060021
Simon Glass5ea01ab2014-10-07 22:01:45 -060022/* Keep L2 Cache Disabled */
Simon Glass5ea01ab2014-10-07 22:01:45 -060023
24/* input clock of PLL: 24MHz input clock */
25#define CONFIG_SYS_CLK_FREQ 24000000
Andre Przywarae4916e82017-02-16 01:20:19 +000026#define COUNTER_FREQUENCY CONFIG_SYS_CLK_FREQ
Simon Glass5ea01ab2014-10-07 22:01:45 -060027
28#define CONFIG_SETUP_MEMORY_TAGS
29#define CONFIG_CMDLINE_TAG
30#define CONFIG_INITRD_TAG
Simon Glass5ea01ab2014-10-07 22:01:45 -060031#define CONFIG_ENV_OVERWRITE
32
Simon Glass2ecd7792014-10-07 22:01:52 -060033/* Size of malloc() pool before and after relocation */
Simon Glass2ecd7792014-10-07 22:01:52 -060034#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 << 20))
Simon Glass5ea01ab2014-10-07 22:01:45 -060035
36/* select serial console configuration */
Simon Glass5ea01ab2014-10-07 22:01:45 -060037
38/* SD/MMC configuration */
Simon Glass5ea01ab2014-10-07 22:01:45 -060039#define CONFIG_BOUNCE_BUFFER
40
Simon Glass5ea01ab2014-10-07 22:01:45 -060041/* PWM */
42#define CONFIG_PWM
43
44/* Command definition*/
Simon Glass5ea01ab2014-10-07 22:01:45 -060045#define CONFIG_FAT_WRITE
Simon Glass5ea01ab2014-10-07 22:01:45 -060046
Simon Glass5ea01ab2014-10-07 22:01:45 -060047/* Miscellaneous configurable options */
Ian Campbellcf3c03b2014-11-09 10:44:33 +000048#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
49#define CONFIG_SYS_PBSIZE 1024 /* Print Buffer Size */
Simon Glass5ea01ab2014-10-07 22:01:45 -060050#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
51
52/* Boot Argument Buffer Size */
53#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
54
Ian Campbelladc7d202014-11-09 10:44:31 +000055#include <config_distro_defaults.h>
56
Simon Glass5ea01ab2014-10-07 22:01:45 -060057#endif /* __CONFIG_H */