ventana.h 652 B

12345678910111213141516171819202122232425262728
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2010,2011
  4. * NVIDIA Corporation <www.nvidia.com>
  5. */
  6. #ifndef __CONFIG_H
  7. #define __CONFIG_H
  8. #include <linux/sizes.h>
  9. #include "tegra20-common.h"
  10. /* High-level configuration options */
  11. #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Ventana"
  12. /* Board-specific serial config */
  13. #define CONFIG_TEGRA_ENABLE_UARTD
  14. #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
  15. #define CONFIG_MACH_TYPE MACH_TYPE_VENTANA
  16. /* Environment in eMMC, at the end of 2nd "boot sector" */
  17. #define CONFIG_SYS_MMC_ENV_DEV 0
  18. #define CONFIG_SYS_MMC_ENV_PART 2
  19. #include "tegra-common-post.h"
  20. #endif /* __CONFIG_H */