mt_ventoux.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright (C) 2011
  3. * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
  4. *
  5. *
  6. * Configuration settings for the Teejet mt_ventoux board.
  7. *
  8. * Copyright (C) 2009 TechNexion Ltd.
  9. *
  10. * SPDX-License-Identifier: GPL-2.0+
  11. */
  12. #ifndef __CONFIG_H
  13. #define __CONFIG_H
  14. #include "tam3517-common.h"
  15. #undef CONFIG_SYS_MALLOC_LEN
  16. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10) + \
  17. 6 * 1024 * 1024)
  18. #define MACH_TYPE_AM3517_MT_VENTOUX 3832
  19. #define CONFIG_MACH_TYPE MACH_TYPE_AM3517_MT_VENTOUX
  20. #define CONFIG_BOOTFILE "uImage"
  21. #define CONFIG_AUTO_COMPLETE
  22. #define CONFIG_OMAP3_GPIO_4
  23. #define CONFIG_HOSTNAME mt_ventoux
  24. /*
  25. * Set its own mtdparts, different from common
  26. */
  27. #undef MTDIDS_DEFAULT
  28. #undef MTDPARTS_DEFAULT
  29. #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
  30. #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:512k(MLO)," \
  31. "1m(u-boot),256k(env1)," \
  32. "256k(env2),8m(ubisystem),-(rootfs)"
  33. /*
  34. * FPGA
  35. */
  36. #define CONFIG_CMD_FPGA_LOADMK
  37. #define CONFIG_FPGA
  38. #define CONFIG_FPGA_XILINX
  39. #define CONFIG_FPGA_SPARTAN3
  40. #define CONFIG_SYS_FPGA_PROG_FEEDBACK
  41. #define CONFIG_SYS_FPGA_WAIT 10000
  42. #define CONFIG_MAX_FPGA_DEVICES 1
  43. #define CONFIG_FPGA_DELAY() udelay(1)
  44. #define CONFIG_SYS_FPGA_PROG_FEEDBACK
  45. #define CONFIG_SPLASH_SCREEN
  46. #define CONFIG_VIDEO_BMP_RLE8
  47. #define CONFIG_CMD_BMP
  48. #define CONFIG_VIDEO_OMAP3 /* DSS Support */
  49. #define CONFIG_EXTRA_ENV_SETTINGS CONFIG_TAM3517_SETTINGS \
  50. "bootcmd=run net_nfs\0"
  51. #endif /* __CONFIG_H */