blob: 488b2f1696a9af79a62688d6116e356fc92ea2f2 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Tim Harvey7412d9d2014-06-02 16:13:19 -07002/*
3 * Copyright (C) 2014 Gateworks Corporation
4 * Author: Tim Harvey <tharvey@gateworks.com>
Tim Harvey7412d9d2014-06-02 16:13:19 -07005 */
6#ifndef __IMX6_SPL_CONFIG_H
7#define __IMX6_SPL_CONFIG_H
8
9#ifdef CONFIG_SPL
Robert Hancock9c5970c2019-08-08 12:14:39 -060010
Tim Harvey7412d9d2014-06-02 16:13:19 -070011/* MMC support */
Simon Glassb58bfe02021-08-08 12:20:09 -060012#if defined(CONFIG_SPL_MMC)
Semen Protsenkod776ecf2016-11-16 19:19:06 +020013#define CONFIG_SYS_MONITOR_LEN 409600 /* 400 KB */
Tim Harvey7412d9d2014-06-02 16:13:19 -070014#endif
15
16/* SATA support */
Simon Glass081a45a2021-08-08 12:20:17 -060017#if defined(CONFIG_SPL_SATA)
Tim Harvey7412d9d2014-06-02 16:13:19 -070018#define CONFIG_SYS_SATA_FAT_BOOT_PARTITION 1
19#endif
20
Peng Fan327083c2014-12-30 17:24:02 +080021#endif
Tim Harvey7412d9d2014-06-02 16:13:19 -070022
23#endif