gen_crc32table.c 3.2 KB
Newer Older
L
Linus Torvalds 已提交
1
#include <stdio.h>
2
#include "../include/generated/autoconf.h"
L
Linus Torvalds 已提交
3 4 5 6 7
#include "crc32defs.h"
#include <inttypes.h>

#define ENTRIES_PER_LINE 4

8 9 10
#if CRC_LE_BITS > 8
# define LE_TABLE_ROWS (CRC_LE_BITS/8)
# define LE_TABLE_SIZE 256
11
#else
12 13
# define LE_TABLE_ROWS 1
# define LE_TABLE_SIZE (1 << CRC_LE_BITS)
14 15
#endif

16 17 18
#if CRC_BE_BITS > 8
# define BE_TABLE_ROWS (CRC_BE_BITS/8)
# define BE_TABLE_SIZE 256
19
#else
20 21
# define BE_TABLE_ROWS 1
# define BE_TABLE_SIZE (1 << CRC_BE_BITS)
22
#endif
L
Linus Torvalds 已提交
23

24 25
static uint32_t crc32table_le[LE_TABLE_ROWS][256];
static uint32_t crc32table_be[BE_TABLE_ROWS][256];
D
Darrick J. Wong 已提交
26
static uint32_t crc32ctable_le[LE_TABLE_ROWS][256];
L
Linus Torvalds 已提交
27 28 29 30 31 32 33 34

/**
 * crc32init_le() - allocate and initialize LE table data
 *
 * crc is the crc of the byte i; other entries are filled in based on the
 * fact that crctable[i^j] = crctable[i] ^ crctable[j].
 *
 */
D
Darrick J. Wong 已提交
35 36
static void crc32init_le_generic(const uint32_t polynomial,
				 uint32_t (*tab)[256])
L
Linus Torvalds 已提交
37 38 39 40
{
	unsigned i, j;
	uint32_t crc = 1;

D
Darrick J. Wong 已提交
41
	tab[0][0] = 0;
L
Linus Torvalds 已提交
42

43
	for (i = LE_TABLE_SIZE >> 1; i; i >>= 1) {
D
Darrick J. Wong 已提交
44
		crc = (crc >> 1) ^ ((crc & 1) ? polynomial : 0);
L
Linus Torvalds 已提交
45
		for (j = 0; j < LE_TABLE_SIZE; j += 2 * i)
D
Darrick J. Wong 已提交
46
			tab[0][i + j] = crc ^ tab[0][j];
47 48
	}
	for (i = 0; i < LE_TABLE_SIZE; i++) {
D
Darrick J. Wong 已提交
49
		crc = tab[0][i];
50
		for (j = 1; j < LE_TABLE_ROWS; j++) {
D
Darrick J. Wong 已提交
51 52
			crc = tab[0][crc & 0xff] ^ (crc >> 8);
			tab[j][i] = crc;
53
		}
L
Linus Torvalds 已提交
54 55 56
	}
}

D
Darrick J. Wong 已提交
57 58 59 60 61 62 63 64 65 66
static void crc32init_le(void)
{
	crc32init_le_generic(CRCPOLY_LE, crc32table_le);
}

static void crc32cinit_le(void)
{
	crc32init_le_generic(CRC32C_POLY_LE, crc32ctable_le);
}

L
Linus Torvalds 已提交
67 68 69 70 71 72 73 74
/**
 * crc32init_be() - allocate and initialize BE table data
 */
static void crc32init_be(void)
{
	unsigned i, j;
	uint32_t crc = 0x80000000;

75
	crc32table_be[0][0] = 0;
L
Linus Torvalds 已提交
76 77 78 79

	for (i = 1; i < BE_TABLE_SIZE; i <<= 1) {
		crc = (crc << 1) ^ ((crc & 0x80000000) ? CRCPOLY_BE : 0);
		for (j = 0; j < i; j++)
80 81 82 83
			crc32table_be[0][i + j] = crc ^ crc32table_be[0][j];
	}
	for (i = 0; i < BE_TABLE_SIZE; i++) {
		crc = crc32table_be[0][i];
84
		for (j = 1; j < BE_TABLE_ROWS; j++) {
85 86 87
			crc = crc32table_be[0][(crc >> 24) & 0xff] ^ (crc << 8);
			crc32table_be[j][i] = crc;
		}
L
Linus Torvalds 已提交
88 89 90
	}
}

91
static void output_table(uint32_t (*table)[256], int rows, int len, char *trans)
L
Linus Torvalds 已提交
92
{
93
	int i, j;
L
Linus Torvalds 已提交
94

95
	for (j = 0 ; j < rows; j++) {
96 97 98 99 100 101 102
		printf("{");
		for (i = 0; i < len - 1; i++) {
			if (i % ENTRIES_PER_LINE == 0)
				printf("\n");
			printf("%s(0x%8.8xL), ", trans, table[j][i]);
		}
		printf("%s(0x%8.8xL)},\n", trans, table[j][len - 1]);
L
Linus Torvalds 已提交
103 104 105 106 107 108 109 110 111
	}
}

int main(int argc, char** argv)
{
	printf("/* this file is generated - do not edit */\n\n");

	if (CRC_LE_BITS > 1) {
		crc32init_le();
112
		printf("static const u32 ____cacheline_aligned "
113 114 115 116
		       "crc32table_le[%d][%d] = {",
		       LE_TABLE_ROWS, LE_TABLE_SIZE);
		output_table(crc32table_le, LE_TABLE_ROWS,
			     LE_TABLE_SIZE, "tole");
L
Linus Torvalds 已提交
117 118 119 120 121
		printf("};\n");
	}

	if (CRC_BE_BITS > 1) {
		crc32init_be();
122
		printf("static const u32 ____cacheline_aligned "
123 124 125 126
		       "crc32table_be[%d][%d] = {",
		       BE_TABLE_ROWS, BE_TABLE_SIZE);
		output_table(crc32table_be, LE_TABLE_ROWS,
			     BE_TABLE_SIZE, "tobe");
L
Linus Torvalds 已提交
127 128
		printf("};\n");
	}
D
Darrick J. Wong 已提交
129 130
	if (CRC_LE_BITS > 1) {
		crc32cinit_le();
131
		printf("static const u32 ____cacheline_aligned "
D
Darrick J. Wong 已提交
132 133 134 135 136 137
		       "crc32ctable_le[%d][%d] = {",
		       LE_TABLE_ROWS, LE_TABLE_SIZE);
		output_table(crc32ctable_le, LE_TABLE_ROWS,
			     LE_TABLE_SIZE, "tole");
		printf("};\n");
	}
L
Linus Torvalds 已提交
138 139 140

	return 0;
}
反馈
建议
客服 返回
顶部