Kconfig 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 "MSCC Ocelot doesn't work with SEAD3 enabled"
  26. depends on LEGACY_BOARD_SEAD3
  27. config LEGACY_BOARD_OCELOT
  28. bool "Support MSCC Ocelot boards"
  29. depends on LEGACY_BOARD_SEAD3=n
  30. select LEGACY_BOARDS
  31. select MSCC_OCELOT
  32. select SYS_HAS_EARLY_PRINTK
  33. select USE_GENERIC_EARLY_PRINTK_8250
  34. config MSCC_OCELOT
  35. bool
  36. select GPIOLIB
  37. select MSCC_OCELOT_IRQ
  38. comment "FIT/UHI Boards"
  39. config FIT_IMAGE_FDT_BOSTON
  40. bool "Include FDT for MIPS Boston boards"
  41. help
  42. Enable this to include the FDT for the MIPS Boston development board
  43. from Imagination Technologies in the FIT kernel image. You should
  44. enable this if you wish to boot on a MIPS Boston board, as it is
  45. expected by the bootloader.
  46. config FIT_IMAGE_FDT_NI169445
  47. bool "Include FDT for NI 169445"
  48. help
  49. Enable this to include the FDT for the 169445 platform from
  50. National Instruments in the FIT kernel image.
  51. config FIT_IMAGE_FDT_XILFPGA
  52. bool "Include FDT for Xilfpga"
  53. help
  54. Enable this to include the FDT for the MIPSfpga platform
  55. from Imagination Technologies in the FIT kernel image.
  56. config FIT_IMAGE_FDT_OCELOT_PCB123
  57. bool "Include FDT for Microsemi Ocelot PCB123"
  58. select MSCC_OCELOT
  59. help
  60. Enable this to include the FDT for the Ocelot PCB123 platform
  61. from Microsemi in the FIT kernel image.
  62. This requires u-boot on the platform.
  63. config VIRT_BOARD_RANCHU
  64. bool "Support Ranchu platform for Android emulator"
  65. help
  66. This enables support for the platform used by Android emulator.
  67. Ranchu platform consists of a set of virtual devices. This platform
  68. enables emulation of variety of virtual configurations while using
  69. Android emulator. Android emulator is based on Qemu, and contains
  70. the support for the same set of virtual devices.
  71. endif