dma.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* MN10300 ISA DMA handlers and definitions
  2. *
  3. * Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd.
  4. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #ifndef _ASM_DMA_H
  12. #define _ASM_DMA_H
  13. #include <asm/system.h>
  14. #include <linux/spinlock.h>
  15. #include <asm/io.h>
  16. #include <linux/delay.h>
  17. #undef MAX_DMA_CHANNELS /* switch off linux/kernel/dma.c */
  18. #define MAX_DMA_ADDRESS 0xbfffffff
  19. extern spinlock_t dma_spin_lock;
  20. static inline unsigned long claim_dma_lock(void)
  21. {
  22. unsigned long flags;
  23. spin_lock_irqsave(&dma_spin_lock, flags);
  24. return flags;
  25. }
  26. static inline void release_dma_lock(unsigned long flags)
  27. {
  28. spin_unlock_irqrestore(&dma_spin_lock, flags);
  29. }
  30. /* enable/disable a specific DMA channel */
  31. static inline void enable_dma(unsigned int dmanr)
  32. {
  33. }
  34. static inline void disable_dma(unsigned int dmanr)
  35. {
  36. }
  37. /* Clear the 'DMA Pointer Flip Flop'.
  38. * Write 0 for LSB/MSB, 1 for MSB/LSB access.
  39. * Use this once to initialize the FF to a known state.
  40. * After that, keep track of it. :-)
  41. * --- In order to do that, the DMA routines below should ---
  42. * --- only be used while holding the DMA lock ! ---
  43. */
  44. static inline void clear_dma_ff(unsigned int dmanr)
  45. {
  46. }
  47. /* set mode (above) for a specific DMA channel */
  48. static inline void set_dma_mode(unsigned int dmanr, char mode)
  49. {
  50. }
  51. /* Set only the page register bits of the transfer address.
  52. * This is used for successive transfers when we know the contents of
  53. * the lower 16 bits of the DMA current address register, but a 64k boundary
  54. * may have been crossed.
  55. */
  56. static inline void set_dma_page(unsigned int dmanr, char pagenr)
  57. {
  58. }
  59. /* Set transfer address & page bits for specific DMA channel.
  60. * Assumes dma flipflop is clear.
  61. */
  62. static inline void set_dma_addr(unsigned int dmanr, unsigned int a)
  63. {
  64. }
  65. /* Set transfer size (max 64k for DMA1..3, 128k for DMA5..7) for
  66. * a specific DMA channel.
  67. * You must ensure the parameters are valid.
  68. * NOTE: from a manual: "the number of transfers is one more
  69. * than the initial word count"! This is taken into account.
  70. * Assumes dma flip-flop is clear.
  71. * NOTE 2: "count" represents _bytes_ and must be even for channels 5-7.
  72. */
  73. static inline void set_dma_count(unsigned int dmanr, unsigned int count)
  74. {
  75. }
  76. /* Get DMA residue count. After a DMA transfer, this
  77. * should return zero. Reading this while a DMA transfer is
  78. * still in progress will return unpredictable results.
  79. * If called before the channel has been used, it may return 1.
  80. * Otherwise, it returns the number of _bytes_ left to transfer.
  81. *
  82. * Assumes DMA flip-flop is clear.
  83. */
  84. static inline int get_dma_residue(unsigned int dmanr)
  85. {
  86. return 0;
  87. }
  88. /* These are in kernel/dma.c: */
  89. extern int request_dma(unsigned int dmanr, const char *device_id);
  90. extern void free_dma(unsigned int dmanr);
  91. /* From PCI */
  92. #ifdef CONFIG_PCI
  93. extern int isa_dma_bridge_buggy;
  94. #else
  95. #define isa_dma_bridge_buggy (0)
  96. #endif
  97. #endif /* _ASM_DMA_H */