Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # SPDX-License-Identifier: GPL-2.0
  2. if MIPS_GENERIC
  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 "FIT/UHI Boards"
  26. config FIT_IMAGE_FDT_BOSTON
  27. bool "Include FDT for MIPS Boston boards"
  28. help
  29. Enable this to include the FDT for the MIPS Boston development board
  30. from Imagination Technologies in the FIT kernel image. You should
  31. enable this if you wish to boot on a MIPS Boston board, as it is
  32. expected by the bootloader.
  33. config FIT_IMAGE_FDT_NI169445
  34. bool "Include FDT for NI 169445"
  35. help
  36. Enable this to include the FDT for the 169445 platform from
  37. National Instruments in the FIT kernel image.
  38. config FIT_IMAGE_FDT_XILFPGA
  39. bool "Include FDT for Xilfpga"
  40. help
  41. Enable this to include the FDT for the MIPSfpga platform
  42. from Imagination Technologies in the FIT kernel image.
  43. config VIRT_BOARD_RANCHU
  44. bool "Support Ranchu platform for Android emulator"
  45. help
  46. This enables support for the platform used by Android emulator.
  47. Ranchu platform consists of a set of virtual devices. This platform
  48. enables emulation of variety of virtual configurations while using
  49. Android emulator. Android emulator is based on Qemu, and contains
  50. the support for the same set of virtual devices.
  51. endif