Kconfig 908 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. if LANTIQ
  2. config SOC_TYPE_XWAY
  3. bool
  4. select PINCTRL_XWAY
  5. default n
  6. choice
  7. prompt "SoC Type"
  8. default SOC_XWAY
  9. config SOC_AMAZON_SE
  10. bool "Amazon SE"
  11. select SOC_TYPE_XWAY
  12. config SOC_XWAY
  13. bool "XWAY"
  14. select SOC_TYPE_XWAY
  15. select HW_HAS_PCI
  16. config SOC_FALCON
  17. bool "FALCON"
  18. select PINCTRL_FALCON
  19. endchoice
  20. choice
  21. prompt "Built-in device tree"
  22. help
  23. Legacy bootloaders do not pass a DTB pointer to the kernel, so
  24. if a "wrapper" is not being used, the kernel will need to include
  25. a device tree that matches the target board.
  26. The builtin DTB will only be used if the firmware does not supply
  27. a valid DTB.
  28. config LANTIQ_DT_NONE
  29. bool "None"
  30. config DT_EASY50712
  31. bool "Easy50712"
  32. depends on SOC_XWAY
  33. select BUILTIN_DTB
  34. endchoice
  35. config PCI_LANTIQ
  36. bool "PCI Support"
  37. depends on SOC_XWAY && PCI
  38. config XRX200_PHY_FW
  39. bool "XRX200 PHY firmware loader"
  40. depends on SOC_XWAY
  41. endif