blob: defb38c5b33818acaff89e155936f919c0fe3148 [file] [log] [blame]
Adrian Alonso98810772015-09-03 11:49:28 -05001/*
2 * Copyright (C) 2015 Freescale Semiconductor, Inc.
3 *
4 * Configuration settings for the Freescale i.MX7.
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef __MX7_COMMON_H
10#define __MX7_COMMON_H
11
12#include <linux/sizes.h>
13#include <asm/arch/imx-regs.h>
Stefano Babic33731bc2017-06-29 10:16:06 +020014#include <asm/mach-imx/gpio.h>
Adrian Alonso98810772015-09-03 11:49:28 -050015
16#ifndef CONFIG_MX7
17#define CONFIG_MX7
18#endif
19
20/* Timer settings */
21#define CONFIG_MXC_GPT_HCLK
Adrian Alonso98810772015-09-03 11:49:28 -050022#define CONFIG_SC_TIMER_CLK 8000000 /* 8Mhz */
Andre Przywara70c78932017-02-16 01:20:19 +000023#define COUNTER_FREQUENCY CONFIG_SC_TIMER_CLK
Gong Qianyu52de2e52015-10-26 19:47:42 +080024#define CONFIG_SYS_FSL_CLK
Adrian Alonso98810772015-09-03 11:49:28 -050025
Peng Fan3783b9b2016-01-04 15:27:22 +080026#define CONFIG_SYS_BOOTM_LEN 0x1000000
27
Adrian Alonso98810772015-09-03 11:49:28 -050028/* Enable iomux-lpsr support */
29#define CONFIG_IOMUX_LPSR
Adrian Alonso98810772015-09-03 11:49:28 -050030
Adrian Alonso98810772015-09-03 11:49:28 -050031#define CONFIG_LOADADDR 0x80800000
Adrian Alonso98810772015-09-03 11:49:28 -050032
Adrian Alonso98810772015-09-03 11:49:28 -050033/* allow to overwrite serial and ethaddr */
34#define CONFIG_ENV_OVERWRITE
35#define CONFIG_CONS_INDEX 1
Adrian Alonso98810772015-09-03 11:49:28 -050036
Adrian Alonso98810772015-09-03 11:49:28 -050037/* Miscellaneous configurable options */
Adrian Alonso98810772015-09-03 11:49:28 -050038#define CONFIG_SYS_CBSIZE 512
39#define CONFIG_SYS_MAXARGS 32
Adrian Alonso98810772015-09-03 11:49:28 -050040
41#ifndef CONFIG_SYS_DCACHE_OFF
Adrian Alonso98810772015-09-03 11:49:28 -050042#endif
43
Adrian Alonso98810772015-09-03 11:49:28 -050044/* UART */
45#define CONFIG_MXC_UART
Adrian Alonso98810772015-09-03 11:49:28 -050046
47/* MMC */
Adrian Alonso98810772015-09-03 11:49:28 -050048#define CONFIG_BOUNCE_BUFFER
49#define CONFIG_FSL_ESDHC
50#define CONFIG_FSL_USDHC
51
52/* Fuses */
Adrian Alonso98810772015-09-03 11:49:28 -050053#define CONFIG_MXC_OCOTP
54
Peng Fan2da05db2015-10-23 10:13:05 +080055#define CONFIG_ARMV7_SECURE_BASE 0x00900000
Peng Fan2da05db2015-10-23 10:13:05 +080056
Anson Huang769f48e2018-01-07 14:34:30 +080057#define CONFIG_ARMV7_PSCI_1_0
58
Gary Bissonc5958142016-08-25 19:03:19 +020059/* Secure boot (HAB) support */
60#ifdef CONFIG_SECURE_BOOT
61#define CONFIG_CSF_SIZE 0x2000
Gary Bissonc5958142016-08-25 19:03:19 +020062#endif
63
Adrian Alonso98810772015-09-03 11:49:28 -050064#endif