49 lines
2.0 KiB
C
49 lines
2.0 KiB
C
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
||
|
|
/*
|
||
|
|
* NFC Controller Driver
|
||
|
|
* Copyright (C) 2020 ST Microelectronics S.A.
|
||
|
|
* Copyright (C) 2010 Stollmann E+V GmbH
|
||
|
|
* Copyright (C) 2010 Trusted Logic S.A.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#define ST21NFC_MAGIC 0xEA
|
||
|
|
|
||
|
|
#define ST21NFC_NAME "st21nfc"
|
||
|
|
/*
|
||
|
|
* ST21NFC power control via ioctl
|
||
|
|
* ST21NFC_GET_WAKEUP : poll gpio-level for Wakeup pin
|
||
|
|
*/
|
||
|
|
#define ST21NFC_GET_WAKEUP _IO(ST21NFC_MAGIC, 0x01)
|
||
|
|
#define ST21NFC_PULSE_RESET _IO(ST21NFC_MAGIC, 0x02)
|
||
|
|
#define ST21NFC_SET_POLARITY_RISING _IO(ST21NFC_MAGIC, 0x03)
|
||
|
|
#define ST21NFC_SET_POLARITY_HIGH _IO(ST21NFC_MAGIC, 0x05)
|
||
|
|
#define ST21NFC_GET_POLARITY _IO(ST21NFC_MAGIC, 0x07)
|
||
|
|
#define ST21NFC_RECOVERY _IO(ST21NFC_MAGIC, 0x08)
|
||
|
|
#define ST21NFC_USE_ESE _IOW(ST21NFC_MAGIC, 0x09, unsigned int)
|
||
|
|
#define ST21NFC_CLK_ENABLE _IOR(ST21NFC_MAGIC, 0x11, unsigned int)
|
||
|
|
#define ST21NFC_CLK_DISABLE _IOR(ST21NFC_MAGIC, 0x12, unsigned int)
|
||
|
|
#define ST21NFC_CLK_STATE _IOR(ST21NFC_MAGIC, 0x13, unsigned int)
|
||
|
|
|
||
|
|
// Keep compatibility with older user applications.
|
||
|
|
#define ST21NFC_LEGACY_GET_WAKEUP _IOR(ST21NFC_MAGIC, 0x01, unsigned int)
|
||
|
|
#define ST21NFC_LEGACY_PULSE_RESET _IOR(ST21NFC_MAGIC, 0x02, unsigned int)
|
||
|
|
#define ST21NFC_LEGACY_SET_POLARITY_RISING \
|
||
|
|
_IOR(ST21NFC_MAGIC, 0x03, unsigned int)
|
||
|
|
#define ST21NFC_LEGACY_SET_POLARITY_HIGH _IOR(ST21NFC_MAGIC, 0x05, unsigned int)
|
||
|
|
#define ST21NFC_LEGACY_GET_POLARITY _IOR(ST21NFC_MAGIC, 0x07, unsigned int)
|
||
|
|
#define ST21NFC_LEGACY_RECOVERY _IOR(ST21NFC_MAGIC, 0x08, unsigned int)
|
||
|
|
|
||
|
|
#define ST54SPI_CB_RESET_END 0
|
||
|
|
#define ST54SPI_CB_RESET_START 1
|
||
|
|
#define ST54SPI_CB_ESE_NOT_USED 2
|
||
|
|
#define ST54SPI_CB_ESE_USED 3
|
||
|
|
void st21nfc_register_st54spi_cb(void (*cb)(int, void *), void *data);
|
||
|
|
void st21nfc_unregister_st54spi_cb(void);
|
||
|
|
|
||
|
|
#if (defined(ST21NFCD_MTK54) || defined(ST21NFCD_MTK510) || defined(ST21NFCD_QCOM54) || defined(ST21NFCD_QCOM510) || defined(ST21NFCD_GEXY510))
|
||
|
|
#define ACCESS_OK(x, y, z) access_ok(y, z)
|
||
|
|
#else
|
||
|
|
#define ACCESS_OK(x, y, z) access_ok(x, y, z)
|
||
|
|
#endif
|
||
|
|
|