mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
aa6aaf9321
While it is likely that this entire case is superfluous and can be removed, correct the test now to match what is in rockchip-common.h and makes sense based on context of the code. Otherwise we get a large number of warnings. Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Signed-off-by: Tom Rini <trini@konsulko.com>
29 lines
518 B
C
29 lines
518 B
C
/*
|
|
* (C) Copyright 2015 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#define ROCKCHIP_DEVICE_SETTINGS
|
|
#include <configs/rk3188_common.h>
|
|
|
|
#define CONFIG_SYS_MMC_ENV_DEV 0
|
|
|
|
#if CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM)
|
|
/* SPL @ 32k for 34k
|
|
* u-boot directly after @ 68k for 400k or so
|
|
* ENV @ 992k
|
|
*/
|
|
#define CONFIG_ENV_OFFSET ((1024-32) * 1024)
|
|
#else
|
|
/* SPL @ 32k for ~36k
|
|
* ENV @ 96k
|
|
* u-boot @ 128K
|
|
*/
|
|
#define CONFIG_ENV_OFFSET (96 * 1024)
|
|
#endif
|
|
|
|
#endif
|