Statistics
| Branch: | Revision:

root / hw / soc_dma.h @ e7b43f7e

History | View | Annotate | Download (3.6 kB)

1 afbb5194 balrog
/*
2 afbb5194 balrog
 * On-chip DMA controller framework.
3 afbb5194 balrog
 *
4 afbb5194 balrog
 * Copyright (C) 2008 Nokia Corporation
5 afbb5194 balrog
 * Written by Andrzej Zaborowski <andrew@openedhand.com>
6 afbb5194 balrog
 *
7 afbb5194 balrog
 * This program is free software; you can redistribute it and/or
8 afbb5194 balrog
 * modify it under the terms of the GNU General Public License as
9 afbb5194 balrog
 * published by the Free Software Foundation; either version 2 or
10 afbb5194 balrog
 * (at your option) version 3 of the License.
11 afbb5194 balrog
 *
12 afbb5194 balrog
 * This program is distributed in the hope that it will be useful,
13 afbb5194 balrog
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 afbb5194 balrog
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 afbb5194 balrog
 * GNU General Public License for more details.
16 afbb5194 balrog
 *
17 fad6cb1a aurel32
 * You should have received a copy of the GNU General Public License along
18 8167ee88 Blue Swirl
 * with this program; if not, see <http://www.gnu.org/licenses/>.
19 afbb5194 balrog
 */
20 afbb5194 balrog
21 afbb5194 balrog
struct soc_dma_s;
22 afbb5194 balrog
struct soc_dma_ch_s;
23 afbb5194 balrog
typedef void (*soc_dma_io_t)(void *opaque, uint8_t *buf, int len);
24 afbb5194 balrog
typedef void (*soc_dma_transfer_t)(struct soc_dma_ch_s *ch);
25 afbb5194 balrog
26 afbb5194 balrog
enum soc_dma_port_type {
27 afbb5194 balrog
    soc_dma_port_mem,
28 afbb5194 balrog
    soc_dma_port_fifo,
29 afbb5194 balrog
    soc_dma_port_other,
30 afbb5194 balrog
};
31 afbb5194 balrog
32 afbb5194 balrog
enum soc_dma_access_type {
33 afbb5194 balrog
    soc_dma_access_const,
34 afbb5194 balrog
    soc_dma_access_linear,
35 afbb5194 balrog
    soc_dma_access_other,
36 afbb5194 balrog
};
37 afbb5194 balrog
38 afbb5194 balrog
struct soc_dma_ch_s {
39 afbb5194 balrog
    /* Private */
40 afbb5194 balrog
    struct soc_dma_s *dma;
41 afbb5194 balrog
    int num;
42 afbb5194 balrog
    QEMUTimer *timer;
43 afbb5194 balrog
44 afbb5194 balrog
    /* Set by soc_dma.c */
45 afbb5194 balrog
    int enable;
46 afbb5194 balrog
    int update;
47 afbb5194 balrog
48 afbb5194 balrog
    /* This should be set by dma->setup_fn().  */
49 afbb5194 balrog
    int bytes;
50 afbb5194 balrog
    /* Initialised by the DMA module, call soc_dma_ch_update after writing.  */
51 afbb5194 balrog
    enum soc_dma_access_type type[2];
52 c227f099 Anthony Liguori
    target_phys_addr_t vaddr[2];        /* Updated by .transfer_fn().  */
53 afbb5194 balrog
    /* Private */
54 afbb5194 balrog
    void *paddr[2];
55 afbb5194 balrog
    soc_dma_io_t io_fn[2];
56 afbb5194 balrog
    void *io_opaque[2];
57 afbb5194 balrog
58 afbb5194 balrog
    int running;
59 afbb5194 balrog
    soc_dma_transfer_t transfer_fn;
60 afbb5194 balrog
61 afbb5194 balrog
    /* Set and used by the DMA module.  */
62 afbb5194 balrog
    void *opaque;
63 afbb5194 balrog
};
64 afbb5194 balrog
65 afbb5194 balrog
struct soc_dma_s {
66 afbb5194 balrog
    /* Following fields are set by the SoC DMA module and can be used
67 afbb5194 balrog
     * by anybody.  */
68 afbb5194 balrog
    uint64_t drqbmp;        /* Is zeroed by soc_dma_reset() */
69 afbb5194 balrog
    qemu_irq *drq;
70 afbb5194 balrog
    void *opaque;
71 afbb5194 balrog
    int64_t freq;
72 afbb5194 balrog
    soc_dma_transfer_t transfer_fn;
73 afbb5194 balrog
    soc_dma_transfer_t setup_fn;
74 afbb5194 balrog
    /* Set by soc_dma_init() for use by the DMA module.  */
75 afbb5194 balrog
    struct soc_dma_ch_s *ch;
76 afbb5194 balrog
};
77 afbb5194 balrog
78 afbb5194 balrog
/* Call to activate or stop a DMA channel.  */
79 afbb5194 balrog
void soc_dma_set_request(struct soc_dma_ch_s *ch, int level);
80 afbb5194 balrog
/* Call after every write to one of the following fields and before
81 afbb5194 balrog
 * calling soc_dma_set_request(ch, 1):
82 afbb5194 balrog
 *   ch->type[0...1],
83 afbb5194 balrog
 *   ch->vaddr[0...1],
84 afbb5194 balrog
 *   ch->paddr[0...1],
85 afbb5194 balrog
 * or after a soc_dma_port_add_fifo() or soc_dma_port_add_mem().  */
86 afbb5194 balrog
void soc_dma_ch_update(struct soc_dma_ch_s *ch);
87 afbb5194 balrog
88 afbb5194 balrog
/* The SoC should call this when the DMA module is being reset.  */
89 afbb5194 balrog
void soc_dma_reset(struct soc_dma_s *s);
90 afbb5194 balrog
struct soc_dma_s *soc_dma_init(int n);
91 afbb5194 balrog
92 c227f099 Anthony Liguori
void soc_dma_port_add_fifo(struct soc_dma_s *dma, target_phys_addr_t virt_base,
93 afbb5194 balrog
                soc_dma_io_t fn, void *opaque, int out);
94 afbb5194 balrog
void soc_dma_port_add_mem(struct soc_dma_s *dma, uint8_t *phys_base,
95 c227f099 Anthony Liguori
                target_phys_addr_t virt_base, size_t size);
96 afbb5194 balrog
97 afbb5194 balrog
static inline void soc_dma_port_add_fifo_in(struct soc_dma_s *dma,
98 c227f099 Anthony Liguori
                target_phys_addr_t virt_base, soc_dma_io_t fn, void *opaque)
99 afbb5194 balrog
{
100 afbb5194 balrog
    return soc_dma_port_add_fifo(dma, virt_base, fn, opaque, 0);
101 afbb5194 balrog
}
102 afbb5194 balrog
103 afbb5194 balrog
static inline void soc_dma_port_add_fifo_out(struct soc_dma_s *dma,
104 c227f099 Anthony Liguori
                target_phys_addr_t virt_base, soc_dma_io_t fn, void *opaque)
105 afbb5194 balrog
{
106 afbb5194 balrog
    return soc_dma_port_add_fifo(dma, virt_base, fn, opaque, 1);
107 afbb5194 balrog
}
108 afbb5194 balrog
109 afbb5194 balrog
static inline void soc_dma_port_add_mem_ram(struct soc_dma_s *dma,
110 c227f099 Anthony Liguori
                ram_addr_t offset, target_phys_addr_t virt_base, size_t size)
111 afbb5194 balrog
{
112 5c130f65 pbrook
    return soc_dma_port_add_mem(dma, qemu_get_ram_ptr(offset), virt_base, size);
113 afbb5194 balrog
}