Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. select HW_HAS_PCI
  21. config SOC_RT305X
  22. bool "RT305x"
  23. select USB_ARCH_HAS_HCD
  24. config SOC_RT3883
  25. bool "RT3883"
  26. select HW_HAS_PCI
  27. config SOC_MT7620
  28. bool "MT7620/8"
  29. endchoice
  30. choice
  31. prompt "Devicetree selection"
  32. default DTB_RT_NONE
  33. help
  34. Select the devicetree.
  35. config DTB_RT_NONE
  36. bool "None"
  37. config DTB_RT2880_EVAL
  38. bool "RT2880 eval kit"
  39. depends on SOC_RT288X
  40. select BUILTIN_DTB
  41. config DTB_RT305X_EVAL
  42. bool "RT305x eval kit"
  43. depends on SOC_RT305X
  44. select BUILTIN_DTB
  45. config DTB_RT3883_EVAL
  46. bool "RT3883 eval kit"
  47. depends on SOC_RT3883
  48. select BUILTIN_DTB
  49. config DTB_MT7620A_EVAL
  50. bool "MT7620A eval kit"
  51. depends on SOC_MT7620
  52. select BUILTIN_DTB
  53. endchoice
  54. endif