5 * Copyright (C) 2008 Michael Brown <mbrown@fensystems.co.uk>.
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of the
10 * License, or any later version.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 FILE_LICENCE ( GPL2_OR_LATER
);
34 /* Endianness selection.
36 * This is a property of the NIC, not a property of the host CPU.
38 #ifdef BITOPS_LITTLE_ENDIAN
39 #define cpu_to_BIT64 cpu_to_le64
40 #define cpu_to_BIT32 cpu_to_le32
41 #define BIT64_to_cpu le64_to_cpu
42 #define BIT32_to_cpu le32_to_cpu
44 #ifdef BITOPS_BIG_ENDIAN
45 #define cpu_to_BIT64 cpu_to_be64
46 #define cpu_to_BIT32 cpu_to_be32
47 #define BIT64_to_cpu be64_to_cpu
48 #define BIT32_to_cpu be32_to_cpu
51 /** Datatype used to represent a bit in the pseudo-structures */
52 typedef unsigned char pseudo_bit_t
;
55 * Wrapper structure for pseudo_bit_t structures
57 * This structure provides a wrapper around pseudo_bit_t structures.
58 * It has the correct size, and also encapsulates type information
59 * about the underlying pseudo_bit_t-based structure, which allows the
60 * BIT_FILL() etc. macros to work without requiring explicit type
63 #define PSEUDO_BIT_STRUCT( _structure ) \
65 uint8_t bytes[ sizeof ( _structure ) / 8 ]; \
66 uint32_t dwords[ sizeof ( _structure ) / 32 ]; \
67 uint64_t qwords[ sizeof ( _structure ) / 64 ]; \
68 _structure *dummy[0]; \
71 /** Get pseudo_bit_t structure type from wrapper structure pointer */
72 #define PSEUDO_BIT_STRUCT_TYPE( _ptr ) \
73 typeof ( *((_ptr)->u.dummy[0]) )
75 /** Bit offset of a field within a pseudo_bit_t structure */
76 #define BIT_OFFSET( _ptr, _field ) \
77 offsetof ( PSEUDO_BIT_STRUCT_TYPE ( _ptr ), _field )
79 /** Bit width of a field within a pseudo_bit_t structure */
80 #define BIT_WIDTH( _ptr, _field ) \
81 sizeof ( ( ( PSEUDO_BIT_STRUCT_TYPE ( _ptr ) * ) NULL )->_field )
83 /** Qword offset of a field within a pseudo_bit_t structure */
84 #define QWORD_OFFSET( _ptr, _field ) \
85 ( BIT_OFFSET ( _ptr, _field ) / 64 )
87 /** Qword bit offset of a field within a pseudo_bit_t structure */
88 #define QWORD_BIT_OFFSET( _ptr, _index, _field ) \
89 ( BIT_OFFSET ( _ptr, _field ) - ( 64 * (_index) ) )
91 /** Bit mask for a field within a pseudo_bit_t structure */
92 #define BIT_MASK( _ptr, _field ) \
93 ( ( ~( ( uint64_t ) 0 ) ) >> \
94 ( 64 - BIT_WIDTH ( _ptr, _field ) ) )
97 * Assemble native-endian qword from named fields and values
101 #define BIT_ASSEMBLE_1( _ptr, _index, _field, _value ) \
102 ( ( ( uint64_t) (_value) ) << \
103 QWORD_BIT_OFFSET ( _ptr, _index, _field ) )
105 #define BIT_ASSEMBLE_2( _ptr, _index, _field, _value, ... ) \
106 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
107 BIT_ASSEMBLE_1 ( _ptr, _index, __VA_ARGS__ ) )
109 #define BIT_ASSEMBLE_3( _ptr, _index, _field, _value, ... ) \
110 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
111 BIT_ASSEMBLE_2 ( _ptr, _index, __VA_ARGS__ ) )
113 #define BIT_ASSEMBLE_4( _ptr, _index, _field, _value, ... ) \
114 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
115 BIT_ASSEMBLE_3 ( _ptr, _index, __VA_ARGS__ ) )
117 #define BIT_ASSEMBLE_5( _ptr, _index, _field, _value, ... ) \
118 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
119 BIT_ASSEMBLE_4 ( _ptr, _index, __VA_ARGS__ ) )
121 #define BIT_ASSEMBLE_6( _ptr, _index, _field, _value, ... ) \
122 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
123 BIT_ASSEMBLE_5 ( _ptr, _index, __VA_ARGS__ ) )
125 #define BIT_ASSEMBLE_7( _ptr, _index, _field, _value, ... ) \
126 ( BIT_ASSEMBLE_1 ( _ptr, _index, _field, _value ) | \
127 BIT_ASSEMBLE_6 ( _ptr, _index, __VA_ARGS__ ) )
130 * Build native-endian (positive) qword bitmasks from named fields
134 #define BIT_MASK_1( _ptr, _index, _field ) \
135 ( BIT_MASK ( _ptr, _field ) << \
136 QWORD_BIT_OFFSET ( _ptr, _index, _field ) )
138 #define BIT_MASK_2( _ptr, _index, _field, ... ) \
139 ( BIT_MASK_1 ( _ptr, _index, _field ) | \
140 BIT_MASK_1 ( _ptr, _index, __VA_ARGS__ ) )
142 #define BIT_MASK_3( _ptr, _index, _field, ... ) \
143 ( BIT_MASK_1 ( _ptr, _index, _field ) | \
144 BIT_MASK_2 ( _ptr, _index, __VA_ARGS__ ) )
146 #define BIT_MASK_4( _ptr, _index, _field, ... ) \
147 ( BIT_MASK_1 ( _ptr, _index, _field ) | \
148 BIT_MASK_3 ( _ptr, _index, __VA_ARGS__ ) )
150 #define BIT_MASK_5( _ptr, _index, _field, ... ) \
151 ( BIT_MASK_1 ( _ptr, _index, _field ) | \
152 BIT_MASK_4 ( _ptr, _index, __VA_ARGS__ ) )
154 #define BIT_MASK_6( _ptr, _index, _field, ... ) \
155 ( BIT_MASK_1 ( _ptr, _index, _field ) | \
156 BIT_MASK_5 ( _ptr, _index, __VA_ARGS__ ) )
158 #define BIT_MASK_7( _ptr, _index, _field, ... ) \
159 ( BIT_MASK_1 ( _ptr, _index, _field ) | \
160 BIT_MASK_6 ( _ptr, _index, __VA_ARGS__ ) )
163 * Populate little-endian qwords from named fields and values
167 #define BIT_FILL( _ptr, _index, _assembled ) do { \
168 uint64_t *__ptr = &(_ptr)->u.qwords[(_index)]; \
169 uint64_t __assembled = (_assembled); \
170 *__ptr = cpu_to_BIT64 ( __assembled ); \
173 #define BIT_FILL_1( _ptr, _field1, ... ) \
174 BIT_FILL ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
175 BIT_ASSEMBLE_1 ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
176 _field1, __VA_ARGS__ ) )
178 #define BIT_FILL_2( _ptr, _field1, ... ) \
179 BIT_FILL ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
180 BIT_ASSEMBLE_2 ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
181 _field1, __VA_ARGS__ ) )
183 #define BIT_FILL_3( _ptr, _field1, ... ) \
184 BIT_FILL ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
185 BIT_ASSEMBLE_3 ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
186 _field1, __VA_ARGS__ ) )
188 #define BIT_FILL_4( _ptr, _field1, ... ) \
189 BIT_FILL ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
190 BIT_ASSEMBLE_4 ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
191 _field1, __VA_ARGS__ ) )
193 #define BIT_FILL_5( _ptr, _field1, ... ) \
194 BIT_FILL ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
195 BIT_ASSEMBLE_5 ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
196 _field1, __VA_ARGS__ ) )
198 #define BIT_FILL_6( _ptr, _field1, ... ) \
199 BIT_FILL ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
200 BIT_ASSEMBLE_6 ( _ptr, QWORD_OFFSET ( _ptr, _field1 ), \
201 _field1, __VA_ARGS__ ) )
203 /** Extract value of named field */
204 #define BIT_GET64( _ptr, _field ) \
206 unsigned int __index = QWORD_OFFSET ( _ptr, _field ); \
207 uint64_t *__ptr = &(_ptr)->u.qwords[__index]; \
208 uint64_t __value = BIT64_to_cpu ( *__ptr ); \
210 QWORD_BIT_OFFSET ( _ptr, __index, _field ); \
211 __value &= BIT_MASK ( _ptr, _field ); \
215 /** Extract value of named field (for fields up to the size of a long) */
216 #define BIT_GET( _ptr, _field ) \
217 ( ( unsigned long ) BIT_GET64 ( _ptr, _field ) )
219 #define BIT_SET( _ptr, _field, _value ) do { \
220 unsigned int __index = QWORD_OFFSET ( _ptr, _field ); \
221 uint64_t *__ptr = &(_ptr)->u.qwords[__index]; \
222 unsigned int __shift = \
223 QWORD_BIT_OFFSET ( _ptr, __index, _field ); \
224 uint64_t __value = (_value); \
225 *__ptr &= cpu_to_BIT64 ( ~( BIT_MASK ( _ptr, _field ) << \
227 *__ptr |= cpu_to_BIT64 ( __value << __shift ); \
230 #endif /* _GPXE_BITOPS_H */