Kconfig 983 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. if NLM_XLP_BOARD || NLM_XLR_BOARD
  2. if NLM_XLP_BOARD
  3. config DT_XLP_EVP
  4. bool "Built-in device tree for XLP EVP/SVP boards"
  5. default y
  6. help
  7. Add an FDT blob for XLP EVP and SVP boards into the kernel.
  8. This DTB will be used if the firmware does not pass in a DTB
  9. pointer to the kernel. The corresponding DTS file is at
  10. arch/mips/netlogic/dts/xlp_evp.dts
  11. config NLM_MULTINODE
  12. bool "Support for multi-chip boards"
  13. depends on NLM_XLP_BOARD
  14. default n
  15. help
  16. Add support for boards with 2 or 4 XLPs connected over ICI.
  17. if NLM_MULTINODE
  18. choice
  19. prompt "Number of XLPs on the board"
  20. default NLM_MULTINODE_2
  21. help
  22. In the multi-node case, specify the number of SoCs on the board.
  23. config NLM_MULTINODE_2
  24. bool "Dual-XLP board"
  25. help
  26. Support boards with upto two XLPs connected over ICI.
  27. config NLM_MULTINODE_4
  28. bool "Quad-XLP board"
  29. help
  30. Support boards with upto four XLPs connected over ICI.
  31. endchoice
  32. endif
  33. endif
  34. config NLM_COMMON
  35. bool
  36. endif