colibri_t30.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2013-2016 Stefan Agner
  4. *
  5. * Configuration settings for the Toradex Colibri T30 modules.
  6. */
  7. #ifndef __CONFIG_H
  8. #define __CONFIG_H
  9. #include <linux/sizes.h>
  10. #include "tegra30-common.h"
  11. /* High-level configuration options */
  12. /*
  13. * Board-specific serial config
  14. *
  15. * Colibri UART-A: NVIDIA UARTA
  16. * Colibri UART-B: NVIDIA UARTD
  17. * Colibri UART-C: NVIDIA UARTB
  18. */
  19. #define CONFIG_TEGRA_ENABLE_UARTA
  20. #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
  21. #define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_T30
  22. /* General networking support */
  23. #define CONFIG_TFTP_TSIZE
  24. /* Increase console I/O buffer size */
  25. #undef CONFIG_SYS_CBSIZE
  26. #define CONFIG_SYS_CBSIZE 1024
  27. /* Increase arguments buffer size */
  28. #undef CONFIG_SYS_BARGSIZE
  29. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  30. /* Increase maximum number of arguments */
  31. #undef CONFIG_SYS_MAXARGS
  32. #define CONFIG_SYS_MAXARGS 32
  33. #define UBOOT_UPDATE \
  34. "uboot_hwpart=1\0" \
  35. "uboot_blk=0\0" \
  36. "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
  37. "setexpr blkcnt ${blkcnt} / 0x200\0" \
  38. "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
  39. "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
  40. #define BOARD_EXTRA_ENV_SETTINGS \
  41. UBOOT_UPDATE
  42. #include "tegra-common-usb-gadget.h"
  43. #include "tegra-common-post.h"
  44. #endif /* __CONFIG_H */