mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
c8cd4db6f1
Disabling the network related features in defconfig causes build to fail so make them optional. Tested-by: Andreas Westman Dorcsak <hedmoo@yahoo.com> # ASUS Grouper E1565 Tested-by: Svyatoslav Ryhel <clamor95@gmail.com> # LG P895 T30 Signed-off-by: Jonas Schwöbel <jonasschwoebel@yahoo.de> Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
94 lines
1.9 KiB
C
94 lines
1.9 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2010-2012
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
*/
|
|
|
|
#ifndef __TEGRA_COMMON_POST_H
|
|
#define __TEGRA_COMMON_POST_H
|
|
|
|
#if IS_ENABLED(CONFIG_CMD_USB)
|
|
#define BOOT_TARGET_USB(func) func(USB, usb, 0)
|
|
#else
|
|
#define BOOT_TARGET_USB(func)
|
|
#endif
|
|
|
|
#if CONFIG_IS_ENABLED(CMD_DHCP) && CONFIG_IS_ENABLED(CMD_PXE)
|
|
#define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
|
|
#else
|
|
#define BOOT_TARGET_PXE(func)
|
|
#endif
|
|
|
|
#if CONFIG_IS_ENABLED(CMD_DHCP)
|
|
#define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
|
|
#else
|
|
#define BOOT_TARGET_DHCP(func)
|
|
#endif
|
|
|
|
#ifndef BOOT_TARGET_DEVICES
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
func(MMC, mmc, 1) \
|
|
func(MMC, mmc, 0) \
|
|
BOOT_TARGET_USB(func) \
|
|
BOOT_TARGET_PXE(func) \
|
|
BOOT_TARGET_DHCP(func)
|
|
#endif
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
#ifdef CONFIG_TEGRA_KEYBOARD
|
|
#define STDIN_KBD_KBC ",tegra-kbc"
|
|
#else
|
|
#define STDIN_KBD_KBC ""
|
|
#endif
|
|
|
|
#ifdef CONFIG_USB_KEYBOARD
|
|
#define STDIN_KBD_USB ",usbkbd"
|
|
#else
|
|
#define STDIN_KBD_USB ""
|
|
#endif
|
|
|
|
#ifdef CONFIG_BUTTON_KEYBOARD
|
|
#define STDIN_BTN_KBD ",button-kbd"
|
|
#else
|
|
#define STDIN_BTN_KBD ""
|
|
#endif
|
|
|
|
#ifdef CONFIG_VIDEO
|
|
#define STDOUT_VIDEO ",vidconsole"
|
|
#else
|
|
#define STDOUT_VIDEO ""
|
|
#endif
|
|
|
|
#ifdef CONFIG_CROS_EC_KEYB
|
|
#define STDOUT_CROS_EC ",cros-ec-keyb"
|
|
#else
|
|
#define STDOUT_CROS_EC ""
|
|
#endif
|
|
|
|
#define TEGRA_DEVICE_SETTINGS \
|
|
"stdin=serial" STDIN_KBD_KBC STDIN_KBD_USB STDOUT_CROS_EC STDIN_BTN_KBD "\0" \
|
|
"stdout=serial" STDOUT_VIDEO "\0" \
|
|
"stderr=serial" STDOUT_VIDEO "\0" \
|
|
""
|
|
|
|
#ifndef BOARD_EXTRA_ENV_SETTINGS
|
|
#define BOARD_EXTRA_ENV_SETTINGS
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARM64
|
|
#define FDT_HIGH "ffffffffffffffff"
|
|
#define INITRD_HIGH "ffffffffffffffff"
|
|
#else
|
|
#define FDT_HIGH "ffffffff"
|
|
#define INITRD_HIGH "ffffffff"
|
|
#endif
|
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
|
TEGRA_DEVICE_SETTINGS \
|
|
MEM_LAYOUT_ENV_SETTINGS \
|
|
"fdt_high=" FDT_HIGH "\0" \
|
|
"initrd_high=" INITRD_HIGH "\0" \
|
|
BOOTENV \
|
|
BOARD_EXTRA_ENV_SETTINGS
|
|
|
|
#endif /* __TEGRA_COMMON_POST_H */
|