1 | /* |
---|
2 | * SOCLIB_LGPL_HEADER_BEGIN |
---|
3 | * |
---|
4 | * This file is part of SoCLib, GNU LGPLv2.1. |
---|
5 | * |
---|
6 | * SoCLib is free software; you can redistribute it and/or modify it |
---|
7 | * under the terms of the GNU Lesser General Public License as published |
---|
8 | * by the Free Software Foundation; version 2.1 of the License. |
---|
9 | * |
---|
10 | * SoCLib is distributed in the hope that it will be useful, but |
---|
11 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
13 | * Lesser General Public License for more details. |
---|
14 | * |
---|
15 | * You should have received a copy of the GNU Lesser General Public |
---|
16 | * License along with SoCLib; if not, write to the Free Software |
---|
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
---|
18 | * 02110-1301 USA |
---|
19 | * |
---|
20 | * SOCLIB_LGPL_HEADER_END |
---|
21 | * |
---|
22 | * Copyright (c) UPMC, Lip6, Asim |
---|
23 | * Nicolas Pouillon <nipo@ssji.net>, 2007 |
---|
24 | * Eric Guthmuller <eric.guthmuller@polytechnique.edu>, 2009 |
---|
25 | * |
---|
26 | * Maintainers: nipo eric.guthmuller@polytechnique.edu |
---|
27 | */ |
---|
28 | #ifndef DMA_REGS_TSAR_H |
---|
29 | #define DMA_REGS_TSAR_H |
---|
30 | |
---|
31 | enum SoclibDmaRegisters { |
---|
32 | DMA_SRC, |
---|
33 | DMA_DST, |
---|
34 | DMA_LEN, |
---|
35 | DMA_RESET, |
---|
36 | DMA_IRQ_DISABLED, |
---|
37 | }; |
---|
38 | |
---|
39 | #endif /* DMA_REGS_TSAR_H */ |
---|
40 | |
---|
41 | // Local Variables: |
---|
42 | // tab-width: 4 |
---|
43 | // c-basic-offset: 4 |
---|
44 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
45 | // indent-tabs-mode: nil |
---|
46 | // End: |
---|
47 | |
---|
48 | // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
49 | |
---|