ventana.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * (C) Copyright 2010,2011
  3. * NVIDIA Corporation <www.nvidia.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef __CONFIG_H
  8. #define __CONFIG_H
  9. #include <linux/sizes.h>
  10. #include "tegra20-common.h"
  11. /* High-level configuration options */
  12. #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Ventana"
  13. /* Board-specific serial config */
  14. #define CONFIG_TEGRA_ENABLE_UARTD
  15. #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
  16. #define CONFIG_MACH_TYPE MACH_TYPE_VENTANA
  17. /* SD/MMC */
  18. #define CONFIG_GENERIC_MMC
  19. #define CONFIG_TEGRA_MMC
  20. /* Environment in eMMC, at the end of 2nd "boot sector" */
  21. #define CONFIG_ENV_IS_IN_MMC
  22. #define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE)
  23. #define CONFIG_SYS_MMC_ENV_DEV 0
  24. #define CONFIG_SYS_MMC_ENV_PART 2
  25. /* USB Host support */
  26. #define CONFIG_USB_EHCI
  27. #define CONFIG_USB_EHCI_TEGRA
  28. /* USB networking support */
  29. #define CONFIG_USB_HOST_ETHER
  30. #define CONFIG_USB_ETHER_ASIX
  31. /* General networking support */
  32. /* USB keyboard */
  33. /* LCD support */
  34. #define CONFIG_SYS_WHITE_ON_BLACK
  35. #include "tegra-common-post.h"
  36. #endif /* __CONFIG_H */