Ben Dooks | 505788c | 2006-09-15 23:42:24 +0100 | [diff] [blame] | 1 | /* linux/arch/arm/mach-s3c2410/dma.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 3 | * Copyright (c) 2006 Simtec Electronics |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Ben Dooks <ben@simtec.co.uk> |
| 5 | * |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 6 | * S3C2410 DMA selection |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Ben Dooks | 505788c | 2006-09-15 23:42:24 +0100 | [diff] [blame] | 8 | * http://armlinux.simtec.co.uk/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
Ben Dooks | 505788c | 2006-09-15 23:42:24 +0100 | [diff] [blame] | 13 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 15 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/sysdev.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 18 | #include <linux/serial_core.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 20 | #include <mach/dma.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 22 | #include <plat/cpu.h> |
Ben Dooks | d5120ae | 2008-10-07 23:09:51 +0100 | [diff] [blame] | 23 | #include <plat/dma.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 25 | #include <plat/regs-serial.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 26 | #include <mach/regs-gpio.h> |
Ben Dooks | f74c95c | 2008-10-30 10:14:36 +0000 | [diff] [blame] | 27 | #include <plat/regs-ac97.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 28 | #include <mach/regs-mem.h> |
| 29 | #include <mach/regs-lcd.h> |
| 30 | #include <mach/regs-sdi.h> |
Ben Dooks | 8150bc8 | 2009-03-04 00:49:26 +0000 | [diff] [blame^] | 31 | #include <plat/regs-iis.h> |
Ben Dooks | 1362270 | 2008-10-30 10:14:38 +0000 | [diff] [blame] | 32 | #include <plat/regs-spi.h> |
Ben Dooks | 505788c | 2006-09-15 23:42:24 +0100 | [diff] [blame] | 33 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 34 | static struct s3c24xx_dma_map __initdata s3c2410_dma_mappings[] = { |
| 35 | [DMACH_XD0] = { |
| 36 | .name = "xdreq0", |
| 37 | .channels[0] = S3C2410_DCON_CH0_XDREQ0 | DMA_CH_VALID, |
| 38 | }, |
| 39 | [DMACH_XD1] = { |
| 40 | .name = "xdreq1", |
| 41 | .channels[1] = S3C2410_DCON_CH1_XDREQ1 | DMA_CH_VALID, |
| 42 | }, |
| 43 | [DMACH_SDI] = { |
| 44 | .name = "sdi", |
| 45 | .channels[0] = S3C2410_DCON_CH0_SDI | DMA_CH_VALID, |
| 46 | .channels[2] = S3C2410_DCON_CH2_SDI | DMA_CH_VALID, |
| 47 | .channels[3] = S3C2410_DCON_CH3_SDI | DMA_CH_VALID, |
| 48 | .hw_addr.to = S3C2410_PA_IIS + S3C2410_IISFIFO, |
| 49 | .hw_addr.from = S3C2410_PA_IIS + S3C2410_IISFIFO, |
| 50 | }, |
| 51 | [DMACH_SPI0] = { |
| 52 | .name = "spi0", |
| 53 | .channels[1] = S3C2410_DCON_CH1_SPI | DMA_CH_VALID, |
| 54 | .hw_addr.to = S3C2410_PA_SPI + S3C2410_SPTDAT, |
| 55 | .hw_addr.from = S3C2410_PA_SPI + S3C2410_SPRDAT, |
| 56 | }, |
| 57 | [DMACH_SPI1] = { |
| 58 | .name = "spi1", |
| 59 | .channels[3] = S3C2410_DCON_CH3_SPI | DMA_CH_VALID, |
| 60 | .hw_addr.to = S3C2410_PA_SPI + 0x20 + S3C2410_SPTDAT, |
| 61 | .hw_addr.from = S3C2410_PA_SPI + 0x20 + S3C2410_SPRDAT, |
| 62 | }, |
| 63 | [DMACH_UART0] = { |
| 64 | .name = "uart0", |
| 65 | .channels[0] = S3C2410_DCON_CH0_UART0 | DMA_CH_VALID, |
| 66 | .hw_addr.to = S3C2410_PA_UART0 + S3C2410_UTXH, |
| 67 | .hw_addr.from = S3C2410_PA_UART0 + S3C2410_URXH, |
| 68 | }, |
| 69 | [DMACH_UART1] = { |
| 70 | .name = "uart1", |
| 71 | .channels[1] = S3C2410_DCON_CH1_UART1 | DMA_CH_VALID, |
| 72 | .hw_addr.to = S3C2410_PA_UART1 + S3C2410_UTXH, |
| 73 | .hw_addr.from = S3C2410_PA_UART1 + S3C2410_URXH, |
| 74 | }, |
| 75 | [DMACH_UART2] = { |
| 76 | .name = "uart2", |
| 77 | .channels[3] = S3C2410_DCON_CH3_UART2 | DMA_CH_VALID, |
| 78 | .hw_addr.to = S3C2410_PA_UART2 + S3C2410_UTXH, |
| 79 | .hw_addr.from = S3C2410_PA_UART2 + S3C2410_URXH, |
| 80 | }, |
| 81 | [DMACH_TIMER] = { |
| 82 | .name = "timer", |
| 83 | .channels[0] = S3C2410_DCON_CH0_TIMER | DMA_CH_VALID, |
| 84 | .channels[2] = S3C2410_DCON_CH2_TIMER | DMA_CH_VALID, |
| 85 | .channels[3] = S3C2410_DCON_CH3_TIMER | DMA_CH_VALID, |
| 86 | }, |
| 87 | [DMACH_I2S_IN] = { |
| 88 | .name = "i2s-sdi", |
| 89 | .channels[1] = S3C2410_DCON_CH1_I2SSDI | DMA_CH_VALID, |
| 90 | .channels[2] = S3C2410_DCON_CH2_I2SSDI | DMA_CH_VALID, |
| 91 | .hw_addr.from = S3C2410_PA_IIS + S3C2410_IISFIFO, |
| 92 | }, |
| 93 | [DMACH_I2S_OUT] = { |
| 94 | .name = "i2s-sdo", |
| 95 | .channels[2] = S3C2410_DCON_CH2_I2SSDO | DMA_CH_VALID, |
| 96 | .hw_addr.to = S3C2410_PA_IIS + S3C2410_IISFIFO, |
| 97 | }, |
| 98 | [DMACH_USB_EP1] = { |
| 99 | .name = "usb-ep1", |
| 100 | .channels[0] = S3C2410_DCON_CH0_USBEP1 | DMA_CH_VALID, |
| 101 | }, |
| 102 | [DMACH_USB_EP2] = { |
| 103 | .name = "usb-ep2", |
| 104 | .channels[1] = S3C2410_DCON_CH1_USBEP2 | DMA_CH_VALID, |
| 105 | }, |
| 106 | [DMACH_USB_EP3] = { |
| 107 | .name = "usb-ep3", |
| 108 | .channels[2] = S3C2410_DCON_CH2_USBEP3 | DMA_CH_VALID, |
| 109 | }, |
| 110 | [DMACH_USB_EP4] = { |
| 111 | .name = "usb-ep4", |
| 112 | .channels[3] =S3C2410_DCON_CH3_USBEP4 | DMA_CH_VALID, |
| 113 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | }; |
| 115 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 116 | static void s3c2410_dma_select(struct s3c2410_dma_chan *chan, |
| 117 | struct s3c24xx_dma_map *map) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 119 | chan->dcon = map->channels[chan->number] & ~DMA_CH_VALID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | } |
| 121 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 122 | static struct s3c24xx_dma_selection __initdata s3c2410_dma_sel = { |
| 123 | .select = s3c2410_dma_select, |
| 124 | .dcon_mask = 7 << 24, |
| 125 | .map = s3c2410_dma_mappings, |
| 126 | .map_size = ARRAY_SIZE(s3c2410_dma_mappings), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | }; |
| 128 | |
Ben Dooks | dad8d6c | 2007-02-13 13:12:16 +0100 | [diff] [blame] | 129 | static struct s3c24xx_dma_order __initdata s3c2410_dma_order = { |
| 130 | .channels = { |
| 131 | [DMACH_SDI] = { |
| 132 | .list = { |
| 133 | [0] = 3 | DMA_CH_VALID, |
| 134 | [1] = 2 | DMA_CH_VALID, |
| 135 | [2] = 0 | DMA_CH_VALID, |
| 136 | }, |
| 137 | }, |
| 138 | [DMACH_I2S_IN] = { |
| 139 | .list = { |
| 140 | [0] = 1 | DMA_CH_VALID, |
| 141 | [1] = 2 | DMA_CH_VALID, |
| 142 | }, |
| 143 | }, |
| 144 | }, |
| 145 | }; |
| 146 | |
Krzysztof Helt | f2c10d6 | 2007-09-04 17:19:33 +0100 | [diff] [blame] | 147 | static int __init s3c2410_dma_add(struct sys_device *sysdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
Ben Dooks | 48adbcf | 2007-02-17 15:37:14 +0100 | [diff] [blame] | 149 | s3c2410_dma_init(); |
Ben Dooks | dad8d6c | 2007-02-13 13:12:16 +0100 | [diff] [blame] | 150 | s3c24xx_dma_order_set(&s3c2410_dma_order); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 151 | return s3c24xx_dma_init_map(&s3c2410_dma_sel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 154 | #if defined(CONFIG_CPU_S3C2410) |
| 155 | static struct sysdev_driver s3c2410_dma_driver = { |
| 156 | .add = s3c2410_dma_add, |
| 157 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Ben Dooks | 48adbcf | 2007-02-17 15:37:14 +0100 | [diff] [blame] | 159 | static int __init s3c2410_dma_drvinit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 161 | return sysdev_driver_register(&s3c2410_sysclass, &s3c2410_dma_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Ben Dooks | 48adbcf | 2007-02-17 15:37:14 +0100 | [diff] [blame] | 164 | arch_initcall(s3c2410_dma_drvinit); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 165 | #endif |
Ben Dooks | 505788c | 2006-09-15 23:42:24 +0100 | [diff] [blame] | 166 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 167 | #if defined(CONFIG_CPU_S3C2442) |
| 168 | /* S3C2442 DMA contains the same selection table as the S3C2410 */ |
| 169 | static struct sysdev_driver s3c2442_dma_driver = { |
| 170 | .add = s3c2410_dma_add, |
| 171 | }; |
| 172 | |
Ben Dooks | 48adbcf | 2007-02-17 15:37:14 +0100 | [diff] [blame] | 173 | static int __init s3c2442_dma_drvinit(void) |
Ben Dooks | 505788c | 2006-09-15 23:42:24 +0100 | [diff] [blame] | 174 | { |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 175 | return sysdev_driver_register(&s3c2442_sysclass, &s3c2442_dma_driver); |
Ben Dooks | 505788c | 2006-09-15 23:42:24 +0100 | [diff] [blame] | 176 | } |
| 177 | |
Ben Dooks | 48adbcf | 2007-02-17 15:37:14 +0100 | [diff] [blame] | 178 | arch_initcall(s3c2442_dma_drvinit); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 179 | #endif |
Ben Dooks | 505788c | 2006-09-15 23:42:24 +0100 | [diff] [blame] | 180 | |