dma.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. #include <xtensa/config/core.h>
  14. /*
  15. * This is only to be defined if we have PC-like DMA.
  16. * By default this is not true on an Xtensa processor,
  17. * however on boards with a PCI bus, such functionality
  18. * might be emulated externally.
  19. *
  20. * NOTE: there still exists driver code that assumes
  21. * this is defined, eg. drivers/sound/soundcard.c (as of 2.4).
  22. */
  23. #define MAX_DMA_CHANNELS 8
  24. /*
  25. * The maximum virtual address to which DMA transfers
  26. * can be performed on this platform.
  27. *
  28. * NOTE: This is board (platform) specific, not processor-specific!
  29. *
  30. * NOTE: This assumes DMA transfers can only be performed on
  31. * the section of physical memory contiguously mapped in virtual
  32. * space for the kernel. For the Xtensa architecture, this
  33. * means the maximum possible size of this DMA area is
  34. * the size of the statically mapped kernel segment
  35. * (XCHAL_KSEG_{CACHED,BYPASS}_SIZE), ie. 128 MB.
  36. *
  37. * NOTE: When the entire KSEG area is DMA capable, we substract
  38. * one from the max address so that the virt_to_phys() macro
  39. * works correctly on the address (otherwise the address
  40. * enters another area, and virt_to_phys() may not return
  41. * the value desired).
  42. */
  43. #define MAX_DMA_ADDRESS (PAGE_OFFSET + XCHAL_KSEG_CACHED_SIZE - 1)
  44. /* Reserve and release a DMA channel */
  45. extern int request_dma(unsigned int dmanr, const char * device_id);
  46. extern void free_dma(unsigned int dmanr);
  47. #ifdef CONFIG_PCI
  48. extern int isa_dma_bridge_buggy;
  49. #else
  50. #define isa_dma_bridge_buggy (0)
  51. #endif
  52. #endif