Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. menu "ClearFog configuration"
  2. depends on TARGET_CLEARFOG
  3. config TARGET_CLEARFOG_BASE
  4. bool "Use ClearFog Base static configuration"
  5. help
  6. Use the ClearFog Base as the static configuration instead of the
  7. default which uses the ClearFog Pro.
  8. Runtime board detection is always attempted and used if available. The
  9. static configuration is used as a fallback in cases where runtime
  10. detection is disabled, is not available in hardware, or otherwise fails.
  11. Only newer revisions of the ClearFog product line support runtime
  12. detection via additional EEPROM hardware. This option enables selecting
  13. the Base variant for older hardware revisions.
  14. config CLEARFOG_CON3_SATA
  15. bool "Use CON3 slot in SATA mode"
  16. help
  17. Use the CON3 port with SATA protocol instead of the default PCIe.
  18. The ClearFog port allows usage of either mSATA or miniPCIe
  19. modules, but the desired protocol must be configured at build
  20. time since it affects the SerDes topology layout.
  21. config CLEARFOG_CON2_SATA
  22. bool "Use CON2 slot in SATA mode"
  23. depends on !TARGET_CLEARFOG_BASE
  24. help
  25. Use the CON2 port with SATA protocol instead of the default PCIe.
  26. The ClearFog port allows usage of either mSATA or miniPCIe
  27. modules, but the desired protocol must be configured at build
  28. time since it affects the SerDes topology layout.
  29. config CLEARFOG_SFP_25GB
  30. bool "Enable 2.5 Gbps mode for SFP"
  31. help
  32. Set the SFP module connection to support 2.5 Gbps transfer speed for the
  33. SGMII connection (requires a supporting SFP). By default, transfer speed
  34. of 1.25 Gbps is used, suitable for a more common 1 Gbps SFP module.
  35. config ENV_SIZE
  36. hex "Environment Size"
  37. default 0x10000
  38. config ENV_OFFSET
  39. hex "Environment offset"
  40. default 0xF0000
  41. config ENV_SECT_SIZE
  42. hex "Environment Sector-Size"
  43. # Use SPI flash erase block size of 4 KiB
  44. default 0x1000 if MVEBU_SPL_BOOT_DEVICE_SPI || MVEBU_SPL_BOOT_DEVICE_SATA
  45. # Use optimistic 64 KiB erase block, will vary between actual media
  46. default 0x10000 if MVEBU_SPL_BOOT_DEVICE_MMC || MVEBU_SPL_BOOT_DEVICE_UART
  47. endmenu