dalmore.h 754 B

1234567891011121314151617181920212223242526272829303132
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved.
  4. */
  5. #ifndef __CONFIG_H
  6. #define __CONFIG_H
  7. #include <linux/sizes.h>
  8. #include "tegra114-common.h"
  9. /* High-level configuration options */
  10. #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Dalmore"
  11. /* Board-specific serial config */
  12. #define CONFIG_TEGRA_ENABLE_UARTD
  13. #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
  14. #define CONFIG_MACH_TYPE MACH_TYPE_DALMORE
  15. /* Environment in eMMC, at the end of 2nd "boot sector" */
  16. #define CONFIG_SYS_MMC_ENV_DEV 0
  17. #define CONFIG_SYS_MMC_ENV_PART 2
  18. /* SPI */
  19. #define CONFIG_SPI_FLASH_SIZE (4 << 20)
  20. #include "tegra-common-usb-gadget.h"
  21. #include "tegra-common-post.h"
  22. #endif /* __CONFIG_H */