soc_dma.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * On-chip DMA controller framework.
  3. *
  4. * Copyright (C) 2008 Nokia Corporation
  5. * Written by Andrzej Zaborowski <andrew@openedhand.com>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 or
  10. * (at your option) version 3 of the License.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with this program; if not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #ifndef HW_SOC_DMA_H
  21. #define HW_SOC_DMA_H
  22. #include "exec/hwaddr.h"
  23. struct soc_dma_s;
  24. struct soc_dma_ch_s;
  25. typedef void (*soc_dma_io_t)(void *opaque, uint8_t *buf, int len);
  26. typedef void (*soc_dma_transfer_t)(struct soc_dma_ch_s *ch);
  27. enum soc_dma_port_type {
  28. soc_dma_port_mem,
  29. soc_dma_port_fifo,
  30. soc_dma_port_other,
  31. };
  32. enum soc_dma_access_type {
  33. soc_dma_access_const,
  34. soc_dma_access_linear,
  35. soc_dma_access_other,
  36. };
  37. struct soc_dma_ch_s {
  38. /* Private */
  39. struct soc_dma_s *dma;
  40. int num;
  41. QEMUTimer *timer;
  42. /* Set by soc_dma.c */
  43. int enable;
  44. int update;
  45. /* This should be set by dma->setup_fn(). */
  46. int bytes;
  47. /* Initialised by the DMA module, call soc_dma_ch_update after writing. */
  48. enum soc_dma_access_type type[2];
  49. hwaddr vaddr[2]; /* Updated by .transfer_fn(). */
  50. /* Private */
  51. void *paddr[2];
  52. soc_dma_io_t io_fn[2];
  53. void *io_opaque[2];
  54. int running;
  55. soc_dma_transfer_t transfer_fn;
  56. /* Set and used by the DMA module. */
  57. void *opaque;
  58. };
  59. struct soc_dma_s {
  60. /* Following fields are set by the SoC DMA module and can be used
  61. * by anybody. */
  62. uint64_t drqbmp; /* Is zeroed by soc_dma_reset() */
  63. qemu_irq *drq;
  64. void *opaque;
  65. int64_t freq;
  66. soc_dma_transfer_t transfer_fn;
  67. soc_dma_transfer_t setup_fn;
  68. /* Set by soc_dma_init() for use by the DMA module. */
  69. struct soc_dma_ch_s *ch;
  70. };
  71. /* Call to activate or stop a DMA channel. */
  72. void soc_dma_set_request(struct soc_dma_ch_s *ch, int level);
  73. /* Call after every write to one of the following fields and before
  74. * calling soc_dma_set_request(ch, 1):
  75. * ch->type[0...1],
  76. * ch->vaddr[0...1],
  77. * ch->paddr[0...1],
  78. * or after a soc_dma_port_add_fifo() or soc_dma_port_add_mem(). */
  79. void soc_dma_ch_update(struct soc_dma_ch_s *ch);
  80. /* The SoC should call this when the DMA module is being reset. */
  81. void soc_dma_reset(struct soc_dma_s *s);
  82. struct soc_dma_s *soc_dma_init(int n);
  83. void soc_dma_port_add_fifo(struct soc_dma_s *dma, hwaddr virt_base,
  84. soc_dma_io_t fn, void *opaque, int out);
  85. void soc_dma_port_add_mem(struct soc_dma_s *dma, uint8_t *phys_base,
  86. hwaddr virt_base, size_t size);
  87. static inline void soc_dma_port_add_fifo_in(struct soc_dma_s *dma,
  88. hwaddr virt_base, soc_dma_io_t fn, void *opaque)
  89. {
  90. return soc_dma_port_add_fifo(dma, virt_base, fn, opaque, 0);
  91. }
  92. static inline void soc_dma_port_add_fifo_out(struct soc_dma_s *dma,
  93. hwaddr virt_base, soc_dma_io_t fn, void *opaque)
  94. {
  95. return soc_dma_port_add_fifo(dma, virt_base, fn, opaque, 1);
  96. }
  97. #endif