eco5pk.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Copyright (C) 2012 8D Technologies inc.
  3. * Based on mt_ventoux.h, original banner below:
  4. *
  5. * Copyright (C) 2011
  6. * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
  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_USB_EHCI
  16. #undef CONFIG_USB_EHCI_OMAP
  17. #undef CONFIG_USB_OMAP3
  18. /* Our console port is port3 */
  19. #undef CONFIG_CONS_INDEX
  20. #undef CONFIG_SYS_NS16550_COM1
  21. #undef CONFIG_SERIAL1
  22. #define CONFIG_CONS_INDEX 3
  23. #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3
  24. #define CONFIG_SERIAL3
  25. #define MACH_TYPE_ECO5_PK 4017
  26. #define CONFIG_MACH_TYPE MACH_TYPE_ECO5_PK
  27. #define CONFIG_BOOTFILE "uImage"
  28. #define CONFIG_AUTO_COMPLETE
  29. /*
  30. * Set its own mtdparts, different from common
  31. */
  32. #undef MTDIDS_DEFAULT
  33. #undef MTDPARTS_DEFAULT
  34. #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
  35. #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:512k(xloader-nand)," \
  36. "1024k(uboot-nand),256k(params-nand)," \
  37. "5120k(kernel),-(ubifs)"
  38. /*
  39. * The arithmetic in tam3517.h is wrong for us and the kernel gets overwritten.
  40. */
  41. #undef CONFIG_ENV_OFFSET_REDUND
  42. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \
  43. CONFIG_SYS_ENV_SECT_SIZE)
  44. #define CONFIG_EXTRA_ENV_SETTINGS CONFIG_TAM3517_SETTINGS \
  45. "install_kernel=if dhcp $bootfile; then nand erase kernel;" \
  46. "nand write $fileaddr kernel; fi\0" \
  47. "mtdparts="MTDPARTS_DEFAULT"\0" \
  48. "serverip=192.168.142.60\0"
  49. #endif /* __CONFIG_H */