blob: ffe8c758dd2609a5cfcdb7d2c1d1e11705d60a83 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Adrian Alonso1a8150d2015-09-03 11:49:28 -05002/*
3 * Copyright (C) 2015 Freescale Semiconductor, Inc.
4 *
5 * Configuration settings for the Freescale i.MX7.
Adrian Alonso1a8150d2015-09-03 11:49:28 -05006 */
7
8#ifndef __MX7_COMMON_H
9#define __MX7_COMMON_H
10
11#include <linux/sizes.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060012#include <linux/stringify.h>
Adrian Alonso1a8150d2015-09-03 11:49:28 -050013#include <asm/arch/imx-regs.h>
Stefano Babic552a8482017-06-29 10:16:06 +020014#include <asm/mach-imx/gpio.h>
Adrian Alonso1a8150d2015-09-03 11:49:28 -050015
Adrian Alonso1a8150d2015-09-03 11:49:28 -050016/* Timer settings */
17#define CONFIG_MXC_GPT_HCLK
Adrian Alonso1a8150d2015-09-03 11:49:28 -050018#define CONFIG_SC_TIMER_CLK 8000000 /* 8Mhz */
Andre Przywarae4916e82017-02-16 01:20:19 +000019#define COUNTER_FREQUENCY CONFIG_SC_TIMER_CLK
Gong Qianyu18fb0e32015-10-26 19:47:42 +080020#define CONFIG_SYS_FSL_CLK
Adrian Alonso1a8150d2015-09-03 11:49:28 -050021
Peng Fan1ecd2ea2016-01-04 15:27:22 +080022#define CONFIG_SYS_BOOTM_LEN 0x1000000
23
Adrian Alonso1a8150d2015-09-03 11:49:28 -050024/* Enable iomux-lpsr support */
25#define CONFIG_IOMUX_LPSR
Adrian Alonso1a8150d2015-09-03 11:49:28 -050026
Adrian Alonso1a8150d2015-09-03 11:49:28 -050027/* Miscellaneous configurable options */
Adrian Alonso1a8150d2015-09-03 11:49:28 -050028#define CONFIG_SYS_CBSIZE 512
29#define CONFIG_SYS_MAXARGS 32
Adrian Alonso1a8150d2015-09-03 11:49:28 -050030
Adrian Alonso1a8150d2015-09-03 11:49:28 -050031/* UART */
Adrian Alonso1a8150d2015-09-03 11:49:28 -050032
33/* MMC */
Adrian Alonso1a8150d2015-09-03 11:49:28 -050034
Peng Fan90ab4be2015-10-23 10:13:05 +080035#define CONFIG_ARMV7_SECURE_BASE 0x00900000
Peng Fan90ab4be2015-10-23 10:13:05 +080036
Jun Nie3ad0d262019-05-08 14:38:29 +080037/*
38 * If we have defined the OPTEE ram size and not OPTEE it means that we were
39 * launched by OPTEE, because of that we shall skip all the low level
40 * initialization since it was already done by ATF or OPTEE
41 */
Jun Nie3ad0d262019-05-08 14:38:29 +080042
Adrian Alonso1a8150d2015-09-03 11:49:28 -050043#endif