| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * BRIEF MODULE DESCRIPTION | 
					
						
							|  |  |  |  *      The Descriptor Based DMA channel manager that first appeared | 
					
						
							|  |  |  |  *	on the Au1550.  I started with dma.c, but I think all that is | 
					
						
							|  |  |  |  *	left is this initial comment :-) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright 2004 Embedded Edge, LLC | 
					
						
							|  |  |  |  *	dan@embeddededge.com | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This program is free software; you can redistribute  it and/or modify it | 
					
						
							|  |  |  |  *  under  the terms of  the GNU General  Public License as published by the | 
					
						
							|  |  |  |  *  Free Software Foundation;  either version 2 of the  License, or (at your | 
					
						
							|  |  |  |  *  option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED | 
					
						
							|  |  |  |  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF | 
					
						
							|  |  |  |  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN | 
					
						
							|  |  |  |  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT, | 
					
						
							|  |  |  |  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | 
					
						
							|  |  |  |  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF | 
					
						
							|  |  |  |  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | 
					
						
							|  |  |  |  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT | 
					
						
							|  |  |  |  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 
					
						
							|  |  |  |  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  You should have received a copy of the  GNU General Public License along | 
					
						
							|  |  |  |  *  with this program; if not, write  to the Free Software Foundation, Inc., | 
					
						
							|  |  |  |  *  675 Mass Ave, Cambridge, MA 02139, USA. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-07 20:15:15 +02:00
										 |  |  | #include <linux/init.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							|  |  |  | #include <linux/spinlock.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							| 
									
										
										
										
											2005-03-01 07:54:50 +00:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | #include <linux/syscore_ops.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/mach-au1x00/au1000.h>
 | 
					
						
							|  |  |  | #include <asm/mach-au1x00/au1xxx_dbdma.h>
 | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * The Descriptor Based DMA supports up to 16 channels. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * There are 32 devices defined. We keep an internal structure | 
					
						
							|  |  |  |  * of devices using these channels, along with additional | 
					
						
							|  |  |  |  * information. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * We allocate the descriptors and allow access to them through various | 
					
						
							|  |  |  |  * functions.  The drivers allocate the data buffers and assign them | 
					
						
							|  |  |  |  * to the descriptors. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-10-03 13:41:19 +01:00
										 |  |  | static DEFINE_SPINLOCK(au1xxx_dbdma_spin_lock); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | /* I couldn't find a macro that did this... */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #define ALIGN_ADDR(x, a)	((((u32)(x)) + (a-1)) & ~(a-1))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | static dbdma_global_t *dbdma_gptr = | 
					
						
							|  |  |  | 			(dbdma_global_t *)KSEG1ADDR(AU1550_DBDMA_CONF_PHYS_ADDR); | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | static int dbdma_initialized; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | static dbdev_tab_t *dbdev_tab; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static dbdev_tab_t au1550_dbdev_tab[] __initdata = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* UARTS */ | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1550_DSCR_CMD0_UART0_TX, DEV_FLAGS_OUT, 0, 8, 0x11100004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_UART0_RX, DEV_FLAGS_IN,  0, 8, 0x11100000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_UART3_TX, DEV_FLAGS_OUT, 0, 8, 0x11400004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_UART3_RX, DEV_FLAGS_IN,  0, 8, 0x11400000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* EXT DMA */ | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1550_DSCR_CMD0_DMA_REQ0, 0, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_DMA_REQ1, 0, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_DMA_REQ2, 0, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_DMA_REQ3, 0, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* USB DEV */ | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1550_DSCR_CMD0_USBDEV_RX0, DEV_FLAGS_IN,  4, 8, 0x10200000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_USBDEV_TX0, DEV_FLAGS_OUT, 4, 8, 0x10200004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_USBDEV_TX1, DEV_FLAGS_OUT, 4, 8, 0x10200008, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_USBDEV_TX2, DEV_FLAGS_OUT, 4, 8, 0x1020000c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_USBDEV_RX3, DEV_FLAGS_IN,  4, 8, 0x10200010, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_USBDEV_RX4, DEV_FLAGS_IN,  4, 8, 0x10200014, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* PSCs */ | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_PSC0_TX, DEV_FLAGS_OUT, 0, 0, 0x11a0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_PSC0_RX, DEV_FLAGS_IN,  0, 0, 0x11a0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_PSC1_TX, DEV_FLAGS_OUT, 0, 0, 0x11b0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_PSC1_RX, DEV_FLAGS_IN,  0, 0, 0x11b0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_PSC2_TX, DEV_FLAGS_OUT, 0, 0, 0x10a0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_PSC2_RX, DEV_FLAGS_IN,  0, 0, 0x10a0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_PSC3_TX, DEV_FLAGS_OUT, 0, 0, 0x10b0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_PSC3_RX, DEV_FLAGS_IN,  0, 0, 0x10b0001c, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_PCI_WRITE,  0, 0, 0, 0x00000000, 0, 0 },  /* PCI */ | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_NAND_FLASH, 0, 0, 0, 0x00000000, 0, 0 }, /* NAND */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* MAC 0 */ | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1550_DSCR_CMD0_MAC0_RX, DEV_FLAGS_IN,  0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_MAC0_TX, DEV_FLAGS_OUT, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* MAC 1 */ | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1550_DSCR_CMD0_MAC1_RX, DEV_FLAGS_IN,  0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1550_DSCR_CMD0_MAC1_TX, DEV_FLAGS_OUT, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ DSCR_CMD0_THROTTLE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ DSCR_CMD0_ALWAYS,   DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | static dbdev_tab_t au1200_dbdev_tab[] __initdata = { | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_UART0_TX, DEV_FLAGS_OUT, 0, 8, 0x11100004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_UART0_RX, DEV_FLAGS_IN,  0, 8, 0x11100000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_UART1_TX, DEV_FLAGS_OUT, 0, 8, 0x11200004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_UART1_RX, DEV_FLAGS_IN,  0, 8, 0x11200000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1200_DSCR_CMD0_DMA_REQ0, 0, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_DMA_REQ1, 0, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1200_DSCR_CMD0_MAE_BE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_MAE_FE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_MAE_BOTH, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_LCD, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1200_DSCR_CMD0_SDMS_TX0, DEV_FLAGS_OUT, 4, 8, 0x10600000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_SDMS_RX0, DEV_FLAGS_IN,  4, 8, 0x10600004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_SDMS_TX1, DEV_FLAGS_OUT, 4, 8, 0x10680000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_SDMS_RX1, DEV_FLAGS_IN,  4, 8, 0x10680004, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1200_DSCR_CMD0_AES_RX, DEV_FLAGS_IN , 4, 32, 0x10300008, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_AES_TX, DEV_FLAGS_OUT, 4, 32, 0x10300004, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1200_DSCR_CMD0_PSC0_TX,   DEV_FLAGS_OUT, 0, 16, 0x11a0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_PSC0_RX,   DEV_FLAGS_IN,  0, 16, 0x11a0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_PSC0_SYNC, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_PSC1_TX,   DEV_FLAGS_OUT, 0, 16, 0x11b0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_PSC1_RX,   DEV_FLAGS_IN,  0, 16, 0x11b0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_PSC1_SYNC, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1200_DSCR_CMD0_CIM_RXA,  DEV_FLAGS_IN, 0, 32, 0x14004020, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_CIM_RXB,  DEV_FLAGS_IN, 0, 32, 0x14004040, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_CIM_RXC,  DEV_FLAGS_IN, 0, 32, 0x14004060, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1200_DSCR_CMD0_CIM_SYNC, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ AU1200_DSCR_CMD0_NAND_FLASH, DEV_FLAGS_IN, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	{ DSCR_CMD0_THROTTLE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	{ DSCR_CMD0_ALWAYS,   DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-01 20:03:30 +01:00
										 |  |  | static dbdev_tab_t au1300_dbdev_tab[] __initdata = { | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_UART0_TX, DEV_FLAGS_OUT, 0, 8,  0x10100004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_UART0_RX, DEV_FLAGS_IN,  0, 8,  0x10100000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_UART1_TX, DEV_FLAGS_OUT, 0, 8,  0x10101004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_UART1_RX, DEV_FLAGS_IN,  0, 8,  0x10101000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_UART2_TX, DEV_FLAGS_OUT, 0, 8,  0x10102004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_UART2_RX, DEV_FLAGS_IN,  0, 8,  0x10102000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_UART3_TX, DEV_FLAGS_OUT, 0, 8,  0x10103004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_UART3_RX, DEV_FLAGS_IN,  0, 8,  0x10103000, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_SDMS_TX0, DEV_FLAGS_OUT, 4, 8,  0x10600000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_SDMS_RX0, DEV_FLAGS_IN,  4, 8,  0x10600004, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_SDMS_TX1, DEV_FLAGS_OUT, 8, 8,  0x10601000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_SDMS_RX1, DEV_FLAGS_IN,  8, 8,  0x10601004, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_AES_RX, DEV_FLAGS_IN ,   4, 32, 0x10300008, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_AES_TX, DEV_FLAGS_OUT,   4, 32, 0x10300004, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_PSC0_TX, DEV_FLAGS_OUT,  0, 16, 0x10a0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_PSC0_RX, DEV_FLAGS_IN,   0, 16, 0x10a0001c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_PSC1_TX, DEV_FLAGS_OUT,  0, 16, 0x10a0101c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_PSC1_RX, DEV_FLAGS_IN,   0, 16, 0x10a0101c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_PSC2_TX, DEV_FLAGS_OUT,  0, 16, 0x10a0201c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_PSC2_RX, DEV_FLAGS_IN,   0, 16, 0x10a0201c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_PSC3_TX, DEV_FLAGS_OUT,  0, 16, 0x10a0301c, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_PSC3_RX, DEV_FLAGS_IN,   0, 16, 0x10a0301c, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_LCD, DEV_FLAGS_ANYUSE,   0, 0,  0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_NAND_FLASH, DEV_FLAGS_IN, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_SDMS_TX2, DEV_FLAGS_OUT, 4, 8,  0x10602000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_SDMS_RX2, DEV_FLAGS_IN,  4, 8,  0x10602004, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_CIM_SYNC, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_UDMA, DEV_FLAGS_ANYUSE,  0, 32, 0x14001810, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_DMA_REQ0, 0, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ AU1300_DSCR_CMD0_DMA_REQ1, 0, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	{ DSCR_CMD0_THROTTLE, DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | 	{ DSCR_CMD0_ALWAYS,   DEV_FLAGS_ANYUSE, 0, 0, 0x00000000, 0, 0 }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | /* 32 predefined plus 32 custom */ | 
					
						
							|  |  |  | #define DBDEV_TAB_SIZE		64
 | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static chan_tab_t *chan_tab_ptr[NUM_DBDMA_CHANS]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | static dbdev_tab_t *find_dbdev_id(u32 id) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	dbdev_tab_t *p; | 
					
						
							|  |  |  | 	for (i = 0; i < DBDEV_TAB_SIZE; ++i) { | 
					
						
							|  |  |  | 		p = &dbdev_tab[i]; | 
					
						
							|  |  |  | 		if (p->dev_id == id) | 
					
						
							|  |  |  | 			return p; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | void *au1xxx_ddma_get_nextptr_virt(au1x_ddma_desc_t *dp) | 
					
						
							| 
									
										
										
										
											2005-09-15 08:03:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	return phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); | 
					
						
							| 
									
										
										
										
											2005-09-15 08:03:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(au1xxx_ddma_get_nextptr_virt); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | u32 au1xxx_ddma_add_device(dbdev_tab_t *dev) | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	u32 ret = 0; | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	dbdev_tab_t *p; | 
					
						
							|  |  |  | 	static u16 new_id = 0x1000; | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-10 20:31:33 +01:00
										 |  |  | 	p = find_dbdev_id(~0); | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	if (NULL != p) { | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 		memcpy(p, dev, sizeof(dbdev_tab_t)); | 
					
						
							| 
									
										
										
										
											2007-10-11 23:46:15 +01:00
										 |  |  | 		p->dev_id = DSCR_DEV2CUSTOM_ID(new_id, dev->dev_id); | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 		ret = p->dev_id; | 
					
						
							|  |  |  | 		new_id++; | 
					
						
							|  |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		printk(KERN_DEBUG "add_device: id:%x flags:%x padd:%x\n", | 
					
						
							|  |  |  | 				  p->dev_id, p->dev_flags, p->dev_physaddr); | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(au1xxx_ddma_add_device); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-07 13:45:23 +02:00
										 |  |  | void au1xxx_ddma_del_device(u32 devid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	dbdev_tab_t *p = find_dbdev_id(devid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p != NULL) { | 
					
						
							|  |  |  | 		memset(p, 0, sizeof(dbdev_tab_t)); | 
					
						
							|  |  |  | 		p->dev_id = ~0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(au1xxx_ddma_del_device); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | /* Allocate a channel and return a non-zero descriptor if successful. */ | 
					
						
							|  |  |  | u32 au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid, | 
					
						
							| 
									
										
										
										
											2006-09-25 23:32:10 -07:00
										 |  |  |        void (*callback)(int, void *), void *callparam) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | 	unsigned long	flags; | 
					
						
							| 
									
										
										
										
											2010-02-27 12:53:37 +01:00
										 |  |  | 	u32		used, chan; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32		dcp; | 
					
						
							|  |  |  | 	int		i; | 
					
						
							|  |  |  | 	dbdev_tab_t	*stp, *dtp; | 
					
						
							|  |  |  | 	chan_tab_t	*ctp; | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	au1x_dma_chan_t *cp; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * We do the intialization on the first channel allocation. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * We have to wait because of the interrupt handler initialization | 
					
						
							|  |  |  | 	 * which can't be done successfully during board set up. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!dbdma_initialized) | 
					
						
							| 
									
										
										
										
											2009-10-07 20:15:15 +02:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	stp = find_dbdev_id(srcid); | 
					
						
							|  |  |  | 	if (stp == NULL) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:32:10 -07:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	dtp = find_dbdev_id(destid); | 
					
						
							|  |  |  | 	if (dtp == NULL) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:32:10 -07:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	used = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Check to see if we can get both channels. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	spin_lock_irqsave(&au1xxx_dbdma_spin_lock, flags); | 
					
						
							|  |  |  | 	if (!(stp->dev_flags & DEV_FLAGS_INUSE) || | 
					
						
							|  |  |  | 	     (stp->dev_flags & DEV_FLAGS_ANYUSE)) { | 
					
						
							| 
									
										
										
										
											2006-03-11 08:18:41 +00:00
										 |  |  | 		/* Got source */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		stp->dev_flags |= DEV_FLAGS_INUSE; | 
					
						
							|  |  |  | 		if (!(dtp->dev_flags & DEV_FLAGS_INUSE) || | 
					
						
							|  |  |  | 		     (dtp->dev_flags & DEV_FLAGS_ANYUSE)) { | 
					
						
							|  |  |  | 			/* Got destination */ | 
					
						
							|  |  |  | 			dtp->dev_flags |= DEV_FLAGS_INUSE; | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			/* Can't get dest.  Release src. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			stp->dev_flags &= ~DEV_FLAGS_INUSE; | 
					
						
							|  |  |  | 			used++; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	} else | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		used++; | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&au1xxx_dbdma_spin_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-27 12:53:37 +01:00
										 |  |  | 	if (used) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Let's see if we can allocate a channel for it. */ | 
					
						
							|  |  |  | 	ctp = NULL; | 
					
						
							|  |  |  | 	chan = 0; | 
					
						
							|  |  |  | 	spin_lock_irqsave(&au1xxx_dbdma_spin_lock, flags); | 
					
						
							|  |  |  | 	for (i = 0; i < NUM_DBDMA_CHANS; i++) | 
					
						
							|  |  |  | 		if (chan_tab_ptr[i] == NULL) { | 
					
						
							|  |  |  | 			/*
 | 
					
						
							|  |  |  | 			 * If kmalloc fails, it is caught below same | 
					
						
							|  |  |  | 			 * as a channel not available. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			 */ | 
					
						
							| 
									
										
										
										
											2010-02-27 12:53:37 +01:00
										 |  |  | 			ctp = kmalloc(sizeof(chan_tab_t), GFP_ATOMIC); | 
					
						
							|  |  |  | 			chan_tab_ptr[i] = ctp; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-02-27 12:53:37 +01:00
										 |  |  | 	spin_unlock_irqrestore(&au1xxx_dbdma_spin_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ctp != NULL) { | 
					
						
							|  |  |  | 		memset(ctp, 0, sizeof(chan_tab_t)); | 
					
						
							|  |  |  | 		ctp->chan_index = chan = i; | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | 		dcp = KSEG1ADDR(AU1550_DBDMA_PHYS_ADDR); | 
					
						
							| 
									
										
										
										
											2010-02-27 12:53:37 +01:00
										 |  |  | 		dcp += (0x0100 * chan); | 
					
						
							|  |  |  | 		ctp->chan_ptr = (au1x_dma_chan_t *)dcp; | 
					
						
							|  |  |  | 		cp = (au1x_dma_chan_t *)dcp; | 
					
						
							|  |  |  | 		ctp->chan_src = stp; | 
					
						
							|  |  |  | 		ctp->chan_dest = dtp; | 
					
						
							|  |  |  | 		ctp->chan_callback = callback; | 
					
						
							|  |  |  | 		ctp->chan_callparam = callparam; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Initialize channel configuration. */ | 
					
						
							|  |  |  | 		i = 0; | 
					
						
							|  |  |  | 		if (stp->dev_intlevel) | 
					
						
							|  |  |  | 			i |= DDMA_CFG_SED; | 
					
						
							|  |  |  | 		if (stp->dev_intpolarity) | 
					
						
							|  |  |  | 			i |= DDMA_CFG_SP; | 
					
						
							|  |  |  | 		if (dtp->dev_intlevel) | 
					
						
							|  |  |  | 			i |= DDMA_CFG_DED; | 
					
						
							|  |  |  | 		if (dtp->dev_intpolarity) | 
					
						
							|  |  |  | 			i |= DDMA_CFG_DP; | 
					
						
							|  |  |  | 		if ((stp->dev_flags & DEV_FLAGS_SYNC) || | 
					
						
							|  |  |  | 			(dtp->dev_flags & DEV_FLAGS_SYNC)) | 
					
						
							|  |  |  | 				i |= DDMA_CFG_SYNC; | 
					
						
							|  |  |  | 		cp->ddma_cfg = i; | 
					
						
							|  |  |  | 		au_sync(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * Return a non-zero value that can be used to find the channel | 
					
						
							|  |  |  | 		 * information in subsequent operations. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		return (u32)(&chan_tab_ptr[chan]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-02-27 12:53:37 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Release devices */ | 
					
						
							|  |  |  | 	stp->dev_flags &= ~DEV_FLAGS_INUSE; | 
					
						
							|  |  |  | 	dtp->dev_flags &= ~DEV_FLAGS_INUSE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | EXPORT_SYMBOL(au1xxx_dbdma_chan_alloc); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Set the device width if source or destination is a FIFO. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * Should be 8, 16, or 32 bits. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | u32 au1xxx_dbdma_set_devwidth(u32 chanid, int bits) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	u32		rv; | 
					
						
							|  |  |  | 	chan_tab_t	*ctp; | 
					
						
							|  |  |  | 	dbdev_tab_t	*stp, *dtp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 	stp = ctp->chan_src; | 
					
						
							|  |  |  | 	dtp = ctp->chan_dest; | 
					
						
							|  |  |  | 	rv = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (stp->dev_flags & DEV_FLAGS_IN) {	/* Source in fifo */ | 
					
						
							|  |  |  | 		rv = stp->dev_devwidth; | 
					
						
							|  |  |  | 		stp->dev_devwidth = bits; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (dtp->dev_flags & DEV_FLAGS_OUT) {	/* Destination out fifo */ | 
					
						
							|  |  |  | 		rv = dtp->dev_devwidth; | 
					
						
							|  |  |  | 		dtp->dev_devwidth = bits; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return rv; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | EXPORT_SYMBOL(au1xxx_dbdma_set_devwidth); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | /* Allocate a descriptor ring, initializing as much as possible. */ | 
					
						
							|  |  |  | u32 au1xxx_dbdma_ring_alloc(u32 chanid, int entries) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int			i; | 
					
						
							|  |  |  | 	u32			desc_base, srcid, destid; | 
					
						
							|  |  |  | 	u32			cmd0, cmd1, src1, dest1; | 
					
						
							|  |  |  | 	u32			src0, dest0; | 
					
						
							|  |  |  | 	chan_tab_t		*ctp; | 
					
						
							|  |  |  | 	dbdev_tab_t		*stp, *dtp; | 
					
						
							|  |  |  | 	au1x_ddma_desc_t	*dp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * I guess we could check this to be within the | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * range of the table...... | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 	stp = ctp->chan_src; | 
					
						
							|  |  |  | 	dtp = ctp->chan_dest; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * The descriptors must be 32-byte aligned.  There is a | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * possibility the allocation will give us such an address, | 
					
						
							|  |  |  | 	 * and if we try that first we are likely to not waste larger | 
					
						
							|  |  |  | 	 * slabs of memory. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	desc_base = (u32)kmalloc(entries * sizeof(au1x_ddma_desc_t), | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 				 GFP_KERNEL|GFP_DMA); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (desc_base == 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (desc_base & 0x1f) { | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * Lost....do it again, allocate extra, and round | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		 * the address base. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		kfree((const void *)desc_base); | 
					
						
							|  |  |  | 		i = entries * sizeof(au1x_ddma_desc_t); | 
					
						
							|  |  |  | 		i += (sizeof(au1x_ddma_desc_t) - 1); | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		desc_base = (u32)kmalloc(i, GFP_KERNEL|GFP_DMA); | 
					
						
							|  |  |  | 		if (desc_base == 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-26 20:39:33 +01:00
										 |  |  | 		ctp->cdb_membase = desc_base; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		desc_base = ALIGN_ADDR(desc_base, sizeof(au1x_ddma_desc_t)); | 
					
						
							| 
									
										
										
										
											2010-01-26 20:39:33 +01:00
										 |  |  | 	} else | 
					
						
							|  |  |  | 		ctp->cdb_membase = desc_base; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dp = (au1x_ddma_desc_t *)desc_base; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Keep track of the base descriptor. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ctp->chan_desc_base = dp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Initialize the rings with as much information as we know. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	srcid = stp->dev_id; | 
					
						
							|  |  |  | 	destid = dtp->dev_id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd0 = cmd1 = src1 = dest1 = 0; | 
					
						
							|  |  |  | 	src0 = dest0 = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cmd0 |= DSCR_CMD0_SID(srcid); | 
					
						
							|  |  |  | 	cmd0 |= DSCR_CMD0_DID(destid); | 
					
						
							|  |  |  | 	cmd0 |= DSCR_CMD0_IE | DSCR_CMD0_CV; | 
					
						
							| 
									
										
										
										
											2005-09-18 01:10:46 +00:00
										 |  |  | 	cmd0 |= DSCR_CMD0_ST(DSCR_CMD0_ST_NOCHANGE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Is it mem to mem transfer? */ | 
					
						
							|  |  |  | 	if (((DSCR_CUSTOM2DEV_ID(srcid) == DSCR_CMD0_THROTTLE) || | 
					
						
							|  |  |  | 	     (DSCR_CUSTOM2DEV_ID(srcid) == DSCR_CMD0_ALWAYS)) && | 
					
						
							|  |  |  | 	    ((DSCR_CUSTOM2DEV_ID(destid) == DSCR_CMD0_THROTTLE) || | 
					
						
							|  |  |  | 	     (DSCR_CUSTOM2DEV_ID(destid) == DSCR_CMD0_ALWAYS))) | 
					
						
							|  |  |  | 		cmd0 |= DSCR_CMD0_MEM; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (stp->dev_devwidth) { | 
					
						
							|  |  |  | 	case 8: | 
					
						
							|  |  |  | 		cmd0 |= DSCR_CMD0_SW(DSCR_CMD0_BYTE); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 16: | 
					
						
							|  |  |  | 		cmd0 |= DSCR_CMD0_SW(DSCR_CMD0_HALFWORD); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 32: | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		cmd0 |= DSCR_CMD0_SW(DSCR_CMD0_WORD); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (dtp->dev_devwidth) { | 
					
						
							|  |  |  | 	case 8: | 
					
						
							|  |  |  | 		cmd0 |= DSCR_CMD0_DW(DSCR_CMD0_BYTE); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 16: | 
					
						
							|  |  |  | 		cmd0 |= DSCR_CMD0_DW(DSCR_CMD0_HALFWORD); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 32: | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		cmd0 |= DSCR_CMD0_DW(DSCR_CMD0_WORD); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If the device is marked as an in/out FIFO, ensure it is | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * set non-coherent. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (stp->dev_flags & DEV_FLAGS_IN) | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		cmd0 |= DSCR_CMD0_SN;		/* Source in FIFO */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (dtp->dev_flags & DEV_FLAGS_OUT) | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		cmd0 |= DSCR_CMD0_DN;		/* Destination out FIFO */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Set up source1.  For now, assume no stride and increment. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * A channel attribute update can change this later. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	switch (stp->dev_tsize) { | 
					
						
							|  |  |  | 	case 1: | 
					
						
							|  |  |  | 		src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE1); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 2: | 
					
						
							|  |  |  | 		src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE2); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 4: | 
					
						
							|  |  |  | 		src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE4); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 8: | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		src1 |= DSCR_SRC1_STS(DSCR_xTS_SIZE8); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | 	/* If source input is FIFO, set static address. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (stp->dev_flags & DEV_FLAGS_IN) { | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		if (stp->dev_flags & DEV_FLAGS_BURSTABLE) | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 			src1 |= DSCR_SRC1_SAM(DSCR_xAM_BURST); | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 			src1 |= DSCR_SRC1_SAM(DSCR_xAM_STATIC); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	if (stp->dev_physaddr) | 
					
						
							|  |  |  | 		src0 = stp->dev_physaddr; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Set up dest1.  For now, assume no stride and increment. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * A channel attribute update can change this later. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	switch (dtp->dev_tsize) { | 
					
						
							|  |  |  | 	case 1: | 
					
						
							|  |  |  | 		dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE1); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 2: | 
					
						
							|  |  |  | 		dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE2); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 4: | 
					
						
							|  |  |  | 		dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE4); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 8: | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		dest1 |= DSCR_DEST1_DTS(DSCR_xTS_SIZE8); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* If destination output is FIFO, set static address. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (dtp->dev_flags & DEV_FLAGS_OUT) { | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		if (dtp->dev_flags & DEV_FLAGS_BURSTABLE) | 
					
						
							|  |  |  | 			dest1 |= DSCR_DEST1_DAM(DSCR_xAM_BURST); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			dest1 |= DSCR_DEST1_DAM(DSCR_xAM_STATIC); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	if (dtp->dev_physaddr) | 
					
						
							|  |  |  | 		dest0 = dtp->dev_physaddr; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		printk(KERN_DEBUG "did:%x sid:%x cmd0:%x cmd1:%x source0:%x " | 
					
						
							|  |  |  | 				  "source1:%x dest0:%x dest1:%x\n", | 
					
						
							|  |  |  | 				  dtp->dev_id, stp->dev_id, cmd0, cmd1, src0, | 
					
						
							|  |  |  | 				  src1, dest0, dest1); | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	for (i = 0; i < entries; i++) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dp->dscr_cmd0 = cmd0; | 
					
						
							|  |  |  | 		dp->dscr_cmd1 = cmd1; | 
					
						
							|  |  |  | 		dp->dscr_source0 = src0; | 
					
						
							|  |  |  | 		dp->dscr_source1 = src1; | 
					
						
							|  |  |  | 		dp->dscr_dest0 = dest0; | 
					
						
							|  |  |  | 		dp->dscr_dest1 = dest1; | 
					
						
							|  |  |  | 		dp->dscr_stat = 0; | 
					
						
							| 
									
										
										
										
											2005-09-18 01:10:46 +00:00
										 |  |  | 		dp->sw_context = 0; | 
					
						
							|  |  |  | 		dp->sw_status = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dp->dscr_nxtptr = DSCR_NXTPTR(virt_to_phys(dp + 1)); | 
					
						
							|  |  |  | 		dp++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Make last descrptor point to the first. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dp--; | 
					
						
							|  |  |  | 	dp->dscr_nxtptr = DSCR_NXTPTR(virt_to_phys(ctp->chan_desc_base)); | 
					
						
							|  |  |  | 	ctp->get_ptr = ctp->put_ptr = ctp->cur_ptr = ctp->chan_desc_base; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	return (u32)ctp->chan_desc_base; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | EXPORT_SYMBOL(au1xxx_dbdma_ring_alloc); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Put a source buffer into the DMA ring. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * This updates the source pointer and byte count.  Normally used | 
					
						
							|  |  |  |  * for memory to fifo transfers. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-10-13 20:22:35 +02:00
										 |  |  | u32 au1xxx_dbdma_put_source(u32 chanid, dma_addr_t buf, int nbytes, u32 flags) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	chan_tab_t		*ctp; | 
					
						
							|  |  |  | 	au1x_ddma_desc_t	*dp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * I guess we could check this to be within the | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * range of the table...... | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	ctp = *(chan_tab_t **)chanid; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * We should have multiple callers for a particular channel, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * an interrupt doesn't affect this pointer nor the descriptor, | 
					
						
							|  |  |  | 	 * so no locking should be needed. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	dp = ctp->put_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If the descriptor is valid, we are way ahead of the DMA | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * engine, so just return an error condition. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	if (dp->dscr_cmd0 & DSCR_CMD0_V) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Load up buffer address and byte count. */ | 
					
						
							| 
									
										
										
										
											2009-10-13 20:22:35 +02:00
										 |  |  | 	dp->dscr_source0 = buf & ~0UL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dp->dscr_cmd1 = nbytes; | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Check flags */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	if (flags & DDMA_FLAGS_IE) | 
					
						
							|  |  |  | 		dp->dscr_cmd0 |= DSCR_CMD0_IE; | 
					
						
							|  |  |  | 	if (flags & DDMA_FLAGS_NOIE) | 
					
						
							|  |  |  | 		dp->dscr_cmd0 &= ~DSCR_CMD0_IE; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * There is an errata on the Au1200/Au1550 parts that could result | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	 * in "stale" data being DMA'ed. It has to do with the snoop logic on | 
					
						
							|  |  |  | 	 * the cache eviction buffer.  DMA_NONCOHERENT is on by default for | 
					
						
							|  |  |  | 	 * these parts. If it is fixed in the future, these dma_cache_inv will | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	 * just be nothing more than empty macros. See io.h. | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-03-01 07:54:50 +00:00
										 |  |  | 	dma_cache_wback_inv((unsigned long)buf, nbytes); | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	dp->dscr_cmd0 |= DSCR_CMD0_V;	/* Let it rip */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	au_sync(); | 
					
						
							| 
									
										
										
										
											2009-12-13 12:40:39 +01:00
										 |  |  | 	dma_cache_wback_inv((unsigned long)dp, sizeof(*dp)); | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	ctp->chan_ptr->ddma_dbell = 0; | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | 	/* Get next descriptor pointer. */ | 
					
						
							| 
									
										
										
										
											2005-09-18 01:10:46 +00:00
										 |  |  | 	ctp->put_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Return something non-zero. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return nbytes; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-10-13 20:22:34 +02:00
										 |  |  | EXPORT_SYMBOL(au1xxx_dbdma_put_source); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Put a destination buffer into the DMA ring.
 | 
					
						
							|  |  |  |  * This updates the destination pointer and byte count.  Normally used | 
					
						
							|  |  |  |  * to place an empty buffer into the ring for fifo to memory transfers. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-10-13 20:22:35 +02:00
										 |  |  | u32 au1xxx_dbdma_put_dest(u32 chanid, dma_addr_t buf, int nbytes, u32 flags) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	chan_tab_t		*ctp; | 
					
						
							|  |  |  | 	au1x_ddma_desc_t	*dp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* I guess we could check this to be within the
 | 
					
						
							|  |  |  | 	 * range of the table...... | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* We should have multiple callers for a particular channel,
 | 
					
						
							|  |  |  | 	 * an interrupt doesn't affect this pointer nor the descriptor, | 
					
						
							|  |  |  | 	 * so no locking should be needed. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	dp = ctp->put_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If the descriptor is valid, we are way ahead of the DMA
 | 
					
						
							|  |  |  | 	 * engine, so just return an error condition. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (dp->dscr_cmd0 & DSCR_CMD0_V) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	/* Load up buffer address and byte count */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Check flags  */ | 
					
						
							|  |  |  | 	if (flags & DDMA_FLAGS_IE) | 
					
						
							|  |  |  | 		dp->dscr_cmd0 |= DSCR_CMD0_IE; | 
					
						
							|  |  |  | 	if (flags & DDMA_FLAGS_NOIE) | 
					
						
							|  |  |  | 		dp->dscr_cmd0 &= ~DSCR_CMD0_IE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-13 20:22:35 +02:00
										 |  |  | 	dp->dscr_dest0 = buf & ~0UL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dp->dscr_cmd1 = nbytes; | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	printk(KERN_DEBUG "cmd0:%x cmd1:%x source0:%x source1:%x dest0:%x dest1:%x\n", | 
					
						
							|  |  |  | 			  dp->dscr_cmd0, dp->dscr_cmd1, dp->dscr_source0, | 
					
						
							|  |  |  | 			  dp->dscr_source1, dp->dscr_dest0, dp->dscr_dest1); | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * There is an errata on the Au1200/Au1550 parts that could result in | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	 * "stale" data being DMA'ed. It has to do with the snoop logic on the | 
					
						
							|  |  |  | 	 * cache eviction buffer.  DMA_NONCOHERENT is on by default for these | 
					
						
							|  |  |  | 	 * parts. If it is fixed in the future, these dma_cache_inv will just | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	 * be nothing more than empty macros. See io.h. | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2007-10-11 23:46:15 +01:00
										 |  |  | 	dma_cache_inv((unsigned long)buf, nbytes); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dp->dscr_cmd0 |= DSCR_CMD0_V;	/* Let it rip */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	au_sync(); | 
					
						
							| 
									
										
										
										
											2009-12-13 12:40:39 +01:00
										 |  |  | 	dma_cache_wback_inv((unsigned long)dp, sizeof(*dp)); | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	ctp->chan_ptr->ddma_dbell = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | 	/* Get next descriptor pointer. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ctp->put_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Return something non-zero. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return nbytes; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-10-13 20:22:34 +02:00
										 |  |  | EXPORT_SYMBOL(au1xxx_dbdma_put_dest); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Get a destination buffer into the DMA ring. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * Normally used to get a full buffer from the ring during fifo | 
					
						
							|  |  |  |  * to memory transfers.  This does not set the valid bit, you will | 
					
						
							|  |  |  |  * have to put another destination buffer to keep the DMA going. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | u32 au1xxx_dbdma_get_dest(u32 chanid, void **buf, int *nbytes) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	chan_tab_t		*ctp; | 
					
						
							|  |  |  | 	au1x_ddma_desc_t	*dp; | 
					
						
							|  |  |  | 	u32			rv; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * I guess we could check this to be within the | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * range of the table...... | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * We should have multiple callers for a particular channel, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * an interrupt doesn't affect this pointer nor the descriptor, | 
					
						
							|  |  |  | 	 * so no locking should be needed. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	dp = ctp->get_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If the descriptor is valid, we are way ahead of the DMA | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 * engine, so just return an error condition. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (dp->dscr_cmd0 & DSCR_CMD0_V) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Return buffer address and byte count. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	*buf = (void *)(phys_to_virt(dp->dscr_dest0)); | 
					
						
							|  |  |  | 	*nbytes = dp->dscr_cmd1; | 
					
						
							|  |  |  | 	rv = dp->dscr_stat; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | 	/* Get next descriptor pointer. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ctp->get_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Return something non-zero. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return rv; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2006-06-23 12:00:21 +02:00
										 |  |  | EXPORT_SYMBOL_GPL(au1xxx_dbdma_get_dest); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | void au1xxx_dbdma_stop(u32 chanid) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	chan_tab_t	*ctp; | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	au1x_dma_chan_t *cp; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int halt_timeout = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cp = ctp->chan_ptr; | 
					
						
							|  |  |  | 	cp->ddma_cfg &= ~DDMA_CFG_EN;	/* Disable channel */ | 
					
						
							|  |  |  | 	au_sync(); | 
					
						
							|  |  |  | 	while (!(cp->ddma_stat & DDMA_STAT_H)) { | 
					
						
							|  |  |  | 		udelay(1); | 
					
						
							|  |  |  | 		halt_timeout++; | 
					
						
							|  |  |  | 		if (halt_timeout > 100) { | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 			printk(KERN_WARNING "warning: DMA channel won't halt\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* clear current desc valid and doorbell */ | 
					
						
							|  |  |  | 	cp->ddma_stat |= (DDMA_STAT_DB | DDMA_STAT_V); | 
					
						
							|  |  |  | 	au_sync(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | EXPORT_SYMBOL(au1xxx_dbdma_stop); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Start using the current descriptor pointer.  If the DBDMA encounters | 
					
						
							|  |  |  |  * a non-valid descriptor, it will stop.  In this case, we can just | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * continue by adding a buffer to the list and starting again. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | void au1xxx_dbdma_start(u32 chanid) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	chan_tab_t	*ctp; | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	au1x_dma_chan_t *cp; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 	cp = ctp->chan_ptr; | 
					
						
							|  |  |  | 	cp->ddma_desptr = virt_to_phys(ctp->cur_ptr); | 
					
						
							|  |  |  | 	cp->ddma_cfg |= DDMA_CFG_EN;	/* Enable channel */ | 
					
						
							|  |  |  | 	au_sync(); | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	cp->ddma_dbell = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	au_sync(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | EXPORT_SYMBOL(au1xxx_dbdma_start); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | void au1xxx_dbdma_reset(u32 chanid) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	chan_tab_t		*ctp; | 
					
						
							|  |  |  | 	au1x_ddma_desc_t	*dp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	au1xxx_dbdma_stop(chanid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 	ctp->get_ptr = ctp->put_ptr = ctp->cur_ptr = ctp->chan_desc_base; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Run through the descriptors and reset the valid indicator. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dp = ctp->chan_desc_base; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	do { | 
					
						
							|  |  |  | 		dp->dscr_cmd0 &= ~DSCR_CMD0_V; | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * Reset our software status -- this is used to determine | 
					
						
							|  |  |  | 		 * if a descriptor is in use by upper level software. Since | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 		 * posting can reset 'V' bit. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		dp->sw_status = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dp = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); | 
					
						
							|  |  |  | 	} while (dp != ctp->chan_desc_base); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | EXPORT_SYMBOL(au1xxx_dbdma_reset); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | u32 au1xxx_get_dma_residue(u32 chanid) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	chan_tab_t	*ctp; | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	au1x_dma_chan_t *cp; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32		rv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 	cp = ctp->chan_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* This is only valid if the channel is stopped. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	rv = cp->ddma_bytecnt; | 
					
						
							|  |  |  | 	au_sync(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return rv; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2006-06-23 12:00:21 +02:00
										 |  |  | EXPORT_SYMBOL_GPL(au1xxx_get_dma_residue); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | void au1xxx_dbdma_chan_free(u32 chanid) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	chan_tab_t	*ctp; | 
					
						
							|  |  |  | 	dbdev_tab_t	*stp, *dtp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 	stp = ctp->chan_src; | 
					
						
							|  |  |  | 	dtp = ctp->chan_dest; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	au1xxx_dbdma_stop(chanid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-26 20:39:33 +01:00
										 |  |  | 	kfree((void *)ctp->cdb_membase); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	stp->dev_flags &= ~DEV_FLAGS_INUSE; | 
					
						
							|  |  |  | 	dtp->dev_flags &= ~DEV_FLAGS_INUSE; | 
					
						
							|  |  |  | 	chan_tab_ptr[ctp->chan_index] = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	kfree(ctp); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | EXPORT_SYMBOL(au1xxx_dbdma_chan_free); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | static irqreturn_t dbdma_interrupt(int irq, void *dev_id) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-03-01 07:54:50 +00:00
										 |  |  | 	u32 intstat; | 
					
						
							|  |  |  | 	u32 chan_index; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	chan_tab_t		*ctp; | 
					
						
							|  |  |  | 	au1x_ddma_desc_t	*dp; | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	au1x_dma_chan_t *cp; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	intstat = dbdma_gptr->ddma_intstat; | 
					
						
							|  |  |  | 	au_sync(); | 
					
						
							| 
									
										
										
										
											2007-12-05 19:08:24 +03:00
										 |  |  | 	chan_index = __ffs(intstat); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ctp = chan_tab_ptr[chan_index]; | 
					
						
							|  |  |  | 	cp = ctp->chan_ptr; | 
					
						
							|  |  |  | 	dp = ctp->cur_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Reset interrupt. */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	cp->ddma_irq = 0; | 
					
						
							|  |  |  | 	au_sync(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ctp->chan_callback) | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		ctp->chan_callback(irq, ctp->chan_callparam); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ctp->cur_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); | 
					
						
							| 
									
										
										
										
											2005-03-01 07:54:50 +00:00
										 |  |  | 	return IRQ_RETVAL(1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | void au1xxx_dbdma_dump(u32 chanid) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	chan_tab_t	 *ctp; | 
					
						
							|  |  |  | 	au1x_ddma_desc_t *dp; | 
					
						
							|  |  |  | 	dbdev_tab_t	 *stp, *dtp; | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | 	au1x_dma_chan_t	 *cp; | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	u32 i		 = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 	stp = ctp->chan_src; | 
					
						
							|  |  |  | 	dtp = ctp->chan_dest; | 
					
						
							|  |  |  | 	cp = ctp->chan_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-06 18:47:13 +01:00
										 |  |  | 	printk(KERN_DEBUG "Chan %x, stp %x (dev %d)  dtp %x (dev %d)\n", | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 			  (u32)ctp, (u32)stp, stp - dbdev_tab, (u32)dtp, | 
					
						
							|  |  |  | 			  dtp - dbdev_tab); | 
					
						
							|  |  |  | 	printk(KERN_DEBUG "desc base %x, get %x, put %x, cur %x\n", | 
					
						
							|  |  |  | 			  (u32)(ctp->chan_desc_base), (u32)(ctp->get_ptr), | 
					
						
							|  |  |  | 			  (u32)(ctp->put_ptr), (u32)(ctp->cur_ptr)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	printk(KERN_DEBUG "dbdma chan %x\n", (u32)cp); | 
					
						
							|  |  |  | 	printk(KERN_DEBUG "cfg %08x, desptr %08x, statptr %08x\n", | 
					
						
							|  |  |  | 			  cp->ddma_cfg, cp->ddma_desptr, cp->ddma_statptr); | 
					
						
							|  |  |  | 	printk(KERN_DEBUG "dbell %08x, irq %08x, stat %08x, bytecnt %08x\n", | 
					
						
							|  |  |  | 			  cp->ddma_dbell, cp->ddma_irq, cp->ddma_stat, | 
					
						
							|  |  |  | 			  cp->ddma_bytecnt); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Run through the descriptors */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	dp = ctp->chan_desc_base; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	do { | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 		printk(KERN_DEBUG "Dp[%d]= %08x, cmd0 %08x, cmd1 %08x\n", | 
					
						
							|  |  |  | 				  i++, (u32)dp, dp->dscr_cmd0, dp->dscr_cmd1); | 
					
						
							|  |  |  | 		printk(KERN_DEBUG "src0 %08x, src1 %08x, dest0 %08x, dest1 %08x\n", | 
					
						
							|  |  |  | 				  dp->dscr_source0, dp->dscr_source1, | 
					
						
							|  |  |  | 				  dp->dscr_dest0, dp->dscr_dest1); | 
					
						
							|  |  |  | 		printk(KERN_DEBUG "stat %08x, nxtptr %08x\n", | 
					
						
							|  |  |  | 				  dp->dscr_stat, dp->dscr_nxtptr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		dp = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); | 
					
						
							|  |  |  | 	} while (dp != ctp->chan_desc_base); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | /* Put a descriptor into the DMA ring.
 | 
					
						
							|  |  |  |  * This updates the source/destination pointers and byte count. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | u32 au1xxx_dbdma_put_dscr(u32 chanid, au1x_ddma_desc_t *dscr) | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	chan_tab_t *ctp; | 
					
						
							|  |  |  | 	au1x_ddma_desc_t *dp; | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	u32 nbytes = 0; | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * I guess we could check this to be within the | 
					
						
							|  |  |  | 	 * range of the table...... | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	ctp = *((chan_tab_t **)chanid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * We should have multiple callers for a particular channel, | 
					
						
							|  |  |  | 	 * an interrupt doesn't affect this pointer nor the descriptor, | 
					
						
							|  |  |  | 	 * so no locking should be needed. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	dp = ctp->put_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If the descriptor is valid, we are way ahead of the DMA | 
					
						
							|  |  |  | 	 * engine, so just return an error condition. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	if (dp->dscr_cmd0 & DSCR_CMD0_V) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Load up buffer addresses and byte count. */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	dp->dscr_dest0 = dscr->dscr_dest0; | 
					
						
							|  |  |  | 	dp->dscr_source0 = dscr->dscr_source0; | 
					
						
							|  |  |  | 	dp->dscr_dest1 = dscr->dscr_dest1; | 
					
						
							|  |  |  | 	dp->dscr_source1 = dscr->dscr_source1; | 
					
						
							|  |  |  | 	dp->dscr_cmd1 = dscr->dscr_cmd1; | 
					
						
							|  |  |  | 	nbytes = dscr->dscr_cmd1; | 
					
						
							|  |  |  | 	/* Allow the caller to specifiy if an interrupt is generated */ | 
					
						
							|  |  |  | 	dp->dscr_cmd0 &= ~DSCR_CMD0_IE; | 
					
						
							|  |  |  | 	dp->dscr_cmd0 |= dscr->dscr_cmd0 | DSCR_CMD0_V; | 
					
						
							|  |  |  | 	ctp->chan_ptr->ddma_dbell = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | 	/* Get next descriptor pointer. */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	ctp->put_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	/* Return something non-zero. */ | 
					
						
							| 
									
										
										
										
											2005-03-01 06:33:16 +00:00
										 |  |  | 	return nbytes; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-14 20:33:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | static unsigned long alchemy_dbdma_pm_data[NUM_DBDMA_CHANS + 1][6]; | 
					
						
							| 
									
										
										
										
											2010-04-14 20:33:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | static int alchemy_dbdma_suspend(void) | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | 	void __iomem *addr; | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | 	addr = (void __iomem *)KSEG1ADDR(AU1550_DBDMA_CONF_PHYS_ADDR); | 
					
						
							|  |  |  | 	alchemy_dbdma_pm_data[0][0] = __raw_readl(addr + 0x00); | 
					
						
							|  |  |  | 	alchemy_dbdma_pm_data[0][1] = __raw_readl(addr + 0x04); | 
					
						
							|  |  |  | 	alchemy_dbdma_pm_data[0][2] = __raw_readl(addr + 0x08); | 
					
						
							|  |  |  | 	alchemy_dbdma_pm_data[0][3] = __raw_readl(addr + 0x0c); | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* save channel configurations */ | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | 	addr = (void __iomem *)KSEG1ADDR(AU1550_DBDMA_PHYS_ADDR); | 
					
						
							|  |  |  | 	for (i = 1; i <= NUM_DBDMA_CHANS; i++) { | 
					
						
							|  |  |  | 		alchemy_dbdma_pm_data[i][0] = __raw_readl(addr + 0x00); | 
					
						
							|  |  |  | 		alchemy_dbdma_pm_data[i][1] = __raw_readl(addr + 0x04); | 
					
						
							|  |  |  | 		alchemy_dbdma_pm_data[i][2] = __raw_readl(addr + 0x08); | 
					
						
							|  |  |  | 		alchemy_dbdma_pm_data[i][3] = __raw_readl(addr + 0x0c); | 
					
						
							|  |  |  | 		alchemy_dbdma_pm_data[i][4] = __raw_readl(addr + 0x10); | 
					
						
							|  |  |  | 		alchemy_dbdma_pm_data[i][5] = __raw_readl(addr + 0x14); | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* halt channel */ | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | 		__raw_writel(alchemy_dbdma_pm_data[i][0] & ~1, addr + 0x00); | 
					
						
							|  |  |  | 		wmb(); | 
					
						
							|  |  |  | 		while (!(__raw_readl(addr + 0x14) & 1)) | 
					
						
							|  |  |  | 			wmb(); | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		addr += 0x100;	/* next channel base */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* disable channel interrupts */ | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | 	addr = (void __iomem *)KSEG1ADDR(AU1550_DBDMA_CONF_PHYS_ADDR); | 
					
						
							|  |  |  | 	__raw_writel(0, addr + 0x0c); | 
					
						
							|  |  |  | 	wmb(); | 
					
						
							| 
									
										
										
										
											2010-04-14 20:33:44 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | static void alchemy_dbdma_resume(void) | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | 	void __iomem *addr; | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | 	addr = (void __iomem *)KSEG1ADDR(AU1550_DBDMA_CONF_PHYS_ADDR); | 
					
						
							|  |  |  | 	__raw_writel(alchemy_dbdma_pm_data[0][0], addr + 0x00); | 
					
						
							|  |  |  | 	__raw_writel(alchemy_dbdma_pm_data[0][1], addr + 0x04); | 
					
						
							|  |  |  | 	__raw_writel(alchemy_dbdma_pm_data[0][2], addr + 0x08); | 
					
						
							|  |  |  | 	__raw_writel(alchemy_dbdma_pm_data[0][3], addr + 0x0c); | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* restore channel configurations */ | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | 	addr = (void __iomem *)KSEG1ADDR(AU1550_DBDMA_PHYS_ADDR); | 
					
						
							|  |  |  | 	for (i = 1; i <= NUM_DBDMA_CHANS; i++) { | 
					
						
							|  |  |  | 		__raw_writel(alchemy_dbdma_pm_data[i][0], addr + 0x00); | 
					
						
							|  |  |  | 		__raw_writel(alchemy_dbdma_pm_data[i][1], addr + 0x04); | 
					
						
							|  |  |  | 		__raw_writel(alchemy_dbdma_pm_data[i][2], addr + 0x08); | 
					
						
							|  |  |  | 		__raw_writel(alchemy_dbdma_pm_data[i][3], addr + 0x0c); | 
					
						
							|  |  |  | 		__raw_writel(alchemy_dbdma_pm_data[i][4], addr + 0x10); | 
					
						
							|  |  |  | 		__raw_writel(alchemy_dbdma_pm_data[i][5], addr + 0x14); | 
					
						
							|  |  |  | 		wmb(); | 
					
						
							| 
									
										
										
										
											2008-12-21 09:26:26 +01:00
										 |  |  | 		addr += 0x100;	/* next channel base */ | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-04-14 20:33:44 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | static struct syscore_ops alchemy_dbdma_syscore_ops = { | 
					
						
							| 
									
										
										
										
											2010-04-14 20:33:44 +02:00
										 |  |  | 	.suspend	= alchemy_dbdma_suspend, | 
					
						
							|  |  |  | 	.resume		= alchemy_dbdma_resume, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | static int __init dbdma_setup(unsigned int irq, dbdev_tab_t *idtable) | 
					
						
							| 
									
										
										
										
											2009-10-07 20:15:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dbdev_tab = kzalloc(sizeof(dbdev_tab_t) * DBDEV_TAB_SIZE, GFP_KERNEL); | 
					
						
							|  |  |  | 	if (!dbdev_tab) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(dbdev_tab, idtable, 32 * sizeof(dbdev_tab_t)); | 
					
						
							|  |  |  | 	for (ret = 32; ret < DBDEV_TAB_SIZE; ret++) | 
					
						
							|  |  |  | 		dbdev_tab[ret].dev_id = ~0; | 
					
						
							| 
									
										
										
										
											2009-10-07 20:15:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dbdma_gptr->ddma_config = 0; | 
					
						
							|  |  |  | 	dbdma_gptr->ddma_throttle = 0; | 
					
						
							|  |  |  | 	dbdma_gptr->ddma_inten = 0xffff; | 
					
						
							|  |  |  | 	au_sync(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-22 14:38:03 +00:00
										 |  |  | 	ret = request_irq(irq, dbdma_interrupt, 0, "dbdma", (void *)dbdma_gptr); | 
					
						
							| 
									
										
										
										
											2009-10-07 20:15:15 +02:00
										 |  |  | 	if (ret) | 
					
						
							|  |  |  | 		printk(KERN_ERR "Cannot grab DBDMA interrupt!\n"); | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		dbdma_initialized = 1; | 
					
						
							| 
									
										
										
										
											2011-05-08 10:42:16 +02:00
										 |  |  | 		register_syscore_ops(&alchemy_dbdma_syscore_ops); | 
					
						
							| 
									
										
										
										
											2009-10-07 20:15:15 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | static int __init alchemy_dbdma_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	switch (alchemy_get_cputype()) { | 
					
						
							|  |  |  | 	case ALCHEMY_CPU_AU1550: | 
					
						
							|  |  |  | 		return dbdma_setup(AU1550_DDMA_INT, au1550_dbdev_tab); | 
					
						
							|  |  |  | 	case ALCHEMY_CPU_AU1200: | 
					
						
							|  |  |  | 		return dbdma_setup(AU1200_DDMA_INT, au1200_dbdev_tab); | 
					
						
							| 
									
										
										
										
											2011-11-01 20:03:30 +01:00
										 |  |  | 	case ALCHEMY_CPU_AU1300: | 
					
						
							|  |  |  | 		return dbdma_setup(AU1300_DDMA_INT, au1300_dbdev_tab); | 
					
						
							| 
									
										
										
										
											2011-08-12 11:39:42 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | subsys_initcall(alchemy_dbdma_init); |