2010-07-13 21:39:30 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Hagen Fritsch - June 2010
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
2018-05-06 15:26:06 +08:00
|
|
|
//
|
2010-07-13 21:39:30 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Interlib Definitions
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __COMMON_H
|
|
|
|
#define __COMMON_H
|
|
|
|
|
2017-03-02 04:51:23 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-12-05 07:39:18 +08:00
|
|
|
#include <stddef.h>
|
2011-06-07 22:30:07 +08:00
|
|
|
#include <stdint.h>
|
2012-12-05 07:39:18 +08:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <at91sam7s512.h>
|
2012-09-18 21:53:17 +08:00
|
|
|
typedef unsigned char byte_t;
|
2011-06-07 22:30:07 +08:00
|
|
|
|
2017-01-25 07:33:03 +08:00
|
|
|
// debug
|
|
|
|
// 0 - no debug messages 1 - error messages 2 - all messages 4 - extended debug mode
|
2017-03-02 04:51:23 +08:00
|
|
|
#define MF_DBG_NONE 0
|
2017-01-25 07:33:03 +08:00
|
|
|
#define MF_DBG_ERROR 1
|
|
|
|
#define MF_DBG_ALL 2
|
|
|
|
#define MF_DBG_EXTENDED 4
|
|
|
|
extern int MF_DBGLEVEL;
|
|
|
|
|
2018-09-06 11:24:50 +08:00
|
|
|
// Flashmem spi baudrate
|
|
|
|
extern uint32_t FLASHMEM_SPIBAUDRATE;
|
|
|
|
|
2017-01-25 07:33:03 +08:00
|
|
|
// reader voltage field detector
|
|
|
|
#define MF_MINFIELDV 4000
|
|
|
|
|
2013-03-14 23:03:04 +08:00
|
|
|
#ifndef MIN
|
|
|
|
# define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
|
|
|
#endif
|
2016-03-13 14:16:42 +08:00
|
|
|
|
2013-03-14 23:03:04 +08:00
|
|
|
#ifndef MAX
|
|
|
|
# define MAX(a, b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#endif
|
2013-02-28 23:11:52 +08:00
|
|
|
|
2016-03-13 14:16:42 +08:00
|
|
|
#ifndef ABS
|
|
|
|
# define ABS(a) ( ((a)<0) ? -(a) : (a) )
|
|
|
|
#endif
|
2013-04-08 17:18:39 +08:00
|
|
|
#define RAMFUNC __attribute((long_call, section(".ramfunc")))
|
2017-03-02 04:51:23 +08:00
|
|
|
|
2018-05-06 15:26:06 +08:00
|
|
|
// RDV40 Section
|
2018-09-23 11:29:55 +08:00
|
|
|
// 256kb divided into 4k sectors.
|
|
|
|
//
|
|
|
|
// last 4k sector = signature
|
|
|
|
// second last 4k sector = settings
|
|
|
|
// third last 4k sector = default MF keys dictionary
|
|
|
|
// forth last 4k sector = default LF keys dictionary
|
|
|
|
|
2018-05-06 15:26:06 +08:00
|
|
|
#ifndef FLASH_MEM_BLOCK_SIZE
|
|
|
|
# define FLASH_MEM_BLOCK_SIZE 256
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FLASH_MEM_MAX_SIZE
|
2018-09-12 00:35:07 +08:00
|
|
|
# define FLASH_MEM_MAX_SIZE 0x3FFFF // (262143)
|
2018-05-06 15:26:06 +08:00
|
|
|
#endif
|
|
|
|
|
2018-09-23 11:29:55 +08:00
|
|
|
#ifndef FLASH_MEM_MAX_4K_SECTOR
|
|
|
|
# define FLASH_MEM_MAX_4K_SECTOR 0x3F000
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2018-05-06 15:26:06 +08:00
|
|
|
#ifndef FLASH_MEM_ID_LEN
|
|
|
|
# define FLASH_MEM_ID_LEN 8
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FLASH_MEM_SIGNATURE_LEN
|
|
|
|
# define FLASH_MEM_SIGNATURE_LEN 128
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FLASH_MEM_SIGNATURE_OFFSET
|
|
|
|
# define FLASH_MEM_SIGNATURE_OFFSET (FLASH_MEM_MAX_SIZE - FLASH_MEM_SIGNATURE_LEN)
|
|
|
|
#endif
|
|
|
|
|
2018-09-12 00:35:07 +08:00
|
|
|
#if WITH_FLASH
|
2018-09-23 11:29:55 +08:00
|
|
|
#ifndef T55XX_CONFIG_LEN
|
|
|
|
# define T55XX_CONFIG_LEN sizeof( t55xx_config )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef T55XX_CONFIG_OFFSET
|
|
|
|
# define T55XX_CONFIG_OFFSET (FLASH_MEM_MAX_4K_SECTOR - 0x2000)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DEFAULT_MF_KEYS_OFFSET
|
|
|
|
# define DEFAULT_MF_KEYS_OFFSET (FLASH_MEM_MAX_4K_SECTOR - 0x3000)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DEFAULT_LF_KEYS_OFFSET
|
|
|
|
# define DEFAULT_LF_KEYS_OFFSET (FLASH_MEM_MAX_4K_SECTOR - 0x4000)
|
|
|
|
#endif
|
2018-09-12 00:35:07 +08:00
|
|
|
#endif
|
2018-05-06 15:26:06 +08:00
|
|
|
|
|
|
|
// RDV40, validation structure to help identifying that client/firmware is talking with RDV40
|
|
|
|
typedef struct {
|
|
|
|
uint8_t magic[4];
|
|
|
|
uint8_t flashid[FLASH_MEM_ID_LEN];
|
|
|
|
uint8_t signature[FLASH_MEM_SIGNATURE_LEN];
|
|
|
|
} __attribute__((__packed__)) rdv40_validation_t;
|
|
|
|
|
2017-03-02 04:51:23 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|