2018-07-04 18:19:04 +08:00
|
|
|
#ifndef __I2C_H
|
|
|
|
#define __I2C_H
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "proxmark3.h"
|
|
|
|
#include "apps.h"
|
|
|
|
#include "util.h"
|
2018-07-05 22:32:10 +08:00
|
|
|
#include "BigBuf.h"
|
2018-07-09 17:22:51 +08:00
|
|
|
#include "mifare.h"
|
2018-07-04 18:19:04 +08:00
|
|
|
|
2019-03-10 02:19:50 +08:00
|
|
|
#define I2C_DEVICE_ADDRESS_BOOT 0xB0
|
|
|
|
#define I2C_DEVICE_ADDRESS_MAIN 0xC0
|
2018-07-04 18:19:04 +08:00
|
|
|
|
2019-03-10 02:19:50 +08:00
|
|
|
#define I2C_DEVICE_CMD_GENERATE_ATR 0x01
|
|
|
|
#define I2C_DEVICE_CMD_SEND 0x02
|
|
|
|
#define I2C_DEVICE_CMD_READ 0x03
|
|
|
|
#define I2C_DEVICE_CMD_SETBAUD 0x04
|
|
|
|
#define I2C_DEVICE_CMD_SIM_CLC 0x05
|
|
|
|
#define I2C_DEVICE_CMD_GETVERSION 0x06
|
|
|
|
#define I2C_DEVICE_CMD_SEND_T0 0x07
|
2018-07-04 18:19:04 +08:00
|
|
|
|
|
|
|
|
2018-11-14 22:07:04 +08:00
|
|
|
void I2C_recovery(void);
|
2018-07-04 18:19:04 +08:00
|
|
|
void I2C_init(void);
|
|
|
|
void I2C_Reset(void);
|
|
|
|
void I2C_SetResetStatus(uint8_t LineRST, uint8_t LineSCK, uint8_t LineSDA);
|
|
|
|
|
|
|
|
void I2C_Reset_EnterMainProgram(void);
|
|
|
|
void I2C_Reset_EnterBootloader(void);
|
|
|
|
|
2018-07-07 18:42:33 +08:00
|
|
|
bool I2C_WriteCmd(uint8_t device_cmd, uint8_t device_address);
|
2018-07-07 02:14:55 +08:00
|
|
|
|
2018-07-04 21:29:27 +08:00
|
|
|
bool I2C_WriteByte(uint8_t data, uint8_t device_cmd, uint8_t device_address);
|
2018-07-04 18:19:04 +08:00
|
|
|
bool I2C_BufferWrite(uint8_t *data, uint8_t len, uint8_t device_cmd, uint8_t device_address);
|
2018-08-13 03:54:31 +08:00
|
|
|
int16_t I2C_BufferRead(uint8_t *data, uint8_t len, uint8_t device_cmd, uint8_t device_address);
|
2018-07-04 18:19:04 +08:00
|
|
|
|
2018-07-05 16:48:24 +08:00
|
|
|
// for firmware
|
2018-08-13 03:54:31 +08:00
|
|
|
int16_t I2C_ReadFW(uint8_t *data, uint8_t len, uint8_t msb, uint8_t lsb, uint8_t device_address);
|
2018-07-05 20:38:31 +08:00
|
|
|
bool I2C_WriteFW(uint8_t *data, uint8_t len, uint8_t msb, uint8_t lsb, uint8_t device_address);
|
2018-07-05 16:48:24 +08:00
|
|
|
|
2018-07-06 17:16:46 +08:00
|
|
|
//
|
|
|
|
bool GetATR(smart_card_atr_t *card_ptr);
|
|
|
|
|
2018-07-05 22:32:10 +08:00
|
|
|
// generice functions
|
|
|
|
void SmartCardAtr(void);
|
2018-07-06 03:10:21 +08:00
|
|
|
void SmartCardRaw(uint64_t arg0, uint64_t arg1, uint8_t *data);
|
2018-07-05 22:32:10 +08:00
|
|
|
void SmartCardUpgrade(uint64_t arg0);
|
2018-07-06 06:24:04 +08:00
|
|
|
void SmartCardSetBaud(uint64_t arg0);
|
|
|
|
void SmartCardSetClock(uint64_t arg0);
|
2018-07-04 21:29:27 +08:00
|
|
|
void I2C_print_status(void);
|
2019-03-16 04:45:00 +08:00
|
|
|
#endif
|