Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. config RALINK_ILL_ACC
  9. bool
  10. depends on SOC_RT305X
  11. default y
  12. choice
  13. prompt "Ralink SoC selection"
  14. default SOC_RT305X
  15. help
  16. Select Ralink MIPS SoC type.
  17. config SOC_RT288X
  18. bool "RT288x"
  19. select MIPS_L1_CACHE_SHIFT_4
  20. config SOC_RT305X
  21. bool "RT305x"
  22. select USB_ARCH_HAS_HCD
  23. config SOC_RT3883
  24. bool "RT3883"
  25. select HW_HAS_PCI
  26. config SOC_MT7620
  27. bool "MT7620"
  28. endchoice
  29. choice
  30. prompt "Devicetree selection"
  31. default DTB_RT_NONE
  32. help
  33. Select the devicetree.
  34. config DTB_RT_NONE
  35. bool "None"
  36. config DTB_RT2880_EVAL
  37. bool "RT2880 eval kit"
  38. depends on SOC_RT288X
  39. select BUILTIN_DTB
  40. config DTB_RT305X_EVAL
  41. bool "RT305x eval kit"
  42. depends on SOC_RT305X
  43. select BUILTIN_DTB
  44. config DTB_RT3883_EVAL
  45. bool "RT3883 eval kit"
  46. depends on SOC_RT3883
  47. select BUILTIN_DTB
  48. config DTB_MT7620A_EVAL
  49. bool "MT7620A eval kit"
  50. depends on SOC_MT7620
  51. select BUILTIN_DTB
  52. endchoice
  53. endif