Kconfig 896 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. if RALINK
  2. config CLKEVT_RT3352
  3. bool
  4. depends on SOC_RT305X || SOC_MT7620
  5. default y
  6. select CLKSRC_OF
  7. select CLKSRC_MMIO
  8. choice
  9. prompt "Ralink SoC selection"
  10. default SOC_RT305X
  11. help
  12. Select Ralink MIPS SoC type.
  13. config SOC_RT288X
  14. bool "RT288x"
  15. select MIPS_L1_CACHE_SHIFT_4
  16. config SOC_RT305X
  17. bool "RT305x"
  18. select USB_ARCH_HAS_HCD
  19. config SOC_RT3883
  20. bool "RT3883"
  21. select HW_HAS_PCI
  22. config SOC_MT7620
  23. bool "MT7620"
  24. endchoice
  25. choice
  26. prompt "Devicetree selection"
  27. default DTB_RT_NONE
  28. help
  29. Select the devicetree.
  30. config DTB_RT_NONE
  31. bool "None"
  32. config DTB_RT2880_EVAL
  33. bool "RT2880 eval kit"
  34. depends on SOC_RT288X
  35. config DTB_RT305X_EVAL
  36. bool "RT305x eval kit"
  37. depends on SOC_RT305X
  38. config DTB_RT3883_EVAL
  39. bool "RT3883 eval kit"
  40. depends on SOC_RT3883
  41. config DTB_MT7620A_EVAL
  42. bool "MT7620A eval kit"
  43. depends on SOC_MT7620
  44. endchoice
  45. endif