gbasys

view src/dma.c @ 6:f77381b12726

palette
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 04 Sep 2012 05:05:50 +0300
parents 875ef6085efc
children 72c6429ae953
line source
1 /*
2 Copyright 2004 John Tsiombikas <nuclear@siggraph.org>
4 This file is part of gbasys, a library for GameBoy Advance development.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
21 #include "config.h"
22 #include "dma.h"
24 /* DMA Options */
25 #define DMA_ENABLE 0x80000000
26 #define DMA_INT_ENABLE 0x40000000
27 #define DMA_TIMING_IMMED 0x00000000
28 #define DMA_TIMING_VBLANK 0x10000000
29 #define DMA_TIMING_HBLANK 0x20000000
30 #define DMA_TIMING_DISPSYNC 0x30000000
31 #define DMA_16 0x00000000
32 #define DMA_32 0x04000000
33 #define DMA_REPEAT 0x02000000
34 #define DMA_SRC_INC 0x00000000
35 #define DMA_SRC_DEC 0x00800000
36 #define DMA_SRC_FIX 0x01000000
37 #define DMA_DST_INC 0x00000000
38 #define DMA_DST_DEC 0x00200000
39 #define DMA_DST_FIX1 0x00400000
40 #define DMA_DST_RELOAD 0x00600000
42 /* DMA Register Parts */
43 #define DMA_SRC 0
44 #define DMA_DST 1
45 #define DMA_CTRL 2
47 static volatile unsigned long *reg_dma[4] = {(void*)0x040000b0, (void*)0x040000bc, (void*)0x040000c8, (void*)0x040000d4 };
49 /* --- perform a copy of words or halfwords using DMA --- */
51 void dma_copy32(int channel, void *dst, void *src, int words)
52 {
53 reg_dma[channel][DMA_SRC] = (unsigned long)src;
54 reg_dma[channel][DMA_DST] = (unsigned long)dst;
55 reg_dma[channel][DMA_CTRL] = words | DMA_TIMING_IMMED | DMA_32 | DMA_ENABLE;
56 }
58 void dma_copy16(int channel, void *dst, void *src, int halfwords)
59 {
60 reg_dma[channel][DMA_SRC] = (unsigned long)src;
61 reg_dma[channel][DMA_DST] = (unsigned long)dst;
62 reg_dma[channel][DMA_CTRL] = halfwords | DMA_TIMING_IMMED | DMA_16 | DMA_ENABLE;
63 }
65 /* --- fill a buffer with an ammount of words and halfwords using DMA --- */
67 void dma_fill32(int channel, void *dst, unsigned long val, int words)
68 {
69 unsigned long valmem = val;
70 reg_dma[channel][DMA_SRC] = (unsigned long)&valmem;
71 reg_dma[channel][DMA_DST] = (unsigned long)dst;
72 reg_dma[channel][DMA_CTRL] = words | DMA_SRC_FIX | DMA_TIMING_IMMED | DMA_32 | DMA_ENABLE;
73 }
75 void dma_fill16(int channel, void *dst, unsigned short val, int halfwords)
76 {
77 unsigned short valmem = val;
78 reg_dma[channel][DMA_SRC] = (unsigned long)&valmem;
79 reg_dma[channel][DMA_DST] = (unsigned long)dst;
80 reg_dma[channel][DMA_CTRL] = halfwords | DMA_SRC_FIX | DMA_TIMING_IMMED | DMA_16 | DMA_ENABLE;
81 }