Kconfig 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. # SPDX-License-Identifier: GPL-2.0
  2. if MIPS_GENERIC_KERNEL
  3. config LEGACY_BOARDS
  4. bool
  5. help
  6. Select this from your board if the board must use a legacy, non-UHI,
  7. boot protocol. This will cause the kernel to scan through the list of
  8. supported machines calling their detect functions in turn if the
  9. kernel is booted without being provided with an FDT via the UHI
  10. boot protocol.
  11. config YAMON_DT_SHIM
  12. bool
  13. help
  14. Select this from your board if the board uses the YAMON bootloader
  15. and you wish to include code which helps translate various
  16. YAMON-provided environment variables into a device tree properties.
  17. comment "Legacy (non-UHI/non-FIT) Boards"
  18. config LEGACY_BOARD_SEAD3
  19. bool "Support MIPS SEAD-3 boards"
  20. select LEGACY_BOARDS
  21. select YAMON_DT_SHIM
  22. help
  23. Enable this to include support for booting on MIPS SEAD-3 FPGA-based
  24. development boards, which boot using a legacy boot protocol.
  25. comment "MSCC Ocelot doesn't work with SEAD3 enabled"
  26. depends on LEGACY_BOARD_SEAD3
  27. config LEGACY_BOARD_OCELOT
  28. bool "Legacy support for Ocelot based boards"
  29. depends on LEGACY_BOARD_SEAD3=n
  30. select LEGACY_BOARDS
  31. select SOC_VCOREIII
  32. select SYS_HAS_EARLY_PRINTK
  33. select USE_GENERIC_EARLY_PRINTK_8250
  34. config SOC_VCOREIII
  35. bool
  36. select GPIOLIB
  37. select MSCC_OCELOT_IRQ
  38. select MSCC_OCELOT #will be removed when driver no more use it
  39. #Will be removed when the driver using it will be converted to SOC_VCOREIII
  40. config MSCC_OCELOT
  41. bool
  42. comment "FIT/UHI Boards"
  43. config FIT_IMAGE_FDT_BOSTON
  44. bool "Include FDT for MIPS Boston boards"
  45. help
  46. Enable this to include the FDT for the MIPS Boston development board
  47. from Imagination Technologies in the FIT kernel image. You should
  48. enable this if you wish to boot on a MIPS Boston board, as it is
  49. expected by the bootloader.
  50. config FIT_IMAGE_FDT_MARDUK
  51. bool "Include FDT for IMG Pistachio Marduk (CI40) boards"
  52. help
  53. Enable this to include the FDT for the IMG Pistachio Marduk (CI40)
  54. from Imagination Technologies in the FIT kernel image.
  55. config FIT_IMAGE_FDT_NI169445
  56. bool "Include FDT for NI 169445"
  57. help
  58. Enable this to include the FDT for the 169445 platform from
  59. National Instruments in the FIT kernel image.
  60. config FIT_IMAGE_FDT_XILFPGA
  61. bool "Include FDT for Xilfpga"
  62. help
  63. Enable this to include the FDT for the MIPSfpga platform
  64. from Imagination Technologies in the FIT kernel image.
  65. config FIT_IMAGE_FDT_OCELOT
  66. bool "Include FDT for Microsemi Ocelot development platforms"
  67. select SOC_VCOREIII
  68. help
  69. Enable this to include the FDT for the Ocelot development platforms
  70. from Microsemi in the FIT kernel image.
  71. This requires u-boot on the platform.
  72. config FIT_IMAGE_FDT_LUTON
  73. bool "Include FDT for Microsemi Luton development platforms"
  74. select SOC_VCOREIII
  75. help
  76. Enable this to include the FDT for the Luton development platforms
  77. from Microsemi in the FIT kernel image.
  78. This requires u-boot on the platform.
  79. config FIT_IMAGE_FDT_JAGUAR2
  80. bool "Include FDT for Microsemi Jaguar2 development platforms"
  81. select SOC_VCOREIII
  82. help
  83. Enable this to include the FDT for the Jaguar2 development platforms
  84. from Microsemi in the FIT kernel image.
  85. This requires u-boot on the platform.
  86. config FIT_IMAGE_FDT_SERVAL
  87. bool "Include FDT for Microsemi Serval development platforms"
  88. select SOC_VCOREIII
  89. help
  90. Enable this to include the FDT for the Serval development platforms
  91. from Microsemi in the FIT kernel image.
  92. This requires u-boot on the platform.
  93. config BOARD_INGENIC
  94. bool "Support boards based on Ingenic SoCs"
  95. select MACH_INGENIC_GENERIC
  96. help
  97. Enable support for boards based on Ingenic SoCs.
  98. config VIRT_BOARD_RANCHU
  99. bool "Support Ranchu platform for Android emulator"
  100. help
  101. This enables support for the platform used by Android emulator.
  102. Ranchu platform consists of a set of virtual devices. This platform
  103. enables emulation of variety of virtual configurations while using
  104. Android emulator. Android emulator is based on Qemu, and contains
  105. the support for the same set of virtual devices.
  106. endif