tec-ng.h 756 B

1234567891011121314151617181920212223242526272829303132
  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. /* SPI */
  16. #define CONFIG_TEGRA_SLINK_CTRLS 6
  17. #define CONFIG_SPI_FLASH_SIZE (4 << 20)
  18. /* Tag support */
  19. #define CONFIG_CMDLINE_TAG
  20. #define CONFIG_SETUP_MEMORY_TAGS
  21. #define CONFIG_INITRD_TAG
  22. #include "tegra-common-post.h"
  23. #endif /* __CONFIG_H */