Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Freescale Semiconductor, Inc. |
| 4 | * |
| 5 | * Configuration settings for the Freescale i.MX7. |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __MX7_COMMON_H |
| 9 | #define __MX7_COMMON_H |
| 10 | |
| 11 | #include <linux/sizes.h> |
Simon Glass | 1af3c7f | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 12 | #include <linux/stringify.h> |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 13 | #include <asm/arch/imx-regs.h> |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 14 | #include <asm/mach-imx/gpio.h> |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 15 | |
| 16 | #ifndef CONFIG_MX7 |
| 17 | #define CONFIG_MX7 |
| 18 | #endif |
| 19 | |
| 20 | /* Timer settings */ |
| 21 | #define CONFIG_MXC_GPT_HCLK |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 22 | #define CONFIG_SC_TIMER_CLK 8000000 /* 8Mhz */ |
Andre Przywara | e4916e8 | 2017-02-16 01:20:19 +0000 | [diff] [blame] | 23 | #define COUNTER_FREQUENCY CONFIG_SC_TIMER_CLK |
Gong Qianyu | 18fb0e3 | 2015-10-26 19:47:42 +0800 | [diff] [blame] | 24 | #define CONFIG_SYS_FSL_CLK |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 25 | |
Peng Fan | 1ecd2ea | 2016-01-04 15:27:22 +0800 | [diff] [blame] | 26 | #define CONFIG_SYS_BOOTM_LEN 0x1000000 |
| 27 | |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 28 | /* Enable iomux-lpsr support */ |
| 29 | #define CONFIG_IOMUX_LPSR |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 30 | |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 31 | #define CONFIG_LOADADDR 0x80800000 |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 32 | |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 33 | /* Miscellaneous configurable options */ |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 34 | #define CONFIG_SYS_CBSIZE 512 |
| 35 | #define CONFIG_SYS_MAXARGS 32 |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 36 | |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 37 | /* UART */ |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 38 | |
| 39 | /* MMC */ |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 40 | |
Peng Fan | 90ab4be | 2015-10-23 10:13:05 +0800 | [diff] [blame] | 41 | #define CONFIG_ARMV7_SECURE_BASE 0x00900000 |
Peng Fan | 90ab4be | 2015-10-23 10:13:05 +0800 | [diff] [blame] | 42 | |
Eran Matityahu | dad75e2 | 2018-02-28 09:51:34 +0200 | [diff] [blame] | 43 | #ifdef CONFIG_SPL_BUILD |
| 44 | #define CONFIG_SPL_DRIVERS_MISC_SUPPORT |
| 45 | #endif |
Gary Bisson | e667239 | 2016-08-25 19:03:19 +0200 | [diff] [blame] | 46 | |
Jun Nie | 3ad0d26 | 2019-05-08 14:38:29 +0800 | [diff] [blame] | 47 | /* |
| 48 | * If we have defined the OPTEE ram size and not OPTEE it means that we were |
| 49 | * launched by OPTEE, because of that we shall skip all the low level |
| 50 | * initialization since it was already done by ATF or OPTEE |
| 51 | */ |
| 52 | #if (CONFIG_OPTEE_TZDRAM_SIZE != 0) |
| 53 | #ifndef CONFIG_OPTEE |
| 54 | #define CONFIG_SKIP_LOWLEVEL_INIT |
| 55 | #endif |
| 56 | #endif |
| 57 | |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 58 | #endif |