apalis_t30.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2014-2016 Marcel Ziswiler
  4. *
  5. * Configuration settings for the Toradex Apalis T30 modules.
  6. */
  7. #ifndef __CONFIG_H
  8. #define __CONFIG_H
  9. #include <linux/sizes.h>
  10. #include "tegra30-common.h"
  11. /* Board-specific serial config */
  12. #define CONFIG_TEGRA_ENABLE_UARTA
  13. #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
  14. #define CONFIG_MACH_TYPE MACH_TYPE_APALIS_T30
  15. /* Environment in eMMC, before config block at the end of 1st "boot sector" */
  16. #define CONFIG_SYS_MMC_ENV_DEV 0
  17. #define CONFIG_SYS_MMC_ENV_PART 1
  18. /* PCI networking support */
  19. #define CONFIG_E1000_NO_NVM
  20. /* General networking support */
  21. #define CONFIG_TFTP_TSIZE
  22. /* Increase console I/O buffer size */
  23. #undef CONFIG_SYS_CBSIZE
  24. #define CONFIG_SYS_CBSIZE 1024
  25. /* Increase arguments buffer size */
  26. #undef CONFIG_SYS_BARGSIZE
  27. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  28. /* Increase maximum number of arguments */
  29. #undef CONFIG_SYS_MAXARGS
  30. #define CONFIG_SYS_MAXARGS 32
  31. #define UBOOT_UPDATE \
  32. "uboot_hwpart=1\0" \
  33. "uboot_blk=0\0" \
  34. "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
  35. "setexpr blkcnt ${blkcnt} / 0x200\0" \
  36. "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
  37. "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
  38. #define BOARD_EXTRA_ENV_SETTINGS \
  39. UBOOT_UPDATE
  40. #include "tegra-common-usb-gadget.h"
  41. #include "tegra-common-post.h"
  42. #endif /* __CONFIG_H */