crs305-1g-4s.h 878 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2014 Stefan Roese <sr@denx.de>
  4. */
  5. #ifndef _CONFIG_CRS305_1G_4S_H
  6. #define _CONFIG_CRS305_1G_4S_H
  7. /*
  8. * High Level Configuration Options (easy to change)
  9. */
  10. #define CONFIG_SYS_BOOTM_LEN (64 * 1024 * 1024) /* 64 MB */
  11. #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage.cfg
  12. #define CONFIG_SYS_TCLK 200000000 /* 200MHz */
  13. /* USB/EHCI configuration */
  14. #define CONFIG_EHCI_IS_TDI
  15. /* Environment in SPI NOR flash */
  16. /* Keep device tree and initrd in lower memory so the kernel can access them */
  17. #define CONFIG_EXTRA_ENV_SETTINGS \
  18. "fdt_high=0x10000000\0" \
  19. "initrd_high=0x10000000\0"
  20. /*
  21. * mv-common.h should be defined after CMD configs since it used them
  22. * to enable certain macros
  23. */
  24. #include "mv-common.h"
  25. #undef CONFIG_SYS_MAXARGS
  26. #define CONFIG_SYS_MAXARGS 96
  27. #endif /* _CONFIG_CRS305_1G_4S_H */