Kconfig 953 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. config SOC_RT305X
  16. bool "RT305x"
  17. select USB_ARCH_HAS_HCD
  18. select USB_ARCH_HAS_OHCI
  19. select USB_ARCH_HAS_EHCI
  20. config SOC_RT3883
  21. bool "RT3883"
  22. select USB_ARCH_HAS_OHCI
  23. select USB_ARCH_HAS_EHCI
  24. config SOC_MT7620
  25. bool "MT7620"
  26. endchoice
  27. choice
  28. prompt "Devicetree selection"
  29. default DTB_RT_NONE
  30. help
  31. Select the devicetree.
  32. config DTB_RT_NONE
  33. bool "None"
  34. config DTB_RT2880_EVAL
  35. bool "RT2880 eval kit"
  36. depends on SOC_RT288X
  37. config DTB_RT305X_EVAL
  38. bool "RT305x eval kit"
  39. depends on SOC_RT305X
  40. config DTB_RT3883_EVAL
  41. bool "RT3883 eval kit"
  42. depends on SOC_RT3883
  43. config DTB_MT7620A_EVAL
  44. bool "MT7620A eval kit"
  45. depends on SOC_MT7620
  46. endchoice
  47. endif