]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/configs/mx6_common.h
treewide: Migrate CONFIG_FSL_ESDHC to Kconfig
[thirdparty/u-boot.git] / include / configs / mx6_common.h
CommitLineData
8f393776
SW
1/*
2 * Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved.
3 *
5b8031cc 4 * SPDX-License-Identifier: GPL-2.0
8f393776
SW
5 */
6
7#ifndef __MX6_COMMON_H
8#define __MX6_COMMON_H
9
46718353
SA
10#if (defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL))
11#define CONFIG_SC_TIMER_CLK 8000000 /* 8Mhz */
12#define COUNTER_FREQUENCY CONFIG_SC_TIMER_CLK
13#else
6d73c234
FE
14#ifndef CONFIG_SYS_L2CACHE_OFF
15#define CONFIG_SYS_L2_PL310
16#define CONFIG_SYS_PL310_BASE L2_PL310_BASE
17#endif
18
a76df709 19#define CONFIG_MP
436cf40f
PF
20#endif
21#define CONFIG_BOARD_POSTCLK_INIT
f13ac7b2 22#define CONFIG_MXC_GPT_HCLK
a76df709 23
1ecd2eaa
PF
24#define CONFIG_SYS_BOOTM_LEN 0x1000000
25
056845c2
PR
26#include <linux/sizes.h>
27#include <asm/arch/imx-regs.h>
552a848e 28#include <asm/mach-imx/gpio.h>
056845c2 29
3b1f6811
PR
30#ifndef CONFIG_MX6
31#define CONFIG_MX6
32#endif
33
18fb0e3c 34#define CONFIG_SYS_FSL_CLK
3b1f6811 35
ea690917
PR
36/* ATAGs */
37#define CONFIG_CMDLINE_TAG
38#define CONFIG_SETUP_MEMORY_TAGS
39#define CONFIG_INITRD_TAG
40#define CONFIG_REVISION_TAG
41
81830581 42/* Boot options */
290e7cfd
FE
43#if defined(CONFIG_MX6SL) || defined(CONFIG_MX6SLL) || \
44 defined(CONFIG_MX6SX) || \
45 defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
cd6ddc48 46#define CONFIG_LOADADDR 0x82000000
cd6ddc48 47#else
81830581 48#define CONFIG_LOADADDR 0x12000000
cd6ddc48
FE
49#endif
50#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
51
2d8a0747
PR
52/* allow to overwrite serial and ethaddr */
53#define CONFIG_ENV_OVERWRITE
2d8a0747 54
a380ce6e 55/* Filesystems and image support */
a380ce6e 56
2d8a0747 57/* Miscellaneous configurable options */
2d8a0747
PR
58#define CONFIG_SYS_CBSIZE 512
59#define CONFIG_SYS_MAXARGS 32
2d8a0747 60
e51c1e8e 61/* MMC */
e51c1e8e 62#define CONFIG_BOUNCE_BUFFER
e51c1e8e
PR
63#define CONFIG_FSL_USDHC
64
3c73b0a4 65/* Fuses */
3c73b0a4
PR
66#define CONFIG_MXC_OCOTP
67
e22685d2
GB
68/* Secure boot (HAB) support */
69#ifdef CONFIG_SECURE_BOOT
70#define CONFIG_CSF_SIZE 0x2000
15b505b0
SE
71#ifdef CONFIG_SPL_BUILD
72#define CONFIG_SPL_DRIVERS_MISC_SUPPORT
73#endif
e22685d2
GB
74#endif
75
8f393776 76#endif