1 |
19 |
jeremybenn |
/* fields.h -- Some macros to help with bit field definitions
|
2 |
|
|
|
3 |
|
|
Copyright (C) 2001 by Erez Volk, erez@opencores.org
|
4 |
|
|
Copyright (C) 2008 Embecosm Limited
|
5 |
|
|
|
6 |
|
|
Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
|
7 |
|
|
|
8 |
|
|
This file is part of Or1ksim, the OpenRISC 1000 Architectural Simulator.
|
9 |
|
|
|
10 |
|
|
This program is free software; you can redistribute it and/or modify it
|
11 |
|
|
under the terms of the GNU General Public License as published by the Free
|
12 |
|
|
Software Foundation; either version 3 of the License, or (at your option)
|
13 |
|
|
any later version.
|
14 |
|
|
|
15 |
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
16 |
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
17 |
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
18 |
|
|
more details.
|
19 |
|
|
|
20 |
|
|
You should have received a copy of the GNU General Public License along
|
21 |
|
|
with this program. If not, see <http://www.gnu.org/licenses/>. */
|
22 |
|
|
|
23 |
|
|
/* This program is commented throughout in a fashion suitable for processing
|
24 |
|
|
with Doxygen. */
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
#ifndef FIELDS__H
|
28 |
|
|
#define FIELDS__H
|
29 |
|
|
|
30 |
|
|
|
31 |
|
|
/* Macros to get/set a field in a register
|
32 |
|
|
* Example:
|
33 |
|
|
* unsigned long done, priority, channel_csr;
|
34 |
|
|
*
|
35 |
|
|
* priority = GET_FIELD( channel_csr, DMA_CH_CSR, PRIORITY );
|
36 |
|
|
* SET_FIELD( channel_csr, DMA_CH_CSR, PRIORITY, priority );
|
37 |
|
|
*
|
38 |
|
|
* done = TEST_FLAG( channel_csr, DMA_CH_CSR, DONE );
|
39 |
|
|
* SET_FLAG( channel_csr, DMA_CH_CSR, DONE );
|
40 |
|
|
* CLEAR_FLAG( channel_csr, DMA_CH_CSR, DONE );
|
41 |
|
|
* ASSIGN_FLAG( channel_csr, DMA_CH_CSR, done );
|
42 |
|
|
*
|
43 |
|
|
* For each field, we then define e.g.
|
44 |
|
|
* #define DMA_CH_CSR_PRIORITY_OFFSET 13
|
45 |
|
|
* #define DMA_CH_CSR_PRIORITY_WIDTH 3 // not needed for flags, which always have width = 1
|
46 |
|
|
*/
|
47 |
|
|
|
48 |
|
|
#define FLAG_SHIFT(reg_name,flag_name) (reg_name##_##flag_name##_OFFSET)
|
49 |
|
|
#define FLAG_MASK(reg_name,flag_name) (1LU << reg_name##_##flag_name##_OFFSET)
|
50 |
|
|
|
51 |
|
|
#define TEST_FLAG(reg_value,reg_name,flag_name) (((reg_value ) >> reg_name##_##flag_name##_OFFSET) & 1LU)
|
52 |
|
|
#define SET_FLAG(reg_value,reg_name,flag_name) { (reg_value) |= 1LU << reg_name##_##flag_name##_OFFSET; }
|
53 |
|
|
#define CLEAR_FLAG(reg_value,reg_name,flag_name) { (reg_value) &= ~(1LU << reg_name##_##flag_name##_OFFSET); }
|
54 |
|
|
#define ASSIGN_FLAG(reg_value,reg_name,flag_name,flag_value) { \
|
55 |
|
|
(reg_value) = flag_value ? ((reg_value) | (1LU << reg_name##_##flag_name##_OFFSET)) : ((reg_value) & ~(1LU << reg_name##_##flag_name##_OFFSET)); }
|
56 |
|
|
|
57 |
|
|
#define FIELD_SHIFT(reg_name,field_name) (reg_name##_##field_name##_OFFSET)
|
58 |
|
|
#define FIELD_MASK(reg_name,field_name) ((~(~0LU << reg_name##_##field_name##_WIDTH)) << reg_name##_##field_name##_OFFSET)
|
59 |
|
|
|
60 |
|
|
#define GET_FIELD(reg_value,reg_name,field_name) (((reg_value) >> reg_name##_##field_name##_OFFSET) & (~(~0LU << reg_name##_##field_name##_WIDTH)))
|
61 |
|
|
#define SET_FIELD(reg_value,reg_name,field_name,field_value) { \
|
62 |
|
|
(reg_value) = ((reg_value) & ~((~(~0LU << reg_name##_##field_name##_WIDTH)) << reg_name##_##field_name##_OFFSET)) | ((field_value) << reg_name##_##field_name##_OFFSET); }
|
63 |
|
|
|
64 |
|
|
#endif /* FIELDS__H */
|