patch-2.4.26 linux-2.4.26/arch/ppc/kernel/ppc4xx_stbdma.c
Next file: linux-2.4.26/arch/ppc/kernel/ppc8260_pic.c
Previous file: linux-2.4.26/arch/ppc/kernel/ocp.c
Back to the patch index
Back to the overall index
- Lines: 135
- Date:
2004-04-14 06:05:27.000000000 -0700
- Orig file:
linux-2.4.25/arch/ppc/kernel/ppc4xx_stbdma.c
- Orig date:
1969-12-31 16:00:00.000000000 -0800
diff -urN linux-2.4.25/arch/ppc/kernel/ppc4xx_stbdma.c linux-2.4.26/arch/ppc/kernel/ppc4xx_stbdma.c
@@ -0,0 +1,134 @@
+/*
+ * arch/ppc/kernel/ppc4xx_stbdma.c
+ *
+ * BRIEF MODULE DESCRIPTION
+ * IBM PPC4xx STBxxxx DMA Controller Functions
+ *
+ * Copyright 2002 MontaVista Software Inc.
+ * Author: MontaVista Software, Inc.
+ * Armin Kuster <akuster@mvista.com>
+ *
+ * Based on ppc4xx_dma.c by
+ * ppopov@mvista.com or source@mvista.
+ *
+ * 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.
+ *
+ * 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.
+ */
+
+#include <linux/config.h>
+#include <linux/kernel.h>
+#include <asm/system.h>
+#include <asm/io.h>
+#include <linux/mm.h>
+#include <linux/miscdevice.h>
+#include <linux/init.h>
+#include <linux/module.h>
+
+#include <asm/ppc4xx_dma.h>
+
+int
+ppc4xx_clr_dma_status(unsigned int dmanr)
+{
+ unsigned int control;
+ ppc_dma_ch_t *p_dma_ch = &dma_channels[dmanr];
+
+ p_dma_ch->int_enable = 1;
+
+ switch (dmanr) {
+ case 0:
+ control = DMA_CS0 | DMA_CH0_ERR | DMA_CT0;
+ break;
+ case 1:
+ control = DMA_CS1 | DMA_CH1_ERR | DMA_CT1;
+ break;
+ case 2:
+ control = DMA_CS2 | DMA_CH2_ERR | DMA_CT2;
+ break;
+ case 3:
+ control = DMA_CS3 | DMA_CH3_ERR | DMA_CT3;
+ break;
+ default:
+#ifdef DEBUG_4xxDMA
+ printk("ppc4xx_clr_dma_status: bad channel: %d\n", dmanr);
+#endif
+ return DMA_STATUS_BAD_CHANNEL;
+ }
+ mtdcr(DCRN_DMASR, control);
+ return DMA_STATUS_GOOD;
+}
+
+/*
+ * Maps a given port to a one of the dma
+ * channels
+ */
+int
+ppc4xx_map_dma_port(unsigned int dmanr, unsigned int ocp_dma,short dma_chan)
+{
+ unsigned int map;
+ int connect_port_to_chan, select;
+
+ ppc_dma_ch_t *p_dma_ch = &dma_channels[dmanr];
+
+ connect_port_to_chan = ((ocp_dma & 0x7)*4);
+
+ select = ocp_dma >> 3;
+ switch (select) {
+ case 0:
+ map = mfdcr(DCRN_DMAS1);
+ map |= (connect_port_to_chan << dma_chan); /* */
+ mtdcr(DCRN_DMAS1, map);
+ break;
+ case 1:
+ map = mfdcr(DCRN_DMAS2);
+ map |= (connect_port_to_chan << dma_chan);
+ mtdcr(DCRN_DMAS2, map);
+ break;
+ default:
+#ifdef DEBUG_4xxDMA
+ printk("map_dma_port: bad channel: %d\n", dmanr);
+#endif
+ return DMA_STATUS_BAD_CHANNEL;
+ }
+ return DMA_STATUS_GOOD;
+}
+
+int
+ppc4xx_disable_dma_port(unsigned int dmanr, unsigned int ocp_dma,short dma_chan)
+{
+ unsigned int map;
+ int connect_port_to_chan, select;
+
+ ppc_dma_ch_t *p_dma_ch = &dma_channels[dmanr];
+
+ connect_port_to_chan = ((ocp_dma & 0x7)*4);
+
+ select = ocp_dma >> 3;
+ switch (select) {
+ case 0:
+ map = mfdcr(DCRN_DMAS1);
+ map &= ~(connect_port_to_chan << dma_chan); /* */
+ mtdcr(DCRN_DMAS1, map);
+ break;
+ case 1:
+ map = mfdcr(DCRN_DMAS2);
+ map &= ~(connect_port_to_chan << dma_chan);
+ mtdcr(DCRN_DMAS2, map);
+ break;
+ default:
+#ifdef DEBUG_4xxDMA
+ printk("disable_dma_port: bad channel: %d\n", dmanr);
+#endif
+ return DMA_STATUS_BAD_CHANNEL;
+ }
+ return DMA_STATUS_GOOD;
+}
+
+EXPORT_SYMBOL(ppc4xx_disable_dma_port);
+EXPORT_SYMBOL(ppc4xx_map_dma_port);
+EXPORT_SYMBOL(ppc4xx_clr_dma_status);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)