dv-bfin_dma.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* Blackfin Direct Memory Access (DMA) Channel model.
  2. Copyright (C) 2010-2022 Free Software Foundation, Inc.
  3. Contributed by Analog Devices, Inc.
  4. This file is part of simulators.
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  15. #ifndef DV_BFIN_DMA_H
  16. #define DV_BFIN_DMA_H
  17. /* DMA_CONFIG Masks */
  18. #define DMAEN 0x0001 /* DMA Channel Enable */
  19. #define WNR 0x0002 /* Channel Direction (W/R*) */
  20. #define WDSIZE_8 0x0000 /* Transfer Word Size = 8 */
  21. #define WDSIZE_16 0x0004 /* Transfer Word Size = 16 */
  22. #define WDSIZE_32 0x0008 /* Transfer Word Size = 32 */
  23. #define WDSIZE 0x000c /* Transfer Word Size */
  24. #define DMA2D 0x0010 /* DMA Mode (2D/1D*) */
  25. #define RESTART 0x0020 /* DMA Buffer Clear */
  26. #define DI_SEL 0x0040 /* Data Interrupt Timing Select */
  27. #define DI_EN 0x0080 /* Data Interrupt Enable */
  28. #define NDSIZE_0 0x0000 /* Next Descriptor Size = 0 (Stop/Autobuffer) */
  29. #define NDSIZE_1 0x0100 /* Next Descriptor Size = 1 */
  30. #define NDSIZE_2 0x0200 /* Next Descriptor Size = 2 */
  31. #define NDSIZE_3 0x0300 /* Next Descriptor Size = 3 */
  32. #define NDSIZE_4 0x0400 /* Next Descriptor Size = 4 */
  33. #define NDSIZE_5 0x0500 /* Next Descriptor Size = 5 */
  34. #define NDSIZE_6 0x0600 /* Next Descriptor Size = 6 */
  35. #define NDSIZE_7 0x0700 /* Next Descriptor Size = 7 */
  36. #define NDSIZE_8 0x0800 /* Next Descriptor Size = 8 */
  37. #define NDSIZE_9 0x0900 /* Next Descriptor Size = 9 */
  38. #define NDSIZE 0x0f00 /* Next Descriptor Size */
  39. #define NDSIZE_SHIFT 8
  40. #define DMAFLOW 0x7000 /* Flow Control */
  41. #define DMAFLOW_STOP 0x0000 /* Stop Mode */
  42. #define DMAFLOW_AUTO 0x1000 /* Autobuffer Mode */
  43. #define DMAFLOW_ARRAY 0x4000 /* Descriptor Array Mode */
  44. #define DMAFLOW_SMALL 0x6000 /* Small Model Descriptor List Mode */
  45. #define DMAFLOW_LARGE 0x7000 /* Large Model Descriptor List Mode */
  46. /* DMA_IRQ_STATUS Masks */
  47. #define DMA_DONE 0x0001 /* DMA Completion Interrupt Status */
  48. #define DMA_ERR 0x0002 /* DMA Error Interrupt Status */
  49. #define DFETCH 0x0004 /* DMA Descriptor Fetch Indicator */
  50. #define DMA_RUN 0x0008 /* DMA Channel Running Indicator */
  51. /* DMA_PERIPHERAL_MAP Masks */
  52. #define CTYPE (1 << 6)
  53. #endif