blob: da5a92502bd94b13e2d05f1942cf23d02f65d6b1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Adrian Alonso98810772015-09-03 11:49:28 -05002/*
3 * Copyright (C) 2015 Freescale Semiconductor, Inc.
4 *
5 * Configuration settings for the Freescale i.MX7.
Adrian Alonso98810772015-09-03 11:49:28 -05006 */
7
8#ifndef __MX7_COMMON_H
9#define __MX7_COMMON_H
10
11#include <linux/sizes.h>
12#include <asm/arch/imx-regs.h>
Stefano Babic33731bc2017-06-29 10:16:06 +020013#include <asm/mach-imx/gpio.h>
Adrian Alonso98810772015-09-03 11:49:28 -050014
15#ifndef CONFIG_MX7
16#define CONFIG_MX7
17#endif
18
19/* Timer settings */
20#define CONFIG_MXC_GPT_HCLK
Adrian Alonso98810772015-09-03 11:49:28 -050021#define CONFIG_SC_TIMER_CLK 8000000 /* 8Mhz */
Andre Przywara70c78932017-02-16 01:20:19 +000022#define COUNTER_FREQUENCY CONFIG_SC_TIMER_CLK
Gong Qianyu52de2e52015-10-26 19:47:42 +080023#define CONFIG_SYS_FSL_CLK
Adrian Alonso98810772015-09-03 11:49:28 -050024
Peng Fan3783b9b2016-01-04 15:27:22 +080025#define CONFIG_SYS_BOOTM_LEN 0x1000000
26
Adrian Alonso98810772015-09-03 11:49:28 -050027/* Enable iomux-lpsr support */
28#define CONFIG_IOMUX_LPSR
Adrian Alonso98810772015-09-03 11:49:28 -050029
Adrian Alonso98810772015-09-03 11:49:28 -050030#define CONFIG_LOADADDR 0x80800000
Adrian Alonso98810772015-09-03 11:49:28 -050031
Adrian Alonso98810772015-09-03 11:49:28 -050032/* allow to overwrite serial and ethaddr */
33#define CONFIG_ENV_OVERWRITE
Adrian Alonso98810772015-09-03 11:49:28 -050034
Adrian Alonso98810772015-09-03 11:49:28 -050035/* Miscellaneous configurable options */
Adrian Alonso98810772015-09-03 11:49:28 -050036#define CONFIG_SYS_CBSIZE 512
37#define CONFIG_SYS_MAXARGS 32
Adrian Alonso98810772015-09-03 11:49:28 -050038
39#ifndef CONFIG_SYS_DCACHE_OFF
Adrian Alonso98810772015-09-03 11:49:28 -050040#endif
41
Adrian Alonso98810772015-09-03 11:49:28 -050042/* UART */
43#define CONFIG_MXC_UART
Adrian Alonso98810772015-09-03 11:49:28 -050044
45/* MMC */
Adrian Alonso98810772015-09-03 11:49:28 -050046#define CONFIG_BOUNCE_BUFFER
Adrian Alonso98810772015-09-03 11:49:28 -050047#define CONFIG_FSL_USDHC
48
49/* Fuses */
Adrian Alonso98810772015-09-03 11:49:28 -050050#define CONFIG_MXC_OCOTP
51
Peng Fan2da05db2015-10-23 10:13:05 +080052#define CONFIG_ARMV7_SECURE_BASE 0x00900000
Peng Fan2da05db2015-10-23 10:13:05 +080053
Anson Huang769f48e2018-01-07 14:34:30 +080054#define CONFIG_ARMV7_PSCI_1_0
55
Gary Bissonc5958142016-08-25 19:03:19 +020056/* Secure boot (HAB) support */
57#ifdef CONFIG_SECURE_BOOT
58#define CONFIG_CSF_SIZE 0x2000
Eran Matityahu9fb00ca2018-02-28 09:51:34 +020059#ifdef CONFIG_SPL_BUILD
60#define CONFIG_SPL_DRIVERS_MISC_SUPPORT
61#endif
Gary Bissonc5958142016-08-25 19:03:19 +020062#endif
63
Adrian Alonso98810772015-09-03 11:49:28 -050064#endif