mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
b996b7d426
The following config symbols are only defined once and never referenced anywhere else: CONFIG_AT91SAM9263EK CONFIG_AT91SAM9RLEK CONFIG_BARIX_IPAM390 CONFIG_BOARD_H2200 CONFIG_EP9301 CONFIG_KZM_A9_GT CONFIG_PICOSAM CONFIG_PLATINUM_PICON CONFIG_PLATINUM_TITANIUM CONFIG_PM9261 CONFIG_PM9263 CONFIG_PM9G45 CONFIG_SIEMENS_DRACO CONFIG_SIEMENS_PXM2 CONFIG_SIEMENS_RUT CONFIG_SMDKC100 CONFIG_SMDKV310 CONFIG_STM32F4DISCOVERY Most of them are config symbols named after the respective boards which seems to have been a standard practice at some point. Signed-off-by: Tuomas Tynkkynen <tuomas@tuxera.com>
31 lines
749 B
C
31 lines
749 B
C
/*
|
|
* Copyright (C) 2014, Barco (www.barco.com)
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __PLATINUM_TITANIUM_CONFIG_H__
|
|
#define __PLATINUM_TITANIUM_CONFIG_H__
|
|
|
|
#define CONFIG_PLATINUM_BOARD "Barco Titanium"
|
|
#define CONFIG_PLATINUM_PROJECT "titanium"
|
|
#define CONFIG_PLATINUM_CPU "imx6q"
|
|
|
|
#define PHYS_SDRAM_SIZE (512 << 20)
|
|
#define CONFIG_SYS_NAND_MAX_CHIPS 1
|
|
|
|
#include <configs/platinum.h>
|
|
|
|
#define CONFIG_FEC_XCV_TYPE RGMII
|
|
#define CONFIG_FEC_MXC_PHYADDR 4
|
|
|
|
#define CONFIG_PHY_RESET_DELAY 1000
|
|
|
|
#define CONFIG_HOSTNAME titanium
|
|
|
|
#define CONFIG_PLATFORM_ENV_SETTINGS "\0"
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS CONFIG_COMMON_ENV_SETTINGS \
|
|
CONFIG_PLATFORM_ENV_SETTINGS
|
|
|
|
#endif /* __PLATINUM_TITANIUM_CONFIG_H__ */
|