aboutsummaryrefslogtreecommitdiff
path: root/include/calculatecrc.h
blob: a19a229bd6715b91f8ebb0efa9f07a1be1eb01d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/******************************************************************************
 * Copyright (c) 2004, 2008 IBM Corporation
 * All rights reserved.
 * This program and the accompanying materials
 * are made available under the terms of the BSD License
 * which accompanies this distribution, and is available at
 * http://www.opensource.org/licenses/bsd-license.php
 *
 * Contributors:
 *     IBM Corporation - initial implementation
 *****************************************************************************/
#ifndef CALCULATECRC_H
#define CALCULATECRC_H

#define FLASHFS_DATADDR 0x18		// uint64_t position of pointer to data
#define FLASHFS_FILE_SIZE_ADDR 0x08	// uint64_t pos of total flashimage size value relative to data
#define FLASHFS_HEADER_SIZE_ADDR 0x08	// uint64_t position of total flash header size value

#define FLASHFS_ROMADDR 0x00		// uint64_t position of pointer to next file
#define FLASHFS_HEADER_DATA_SIZE 0x68	// 104 bytes of total header data size
#define CRC_METHODE Ethernet_32		// define the CRC genarator (CRC 16 bit to 64 is supported)

//--- header format ---------------------------------
struct stH {
	char magic[8];            // (generic!) headerfile
	uint64_t flashlen;        // dyn
	char version[16];         // $DRIVER_INFO alignment!
	char platform_name[32];   // (hardware)   headerfile
	char date[8];             // BCD encoded creation date (first two bytes unused)
	char mdate[8];            // BCD encoded modification date (first two bytes unused)
	char platform_revision[4];// (hardware)   headerfile
	uint32_t padding;
	uint64_t ui64CRC;         // insert calculated CRC here
	uint64_t ui64FileEnd;     // = 0xFFFF FFFF FFFF FFFF
};

#endif		/* CALCULATECRC_H */

/*--- supported CRC Generators -------------------------
+	Name						length		usage						Generator
+	Tap_16						16 bit		Tape						0x00008005	
+	Floppy_16					16 bit		Floppy						0x00001021
+	Ethernet_32					32 bit		Ethernet					0x04C11DB7
+	SPTrEMBL_64					64 bit		white noise like date		0x0000001B
+	SPTrEMBL_improved_64   		64 bit		DNA code like date			0xAD93D23594C9362D
+	DLT1_64						64 bit		Tape						0x42F0E1EBA9EA3693
+
+	TrEMBL see also	http://www.cs.ud.ac.uk/staff/D.Jones/crcbote.pdf
+	DLT1 se also 	http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-182.pdf
+--------------------------------------------------------*/