Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 boards"
  5. default y
  6. help
  7. Add an FDT blob for XLP EVP 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 DT_XLP_SVP
  12. bool "Built-in device tree for XLP SVP boards"
  13. default y
  14. help
  15. Add an FDT blob for XLP VP boards into the kernel.
  16. This DTB will be used if the firmware does not pass in a DTB
  17. pointer to the kernel. The corresponding DTS file is at
  18. arch/mips/netlogic/dts/xlp_svp.dts
  19. config NLM_MULTINODE
  20. bool "Support for multi-chip boards"
  21. depends on NLM_XLP_BOARD
  22. default n
  23. help
  24. Add support for boards with 2 or 4 XLPs connected over ICI.
  25. if NLM_MULTINODE
  26. choice
  27. prompt "Number of XLPs on the board"
  28. default NLM_MULTINODE_2
  29. help
  30. In the multi-node case, specify the number of SoCs on the board.
  31. config NLM_MULTINODE_2
  32. bool "Dual-XLP board"
  33. help
  34. Support boards with upto two XLPs connected over ICI.
  35. config NLM_MULTINODE_4
  36. bool "Quad-XLP board"
  37. help
  38. Support boards with upto four XLPs connected over ICI.
  39. endchoice
  40. endif
  41. endif
  42. config NLM_COMMON
  43. bool
  44. config IOMMU_HELPER
  45. bool
  46. config NEED_SG_DMA_LENGTH
  47. bool
  48. config SWIOTLB
  49. def_bool y
  50. select NEED_SG_DMA_LENGTH
  51. select IOMMU_HELPER
  52. endif