Kconfig 980 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. select BUILTIN_DTB
  36. config DTB_RT305X_EVAL
  37. bool "RT305x eval kit"
  38. depends on SOC_RT305X
  39. select BUILTIN_DTB
  40. config DTB_RT3883_EVAL
  41. bool "RT3883 eval kit"
  42. depends on SOC_RT3883
  43. select BUILTIN_DTB
  44. config DTB_MT7620A_EVAL
  45. bool "MT7620A eval kit"
  46. depends on SOC_MT7620
  47. select BUILTIN_DTB
  48. endchoice
  49. endif