Kconfig 865 B

123456789101112131415161718192021222324252627282930313233
  1. # Support direct access to TILE-Gx hardware from user space, via the
  2. # gxio library, or from kernel space, via kernel IORPC support.
  3. config TILE_GXIO
  4. bool
  5. depends on TILEGX
  6. # Support direct access to the common I/O DMA facility within the
  7. # TILE-Gx mPIPE and Trio hardware from kernel space.
  8. config TILE_GXIO_DMA
  9. bool
  10. select TILE_GXIO
  11. # Support direct access to the TILE-Gx mPIPE hardware from kernel space.
  12. config TILE_GXIO_MPIPE
  13. bool
  14. select TILE_GXIO
  15. select TILE_GXIO_DMA
  16. # Support direct access to the TILE-Gx TRIO hardware from kernel space.
  17. config TILE_GXIO_TRIO
  18. bool
  19. select TILE_GXIO
  20. select TILE_GXIO_DMA
  21. # Support direct access to the TILE-Gx USB hardware from kernel space.
  22. config TILE_GXIO_USB_HOST
  23. bool
  24. select TILE_GXIO
  25. # Support direct access to the TILE-Gx UART hardware from kernel space.
  26. config TILE_GXIO_UART
  27. bool
  28. select TILE_GXIO