dma.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * include/asm-xtensa/dma.h
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. *
  8. * Copyright (C) 2003 - 2005 Tensilica Inc.
  9. */
  10. #ifndef _XTENSA_DMA_H
  11. #define _XTENSA_DMA_H
  12. #include <asm/io.h> /* need byte IO */
  13. /*
  14. * This is only to be defined if we have PC-like DMA.
  15. * By default this is not true on an Xtensa processor,
  16. * however on boards with a PCI bus, such functionality
  17. * might be emulated externally.
  18. *
  19. * NOTE: there still exists driver code that assumes
  20. * this is defined, eg. drivers/sound/soundcard.c (as of 2.4).
  21. */
  22. #define MAX_DMA_CHANNELS 8
  23. /*
  24. * The maximum virtual address to which DMA transfers
  25. * can be performed on this platform.
  26. *
  27. * NOTE: This is board (platform) specific, not processor-specific!
  28. *
  29. * NOTE: This assumes DMA transfers can only be performed on
  30. * the section of physical memory contiguously mapped in virtual
  31. * space for the kernel. For the Xtensa architecture, this
  32. * means the maximum possible size of this DMA area is
  33. * the size of the statically mapped kernel segment
  34. * (XCHAL_KSEG_{CACHED,BYPASS}_SIZE), ie. 128 MB.
  35. *
  36. * NOTE: When the entire KSEG area is DMA capable, we subtract
  37. * one from the max address so that the virt_to_phys() macro
  38. * works correctly on the address (otherwise the address
  39. * enters another area, and virt_to_phys() may not return
  40. * the value desired).
  41. */
  42. #ifndef MAX_DMA_ADDRESS
  43. #define MAX_DMA_ADDRESS (PAGE_OFFSET + XCHAL_KIO_SIZE - 1)
  44. #endif
  45. /* Reserve and release a DMA channel */
  46. extern int request_dma(unsigned int dmanr, const char * device_id);
  47. extern void free_dma(unsigned int dmanr);
  48. #ifdef CONFIG_PCI
  49. extern int isa_dma_bridge_buggy;
  50. #else
  51. #define isa_dma_bridge_buggy (0)
  52. #endif
  53. #endif