Kconfig.acts 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # Actions DMA configuration options
  2. # Copyright (c) 2018 Justin Watson
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig DMA_ACTS
  5. bool "Actions acts DMA driver"
  6. help
  7. Enable support for the Actions Physical DMA controllers.
  8. if DMA_ACTS
  9. choice
  10. prompt "select Actions DMA driver"
  11. config VDMA_ACTS
  12. bool "Virtual DMA driver for acts"
  13. help
  14. Enable support for Virtual DMA for acts dma controllers.
  15. config PDMA_ACTS
  16. bool "Actions acts Physical DMA driver"
  17. help
  18. Enable support for the Actions Physical DMA controllers.
  19. endchoice
  20. config DMA_DBG_DUMP
  21. bool "DMA dbg dump cmd"
  22. depends on DMA_ACTS
  23. help
  24. DMA dbg dump cmd.
  25. config DMA_LCD_RESEVER_CHAN
  26. int "reserve chan for lcd"
  27. range 0 12
  28. default 12
  29. help
  30. reserve chan for lcd,set 0-9 valid chan,else not reserve for lcd, default not reserve
  31. config DMA_SPINAND_RESEVER_CHAN
  32. int "reserve chan for SPINAND"
  33. range 0 12
  34. default 12
  35. help
  36. reserve chan for spinand set 0-9 valid chan,else not reserve for lcd, default not reserve
  37. config DMA_SPINOR_RESEVER_CHAN
  38. int "reserve chan for SPINOR"
  39. range 0 12
  40. default 12
  41. help
  42. reserve chan for spinand set 0-9 valid chan,else not reserve for spinor, default not reserve
  43. endif