mt_ventoux.h 1021 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2011
  4. * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
  5. *
  6. *
  7. * Configuration settings for the Teejet mt_ventoux board.
  8. *
  9. * Copyright (C) 2009 TechNexion Ltd.
  10. */
  11. #ifndef __CONFIG_H
  12. #define __CONFIG_H
  13. #include "tam3517-common.h"
  14. #undef CONFIG_SYS_MALLOC_LEN
  15. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10) + \
  16. 6 * 1024 * 1024)
  17. #define CONFIG_MACH_TYPE MACH_TYPE_AM3517_MT_VENTOUX
  18. #define CONFIG_BOOTFILE "uImage"
  19. #define CONFIG_HOSTNAME "mt_ventoux"
  20. /*
  21. * Set its own mtdparts, different from common
  22. */
  23. /*
  24. * FPGA
  25. */
  26. #define CONFIG_SYS_FPGA_PROG_FEEDBACK
  27. #define CONFIG_SYS_FPGA_WAIT 10000
  28. #define CONFIG_MAX_FPGA_DEVICES 1
  29. #define CONFIG_FPGA_DELAY() udelay(1)
  30. #define CONFIG_SYS_FPGA_PROG_FEEDBACK
  31. #define CONFIG_SPLASH_SCREEN
  32. #define CONFIG_VIDEO_BMP_RLE8
  33. #define CONFIG_VIDEO_OMAP3 /* DSS Support */
  34. #define CONFIG_EXTRA_ENV_SETTINGS CONFIG_TAM3517_SETTINGS \
  35. "bootcmd=run net_nfs\0"
  36. #endif /* __CONFIG_H */