Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. config IRQ_INTC
  13. bool
  14. default y
  15. depends on !SOC_MT7621
  16. choice
  17. prompt "Ralink SoC selection"
  18. default SOC_RT305X
  19. help
  20. Select Ralink MIPS SoC type.
  21. config SOC_RT288X
  22. bool "RT288x"
  23. select MIPS_L1_CACHE_SHIFT_4
  24. select HW_HAS_PCI
  25. config SOC_RT305X
  26. bool "RT305x"
  27. select USB_ARCH_HAS_HCD
  28. config SOC_RT3883
  29. bool "RT3883"
  30. select HW_HAS_PCI
  31. config SOC_MT7620
  32. bool "MT7620/8"
  33. select HW_HAS_PCI
  34. config SOC_MT7621
  35. bool "MT7621"
  36. select MIPS_CPU_SCACHE
  37. select SYS_SUPPORTS_MULTITHREADING
  38. select SYS_SUPPORTS_SMP
  39. select SYS_SUPPORTS_MIPS_CPS
  40. select MIPS_GIC
  41. select COMMON_CLK
  42. select CLKSRC_MIPS_GIC
  43. select HW_HAS_PCI
  44. endchoice
  45. choice
  46. prompt "Devicetree selection"
  47. default DTB_RT_NONE
  48. help
  49. Select the devicetree.
  50. config DTB_RT_NONE
  51. bool "None"
  52. config DTB_RT2880_EVAL
  53. bool "RT2880 eval kit"
  54. depends on SOC_RT288X
  55. select BUILTIN_DTB
  56. config DTB_RT305X_EVAL
  57. bool "RT305x eval kit"
  58. depends on SOC_RT305X
  59. select BUILTIN_DTB
  60. config DTB_RT3883_EVAL
  61. bool "RT3883 eval kit"
  62. depends on SOC_RT3883
  63. select BUILTIN_DTB
  64. config DTB_MT7620A_EVAL
  65. bool "MT7620A eval kit"
  66. depends on SOC_MT7620
  67. select BUILTIN_DTB
  68. endchoice
  69. endif