blob: 17850400c1fd6384eaf2f4ec8d9db55bab1a814d [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
32#define CONFIG_SYS_TEXT_BASE 0x87800000
33
Adrian Alonso98810772015-09-03 11:49:28 -050034/* allow to overwrite serial and ethaddr */
35#define CONFIG_ENV_OVERWRITE
36#define CONFIG_CONS_INDEX 1
Adrian Alonso98810772015-09-03 11:49:28 -050037
Adrian Alonso98810772015-09-03 11:49:28 -050038/* Miscellaneous configurable options */
Adrian Alonso98810772015-09-03 11:49:28 -050039#define CONFIG_SYS_LONGHELP
Adrian Alonso98810772015-09-03 11:49:28 -050040#define CONFIG_CMDLINE_EDITING
41#define CONFIG_AUTO_COMPLETE
42#define CONFIG_SYS_CBSIZE 512
43#define CONFIG_SYS_MAXARGS 32
Adrian Alonso98810772015-09-03 11:49:28 -050044
45#ifndef CONFIG_SYS_DCACHE_OFF
Adrian Alonso98810772015-09-03 11:49:28 -050046#endif
47
48/* GPIO */
49#define CONFIG_MXC_GPIO
Adrian Alonso98810772015-09-03 11:49:28 -050050
51/* UART */
52#define CONFIG_MXC_UART
Adrian Alonso98810772015-09-03 11:49:28 -050053
54/* MMC */
Adrian Alonso98810772015-09-03 11:49:28 -050055#define CONFIG_BOUNCE_BUFFER
56#define CONFIG_FSL_ESDHC
57#define CONFIG_FSL_USDHC
58
59/* Fuses */
Adrian Alonso98810772015-09-03 11:49:28 -050060#define CONFIG_MXC_OCOTP
61
Peng Fan2da05db2015-10-23 10:13:05 +080062#define CONFIG_ARMV7_SECURE_BASE 0x00900000
Peng Fan2da05db2015-10-23 10:13:05 +080063
Gary Bissonc5958142016-08-25 19:03:19 +020064/* Secure boot (HAB) support */
65#ifdef CONFIG_SECURE_BOOT
66#define CONFIG_CSF_SIZE 0x2000
Gary Bissonc5958142016-08-25 19:03:19 +020067#endif
68
Adrian Alonso98810772015-09-03 11:49:28 -050069#endif