Kconfig 1.9 KB

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