2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-06-02 23:13:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Gateworks Corporation
|
|
|
|
* Author: Tim Harvey <tharvey@gateworks.com>
|
|
|
|
*/
|
|
|
|
#ifndef __IMX6_SPL_CONFIG_H
|
|
|
|
#define __IMX6_SPL_CONFIG_H
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL
|
2019-08-08 18:14:39 +00:00
|
|
|
|
2014-06-02 23:13:19 +00:00
|
|
|
/* MMC support */
|
2021-08-08 18:20:09 +00:00
|
|
|
#if defined(CONFIG_SPL_MMC)
|
2016-11-16 17:19:06 +00:00
|
|
|
#define CONFIG_SYS_MONITOR_LEN 409600 /* 400 KB */
|
2014-06-02 23:13:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* SATA support */
|
2021-08-08 18:20:17 +00:00
|
|
|
#if defined(CONFIG_SPL_SATA)
|
2014-06-02 23:13:19 +00:00
|
|
|
#define CONFIG_SYS_SATA_FAT_BOOT_PARTITION 1
|
|
|
|
#endif
|
|
|
|
|
2014-12-30 09:24:02 +00:00
|
|
|
#endif
|
2014-06-02 23:13:19 +00:00
|
|
|
|
|
|
|
#endif
|