Kconfig 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. # SPDX-License-Identifier: GPL-2.0
  2. if NLM_XLP_BOARD || NLM_XLR_BOARD
  3. if NLM_XLP_BOARD
  4. config DT_XLP_EVP
  5. bool "Built-in device tree for XLP EVP boards"
  6. default y
  7. select BUILTIN_DTB
  8. help
  9. Add an FDT blob for XLP EVP boards into the kernel.
  10. This DTB will be used if the firmware does not pass in a DTB
  11. pointer to the kernel. The corresponding DTS file is at
  12. arch/mips/netlogic/dts/xlp_evp.dts
  13. config DT_XLP_SVP
  14. bool "Built-in device tree for XLP SVP boards"
  15. default y
  16. select BUILTIN_DTB
  17. help
  18. Add an FDT blob for XLP VP boards into the kernel.
  19. This DTB will be used if the firmware does not pass in a DTB
  20. pointer to the kernel. The corresponding DTS file is at
  21. arch/mips/netlogic/dts/xlp_svp.dts
  22. config DT_XLP_FVP
  23. bool "Built-in device tree for XLP FVP boards"
  24. default y
  25. select BUILTIN_DTB
  26. help
  27. Add an FDT blob for XLP FVP board into the kernel.
  28. This DTB will be used if the firmware does not pass in a DTB
  29. pointer to the kernel. The corresponding DTS file is at
  30. arch/mips/netlogic/dts/xlp_fvp.dts
  31. config DT_XLP_GVP
  32. bool "Built-in device tree for XLP GVP boards"
  33. default y
  34. select BUILTIN_DTB
  35. help
  36. Add an FDT blob for XLP GVP board into the kernel.
  37. This DTB will be used if the firmware does not pass in a DTB
  38. pointer to the kernel. The corresponding DTS file is at
  39. arch/mips/netlogic/dts/xlp_gvp.dts
  40. config DT_XLP_RVP
  41. bool "Built-in device tree for XLP RVP boards"
  42. default y
  43. help
  44. Add an FDT blob for XLP RVP board into the kernel.
  45. This DTB will be used if the firmware does not pass in a DTB
  46. pointer to the kernel. The corresponding DTS file is at
  47. arch/mips/netlogic/dts/xlp_rvp.dts
  48. config NLM_MULTINODE
  49. bool "Support for multi-chip boards"
  50. depends on NLM_XLP_BOARD
  51. default n
  52. help
  53. Add support for boards with 2 or 4 XLPs connected over ICI.
  54. if NLM_MULTINODE
  55. choice
  56. prompt "Number of XLPs on the board"
  57. default NLM_MULTINODE_2
  58. help
  59. In the multi-node case, specify the number of SoCs on the board.
  60. config NLM_MULTINODE_2
  61. bool "Dual-XLP board"
  62. help
  63. Support boards with upto two XLPs connected over ICI.
  64. config NLM_MULTINODE_4
  65. bool "Quad-XLP board"
  66. help
  67. Support boards with upto four XLPs connected over ICI.
  68. endchoice
  69. endif
  70. endif
  71. config NLM_COMMON
  72. bool
  73. endif