dma.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * linux/arch/arm/kernel/dma-ebsa285.c
  3. *
  4. * Copyright (C) 1998 Phil Blundell
  5. *
  6. * DMA functions specific to EBSA-285/CATS architectures
  7. *
  8. * Changelog:
  9. * 09-Nov-1998 RMK Split out ISA DMA functions to dma-isa.c
  10. * 17-Mar-1999 RMK Allow any EBSA285-like architecture to have
  11. * ISA DMA controllers.
  12. */
  13. #include <linux/init.h>
  14. #include <linux/io.h>
  15. #include <linux/spinlock.h>
  16. #include <linux/scatterlist.h>
  17. #include <asm/dma.h>
  18. #include <asm/mach/dma.h>
  19. #include <asm/hardware/dec21285.h>
  20. #if 0
  21. static int fb_dma_request(unsigned int chan, dma_t *dma)
  22. {
  23. return -EINVAL;
  24. }
  25. static void fb_dma_enable(unsigned int chan, dma_t *dma)
  26. {
  27. }
  28. static void fb_dma_disable(unsigned int chan, dma_t *dma)
  29. {
  30. }
  31. static struct dma_ops fb_dma_ops = {
  32. .type = "fb",
  33. .request = fb_dma_request,
  34. .enable = fb_dma_enable,
  35. .disable = fb_dma_disable,
  36. };
  37. #endif
  38. static int __init fb_dma_init(void)
  39. {
  40. #if 0
  41. dma[_DC21285_DMA(0)].d_ops = &fb_dma_ops;
  42. dma[_DC21285_DMA(1)].d_ops = &fb_dma_ops;
  43. #endif
  44. #ifdef CONFIG_ISA_DMA
  45. if (footbridge_cfn_mode())
  46. isa_init_dma();
  47. #endif
  48. return 0;
  49. }
  50. core_initcall(fb_dma_init);