blob: a0e481703bcb61ab569b863608734fbb3f4bb234 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Stephen Warren57ab23f2013-02-26 12:28:29 +00002/*
3 * Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved.
Stephen Warren57ab23f2013-02-26 12:28:29 +00004 */
5
6#ifndef __MX6_COMMON_H
7#define __MX6_COMMON_H
8
Simon Glassfb64e362020-05-10 11:40:09 -06009#include <linux/stringify.h>
10
Stefan Agnerbe8b7c52018-01-05 15:08:19 +010011#if (defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL))
12#define CONFIG_SC_TIMER_CLK 8000000 /* 8Mhz */
13#define COUNTER_FREQUENCY CONFIG_SC_TIMER_CLK
14#else
Fabio Estevam13409292014-01-29 17:39:49 -020015#ifndef CONFIG_SYS_L2CACHE_OFF
16#define CONFIG_SYS_L2_PL310
17#define CONFIG_SYS_PL310_BASE L2_PL310_BASE
18#endif
19
Peng Fand2d4fcb2015-07-20 19:28:26 +080020#endif
Ye.Li2b7f8772014-10-30 18:20:59 +080021#define CONFIG_MXC_GPT_HCLK
Gabriel Huau170ceaf2014-07-26 11:35:43 -070022
Peng Fan3783b9b2016-01-04 15:27:22 +080023#define CONFIG_SYS_BOOTM_LEN 0x1000000
24
Peter Robinson4b671502015-05-22 17:30:45 +010025#include <linux/sizes.h>
26#include <asm/arch/imx-regs.h>
Stefano Babic33731bc2017-06-29 10:16:06 +020027#include <asm/mach-imx/gpio.h>
Peter Robinson4b671502015-05-22 17:30:45 +010028
Peter Robinson61a1b9d2015-05-22 17:30:50 +010029/* Miscellaneous configurable options */
Peter Robinson61a1b9d2015-05-22 17:30:50 +010030#define CONFIG_SYS_CBSIZE 512
31#define CONFIG_SYS_MAXARGS 32
Peter Robinson61a1b9d2015-05-22 17:30:50 +010032
Peter Robinsonbe6c5f12015-05-22 17:30:52 +010033/* MMC */
Peter Robinsonbe6c5f12015-05-22 17:30:52 +010034
Stephen Warren57ab23f2013-02-26 12:28:29 +000035#endif