2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2017-04-07 17:13:38 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PUMA_RK3399_H
|
|
|
|
#define __PUMA_RK3399_H
|
|
|
|
|
|
|
|
#include <configs/rk3399_common.h>
|
|
|
|
|
2017-11-06 22:02:56 +00:00
|
|
|
#if defined(CONFIG_ENV_IS_IN_MMC)
|
2017-04-07 17:13:38 +00:00
|
|
|
#define CONFIG_SYS_MMC_ENV_DEV 1
|
2017-11-06 22:02:56 +00:00
|
|
|
#elif defined(CONFIG_ENV_IS_IN_SPI_FLASH)
|
|
|
|
#define CONFIG_ENV_SECT_SIZE (8 * 1024)
|
|
|
|
#endif
|
2017-04-07 17:13:38 +00:00
|
|
|
|
|
|
|
#define SDRAM_BANK_SIZE (2UL << 30)
|
|
|
|
|
2017-05-05 17:21:39 +00:00
|
|
|
#define CONFIG_SERIAL_TAG
|
|
|
|
#define CONFIG_ENV_OVERWRITE
|
|
|
|
|
2017-05-31 15:59:36 +00:00
|
|
|
#define CONFIG_BMP_16BPP
|
|
|
|
#define CONFIG_BMP_24BPP
|
|
|
|
#define CONFIG_BMP_32BPP
|
|
|
|
|
2017-04-07 17:13:38 +00:00
|
|
|
#endif
|