mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 17:58:23 +00:00
9b0240f8c6
This converts the following to Kconfig: CONFIG_DM9000_BYTE_SWAPPED CONFIG_DM9000_NO_SROM CONFIG_DM9000_USE_16BIT CONFIG_DM9000_DEBUG CONFIG_MXC_GPT_HCLK CONFIG_NAND_6BYTES_OOB_FREE_10BYTES_ECC Signed-off-by: Tom Rini <trini@konsulko.com>
31 lines
674 B
C
31 lines
674 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2015 Freescale Semiconductor, Inc.
|
|
*
|
|
* Configuration settings for the Freescale i.MX7.
|
|
*/
|
|
|
|
#ifndef __MX7_COMMON_H
|
|
#define __MX7_COMMON_H
|
|
|
|
#include <linux/sizes.h>
|
|
#include <linux/stringify.h>
|
|
#include <asm/arch/imx-regs.h>
|
|
#include <asm/mach-imx/gpio.h>
|
|
|
|
/* Timer settings */
|
|
#define CONFIG_SC_TIMER_CLK 8000000 /* 8Mhz */
|
|
|
|
/* Miscellaneous configurable options */
|
|
|
|
/* UART */
|
|
|
|
/* MMC */
|
|
|
|
/*
|
|
* If we have defined the OPTEE ram size and not OPTEE it means that we were
|
|
* launched by OPTEE, because of that we shall skip all the low level
|
|
* initialization since it was already done by ATF or OPTEE
|
|
*/
|
|
|
|
#endif
|