tec-ng.h 825 B

12345678910111213141516171819202122232425262728293031323334
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2013
  4. * Avionic Design GmbH <www.avionic-design.de>
  5. */
  6. #ifndef __CONFIG_H
  7. #define __CONFIG_H
  8. #include "tegra30-common.h"
  9. /* High-level configuration options */
  10. #define CONFIG_TEGRA_BOARD_STRING "Avionic Design Tamonten™ NG Evaluation Carrier"
  11. /* Board-specific serial config */
  12. #define CONFIG_TEGRA_ENABLE_UARTD
  13. #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
  14. /* Environment in eMMC, at the end of 2nd "boot sector" */
  15. #define CONFIG_SYS_MMC_ENV_DEV 0
  16. #define CONFIG_SYS_MMC_ENV_PART 2
  17. /* SPI */
  18. #define CONFIG_TEGRA_SLINK_CTRLS 6
  19. #define CONFIG_SPI_FLASH_SIZE (4 << 20)
  20. /* Tag support */
  21. #define CONFIG_CMDLINE_TAG
  22. #define CONFIG_SETUP_MEMORY_TAGS
  23. #define CONFIG_INITRD_TAG
  24. #include "tegra-common-post.h"
  25. #endif /* __CONFIG_H */