blob: 30aa53ff07a6b60118a512a65bb387216194ac93 [file] [log] [blame]
Ben Dooks505788c2006-09-15 23:42:24 +01001/* linux/arch/arm/mach-s3c2410/dma.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
Ben Dooksa21765a2007-02-11 18:31:01 +01003 * Copyright (c) 2006 Simtec Electronics
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Ben Dooks <ben@simtec.co.uk>
5 *
Ben Dooksa21765a2007-02-11 18:31:01 +01006 * S3C2410 DMA selection
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Ben Dooks505788c2006-09-15 23:42:24 +01008 * http://armlinux.simtec.co.uk/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
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.
Ben Dooks505788c2006-09-15 23:42:24 +010013*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Ben Dooksa21765a2007-02-11 18:31:01 +010015#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
Kay Sievers4a858cf2011-12-21 16:01:38 -080017#include <linux/device.h>
Ben Dooksa21765a2007-02-11 18:31:01 +010018#include <linux/serial_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Ben Dooks20934cd2009-03-19 15:02:38 +000020#include <mach/map.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Ben Dooksa2b7ba92008-10-07 22:26:09 +010023#include <plat/cpu.h>
Ben Dooks992426b2010-02-20 23:01:33 +000024#include <plat/dma-s3c24xx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Ben Dooksa2b7ba92008-10-07 22:26:09 +010026#include <plat/regs-serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/regs-gpio.h>
Ben Dooks44dc9402009-03-19 15:02:35 +000028#include <plat/regs-dma.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/regs-lcd.h>
Ben Dooks13622702008-10-30 10:14:38 +000030#include <plat/regs-spi.h>
Ben Dooks505788c2006-09-15 23:42:24 +010031
Ben Dooksa21765a2007-02-11 18:31:01 +010032static struct s3c24xx_dma_map __initdata s3c2410_dma_mappings[] = {
33 [DMACH_XD0] = {
34 .name = "xdreq0",
35 .channels[0] = S3C2410_DCON_CH0_XDREQ0 | DMA_CH_VALID,
36 },
37 [DMACH_XD1] = {
38 .name = "xdreq1",
39 .channels[1] = S3C2410_DCON_CH1_XDREQ1 | DMA_CH_VALID,
40 },
41 [DMACH_SDI] = {
42 .name = "sdi",
43 .channels[0] = S3C2410_DCON_CH0_SDI | DMA_CH_VALID,
44 .channels[2] = S3C2410_DCON_CH2_SDI | DMA_CH_VALID,
45 .channels[3] = S3C2410_DCON_CH3_SDI | DMA_CH_VALID,
Ben Dooksa21765a2007-02-11 18:31:01 +010046 },
47 [DMACH_SPI0] = {
48 .name = "spi0",
49 .channels[1] = S3C2410_DCON_CH1_SPI | DMA_CH_VALID,
Ben Dooksa21765a2007-02-11 18:31:01 +010050 },
51 [DMACH_SPI1] = {
52 .name = "spi1",
53 .channels[3] = S3C2410_DCON_CH3_SPI | DMA_CH_VALID,
Ben Dooksa21765a2007-02-11 18:31:01 +010054 },
55 [DMACH_UART0] = {
56 .name = "uart0",
57 .channels[0] = S3C2410_DCON_CH0_UART0 | DMA_CH_VALID,
Ben Dooksa21765a2007-02-11 18:31:01 +010058 },
59 [DMACH_UART1] = {
60 .name = "uart1",
61 .channels[1] = S3C2410_DCON_CH1_UART1 | DMA_CH_VALID,
Ben Dooksa21765a2007-02-11 18:31:01 +010062 },
63 [DMACH_UART2] = {
64 .name = "uart2",
65 .channels[3] = S3C2410_DCON_CH3_UART2 | DMA_CH_VALID,
Ben Dooksa21765a2007-02-11 18:31:01 +010066 },
67 [DMACH_TIMER] = {
68 .name = "timer",
69 .channels[0] = S3C2410_DCON_CH0_TIMER | DMA_CH_VALID,
70 .channels[2] = S3C2410_DCON_CH2_TIMER | DMA_CH_VALID,
71 .channels[3] = S3C2410_DCON_CH3_TIMER | DMA_CH_VALID,
72 },
73 [DMACH_I2S_IN] = {
74 .name = "i2s-sdi",
75 .channels[1] = S3C2410_DCON_CH1_I2SSDI | DMA_CH_VALID,
76 .channels[2] = S3C2410_DCON_CH2_I2SSDI | DMA_CH_VALID,
Ben Dooksa21765a2007-02-11 18:31:01 +010077 },
78 [DMACH_I2S_OUT] = {
79 .name = "i2s-sdo",
80 .channels[2] = S3C2410_DCON_CH2_I2SSDO | DMA_CH_VALID,
Ben Dooksa21765a2007-02-11 18:31:01 +010081 },
82 [DMACH_USB_EP1] = {
83 .name = "usb-ep1",
84 .channels[0] = S3C2410_DCON_CH0_USBEP1 | DMA_CH_VALID,
85 },
86 [DMACH_USB_EP2] = {
87 .name = "usb-ep2",
88 .channels[1] = S3C2410_DCON_CH1_USBEP2 | DMA_CH_VALID,
89 },
90 [DMACH_USB_EP3] = {
91 .name = "usb-ep3",
92 .channels[2] = S3C2410_DCON_CH2_USBEP3 | DMA_CH_VALID,
93 },
94 [DMACH_USB_EP4] = {
95 .name = "usb-ep4",
96 .channels[3] =S3C2410_DCON_CH3_USBEP4 | DMA_CH_VALID,
97 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070098};
99
Ben Dooksa21765a2007-02-11 18:31:01 +0100100static void s3c2410_dma_select(struct s3c2410_dma_chan *chan,
101 struct s3c24xx_dma_map *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Ben Dooksa21765a2007-02-11 18:31:01 +0100103 chan->dcon = map->channels[chan->number] & ~DMA_CH_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Ben Dooksa21765a2007-02-11 18:31:01 +0100106static struct s3c24xx_dma_selection __initdata s3c2410_dma_sel = {
107 .select = s3c2410_dma_select,
108 .dcon_mask = 7 << 24,
109 .map = s3c2410_dma_mappings,
110 .map_size = ARRAY_SIZE(s3c2410_dma_mappings),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
Ben Dooksdad8d6c2007-02-13 13:12:16 +0100113static struct s3c24xx_dma_order __initdata s3c2410_dma_order = {
114 .channels = {
115 [DMACH_SDI] = {
116 .list = {
117 [0] = 3 | DMA_CH_VALID,
118 [1] = 2 | DMA_CH_VALID,
119 [2] = 0 | DMA_CH_VALID,
120 },
121 },
122 [DMACH_I2S_IN] = {
123 .list = {
124 [0] = 1 | DMA_CH_VALID,
125 [1] = 2 | DMA_CH_VALID,
126 },
127 },
128 },
129};
130
Heiko Stuebner04511a62012-01-27 15:35:25 +0900131static int __init s3c2410_dma_add(struct device *dev,
132 struct subsys_interface *sif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Ben Dooks48adbcf2007-02-17 15:37:14 +0100134 s3c2410_dma_init();
Ben Dooksdad8d6c2007-02-13 13:12:16 +0100135 s3c24xx_dma_order_set(&s3c2410_dma_order);
Ben Dooksa21765a2007-02-11 18:31:01 +0100136 return s3c24xx_dma_init_map(&s3c2410_dma_sel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Ben Dooksa21765a2007-02-11 18:31:01 +0100139#if defined(CONFIG_CPU_S3C2410)
Kay Sievers4a858cf2011-12-21 16:01:38 -0800140static struct subsys_interface s3c2410_dma_interface = {
141 .name = "s3c2410_dma",
142 .subsys = &s3c2410_subsys,
143 .add_dev = s3c2410_dma_add,
Ben Dooksa21765a2007-02-11 18:31:01 +0100144};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Ben Dooks48adbcf2007-02-17 15:37:14 +0100146static int __init s3c2410_dma_drvinit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Heiko Stuebner04511a62012-01-27 15:35:25 +0900148 return subsys_interface_register(&s3c2410_dma_interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Ben Dooks48adbcf2007-02-17 15:37:14 +0100151arch_initcall(s3c2410_dma_drvinit);
Ben Dooksf0176792009-07-30 23:23:38 +0100152
Kay Sievers4a858cf2011-12-21 16:01:38 -0800153static struct subsys_interface s3c2410a_dma_interface = {
154 .name = "s3c2410a_dma",
155 .subsys = &s3c2410a_subsys,
156 .add_dev = s3c2410_dma_add,
Ben Dooksf0176792009-07-30 23:23:38 +0100157};
158
159static int __init s3c2410a_dma_drvinit(void)
160{
Kay Sievers4a858cf2011-12-21 16:01:38 -0800161 return subsys_interface_register(&s3c2410a_dma_interface);
Ben Dooksf0176792009-07-30 23:23:38 +0100162}
163
164arch_initcall(s3c2410a_dma_drvinit);
Ben Dooksa21765a2007-02-11 18:31:01 +0100165#endif
Ben Dooks505788c2006-09-15 23:42:24 +0100166
Ben Dooksa21765a2007-02-11 18:31:01 +0100167#if defined(CONFIG_CPU_S3C2442)
168/* S3C2442 DMA contains the same selection table as the S3C2410 */
Kay Sievers4a858cf2011-12-21 16:01:38 -0800169static struct subsys_interface s3c2442_dma_interface = {
170 .name = "s3c2442_dma",
171 .subsys = &s3c2442_subsys,
172 .add_dev = s3c2410_dma_add,
Ben Dooksa21765a2007-02-11 18:31:01 +0100173};
174
Ben Dooks48adbcf2007-02-17 15:37:14 +0100175static int __init s3c2442_dma_drvinit(void)
Ben Dooks505788c2006-09-15 23:42:24 +0100176{
Kay Sievers4a858cf2011-12-21 16:01:38 -0800177 return subsys_interface_register(&s3c2442_dma_interface);
Ben Dooks505788c2006-09-15 23:42:24 +0100178}
179
Ben Dooks48adbcf2007-02-17 15:37:14 +0100180arch_initcall(s3c2442_dma_drvinit);
Ben Dooksa21765a2007-02-11 18:31:01 +0100181#endif
Ben Dooks505788c2006-09-15 23:42:24 +0100182