s3c2412-dma.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /* linux/arch/arm/mach-s3c2410/s3c2412-dma.c
  2. *
  3. * (c) 2006 Simtec Electronics
  4. * Ben Dooks <ben@simtec.co.uk>
  5. *
  6. * S3C2412 DMA selection
  7. *
  8. * http://armlinux.simtec.co.uk/
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/init.h>
  16. #include <linux/sysdev.h>
  17. #include <asm/dma.h>
  18. #include <asm/arch/dma.h>
  19. #include <asm/io.h>
  20. #include "dma.h"
  21. #include "cpu.h"
  22. #include <asm/arch/regs-serial.h>
  23. #include <asm/arch/regs-gpio.h>
  24. #include <asm/arch/regs-ac97.h>
  25. #include <asm/arch/regs-mem.h>
  26. #include <asm/arch/regs-lcd.h>
  27. #include <asm/arch/regs-sdi.h>
  28. #include <asm/arch/regs-iis.h>
  29. #include <asm/arch/regs-spi.h>
  30. #define MAP(x) { (x)| DMA_CH_VALID, (x)| DMA_CH_VALID, (x)| DMA_CH_VALID, (x)| DMA_CH_VALID }
  31. static struct s3c24xx_dma_map __initdata s3c2412_dma_mappings[] = {
  32. [DMACH_XD0] = {
  33. .name = "xdreq0",
  34. .channels = MAP(S3C2412_DMAREQSEL_XDREQ0),
  35. },
  36. [DMACH_XD1] = {
  37. .name = "xdreq1",
  38. .channels = MAP(S3C2412_DMAREQSEL_XDREQ1),
  39. },
  40. [DMACH_SDI] = {
  41. .name = "sdi",
  42. .channels = MAP(S3C2412_DMAREQSEL_SDI),
  43. .hw_addr.to = S3C2410_PA_IIS + S3C2410_IISFIFO,
  44. .hw_addr.from = S3C2410_PA_IIS + S3C2410_IISFIFO,
  45. },
  46. [DMACH_SPI0] = {
  47. .name = "spi0",
  48. .channels = MAP(S3C2412_DMAREQSEL_SPI0TX),
  49. .hw_addr.to = S3C2410_PA_SPI + S3C2410_SPTDAT,
  50. .hw_addr.from = S3C2410_PA_SPI + S3C2410_SPRDAT,
  51. },
  52. [DMACH_SPI1] = {
  53. .name = "spi1",
  54. .channels = MAP(S3C2412_DMAREQSEL_SPI1TX),
  55. .hw_addr.to = S3C2410_PA_SPI + 0x20 + S3C2410_SPTDAT,
  56. .hw_addr.from = S3C2410_PA_SPI + 0x20 + S3C2410_SPRDAT,
  57. },
  58. [DMACH_UART0] = {
  59. .name = "uart0",
  60. .channels = MAP(S3C2412_DMAREQSEL_UART0_0),
  61. .hw_addr.to = S3C2410_PA_UART0 + S3C2410_UTXH,
  62. .hw_addr.from = S3C2410_PA_UART0 + S3C2410_URXH,
  63. },
  64. [DMACH_UART1] = {
  65. .name = "uart1",
  66. .channels = MAP(S3C2412_DMAREQSEL_UART1_0),
  67. .hw_addr.to = S3C2410_PA_UART1 + S3C2410_UTXH,
  68. .hw_addr.from = S3C2410_PA_UART1 + S3C2410_URXH,
  69. },
  70. [DMACH_UART2] = {
  71. .name = "uart2",
  72. .channels = MAP(S3C2412_DMAREQSEL_UART2_0),
  73. .hw_addr.to = S3C2410_PA_UART2 + S3C2410_UTXH,
  74. .hw_addr.from = S3C2410_PA_UART2 + S3C2410_URXH,
  75. },
  76. [DMACH_UART0_SRC2] = {
  77. .name = "uart0",
  78. .channels = MAP(S3C2412_DMAREQSEL_UART0_1),
  79. .hw_addr.to = S3C2410_PA_UART0 + S3C2410_UTXH,
  80. .hw_addr.from = S3C2410_PA_UART0 + S3C2410_URXH,
  81. },
  82. [DMACH_UART1_SRC2] = {
  83. .name = "uart1",
  84. .channels = MAP(S3C2412_DMAREQSEL_UART1_1),
  85. .hw_addr.to = S3C2410_PA_UART1 + S3C2410_UTXH,
  86. .hw_addr.from = S3C2410_PA_UART1 + S3C2410_URXH,
  87. },
  88. [DMACH_UART2_SRC2] = {
  89. .name = "uart2",
  90. .channels = MAP(S3C2412_DMAREQSEL_UART2_1),
  91. .hw_addr.to = S3C2410_PA_UART2 + S3C2410_UTXH,
  92. .hw_addr.from = S3C2410_PA_UART2 + S3C2410_URXH,
  93. },
  94. [DMACH_TIMER] = {
  95. .name = "timer",
  96. .channels = MAP(S3C2412_DMAREQSEL_TIMER),
  97. },
  98. [DMACH_I2S_IN] = {
  99. .name = "i2s-sdi",
  100. .channels = MAP(S3C2412_DMAREQSEL_I2SRX),
  101. .hw_addr.from = S3C2410_PA_IIS + S3C2410_IISFIFO,
  102. },
  103. [DMACH_I2S_OUT] = {
  104. .name = "i2s-sdo",
  105. .channels = MAP(S3C2412_DMAREQSEL_I2STX),
  106. .hw_addr.to = S3C2410_PA_IIS + S3C2410_IISFIFO,
  107. },
  108. [DMACH_USB_EP1] = {
  109. .name = "usb-ep1",
  110. .channels = MAP(S3C2412_DMAREQSEL_USBEP1),
  111. },
  112. [DMACH_USB_EP2] = {
  113. .name = "usb-ep2",
  114. .channels = MAP(S3C2412_DMAREQSEL_USBEP2),
  115. },
  116. [DMACH_USB_EP3] = {
  117. .name = "usb-ep3",
  118. .channels = MAP(S3C2412_DMAREQSEL_USBEP3),
  119. },
  120. [DMACH_USB_EP4] = {
  121. .name = "usb-ep4",
  122. .channels = MAP(S3C2412_DMAREQSEL_USBEP4),
  123. },
  124. };
  125. static void s3c2412_dma_select(struct s3c2410_dma_chan *chan,
  126. struct s3c24xx_dma_map *map)
  127. {
  128. writel(chan->regs + S3C2412_DMA_DMAREQSEL,
  129. map->channels[0] | S3C2412_DMAREQSEL_HW);
  130. }
  131. static struct s3c24xx_dma_selection __initdata s3c2412_dma_sel = {
  132. .select = s3c2412_dma_select,
  133. .dcon_mask = 0,
  134. .map = s3c2412_dma_mappings,
  135. .map_size = ARRAY_SIZE(s3c2412_dma_mappings),
  136. };
  137. static int s3c2412_dma_add(struct sys_device *sysdev)
  138. {
  139. return s3c24xx_dma_init_map(&s3c2412_dma_sel);
  140. }
  141. static struct sysdev_driver s3c2412_dma_driver = {
  142. .add = s3c2412_dma_add,
  143. };
  144. static int __init s3c2412_dma_init(void)
  145. {
  146. return sysdev_driver_register(&s3c2412_sysclass, &s3c2412_dma_driver);
  147. }
  148. arch_initcall(s3c2412_dma_init);