Skip to content

Commit 8277f69

Browse files
cricard13Samuel Ortiz
authored andcommitted
NFC: nci: Add NCI NFCEE constants
Add NFCEE NCI constant for: - NFCEE Interface/Protocols - Destination type - Destination-specific parameters type - NFCEE Discovery Action Signed-off-by: Christophe Ricard <[email protected]> Signed-off-by: Samuel Ortiz <[email protected]>
1 parent 4aeee68 commit 8277f69

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

include/net/nfc/nci.h

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,25 @@
6262
#define NCI_STATUS_NFCEE_PROTOCOL_ERROR 0xc2
6363
#define NCI_STATUS_NFCEE_TIMEOUT_ERROR 0xc3
6464

65+
/* NFCEE Interface/Protocols */
66+
#define NCI_NFCEE_INTERFACE_APDU 0x00
67+
#define NCI_NFCEE_INTERFACE_HCI_ACCESS 0x01
68+
#define NCI_NFCEE_INTERFACE_TYPE3_CMD_SET 0x02
69+
#define NCI_NFCEE_INTERFACE_TRANSPARENT 0x03
70+
71+
/* Destination type */
72+
#define NCI_DESTINATION_NFCC_LOOPBACK 0x01
73+
#define NCI_DESTINATION_REMOTE_NFC_ENDPOINT 0x02
74+
#define NCI_DESTINATION_NFCEE 0x03
75+
76+
/* Destination-specific parameters type */
77+
#define NCI_DESTINATION_SPECIFIC_PARAM_RF_TYPE 0x00
78+
#define NCI_DESTINATION_SPECIFIC_PARAM_NFCEE_TYPE 0x01
79+
80+
/* NFCEE Discovery Action */
81+
#define NCI_NFCEE_DISCOVERY_ACTION_DISABLE 0x00
82+
#define NCI_NFCEE_DISCOVERY_ACTION_ENABLE 0x01
83+
6584
/* NCI RF Technology and Mode */
6685
#define NCI_NFC_A_PASSIVE_POLL_MODE 0x00
6786
#define NCI_NFC_B_PASSIVE_POLL_MODE 0x01
@@ -260,6 +279,11 @@ struct nci_rf_deactivate_cmd {
260279
__u8 type;
261280
} __packed;
262281

282+
#define NCI_OP_NFCEE_DISCOVER_CMD nci_opcode_pack(NCI_GID_NFCEE_MGMT, 0x00)
283+
struct nci_nfcee_discover_cmd {
284+
__u8 discovery_action;
285+
} __packed;
286+
263287
/* ----------------------- */
264288
/* ---- NCI Responses ---- */
265289
/* ----------------------- */
@@ -303,6 +327,12 @@ struct nci_core_set_config_rsp {
303327

304328
#define NCI_OP_RF_DEACTIVATE_RSP nci_opcode_pack(NCI_GID_RF_MGMT, 0x06)
305329

330+
#define NCI_OP_NFCEE_DISCOVER_RSP nci_opcode_pack(NCI_GID_NFCEE_MGMT, 0x00)
331+
struct nci_nfcee_discover_rsp {
332+
__u8 status;
333+
__u8 num_nfcee;
334+
} __packed;
335+
306336
/* --------------------------- */
307337
/* ---- NCI Notifications ---- */
308338
/* --------------------------- */
@@ -430,4 +460,22 @@ struct nci_rf_deactivate_ntf {
430460
__u8 reason;
431461
} __packed;
432462

463+
#define NCI_OP_NFCEE_DISCOVER_NTF nci_opcode_pack(NCI_GID_NFCEE_MGMT, 0x00)
464+
struct nci_nfcee_supported_protocol {
465+
__u8 num_protocol;
466+
__u8 supported_protocol[0];
467+
} __packed;
468+
469+
struct nci_nfcee_information_tlv {
470+
__u8 num_tlv;
471+
__u8 information_tlv[0];
472+
} __packed;
473+
474+
struct nci_nfcee_discover_ntf {
475+
__u8 nfcee_id;
476+
__u8 nfcee_status;
477+
struct nci_nfcee_supported_protocol supported_protocols;
478+
struct nci_nfcee_information_tlv information_tlv;
479+
} __packed;
480+
433481
#endif /* __NCI_H */

0 commit comments

Comments
 (0)