Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Tim Harvey | 7412d9d | 2014-06-02 16:13:19 -0700 | [diff] [blame] | 2 | /* |
3 | * Copyright (C) 2014 Gateworks Corporation | ||||
4 | * Author: Tim Harvey <tharvey@gateworks.com> | ||||
Tim Harvey | 7412d9d | 2014-06-02 16:13:19 -0700 | [diff] [blame] | 5 | */ |
6 | #ifndef __IMX6_SPL_CONFIG_H | ||||
7 | #define __IMX6_SPL_CONFIG_H | ||||
8 | |||||
9 | #ifdef CONFIG_SPL | ||||
Robert Hancock | 9c5970c | 2019-08-08 12:14:39 -0600 | [diff] [blame] | 10 | |
Tim Harvey | 7412d9d | 2014-06-02 16:13:19 -0700 | [diff] [blame] | 11 | /* MMC support */ |
Simon Glass | b58bfe0 | 2021-08-08 12:20:09 -0600 | [diff] [blame] | 12 | #if defined(CONFIG_SPL_MMC) |
Semen Protsenko | d776ecf | 2016-11-16 19:19:06 +0200 | [diff] [blame] | 13 | #define CONFIG_SYS_MONITOR_LEN 409600 /* 400 KB */ |
Tim Harvey | 7412d9d | 2014-06-02 16:13:19 -0700 | [diff] [blame] | 14 | #endif |
15 | |||||
16 | /* SATA support */ | ||||
Simon Glass | 081a45a | 2021-08-08 12:20:17 -0600 | [diff] [blame] | 17 | #if defined(CONFIG_SPL_SATA) |
Tim Harvey | 7412d9d | 2014-06-02 16:13:19 -0700 | [diff] [blame] | 18 | #define CONFIG_SYS_SATA_FAT_BOOT_PARTITION 1 |
19 | #endif | ||||
20 | |||||
Peng Fan | 327083c | 2014-12-30 17:24:02 +0800 | [diff] [blame] | 21 | #endif |
Tim Harvey | 7412d9d | 2014-06-02 16:13:19 -0700 | [diff] [blame] | 22 | |
23 | #endif |