Kconfig 1015 B

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