1 /* linux/arch/arm/mach-s3c2410/s3c2412-dma.c
3 * (c) 2006 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * S3C2412 DMA selection
8 * http://armlinux.simtec.co.uk/
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.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/sysdev.h>
20 #include <asm/arch/dma.h>
26 #include <asm/arch/regs-serial.h>
27 #include <asm/arch/regs-gpio.h>
28 #include <asm/arch/regs-ac97.h>
29 #include <asm/arch/regs-mem.h>
30 #include <asm/arch/regs-lcd.h>
31 #include <asm/arch/regs-sdi.h>
32 #include <asm/arch/regs-iis.h>
33 #include <asm/arch/regs-spi.h>
35 #define MAP(x) { (x)| DMA_CH_VALID, (x)| DMA_CH_VALID, (x)| DMA_CH_VALID, (x)| DMA_CH_VALID }
37 static struct s3c24xx_dma_map __initdata s3c2412_dma_mappings[] = {
40 .channels = MAP(S3C2412_DMAREQSEL_XDREQ0),
44 .channels = MAP(S3C2412_DMAREQSEL_XDREQ1),
48 .channels = MAP(S3C2412_DMAREQSEL_SDI),
49 .hw_addr.to = S3C2410_PA_IIS + S3C2410_IISFIFO,
50 .hw_addr.from = S3C2410_PA_IIS + S3C2410_IISFIFO,
54 .channels = MAP(S3C2412_DMAREQSEL_SPI0TX),
55 .hw_addr.to = S3C2410_PA_SPI + S3C2410_SPTDAT,
56 .hw_addr.from = S3C2410_PA_SPI + S3C2410_SPRDAT,
60 .channels = MAP(S3C2412_DMAREQSEL_SPI1TX),
61 .hw_addr.to = S3C2410_PA_SPI + 0x20 + S3C2410_SPTDAT,
62 .hw_addr.from = S3C2410_PA_SPI + 0x20 + S3C2410_SPRDAT,
66 .channels = MAP(S3C2412_DMAREQSEL_UART0_0),
67 .hw_addr.to = S3C2410_PA_UART0 + S3C2410_UTXH,
68 .hw_addr.from = S3C2410_PA_UART0 + S3C2410_URXH,
72 .channels = MAP(S3C2412_DMAREQSEL_UART1_0),
73 .hw_addr.to = S3C2410_PA_UART1 + S3C2410_UTXH,
74 .hw_addr.from = S3C2410_PA_UART1 + S3C2410_URXH,
78 .channels = MAP(S3C2412_DMAREQSEL_UART2_0),
79 .hw_addr.to = S3C2410_PA_UART2 + S3C2410_UTXH,
80 .hw_addr.from = S3C2410_PA_UART2 + S3C2410_URXH,
82 [DMACH_UART0_SRC2] = {
84 .channels = MAP(S3C2412_DMAREQSEL_UART0_1),
85 .hw_addr.to = S3C2410_PA_UART0 + S3C2410_UTXH,
86 .hw_addr.from = S3C2410_PA_UART0 + S3C2410_URXH,
88 [DMACH_UART1_SRC2] = {
90 .channels = MAP(S3C2412_DMAREQSEL_UART1_1),
91 .hw_addr.to = S3C2410_PA_UART1 + S3C2410_UTXH,
92 .hw_addr.from = S3C2410_PA_UART1 + S3C2410_URXH,
94 [DMACH_UART2_SRC2] = {
96 .channels = MAP(S3C2412_DMAREQSEL_UART2_1),
97 .hw_addr.to = S3C2410_PA_UART2 + S3C2410_UTXH,
98 .hw_addr.from = S3C2410_PA_UART2 + S3C2410_URXH,
102 .channels = MAP(S3C2412_DMAREQSEL_TIMER),
106 .channels = MAP(S3C2412_DMAREQSEL_I2SRX),
107 .hw_addr.from = S3C2410_PA_IIS + S3C2410_IISFIFO,
111 .channels = MAP(S3C2412_DMAREQSEL_I2STX),
112 .hw_addr.to = S3C2410_PA_IIS + S3C2410_IISFIFO,
116 .channels = MAP(S3C2412_DMAREQSEL_USBEP1),
120 .channels = MAP(S3C2412_DMAREQSEL_USBEP2),
124 .channels = MAP(S3C2412_DMAREQSEL_USBEP3),
128 .channels = MAP(S3C2412_DMAREQSEL_USBEP4),
132 static void s3c2412_dma_select(struct s3c2410_dma_chan *chan,
133 struct s3c24xx_dma_map *map)
135 writel(chan->regs + S3C2412_DMA_DMAREQSEL,
136 map->channels[0] | S3C2412_DMAREQSEL_HW);
139 static struct s3c24xx_dma_selection __initdata s3c2412_dma_sel = {
140 .select = s3c2412_dma_select,
142 .map = s3c2412_dma_mappings,
143 .map_size = ARRAY_SIZE(s3c2412_dma_mappings),
146 static int s3c2412_dma_add(struct sys_device *sysdev)
148 return s3c24xx_dma_init_map(&s3c2412_dma_sel);
151 static struct sysdev_driver s3c2412_dma_driver = {
152 .add = s3c2412_dma_add,
155 static int __init s3c2412_dma_init(void)
157 return sysdev_driver_register(&s3c2412_sysclass, &s3c2412_dma_driver);
160 arch_initcall(s3c2412_dma_init);