Kconfig 777 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. if TARGET_APALIS_TK1
  2. config SYS_BOARD
  3. default "apalis-tk1"
  4. config SYS_VENDOR
  5. default "toradex"
  6. config SYS_CONFIG_NAME
  7. default "apalis-tk1"
  8. config TDX_CFG_BLOCK
  9. default y
  10. config TDX_HAVE_MMC
  11. default y
  12. config TDX_CFG_BLOCK_DEV
  13. default "0"
  14. config TDX_CFG_BLOCK_PART
  15. default "1"
  16. # Toradex config block in eMMC, at the end of 1st "boot sector"
  17. config TDX_CFG_BLOCK_OFFSET
  18. default "-512"
  19. config APALIS_TK1_PCIE_EVALBOARD_INIT
  20. bool "Apalis Evaluation Board PCIe Initialisation"
  21. help
  22. Bring up the Apalis PCIe port with the PCIe switch as found on the
  23. Apalis Evaluation board. Note that by default the PCIe port is also
  24. left disabled in the device tree which needs changing as well for this
  25. to actually work.
  26. source "board/toradex/common/Kconfig"
  27. endif