Kconfig 1.7 KB

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