1 // SPDX-License-Identifier: GPL-2.0
3 #include "../include/generated/autoconf.h"
7 #define ENTRIES_PER_LINE 4
10 # define LE_TABLE_ROWS (CRC_LE_BITS/8)
11 # define LE_TABLE_SIZE 256
13 # define LE_TABLE_ROWS 1
14 # define LE_TABLE_SIZE (1 << CRC_LE_BITS)
18 # define BE_TABLE_ROWS (CRC_BE_BITS/8)
19 # define BE_TABLE_SIZE 256
21 # define BE_TABLE_ROWS 1
22 # define BE_TABLE_SIZE (1 << CRC_BE_BITS)
25 static uint32_t crc32table_le
[LE_TABLE_ROWS
][256];
26 static uint32_t crc32table_be
[BE_TABLE_ROWS
][256];
27 static uint32_t crc32ctable_le
[LE_TABLE_ROWS
][256];
30 * crc32init_le() - allocate and initialize LE table data
32 * crc is the crc of the byte i; other entries are filled in based on the
33 * fact that crctable[i^j] = crctable[i] ^ crctable[j].
36 static void crc32init_le_generic(const uint32_t polynomial
,
44 for (i
= LE_TABLE_SIZE
>> 1; i
; i
>>= 1) {
45 crc
= (crc
>> 1) ^ ((crc
& 1) ? polynomial
: 0);
46 for (j
= 0; j
< LE_TABLE_SIZE
; j
+= 2 * i
)
47 tab
[0][i
+ j
] = crc
^ tab
[0][j
];
49 for (i
= 0; i
< LE_TABLE_SIZE
; i
++) {
51 for (j
= 1; j
< LE_TABLE_ROWS
; j
++) {
52 crc
= tab
[0][crc
& 0xff] ^ (crc
>> 8);
58 static void crc32init_le(void)
60 crc32init_le_generic(CRCPOLY_LE
, crc32table_le
);
63 static void crc32cinit_le(void)
65 crc32init_le_generic(CRC32C_POLY_LE
, crc32ctable_le
);
69 * crc32init_be() - allocate and initialize BE table data
71 static void crc32init_be(void)
74 uint32_t crc
= 0x80000000;
76 crc32table_be
[0][0] = 0;
78 for (i
= 1; i
< BE_TABLE_SIZE
; i
<<= 1) {
79 crc
= (crc
<< 1) ^ ((crc
& 0x80000000) ? CRCPOLY_BE
: 0);
80 for (j
= 0; j
< i
; j
++)
81 crc32table_be
[0][i
+ j
] = crc
^ crc32table_be
[0][j
];
83 for (i
= 0; i
< BE_TABLE_SIZE
; i
++) {
84 crc
= crc32table_be
[0][i
];
85 for (j
= 1; j
< BE_TABLE_ROWS
; j
++) {
86 crc
= crc32table_be
[0][(crc
>> 24) & 0xff] ^ (crc
<< 8);
87 crc32table_be
[j
][i
] = crc
;
92 static void output_table(uint32_t (*table
)[256], int rows
, int len
, char *trans
)
96 for (j
= 0 ; j
< rows
; j
++) {
98 for (i
= 0; i
< len
- 1; i
++) {
99 if (i
% ENTRIES_PER_LINE
== 0)
101 printf("%s(0x%8.8xL), ", trans
, table
[j
][i
]);
103 printf("%s(0x%8.8xL)},\n", trans
, table
[j
][len
- 1]);
107 int main(int argc
, char** argv
)
109 printf("/* this file is generated - do not edit */\n\n");
111 if (CRC_LE_BITS
> 1) {
113 printf("static const u32 ____cacheline_aligned "
114 "crc32table_le[%d][%d] = {",
115 LE_TABLE_ROWS
, LE_TABLE_SIZE
);
116 output_table(crc32table_le
, LE_TABLE_ROWS
,
117 LE_TABLE_SIZE
, "tole");
121 if (CRC_BE_BITS
> 1) {
123 printf("static const u32 ____cacheline_aligned "
124 "crc32table_be[%d][%d] = {",
125 BE_TABLE_ROWS
, BE_TABLE_SIZE
);
126 output_table(crc32table_be
, LE_TABLE_ROWS
,
127 BE_TABLE_SIZE
, "tobe");
130 if (CRC_LE_BITS
> 1) {
132 printf("static const u32 ____cacheline_aligned "
133 "crc32ctable_le[%d][%d] = {",
134 LE_TABLE_ROWS
, LE_TABLE_SIZE
);
135 output_table(crc32ctable_le
, LE_TABLE_ROWS
,
136 LE_TABLE_SIZE
, "tole");