Kconfig 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. menuconfig FSL_DPAA
  2. bool "Freescale DPAA 1.x support"
  3. depends on FSL_SOC_BOOKE
  4. select GENERIC_ALLOCATOR
  5. help
  6. The Freescale Data Path Acceleration Architecture (DPAA) is a set of
  7. hardware components on specific QorIQ multicore processors.
  8. This architecture provides the infrastructure to support simplified
  9. sharing of networking interfaces and accelerators by multiple CPUs.
  10. The major h/w blocks composing DPAA are BMan and QMan.
  11. The Buffer Manager (BMan) is a hardware buffer pool management block
  12. that allows software and accelerators on the datapath to acquire and
  13. release buffers in order to build frames.
  14. The Queue Manager (QMan) is a hardware queue management block
  15. that allows software and accelerators on the datapath to enqueue and
  16. dequeue frames in order to communicate.
  17. if FSL_DPAA
  18. config FSL_DPAA_CHECKING
  19. bool "Additional driver checking"
  20. help
  21. Compiles in additional checks, to sanity-check the drivers and
  22. any use of the exported API. Not recommended for performance.
  23. config FSL_BMAN_TEST
  24. tristate "BMan self-tests"
  25. help
  26. Compile the BMan self-test code. These tests will
  27. exercise the BMan APIs to confirm functionality
  28. of both the software drivers and hardware device.
  29. config FSL_BMAN_TEST_API
  30. bool "High-level API self-test"
  31. depends on FSL_BMAN_TEST
  32. default y
  33. help
  34. This requires the presence of cpu-affine portals, and performs
  35. high-level API testing with them (whichever portal(s) are affine
  36. to the cpu(s) the test executes on).
  37. config FSL_QMAN_TEST
  38. tristate "QMan self-tests"
  39. help
  40. Compile self-test code for QMan.
  41. config FSL_QMAN_TEST_API
  42. bool "QMan high-level self-test"
  43. depends on FSL_QMAN_TEST
  44. default y
  45. help
  46. This requires the presence of cpu-affine portals, and performs
  47. high-level API testing with them (whichever portal(s) are affine to
  48. the cpu(s) the test executes on).
  49. config FSL_QMAN_TEST_STASH
  50. bool "QMan 'hot potato' data-stashing self-test"
  51. depends on FSL_QMAN_TEST
  52. default y
  53. help
  54. This performs a "hot potato" style test enqueuing/dequeuing a frame
  55. across a series of FQs scheduled to different portals (and cpus), with
  56. DQRR, data and context stashing always on.
  57. endif # FSL_DPAA