x86, efi: Set runtime_version to the EFI spec revision
[linux/fpc-iii.git] / arch / arm / mach-s3c24xx / dma-s3c2410.c
blob4803338cf56e07960dec40f97603dbd2d34e3072
1 /* linux/arch/arm/mach-s3c2410/dma.c
3 * Copyright (c) 2006 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * S3C2410 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/device.h>
18 #include <linux/serial_core.h>
20 #include <mach/map.h>
21 #include <mach/dma.h>
23 #include <plat/cpu.h>
24 #include <plat/dma-s3c24xx.h>
26 #include <plat/regs-serial.h>
27 #include <mach/regs-gpio.h>
28 #include <plat/regs-ac97.h>
29 #include <plat/regs-dma.h>
30 #include <mach/regs-mem.h>
31 #include <mach/regs-lcd.h>
32 #include <mach/regs-sdi.h>
33 #include <plat/regs-iis.h>
34 #include <plat/regs-spi.h>
36 static struct s3c24xx_dma_map __initdata s3c2410_dma_mappings[] = {
37 [DMACH_XD0] = {
38 .name = "xdreq0",
39 .channels[0] = S3C2410_DCON_CH0_XDREQ0 | DMA_CH_VALID,
41 [DMACH_XD1] = {
42 .name = "xdreq1",
43 .channels[1] = S3C2410_DCON_CH1_XDREQ1 | DMA_CH_VALID,
45 [DMACH_SDI] = {
46 .name = "sdi",
47 .channels[0] = S3C2410_DCON_CH0_SDI | DMA_CH_VALID,
48 .channels[2] = S3C2410_DCON_CH2_SDI | DMA_CH_VALID,
49 .channels[3] = S3C2410_DCON_CH3_SDI | DMA_CH_VALID,
51 [DMACH_SPI0] = {
52 .name = "spi0",
53 .channels[1] = S3C2410_DCON_CH1_SPI | DMA_CH_VALID,
55 [DMACH_SPI1] = {
56 .name = "spi1",
57 .channels[3] = S3C2410_DCON_CH3_SPI | DMA_CH_VALID,
59 [DMACH_UART0] = {
60 .name = "uart0",
61 .channels[0] = S3C2410_DCON_CH0_UART0 | DMA_CH_VALID,
63 [DMACH_UART1] = {
64 .name = "uart1",
65 .channels[1] = S3C2410_DCON_CH1_UART1 | DMA_CH_VALID,
67 [DMACH_UART2] = {
68 .name = "uart2",
69 .channels[3] = S3C2410_DCON_CH3_UART2 | DMA_CH_VALID,
71 [DMACH_TIMER] = {
72 .name = "timer",
73 .channels[0] = S3C2410_DCON_CH0_TIMER | DMA_CH_VALID,
74 .channels[2] = S3C2410_DCON_CH2_TIMER | DMA_CH_VALID,
75 .channels[3] = S3C2410_DCON_CH3_TIMER | DMA_CH_VALID,
77 [DMACH_I2S_IN] = {
78 .name = "i2s-sdi",
79 .channels[1] = S3C2410_DCON_CH1_I2SSDI | DMA_CH_VALID,
80 .channels[2] = S3C2410_DCON_CH2_I2SSDI | DMA_CH_VALID,
82 [DMACH_I2S_OUT] = {
83 .name = "i2s-sdo",
84 .channels[2] = S3C2410_DCON_CH2_I2SSDO | DMA_CH_VALID,
86 [DMACH_USB_EP1] = {
87 .name = "usb-ep1",
88 .channels[0] = S3C2410_DCON_CH0_USBEP1 | DMA_CH_VALID,
90 [DMACH_USB_EP2] = {
91 .name = "usb-ep2",
92 .channels[1] = S3C2410_DCON_CH1_USBEP2 | DMA_CH_VALID,
94 [DMACH_USB_EP3] = {
95 .name = "usb-ep3",
96 .channels[2] = S3C2410_DCON_CH2_USBEP3 | DMA_CH_VALID,
98 [DMACH_USB_EP4] = {
99 .name = "usb-ep4",
100 .channels[3] =S3C2410_DCON_CH3_USBEP4 | DMA_CH_VALID,
104 static void s3c2410_dma_select(struct s3c2410_dma_chan *chan,
105 struct s3c24xx_dma_map *map)
107 chan->dcon = map->channels[chan->number] & ~DMA_CH_VALID;
110 static struct s3c24xx_dma_selection __initdata s3c2410_dma_sel = {
111 .select = s3c2410_dma_select,
112 .dcon_mask = 7 << 24,
113 .map = s3c2410_dma_mappings,
114 .map_size = ARRAY_SIZE(s3c2410_dma_mappings),
117 static struct s3c24xx_dma_order __initdata s3c2410_dma_order = {
118 .channels = {
119 [DMACH_SDI] = {
120 .list = {
121 [0] = 3 | DMA_CH_VALID,
122 [1] = 2 | DMA_CH_VALID,
123 [2] = 0 | DMA_CH_VALID,
126 [DMACH_I2S_IN] = {
127 .list = {
128 [0] = 1 | DMA_CH_VALID,
129 [1] = 2 | DMA_CH_VALID,
135 static int __init s3c2410_dma_add(struct device *dev,
136 struct subsys_interface *sif)
138 s3c2410_dma_init();
139 s3c24xx_dma_order_set(&s3c2410_dma_order);
140 return s3c24xx_dma_init_map(&s3c2410_dma_sel);
143 #if defined(CONFIG_CPU_S3C2410)
144 static struct subsys_interface s3c2410_dma_interface = {
145 .name = "s3c2410_dma",
146 .subsys = &s3c2410_subsys,
147 .add_dev = s3c2410_dma_add,
150 static int __init s3c2410_dma_drvinit(void)
152 return subsys_interface_register(&s3c2410_dma_interface);
155 arch_initcall(s3c2410_dma_drvinit);
157 static struct subsys_interface s3c2410a_dma_interface = {
158 .name = "s3c2410a_dma",
159 .subsys = &s3c2410a_subsys,
160 .add_dev = s3c2410_dma_add,
163 static int __init s3c2410a_dma_drvinit(void)
165 return subsys_interface_register(&s3c2410a_dma_interface);
168 arch_initcall(s3c2410a_dma_drvinit);
169 #endif
171 #if defined(CONFIG_CPU_S3C2442)
172 /* S3C2442 DMA contains the same selection table as the S3C2410 */
173 static struct subsys_interface s3c2442_dma_interface = {
174 .name = "s3c2442_dma",
175 .subsys = &s3c2442_subsys,
176 .add_dev = s3c2410_dma_add,
179 static int __init s3c2442_dma_drvinit(void)
181 return subsys_interface_register(&s3c2442_dma_interface);
184 arch_initcall(s3c2442_dma_drvinit);
185 #endif